diff --git a/.gitignore b/.gitignore
index 90f05bc..9031171 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,4 +1,11 @@
*.csv
*.csv
*.txt
-*.xlsx
\ No newline at end of file
+*.xlsx
+
+data/unprocessed/ol_dump_works_*.txt.gz
+data/unprocessed/ol_dump_authors_*.txt.gz
+data/unprocessed/ol_dump_editions_*.txt.gz
+.vscode/settings.json
+create_db.bat
+copy_commands.sql
diff --git a/README.md b/README.md
index 456448a..31d8d26 100644
--- a/README.md
+++ b/README.md
@@ -1,170 +1,118 @@
-# Open Library Searching
+# Open Library database
-**Task:** to use open library bibliographic data to search books based upon a pre-defined subset of ISBNs.
+Open Library is an online library of bibliographic data and includes [full data dumps](https://openlibrary.org/developers/dumps) of all its data.
-## Further details
+This project provides instructions and scripts for importing this data into a PostgreSQL database and some sample queries to test the database.
+### Getting started
+The following steps should get you up and running with a working database.
+1. Install the [required prerequisites](#prerequisites) so that you have the software running and database server.
+2. [Download the data](#downloading-the-data) from Open Library.
+3. Run the [processing the data](#processing-the-data) scripts to clean it up and make it easier to import.
+4. [Import the data](#import-into-database) into the database.
-## Method 1: API
+### Prerequisites
+- Python 3 - Tested with 3.10
+- PostgreSQL - Version 15 is tested but most recent versions should work
-**Abandon! The API is a bit of a nightmare to use in bulk and Open Library discourage it (even with measures in place to limit requests). See below for better alternative.**
+### Downloading the data
-## Method 2: Bulk download and database
+Open Library offer bulk downloads on their website, available from the [Data Dumps page](https://openlibrary.org/developers/dumps)
-Open Library also offer bulk downloads on their website, available from the **Data Dumps** page.
+These are updated every month. The downloads available include:
-[https://openlibrary.org/developers/dumps](https://openlibrary.org/developers/dumps)
+- Editions (~9GB)
+- Works (~2.5GB)
+- Authors (~0.5GB)
+- All types (~10GB)
-These are updated every month.
-
-### Import into database
-
-Using a postgreSQL database it should be possible to import the data directly into tables and then do complex searches with SQL.
-
-Unfortunately the downloads provided are a bit messy. The open library file always errors as the number of columns provided seem to vary. Cleaning it up is difficult as just the text file for editions is 25GB.
-
-That means another python script to clean up the data. The file [openlibrary-data-process.py](openlibrary-data-process.py) simply reads in the CSV (python is a little more forgiving about dodgy data) and writes it out again, but only if there are 5 columns.
-
-### Create the Open Library data tables
-
-The data is split into 3 files:
-
-| Data | Description | Fields | File name | Size |
-|:---|:---|:---|:---|:---|
-| Authors | Authors are the individuals who write the works! | Name,
-| Works | The works as created by the authors, with titles, and subtitles. |
-| Editions | The particular editions of the works, including ISBNs |
-
-### Create indexes and extract from JSON
-
-The majority of the data for works/editions/authors is in the JSON. We'll be using a few of these fields for joins so for simplicity will extract them as individual (indexed) columns.
-
-### Works table
-
-In the open library data a 'work' is a
+For this project, I downloaded the Editions, Works, and Authors data. The latest can be downloaded using the following commands in a terminal:
-```
-copy works FROM 'C:\openlibrary-search\data\ol_dump_works_2016-07-31_processed.csv' DELIMITER E'\t' QUOTE '|' CSV;
+```console
+wget https://openlibrary.org/data/ol_dump_editions_latest.txt.gz -P ~/downloads
+wget https://openlibrary.org/data/ol_dump_works_latest.txt.gz -P ~/downloads
+wget https://openlibrary.org/data/ol_dump_authors_latest.txt.gz -P ~/downloads
```
+To move the data from your downloads folder, use the following commands in a terminal
+```console
+mv ~/downloads/ol_dump_authors_*txt.gz ./data/unprocessed/ol_dump_authors_.txt.gz
+mv ~/downloads/ol_dump_works_*txt.gz ./data/unprocessed/ol_dump_works_.txt.gz
+mv ~/downloads/ol_dump_editions_*txt.gz ./data/unprocessed/ol_dump_editions_.txt.gz
```
-create index idx_works_ginp on works using gin (data jsonb_path_ops);
-```
-
-### Authors table
-
-
-
-
-```
-COPY authors FROM 'C:\openlibrary-search\data\ol_dump_authors_2016-07-31_processed.csv' DELIMITER E'\t' QUOTE '|' CSV;
-```
-
+To uncompress this data, I used the following commands in a terminal:
+```console
+gzip -d -c data/unprocessed/ol_dump_editions_*.txt.gz > data/unprocessed/ol_dump_editions.txt
+gzip -d -c data/unprocessed/ol_dump_works_*.txt.gz > data/unprocessed/ol_dump_works.txt
+gzip -d -c data/unprocessed/ol_dump_authors_*.txt.gz > data/unprocessed/ol_dump_authors.txt
```
-create index idx_authors_ginp on authors using gin (data jsonb_path_ops);
-```
-
-### Authorship table
+### Processing the data
+Unfortunately the downloads provided seem to be a bit messy, or at least don't play nicely with direct importing. The open library file errors on import as the number of columns provided varies. Cleaning it up is difficult as just the text file for editions is 25GB. _Note: Check if this is still the case and if so there could be some Linux tools to do this - maybe try `sed` and `awk`_
-The relationship between works and authors is **many-to-many**. That is to say one particular work can be authored by multiple authors, and an author can have multiple works under their name.
-
-The typical way to represent this kind of relationship in a relational database is with a separate table. This will be called **authorship** and will list a row for each instance of author and work. For example:
-
-| author | work |
-|:---|:---|
-| JK Rowling | Harry Potter and the Prisoner of Azkaban |
-| JK Rowling | Harry Potter and the Cursed Child |
-| Jack Thorne | Harry Potter and the Cursed Child |
-| Jack Thorne | Something that isn't Harry Potter |
-
-(Of course we'll be using the IDs of works and authors rather than the names themselves.)
+That means requiring another python script to clean up the data. The file [openlibrary-data-process.py](openlibrary-data-process.py) simply reads in the CSV (python is a little more forgiving about dodgy data) and writes it out again for each row, but only where there are 5 columns.
+```console
+python openlibrary-data-process.py
```
-```
+Because the download files are so huge and are only going to grow, editions is now 45gb+, you can use the `openlibrary-data-chunk-process.py` alternative file to split the data into smaller files to load sequentially. You can change the number of lines in each chuck here. I recommend 1-3 million.
-
-All of the data to populate the table is currently held in the **works** table, which has arrays of author IDs embedded within the JSON data.
+Once the files are split you should delete the 3 .txt files in the uncompressed folder because you will need around 230 Gb of freespace to load all 3 files into the database without encountering lack of space errors.
```
-insert into authorship
-select distinct jsonb_array_elements(data->'authors')->'author'->>'key', key from works
-where key is not null
-and data->'authors'->0->'author' is not null
-```
-
-
-### Editions table
-
-The editions table is huge - the file is 26GB, which seems to amount to about 25 million rows of data.
-
-
-
-```
-COPY editions FROM 'C:\openlibrary-search\data\ol_dump_editions_2016-07-31_processed.csv' DELIMITER E'\t' QUOTE '|' CSV;
-```
-
-```
-create index idx_editions_ginp on editions using gin (data jsonb_path_ops)
-```
-
-
-We really want the ISBNs and work keys out of the main JSON data and into proper individual columns.
-
-
-```
-update editions
-set work_key = data->'works'->0->>'key'
-```
-
-Then index the work key.
-
+lines_per_file = 5000
```
+```console
+python3 openlibrary-data-chunk-process.py
```
+This generates multiple files into the `data/processed` directory.
+One of those files will be used to access the rest of them when loading the data.
-### EditionISBNs tables
+### Import into database
+It is then possible to import the data directly into PostgreSQL tables and do complex searches with SQL.
+There are a series of database scripts whch will create the database and tables, and then import the data. These are in the [database](database) folder. The data files (created in the previous process) need to already be within the `data/processed` folder for this to work.
+The command line too `psql` is used to run the scripts. The following command will create the database and tables:
+```console
+psql --set=sslmode=require -f openlibrary-db.sql -h localhost -p 5432 -U username postgres
```
-insert into editionisbn13s
-select distinct key, jsonb_array_elements(data->'isbn_13')->>'key' from editions
-where key is not null
-and data->'isbn_13'->0->'key' is not null
-```
-
+### Database table details
+The database is split into 5 main tables
-## Vacuum up the mess
-
-PostgreSQL has a function
-
-```
-vacuum full analyze verbose
-```
+| Data | Description |
+| :------------ | :-------------------------------------------------------------- |
+| Authors | Authors are the individuals who write the works |
+| Works | The works as created by the authors, with titles, and subtitles |
+| Autor Works | A table linking the works with authors |
+| Editions | The particular editions of the works, including ISBNs |
+| Edition_ISBNS | The ISBNs for the editions |
## Query the data
-That's the database set up - in can now be queried using relatively straightforward SQL.
+That's the database set up - it can now be queried using relatively straightforward SQL.
Get details for a single item using the ISBN13 9781551922461 (Harry Potter and the Prisoner of Azkaban).
-```
-select
+```sql
+select
e.data->>'title' "EditionTitle",
w.data->>'title' "WorkTitle",
+ a.data->>'name' "Name",
e.data->>'subtitle' "EditionSubtitle",
w.data->>'subtitle' "WorkSubtitle",
e.data->>'subjects' "Subjects",
@@ -173,45 +121,13 @@ select
e.data->'notes'->>'value' "EditionNotes",
w.data->'notes'->>'value' "WorkNotes"
from editions e
-join editionisbn13s ei
+join edition_isbns ei
on ei.edition_key = e.key
join works w
on w.key = e.work_key
-where ei.isbn13 = '9781551922461'
+join author_works a_w
+ on a_w.work_key = w.key
+join authors a
+ on a_w.author_key = a.key
+where ei.isbn = '9781551922461'
```
-
-
-```
-copy (
- select distinct
- e.data->>'title' "EditionTitle",
- w.data->>'title' "WorkTitle",
- e.data->>'subtitle' "EditionSubtitle",
- w.data->>'subtitle' "WorkSubtitle",
- e.data->>'subjects' "EditionSubjects",
- w.data->>'subjects' "WorkSubjects",
- e.data->'description'->>'value' "EditionDescription",
- w.data->'description'->>'value' "WorkDescription",
- e.data->'notes'->>'value' "EditionNotes",
- w.data->'notes'->>'value' "WorkNotes"
- from editions e
- join works w
- on w.key = e.work_key
- join editionisbn13s ei13
- on ei13.edition_key = e.key
- where ei13.isbn13 IN (select isbn13 from isbn13s)
- and (
- lower(e.data->>'title') like any (select '%' || keyword || '%' from keywords) OR
- lower(w.data->>'title') like any (select '%' || keyword || '%' from keywords) OR
- lower(e.data->>'subtitle') like any (select '%' || keyword || '%' from keywords) OR
- lower(w.data->>'subtitle') like any (select '%' || keyword || '%' from keywords) OR
- lower(e.data->>'subjects') like any (select '%' || keyword || '%' from keywords) OR
- lower(w.data->>'subjects') like any (select '%' || keyword || '%' from keywords) OR
- lower(e.data->'description'->>'value') like any (select '%' || keyword || '%' from keywords) OR
- lower(w.data->'description'->>'value') like any (select '%' || keyword || '%' from keywords) OR
- lower(e.data->'notes'->>'value') like any (select '%' || keyword || '%' from keywords) OR
- lower(w.data->'notes'->>'value') like any (select '%' || keyword || '%' from keywords)
- )
-) to '\data\open_library_export.csv' With CSV DELIMITER E'\t';
-```
-
diff --git a/copy_commands.sql b/copy_commands.sql
new file mode 100644
index 0000000..53f8210
--- /dev/null
+++ b/copy_commands.sql
@@ -0,0 +1 @@
+\copy editions from './data/processed/ol_dump_editions.txt' delimiter E'\t' quote '|' csv;
diff --git a/create_db.bat.sample b/create_db.bat.sample
new file mode 100644
index 0000000..e6ba59c
--- /dev/null
+++ b/create_db.bat.sample
@@ -0,0 +1 @@
+psql --set=sslmode=require -f openlibrary-db.sql -h localhost -p 5432 -U username postgres
\ No newline at end of file
diff --git a/data/processed/.gitkeep b/data/processed/.gitkeep
new file mode 100644
index 0000000..e69de29
diff --git a/data/unprocessed/.gitkeep b/data/unprocessed/.gitkeep
new file mode 100644
index 0000000..e69de29
diff --git a/data/unprocessed/ol_dump_authors b/data/unprocessed/ol_dump_authors
new file mode 100644
index 0000000..7e8828e
--- /dev/null
+++ b/data/unprocessed/ol_dump_authors
@@ -0,0 +1,4999 @@
+/type/author /authors/OL10000666A 1 2021-12-26T23:05:27.715681 {"type": {"key": "/type/author"}, "name": "Alexander A. Bove", "key": "/authors/OL10000666A", "source_records": ["bwb:9781466829008"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-26T23:05:27.715681"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-26T23:05:27.715681"}}
+/type/author /authors/OL10000704A 1 2021-12-26T23:07:40.545377 {"type": {"key": "/type/author"}, "name": "Angelika Juritsch", "key": "/authors/OL10000704A", "source_records": ["bwb:9788490154434"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-26T23:07:40.545377"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-26T23:07:40.545377"}}
+/type/author /authors/OL10001011A 1 2021-12-26T23:58:07.734703 {"type": {"key": "/type/author"}, "name": "Magnus Molasky", "key": "/authors/OL10001011A", "source_records": ["bwb:9783850403801"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-26T23:58:07.734703"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-26T23:58:07.734703"}}
+/type/author /authors/OL10001044A 1 2021-12-26T23:58:45.859331 {"type": {"key": "/type/author"}, "name": "Angelika Nickel", "key": "/authors/OL10001044A", "source_records": ["bwb:9788490156315"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-26T23:58:45.859331"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-26T23:58:45.859331"}}
+/type/author /authors/OL10001379A 1 2021-12-27T00:53:18.206332 {"type": {"key": "/type/author"}, "name": "Verena ller", "key": "/authors/OL10001379A", "source_records": ["bwb:9783850405348"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T00:53:18.206332"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T00:53:18.206332"}}
+/type/author /authors/OL10001559A 1 2021-12-27T01:15:50.634006 {"type": {"key": "/type/author"}, "name": "Carl H. Droppers", "key": "/authors/OL10001559A", "source_records": ["bwb:9780802813619"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T01:15:50.634006"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T01:15:50.634006"}}
+/type/author /authors/OL10001593A 1 2021-12-27T01:20:33.703148 {"type": {"key": "/type/author"}, "name": "Verdelle", "key": "/authors/OL10001593A", "source_records": ["bwb:9780805059540"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T01:20:33.703148"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T01:20:33.703148"}}
+/type/author /authors/OL10001713A 1 2021-12-27T01:39:01.667731 {"type": {"key": "/type/author"}, "name": "Geri R. Hall", "key": "/authors/OL10001713A", "source_records": ["bwb:9781910315224"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T01:39:01.667731"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T01:39:01.667731"}}
+/type/author /authors/OL10001937A 1 2021-12-27T02:03:52.354996 {"type": {"key": "/type/author"}, "name": "Mary Cameron Betancourt", "key": "/authors/OL10001937A", "source_records": ["bwb:9780985697358"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T02:03:52.354996"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T02:03:52.354996"}}
+/type/author /authors/OL10002005A 1 2021-12-27T02:12:59.130663 {"type": {"key": "/type/author"}, "name": "Jorn Moock", "key": "/authors/OL10002005A", "source_records": ["bwb:9783170248267"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T02:12:59.130663"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T02:12:59.130663"}}
+/type/author /authors/OL10002038A 1 2021-12-27T02:15:07.140767 {"type": {"key": "/type/author"}, "name": "FLAMMARION", "key": "/authors/OL10002038A", "source_records": ["bwb:9782294725272"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T02:15:07.140767"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T02:15:07.140767"}}
+/type/author /authors/OL10002377A 1 2021-12-27T02:55:10.315006 {"type": {"key": "/type/author"}, "name": "J. J. Niles", "key": "/authors/OL10002377A", "source_records": ["bwb:9780793554959"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T02:55:10.315006"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T02:55:10.315006"}}
+/type/author /authors/OL10002478A 1 2021-12-27T03:12:01.745968 {"type": {"key": "/type/author"}, "name": "Sage Hazarika", "key": "/authors/OL10002478A", "source_records": ["bwb:9781500866532"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T03:12:01.745968"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T03:12:01.745968"}}
+/type/author /authors/OL10002543A 1 2021-12-27T03:21:14.240259 {"type": {"key": "/type/author"}, "name": "Anne Bourlioux", "key": "/authors/OL10002543A", "source_records": ["bwb:9789401005104"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T03:21:14.240259"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T03:21:14.240259"}}
+/type/author /authors/OL10002633A 1 2021-12-27T03:29:29.916785 {"type": {"key": "/type/author"}, "name": "Charles Edward Ives", "key": "/authors/OL10002633A", "source_records": ["bwb:9780793509126"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T03:29:29.916785"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T03:29:29.916785"}}
+/type/author /authors/OL10002865A 1 2021-12-27T04:00:31.285628 {"type": {"key": "/type/author"}, "name": "Katja Weiland", "key": "/authors/OL10002865A", "source_records": ["bwb:9783956500640"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T04:00:31.285628"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T04:00:31.285628"}}
+/type/author /authors/OL10003479A 1 2021-12-27T05:30:26.763946 {"type": {"key": "/type/author"}, "name": "Stefanie Czemplik", "key": "/authors/OL10003479A", "source_records": ["bwb:9783170291126"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T05:30:26.763946"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T05:30:26.763946"}}
+/type/author /authors/OL10003617A 1 2021-12-27T05:44:11.545725 {"type": {"key": "/type/author"}, "name": "Nathan Mastnjak", "key": "/authors/OL10003617A", "source_records": ["bwb:9783161544019"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T05:44:11.545725"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T05:44:11.545725"}}
+/type/author /authors/OL10003768A 1 2021-12-27T05:55:37.035878 {"type": {"key": "/type/author"}, "name": "Pure Flix", "key": "/authors/OL10003768A", "source_records": ["bwb:9781629995168"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T05:55:37.035878"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T05:55:37.035878"}}
+/type/author /authors/OL10003804A 1 2021-12-27T05:57:54.052583 {"type": {"key": "/type/author"}, "name": "MKTO", "key": "/authors/OL10003804A", "source_records": ["bwb:9781540018168"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T05:57:54.052583"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T05:57:54.052583"}}
+/type/author /authors/OL10003837A 1 2021-12-27T06:00:08.736997 {"type": {"key": "/type/author"}, "name": "Diane Barkin", "key": "/authors/OL10003837A", "source_records": ["bwb:9781945541797"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T06:00:08.736997"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T06:00:08.736997"}}
+/type/author /authors/OL10003993A 1 2021-12-27T06:13:33.538906 {"type": {"key": "/type/author"}, "name": "Christoph Treeck", "key": "/authors/OL10003993A", "source_records": ["bwb:9783662528259"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T06:13:33.538906"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T06:13:33.538906"}}
+/type/author /authors/OL10004101A 1 2021-12-27T06:25:22.757142 {"type": {"key": "/type/author"}, "name": "Magic!", "key": "/authors/OL10004101A", "source_records": ["bwb:9781495037597"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T06:25:22.757142"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T06:25:22.757142"}}
+/type/author /authors/OL10004259A 1 2021-12-27T06:42:13.481118 {"type": {"key": "/type/author"}, "name": "Linda Gerlach", "key": "/authors/OL10004259A", "source_records": ["bwb:9783447107242"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T06:42:13.481118"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T06:42:13.481118"}}
+/type/author /authors/OL10004270A 1 2021-12-27T06:43:25.941238 {"type": {"key": "/type/author"}, "name": "Albers Susan", "key": "/authors/OL10004270A", "source_records": ["bwb:9782890927711"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T06:43:25.941238"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T06:43:25.941238"}}
+/type/author /authors/OL10004453A 1 2021-12-27T07:03:20.629451 {"type": {"key": "/type/author"}, "name": "Ekkehard Hofmann", "key": "/authors/OL10004453A", "source_records": ["bwb:9783161544552"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T07:03:20.629451"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T07:03:20.629451"}}
+/type/author /authors/OL10004987A 1 2021-12-27T08:11:10.031944 {"type": {"key": "/type/author"}, "name": "Reinhold Zemke", "key": "/authors/OL10004987A", "source_records": ["bwb:9783170318175"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T08:11:10.031944"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T08:11:10.031944"}}
+/type/author /authors/OL10005023A 1 2021-12-27T08:15:00.746075 {"type": {"key": "/type/author"}, "name": "N\u00e1rodn\u00ed knihovna Cesk\u00e9 republiky Staff", "key": "/authors/OL10005023A", "source_records": ["bwb:9780893574628"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T08:15:00.746075"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T08:15:00.746075"}}
+/type/author /authors/OL10005192A 1 2021-12-27T08:35:30.348211 {"type": {"key": "/type/author"}, "name": "Ranjini Swamy", "key": "/authors/OL10005192A", "source_records": ["bwb:9781631576836"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T08:35:30.348211"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T08:35:30.348211"}}
+/type/author /authors/OL10005584A 1 2021-12-27T09:18:59.790490 {"type": {"key": "/type/author"}, "name": "Bernice Devotice (Mann) Stephens-Miller", "key": "/authors/OL10005584A", "source_records": ["bwb:9781643670003"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T09:18:59.790490"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T09:18:59.790490"}}
+/type/author /authors/OL1000593A 2 2008-08-20T17:58:30.42185 {"name": "Muh\u0323ammad Sa\u02bbi\u0304d Mash\u02bba\u0304n", "personal_name": "Muh\u0323ammad Sa\u02bbi\u0304d Mash\u02bba\u0304n", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T17:58:30.42185"}, "key": "/authors/OL1000593A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10005971A 1 2021-12-27T09:46:56.089787 {"type": {"key": "/type/author"}, "name": "Starks Historical Society", "key": "/authors/OL10005971A", "source_records": ["bwb:9781952005046"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T09:46:56.089787"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T09:46:56.089787"}}
+/type/author /authors/OL10006007A 1 2021-12-27T09:51:47.816109 {"type": {"key": "/type/author"}, "name": "Ultra Europe", "key": "/authors/OL10006007A", "source_records": ["bwb:9781708511098"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T09:51:47.816109"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T09:51:47.816109"}}
+/type/author /authors/OL10006129A 1 2021-12-27T10:01:37.204900 {"type": {"key": "/type/author"}, "name": "Clemens Regenbogen", "key": "/authors/OL10006129A", "source_records": ["bwb:9783799543828"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T10:01:37.204900"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T10:01:37.204900"}}
+/type/author /authors/OL10006237A 1 2021-12-27T10:08:48.964925 {"type": {"key": "/type/author"}, "name": "James Muniz", "key": "/authors/OL10006237A", "source_records": ["bwb:9781729247815"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T10:08:48.964925"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T10:08:48.964925"}}
+/type/author /authors/OL10006415A 1 2021-12-27T10:24:07.562328 {"type": {"key": "/type/author"}, "name": "Alicja Sikora", "key": "/authors/OL10006415A", "source_records": ["bwb:9789089522061"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T10:24:07.562328"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T10:24:07.562328"}}
+/type/author /authors/OL1000682A 1 2008-04-01T03:28:50.625462 {"name": "Nadwat al-Qiya\u0304da\u0304t al-Niqa\u0304bi\u0304yah h\u0323awla Tabanni\u0304 Juhu\u0304d Fa\u02bb\u02bba\u0304lah fi\u0304 Mah\u0323w al-Ummi\u0304yah wa-Ta\u02bbli\u0304m al-Kiba\u0304r (1980 Tripoli, Libya)", "last_modified": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "key": "/authors/OL1000682A", "type": {"key": "/type/author"}, "revision": 1}
+/type/author /authors/OL1000691A 2 2008-08-20T17:58:43.378805 {"name": "Sonia Ramzi-Abadir", "personal_name": "Sonia Ramzi-Abadir", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T17:58:43.378805"}, "key": "/authors/OL1000691A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10007034A 1 2021-12-27T11:25:50.256605 {"type": {"key": "/type/author"}, "name": "Abra\u00e3o D.", "key": "/authors/OL10007034A", "source_records": ["bwb:9781681083469"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T11:25:50.256605"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T11:25:50.256605"}}
+/type/author /authors/OL10007075A 1 2021-12-27T11:27:47.986944 {"type": {"key": "/type/author"}, "name": "Angela Gosch", "key": "/authors/OL10007075A", "source_records": ["bwb:9783170327313"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T11:27:47.986944"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T11:27:47.986944"}}
+/type/author /authors/OL10007437A 1 2021-12-27T12:01:15.472872 {"type": {"key": "/type/author"}, "name": "Ricardo Lorenzetti", "key": "/authors/OL10007437A", "source_records": ["bwb:9781585762231"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T12:01:15.472872"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T12:01:15.472872"}}
+/type/author /authors/OL10007565A 1 2021-12-27T12:11:53.854252 {"type": {"key": "/type/author"}, "name": "Erin Eileen Black", "key": "/authors/OL10007565A", "source_records": ["bwb:9780811768184"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T12:11:53.854252"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T12:11:53.854252"}}
+/type/author /authors/OL10007580A 1 2021-12-27T12:12:58.456447 {"type": {"key": "/type/author"}, "name": "Blanca Blancke", "key": "/authors/OL10007580A", "source_records": ["bwb:9783170340589"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T12:12:58.456447"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T12:12:58.456447"}}
+/type/author /authors/OL10007585A 1 2021-12-27T12:13:19.210069 {"type": {"key": "/type/author"}, "name": "Wez Jamroz", "key": "/authors/OL10007585A", "source_records": ["bwb:9781785619939"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T12:13:19.210069"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T12:13:19.210069"}}
+/type/author /authors/OL10007926A 2 2022-04-12T21:00:00.065754 {"type": {"key": "/type/author"}, "name": "U\u011fur G\u00fcn\u015fen", "key": "/authors/OL10007926A", "source_records": ["bwb:9781799835967"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2021-12-27T12:48:53.995626"}, "last_modified": {"type": "/type/datetime", "value": "2022-04-12T21:00:00.065754"}}
+/type/author /authors/OL1000840A 2 2008-08-20T17:59:08.666958 {"name": "Adviye Aysan", "personal_name": "Adviye Aysan", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T17:59:08.666958"}, "key": "/authors/OL1000840A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10008863A 1 2021-12-27T14:32:20.380815 {"type": {"key": "/type/author"}, "name": "Jacob Halpin", "key": "/authors/OL10008863A", "source_records": ["bwb:9789774169526"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T14:32:20.380815"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T14:32:20.380815"}}
+/type/author /authors/OL10009128A 1 2021-12-27T15:02:11.807506 {"type": {"key": "/type/author"}, "name": "Nakia M. Gray-Nicolas", "key": "/authors/OL10009128A", "source_records": ["bwb:9781648020605"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T15:02:11.807506"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T15:02:11.807506"}}
+/type/author /authors/OL1000913A 1 2008-04-01T03:28:50.625462 {"name": "Yas\u0327ar Nezihe Han\u0131m", "personal_name": "Yas\u0327ar Nezihe Han\u0131m", "last_modified": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "key": "/authors/OL1000913A", "birth_date": "1880", "type": {"key": "/type/author"}, "revision": 1}
+/type/author /authors/OL10009617A 1 2021-12-27T15:25:06.054151 {"type": {"key": "/type/author"}, "name": "Randy L. Zipse", "key": "/authors/OL10009617A", "source_records": ["bwb:9781949506631"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T15:25:06.054151"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T15:25:06.054151"}}
+/type/author /authors/OL10009728A 1 2021-12-27T15:30:02.129597 {"type": {"key": "/type/author"}, "name": "Dain Taylor", "key": "/authors/OL10009728A", "source_records": ["bwb:9781734900651"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T15:30:02.129597"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T15:30:02.129597"}}
+/type/author /authors/OL10010270A 1 2021-12-27T15:53:27.639388 {"type": {"key": "/type/author"}, "name": "Casey Carmichael", "key": "/authors/OL10010270A", "source_records": ["bwb:9781642892871"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T15:53:27.639388"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T15:53:27.639388"}}
+/type/author /authors/OL10010332A 1 2021-12-27T15:56:52.943857 {"type": {"key": "/type/author"}, "name": "Oscar Alberto Ramirez", "key": "/authors/OL10010332A", "source_records": ["bwb:9781774076811"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T15:56:52.943857"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T15:56:52.943857"}}
+/type/author /authors/OL10010666A 1 2021-12-27T16:13:36.468087 {"type": {"key": "/type/author"}, "name": "Beverly J. Ray", "key": "/authors/OL10010666A", "source_records": ["bwb:9781734151404"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T16:13:36.468087"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T16:13:36.468087"}}
+/type/author /authors/OL10010881A 1 2021-12-27T16:24:08.799839 {"type": {"key": "/type/author"}, "name": "Aram ARAKELYAN", "key": "/authors/OL10010881A", "source_records": ["bwb:9798510639483"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T16:24:08.799839"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T16:24:08.799839"}}
+/type/author /authors/OL10010996A 1 2021-12-27T16:28:48.472425 {"type": {"key": "/type/author"}, "name": "Richard S. Evans", "key": "/authors/OL10010996A", "source_records": ["bwb:9780137582600"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T16:28:48.472425"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T16:28:48.472425"}}
+/type/author /authors/OL10011053A 1 2021-12-27T16:32:06.110792 {"type": {"key": "/type/author"}, "name": "Johan Geisler", "key": "/authors/OL10011053A", "source_records": ["bwb:9781536182736"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T16:32:06.110792"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T16:32:06.110792"}}
+/type/author /authors/OL10011190A 1 2021-12-27T16:40:26.520314 {"type": {"key": "/type/author"}, "name": "Amit Kanawjia", "key": "/authors/OL10011190A", "source_records": ["bwb:9781774077894"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T16:40:26.520314"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T16:40:26.520314"}}
+/type/author /authors/OL10011302A 1 2021-12-27T16:47:05.968428 {"type": {"key": "/type/author"}, "name": "Jutta Hanitsch", "key": "/authors/OL10011302A", "source_records": ["bwb:9783799555814"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T16:47:05.968428"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T16:47:05.968428"}}
+/type/author /authors/OL100116A 1 2008-04-01T03:28:50.625462 {"name": "Sjamsudduha", "personal_name": "Sjamsudduha", "last_modified": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "key": "/authors/OL100116A", "birth_date": "1939", "type": {"key": "/type/author"}, "revision": 1}
+/type/author /authors/OL10012053A 1 2021-12-27T17:28:05.571990 {"type": {"key": "/type/author"}, "name": "Maverick Tambiga", "key": "/authors/OL10012053A", "source_records": ["bwb:9781732425675"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T17:28:05.571990"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T17:28:05.571990"}}
+/type/author /authors/OL10012157A 1 2021-12-27T17:33:06.919813 {"type": {"key": "/type/author"}, "name": "Jeff Kindly", "key": "/authors/OL10012157A", "source_records": ["bwb:9781876966867"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T17:33:06.919813"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T17:33:06.919813"}}
+/type/author /authors/OL10012201A 1 2021-12-27T17:35:06.504625 {"type": {"key": "/type/author"}, "name": "Fatos Ko\u00e7", "key": "/authors/OL10012201A", "source_records": ["bwb:9781513563848"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T17:35:06.504625"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T17:35:06.504625"}}
+/type/author /authors/OL10012247A 1 2021-12-27T17:37:37.606738 {"type": {"key": "/type/author"}, "name": "Claudia Palmarucci", "key": "/authors/OL10012247A", "source_records": ["bwb:9788412163667"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T17:37:37.606738"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T17:37:37.606738"}}
+/type/author /authors/OL10012474A 1 2021-12-27T17:49:28.571307 {"type": {"key": "/type/author"}, "name": "Ann Burgh", "key": "/authors/OL10012474A", "source_records": ["bwb:9780986094156"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T17:49:28.571307"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T17:49:28.571307"}}
+/type/author /authors/OL10012571A 1 2021-12-27T17:54:25.048848 {"type": {"key": "/type/author"}, "name": "Beatriz Acebr\u00f3n", "key": "/authors/OL10012571A", "source_records": ["bwb:9798474546278"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T17:54:25.048848"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T17:54:25.048848"}}
+/type/author /authors/OL10012589A 1 2021-12-27T17:54:55.557141 {"type": {"key": "/type/author"}, "name": "Ramat Oyetunji", "key": "/authors/OL10012589A", "source_records": ["bwb:9780986320415"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T17:54:55.557141"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T17:54:55.557141"}}
+/type/author /authors/OL10013064A 1 2021-12-27T18:28:26.263450 {"type": {"key": "/type/author"}, "name": "Courtney Beals", "key": "/authors/OL10013064A", "source_records": ["bwb:9781535617864"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T18:28:26.263450"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T18:28:26.263450"}}
+/type/author /authors/OL10013342A 1 2021-12-27T18:42:57.855647 {"type": {"key": "/type/author"}, "name": "Katie Runde", "key": "/authors/OL10013342A", "source_records": ["bwb:9781982180171"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T18:42:57.855647"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T18:42:57.855647"}}
+/type/author /authors/OL10013489A 1 2021-12-27T18:53:59.473747 {"type": {"key": "/type/author"}, "name": "Josh Gortler", "key": "/authors/OL10013489A", "source_records": ["bwb:9781603817196"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T18:53:59.473747"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T18:53:59.473747"}}
+/type/author /authors/OL10013572A 1 2021-12-27T18:59:57.951054 {"type": {"key": "/type/author"}, "name": "Lizzy Canales", "key": "/authors/OL10013572A", "source_records": ["bwb:9781641465793"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T18:59:57.951054"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T18:59:57.951054"}}
+/type/author /authors/OL10013812A 1 2021-12-27T19:14:47.152281 {"type": {"key": "/type/author"}, "name": "Anna E. Collins", "key": "/authors/OL10013812A", "source_records": ["bwb:9781525899799"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T19:14:47.152281"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T19:14:47.152281"}}
+/type/author /authors/OL10013975A 1 2021-12-27T19:21:26.337058 {"type": {"key": "/type/author"}, "name": "Tracy Butler", "key": "/authors/OL10013975A", "source_records": ["bwb:9781638991038"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T19:21:26.337058"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T19:21:26.337058"}}
+/type/author /authors/OL10014471A 1 2021-12-27T19:54:40.428070 {"type": {"key": "/type/author"}, "name": "Pina Crispo", "key": "/authors/OL10014471A", "source_records": ["bwb:9781989819142"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T19:54:40.428070"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T19:54:40.428070"}}
+/type/author /authors/OL10014528A 1 2021-12-27T19:59:13.101530 {"type": {"key": "/type/author"}, "name": "Meditation Meditation Skape", "key": "/authors/OL10014528A", "source_records": ["bwb:9798735815709"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T19:59:13.101530"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T19:59:13.101530"}}
+/type/author /authors/OL10015339A 1 2021-12-27T20:54:04.687787 {"type": {"key": "/type/author"}, "name": "\u00c9milie Gorostis", "key": "/authors/OL10015339A", "source_records": ["bwb:9788414030356"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T20:54:04.687787"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T20:54:04.687787"}}
+/type/author /authors/OL10015352A 1 2021-12-27T20:54:25.963390 {"type": {"key": "/type/author"}, "name": "Marion Krammer", "key": "/authors/OL10015352A", "source_records": ["bwb:9783847113645"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T20:54:25.963390"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T20:54:25.963390"}}
+/type/author /authors/OL10015642A 1 2021-12-27T21:05:46.828688 {"type": {"key": "/type/author"}, "name": "Richard Seif", "key": "/authors/OL10015642A", "source_records": ["bwb:9798480087895"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T21:05:46.828688"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T21:05:46.828688"}}
+/type/author /authors/OL1001605A 2 2008-08-20T18:01:19.974294 {"name": "Charlette R. Gallagher-Allred", "personal_name": "Charlette R. Gallagher-Allred", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T18:01:19.974294"}, "key": "/authors/OL1001605A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL1001619A 2 2008-08-20T18:01:31.902523 {"name": "Oscar H. Lipps", "personal_name": "Oscar H. Lipps", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T18:01:31.902523"}, "key": "/authors/OL1001619A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10016395A 1 2021-12-27T21:29:50.157087 {"type": {"key": "/type/author"}, "name": "Tove Thage", "key": "/authors/OL10016395A", "source_records": ["bwb:9783969000403"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T21:29:50.157087"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T21:29:50.157087"}}
+/type/author /authors/OL10016803A 1 2021-12-27T21:39:49.310796 {"type": {"key": "/type/author"}, "name": "Neil Garvie", "key": "/authors/OL10016803A", "source_records": ["bwb:9781006549649"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T21:39:49.310796"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T21:39:49.310796"}}
+/type/author /authors/OL1001717A 2 2008-08-20T18:02:39.685711 {"name": "Hugh Ulrich", "personal_name": "Hugh Ulrich", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T18:02:39.685711"}, "key": "/authors/OL1001717A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10017832A 1 2021-12-27T21:52:09.138824 {"type": {"key": "/type/author"}, "name": "Dennis E Smirl", "key": "/authors/OL10017832A", "source_records": ["amazon:1530338581"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T21:52:09.138824"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T21:52:09.138824"}}
+/type/author /authors/OL10018293A 1 2021-12-27T21:59:28.950188 {"type": {"key": "/type/author"}, "name": "K. D. Graham", "key": "/authors/OL10018293A", "source_records": ["bwb:9798483957416"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T21:59:28.950188"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T21:59:28.950188"}}
+/type/author /authors/OL10018303A 1 2021-12-27T21:59:47.347300 {"type": {"key": "/type/author"}, "name": "Isabella Publishing", "key": "/authors/OL10018303A", "source_records": ["bwb:9798556389427"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T21:59:47.347300"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T21:59:47.347300"}}
+/type/author /authors/OL10018643A 1 2021-12-27T22:11:01.865385 {"type": {"key": "/type/author"}, "name": "youssef Toddlerz", "key": "/authors/OL10018643A", "source_records": ["bwb:9798536319383"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T22:11:01.865385"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T22:11:01.865385"}}
+/type/author /authors/OL10018668A 1 2021-12-27T22:11:47.596139 {"type": {"key": "/type/author"}, "name": "Benno \u00f6hlich", "key": "/authors/OL10018668A", "source_records": ["bwb:9798486179532"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T22:11:47.596139"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T22:11:47.596139"}}
+/type/author /authors/OL1001868A 2 2008-08-20T18:04:05.501791 {"name": "Ann Schwab", "personal_name": "Ann Schwab", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T18:04:05.501791"}, "key": "/authors/OL1001868A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL1001871A 2 2008-08-20T18:04:06.970355 {"name": "Igor J. Karassik", "personal_name": "Igor J. Karassik", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T18:04:06.970355"}, "key": "/authors/OL1001871A", "birth_date": "1911", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10019410A 1 2021-12-27T22:36:13.465213 {"type": {"key": "/type/author"}, "name": "Baldwin D.", "key": "/authors/OL10019410A", "source_records": ["bwb:9798541791402"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T22:36:13.465213"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T22:36:13.465213"}}
+/type/author /authors/OL10019584A 1 2021-12-27T22:42:26.332004 {"type": {"key": "/type/author"}, "name": "Ilham Bouelaachiane", "key": "/authors/OL10019584A", "source_records": ["bwb:9798473500318"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T22:42:26.332004"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T22:42:26.332004"}}
+/type/author /authors/OL10019811A 1 2021-12-27T22:52:47.397154 {"type": {"key": "/type/author"}, "name": "Rose Kern", "key": "/authors/OL10019811A", "source_records": ["bwb:9798453380640"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T22:52:47.397154"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T22:52:47.397154"}}
+/type/author /authors/OL10020364A 1 2021-12-27T23:17:47.481488 {"type": {"key": "/type/author"}, "name": "J. J. Lili Publicatin", "key": "/authors/OL10020364A", "source_records": ["bwb:9798481701752"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T23:17:47.481488"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T23:17:47.481488"}}
+/type/author /authors/OL10020506A 1 2021-12-27T23:24:38.950675 {"type": {"key": "/type/author"}, "name": "Spun Sugar", "key": "/authors/OL10020506A", "source_records": ["bwb:9798482677995"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T23:24:38.950675"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T23:24:38.950675"}}
+/type/author /authors/OL10020510A 1 2021-12-27T23:24:55.086409 {"type": {"key": "/type/author"}, "name": "Designed By Aryam", "key": "/authors/OL10020510A", "source_records": ["bwb:9798484373260"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T23:24:55.086409"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T23:24:55.086409"}}
+/type/author /authors/OL10020913A 1 2021-12-27T23:43:57.747573 {"type": {"key": "/type/author"}, "name": "Zhou Chunlai", "key": "/authors/OL10020913A", "source_records": ["bwb:9798578308093"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T23:43:57.747573"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T23:43:57.747573"}}
+/type/author /authors/OL10020946A 1 2021-12-27T23:45:37.744066 {"type": {"key": "/type/author"}, "name": "Rusty Bridge", "key": "/authors/OL10020946A", "source_records": ["bwb:9798469122296"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T23:45:37.744066"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T23:45:37.744066"}}
+/type/author /authors/OL10020957A 1 2021-12-27T23:46:24.308315 {"type": {"key": "/type/author"}, "name": "Gogo Johan", "key": "/authors/OL10020957A", "source_records": ["bwb:9798713835217"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T23:46:24.308315"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T23:46:24.308315"}}
+/type/author /authors/OL10020992A 1 2021-12-27T23:48:32.800290 {"type": {"key": "/type/author"}, "name": "Ethan Cruz", "key": "/authors/OL10020992A", "source_records": ["bwb:9798487073495"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T23:48:32.800290"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T23:48:32.800290"}}
+/type/author /authors/OL10021127A 1 2021-12-27T23:54:57.182507 {"type": {"key": "/type/author"}, "name": "Apostle Terrance Williams", "key": "/authors/OL10021127A", "source_records": ["bwb:9798539881719"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T23:54:57.182507"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T23:54:57.182507"}}
+/type/author /authors/OL10021200A 1 2021-12-27T23:58:32.580492 {"type": {"key": "/type/author"}, "name": "alexendra Edition", "key": "/authors/OL10021200A", "source_records": ["bwb:9798692786210"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-27T23:58:32.580492"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-27T23:58:32.580492"}}
+/type/author /authors/OL10021295A 1 2021-12-28T00:04:02.468565 {"type": {"key": "/type/author"}, "name": "Hartley Leggett", "key": "/authors/OL10021295A", "source_records": ["bwb:9798476659952"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T00:04:02.468565"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T00:04:02.468565"}}
+/type/author /authors/OL10021397A 1 2021-12-28T00:10:26.113223 {"type": {"key": "/type/author"}, "name": "Jamaica artnotes", "key": "/authors/OL10021397A", "source_records": ["bwb:9798481294889"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T00:10:26.113223"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T00:10:26.113223"}}
+/type/author /authors/OL10021497A 1 2021-12-28T00:15:31.569340 {"type": {"key": "/type/author"}, "name": "Emma Edition", "key": "/authors/OL10021497A", "source_records": ["bwb:9798687196901"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T00:15:31.569340"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T00:15:31.569340"}}
+/type/author /authors/OL10021516A 1 2021-12-28T00:18:37.693122 {"type": {"key": "/type/author"}, "name": "Lasief Adan", "key": "/authors/OL10021516A", "source_records": ["bwb:9798481528298"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T00:18:37.693122"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T00:18:37.693122"}}
+/type/author /authors/OL10021722A 1 2021-12-28T00:30:47.851677 {"type": {"key": "/type/author"}, "name": "Ashish PUBLICATION", "key": "/authors/OL10021722A", "source_records": ["bwb:9798472461566"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T00:30:47.851677"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T00:30:47.851677"}}
+/type/author /authors/OL10022101A 1 2021-12-28T00:50:47.619606 {"type": {"key": "/type/author"}, "name": "Jone. was Ts Publication", "key": "/authors/OL10022101A", "source_records": ["bwb:9798551474340"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T00:50:47.619606"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T00:50:47.619606"}}
+/type/author /authors/OL10022703A 1 2021-12-28T01:25:37.600999 {"type": {"key": "/type/author"}, "name": "Jacquiline Seever", "key": "/authors/OL10022703A", "source_records": ["bwb:9798469894841"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T01:25:37.600999"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T01:25:37.600999"}}
+/type/author /authors/OL10022797A 1 2021-12-28T01:28:47.493384 {"type": {"key": "/type/author"}, "name": "Sam Larrivee", "key": "/authors/OL10022797A", "source_records": ["bwb:9781938394713"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T01:28:47.493384"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T01:28:47.493384"}}
+/type/author /authors/OL1002291A 1 2008-04-01T03:28:50.625462 {"name": "Parr, John", "personal_name": "Parr, John", "last_modified": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "key": "/authors/OL1002291A", "type": {"key": "/type/author"}, "revision": 1}
+/type/author /authors/OL1002317A 2 2008-08-20T18:07:41.039472 {"name": "James Pye", "personal_name": "James Pye", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T18:07:41.039472"}, "key": "/authors/OL1002317A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10023527A 1 2021-12-28T01:48:40.239601 {"type": {"key": "/type/author"}, "name": "Elaine Chandler-Harris", "key": "/authors/OL10023527A", "source_records": ["bwb:9781698709727"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T01:48:40.239601"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T01:48:40.239601"}}
+/type/author /authors/OL10023662A 1 2021-12-28T01:52:43.094448 {"type": {"key": "/type/author"}, "name": "Caleigh Willis", "key": "/authors/OL10023662A", "source_records": ["bwb:9781638376880"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T01:52:43.094448"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T01:52:43.094448"}}
+/type/author /authors/OL10024583A 1 2021-12-28T02:19:22.948412 {"type": {"key": "/type/author"}, "name": "Sandi Brinson", "key": "/authors/OL10024583A", "source_records": ["bwb:9798985067712"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T02:19:22.948412"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T02:19:22.948412"}}
+/type/author /authors/OL10024712A 1 2021-12-28T02:22:44.159749 {"type": {"key": "/type/author"}, "name": "Emily Rickert", "key": "/authors/OL10024712A", "source_records": ["bwb:9781665538671"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T02:22:44.159749"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T02:22:44.159749"}}
+/type/author /authors/OL10024816A 1 2021-12-28T02:27:18.444461 {"type": {"key": "/type/author"}, "name": "Nina Lynn", "key": "/authors/OL10024816A", "source_records": ["bwb:9780989450683"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T02:27:18.444461"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T02:27:18.444461"}}
+/type/author /authors/OL10024910A 1 2021-12-28T02:30:22.416369 {"type": {"key": "/type/author"}, "name": "Thomas Gompf", "key": "/authors/OL10024910A", "source_records": ["bwb:9781735919348"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T02:30:22.416369"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T02:30:22.416369"}}
+/type/author /authors/OL10025148A 1 2021-12-28T02:36:55.386237 {"type": {"key": "/type/author"}, "name": "Dante De Santis", "key": "/authors/OL10025148A", "source_records": ["bwb:9798514410071"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T02:36:55.386237"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T02:36:55.386237"}}
+/type/author /authors/OL10025573A 1 2021-12-28T02:50:47.720205 {"type": {"key": "/type/author"}, "name": "Samuel L. Jacksonw", "key": "/authors/OL10025573A", "source_records": ["bwb:9798509300493"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T02:50:47.720205"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T02:50:47.720205"}}
+/type/author /authors/OL10026327A 1 2021-12-28T03:25:39.100546 {"type": {"key": "/type/author"}, "name": "Muchacho Mandanga", "key": "/authors/OL10026327A", "source_records": ["bwb:9798478743499"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T03:25:39.100546"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T03:25:39.100546"}}
+/type/author /authors/OL10026666A 1 2021-12-28T03:39:40.493658 {"type": {"key": "/type/author"}, "name": "Moussaoui MOUSSAOUI", "key": "/authors/OL10026666A", "source_records": ["bwb:9798491958238"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T03:39:40.493658"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T03:39:40.493658"}}
+/type/author /authors/OL10026764A 1 2021-12-28T03:44:52.926954 {"type": {"key": "/type/author"}, "name": "George smith", "key": "/authors/OL10026764A", "source_records": ["bwb:9798489033374"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T03:44:52.926954"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T03:44:52.926954"}}
+/type/author /authors/OL10026973A 2 2022-04-12T20:59:36.192764 {"type": {"key": "/type/author"}, "name": "Ojingeo Geim \uc624\uc9d5\uc5b4\uac8c\uc784", "key": "/authors/OL10026973A", "source_records": ["bwb:9798483891949"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2021-12-28T03:56:01.270884"}, "last_modified": {"type": "/type/datetime", "value": "2022-04-12T20:59:36.192764"}}
+/type/author /authors/OL10027929A 1 2021-12-28T04:48:03.301023 {"type": {"key": "/type/author"}, "name": "Michael Renniger", "key": "/authors/OL10027929A", "source_records": ["bwb:9798720245580"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T04:48:03.301023"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T04:48:03.301023"}}
+/type/author /authors/OL10028434A 1 2021-12-28T05:15:29.669820 {"type": {"key": "/type/author"}, "name": "Meshae Johnson", "key": "/authors/OL10028434A", "source_records": ["bwb:9798488573888"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T05:15:29.669820"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T05:15:29.669820"}}
+/type/author /authors/OL10028475A 1 2021-12-28T05:17:55.680445 {"type": {"key": "/type/author"}, "name": "N\u00e9stor A. Corona", "key": "/authors/OL10028475A", "source_records": ["bwb:9798482623527"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T05:17:55.680445"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T05:17:55.680445"}}
+/type/author /authors/OL10028536A 1 2021-12-28T05:21:46.630910 {"type": {"key": "/type/author"}, "name": "Sarah Herbison", "key": "/authors/OL10028536A", "source_records": ["bwb:9798490822547"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T05:21:46.630910"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T05:21:46.630910"}}
+/type/author /authors/OL10029050A 1 2021-12-28T05:54:20.804808 {"type": {"key": "/type/author"}, "name": "Cristian Vincelli", "key": "/authors/OL10029050A", "source_records": ["bwb:9798490590750"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T05:54:20.804808"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T05:54:20.804808"}}
+/type/author /authors/OL10029198A 1 2021-12-28T06:04:48.825361 {"type": {"key": "/type/author"}, "name": "katy calendar", "key": "/authors/OL10029198A", "source_records": ["bwb:9798475750841"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T06:04:48.825361"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T06:04:48.825361"}}
+/type/author /authors/OL10029278A 1 2021-12-28T06:11:31.518211 {"type": {"key": "/type/author"}, "name": "Ann Mary", "key": "/authors/OL10029278A", "source_records": ["bwb:9798524960771"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T06:11:31.518211"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T06:11:31.518211"}}
+/type/author /authors/OL10029659A 1 2021-12-28T06:42:20.647974 {"type": {"key": "/type/author"}, "name": "Adebayo DhikruLlahi", "key": "/authors/OL10029659A", "source_records": ["bwb:9798489705080"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T06:42:20.647974"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T06:42:20.647974"}}
+/type/author /authors/OL10029704A 1 2021-12-28T06:46:50.587227 {"type": {"key": "/type/author"}, "name": "krs Book co.", "key": "/authors/OL10029704A", "source_records": ["bwb:9798525928893"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T06:46:50.587227"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T06:46:50.587227"}}
+/type/author /authors/OL10029815A 1 2021-12-28T06:53:11.745772 {"type": {"key": "/type/author"}, "name": "Parliament England Parliament England and Wales", "key": "/authors/OL10029815A", "source_records": ["bwb:9798730197787"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T06:53:11.745772"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T06:53:11.745772"}}
+/type/author /authors/OL10029831A 1 2021-12-28T06:54:12.813842 {"type": {"key": "/type/author"}, "name": "Bart At", "key": "/authors/OL10029831A", "source_records": ["bwb:9798588235051"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T06:54:12.813842"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T06:54:12.813842"}}
+/type/author /authors/OL10030045A 1 2021-12-28T07:10:50.839160 {"type": {"key": "/type/author"}, "name": "Gs Singh", "key": "/authors/OL10030045A", "source_records": ["bwb:9798523786563"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T07:10:50.839160"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T07:10:50.839160"}}
+/type/author /authors/OL10031128A 1 2021-12-28T08:26:46.322956 {"type": {"key": "/type/author"}, "name": "Prossori Books", "key": "/authors/OL10031128A", "source_records": ["bwb:9798538818815"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T08:26:46.322956"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T08:26:46.322956"}}
+/type/author /authors/OL10031534A 1 2021-12-28T08:55:43.895879 {"type": {"key": "/type/author"}, "name": "Lillian Hanna", "key": "/authors/OL10031534A", "source_records": ["bwb:9780982419564"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T08:55:43.895879"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T08:55:43.895879"}}
+/type/author /authors/OL10031557A 1 2021-12-28T08:56:20.324026 {"type": {"key": "/type/author"}, "name": "Aldo Pourchet", "key": "/authors/OL10031557A", "source_records": ["bwb:9781939322517"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T08:56:20.324026"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T08:56:20.324026"}}
+/type/author /authors/OL10031564A 1 2021-12-28T08:56:39.767981 {"type": {"key": "/type/author"}, "name": "Harding McFadden", "key": "/authors/OL10031564A", "source_records": ["bwb:9781953589125"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T08:56:39.767981"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T08:56:39.767981"}}
+/type/author /authors/OL1003196A 2 2008-08-20T18:14:53.402547 {"name": "David B. Lellinger", "personal_name": "David B. Lellinger", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T18:14:53.402547"}, "key": "/authors/OL1003196A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL1003208A 1 2008-04-01T03:28:50.625462 {"name": "Marian Grandma.", "title": "Grandma.", "personal_name": "Marian", "last_modified": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "key": "/authors/OL1003208A", "type": {"key": "/type/author"}, "revision": 1}
+/type/author /authors/OL10032293A 1 2021-12-28T09:19:54.562469 {"type": {"key": "/type/author"}, "name": "Caleb Gayle", "key": "/authors/OL10032293A", "source_records": ["bwb:9780593329580"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T09:19:54.562469"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T09:19:54.562469"}}
+/type/author /authors/OL10032658A 1 2021-12-28T09:32:17.144831 {"type": {"key": "/type/author"}, "name": "Ruggero Cefalo", "key": "/authors/OL10032658A", "source_records": ["bwb:9781447365792"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T09:32:17.144831"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T09:32:17.144831"}}
+/type/author /authors/OL10032673A 1 2021-12-28T09:34:08.268906 {"type": {"key": "/type/author"}, "name": "L. Roy", "key": "/authors/OL10032673A", "source_records": ["bwb:9780143452393"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T09:34:08.268906"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T09:34:08.268906"}}
+/type/author /authors/OL10032721A 1 2021-12-28T09:34:45.021615 {"type": {"key": "/type/author"}, "name": "Cristi Hallerman Boone", "key": "/authors/OL10032721A", "source_records": ["bwb:9781667801483"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T09:34:45.021615"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T09:34:45.021615"}}
+/type/author /authors/OL10033242A 1 2021-12-28T10:01:29.544245 {"type": {"key": "/type/author"}, "name": "Betty DesPortes", "key": "/authors/OL10033242A", "source_records": ["bwb:9781647084646"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T10:01:29.544245"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T10:01:29.544245"}}
+/type/author /authors/OL1003324A 2 2008-08-20T18:16:32.484246 {"name": "Bernard Virshup", "personal_name": "Bernard Virshup", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T18:16:32.484246"}, "key": "/authors/OL1003324A", "birth_date": "1922", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10033804A 1 2021-12-28T10:20:34.664465 {"type": {"key": "/type/author"}, "name": "Angie Savoy", "key": "/authors/OL10033804A", "source_records": ["bwb:9781732525412"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T10:20:34.664465"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T10:20:34.664465"}}
+/type/author /authors/OL1003383A 2 2008-08-20T18:17:09.088156 {"name": "James Mayall", "personal_name": "James Mayall", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T18:17:09.088156"}, "key": "/authors/OL1003383A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10034040A 1 2021-12-28T10:26:21.310259 {"type": {"key": "/type/author"}, "name": "Tio Cabr\u00f3n", "key": "/authors/OL10034040A", "source_records": ["bwb:9780942018400"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T10:26:21.310259"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T10:26:21.310259"}}
+/type/author /authors/OL10034471A 1 2021-12-28T10:40:35.427574 {"type": {"key": "/type/author"}, "name": "hajarmj budget", "key": "/authors/OL10034471A", "source_records": ["bwb:9798495310698"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T10:40:35.427574"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T10:40:35.427574"}}
+/type/author /authors/OL10034664A 1 2021-12-28T10:48:45.847560 {"type": {"key": "/type/author"}, "name": "Dana Nguyen", "key": "/authors/OL10034664A", "source_records": ["bwb:9798494216441"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T10:48:45.847560"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T10:48:45.847560"}}
+/type/author /authors/OL10034907A 1 2021-12-28T10:59:30.351490 {"type": {"key": "/type/author"}, "name": "roma publish", "key": "/authors/OL10034907A", "source_records": ["bwb:9798529344231"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T10:59:30.351490"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T10:59:30.351490"}}
+/type/author /authors/OL10035230A 1 2021-12-28T11:14:27.440381 {"type": {"key": "/type/author"}, "name": "Tran Publishing", "key": "/authors/OL10035230A", "source_records": ["bwb:9798647983787"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T11:14:27.440381"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T11:14:27.440381"}}
+/type/author /authors/OL1003592A 2 2008-08-20T18:19:07.347452 {"name": "Paul R. Hanson", "personal_name": "Paul R. Hanson", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T18:19:07.347452"}, "key": "/authors/OL1003592A", "birth_date": "1952", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10036197A 1 2021-12-28T11:58:07.079640 {"type": {"key": "/type/author"}, "name": "Aprenda os segredos nunca revelados E. lucre com suas milhas", "key": "/authors/OL10036197A", "source_records": ["bwb:9798468965917"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T11:58:07.079640"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T11:58:07.079640"}}
+/type/author /authors/OL10036298A 1 2021-12-28T12:03:47.317284 {"type": {"key": "/type/author"}, "name": "Nicole Olindo", "key": "/authors/OL10036298A", "source_records": ["bwb:9798716369894"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T12:03:47.317284"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T12:03:47.317284"}}
+/type/author /authors/OL10036923A 1 2021-12-28T12:41:11.509763 {"type": {"key": "/type/author"}, "name": "Artbubble Artbubble Designs", "key": "/authors/OL10036923A", "source_records": ["bwb:9798494810861"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T12:41:11.509763"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T12:41:11.509763"}}
+/type/author /authors/OL10037210A 2 2022-04-12T20:47:58.667256 {"type": {"key": "/type/author"}, "name": "notebook \u30ce\u30fc\u30c8", "key": "/authors/OL10037210A", "source_records": ["bwb:9798619140927"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2021-12-28T12:57:00.566481"}, "last_modified": {"type": "/type/datetime", "value": "2022-04-12T20:47:58.667256"}}
+/type/author /authors/OL10037407A 1 2021-12-28T13:08:11.127145 {"type": {"key": "/type/author"}, "name": "James Hussey", "key": "/authors/OL10037407A", "source_records": ["bwb:9798693441071"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T13:08:11.127145"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T13:08:11.127145"}}
+/type/author /authors/OL10037455A 1 2021-12-28T13:10:32.822867 {"type": {"key": "/type/author"}, "name": "R. J. Hageman", "key": "/authors/OL10037455A", "source_records": ["bwb:9798548068040"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T13:10:32.822867"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T13:10:32.822867"}}
+/type/author /authors/OL10037789A 1 2021-12-28T13:30:30.288791 {"type": {"key": "/type/author"}, "name": "Magdalene Pietrowicz", "key": "/authors/OL10037789A", "source_records": ["bwb:9798740240718"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T13:30:30.288791"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T13:30:30.288791"}}
+/type/author /authors/OL10038028A 1 2021-12-28T13:44:18.533538 {"type": {"key": "/type/author"}, "name": "Prisha Laskar", "key": "/authors/OL10038028A", "source_records": ["bwb:9798471545991"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T13:44:18.533538"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T13:44:18.533538"}}
+/type/author /authors/OL10038636A 1 2021-12-28T14:23:00.053919 {"type": {"key": "/type/author"}, "name": "Tom Tamajka", "key": "/authors/OL10038636A", "source_records": ["bwb:9798591328139"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T14:23:00.053919"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T14:23:00.053919"}}
+/type/author /authors/OL10038989A 1 2021-12-28T14:47:51.786644 {"type": {"key": "/type/author"}, "name": "Rabbi Blumenfeld", "key": "/authors/OL10038989A", "source_records": ["bwb:9798704805007"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T14:47:51.786644"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T14:47:51.786644"}}
+/type/author /authors/OL10039036A 1 2021-12-28T14:50:53.103383 {"type": {"key": "/type/author"}, "name": "shahid sani", "key": "/authors/OL10039036A", "source_records": ["bwb:9798494598097"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T14:50:53.103383"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T14:50:53.103383"}}
+/type/author /authors/OL10039281A 1 2021-12-28T15:07:53.366746 {"type": {"key": "/type/author"}, "name": "A. Z. G. Colours", "key": "/authors/OL10039281A", "source_records": ["bwb:9798485940331"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T15:07:53.366746"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T15:07:53.366746"}}
+/type/author /authors/OL1003940A 2 2008-08-20T18:21:55.476167 {"name": "Terry S. Trepper", "personal_name": "Terry S. Trepper", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T18:21:55.476167"}, "key": "/authors/OL1003940A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10039576A 1 2021-12-28T15:20:51.850704 {"type": {"key": "/type/author"}, "name": "Sasha MacLeod", "key": "/authors/OL10039576A", "source_records": ["bwb:9781647261498"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T15:20:51.850704"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T15:20:51.850704"}}
+/type/author /authors/OL10039843A 1 2021-12-28T15:26:01.478564 {"type": {"key": "/type/author"}, "name": "Shalina Ali", "key": "/authors/OL10039843A", "source_records": ["bwb:9780977617982"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T15:26:01.478564"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T15:26:01.478564"}}
+/type/author /authors/OL10040280A 1 2021-12-28T15:36:19.076144 {"type": {"key": "/type/author"}, "name": "John Dalvi", "key": "/authors/OL10040280A", "source_records": ["bwb:9781639274406"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T15:36:19.076144"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T15:36:19.076144"}}
+/type/author /authors/OL10040385A 1 2021-12-28T15:38:42.763034 {"type": {"key": "/type/author"}, "name": "John Fenmore", "key": "/authors/OL10040385A", "source_records": ["bwb:9781639871810"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T15:38:42.763034"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T15:38:42.763034"}}
+/type/author /authors/OL10040409A 1 2021-12-28T15:39:13.630639 {"type": {"key": "/type/author"}, "name": "Connor Santiago", "key": "/authors/OL10040409A", "source_records": ["bwb:9781639273973"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T15:39:13.630639"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T15:39:13.630639"}}
+/type/author /authors/OL10040845A 1 2021-12-28T15:51:54.252805 {"type": {"key": "/type/author"}, "name": "Michael Couch", "key": "/authors/OL10040845A", "source_records": ["bwb:9781735918556"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T15:51:54.252805"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T15:51:54.252805"}}
+/type/author /authors/OL10041124A 1 2021-12-28T15:58:17.715950 {"type": {"key": "/type/author"}, "name": "Irmgard Siebert", "key": "/authors/OL10041124A", "source_records": ["bwb:9783465045786"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T15:58:17.715950"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T15:58:17.715950"}}
+/type/author /authors/OL10041772A 1 2021-12-28T16:19:47.716180 {"type": {"key": "/type/author"}, "name": "Hannah Preston-Pita", "key": "/authors/OL10041772A", "source_records": ["bwb:9781735057002"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T16:19:47.716180"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T16:19:47.716180"}}
+/type/author /authors/OL10041886A 1 2021-12-28T16:22:16.610473 {"type": {"key": "/type/author"}, "name": "Haig Norian", "key": "/authors/OL10041886A", "source_records": ["bwb:9780578315867"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T16:22:16.610473"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T16:22:16.610473"}}
+/type/author /authors/OL10042026A 1 2021-12-28T16:29:02.706177 {"type": {"key": "/type/author"}, "name": "Jimmy R. Hammond MSCJ-PA", "key": "/authors/OL10042026A", "source_records": ["bwb:9781664246522"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T16:29:02.706177"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T16:29:02.706177"}}
+/type/author /authors/OL10042234A 1 2021-12-28T16:40:10.523394 {"type": {"key": "/type/author"}, "name": "T. T. Ganesh Babu", "key": "/authors/OL10042234A", "source_records": ["bwb:9781668441244"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T16:40:10.523394"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T16:40:10.523394"}}
+/type/author /authors/OL10042269A 1 2021-12-28T16:40:46.355598 {"type": {"key": "/type/author"}, "name": "Sangeetha Krishnan", "key": "/authors/OL10042269A", "source_records": ["bwb:9781799893080"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T16:40:46.355598"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T16:40:46.355598"}}
+/type/author /authors/OL10042638A 1 2021-12-28T16:56:57.895654 {"type": {"key": "/type/author"}, "name": "Jerre Tanner", "key": "/authors/OL10042638A", "source_records": ["bwb:9781737960720"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T16:56:57.895654"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T16:56:57.895654"}}
+/type/author /authors/OL10043140A 1 2021-12-28T17:13:58.169078 {"type": {"key": "/type/author"}, "name": "My Plate publishing", "key": "/authors/OL10043140A", "source_records": ["bwb:9798542060415"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T17:13:58.169078"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T17:13:58.169078"}}
+/type/author /authors/OL10043148A 1 2021-12-28T17:14:10.910499 {"type": {"key": "/type/author"}, "name": "Rupa Capona", "key": "/authors/OL10043148A", "source_records": ["bwb:9798462018718"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T17:14:10.910499"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T17:14:10.910499"}}
+/type/author /authors/OL10044252A 1 2021-12-28T18:03:59.348852 {"type": {"key": "/type/author"}, "name": "St D'ARDACOSSE", "key": "/authors/OL10044252A", "source_records": ["bwb:9798751708825"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T18:03:59.348852"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T18:03:59.348852"}}
+/type/author /authors/OL10044281A 1 2021-12-28T18:05:43.733644 {"type": {"key": "/type/author"}, "name": "Bernd Emelia", "key": "/authors/OL10044281A", "source_records": ["bwb:9798752231698"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T18:05:43.733644"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T18:05:43.733644"}}
+/type/author /authors/OL10044527A 1 2021-12-28T18:18:42.875153 {"type": {"key": "/type/author"}, "name": "XeLenzoz Publications", "key": "/authors/OL10044527A", "source_records": ["bwb:9798492915360"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T18:18:42.875153"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T18:18:42.875153"}}
+/type/author /authors/OL10044542A 1 2021-12-28T18:19:35.229308 {"type": {"key": "/type/author"}, "name": "Brian Kyrie", "key": "/authors/OL10044542A", "source_records": ["bwb:9798582189602"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T18:19:35.229308"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T18:19:35.229308"}}
+/type/author /authors/OL10044636A 1 2021-12-28T18:24:58.622834 {"type": {"key": "/type/author"}, "name": "Owl syd Owl syd Press", "key": "/authors/OL10044636A", "source_records": ["bwb:9798498415086"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T18:24:58.622834"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T18:24:58.622834"}}
+/type/author /authors/OL10044645A 1 2021-12-28T18:25:30.911101 {"type": {"key": "/type/author"}, "name": "mimina lamo", "key": "/authors/OL10044645A", "source_records": ["bwb:9798485777937"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T18:25:30.911101"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T18:25:30.911101"}}
+/type/author /authors/OL10044697A 1 2021-12-28T18:29:41.557448 {"type": {"key": "/type/author"}, "name": "Magnificent Medias", "key": "/authors/OL10044697A", "source_records": ["bwb:9798498296890"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T18:29:41.557448"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T18:29:41.557448"}}
+/type/author /authors/OL10044989A 1 2021-12-28T18:48:25.120947 {"type": {"key": "/type/author"}, "name": "Lucas Stierenberg", "key": "/authors/OL10044989A", "source_records": ["bwb:9798498184760"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T18:48:25.120947"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T18:48:25.120947"}}
+/type/author /authors/OL10045084A 1 2021-12-28T18:54:12.089020 {"type": {"key": "/type/author"}, "name": "Alexander Aronowitz", "key": "/authors/OL10045084A", "source_records": ["bwb:9798716815254"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T18:54:12.089020"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T18:54:12.089020"}}
+/type/author /authors/OL10045751A 1 2021-12-28T19:36:56.698803 {"type": {"key": "/type/author"}, "name": "Health Pages", "key": "/authors/OL10045751A", "source_records": ["bwb:9798750044443"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T19:36:56.698803"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T19:36:56.698803"}}
+/type/author /authors/OL10046045A 1 2021-12-28T19:58:25.689974 {"type": {"key": "/type/author"}, "name": "Gift Notebook Madelyn Publishing", "key": "/authors/OL10046045A", "source_records": ["bwb:9798677863882"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T19:58:25.689974"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T19:58:25.689974"}}
+/type/author /authors/OL10046571A 1 2021-12-28T20:37:28.979940 {"type": {"key": "/type/author"}, "name": "Zita MOIKI", "key": "/authors/OL10046571A", "source_records": ["bwb:9798478180034"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T20:37:28.979940"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T20:37:28.979940"}}
+/type/author /authors/OL10046684A 1 2021-12-28T20:45:54.879058 {"type": {"key": "/type/author"}, "name": "Bobi Bobi Prasad", "key": "/authors/OL10046684A", "source_records": ["bwb:9798467338330"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T20:45:54.879058"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T20:45:54.879058"}}
+/type/author /authors/OL10046826A 1 2021-12-28T20:56:14.716968 {"type": {"key": "/type/author"}, "name": "Giulia Santini", "key": "/authors/OL10046826A", "source_records": ["bwb:9798499422687"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T20:56:14.716968"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T20:56:14.716968"}}
+/type/author /authors/OL10047234A 1 2021-12-28T21:29:08.252751 {"type": {"key": "/type/author"}, "name": "NoteboI Respectfully NoteboI Respectfully Don't Careok", "key": "/authors/OL10047234A", "source_records": ["bwb:9798496131711"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T21:29:08.252751"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T21:29:08.252751"}}
+/type/author /authors/OL10047423A 1 2021-12-28T21:45:12.512489 {"type": {"key": "/type/author"}, "name": "Crystal Brown", "key": "/authors/OL10047423A", "source_records": ["bwb:9798486363009"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T21:45:12.512489"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T21:45:12.512489"}}
+/type/author /authors/OL1004792A 2 2008-08-20T18:28:43.843255 {"name": "Sabine Rewald", "personal_name": "Sabine Rewald", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T18:28:43.843255"}, "key": "/authors/OL1004792A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10048132A 1 2021-12-28T22:25:37.697342 {"type": {"key": "/type/author"}, "name": "Keren Etkin", "key": "/authors/OL10048132A", "source_records": ["bwb:9781637307069"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T22:25:37.697342"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T22:25:37.697342"}}
+/type/author /authors/OL10048446A 1 2021-12-28T22:32:44.376334 {"type": {"key": "/type/author"}, "name": "Denisha Seals", "key": "/authors/OL10048446A", "source_records": ["bwb:9781944882839"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T22:32:44.376334"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T22:32:44.376334"}}
+/type/author /authors/OL1004849A 2 2008-08-20T18:29:06.48557 {"name": "Ron Featheringill", "personal_name": "Ron Featheringill", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T18:29:06.48557"}, "key": "/authors/OL1004849A", "birth_date": "1948", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10048538A 1 2021-12-28T22:35:02.013164 {"type": {"key": "/type/author"}, "name": "Justin A. Dillihay", "key": "/authors/OL10048538A", "source_records": ["bwb:9780996651585"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T22:35:02.013164"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T22:35:02.013164"}}
+/type/author /authors/OL10049016A 1 2021-12-28T22:52:47.881310 {"type": {"key": "/type/author"}, "name": "Stephen Blancett", "key": "/authors/OL10049016A", "source_records": ["bwb:9780578319476"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T22:52:47.881310"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T22:52:47.881310"}}
+/type/author /authors/OL10049046A 1 2021-12-28T22:53:21.947325 {"type": {"key": "/type/author"}, "name": "Manuel A. Moreno", "key": "/authors/OL10049046A", "source_records": ["bwb:9781006374982"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T22:53:21.947325"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T22:53:21.947325"}}
+/type/author /authors/OL10049274A 1 2021-12-28T23:10:22.400388 {"type": {"key": "/type/author"}, "name": "Rogers Brothers Company", "key": "/authors/OL10049274A", "source_records": ["ia:CAT31367494"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-28T23:10:22.400388"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-28T23:10:22.400388"}}
+/type/author /authors/OL10049459A 1 2021-12-29T01:02:52.200548 {"type": {"key": "/type/author"}, "name": "B. J. Crespi", "key": "/authors/OL10049459A", "source_records": ["bwb:9780691009292"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-29T01:02:52.200548"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-29T01:02:52.200548"}}
+/type/author /authors/OL10050001A 1 2021-12-29T02:16:47.931945 {"type": {"key": "/type/author"}, "name": "Prof. Hubert Biedermann", "key": "/authors/OL10050001A", "source_records": ["bwb:9783835002227"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-29T02:16:47.931945"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-29T02:16:47.931945"}}
+/type/author /authors/OL1005005A 2 2008-08-20T18:29:58.935425 {"name": "Ann Galperin", "personal_name": "Ann Galperin", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T18:29:58.935425"}, "key": "/authors/OL1005005A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10050222A 1 2021-12-29T02:39:22.673598 {"type": {"key": "/type/author"}, "name": "Charity Commission Staff Great Britain", "key": "/authors/OL10050222A", "source_records": ["bwb:9780855981808"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-29T02:39:22.673598"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-29T02:39:22.673598"}}
+/type/author /authors/OL10050264A 1 2021-12-29T02:46:42.096354 {"type": {"key": "/type/author"}, "name": "DeMarco", "key": "/authors/OL10050264A", "source_records": ["bwb:9783446412545"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-29T02:46:42.096354"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-29T02:46:42.096354"}}
+/type/author /authors/OL10050442A 1 2021-12-29T03:06:58.229877 {"type": {"key": "/type/author"}, "name": "Eva Ersb\u00f8ll", "key": "/authors/OL10050442A", "source_records": ["bwb:9789048504466"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-29T03:06:58.229877"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-29T03:06:58.229877"}}
+/type/author /authors/OL10050824A 1 2021-12-29T03:35:14.811184 {"type": {"key": "/type/author"}, "name": "Gunilla Carlsson", "key": "/authors/OL10050824A", "source_records": ["bwb:9781848138278"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-29T03:35:14.811184"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-29T03:35:14.811184"}}
+/type/author /authors/OL10051413A 1 2021-12-29T04:16:03.336184 {"type": {"key": "/type/author"}, "name": "Fomundam Eric Awandeh", "key": "/authors/OL10051413A", "source_records": ["bwb:9781452081762"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-29T04:16:03.336184"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-29T04:16:03.336184"}}
+/type/author /authors/OL10051785A 1 2021-12-29T04:47:31.626419 {"type": {"key": "/type/author"}, "name": "Cortney Fisher", "key": "/authors/OL10051785A", "source_records": ["bwb:9780757586330"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-29T04:47:31.626419"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-29T04:47:31.626419"}}
+/type/author /authors/OL10051836A 1 2021-12-29T04:50:03.424812 {"type": {"key": "/type/author"}, "name": "Alan Ackmann", "key": "/authors/OL10051836A", "source_records": ["bwb:9780757596216"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-29T04:50:03.424812"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-29T04:50:03.424812"}}
+/type/author /authors/OL10051868A 1 2021-12-29T04:51:42.768805 {"type": {"key": "/type/author"}, "name": "Peter Magolda", "key": "/authors/OL10051868A", "source_records": ["bwb:9780230117167"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-29T04:51:42.768805"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-29T04:51:42.768805"}}
+/type/author /authors/OL10052435A 1 2021-12-29T05:20:36.164548 {"type": {"key": "/type/author"}, "name": "Herrand von Herrand von Wildonie", "key": "/authors/OL10052435A", "source_records": ["bwb:9783111277707"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-29T05:20:36.164548"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-29T05:20:36.164548"}}
+/type/author /authors/OL10052574A 1 2021-12-29T05:28:43.668402 {"type": {"key": "/type/author"}, "name": "Kurt Herber Johansen", "key": "/authors/OL10052574A", "source_records": ["bwb:9783111287010"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-29T05:28:43.668402"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-29T05:28:43.668402"}}
+/type/author /authors/OL10052775A 1 2021-12-29T05:48:47.199309 {"type": {"key": "/type/author"}, "name": "B\u00e9la Anda", "key": "/authors/OL10052775A", "source_records": ["bwb:9783834940087"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-29T05:48:47.199309"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-29T05:48:47.199309"}}
+/type/author /authors/OL10052888A 1 2021-12-29T05:56:12.972772 {"type": {"key": "/type/author"}, "name": "E. Combet", "key": "/authors/OL10052888A", "source_records": ["bwb:9783540392729"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-29T05:56:12.972772"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-29T05:56:12.972772"}}
+/type/author /authors/OL10052892A 1 2021-12-29T05:56:24.941152 {"type": {"key": "/type/author"}, "name": "Theodore G. Ostrom", "key": "/authors/OL10052892A", "source_records": ["bwb:9783540363699"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-29T05:56:24.941152"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-29T05:56:24.941152"}}
+/type/author /authors/OL10052917A 1 2021-12-29T05:57:04.270377 {"type": {"key": "/type/author"}, "name": "Prof. Michael Kleinaltenkamp", "key": "/authors/OL10052917A", "source_records": ["bwb:9783835093553"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-29T05:57:04.270377"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-29T05:57:04.270377"}}
+/type/author /authors/OL1005314A 2 2008-08-20T18:32:07.885459 {"name": "Jerome Price", "personal_name": "Jerome Price", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T18:32:07.885459"}, "key": "/authors/OL1005314A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10053539A 1 2021-12-29T06:48:44.747380 {"type": {"key": "/type/author"}, "name": "Eric DREZET", "key": "/authors/OL10053539A", "source_records": ["bwb:9782759808649"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-29T06:48:44.747380"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-29T06:48:44.747380"}}
+/type/author /authors/OL10054131A 1 2021-12-29T07:21:20.084579 {"type": {"key": "/type/author"}, "name": "Percy 1879- Lubbock", "key": "/authors/OL10054131A", "source_records": ["amazon:1014200628"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-29T07:21:20.084579"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-29T07:21:20.084579"}}
+/type/author /authors/OL10054936A 1 2021-12-29T08:27:19.730034 {"type": {"key": "/type/author"}, "name": "Debby Akerman", "key": "/authors/OL10054936A", "source_records": ["bwb:9781306443890"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-29T08:27:19.730034"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-29T08:27:19.730034"}}
+/type/author /authors/OL10055036A 1 2021-12-29T08:34:45.954448 {"type": {"key": "/type/author"}, "name": "Xavier Marie", "key": "/authors/OL10055036A", "source_records": ["bwb:9783642434679"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-29T08:34:45.954448"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-29T08:34:45.954448"}}
+/type/author /authors/OL10055115A 1 2021-12-29T08:48:08.544322 {"type": {"key": "/type/author"}, "name": "Sosteness Francis Materu", "key": "/authors/OL10055115A", "source_records": ["bwb:9789462650404"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-29T08:48:08.544322"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-29T08:48:08.544322"}}
+/type/author /authors/OL10055683A 1 2021-12-29T09:32:32.587877 {"type": {"key": "/type/author"}, "name": "Klaus Philipp", "key": "/authors/OL10055683A", "source_records": ["bwb:9783035601046"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-29T09:32:32.587877"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-29T09:32:32.587877"}}
+/type/author /authors/OL10056093A 1 2021-12-29T09:56:14.497706 {"type": {"key": "/type/author"}, "name": "Martin J. Ahmed", "key": "/authors/OL10056093A", "source_records": ["bwb:9783658093365"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-29T09:56:14.497706"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-29T09:56:14.497706"}}
+/type/author /authors/OL10056828A 1 2021-12-29T10:51:40.530577 {"type": {"key": "/type/author"}, "name": "Martin Reinold", "key": "/authors/OL10056828A", "source_records": ["bwb:9783658118815"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-29T10:51:40.530577"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-29T10:51:40.530577"}}
+/type/author /authors/OL10056832A 1 2021-12-29T10:51:57.744991 {"type": {"key": "/type/author"}, "name": "Tim Coolbear", "key": "/authors/OL10056832A", "source_records": ["bwb:9780081006856"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-29T10:51:57.744991"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-29T10:51:57.744991"}}
+/type/author /authors/OL10057803A 1 2021-12-29T11:51:59.499196 {"type": {"key": "/type/author"}, "name": "F. Heiduk", "key": "/authors/OL10057803A", "source_records": ["bwb:9781349473779"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-29T11:51:59.499196"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-29T11:51:59.499196"}}
+/type/author /authors/OL10058555A 1 2021-12-29T12:46:44.046465 {"type": {"key": "/type/author"}, "name": "dodie", "key": "/authors/OL10058555A", "source_records": ["bwb:9781473551886"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-29T12:46:44.046465"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-29T12:46:44.046465"}}
+/type/author /authors/OL10058712A 1 2021-12-29T12:57:48.037513 {"type": {"key": "/type/author"}, "name": "Claude Stoll", "key": "/authors/OL10058712A", "source_records": ["bwb:9782759821662"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-29T12:57:48.037513"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-29T12:57:48.037513"}}
+/type/author /authors/OL10058771A 1 2021-12-29T13:00:00.523846 {"type": {"key": "/type/author"}, "name": "Laurent Cornier", "key": "/authors/OL10058771A", "source_records": ["bwb:9782759819973"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-29T13:00:00.523846"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-29T13:00:00.523846"}}
+/type/author /authors/OL10058984A 1 2021-12-29T13:10:29.603852 {"type": {"key": "/type/author"}, "name": "Renate Motzer", "key": "/authors/OL10058984A", "source_records": ["bwb:9783658203696"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-29T13:10:29.603852"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-29T13:10:29.603852"}}
+/type/author /authors/OL10059108A 1 2021-12-29T13:17:22.266946 {"type": {"key": "/type/author"}, "name": "Zachary MOORE", "key": "/authors/OL10059108A", "source_records": ["bwb:9781524937751"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-29T13:17:22.266946"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-29T13:17:22.266946"}}
+/type/author /authors/OL10059124A 1 2021-12-29T13:17:48.471668 {"type": {"key": "/type/author"}, "name": "Julien Blonde", "key": "/authors/OL10059124A", "source_records": ["bwb:9781785866616"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-29T13:17:48.471668"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-29T13:17:48.471668"}}
+/type/author /authors/OL10059774A 1 2021-12-29T15:20:37.925456 {"type": {"key": "/type/author"}, "name": "Blanca Estela Maldonado", "key": "/authors/OL10059774A", "source_records": ["bwb:9781784916251"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-29T15:20:37.925456"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-29T15:20:37.925456"}}
+/type/author /authors/OL10059999A 1 2021-12-29T15:51:35.380726 {"type": {"key": "/type/author"}, "name": "Sudipto Chaki", "key": "/authors/OL10059999A", "source_records": ["bwb:9783030049027"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-29T15:51:35.380726"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-29T15:51:35.380726"}}
+/type/author /authors/OL10060008A 1 2021-12-29T15:52:37.560608 {"type": {"key": "/type/author"}, "name": "Cristy Wilson", "key": "/authors/OL10060008A", "source_records": ["bwb:9781459820593"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-29T15:52:37.560608"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-29T15:52:37.560608"}}
+/type/author /authors/OL10060127A 1 2021-12-29T16:05:04.475773 {"type": {"key": "/type/author"}, "name": "Jonas Tritschler", "key": "/authors/OL10060127A", "source_records": ["bwb:9781493218639"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-29T16:05:04.475773"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-29T16:05:04.475773"}}
+/type/author /authors/OL10060252A 1 2021-12-29T16:11:01.803013 {"type": {"key": "/type/author"}, "name": "Shivanshu Rai", "key": "/authors/OL10060252A", "source_records": ["bwb:9789387085008"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-29T16:11:01.803013"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-29T16:11:01.803013"}}
+/type/author /authors/OL10060490A 1 2021-12-29T16:22:19.286720 {"type": {"key": "/type/author"}, "name": "REICHLIN", "key": "/authors/OL10060490A", "source_records": ["bwb:9783858818546"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-29T16:22:19.286720"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-29T16:22:19.286720"}}
+/type/author /authors/OL10061315A 1 2021-12-29T17:20:33.766517 {"type": {"key": "/type/author"}, "name": "David Orne", "key": "/authors/OL10061315A", "source_records": ["bwb:9781913245597"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-29T17:20:33.766517"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-29T17:20:33.766517"}}
+/type/author /authors/OL10061383A 1 2021-12-29T17:26:05.735990 {"type": {"key": "/type/author"}, "name": "Eleonora Fonseca Pimentel", "key": "/authors/OL10061383A", "source_records": ["bwb:9780866986168"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-29T17:26:05.735990"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-29T17:26:05.735990"}}
+/type/author /authors/OL1006201A 2 2008-08-20T18:38:44.407974 {"name": "A. F. Carley", "personal_name": "A. F. Carley", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T18:38:44.407974"}, "key": "/authors/OL1006201A", "birth_date": "1949", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL1006225A 2 2008-08-20T18:38:53.217295 {"name": "Stephen McCafferty", "personal_name": "Stephen McCafferty", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T18:38:53.217295"}, "key": "/authors/OL1006225A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10062776A 1 2021-12-29T19:19:19.035075 {"type": {"key": "/type/author"}, "name": "Viralkumar Davra", "key": "/authors/OL10062776A", "source_records": ["bwb:9780128218228"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-29T19:19:19.035075"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-29T19:19:19.035075"}}
+/type/author /authors/OL10062974A 1 2021-12-29T19:29:40.709871 {"type": {"key": "/type/author"}, "name": "Kate McGrath", "key": "/authors/OL10062974A", "source_records": ["bwb:9783030112226"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-29T19:29:40.709871"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-29T19:29:40.709871"}}
+/type/author /authors/OL10062A 1 2008-04-01T03:28:50.625462 {"name": "Bha\u0304skarabhat\u0323t\u0323a Bori\u0304kara", "personal_name": "Bha\u0304skarabhat\u0323t\u0323a Bori\u0304kara", "last_modified": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "key": "/authors/OL10062A", "date": "fl. 1314", "type": {"key": "/type/author"}, "revision": 1}
+/type/author /authors/OL10063430A 1 2021-12-29T20:07:25.919086 {"type": {"key": "/type/author"}, "name": "Guo Kaitian", "key": "/authors/OL10063430A", "source_records": ["bwb:9789813360044"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-29T20:07:25.919086"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-29T20:07:25.919086"}}
+/type/author /authors/OL10063791A 1 2021-12-29T20:24:36.821957 {"type": {"key": "/type/author"}, "name": "Serubiri Moses", "key": "/authors/OL10063791A", "source_records": ["bwb:9789492095893"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-29T20:24:36.821957"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-29T20:24:36.821957"}}
+/type/author /authors/OL10064218A 1 2021-12-29T20:46:57.964584 {"type": {"key": "/type/author"}, "name": "Christine Sagar", "key": "/authors/OL10064218A", "source_records": ["bwb:9783030709051"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-29T20:46:57.964584"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-29T20:46:57.964584"}}
+/type/author /authors/OL10064278A 1 2021-12-29T20:48:18.577029 {"type": {"key": "/type/author"}, "name": "M. ; Cicowiez", "key": "/authors/OL10064278A", "source_records": ["bwb:9789251333518"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-29T20:48:18.577029"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-29T20:48:18.577029"}}
+/type/author /authors/OL1006428A 2 2008-08-20T18:40:28.755191 {"name": "Richard Symanski", "personal_name": "Richard Symanski", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T18:40:28.755191"}, "key": "/authors/OL1006428A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10064786A 1 2021-12-29T21:13:08.131110 {"type": {"key": "/type/author"}, "name": "D-M Withers", "key": "/authors/OL10064786A", "source_records": ["bwb:9781108880244"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-29T21:13:08.131110"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-29T21:13:08.131110"}}
+/type/author /authors/OL1006517A 2 2008-08-20T18:40:59.639509 {"name": "Kenneth Kenichi Tanaka", "personal_name": "Kenneth Kenichi Tanaka", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T18:40:59.639509"}, "key": "/authors/OL1006517A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10065353A 1 2021-12-29T21:47:41.653506 {"type": {"key": "/type/author"}, "name": "Brendan Creane", "key": "/authors/OL10065353A", "source_records": ["bwb:9781098107079"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-29T21:47:41.653506"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-29T21:47:41.653506"}}
+/type/author /authors/OL1006538A 1 2008-04-01T03:28:50.625462 {"name": "International Congress on Applications of Lasers and Electro-optics (7th 1988 Santa Clara, Calif.)", "last_modified": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "key": "/authors/OL1006538A", "type": {"key": "/type/author"}, "revision": 1}
+/type/author /authors/OL10065572A 1 2021-12-29T21:59:50.279399 {"type": {"key": "/type/author"}, "name": "Akademie der Wissenschaften der DDR, Institut f\u00fcr Allgemeine Geschichte, Akademie der", "key": "/authors/OL10065572A", "source_records": ["bwb:9783112530382"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-29T21:59:50.279399"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-29T21:59:50.279399"}}
+/type/author /authors/OL10066466A 1 2021-12-29T22:30:45.860687 {"type": {"key": "/type/author"}, "name": "L. A. den", "key": "/authors/OL10066466A", "source_records": ["bwb:9789251346709"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-29T22:30:45.860687"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-29T22:30:45.860687"}}
+/type/author /authors/OL10066533A 1 2021-12-29T22:33:51.064413 {"type": {"key": "/type/author"}, "name": "Deep Shekhar", "key": "/authors/OL10066533A", "source_records": ["bwb:9781000577259"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-29T22:33:51.064413"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-29T22:33:51.064413"}}
+/type/author /authors/OL10067308A 1 2021-12-29T23:11:32.135797 {"type": {"key": "/type/author"}, "name": "Davide Altamura", "key": "/authors/OL10067308A", "source_records": ["bwb:9781785691256"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-29T23:11:32.135797"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-29T23:11:32.135797"}}
+/type/author /authors/OL10068555A 1 2021-12-29T23:54:44.370359 {"type": {"key": "/type/author"}, "name": "Margaret Heinemann", "key": "/authors/OL10068555A", "source_records": ["bwb:9783112479629"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-29T23:54:44.370359"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-29T23:54:44.370359"}}
+/type/author /authors/OL10068561A 1 2021-12-29T23:54:53.951977 {"type": {"key": "/type/author"}, "name": "ASCP Press", "key": "/authors/OL10068561A", "source_records": ["bwb:9780891896616"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-29T23:54:53.951977"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-29T23:54:53.951977"}}
+/type/author /authors/OL10068614A 1 2021-12-29T23:56:23.137427 {"type": {"key": "/type/author"}, "name": "Saravanakumar U", "key": "/authors/OL10068614A", "source_records": ["bwb:9781668424728"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-29T23:56:23.137427"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-29T23:56:23.137427"}}
+/type/author /authors/OL1006866A 2 2008-08-20T18:43:35.237687 {"name": "D. L. Stockton", "personal_name": "D. L. Stockton", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T18:43:35.237687"}, "key": "/authors/OL1006866A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10068673A 1 2021-12-29T23:58:32.789526 {"type": {"key": "/type/author"}, "name": "Filip Capek", "key": "/authors/OL10068673A", "source_records": ["bwb:9783643913982"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-29T23:58:32.789526"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-29T23:58:32.789526"}}
+/type/author /authors/OL10068721A 1 2021-12-29T23:59:42.490412 {"type": {"key": "/type/author"}, "name": "Elena Gallitto", "key": "/authors/OL10068721A", "source_records": ["bwb:9783030931681"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-29T23:59:42.490412"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-29T23:59:42.490412"}}
+/type/author /authors/OL10069161A 1 2021-12-30T00:12:07.777067 {"type": {"key": "/type/author"}, "name": "Do Kyun David Kim", "key": "/authors/OL10069161A", "source_records": ["bwb:9781000583373"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-30T00:12:07.777067"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-30T00:12:07.777067"}}
+/type/author /authors/OL10069459A 1 2021-12-30T00:26:41.470311 {"type": {"key": "/type/author"}, "name": "Mohammadreza Daneshvar", "key": "/authors/OL10069459A", "source_records": ["bwb:9780323911337"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-30T00:26:41.470311"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-30T00:26:41.470311"}}
+/type/author /authors/OL10070080A 1 2021-12-30T00:48:33.006670 {"type": {"key": "/type/author"}, "name": "Issy Emeney", "key": "/authors/OL10070080A", "source_records": ["bwb:9781471187612"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-30T00:48:33.006670"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-30T00:48:33.006670"}}
+/type/author /authors/OL10070320A 1 2021-12-30T00:58:06.848923 {"type": {"key": "/type/author"}, "name": "Josh Doble", "key": "/authors/OL10070320A", "source_records": ["bwb:9781526159748"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-30T00:58:06.848923"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-30T00:58:06.848923"}}
+/type/author /authors/OL10070413A 1 2021-12-30T01:09:14.510824 {"type": {"key": "/type/author"}, "name": "Raine Szramski", "key": "/authors/OL10070413A", "source_records": ["bwb:9781931540209"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-30T01:09:14.510824"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-30T01:09:14.510824"}}
+/type/author /authors/OL10071507A 1 2021-12-30T04:02:35.801196 {"type": {"key": "/type/author"}, "name": "William R. True", "key": "/authors/OL10071507A", "source_records": ["bwb:9780199826520"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-30T04:02:35.801196"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-30T04:02:35.801196"}}
+/type/author /authors/OL10071530A 1 2021-12-30T04:03:48.719996 {"type": {"key": "/type/author"}, "name": "Brigitte Madrian", "key": "/authors/OL10071530A", "source_records": ["bwb:9780191528170"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-30T04:03:48.719996"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-30T04:03:48.719996"}}
+/type/author /authors/OL10071567A 1 2021-12-30T04:08:13.720628 {"type": {"key": "/type/author"}, "name": "Coast Learning Systems (Music)", "key": "/authors/OL10071567A", "source_records": ["bwb:9780757512391"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-30T04:08:13.720628"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-30T04:08:13.720628"}}
+/type/author /authors/OL10072101A 1 2021-12-30T05:05:27.726065 {"type": {"key": "/type/author"}, "name": "R. Scott Garner", "key": "/authors/OL10072101A", "source_records": ["bwb:9780199842414"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-30T05:05:27.726065"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-30T05:05:27.726065"}}
+/type/author /authors/OL10072169A 1 2021-12-30T05:10:56.638778 {"type": {"key": "/type/author"}, "name": "Si\u00e2n Griffiths", "key": "/authors/OL10072169A", "source_records": ["bwb:9780191574719"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-30T05:10:56.638778"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-30T05:10:56.638778"}}
+/type/author /authors/OL1007217A 2 2008-08-20T18:46:19.609968 {"name": "Gary Edward Polster", "personal_name": "Gary Edward Polster", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T18:46:19.609968"}, "key": "/authors/OL1007217A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10073137A 1 2021-12-30T07:24:04.906446 {"type": {"key": "/type/author"}, "name": "Robert W. Bernhard", "key": "/authors/OL10073137A", "source_records": ["bwb:9780840311979"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-30T07:24:04.906446"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-30T07:24:04.906446"}}
+/type/author /authors/OL10073173A 1 2021-12-30T07:29:12.052124 {"type": {"key": "/type/author"}, "name": "Donald Schueler", "key": "/authors/OL10073173A", "source_records": ["bwb:9780544002913"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-30T07:29:12.052124"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-30T07:29:12.052124"}}
+/type/author /authors/OL1007341A 2 2008-08-20T18:47:20.610383 {"name": "Albert Gifi", "personal_name": "Albert Gifi", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T18:47:20.610383"}, "key": "/authors/OL1007341A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10073640A 1 2021-12-30T08:10:32.167180 {"type": {"key": "/type/author"}, "name": "Anselm Kamperman Anselm Kamperman Sanders", "key": "/authors/OL10073640A", "source_records": ["bwb:9789041141361"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-30T08:10:32.167180"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-30T08:10:32.167180"}}
+/type/author /authors/OL1007364A 1 2008-04-01T03:28:50.625462 {"name": "UCLA Symposium on Human Retroviruses (1989 Tamarron, Colo.)", "last_modified": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "key": "/authors/OL1007364A", "type": {"key": "/type/author"}, "revision": 1}
+/type/author /authors/OL10073741A 1 2021-12-30T08:19:13.214672 {"type": {"key": "/type/author"}, "name": "kollektiv avtorov", "key": "/authors/OL10073741A", "source_records": ["amazon:5519524734"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-30T08:19:13.214672"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-30T08:19:13.214672"}}
+/type/author /authors/OL10073772A 1 2021-12-30T08:19:26.220514 {"type": {"key": "/type/author"}, "name": "P. I. Tretjakov", "key": "/authors/OL10073772A", "source_records": ["amazon:5519526400"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-30T08:19:26.220514"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-30T08:19:26.220514"}}
+/type/author /authors/OL10074033A 1 2021-12-30T08:20:59.242573 {"type": {"key": "/type/author"}, "name": "Z. Gippius", "key": "/authors/OL10074033A", "source_records": ["amazon:5519549621"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-30T08:20:59.242573"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-30T08:20:59.242573"}}
+/type/author /authors/OL10074364A 1 2021-12-30T08:30:12.707569 {"type": {"key": "/type/author"}, "name": "Tai-Hoon Kim", "key": "/authors/OL10074364A", "source_records": ["bwb:9783662436165"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-30T08:30:12.707569"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-30T08:30:12.707569"}}
+/type/author /authors/OL1007437A 2 2008-08-20T18:48:06.51006 {"name": "Margaret S. Herguth", "personal_name": "Margaret S. Herguth", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T18:48:06.51006"}, "key": "/authors/OL1007437A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10074A 2 2008-09-10T10:29:36.124753 {"name": "Dhirendra Debnath", "personal_name": "Dhirendra Debnath", "last_modified": {"type": "/type/datetime", "value": "2008-09-10T10:29:36.124753"}, "key": "/authors/OL10074A", "birth_date": "1930", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10075011A 1 2021-12-30T09:51:22.346224 {"type": {"key": "/type/author"}, "name": "Jessica Carbone", "key": "/authors/OL10075011A", "source_records": ["bwb:9781613122327"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-30T09:51:22.346224"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-30T09:51:22.346224"}}
+/type/author /authors/OL10075868A 1 2021-12-30T10:51:27.792719 {"type": {"key": "/type/author"}, "name": "Seela", "key": "/authors/OL10075868A", "source_records": ["bwb:9780757557712"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-30T10:51:27.792719"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-30T10:51:27.792719"}}
+/type/author /authors/OL10075992A 1 2021-12-30T10:59:01.609155 {"type": {"key": "/type/author"}, "name": "Comicup Design Studio SL", "key": "/authors/OL10075992A", "source_records": ["bwb:9781684461097"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-30T10:59:01.609155"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-30T10:59:01.609155"}}
+/type/author /authors/OL10076040A 1 2021-12-30T11:01:40.938160 {"type": {"key": "/type/author"}, "name": "Marissa A. Battaglia", "key": "/authors/OL10076040A", "source_records": ["bwb:9781643601359"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-30T11:01:40.938160"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-30T11:01:40.938160"}}
+/type/author /authors/OL10076793A 1 2021-12-30T11:57:59.213999 {"type": {"key": "/type/author"}, "name": "Dante Ross", "key": "/authors/OL10076793A", "source_records": ["bwb:9781947856943"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-30T11:57:59.213999"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-30T11:57:59.213999"}}
+/type/author /authors/OL10077534A 1 2021-12-30T13:15:38.020542 {"type": {"key": "/type/author"}, "name": "Aidan Ryan", "key": "/authors/OL10077534A", "source_records": ["bwb:9780999753934"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-30T13:15:38.020542"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-30T13:15:38.020542"}}
+/type/author /authors/OL10078271A 1 2021-12-30T14:00:23.857013 {"type": {"key": "/type/author"}, "name": "Arrow Arrow Press", "key": "/authors/OL10078271A", "source_records": ["bwb:9781697391930"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-30T14:00:23.857013"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-30T14:00:23.857013"}}
+/type/author /authors/OL1007882A 3 2011-02-27T18:36:38.246867 {"last_modified": {"type": "/type/datetime", "value": "2011-02-27T18:36:38.246867"}, "latest_revision": 3, "name": "Michael Edward Peskin", "key": "/authors/OL1007882A", "personal_name": "Michael Edward Peskin", "birth_date": "1951", "type": {"key": "/type/author"}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "alternate_names": ["PESKIN"], "revision": 3}
+/type/author /authors/OL10078958A 1 2021-12-30T14:52:21.557673 {"type": {"key": "/type/author"}, "name": "Florabelle Moon", "key": "/authors/OL10078958A", "source_records": ["bwb:9781678766528"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-30T14:52:21.557673"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-30T14:52:21.557673"}}
+/type/author /authors/OL10079614A 1 2021-12-30T15:43:42.747078 {"type": {"key": "/type/author"}, "name": "Brijesh Singh", "key": "/authors/OL10079614A", "source_records": ["bwb:9781493220731"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-30T15:43:42.747078"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-30T15:43:42.747078"}}
+/type/author /authors/OL10079685A 1 2021-12-30T15:47:20.391795 {"type": {"key": "/type/author"}, "name": "Abba Thalassius of Libya", "key": "/authors/OL10079685A", "source_records": ["bwb:9798640923063"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-30T15:47:20.391795"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-30T15:47:20.391795"}}
+/type/author /authors/OL10079707A 1 2021-12-30T15:48:58.999254 {"type": {"key": "/type/author"}, "name": "Laurie Tevlin-Klemow", "key": "/authors/OL10079707A", "source_records": ["bwb:9781645435440"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-30T15:48:58.999254"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-30T15:48:58.999254"}}
+/type/author /authors/OL10080215A 1 2021-12-30T17:00:40.186278 {"type": {"key": "/type/author"}, "name": "Dr. Chris Taylor", "key": "/authors/OL10080215A", "source_records": ["amazon:172625707X"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-30T17:00:40.186278"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-30T17:00:40.186278"}}
+/type/author /authors/OL10080583A 1 2021-12-30T17:20:19.371881 {"type": {"key": "/type/author"}, "name": "Hannah Mcauliffe", "key": "/authors/OL10080583A", "source_records": ["bwb:9781954638006"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-30T17:20:19.371881"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-30T17:20:19.371881"}}
+/type/author /authors/OL10080650A 1 2021-12-30T17:24:22.350528 {"type": {"key": "/type/author"}, "name": "The Editors of Thrive Global", "key": "/authors/OL10080650A", "source_records": ["bwb:9780306926143"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-30T17:24:22.350528"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-30T17:24:22.350528"}}
+/type/author /authors/OL10080851A 1 2021-12-30T17:39:35.758282 {"type": {"key": "/type/author"}, "name": "Bart \u00c9des", "key": "/authors/OL10080851A", "source_records": ["bwb:9781789047646"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-30T17:39:35.758282"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-30T17:39:35.758282"}}
+/type/author /authors/OL10080905A 1 2021-12-30T17:44:05.588405 {"type": {"key": "/type/author"}, "name": "Alyssa Liang", "key": "/authors/OL10080905A", "source_records": ["bwb:9798598420331"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-30T17:44:05.588405"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-30T17:44:05.588405"}}
+/type/author /authors/OL10081001A 1 2021-12-30T17:50:15.903133 {"type": {"key": "/type/author"}, "name": "Tigres Uanl Team", "key": "/authors/OL10081001A", "source_records": ["bwb:9798706163945"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-30T17:50:15.903133"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-30T17:50:15.903133"}}
+/type/author /authors/OL10081223A 1 2021-12-30T18:19:22.992543 {"type": {"key": "/type/author"}, "name": "Plamen K. Iossifov", "key": "/authors/OL10081223A", "source_records": ["bwb:9781513569833"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-30T18:19:22.992543"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-30T18:19:22.992543"}}
+/type/author /authors/OL10082505A 1 2021-12-30T19:15:27.175966 {"type": {"key": "/type/author"}, "name": "unicorns publishing", "key": "/authors/OL10082505A", "source_records": ["bwb:9798490495222"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-30T19:15:27.175966"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-30T19:15:27.175966"}}
+/type/author /authors/OL10082579A 1 2021-12-30T19:19:04.232089 {"type": {"key": "/type/author"}, "name": "Brina Gold", "key": "/authors/OL10082579A", "source_records": ["bwb:9798745252167"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-30T19:19:04.232089"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-30T19:19:04.232089"}}
+/type/author /authors/OL10082831A 1 2021-12-30T19:34:06.657406 {"type": {"key": "/type/author"}, "name": "Rajie Book for Paxton", "key": "/authors/OL10082831A", "source_records": ["bwb:9798712923441"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-30T19:34:06.657406"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-30T19:34:06.657406"}}
+/type/author /authors/OL10082949A 1 2021-12-30T19:43:46.849423 {"type": {"key": "/type/author"}, "name": "Kpop Band Korean Fanclub", "key": "/authors/OL10082949A", "source_records": ["bwb:9798499325216"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-30T19:43:46.849423"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-30T19:43:46.849423"}}
+/type/author /authors/OL10082977A 1 2021-12-30T19:45:30.711658 {"type": {"key": "/type/author"}, "name": "Crafty & Cute Books", "key": "/authors/OL10082977A", "source_records": ["bwb:9798453282203"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-30T19:45:30.711658"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-30T19:45:30.711658"}}
+/type/author /authors/OL10083558A 1 2021-12-30T20:03:07.557143 {"type": {"key": "/type/author"}, "name": "Roxanne James", "key": "/authors/OL10083558A", "source_records": ["bwb:9781954288379"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-30T20:03:07.557143"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-30T20:03:07.557143"}}
+/type/author /authors/OL10083574A 1 2021-12-30T20:03:24.012895 {"type": {"key": "/type/author"}, "name": "Piers Anthony Jacob", "key": "/authors/OL10083574A", "source_records": ["bwb:9780578311463"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-30T20:03:24.012895"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-30T20:03:24.012895"}}
+/type/author /authors/OL10083610A 1 2021-12-30T20:04:13.788418 {"type": {"key": "/type/author"}, "name": "Stef St Denis", "key": "/authors/OL10083610A", "source_records": ["bwb:9780228820789"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-30T20:04:13.788418"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-30T20:04:13.788418"}}
+/type/author /authors/OL10083841A 1 2021-12-30T20:11:50.877107 {"type": {"key": "/type/author"}, "name": "Darren Barkway", "key": "/authors/OL10083841A", "source_records": ["bwb:9781291480436"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-30T20:11:50.877107"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-30T20:11:50.877107"}}
+/type/author /authors/OL10084030A 1 2021-12-30T20:15:33.519081 {"type": {"key": "/type/author"}, "name": "Linda Panasuk", "key": "/authors/OL10084030A", "source_records": ["bwb:9781636921662"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-30T20:15:33.519081"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-30T20:15:33.519081"}}
+/type/author /authors/OL10084470A 1 2021-12-30T20:25:35.332840 {"type": {"key": "/type/author"}, "name": "D. D. McDee", "key": "/authors/OL10084470A", "source_records": ["bwb:9781948261449"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-30T20:25:35.332840"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-30T20:25:35.332840"}}
+/type/author /authors/OL1008483A 2 2008-08-20T18:57:23.047863 {"name": "Joe S. Foote", "personal_name": "Joe S. Foote", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T18:57:23.047863"}, "key": "/authors/OL1008483A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10085144A 1 2021-12-30T20:59:19.565294 {"type": {"key": "/type/author"}, "name": "Santiago Modica", "key": "/authors/OL10085144A", "source_records": ["bwb:9781684899579"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-30T20:59:19.565294"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-30T20:59:19.565294"}}
+/type/author /authors/OL1008524A 2 2008-08-20T18:57:41.588243 {"name": "William Van Etten Casey", "personal_name": "William Van Etten Casey", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T18:57:41.588243"}, "key": "/authors/OL1008524A", "birth_date": "1914", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10085635A 1 2021-12-30T21:37:51.490953 {"type": {"key": "/type/author"}, "name": "Britney MEDINA", "key": "/authors/OL10085635A", "source_records": ["bwb:9798582469520"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-30T21:37:51.490953"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-30T21:37:51.490953"}}
+/type/author /authors/OL10085749A 1 2021-12-30T21:47:16.568487 {"type": {"key": "/type/author"}, "name": "Skyscrapers", "key": "/authors/OL10085749A", "source_records": ["bwb:9798539360030"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-30T21:47:16.568487"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-30T21:47:16.568487"}}
+/type/author /authors/OL10085779A 1 2021-12-30T21:49:18.239597 {"type": {"key": "/type/author"}, "name": "Ross Gambrill", "key": "/authors/OL10085779A", "source_records": ["bwb:9781733802567"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-30T21:49:18.239597"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-30T21:49:18.239597"}}
+/type/author /authors/OL10085886A 1 2021-12-30T21:52:17.169811 {"type": {"key": "/type/author"}, "name": "Snowie Jennys", "key": "/authors/OL10085886A", "source_records": ["bwb:9781006871474"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-30T21:52:17.169811"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-30T21:52:17.169811"}}
+/type/author /authors/OL10086390A 1 2021-12-30T22:09:16.051878 {"type": {"key": "/type/author"}, "name": "Sherill Asis-Gilbas", "key": "/authors/OL10086390A", "source_records": ["bwb:9781257631285"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-30T22:09:16.051878"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-30T22:09:16.051878"}}
+/type/author /authors/OL10086513A 1 2021-12-30T22:12:15.035096 {"type": {"key": "/type/author"}, "name": "Lewis Miner Charlton", "key": "/authors/OL10086513A", "source_records": ["bwb:9781528719636"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-30T22:12:15.035096"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-30T22:12:15.035096"}}
+/type/author /authors/OL10087311A 1 2021-12-30T22:35:43.100708 {"type": {"key": "/type/author"}, "name": "Akihiko Watanabe", "key": "/authors/OL10087311A", "source_records": ["bwb:9789004436183"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-30T22:35:43.100708"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-30T22:35:43.100708"}}
+/type/author /authors/OL1008773A 2 2008-08-20T19:00:40.809131 {"name": "Thomas R. McDonough", "personal_name": "Thomas R. McDonough", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T19:00:40.809131"}, "key": "/authors/OL1008773A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10088022A 1 2021-12-30T23:34:04.469422 {"type": {"key": "/type/author"}, "name": "Madhura Kulkarni", "key": "/authors/OL10088022A", "source_records": ["bwb:9781792469510"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-30T23:34:04.469422"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-30T23:34:04.469422"}}
+/type/author /authors/OL1008805A 1 2008-04-01T03:28:50.625462 {"name": "Expert Consultation on the Application of Biotechnology in Livestock Production and Health in Developing Countries (1986 Rome, Italy)", "last_modified": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "key": "/authors/OL1008805A", "type": {"key": "/type/author"}, "revision": 1}
+/type/author /authors/OL10088365A 1 2021-12-30T23:46:00.344258 {"type": {"key": "/type/author"}, "name": "James F. Maher IV", "key": "/authors/OL10088365A", "source_records": ["bwb:9780578323619"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-30T23:46:00.344258"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-30T23:46:00.344258"}}
+/type/author /authors/OL10088505A 1 2021-12-30T23:50:31.285439 {"type": {"key": "/type/author"}, "name": "Sabine Edrissi", "key": "/authors/OL10088505A", "source_records": ["bwb:9798985286700"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-30T23:50:31.285439"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-30T23:50:31.285439"}}
+/type/author /authors/OL10088569A 1 2021-12-30T23:53:01.063306 {"type": {"key": "/type/author"}, "name": "Karen J. Vanderyt", "key": "/authors/OL10088569A", "source_records": ["bwb:9780692423943"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-30T23:53:01.063306"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-30T23:53:01.063306"}}
+/type/author /authors/OL10088581A 1 2021-12-30T23:53:27.246980 {"type": {"key": "/type/author"}, "name": "Nick Schuster", "key": "/authors/OL10088581A", "source_records": ["bwb:9780992480158"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-30T23:53:27.246980"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-30T23:53:27.246980"}}
+/type/author /authors/OL10088609A 1 2021-12-30T23:55:53.860448 {"type": {"key": "/type/author"}, "name": "Julian Sanchez", "key": "/authors/OL10088609A", "source_records": ["bwb:9781008992788"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-30T23:55:53.860448"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-30T23:55:53.860448"}}
+/type/author /authors/OL10088716A 1 2021-12-30T23:58:21.535005 {"type": {"key": "/type/author"}, "name": "Leila Goldstein", "key": "/authors/OL10088716A", "source_records": ["bwb:9781304730435"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-30T23:58:21.535005"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-30T23:58:21.535005"}}
+/type/author /authors/OL10089452A 1 2021-12-31T00:21:34.014095 {"type": {"key": "/type/author"}, "name": "Kevin T. Slattery", "key": "/authors/OL10089452A", "source_records": ["bwb:9781468602814"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T00:21:34.014095"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T00:21:34.014095"}}
+/type/author /authors/OL10089633A 1 2021-12-31T00:34:41.199672 {"type": {"key": "/type/author"}, "name": "LogbookDs publishing", "key": "/authors/OL10089633A", "source_records": ["bwb:9798507274963"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T00:34:41.199672"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T00:34:41.199672"}}
+/type/author /authors/OL10089714A 1 2021-12-31T00:37:07.706660 {"type": {"key": "/type/author"}, "name": "Alexis Gonzalez", "key": "/authors/OL10089714A", "source_records": ["bwb:9781737765028"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T00:37:07.706660"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T00:37:07.706660"}}
+/type/author /authors/OL10089895A 1 2021-12-31T00:48:29.595295 {"type": {"key": "/type/author"}, "name": "Simon Pag\u00e9", "key": "/authors/OL10089895A", "source_records": ["bwb:9798490968818"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T00:48:29.595295"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T00:48:29.595295"}}
+/type/author /authors/OL1008995A 2 2008-08-20T19:02:28.622442 {"name": "Alicia G. Andreu", "personal_name": "Alicia G. Andreu", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T19:02:28.622442"}, "key": "/authors/OL1008995A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10090281A 1 2021-12-31T01:29:17.335721 {"type": {"key": "/type/author"}, "name": "Front Man", "key": "/authors/OL10090281A", "source_records": ["bwb:9798491301454"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T01:29:17.335721"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T01:29:17.335721"}}
+/type/author /authors/OL10090833A 1 2021-12-31T01:50:20.374674 {"type": {"key": "/type/author"}, "name": "Shaquanna Fulton", "key": "/authors/OL10090833A", "source_records": ["bwb:9781304140500"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T01:50:20.374674"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T01:50:20.374674"}}
+/type/author /authors/OL10091256A 1 2021-12-31T02:00:58.746689 {"type": {"key": "/type/author"}, "name": "Taysa Moore", "key": "/authors/OL10091256A", "source_records": ["bwb:9781798172452"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T02:00:58.746689"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T02:00:58.746689"}}
+/type/author /authors/OL10091271A 1 2021-12-31T02:01:39.695659 {"type": {"key": "/type/author"}, "name": "David Meseg", "key": "/authors/OL10091271A", "source_records": ["bwb:9781839756610"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T02:01:39.695659"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T02:01:39.695659"}}
+/type/author /authors/OL10091399A 1 2021-12-31T02:05:13.675750 {"type": {"key": "/type/author"}, "name": "Elle Moore", "key": "/authors/OL10091399A", "source_records": ["bwb:9781957106007"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T02:05:13.675750"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T02:05:13.675750"}}
+/type/author /authors/OL10091557A 1 2021-12-31T02:13:16.546434 {"type": {"key": "/type/author"}, "name": "Former Governor James Douglas", "key": "/authors/OL10091557A", "source_records": ["bwb:9781467149358"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T02:13:16.546434"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T02:13:16.546434"}}
+/type/author /authors/OL10091849A 1 2021-12-31T02:27:57.399357 {"type": {"key": "/type/author"}, "name": "luz inagan lopez", "key": "/authors/OL10091849A", "source_records": ["bwb:9781737179221"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T02:27:57.399357"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T02:27:57.399357"}}
+/type/author /authors/OL10091975A 1 2021-12-31T02:38:44.477681 {"type": {"key": "/type/author"}, "name": "Dorothy Kemmer", "key": "/authors/OL10091975A", "source_records": ["bwb:9798541473049"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T02:38:44.477681"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T02:38:44.477681"}}
+/type/author /authors/OL10092195A 1 2021-12-31T03:02:37.860185 {"type": {"key": "/type/author"}, "name": "Shannon Zwan", "key": "/authors/OL10092195A", "source_records": ["bwb:9798753670878"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T03:02:37.860185"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T03:02:37.860185"}}
+/type/author /authors/OL10092601A 1 2021-12-31T03:28:13.280488 {"type": {"key": "/type/author"}, "name": "C. Riley Auge'", "key": "/authors/OL10092601A", "source_records": ["bwb:9781800735033"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T03:28:13.280488"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T03:28:13.280488"}}
+/type/author /authors/OL10092699A 1 2021-12-31T03:31:50.797348 {"type": {"key": "/type/author"}, "name": "Mandy Payton", "key": "/authors/OL10092699A", "source_records": ["bwb:9798985280814"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T03:31:50.797348"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T03:31:50.797348"}}
+/type/author /authors/OL10092758A 1 2021-12-31T03:34:31.306893 {"type": {"key": "/type/author"}, "name": "Brian Slocum", "key": "/authors/OL10092758A", "source_records": ["bwb:9780578952130"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T03:34:31.306893"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T03:34:31.306893"}}
+/type/author /authors/OL10093088A 1 2021-12-31T03:46:15.116598 {"type": {"key": "/type/author"}, "name": "Vinayak Jakati", "key": "/authors/OL10093088A", "source_records": ["bwb:9781639976904"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T03:46:15.116598"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T03:46:15.116598"}}
+/type/author /authors/OL10093336A 1 2021-12-31T03:52:28.456410 {"type": {"key": "/type/author"}, "name": "Briggs B Artpress", "key": "/authors/OL10093336A", "source_records": ["bwb:9781915100504"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T03:52:28.456410"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T03:52:28.456410"}}
+/type/author /authors/OL10093459A 1 2021-12-31T03:55:41.444848 {"type": {"key": "/type/author"}, "name": "Destinee Ayala", "key": "/authors/OL10093459A", "source_records": ["bwb:9780578323534"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T03:55:41.444848"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T03:55:41.444848"}}
+/type/author /authors/OL10094082A 1 2021-12-31T04:46:27.884629 {"type": {"key": "/type/author"}, "name": "The Teaching The Teaching and Learning Press", "key": "/authors/OL10094082A", "source_records": ["bwb:9798482957202"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T04:46:27.884629"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T04:46:27.884629"}}
+/type/author /authors/OL10094213A 1 2021-12-31T05:00:12.399321 {"type": {"key": "/type/author"}, "name": "jhon brain", "key": "/authors/OL10094213A", "source_records": ["bwb:9798533946735"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T05:00:12.399321"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T05:00:12.399321"}}
+/type/author /authors/OL1009426A 2 2008-08-20T19:07:16.372715 {"name": "William O. Bryant", "personal_name": "William O. Bryant", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T19:07:16.372715"}, "key": "/authors/OL1009426A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10096177A 1 2021-12-31T07:03:16.599334 {"type": {"key": "/type/author"}, "name": "Daniel Masters", "key": "/authors/OL10096177A", "source_records": ["bwb:9798669380205"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T07:03:16.599334"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T07:03:16.599334"}}
+/type/author /authors/OL10096263A 1 2021-12-31T07:11:16.846962 {"type": {"key": "/type/author"}, "name": "Amina Kamara", "key": "/authors/OL10096263A", "source_records": ["bwb:9781006350467"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T07:11:16.846962"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T07:11:16.846962"}}
+/type/author /authors/OL10097114A 1 2021-12-31T07:41:53.256507 {"type": {"key": "/type/author"}, "name": "Jesi Yapp", "key": "/authors/OL10097114A", "source_records": ["bwb:9781956357059"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T07:41:53.256507"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T07:41:53.256507"}}
+/type/author /authors/OL10097130A 1 2021-12-31T07:42:17.228654 {"type": {"key": "/type/author"}, "name": "Martin Roestenburg", "key": "/authors/OL10097130A", "source_records": ["bwb:9781989905791"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T07:42:17.228654"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T07:42:17.228654"}}
+/type/author /authors/OL100971A 1 2008-04-01T03:28:50.625462 {"name": "Samre\u0304t Khammo\u0304ng.", "personal_name": "Samre\u0304t Khammo\u0304ng.", "last_modified": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "key": "/authors/OL100971A", "type": {"key": "/type/author"}, "revision": 1}
+/type/author /authors/OL10097302A 1 2021-12-31T07:50:47.210362 {"type": {"key": "/type/author"}, "name": "Angelika Rohwetter", "key": "/authors/OL10097302A", "source_records": ["bwb:9783170397989"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T07:50:47.210362"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T07:50:47.210362"}}
+/type/author /authors/OL10097599A 1 2021-12-31T08:11:17.260054 {"type": {"key": "/type/author"}, "name": "Rustik Ganeyev", "key": "/authors/OL10097599A", "source_records": ["bwb:9798752148149"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T08:11:17.260054"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T08:11:17.260054"}}
+/type/author /authors/OL1009766A 2 2008-08-20T19:10:52.186716 {"name": "Walter E. Wiest", "personal_name": "Walter E. Wiest", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T19:10:52.186716"}, "key": "/authors/OL1009766A", "birth_date": "1920", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10097673A 1 2021-12-31T08:18:03.163146 {"type": {"key": "/type/author"}, "name": "M. Crockett", "key": "/authors/OL10097673A", "source_records": ["bwb:9798484950683"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T08:18:03.163146"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T08:18:03.163146"}}
+/type/author /authors/OL10097898A 1 2021-12-31T08:40:47.458749 {"type": {"key": "/type/author"}, "name": "Stable Chatter", "key": "/authors/OL10097898A", "source_records": ["bwb:9798756672299"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T08:40:47.458749"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T08:40:47.458749"}}
+/type/author /authors/OL10098040A 1 2021-12-31T08:54:33.141983 {"type": {"key": "/type/author"}, "name": "James Earl Cray", "key": "/authors/OL10098040A", "source_records": ["bwb:9780997742626"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T08:54:33.141983"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T08:54:33.141983"}}
+/type/author /authors/OL10098189A 1 2021-12-31T08:59:01.737996 {"type": {"key": "/type/author"}, "name": "Nick Spindler", "key": "/authors/OL10098189A", "source_records": ["bwb:9781912615377"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T08:59:01.737996"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T08:59:01.737996"}}
+/type/author /authors/OL10099285A 1 2021-12-31T09:46:14.499304 {"type": {"key": "/type/author"}, "name": "Fun on 4th", "key": "/authors/OL10099285A", "source_records": ["bwb:9798756218169"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T09:46:14.499304"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T09:46:14.499304"}}
+/type/author /authors/OL10099471A 1 2021-12-31T09:57:31.882551 {"type": {"key": "/type/author"}, "name": "Semone Stylez", "key": "/authors/OL10099471A", "source_records": ["bwb:9798759092735"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T09:57:31.882551"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T09:57:31.882551"}}
+/type/author /authors/OL10099604A 1 2021-12-31T10:05:48.365141 {"type": {"key": "/type/author"}, "name": "Gus Hernandez", "key": "/authors/OL10099604A", "source_records": ["bwb:9798494088741"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T10:05:48.365141"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T10:05:48.365141"}}
+/type/author /authors/OL10099896A 1 2021-12-31T10:26:32.249944 {"type": {"key": "/type/author"}, "name": "Victovia alix", "key": "/authors/OL10099896A", "source_records": ["bwb:9798762358316"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T10:26:32.249944"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T10:26:32.249944"}}
+/type/author /authors/OL10099916A 1 2021-12-31T10:28:13.946380 {"type": {"key": "/type/author"}, "name": "Maid Of Honor Planner journale", "key": "/authors/OL10099916A", "source_records": ["bwb:9798581047903"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T10:28:13.946380"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T10:28:13.946380"}}
+/type/author /authors/OL100999A 1 2008-04-01T03:28:50.625462 {"name": "Thailand. Krom Phatthana\u0304 Thi\u0304din.", "last_modified": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "key": "/authors/OL100999A", "type": {"key": "/type/author"}, "revision": 1}
+/type/author /authors/OL1010033A 2 2008-08-20T19:13:04.01369 {"name": "Larry Adler", "personal_name": "Larry Adler", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T19:13:04.01369"}, "key": "/authors/OL1010033A", "birth_date": "1939", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10100381A 1 2021-12-31T10:56:47.212965 {"type": {"key": "/type/author"}, "name": "Lucy Maud Lucy Maud", "key": "/authors/OL10100381A", "source_records": ["bwb:9798533575164"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T10:56:47.212965"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T10:56:47.212965"}}
+/type/author /authors/OL10100909A 1 2021-12-31T11:37:16.072054 {"type": {"key": "/type/author"}, "name": "Wade Barnett", "key": "/authors/OL10100909A", "source_records": ["bwb:9798478860622"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T11:37:16.072054"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T11:37:16.072054"}}
+/type/author /authors/OL10101009A 1 2021-12-31T11:44:41.904774 {"type": {"key": "/type/author"}, "name": "M&M Coloring Book", "key": "/authors/OL10101009A", "source_records": ["bwb:9798761617179"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T11:44:41.904774"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T11:44:41.904774"}}
+/type/author /authors/OL10101262A 1 2021-12-31T12:02:22.205521 {"type": {"key": "/type/author"}, "name": "abdessamad benzir", "key": "/authors/OL10101262A", "source_records": ["bwb:9798627611099"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T12:02:22.205521"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T12:02:22.205521"}}
+/type/author /authors/OL10101266A 1 2021-12-31T12:02:35.503032 {"type": {"key": "/type/author"}, "name": "Omatica LIFESTYLE", "key": "/authors/OL10101266A", "source_records": ["bwb:9798756764789"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T12:02:35.503032"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T12:02:35.503032"}}
+/type/author /authors/OL10101738A 1 2021-12-31T12:45:47.052320 {"type": {"key": "/type/author"}, "name": "F. H. F. H. Townsen", "key": "/authors/OL10101738A", "source_records": ["bwb:9798517529916"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T12:45:47.052320"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T12:45:47.052320"}}
+/type/author /authors/OL10101869A 1 2021-12-31T12:56:52.008385 {"type": {"key": "/type/author"}, "name": "Bango Alex", "key": "/authors/OL10101869A", "source_records": ["bwb:9798495450165"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T12:56:52.008385"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T12:56:52.008385"}}
+/type/author /authors/OL10102122A 1 2021-12-31T13:18:13.934678 {"type": {"key": "/type/author"}, "name": "Andrea Ramsey Press", "key": "/authors/OL10102122A", "source_records": ["bwb:9798696008097"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T13:18:13.934678"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T13:18:13.934678"}}
+/type/author /authors/OL10102235A 1 2021-12-31T13:25:15.868662 {"type": {"key": "/type/author"}, "name": "D. M. Roberts", "key": "/authors/OL10102235A", "source_records": ["bwb:9798514999682"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T13:25:15.868662"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T13:25:15.868662"}}
+/type/author /authors/OL10103451A 1 2021-12-31T15:12:04.915976 {"type": {"key": "/type/author"}, "name": "David James Southam", "key": "/authors/OL10103451A", "source_records": ["bwb:9781506906539"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T15:12:04.915976"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T15:12:04.915976"}}
+/type/author /authors/OL10103468A 1 2021-12-31T15:12:24.480940 {"type": {"key": "/type/author"}, "name": "Summey, William J., Jr.", "key": "/authors/OL10103468A", "source_records": ["bwb:9780989626774"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T15:12:24.480940"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T15:12:24.480940"}}
+/type/author /authors/OL10103636A 1 2021-12-31T15:17:46.703850 {"type": {"key": "/type/author"}, "name": "Nicole Valle", "key": "/authors/OL10103636A", "source_records": ["bwb:9780578326610"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T15:17:46.703850"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T15:17:46.703850"}}
+/type/author /authors/OL10103647A 1 2021-12-31T15:17:53.775897 {"type": {"key": "/type/author"}, "name": "Paula Welsh", "key": "/authors/OL10103647A", "source_records": ["bwb:9780578257983"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T15:17:53.775897"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T15:17:53.775897"}}
+/type/author /authors/OL10103681A 1 2021-12-31T15:18:48.027186 {"type": {"key": "/type/author"}, "name": "Trevor Castor", "key": "/authors/OL10103681A", "source_records": ["bwb:9781666700367"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T15:18:48.027186"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T15:18:48.027186"}}
+/type/author /authors/OL10103700A 1 2021-12-31T15:19:12.759960 {"type": {"key": "/type/author"}, "name": "Pastor Teresa Taylor", "key": "/authors/OL10103700A", "source_records": ["bwb:9781664184923"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T15:19:12.759960"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T15:19:12.759960"}}
+/type/author /authors/OL10103A 2 2008-09-10T10:29:36.124753 {"name": "S. S. Mensinkai", "personal_name": "S. S. Mensinkai", "last_modified": {"type": "/type/datetime", "value": "2008-09-10T10:29:36.124753"}, "key": "/authors/OL10103A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10104001A 1 2021-12-31T15:28:34.285630 {"type": {"key": "/type/author"}, "name": "Obi Oji", "key": "/authors/OL10104001A", "source_records": ["bwb:9781284260977"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T15:28:34.285630"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T15:28:34.285630"}}
+/type/author /authors/OL10104054A 1 2021-12-31T15:30:15.807645 {"type": {"key": "/type/author"}, "name": "Alberto CARRERO", "key": "/authors/OL10104054A", "source_records": ["bwb:9781792379949"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T15:30:15.807645"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T15:30:15.807645"}}
+/type/author /authors/OL10104427A 1 2021-12-31T15:42:13.457619 {"type": {"key": "/type/author"}, "name": "Megan Connor", "key": "/authors/OL10104427A", "source_records": ["bwb:9781609388331"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T15:42:13.457619"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T15:42:13.457619"}}
+/type/author /authors/OL10104756A 1 2021-12-31T15:53:33.697276 {"type": {"key": "/type/author"}, "name": "Alan B. Bolten", "key": "/authors/OL10104756A", "source_records": ["bwb:9781588345578"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T15:53:33.697276"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T15:53:33.697276"}}
+/type/author /authors/OL10104865A 1 2021-12-31T15:57:33.772726 {"type": {"key": "/type/author"}, "name": "Owen Marquis Mac Swiney of Mashanaglass", "key": "/authors/OL10104865A", "source_records": ["bwb:9780998355627"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T15:57:33.772726"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T15:57:33.772726"}}
+/type/author /authors/OL1010491A 2 2008-08-20T19:17:43.60704 {"name": "Ken Garland", "personal_name": "Ken Garland", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T19:17:43.60704"}, "key": "/authors/OL1010491A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10105086A 1 2021-12-31T16:04:19.961131 {"type": {"key": "/type/author"}, "name": "Inez Jordan", "key": "/authors/OL10105086A", "source_records": ["bwb:9781094426693"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T16:04:19.961131"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T16:04:19.961131"}}
+/type/author /authors/OL10105171A 1 2021-12-31T16:11:38.243640 {"type": {"key": "/type/author"}, "name": "Katie Louise Miller", "key": "/authors/OL10105171A", "source_records": ["bwb:9781665594127"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T16:11:38.243640"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T16:11:38.243640"}}
+/type/author /authors/OL10105396A 1 2021-12-31T16:19:55.792910 {"type": {"key": "/type/author"}, "name": "Anastasiia Yezhela", "key": "/authors/OL10105396A", "source_records": ["bwb:9781737599234"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T16:19:55.792910"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T16:19:55.792910"}}
+/type/author /authors/OL10105423A 1 2021-12-31T16:20:29.667423 {"type": {"key": "/type/author"}, "name": "Greg Vigdor", "key": "/authors/OL10105423A", "source_records": ["bwb:9798985201710"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T16:20:29.667423"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T16:20:29.667423"}}
+/type/author /authors/OL10105618A 1 2021-12-31T16:26:42.157881 {"type": {"key": "/type/author"}, "name": "Darrin Diaz", "key": "/authors/OL10105618A", "source_records": ["bwb:9798454981341"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T16:26:42.157881"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T16:26:42.157881"}}
+/type/author /authors/OL10105786A 1 2021-12-31T16:31:25.784919 {"type": {"key": "/type/author"}, "name": "J&A Livre de coloriage Anti-Stress", "key": "/authors/OL10105786A", "source_records": ["bwb:9798655171725"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T16:31:25.784919"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T16:31:25.784919"}}
+/type/author /authors/OL10106033A 1 2021-12-31T16:40:01.599302 {"type": {"key": "/type/author"}, "name": "No Cavity Publishing", "key": "/authors/OL10106033A", "source_records": ["bwb:9798678873156"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T16:40:01.599302"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T16:40:01.599302"}}
+/type/author /authors/OL10106128A 1 2021-12-31T16:42:45.032791 {"type": {"key": "/type/author"}, "name": "Zee Funny FGTeacher Press", "key": "/authors/OL10106128A", "source_records": ["bwb:9798756897777"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T16:42:45.032791"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T16:42:45.032791"}}
+/type/author /authors/OL10106299A 1 2021-12-31T16:49:11.973400 {"type": {"key": "/type/author"}, "name": "Jake Ray RAY", "key": "/authors/OL10106299A", "source_records": ["bwb:9798731603171"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T16:49:11.973400"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T16:49:11.973400"}}
+/type/author /authors/OL10107392A 1 2021-12-31T17:40:03.751931 {"type": {"key": "/type/author"}, "name": "loubna", "key": "/authors/OL10107392A", "source_records": ["bwb:9798589782202"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T17:40:03.751931"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T17:40:03.751931"}}
+/type/author /authors/OL10107562A 1 2021-12-31T17:47:57.324821 {"type": {"key": "/type/author"}, "name": "Mohamed Hunter", "key": "/authors/OL10107562A", "source_records": ["bwb:9798478911386"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T17:47:57.324821"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T17:47:57.324821"}}
+/type/author /authors/OL10107574A 1 2021-12-31T17:48:27.843132 {"type": {"key": "/type/author"}, "name": "Michael Froilan", "key": "/authors/OL10107574A", "source_records": ["bwb:9798752729430"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T17:48:27.843132"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T17:48:27.843132"}}
+/type/author /authors/OL10107597A 1 2021-12-31T17:49:26.348034 {"type": {"key": "/type/author"}, "name": "Louise Blackshaw", "key": "/authors/OL10107597A", "source_records": ["bwb:9798766205562"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T17:49:26.348034"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T17:49:26.348034"}}
+/type/author /authors/OL10108471A 1 2021-12-31T18:43:03.655295 {"type": {"key": "/type/author"}, "name": "Exuma Publishing", "key": "/authors/OL10108471A", "source_records": ["bwb:9798766447870"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T18:43:03.655295"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T18:43:03.655295"}}
+/type/author /authors/OL10108748A 1 2021-12-31T19:00:52.503466 {"type": {"key": "/type/author"}, "name": "Paper & Honey Publishing", "key": "/authors/OL10108748A", "source_records": ["bwb:9798535681221"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T19:00:52.503466"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T19:00:52.503466"}}
+/type/author /authors/OL10108944A 1 2021-12-31T19:13:39.569185 {"type": {"key": "/type/author"}, "name": "Said Publishing", "key": "/authors/OL10108944A", "source_records": ["bwb:9798754582385"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T19:13:39.569185"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T19:13:39.569185"}}
+/type/author /authors/OL10109041A 1 2021-12-31T19:20:58.846527 {"type": {"key": "/type/author"}, "name": "najib chebbour", "key": "/authors/OL10109041A", "source_records": ["bwb:9798518100985"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T19:20:58.846527"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T19:20:58.846527"}}
+/type/author /authors/OL10109043A 1 2021-12-31T19:21:07.279686 {"type": {"key": "/type/author"}, "name": "Faiq Ahmad", "key": "/authors/OL10109043A", "source_records": ["bwb:9798523651540"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T19:21:07.279686"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T19:21:07.279686"}}
+/type/author /authors/OL10109489A 1 2021-12-31T19:49:43.769393 {"type": {"key": "/type/author"}, "name": "Logan Coloring", "key": "/authors/OL10109489A", "source_records": ["bwb:9798761202122"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T19:49:43.769393"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T19:49:43.769393"}}
+/type/author /authors/OL1010956A 2 2008-08-20T19:21:58.270728 {"name": "E. A. (Eleanor A.) Grant", "personal_name": "E. A. (Eleanor A.) Grant", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T19:21:58.270728"}, "key": "/authors/OL1010956A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL1010958A 2 2008-08-20T19:21:59.417465 {"name": "Leonard W. Fine", "personal_name": "Leonard W. Fine", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T19:21:59.417465"}, "key": "/authors/OL1010958A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10109910A 1 2021-12-31T20:17:53.639762 {"type": {"key": "/type/author"}, "name": "Kenya Kooper", "key": "/authors/OL10109910A", "source_records": ["bwb:9798509599149"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T20:17:53.639762"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T20:17:53.639762"}}
+/type/author /authors/OL10110057A 1 2021-12-31T20:28:00.364703 {"type": {"key": "/type/author"}, "name": "J. E. Books", "key": "/authors/OL10110057A", "source_records": ["bwb:9798761353947"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T20:28:00.364703"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T20:28:00.364703"}}
+/type/author /authors/OL10110376A 1 2021-12-31T20:49:41.408263 {"type": {"key": "/type/author"}, "name": "Jessica DeVenuta", "key": "/authors/OL10110376A", "source_records": ["bwb:9798491848423"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T20:49:41.408263"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T20:49:41.408263"}}
+/type/author /authors/OL10110903A 1 2021-12-31T21:26:30.136258 {"type": {"key": "/type/author"}, "name": "hai Tien", "key": "/authors/OL10110903A", "source_records": ["bwb:9798725193060"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T21:26:30.136258"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T21:26:30.136258"}}
+/type/author /authors/OL10111146A 1 2021-12-31T21:43:10.713750 {"type": {"key": "/type/author"}, "name": "Ava& aikus", "key": "/authors/OL10111146A", "source_records": ["bwb:9798539268916"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T21:43:10.713750"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T21:43:10.713750"}}
+/type/author /authors/OL10111201A 1 2021-12-31T21:47:31.229917 {"type": {"key": "/type/author"}, "name": "N. Frozen", "key": "/authors/OL10111201A", "source_records": ["bwb:9798761182929"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T21:47:31.229917"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T21:47:31.229917"}}
+/type/author /authors/OL10111625A 1 2021-12-31T22:18:51.051618 {"type": {"key": "/type/author"}, "name": "Journals Talk", "key": "/authors/OL10111625A", "source_records": ["bwb:9798737117115"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T22:18:51.051618"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T22:18:51.051618"}}
+/type/author /authors/OL10111869A 1 2021-12-31T22:38:29.273611 {"type": {"key": "/type/author"}, "name": "Fortaleciendo L. A. F. E. Familiar C. O. N. El CURA BROCHERO", "key": "/authors/OL10111869A", "source_records": ["bwb:9798456117670"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T22:38:29.273611"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T22:38:29.273611"}}
+/type/author /authors/OL10111920A 1 2021-12-31T22:42:01.982989 {"type": {"key": "/type/author"}, "name": "Apple onion", "key": "/authors/OL10111920A", "source_records": ["bwb:9798495535015"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T22:42:01.982989"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T22:42:01.982989"}}
+/type/author /authors/OL10111924A 1 2021-12-31T22:42:16.695849 {"type": {"key": "/type/author"}, "name": "Sven Kuhn", "key": "/authors/OL10111924A", "source_records": ["bwb:9798729654529"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T22:42:16.695849"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T22:42:16.695849"}}
+/type/author /authors/OL10112237A 1 2021-12-31T22:55:31.116157 {"type": {"key": "/type/author"}, "name": "Paul Foe", "key": "/authors/OL10112237A", "source_records": ["bwb:9798985333206"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T22:55:31.116157"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T22:55:31.116157"}}
+/type/author /authors/OL10112266A 1 2021-12-31T22:55:50.034667 {"type": {"key": "/type/author"}, "name": "Aaron Janusch", "key": "/authors/OL10112266A", "source_records": ["bwb:9780578331317"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T22:55:50.034667"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T22:55:50.034667"}}
+/type/author /authors/OL10112720A 1 2021-12-31T23:08:51.882672 {"type": {"key": "/type/author"}, "name": "Fadwa K. Naser", "key": "/authors/OL10112720A", "source_records": ["bwb:9781669800002"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-31T23:08:51.882672"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T23:08:51.882672"}}
+/type/author /authors/OL10112919A 1 2022-01-01T00:30:47.359471 {"type": {"key": "/type/author"}, "name": "Glenn Edgecombe", "key": "/authors/OL10112919A", "source_records": ["bwb:9780997714760"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-01T00:30:47.359471"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-01T00:30:47.359471"}}
+/type/author /authors/OL10112937A 1 2022-01-01T00:31:22.228928 {"type": {"key": "/type/author"}, "name": "Penny L. Grace", "key": "/authors/OL10112937A", "source_records": ["bwb:9781685562915"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-01T00:31:22.228928"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-01T00:31:22.228928"}}
+/type/author /authors/OL10113953A 1 2022-01-01T01:07:33.827690 {"type": {"key": "/type/author"}, "name": "Sarah Y. Lee", "key": "/authors/OL10113953A", "source_records": ["bwb:9781685151096"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-01T01:07:33.827690"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-01T01:07:33.827690"}}
+/type/author /authors/OL10114715A 1 2022-01-01T01:31:38.062889 {"type": {"key": "/type/author"}, "name": "A. L. Red", "key": "/authors/OL10114715A", "source_records": ["bwb:9798758737682"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-01T01:31:38.062889"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-01T01:31:38.062889"}}
+/type/author /authors/OL101148A 2 2008-09-09T03:31:45.735395 {"name": "Muh\u0323ammad T\u0324a\u0304hirulqa\u0304dri\u0304", "personal_name": "Muh\u0323ammad T\u0324a\u0304hirulqa\u0304dri\u0304", "last_modified": {"type": "/type/datetime", "value": "2008-09-09T03:31:45.735395"}, "key": "/authors/OL101148A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10114903A 1 2022-01-01T01:38:28.992190 {"type": {"key": "/type/author"}, "name": "Heather Stargazer", "key": "/authors/OL10114903A", "source_records": ["bwb:9798527257397"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-01T01:38:28.992190"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-01T01:38:28.992190"}}
+/type/author /authors/OL10115045A 1 2022-01-01T01:43:51.840484 {"type": {"key": "/type/author"}, "name": "Ebonie Gipson", "key": "/authors/OL10115045A", "source_records": ["bwb:9798771182711"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-01T01:43:51.840484"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-01T01:43:51.840484"}}
+/type/author /authors/OL10115208A 1 2022-01-01T01:49:29.655431 {"type": {"key": "/type/author"}, "name": "Andy. Amonnd Publication", "key": "/authors/OL10115208A", "source_records": ["bwb:9798595928373"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-01T01:49:29.655431"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-01T01:49:29.655431"}}
+/type/author /authors/OL10115320A 1 2022-01-01T01:54:14.462267 {"type": {"key": "/type/author"}, "name": "enfants CHS", "key": "/authors/OL10115320A", "source_records": ["bwb:9798468496480"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-01T01:54:14.462267"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-01T01:54:14.462267"}}
+/type/author /authors/OL1011540A 2 2008-08-20T19:27:04.080181 {"name": "Elisabeth Ruedy", "personal_name": "Elisabeth Ruedy", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T19:27:04.080181"}, "key": "/authors/OL1011540A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10115915A 1 2022-01-01T02:20:25.508887 {"type": {"key": "/type/author"}, "name": "Hobbies2342 Publisher", "key": "/authors/OL10115915A", "source_records": ["bwb:9781657296183"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-01T02:20:25.508887"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-01T02:20:25.508887"}}
+/type/author /authors/OL10115944A 1 2022-01-01T02:21:51.085740 {"type": {"key": "/type/author"}, "name": "Sir Richard Sir Richard Francis Burton", "key": "/authors/OL10115944A", "source_records": ["bwb:9798761801271"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-01T02:21:51.085740"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-01T02:21:51.085740"}}
+/type/author /authors/OL10116287A 1 2022-01-01T02:36:40.923801 {"type": {"key": "/type/author"}, "name": "Monica Kopp-Gallegos", "key": "/authors/OL10116287A", "source_records": ["bwb:9798766650553"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-01T02:36:40.923801"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-01T02:36:40.923801"}}
+/type/author /authors/OL10116339A 1 2022-01-01T02:39:29.259484 {"type": {"key": "/type/author"}, "name": "Isabel Walton", "key": "/authors/OL10116339A", "source_records": ["bwb:9798769669736"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-01T02:39:29.259484"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-01T02:39:29.259484"}}
+/type/author /authors/OL10116483A 1 2022-01-01T02:44:59.438591 {"type": {"key": "/type/author"}, "name": "gratitude for life", "key": "/authors/OL10116483A", "source_records": ["bwb:9798672272962"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-01T02:44:59.438591"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-01T02:44:59.438591"}}
+/type/author /authors/OL10116704A 1 2022-01-01T02:55:20.239843 {"type": {"key": "/type/author"}, "name": "John John Wellwood", "key": "/authors/OL10116704A", "source_records": ["bwb:9798770528923"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-01T02:55:20.239843"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-01T02:55:20.239843"}}
+/type/author /authors/OL10116745A 1 2022-01-01T02:56:54.891090 {"type": {"key": "/type/author"}, "name": "Gladialus Logbooks", "key": "/authors/OL10116745A", "source_records": ["bwb:9798740235448"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-01T02:56:54.891090"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-01T02:56:54.891090"}}
+/type/author /authors/OL10117249A 1 2022-01-01T03:23:00.768087 {"type": {"key": "/type/author"}, "name": "Oh Books", "key": "/authors/OL10117249A", "source_records": ["bwb:9798671949995"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-01T03:23:00.768087"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-01T03:23:00.768087"}}
+/type/author /authors/OL10117286A 1 2022-01-01T03:24:47.727878 {"type": {"key": "/type/author"}, "name": "Unternehmerin Kalender Jasmin_Design", "key": "/authors/OL10117286A", "source_records": ["bwb:9798568331636"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-01T03:24:47.727878"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-01T03:24:47.727878"}}
+/type/author /authors/OL10117289A 1 2022-01-01T03:24:55.079168 {"type": {"key": "/type/author"}, "name": "The Bitter The Bitter End", "key": "/authors/OL10117289A", "source_records": ["bwb:9798695301526"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-01T03:24:55.079168"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-01T03:24:55.079168"}}
+/type/author /authors/OL101176A 11 2011-12-05T13:13:25.124873 {"bio": "**Omar Tarin** (or [Omer Tarin][1] in most newer editions of his work), born March 1967, is a well known Pakistani poet, writer, scholar and mystic. He is based mostly in [Abbottabad][2], [Pakistan][3] and apart from his literary and academic pursuits, is also an activist for environmental preservation in his native area. \r\n\r\n\r\n [1]: http://en.wikipedia.org/wiki/Omer_Tarin\r\n [2]: http://en.wikipedia.org/wiki/Abbottabad\r\n [3]: http://en.wikipedia.org/wiki/Pakistan", "name": "Omar Tarin", "personal_name": "Omar Tarin", "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "alternate_names": ["* Omer Tarin in most newer editions of his work, also in some bibliographies and Net links", "* Tarin, Omer", "* Tarin, Omar", "* Omar S.K. Tarin", "* Omer S.K.Tarin"], "photos": [6968888], "last_modified": {"type": "/type/datetime", "value": "2011-12-05T13:13:25.124873"}, "latest_revision": 11, "key": "/authors/OL101176A", "birth_date": "March 1967", "type": {"key": "/type/author"}, "revision": 11}
+/type/author /authors/OL10117902A 1 2022-01-01T03:55:22.605798 {"type": {"key": "/type/author"}, "name": "That Girl Studiis", "key": "/authors/OL10117902A", "source_records": ["bwb:9798770534719"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-01T03:55:22.605798"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-01T03:55:22.605798"}}
+/type/author /authors/OL10117943A 1 2022-01-01T03:57:17.585871 {"type": {"key": "/type/author"}, "name": "Frnymidy Publication", "key": "/authors/OL10117943A", "source_records": ["bwb:9798596917079"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-01T03:57:17.585871"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-01T03:57:17.585871"}}
+/type/author /authors/OL1011812A 1 2008-04-01T03:28:50.625462 {"name": "International Conference of Plasma Chemistry and Technology (4th 1987 San Diego, Calif.)", "last_modified": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "key": "/authors/OL1011812A", "type": {"key": "/type/author"}, "revision": 1}
+/type/author /authors/OL10118136A 1 2022-01-01T04:08:05.221436 {"type": {"key": "/type/author"}, "name": "1310 Aniyah RAJIE", "key": "/authors/OL10118136A", "source_records": ["bwb:9798496878807"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-01T04:08:05.221436"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-01T04:08:05.221436"}}
+/type/author /authors/OL10118252A 1 2022-01-01T04:14:43.061891 {"type": {"key": "/type/author"}, "name": "T. Osborn", "key": "/authors/OL10118252A", "source_records": ["bwb:9798469726289"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-01T04:14:43.061891"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-01T04:14:43.061891"}}
+/type/author /authors/OL10118442A 1 2022-01-01T04:24:55.973367 {"type": {"key": "/type/author"}, "name": "Roller skater Gifts Publishing", "key": "/authors/OL10118442A", "source_records": ["bwb:9798643751410"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-01T04:24:55.973367"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-01T04:24:55.973367"}}
+/type/author /authors/OL10119014A 1 2022-01-01T04:55:35.965565 {"type": {"key": "/type/author"}, "name": "Benson Leslie", "key": "/authors/OL10119014A", "source_records": ["amazon:8323332029"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-01T04:55:35.965565"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-01T04:55:35.965565"}}
+/type/author /authors/OL10119020A 1 2022-01-01T04:55:50.321811 {"type": {"key": "/type/author"}, "name": "A. L MATHERS", "key": "/authors/OL10119020A", "source_records": ["bwb:9798666804186"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-01T04:55:50.321811"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-01T04:55:50.321811"}}
+/type/author /authors/OL1011911A 2 2008-08-20T19:29:57.512454 {"name": "Marge Sears", "personal_name": "Marge Sears", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T19:29:57.512454"}, "key": "/authors/OL1011911A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10119234A 1 2022-01-01T05:07:22.014249 {"type": {"key": "/type/author"}, "name": "Yaya KOBI", "key": "/authors/OL10119234A", "source_records": ["bwb:9798492026134"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-01T05:07:22.014249"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-01T05:07:22.014249"}}
+/type/author /authors/OL10119370A 1 2022-01-01T05:14:49.953288 {"type": {"key": "/type/author"}, "name": "Anna Torralba Mar\u00ed", "key": "/authors/OL10119370A", "source_records": ["bwb:9798770793697"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-01T05:14:49.953288"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-01T05:14:49.953288"}}
+/type/author /authors/OL1011937A 2 2008-08-20T19:30:12.687745 {"name": "Ethel Born", "personal_name": "Ethel Born", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T19:30:12.687745"}, "key": "/authors/OL1011937A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10119485A 1 2022-01-01T05:21:28.571622 {"type": {"key": "/type/author"}, "name": "Allbina Svensson Publication", "key": "/authors/OL10119485A", "source_records": ["bwb:9798581273142"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-01T05:21:28.571622"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-01T05:21:28.571622"}}
+/type/author /authors/OL1011956A 2 2008-08-20T19:30:24.142148 {"name": "Ruth Pierce", "personal_name": "Ruth Pierce", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T19:30:24.142148"}, "key": "/authors/OL1011956A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10119910A 1 2022-01-01T05:40:48.092483 {"type": {"key": "/type/author"}, "name": "Joe George", "key": "/authors/OL10119910A", "source_records": ["bwb:9781006270093"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-01T05:40:48.092483"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-01T05:40:48.092483"}}
+/type/author /authors/OL10120133A 1 2022-01-01T05:49:16.086790 {"type": {"key": "/type/author"}, "name": "Drummond, Warren, 1st", "key": "/authors/OL10120133A", "source_records": ["bwb:9780578335551"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-01T05:49:16.086790"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-01T05:49:16.086790"}}
+/type/author /authors/OL10120435A 1 2022-01-01T05:57:57.060989 {"type": {"key": "/type/author"}, "name": "Albert Kapikian", "key": "/authors/OL10120435A", "source_records": ["bwb:9780999040386"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-01T05:57:57.060989"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-01T05:57:57.060989"}}
+/type/author /authors/OL10120475A 1 2022-01-01T05:58:45.878699 {"type": {"key": "/type/author"}, "name": "Richard Casteel", "key": "/authors/OL10120475A", "source_records": ["bwb:9798985375916"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-01T05:58:45.878699"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-01T05:58:45.878699"}}
+/type/author /authors/OL10120568A 1 2022-01-01T06:02:20.672290 {"type": {"key": "/type/author"}, "name": "Dillon Bancroft", "key": "/authors/OL10120568A", "source_records": ["bwb:9781736901229"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-01T06:02:20.672290"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-01T06:02:20.672290"}}
+/type/author /authors/OL10120610A 1 2022-01-01T06:03:22.653711 {"type": {"key": "/type/author"}, "name": "Demario Jones", "key": "/authors/OL10120610A", "source_records": ["bwb:9798985262407"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-01T06:03:22.653711"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-01T06:03:22.653711"}}
+/type/author /authors/OL10121253A 1 2022-01-01T06:34:45.277994 {"type": {"key": "/type/author"}, "name": "Renee Fisher DVM", "key": "/authors/OL10121253A", "source_records": ["bwb:9781735915111"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-01T06:34:45.277994"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-01T06:34:45.277994"}}
+/type/author /authors/OL10122196A 1 2022-01-01T07:15:45.607977 {"type": {"key": "/type/author"}, "name": "Pablo L. Hern\u00e1ndez Peraza", "key": "/authors/OL10122196A", "source_records": ["bwb:9798770836172"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-01T07:15:45.607977"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-01T07:15:45.607977"}}
+/type/author /authors/OL10122647A 1 2022-01-01T07:39:32.509488 {"type": {"key": "/type/author"}, "name": "Umar QUADEER", "key": "/authors/OL10122647A", "source_records": ["bwb:9798766032908"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-01T07:39:32.509488"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-01T07:39:32.509488"}}
+/type/author /authors/OL10122695A 1 2022-01-01T07:42:46.034299 {"type": {"key": "/type/author"}, "name": "Pete MATHESON", "key": "/authors/OL10122695A", "source_records": ["bwb:9798478549282"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-01T07:42:46.034299"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-01T07:42:46.034299"}}
+/type/author /authors/OL10122827A 1 2022-01-01T07:47:04.476133 {"type": {"key": "/type/author"}, "name": "M C McLamb", "key": "/authors/OL10122827A", "source_records": ["amazon:1537614770"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-01T07:47:04.476133"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-01T07:47:04.476133"}}
+/type/author /authors/OL10123056A 1 2022-01-01T07:56:05.641835 {"type": {"key": "/type/author"}, "name": "Stuart Emfield", "key": "/authors/OL10123056A", "source_records": ["bwb:9798459766400"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-01T07:56:05.641835"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-01T07:56:05.641835"}}
+/type/author /authors/OL10123245A 1 2022-01-01T08:08:05.282816 {"type": {"key": "/type/author"}, "name": "Fernazdez Sergio", "key": "/authors/OL10123245A", "source_records": ["bwb:9798499925560"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-01T08:08:05.282816"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-01T08:08:05.282816"}}
+/type/author /authors/OL10123468A 1 2022-01-01T08:22:21.038120 {"type": {"key": "/type/author"}, "name": "Hobby4553 Publisher", "key": "/authors/OL10123468A", "source_records": ["bwb:9798600403871"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-01T08:22:21.038120"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-01T08:22:21.038120"}}
+/type/author /authors/OL1012346A 2 2008-08-20T19:32:53.405162 {"name": "Chih-chung Pien", "personal_name": "Chih-chung Pien", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T19:32:53.405162"}, "key": "/authors/OL1012346A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10124211A 1 2022-01-01T09:04:47.682522 {"type": {"key": "/type/author"}, "name": "Roland KIM", "key": "/authors/OL10124211A", "source_records": ["bwb:9798493253331"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-01T09:04:47.682522"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-01T09:04:47.682522"}}
+/type/author /authors/OL10124740A 1 2022-01-01T09:36:35.988201 {"type": {"key": "/type/author"}, "name": "Grace Croy", "key": "/authors/OL10124740A", "source_records": ["bwb:9798666908266"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-01T09:36:35.988201"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-01T09:36:35.988201"}}
+/type/author /authors/OL10124992A 1 2022-01-01T09:51:19.175525 {"type": {"key": "/type/author"}, "name": "Flore Perrault", "key": "/authors/OL10124992A", "source_records": ["bwb:9798639152665"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-01T09:51:19.175525"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-01T09:51:19.175525"}}
+/type/author /authors/OL10125400A 1 2022-01-01T10:19:35.980017 {"type": {"key": "/type/author"}, "name": "Ayo Ub sudoku", "key": "/authors/OL10125400A", "source_records": ["bwb:9798776210372"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-01T10:19:35.980017"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-01T10:19:35.980017"}}
+/type/author /authors/OL10125423A 1 2022-01-01T10:21:10.814889 {"type": {"key": "/type/author"}, "name": "Danyel Mamedov", "key": "/authors/OL10125423A", "source_records": ["bwb:9798471449145"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-01T10:21:10.814889"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-01T10:21:10.814889"}}
+/type/author /authors/OL10125561A 1 2022-01-01T10:30:59.574950 {"type": {"key": "/type/author"}, "name": "Lea To do lists", "key": "/authors/OL10125561A", "source_records": ["bwb:9798769881527"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-01T10:30:59.574950"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-01T10:30:59.574950"}}
+/type/author /authors/OL10125608A 2 2022-04-12T20:48:58.024521 {"type": {"key": "/type/author"}, "name": "Izabela Za\u0142uska", "key": "/authors/OL10125608A", "source_records": ["bwb:9798761190672"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2022-01-01T10:33:53.566694"}, "last_modified": {"type": "/type/datetime", "value": "2022-04-12T20:48:58.024521"}}
+/type/author /authors/OL10125687A 1 2022-01-01T10:39:00.580102 {"type": {"key": "/type/author"}, "name": "Hinata Manga", "key": "/authors/OL10125687A", "source_records": ["bwb:9798576501045"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-01T10:39:00.580102"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-01T10:39:00.580102"}}
+/type/author /authors/OL10126213A 1 2022-01-01T11:17:45.378702 {"type": {"key": "/type/author"}, "name": "Naima Ennajah", "key": "/authors/OL10126213A", "source_records": ["bwb:9798728977643"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-01T11:17:45.378702"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-01T11:17:45.378702"}}
+/type/author /authors/OL10126338A 1 2022-01-01T11:25:30.322194 {"type": {"key": "/type/author"}, "name": "Haro MacGra", "key": "/authors/OL10126338A", "source_records": ["bwb:9798737357894"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-01T11:25:30.322194"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-01T11:25:30.322194"}}
+/type/author /authors/OL1012634A 2 2008-08-20T19:34:57.565861 {"name": "Josefina Garci\u0301a Carranza", "personal_name": "Josefina Garci\u0301a Carranza", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T19:34:57.565861"}, "key": "/authors/OL1012634A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10126435A 1 2022-01-01T11:31:45.610418 {"type": {"key": "/type/author"}, "name": "Williams WILLIAMS", "key": "/authors/OL10126435A", "source_records": ["bwb:9798771327754"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-01T11:31:45.610418"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-01T11:31:45.610418"}}
+/type/author /authors/OL10126672A 1 2022-01-01T11:49:52.719280 {"type": {"key": "/type/author"}, "name": "Zendez Crystals Press", "key": "/authors/OL10126672A", "source_records": ["bwb:9798774942015"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-01T11:49:52.719280"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-01T11:49:52.719280"}}
+/type/author /authors/OL10126700A 1 2022-01-01T11:51:46.448854 {"type": {"key": "/type/author"}, "name": "W. Francis W. Francis Ainsworth", "key": "/authors/OL10126700A", "source_records": ["bwb:9798481857510"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-01T11:51:46.448854"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-01T11:51:46.448854"}}
+/type/author /authors/OL10127085A 1 2022-01-01T12:22:57.545855 {"type": {"key": "/type/author"}, "name": "2. C", "key": "/authors/OL10127085A", "source_records": ["bwb:9798721826726"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-01T12:22:57.545855"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-01T12:22:57.545855"}}
+/type/author /authors/OL1012748A 2 2008-08-20T19:35:43.388819 {"name": "Selene de Medeiros", "personal_name": "Selene de Medeiros", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T19:35:43.388819"}, "key": "/authors/OL1012748A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10127508A 1 2022-01-01T12:51:25.576181 {"type": {"key": "/type/author"}, "name": "Better Than Cash Alliance", "key": "/authors/OL10127508A", "source_records": ["bwb:9781735040974"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-01T12:51:25.576181"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-01T12:51:25.576181"}}
+/type/author /authors/OL10127743A 1 2022-01-01T12:58:40.899628 {"type": {"key": "/type/author"}, "name": "Miroslaw Masojc", "key": "/authors/OL10127743A", "source_records": ["bwb:9782503599069"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-01T12:58:40.899628"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-01T12:58:40.899628"}}
+/type/author /authors/OL1012809A 2 2008-08-20T19:36:13.715763 {"name": "Irving Joyner", "personal_name": "Irving Joyner", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T19:36:13.715763"}, "key": "/authors/OL1012809A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10128227A 1 2022-01-01T13:13:56.503248 {"type": {"key": "/type/author"}, "name": "Jack L Shagena", "key": "/authors/OL10128227A", "source_records": ["bwb:9781944817107"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-01T13:13:56.503248"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-01T13:13:56.503248"}}
+/type/author /authors/OL10128615A 1 2022-01-01T13:25:14.768547 {"type": {"key": "/type/author"}, "name": "Gesine Borcherdt", "key": "/authors/OL10128615A", "source_records": ["bwb:9783969120323"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-01T13:25:14.768547"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-01T13:25:14.768547"}}
+/type/author /authors/OL10128671A 1 2022-01-01T13:31:50.518600 {"type": {"key": "/type/author"}, "name": "Raymond Murphy", "personal_name": "Raymond Murphy", "birth_date": "1946", "key": "/authors/OL10128671A", "source_records": ["ia:jianqiaochujiyin0000murp"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-01T13:31:50.518600"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-01T13:31:50.518600"}}
+/type/author /authors/OL10128717A 1 2022-01-01T13:40:44.448577 {"type": {"key": "/type/author"}, "name": "Jiangzhou He", "personal_name": "Jiangzhou He", "key": "/authors/OL10128717A", "source_records": ["ia:cyuyanchengxushe0000unse_c5s1"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-01T13:40:44.448577"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-01T13:40:44.448577"}}
+/type/author /authors/OL10128988A 1 2022-01-01T16:30:18.679249 {"type": {"key": "/type/author"}, "name": "Mario M. Rafaelli", "personal_name": "Mario M. Rafaelli", "key": "/authors/OL10128988A", "source_records": ["ia:plomeria0000rafa"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-01T16:30:18.679249"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-01T16:30:18.679249"}}
+/type/author /authors/OL10129184A 1 2022-01-01T17:46:06.735188 {"type": {"key": "/type/author"}, "name": "Ma ai hua", "personal_name": "Ma ai hua", "key": "/authors/OL10129184A", "source_records": ["ia:tujichu0006unse"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-01T17:46:06.735188"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-01T17:46:06.735188"}}
+/type/author /authors/OL10129461A 1 2022-01-01T20:57:43.015273 {"type": {"key": "/type/author"}, "name": "Gu wei wei", "personal_name": "Gu wei wei", "key": "/authors/OL10129461A", "source_records": ["ia:geiwodehaizijian0000unse"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-01T20:57:43.015273"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-01T20:57:43.015273"}}
+/type/author /authors/OL10129831A 1 2022-01-02T05:54:41.502712 {"type": {"key": "/type/author"}, "name": "Henghua Cui", "personal_name": "Henghua Cui", "key": "/authors/OL10129831A", "source_records": ["ia:taobaowangdiantu0000cuih"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-02T05:54:41.502712"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-02T05:54:41.502712"}}
+/type/author /authors/OL10130312A 1 2022-01-02T10:53:26.126282 {"type": {"key": "/type/author"}, "name": "E (Einar) B 1877 Lindeman", "key": "/authors/OL10130312A", "source_records": ["amazon:1014285046"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-02T10:53:26.126282"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-02T10:53:26.126282"}}
+/type/author /authors/OL10130435A 1 2022-01-02T10:54:29.151051 {"type": {"key": "/type/author"}, "name": "Eric 1899-1949 Muspratt", "key": "/authors/OL10130435A", "source_records": ["amazon:1014306248"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-02T10:54:29.151051"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-02T10:54:29.151051"}}
+/type/author /authors/OL10130866A 1 2022-01-02T20:40:14.637170 {"name": "Dawid Szko\u0142a", "key": "/authors/OL10130866A", "type": {"key": "/type/author"}, "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-02T20:40:14.637170"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-02T20:40:14.637170"}}
+/type/author /authors/OL10131031A 1 2022-01-03T22:27:35.401638 {"type": {"key": "/type/author"}, "name": "Christian Gohde", "key": "/authors/OL10131031A", "source_records": ["amazon:3848764806"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-03T22:27:35.401638"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-03T22:27:35.401638"}}
+/type/author /authors/OL10131071A 1 2022-01-03T22:27:55.176847 {"type": {"key": "/type/author"}, "name": "Nicolas B|chse", "key": "/authors/OL10131071A", "source_records": ["amazon:3867111189"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-03T22:27:55.176847"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-03T22:27:55.176847"}}
+/type/author /authors/OL10131608A 1 2022-01-04T09:56:52.873015 {"type": {"key": "/type/author"}, "name": "Edgar Plans", "key": "/authors/OL10131608A", "source_records": ["amazon:8493771325"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-04T09:56:52.873015"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-04T09:56:52.873015"}}
+/type/author /authors/OL10131769A 1 2022-01-04T13:26:18.426788 {"type": {"key": "/type/author"}, "name": "Sandra F Joireman", "key": "/authors/OL10131769A", "source_records": ["amazon:0472133268"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-04T13:26:18.426788"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-04T13:26:18.426788"}}
+/type/author /authors/OL10131839A 1 2022-01-04T13:34:53.219819 {"type": {"key": "/type/author"}, "name": "Nevaeh McBeth", "key": "/authors/OL10131839A", "source_records": ["amazon:057891316X"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-04T13:34:53.219819"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-04T13:34:53.219819"}}
+/type/author /authors/OL10132537A 1 2022-01-05T07:40:22.398330 {"type": {"key": "/type/author"}, "name": "Obert Holl", "key": "/authors/OL10132537A", "source_records": ["amazon:0645370304"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-05T07:40:22.398330"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-05T07:40:22.398330"}}
+/type/author /authors/OL10132798A 1 2022-01-05T08:36:31.981002 {"type": {"key": "/type/author"}, "name": "Olga POKROVSKAIA", "key": "/authors/OL10132798A", "source_records": ["amazon:6203234486"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-05T08:36:31.981002"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-05T08:36:31.981002"}}
+/type/author /authors/OL1013283A 2 2008-08-20T19:39:32.227971 {"name": "Milton N. Kraus", "personal_name": "Milton N. Kraus", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T19:39:32.227971"}, "key": "/authors/OL1013283A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10133404A 1 2022-01-05T08:50:18.748632 {"type": {"key": "/type/author"}, "name": "Juan C. Oliva", "key": "/authors/OL10133404A", "source_records": ["amazon:8496096130"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-05T08:50:18.748632"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-05T08:50:18.748632"}}
+/type/author /authors/OL10133759A 1 2022-01-06T05:18:21.315875 {"type": {"key": "/type/author"}, "name": "Lauronda Morrow (graphics)", "key": "/authors/OL10133759A", "source_records": ["amazon:0692889809"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-06T05:18:21.315875"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-06T05:18:21.315875"}}
+/type/author /authors/OL10134582A 1 2022-01-07T07:23:49.604035 {"type": {"key": "/type/author"}, "name": "National Association of Audubon Socie", "key": "/authors/OL10134582A", "source_records": ["amazon:1014557658"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-07T07:23:49.604035"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-07T07:23:49.604035"}}
+/type/author /authors/OL10135152A 2 2022-10-09T10:27:11.901080 {"type": {"key": "/type/author"}, "name": "Petra Deistler-Kaufmann", "key": "/authors/OL10135152A", "source_records": ["amazon:9124126144"], "alternate_names": ["Deistler, Petra"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2022-01-07T18:10:48.375302"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-09T10:27:11.901080"}}
+/type/author /authors/OL10135557A 1 2022-01-08T08:18:41.116619 {"type": {"key": "/type/author"}, "name": "Eutin Kirchengemeinde", "key": "/authors/OL10135557A", "source_records": ["amazon:3795459680"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-08T08:18:41.116619"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-08T08:18:41.116619"}}
+/type/author /authors/OL10135702A 1 2022-01-08T08:20:08.458834 {"type": {"key": "/type/author"}, "name": "Oliver Maiwald", "key": "/authors/OL10135702A", "source_records": ["amazon:383250933X"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-08T08:20:08.458834"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-08T08:20:08.458834"}}
+/type/author /authors/OL10135743A 1 2022-01-08T08:20:21.751783 {"type": {"key": "/type/author"}, "name": "Jorg Schwerdtfeger", "key": "/authors/OL10135743A", "source_records": ["amazon:3832512098"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-08T08:20:21.751783"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-08T08:20:21.751783"}}
+/type/author /authors/OL10135888A 1 2022-01-08T08:21:14.897512 {"type": {"key": "/type/author"}, "name": "Georg Ungemach", "key": "/authors/OL10135888A", "source_records": ["amazon:3832522433"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-08T08:21:14.897512"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-08T08:21:14.897512"}}
+/type/author /authors/OL10135938A 1 2022-01-08T08:21:39.406246 {"type": {"key": "/type/author"}, "name": "Nicolas Rinosl", "key": "/authors/OL10135938A", "source_records": ["amazon:3832531416"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-08T08:21:39.406246"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-08T08:21:39.406246"}}
+/type/author /authors/OL10136216A 2 2022-04-12T21:17:57.268053 {"type": {"key": "/type/author"}, "name": "\u0410. \u041f \u0423\u043c\u0435\u043b\u044c\u0446\u0435\u0432", "key": "/authors/OL10136216A", "source_records": ["amazon:5519615632"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2022-01-08T08:25:34.279832"}, "last_modified": {"type": "/type/datetime", "value": "2022-04-12T21:17:57.268053"}}
+/type/author /authors/OL10136473A 1 2022-01-09T04:37:54.244859 {"type": {"key": "/type/author"}, "name": "Baihe Zi", "personal_name": "Baihe Zi", "key": "/authors/OL10136473A", "source_records": ["ia:hualuoyanyunmeng0000unse"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-09T04:37:54.244859"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-09T04:37:54.244859"}}
+/type/author /authors/OL10136662A 1 2022-01-09T10:25:42.597908 {"type": {"key": "/type/author"}, "name": "Diego De 1584-1648 Saavedra Fajardo", "key": "/authors/OL10136662A", "source_records": ["amazon:1014818710"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-09T10:25:42.597908"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-09T10:25:42.597908"}}
+/type/author /authors/OL1013713A 2 2008-08-20T19:43:13.299011 {"name": "Leon Hurwitz", "personal_name": "Leon Hurwitz", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T19:43:13.299011"}, "key": "/authors/OL1013713A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10137354A 1 2022-01-10T22:24:54.040901 {"type": {"key": "/type/author"}, "name": "Jon Arrizabalaga Valbuena", "key": "/authors/OL10137354A", "source_records": ["amazon:8417547215"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-10T22:24:54.040901"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-10T22:24:54.040901"}}
+/type/author /authors/OL10137375A 1 2022-01-10T22:25:16.500983 {"type": {"key": "/type/author"}, "name": "Ava Munoz", "key": "/authors/OL10137375A", "source_records": ["amazon:8775794705"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-10T22:25:16.500983"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-10T22:25:16.500983"}}
+/type/author /authors/OL10137515A 1 2022-01-10T22:26:33.940152 {"type": {"key": "/type/author"}, "name": "Hubert Bazin", "key": "/authors/OL10137515A", "source_records": ["amazon:9004390375"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-10T22:26:33.940152"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-10T22:26:33.940152"}}
+/type/author /authors/OL1013805A 2 2008-08-20T19:43:53.67303 {"name": "Michael W. O'Neill", "personal_name": "Michael W. O'Neill", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T19:43:53.67303"}, "key": "/authors/OL1013805A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10140155A 1 2022-01-13T18:20:11.950237 {"type": {"key": "/type/author"}, "name": "Lori L. Desautels Ph.D.", "key": "/authors/OL10140155A", "source_records": ["amazon:146995818X"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-13T18:20:11.950237"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-13T18:20:11.950237"}}
+/type/author /authors/OL10140307A 1 2022-01-14T07:34:26.115456 {"type": {"key": "/type/author"}, "name": "Notebooks Notebooks 26 Publishing", "key": "/authors/OL10140307A", "source_records": ["amazon:1085995380"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-14T07:34:26.115456"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-14T07:34:26.115456"}}
+/type/author /authors/OL10140517A 1 2022-01-14T07:57:04.906262 {"type": {"key": "/type/author"}, "name": "Stuart Harvey", "key": "/authors/OL10140517A", "source_records": ["amazon:1638718539"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-14T07:57:04.906262"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-14T07:57:04.906262"}}
+/type/author /authors/OL10140619A 1 2022-01-14T07:58:58.057638 {"type": {"key": "/type/author"}, "name": "Ava Phillips", "key": "/authors/OL10140619A", "source_records": ["amazon:1648956947"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-14T07:58:58.057638"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-14T07:58:58.057638"}}
+/type/author /authors/OL10140693A 1 2022-01-14T08:25:21.985481 {"type": {"key": "/type/author"}, "name": "Brigitte Romer-Schweers", "key": "/authors/OL10140693A", "source_records": ["amazon:3991079526"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-14T08:25:21.985481"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-14T08:25:21.985481"}}
+/type/author /authors/OL10140868A 1 2022-01-15T05:18:44.131580 {"type": {"key": "/type/author"}, "name": "Austin, USMC, Captain Robin L.", "key": "/authors/OL10140868A", "source_records": ["amazon:1499748485"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-15T05:18:44.131580"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-15T05:18:44.131580"}}
+/type/author /authors/OL10141086A 1 2022-01-15T08:27:26.007073 {"type": {"key": "/type/author"}, "name": "Matthew Tirrell", "key": "/authors/OL10141086A", "source_records": ["amazon:9811246106"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-15T08:27:26.007073"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-15T08:27:26.007073"}}
+/type/author /authors/OL1014114A 1 2008-04-01T03:28:50.625462 {"name": "Morrison, Clinton", "personal_name": "Morrison, Clinton", "last_modified": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "key": "/authors/OL1014114A", "birth_date": "1915", "type": {"key": "/type/author"}, "revision": 1}
+/type/author /authors/OL10141230A 3 2022-01-16T09:52:00.401264 {"name": "Maurice G. Hugi", "key": "/authors/OL10141230A", "type": {"key": "/type/author"}, "death_date": "1947", "birth_date": "1904", "remote_ids": {"wikidata": "Q55871555"}, "alternate_names": ["Maurice Gaspard Hugi"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2022-01-16T09:49:54.147425"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-16T09:52:00.401264"}}
+/type/author /authors/OL10141780A 1 2022-01-16T11:37:13.218427 {"type": {"key": "/type/author"}, "name": "Philip Hooton", "key": "/authors/OL10141780A", "source_records": ["amazon:1385785764"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-16T11:37:13.218427"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-16T11:37:13.218427"}}
+/type/author /authors/OL1014179A 2 2008-08-20T19:46:17.179871 {"name": "Evelyn E. Amos", "personal_name": "Evelyn E. Amos", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T19:46:17.179871"}, "key": "/authors/OL1014179A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10142078A 1 2022-01-17T21:43:45.302927 {"type": {"key": "/type/author"}, "name": "Marc Borms", "key": "/authors/OL10142078A", "source_records": ["amazon:1326476718"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-17T21:43:45.302927"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-17T21:43:45.302927"}}
+/type/author /authors/OL10142230A 1 2022-01-17T22:06:54.385905 {"type": {"key": "/type/author"}, "name": "Ian Willey", "key": "/authors/OL10142230A", "source_records": ["amazon:1472813928"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-17T22:06:54.385905"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-17T22:06:54.385905"}}
+/type/author /authors/OL10142346A 1 2022-01-18T12:19:03.354132 {"type": {"key": "/type/author"}, "name": "Marguerite C. Lorenz", "key": "/authors/OL10142346A", "source_records": ["amazon:1456767291"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-18T12:19:03.354132"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-18T12:19:03.354132"}}
+/type/author /authors/OL10142364A 1 2022-01-18T12:31:29.763640 {"type": {"key": "/type/author"}, "name": "Lesley Wiebe", "key": "/authors/OL10142364A", "source_records": ["amazon:103911105X"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-18T12:31:29.763640"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-18T12:31:29.763640"}}
+/type/author /authors/OL10142440A 1 2022-01-18T20:07:49.306735 {"type": {"key": "/type/author"}, "name": "Mark Giaconia", "key": "/authors/OL10142440A", "source_records": ["amazon:1981090878"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-18T20:07:49.306735"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-18T20:07:49.306735"}}
+/type/author /authors/OL10142463A 1 2022-01-19T03:33:22.301779 {"type": {"key": "/type/author"}, "name": "Tamara Ramsey", "key": "/authors/OL10142463A", "source_records": ["amazon:1464771766"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-19T03:33:22.301779"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-19T03:33:22.301779"}}
+/type/author /authors/OL10142680A 1 2022-01-19T08:12:33.987186 {"type": {"key": "/type/author"}, "name": "SJ Lindsay", "key": "/authors/OL10142680A", "source_records": ["amazon:1668531852"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-19T08:12:33.987186"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-19T08:12:33.987186"}}
+/type/author /authors/OL10142809A 1 2022-01-20T07:44:05.994960 {"type": {"key": "/type/author"}, "name": "Thomas A. Baker III", "key": "/authors/OL10142809A", "source_records": ["amazon:1492597775"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-20T07:44:05.994960"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-20T07:44:05.994960"}}
+/type/author /authors/OL10143768A 1 2022-01-23T10:47:37.421103 {"type": {"key": "/type/author"}, "name": "Jo-Anna Russon", "key": "/authors/OL10143768A", "source_records": ["amazon:1529224632"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-23T10:47:37.421103"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-23T10:47:37.421103"}}
+/type/author /authors/OL10144265A 1 2022-01-25T09:37:30.978362 {"name": "Jim Detert", "key": "/authors/OL10144265A", "type": {"key": "/type/author"}, "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-25T09:37:30.978362"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-25T09:37:30.978362"}}
+/type/author /authors/OL10144303A 1 2022-01-25T11:08:27.585273 {"type": {"key": "/type/author"}, "name": "Rochy Madame", "title": "Madame", "personal_name": "Rochy", "key": "/authors/OL10144303A", "source_records": ["ia:amoresprepagonue0000roch"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-25T11:08:27.585273"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-25T11:08:27.585273"}}
+/type/author /authors/OL10144527A 1 2022-01-25T13:33:05.024403 {"type": {"key": "/type/author"}, "name": "Sean C. Corwin", "personal_name": "Sean C. Corwin", "key": "/authors/OL10144527A", "source_records": ["ia:martinomalleyhis0000unse"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-25T13:33:05.024403"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-25T13:33:05.024403"}}
+/type/author /authors/OL10144877A 1 2022-01-25T17:47:18.743163 {"type": {"key": "/type/author"}, "name": "Margaret O'Brien", "personal_name": "Margaret O'Brien", "birth_date": "1944", "key": "/authors/OL10144877A", "source_records": ["ia:starsisland0000obri"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-25T17:47:18.743163"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-25T17:47:18.743163"}}
+/type/author /authors/OL1014492A 2 2008-08-20T19:48:50.457802 {"name": "William A. Mitchiner", "personal_name": "William A. Mitchiner", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T19:48:50.457802"}, "key": "/authors/OL1014492A", "birth_date": "1911", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10144995A 1 2022-01-25T19:17:01.703454 {"type": {"key": "/type/author"}, "name": "Maria da Luz S. McAdams", "personal_name": "Maria da Luz S. McAdams", "key": "/authors/OL10144995A", "source_records": ["ia:embuscadoarcoiri0000mcad"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-25T19:17:01.703454"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-25T19:17:01.703454"}}
+/type/author /authors/OL10145091A 1 2022-01-25T20:39:05.362908 {"type": {"key": "/type/author"}, "name": "Xin ying yi", "personal_name": "Xin ying yi", "key": "/authors/OL10145091A", "source_records": ["ia:yuzhouyuren0000unse"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-25T20:39:05.362908"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-25T20:39:05.362908"}}
+/type/author /authors/OL10145349A 1 2022-01-25T23:40:21.404090 {"type": {"key": "/type/author"}, "name": "Ma zhe feng", "personal_name": "Ma zhe feng", "key": "/authors/OL10145349A", "source_records": ["ia:baibianjiweijiu0000unse"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-25T23:40:21.404090"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-25T23:40:21.404090"}}
+/type/author /authors/OL10146159A 1 2022-01-26T09:17:52.564857 {"type": {"key": "/type/author"}, "name": "Jacqueline MacKay", "personal_name": "Jacqueline MacKay", "birth_date": "1963", "key": "/authors/OL10146159A", "source_records": ["ia:butterfliesinmyb0000mack"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-26T09:17:52.564857"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-26T09:17:52.564857"}}
+/type/author /authors/OL1014624A 2 2008-08-20T19:49:38.304544 {"name": "Thomas T. Fetters", "personal_name": "Thomas T. Fetters", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T19:49:38.304544"}, "key": "/authors/OL1014624A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10146549A 1 2022-01-26T16:20:55.671897 {"type": {"key": "/type/author"}, "name": "Vanessa G. Medina", "key": "/authors/OL10146549A", "source_records": ["amazon:8418051264"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-26T16:20:55.671897"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-26T16:20:55.671897"}}
+/type/author /authors/OL10146552A 1 2022-01-26T16:26:56.847287 {"type": {"key": "/type/author"}, "name": "Zhang jing jin", "personal_name": "Zhang jing jin", "key": "/authors/OL10146552A", "source_records": ["ia:bandailengzhashe0000unse"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-26T16:26:56.847287"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-26T16:26:56.847287"}}
+/type/author /authors/OL10146644A 1 2022-01-26T17:46:48.663067 {"name": "Am\u00e9zquita, Adolfo", "key": "/authors/OL10146644A", "type": {"key": "/type/author"}, "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-26T17:46:48.663067"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-26T17:46:48.663067"}}
+/type/author /authors/OL10146780A 1 2022-01-26T20:00:47.593146 {"type": {"key": "/type/author"}, "name": "Rutger Lemm", "personal_name": "Rutger Lemm", "birth_date": "1985", "key": "/authors/OL10146780A", "source_records": ["ia:eengrootsemisluk0000lemm"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-26T20:00:47.593146"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-26T20:00:47.593146"}}
+/type/author /authors/OL10146826A 1 2022-01-26T21:08:32.538418 {"type": {"key": "/type/author"}, "name": "Johnson, Walter III", "title": "III", "personal_name": "Johnson, Walter", "key": "/authors/OL10146826A", "source_records": ["ia:icandothatadvice0000john"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-26T21:08:32.538418"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-26T21:08:32.538418"}}
+/type/author /authors/OL10146868A 1 2022-01-26T22:10:14.077710 {"type": {"key": "/type/author"}, "name": "I. Lowens", "key": "/authors/OL10146868A", "source_records": ["bwb:9780306710988"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-26T22:10:14.077710"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-26T22:10:14.077710"}}
+/type/author /authors/OL1014692A 2 2008-08-20T19:50:06.535391 {"name": "Maren E. Ormseth", "personal_name": "Maren E. Ormseth", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T19:50:06.535391"}, "key": "/authors/OL1014692A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10146995A 1 2022-01-26T23:32:41.083764 {"type": {"key": "/type/author"}, "name": "Amy J. Elias", "key": "/authors/OL10146995A", "source_records": ["bwb:9780801875434"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-26T23:32:41.083764"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-26T23:32:41.083764"}}
+/type/author /authors/OL10147021A 1 2022-01-26T23:48:12.487086 {"type": {"key": "/type/author"}, "name": "Janusz A. Polanowski", "key": "/authors/OL10147021A", "source_records": ["bwb:9780791461389"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-26T23:48:12.487086"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-26T23:48:12.487086"}}
+/type/author /authors/OL10147089A 1 2022-01-27T00:42:22.691237 {"type": {"key": "/type/author"}, "name": "Tom Sqouros", "key": "/authors/OL10147089A", "source_records": ["bwb:9780596522063"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-27T00:42:22.691237"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-27T00:42:22.691237"}}
+/type/author /authors/OL10147476A 1 2022-01-27T01:35:57.982395 {"type": {"key": "/type/author"}, "name": "Ana Sof\u00eda Ram\u00edrez", "key": "/authors/OL10147476A", "source_records": ["bwb:9788496502451"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-27T01:35:57.982395"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-27T01:35:57.982395"}}
+/type/author /authors/OL10147700A 1 2022-01-27T02:07:50.590406 {"type": {"key": "/type/author"}, "name": "Victor Edgar Onea Gaspar", "key": "/authors/OL10147700A", "source_records": ["bwb:9783110201864"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-27T02:07:50.590406"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-27T02:07:50.590406"}}
+/type/author /authors/OL10147933A 1 2022-01-27T03:18:30.140567 {"type": {"key": "/type/author"}, "name": "Andrew G. Curioso", "key": "/authors/OL10147933A", "source_records": ["bwb:9780596514037"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-27T03:18:30.140567"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-27T03:18:30.140567"}}
+/type/author /authors/OL10148137A 1 2022-01-27T04:02:11.993644 {"type": {"key": "/type/author"}, "name": "N. Creed", "key": "/authors/OL10148137A", "source_records": ["bwb:9781444706352"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-27T04:02:11.993644"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-27T04:02:11.993644"}}
+/type/author /authors/OL10148554A 1 2022-01-27T04:50:43.684920 {"type": {"key": "/type/author"}, "name": "Gregg Miller", "key": "/authors/OL10148554A", "source_records": ["bwb:9781438437408"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-27T04:50:43.684920"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-27T04:50:43.684920"}}
+/type/author /authors/OL10148776A 1 2022-01-27T05:20:40.722410 {"type": {"key": "/type/author"}, "name": "Walter H. Johns", "key": "/authors/OL10148776A", "source_records": ["bwb:9781459304796"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-27T05:20:40.722410"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-27T05:20:40.722410"}}
+/type/author /authors/OL1014890A 2 2008-08-20T19:51:26.696693 {"name": "Jerry L. Arnold", "personal_name": "Jerry L. Arnold", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T19:51:26.696693"}, "key": "/authors/OL1014890A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10149007A 1 2022-01-27T05:51:55.405634 {"type": {"key": "/type/author"}, "name": "N. Colman", "key": "/authors/OL10149007A", "source_records": ["bwb:9781782211990"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-27T05:51:55.405634"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-27T05:51:55.405634"}}
+/type/author /authors/OL1014944A 2 2008-08-20T19:51:45.485957 {"name": "Midge Cullis", "personal_name": "Midge Cullis", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T19:51:45.485957"}, "key": "/authors/OL1014944A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL1014946A 2 2008-08-20T19:51:45.700723 {"name": "Allen Nysse", "personal_name": "Allen Nysse", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T19:51:45.700723"}, "key": "/authors/OL1014946A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10149632A 1 2022-01-27T07:22:52.549622 {"type": {"key": "/type/author"}, "name": "Jenay M. Beer", "key": "/authors/OL10149632A", "source_records": ["bwb:9781614519607"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-27T07:22:52.549622"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-27T07:22:52.549622"}}
+/type/author /authors/OL1015025A 2 2008-08-20T19:52:06.512093 {"name": "Leland Dale Chapman", "personal_name": "Leland Dale Chapman", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T19:52:06.512093"}, "key": "/authors/OL1015025A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10151590A 1 2022-01-27T10:36:31.932622 {"type": {"key": "/type/author"}, "name": "Paul Thornycroft", "key": "/authors/OL10151590A", "source_records": ["bwb:9781912092611"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-27T10:36:31.932622"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-27T10:36:31.932622"}}
+/type/author /authors/OL10151641A 1 2022-01-27T10:44:41.679447 {"type": {"key": "/type/author"}, "name": "Ma. Trinidad Garcia Leiva", "key": "/authors/OL10151641A", "source_records": ["bwb:9780429764264"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-27T10:44:41.679447"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-27T10:44:41.679447"}}
+/type/author /authors/OL10151699A 1 2022-01-27T11:01:47.592832 {"type": {"key": "/type/author"}, "name": "Alan S Rosenbaum", "key": "/authors/OL10151699A", "source_records": ["bwb:9780429963681"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-27T11:01:47.592832"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-27T11:01:47.592832"}}
+/type/author /authors/OL1015177A 2 2008-08-20T19:52:54.861071 {"name": "Arnold B. Skromme", "personal_name": "Arnold B. Skromme", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T19:52:54.861071"}, "key": "/authors/OL1015177A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL1015192A 2 2008-08-20T19:52:59.374067 {"name": "Sandra Persad", "personal_name": "Sandra Persad", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T19:52:59.374067"}, "key": "/authors/OL1015192A", "birth_date": "1947", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10151984A 1 2022-01-27T11:58:43.949547 {"type": {"key": "/type/author"}, "name": "Mirjam Sigmund", "key": "/authors/OL10151984A", "source_records": ["bwb:9783110586411"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-27T11:58:43.949547"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-27T11:58:43.949547"}}
+/type/author /authors/OL10152443A 1 2022-01-27T14:07:10.097520 {"type": {"key": "/type/author"}, "name": "Ra\u00fal Fern\u00e1ndez-Calienes", "key": "/authors/OL10152443A", "source_records": ["bwb:9780429809330"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-27T14:07:10.097520"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-27T14:07:10.097520"}}
+/type/author /authors/OL10152452A 1 2022-01-27T14:09:32.157659 {"type": {"key": "/type/author"}, "name": "Ian Cuthbertson", "key": "/authors/OL10152452A", "source_records": ["bwb:9781000230222"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-27T14:09:32.157659"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-27T14:09:32.157659"}}
+/type/author /authors/OL10152607A 1 2022-01-27T14:29:10.185613 {"type": {"key": "/type/author"}, "name": "Alfonzo Gonzalez", "key": "/authors/OL10152607A", "source_records": ["bwb:9781000232080"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-27T14:29:10.185613"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-27T14:29:10.185613"}}
+/type/author /authors/OL1015280A 2 2008-08-20T19:53:32.386253 {"name": "Ko Ching Shih", "personal_name": "Ko Ching Shih", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T19:53:32.386253"}, "key": "/authors/OL1015280A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10152886A 1 2022-01-27T15:02:30.000945 {"type": {"key": "/type/author"}, "name": "AMY K. KAMINSKY", "key": "/authors/OL10152886A", "source_records": ["bwb:9781438483283"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-27T15:02:30.000945"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-27T15:02:30.000945"}}
+/type/author /authors/OL10153003A 1 2022-01-27T15:21:21.049677 {"type": {"key": "/type/author"}, "name": "Josh Dolitsky", "key": "/authors/OL10153003A", "source_records": ["bwb:9781492083658"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-27T15:21:21.049677"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-27T15:21:21.049677"}}
+/type/author /authors/OL10153032A 1 2022-01-27T15:23:30.337303 {"type": {"key": "/type/author"}, "name": "DEARNLEY-LANE", "key": "/authors/OL10153032A", "source_records": ["bwb:9781859599310"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-27T15:23:30.337303"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-27T15:23:30.337303"}}
+/type/author /authors/OL10153184A 1 2022-01-27T15:44:09.752493 {"type": {"key": "/type/author"}, "name": "Dimitris Lamproulis", "key": "/authors/OL10153184A", "source_records": ["bwb:9781788301435"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-27T15:44:09.752493"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-27T15:44:09.752493"}}
+/type/author /authors/OL10153283A 1 2022-01-27T16:00:23.940485 {"type": {"key": "/type/author"}, "name": "Oliver Holtkemper", "key": "/authors/OL10153283A", "source_records": ["bwb:9783658315085"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-27T16:00:23.940485"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-27T16:00:23.940485"}}
+/type/author /authors/OL10153344A 1 2022-01-27T16:05:16.092691 {"type": {"key": "/type/author"}, "name": "Marie Comer", "key": "/authors/OL10153344A", "source_records": ["bwb:9783110662757"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-27T16:05:16.092691"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-27T16:05:16.092691"}}
+/type/author /authors/OL10154044A 1 2022-01-27T16:45:36.217984 {"type": {"key": "/type/author"}, "name": "Edith Ipsmiller", "key": "/authors/OL10154044A", "source_records": ["bwb:9781800882935"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-27T16:45:36.217984"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-27T16:45:36.217984"}}
+/type/author /authors/OL1015410A 2 2017-11-26T04:25:22.980163 {"name": "Okr\u016dzhna nauchno-prakticheska konferent\u0361sii\u0361a na tema \"Rabotata na d\u016drzhavnite i obshtestveni organi i organizat\u0361sii po utv\u016drzhdavane sot\u0361sialisticheskata praznichno-obredna sistema v Silistrenski okr\u016dg za ukrepvane dukhovnoto edinstvo na nat\u0361sii\u0361ata\" (1986 Tutrakan, Bulgaria)", "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2017-11-26T04:25:22.980163"}, "latest_revision": 2, "key": "/authors/OL1015410A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10154387A 1 2022-01-27T16:58:26.622136 {"type": {"key": "/type/author"}, "name": "Pedro Igor Silva", "key": "/authors/OL10154387A", "source_records": ["bwb:9781800562493"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-27T16:58:26.622136"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-27T16:58:26.622136"}}
+/type/author /authors/OL10154511A 1 2022-01-27T17:04:28.617187 {"type": {"key": "/type/author"}, "name": "Ania Malinowska", "key": "/authors/OL10154511A", "source_records": ["bwb:9781108884976"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-27T17:04:28.617187"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-27T17:04:28.617187"}}
+/type/author /authors/OL10154649A 1 2022-01-27T17:09:00.266982 {"type": {"key": "/type/author"}, "name": "Christina Bowen", "key": "/authors/OL10154649A", "source_records": ["bwb:9781786021731"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-27T17:09:00.266982"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-27T17:09:00.266982"}}
+/type/author /authors/OL10154877A 1 2022-01-27T17:16:31.436743 {"type": {"key": "/type/author"}, "name": "Russell Moffatt", "key": "/authors/OL10154877A", "source_records": ["bwb:9781003246534"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-27T17:16:31.436743"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-27T17:16:31.436743"}}
+/type/author /authors/OL10154939A 1 2022-01-27T17:18:07.254876 {"type": {"key": "/type/author"}, "name": "Annapurna Devi Pandey", "key": "/authors/OL10154939A", "source_records": ["bwb:9789811697722"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-27T17:18:07.254876"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-27T17:18:07.254876"}}
+/type/author /authors/OL10155163A 1 2022-01-27T17:26:47.533659 {"type": {"key": "/type/author"}, "name": "J\u00f6rdis Grabow", "key": "/authors/OL10155163A", "source_records": ["bwb:9783658342050"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-27T17:26:47.533659"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-27T17:26:47.533659"}}
+/type/author /authors/OL10155295A 1 2022-01-27T17:34:25.992966 {"type": {"key": "/type/author"}, "name": "Lea Fulcher", "key": "/authors/OL10155295A", "source_records": ["bwb:9781788302449"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-27T17:34:25.992966"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-27T17:34:25.992966"}}
+/type/author /authors/OL10155413A 1 2022-01-27T17:38:13.678159 {"type": {"key": "/type/author"}, "name": "Fran\u00e7ois Dosan Loiseau", "key": "/authors/OL10155413A", "source_records": ["bwb:9781838164409"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-27T17:38:13.678159"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-27T17:38:13.678159"}}
+/type/author /authors/OL10155507A 1 2022-01-27T17:41:01.979534 {"type": {"key": "/type/author"}, "name": "Duncan Hose", "key": "/authors/OL10155507A", "source_records": ["bwb:9783030948405"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-27T17:41:01.979534"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-27T17:41:01.979534"}}
+/type/author /authors/OL10155819A 1 2022-01-27T17:55:22.318601 {"type": {"key": "/type/author"}, "name": "Yasutaka Shimizu", "key": "/authors/OL10155819A", "source_records": ["bwb:9789811617218"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-27T17:55:22.318601"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-27T17:55:22.318601"}}
+/type/author /authors/OL10156076A 1 2022-01-27T18:09:18.999454 {"type": {"key": "/type/author"}, "name": "Sonia Lenzi", "key": "/authors/OL10156076A", "source_records": ["bwb:9783969000496"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-27T18:09:18.999454"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-27T18:09:18.999454"}}
+/type/author /authors/OL10156170A 1 2022-01-27T18:13:49.020309 {"type": {"key": "/type/author"}, "name": "Christelle Havranek", "key": "/authors/OL10156170A", "source_records": ["bwb:9783775751971"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-27T18:13:49.020309"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-27T18:13:49.020309"}}
+/type/author /authors/OL10156217A 1 2022-01-27T18:17:25.717496 {"type": {"key": "/type/author"}, "name": "Pawel Gromek", "key": "/authors/OL10156217A", "source_records": ["bwb:9781003252856"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-27T18:17:25.717496"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-27T18:17:25.717496"}}
+/type/author /authors/OL10156285A 1 2022-01-27T18:20:11.388978 {"type": {"key": "/type/author"}, "name": "Enna Reittort", "key": "/authors/OL10156285A", "source_records": ["bwb:9786165827713"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-27T18:20:11.388978"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-27T18:20:11.388978"}}
+/type/author /authors/OL10156391A 1 2022-01-27T18:26:42.941381 {"type": {"key": "/type/author"}, "name": "Ayna Miah Llb Hons", "key": "/authors/OL10156391A", "source_records": ["bwb:9781637522998"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-27T18:26:42.941381"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-27T18:26:42.941381"}}
+/type/author /authors/OL10156589A 1 2022-01-27T18:39:01.517185 {"type": {"key": "/type/author"}, "name": "Christof Z\u00fc", "key": "/authors/OL10156589A", "source_records": ["bwb:9789063696306"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-27T18:39:01.517185"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-27T18:39:01.517185"}}
+/type/author /authors/OL1015697A 2 2008-08-20T19:56:09.301677 {"name": "Federica Sossi", "personal_name": "Federica Sossi", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T19:56:09.301677"}, "key": "/authors/OL1015697A", "birth_date": "1960", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10157971A 1 2022-01-27T19:47:37.389750 {"type": {"key": "/type/author"}, "name": "Mohan V. Belthur", "key": "/authors/OL10157971A", "source_records": ["bwb:9783030957933"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-27T19:47:37.389750"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-27T19:47:37.389750"}}
+/type/author /authors/OL10158065A 1 2022-01-27T19:54:03.819575 {"type": {"key": "/type/author"}, "name": "Daire MacPh\u00e1id\u00edn", "key": "/authors/OL10158065A", "source_records": ["bwb:9781788493383"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-27T19:54:03.819575"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-27T19:54:03.819575"}}
+/type/author /authors/OL1015821A 2 2008-08-20T19:56:45.193369 {"name": "Heribert Walter", "personal_name": "Heribert Walter", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T19:56:45.193369"}, "key": "/authors/OL1015821A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10158274A 1 2022-01-27T20:05:12.745142 {"type": {"key": "/type/author"}, "name": "Zoulfa Katouh", "key": "/authors/OL10158274A", "source_records": ["bwb:9781526648525"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-27T20:05:12.745142"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-27T20:05:12.745142"}}
+/type/author /authors/OL10158402A 1 2022-01-27T20:12:09.604123 {"type": {"key": "/type/author"}, "name": "I. L. Rosental", "key": "/authors/OL10158402A", "source_records": ["bwb:9783112544303"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-27T20:12:09.604123"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-27T20:12:09.604123"}}
+/type/author /authors/OL10158623A 1 2022-01-27T20:49:09.164744 {"type": {"key": "/type/author"}, "name": "Accademia de Ricovrati Staff", "key": "/authors/OL10158623A", "source_records": ["bwb:9780226010564"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-27T20:49:09.164744"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-27T20:49:09.164744"}}
+/type/author /authors/OL10158636A 1 2022-01-27T20:51:29.863624 {"type": {"key": "/type/author"}, "name": "Stephen Decatur", "key": "/authors/OL10158636A", "source_records": ["bwb:9780306714160"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-27T20:51:29.863624"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-27T20:51:29.863624"}}
+/type/author /authors/OL1015863A 2 2008-08-20T19:56:55.442509 {"name": "Paloma Rojo y Alboreca", "personal_name": "Paloma Rojo y Alboreca", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T19:56:55.442509"}, "key": "/authors/OL1015863A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10158735A 1 2022-01-27T21:16:34.294247 {"type": {"key": "/type/author"}, "name": "N. Francis", "key": "/authors/OL10158735A", "source_records": ["bwb:9780201577501"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-27T21:16:34.294247"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-27T21:16:34.294247"}}
+/type/author /authors/OL10158844A 1 2022-01-27T21:43:20.970961 {"type": {"key": "/type/author"}, "name": "No\u00eblle Hoeppe", "key": "/authors/OL10158844A", "source_records": ["bwb:9782812310713"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-27T21:43:20.970961"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-27T21:43:20.970961"}}
+/type/author /authors/OL10158932A 1 2022-01-27T21:58:08.181850 {"type": {"key": "/type/author"}, "name": "Christoph Rosenmuller", "key": "/authors/OL10158932A", "source_records": ["bwb:9781552382608"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-27T21:58:08.181850"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-27T21:58:08.181850"}}
+/type/author /authors/OL10159408A 1 2022-01-27T23:27:36.656315 {"type": {"key": "/type/author"}, "name": "Meihan Booey", "key": "/authors/OL10159408A", "source_records": ["bwb:9789814358156"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-27T23:27:36.656315"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-27T23:27:36.656315"}}
+/type/author /authors/OL10159606A 1 2022-01-27T23:34:21.097675 {"type": {"key": "/type/author"}, "name": "Geta Grama", "key": "/authors/OL10159606A", "source_records": ["bwb:9781607056157"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-27T23:34:21.097675"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-27T23:34:21.097675"}}
+/type/author /authors/OL101598A 2 2008-09-09T03:37:35.549788 {"name": "T. T. Samarthia", "personal_name": "T. T. Samarthia", "last_modified": {"type": "/type/datetime", "value": "2008-09-09T03:37:35.549788"}, "key": "/authors/OL101598A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10159992A 1 2022-01-27T23:54:12.874660 {"type": {"key": "/type/author"}, "name": "Susana Agust\u00edn Fern\u00e1ndez", "key": "/authors/OL10159992A", "source_records": ["bwb:9781449250584"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-27T23:54:12.874660"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-27T23:54:12.874660"}}
+/type/author /authors/OL10160051A 1 2022-01-27T23:56:26.711966 {"type": {"key": "/type/author"}, "name": "Tracy Bale", "key": "/authors/OL10160051A", "source_records": ["bwb:9781615040858"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-27T23:56:26.711966"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-27T23:56:26.711966"}}
+/type/author /authors/OL10160060A 1 2022-01-27T23:57:01.131507 {"type": {"key": "/type/author"}, "name": "Margaret Kamitsuka", "key": "/authors/OL10160060A", "source_records": ["bwb:9781451413519"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-27T23:57:01.131507"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-27T23:57:01.131507"}}
+/type/author /authors/OL10160095A 1 2022-01-27T23:59:06.341488 {"type": {"key": "/type/author"}, "name": "Bernard Ouoba", "key": "/authors/OL10160095A", "source_records": ["bwb:9782759208111"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-27T23:59:06.341488"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-27T23:59:06.341488"}}
+/type/author /authors/OL10160184A 1 2022-01-28T00:06:41.386442 {"type": {"key": "/type/author"}, "name": "Tahera Rene Christy", "key": "/authors/OL10160184A", "source_records": ["bwb:9781631732089"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T00:06:41.386442"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T00:06:41.386442"}}
+/type/author /authors/OL10160187A 1 2022-01-28T00:07:09.316354 {"type": {"key": "/type/author"}, "name": "Patricia Gould Champ", "key": "/authors/OL10160187A", "source_records": ["bwb:9781939774088"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T00:07:09.316354"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T00:07:09.316354"}}
+/type/author /authors/OL10160473A 1 2022-01-28T00:22:23.477045 {"type": {"key": "/type/author"}, "name": "Jan van Duyker", "key": "/authors/OL10160473A", "source_records": ["bwb:9781622097838"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T00:22:23.477045"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T00:22:23.477045"}}
+/type/author /authors/OL10160554A 1 2022-01-28T00:27:14.716343 {"type": {"key": "/type/author"}, "name": "Jose Trinidad (Trino) Camacho", "key": "/authors/OL10160554A", "source_records": ["bwb:9786074214741"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T00:27:14.716343"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T00:27:14.716343"}}
+/type/author /authors/OL10160666A 1 2022-01-28T00:36:44.767304 {"type": {"key": "/type/author"}, "name": "Mark Burch", "key": "/authors/OL10160666A", "source_records": ["bwb:9780865713680"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T00:36:44.767304"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T00:36:44.767304"}}
+/type/author /authors/OL10160764A 1 2022-01-28T00:39:18.070940 {"type": {"key": "/type/author"}, "name": "Juan Carlos Garc\u00eda Palomares", "key": "/authors/OL10160764A", "source_records": ["bwb:9781449248437"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T00:39:18.070940"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T00:39:18.070940"}}
+/type/author /authors/OL10160897A 1 2022-01-28T00:48:53.934160 {"type": {"key": "/type/author"}, "name": "Anthony Kadarrell Thigpen", "key": "/authors/OL10160897A", "source_records": ["bwb:9781628903348"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T00:48:53.934160"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T00:48:53.934160"}}
+/type/author /authors/OL10161239A 1 2022-01-28T01:08:49.969495 {"type": {"key": "/type/author"}, "name": "Abdu H. Murray", "key": "/authors/OL10161239A", "source_records": ["bwb:9780830896219"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T01:08:49.969495"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T01:08:49.969495"}}
+/type/author /authors/OL10161712A 1 2022-01-28T01:40:52.461385 {"type": {"key": "/type/author"}, "name": "Eli Newberger", "key": "/authors/OL10161712A", "source_records": ["bwb:9780786748686"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T01:40:52.461385"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T01:40:52.461385"}}
+/type/author /authors/OL10161714A 1 2022-01-28T01:41:08.155335 {"type": {"key": "/type/author"}, "name": "Desborough", "key": "/authors/OL10161714A", "source_records": ["bwb:9781850328988"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T01:41:08.155335"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T01:41:08.155335"}}
+/type/author /authors/OL10161783A 1 2022-01-28T01:42:38.376502 {"type": {"key": "/type/author"}, "name": "Antonio Jes\u00fas Vel\u00e1zquez de Castro Gonz\u00e1lez", "key": "/authors/OL10161783A", "source_records": ["bwb:9781449245597"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T01:42:38.376502"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T01:42:38.376502"}}
+/type/author /authors/OL10162042A 1 2022-01-28T01:57:00.531451 {"type": {"key": "/type/author"}, "name": "Robson Lambada", "key": "/authors/OL10162042A", "source_records": ["bwb:9781633158313"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T01:57:00.531451"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T01:57:00.531451"}}
+/type/author /authors/OL10162224A 1 2022-01-28T02:04:12.187231 {"type": {"key": "/type/author"}, "name": "Joaqu\u00edn Altuzarra Martinez", "key": "/authors/OL10162224A", "source_records": ["bwb:9781413509007"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T02:04:12.187231"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T02:04:12.187231"}}
+/type/author /authors/OL10162502A 1 2022-01-28T02:25:26.770821 {"type": {"key": "/type/author"}, "name": "Manouchka Nicholas-Valcin", "key": "/authors/OL10162502A", "source_records": ["bwb:9781942526407"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T02:25:26.770821"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T02:25:26.770821"}}
+/type/author /authors/OL10162789A 1 2022-01-28T02:40:01.129315 {"type": {"key": "/type/author"}, "name": "George Lincoln Rockwell", "key": "/authors/OL10162789A", "source_records": ["bwb:9781684185993"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T02:40:01.129315"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T02:40:01.129315"}}
+/type/author /authors/OL1016325A 2 2008-08-20T19:59:24.38116 {"name": "Daniel R. Kane", "personal_name": "Daniel R. Kane", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T19:59:24.38116"}, "key": "/authors/OL1016325A", "birth_date": "1949", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10163427A 1 2022-01-28T03:19:38.719640 {"type": {"key": "/type/author"}, "name": "Roberto Mart\u00ednez Roberto Mart\u00ednez Guzm\u00e1n", "key": "/authors/OL10163427A", "source_records": ["bwb:9781519071590"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T03:19:38.719640"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T03:19:38.719640"}}
+/type/author /authors/OL10163507A 1 2022-01-28T03:26:09.285445 {"type": {"key": "/type/author"}, "name": "Shirley Barley", "key": "/authors/OL10163507A", "source_records": ["bwb:9781940359113"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T03:26:09.285445"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T03:26:09.285445"}}
+/type/author /authors/OL10163512A 1 2022-01-28T03:26:21.399254 {"type": {"key": "/type/author"}, "name": "Banee Aadam Publications", "key": "/authors/OL10163512A", "source_records": ["bwb:9781943090341"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T03:26:21.399254"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T03:26:21.399254"}}
+/type/author /authors/OL10163697A 1 2022-01-28T03:39:14.778482 {"type": {"key": "/type/author"}, "name": "Nadia Ghaffari", "key": "/authors/OL10163697A", "source_records": ["bwb:9781684182688"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T03:39:14.778482"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T03:39:14.778482"}}
+/type/author /authors/OL10165028A 1 2022-01-28T05:11:44.048531 {"type": {"key": "/type/author"}, "name": "Brown Michael", "key": "/authors/OL10165028A", "source_records": ["bwb:9781776561773"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T05:11:44.048531"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T05:11:44.048531"}}
+/type/author /authors/OL10165076A 1 2022-01-28T05:13:01.632998 {"type": {"key": "/type/author"}, "name": "Marla J. Aspinwall", "key": "/authors/OL10165076A", "source_records": ["bwb:9781634259736"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T05:13:01.632998"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T05:13:01.632998"}}
+/type/author /authors/OL10165414A 1 2022-01-28T05:28:47.634074 {"type": {"key": "/type/author"}, "name": "Faulk, Thomas J., Jr.", "key": "/authors/OL10165414A", "source_records": ["bwb:9781641362962"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T05:28:47.634074"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T05:28:47.634074"}}
+/type/author /authors/OL10165643A 1 2022-01-28T05:39:26.570687 {"type": {"key": "/type/author"}, "name": "Maria McMillan", "key": "/authors/OL10165643A", "source_records": ["bwb:9781776561131"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T05:39:26.570687"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T05:39:26.570687"}}
+/type/author /authors/OL10165985A 1 2022-01-28T05:56:44.837137 {"type": {"key": "/type/author"}, "name": "Oshin", "key": "/authors/OL10165985A", "source_records": ["bwb:9781642044362"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T05:56:44.837137"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T05:56:44.837137"}}
+/type/author /authors/OL10166240A 1 2022-01-28T06:08:47.129563 {"type": {"key": "/type/author"}, "name": "Hector D. Fernandez-L'Hoeste", "key": "/authors/OL10166240A", "source_records": ["bwb:9781496811400"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T06:08:47.129563"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T06:08:47.129563"}}
+/type/author /authors/OL10166258A 1 2022-01-28T06:10:02.220117 {"type": {"key": "/type/author"}, "name": "Matthew Strauss", "key": "/authors/OL10166258A", "source_records": ["bwb:9781640087781"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T06:10:02.220117"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T06:10:02.220117"}}
+/type/author /authors/OL10166273A 1 2022-01-28T06:11:30.972832 {"type": {"key": "/type/author"}, "name": "Jordan P. Barrett", "key": "/authors/OL10166273A", "source_records": ["bwb:9781506424835"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T06:11:30.972832"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T06:11:30.972832"}}
+/type/author /authors/OL1016636A 2 2008-08-20T20:01:30.69791 {"name": "Jan van der Wal", "personal_name": "Jan van der Wal", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T20:01:30.69791"}, "key": "/authors/OL1016636A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10166535A 1 2022-01-28T06:27:52.980157 {"type": {"key": "/type/author"}, "name": "Learning Journey Learning Journey Publishing", "key": "/authors/OL10166535A", "source_records": ["bwb:9781092738224"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T06:27:52.980157"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T06:27:52.980157"}}
+/type/author /authors/OL10166803A 1 2022-01-28T06:41:01.841162 {"type": {"key": "/type/author"}, "name": "Ustaz Abu Aadil Imrann Soe Thane ZH Azami", "key": "/authors/OL10166803A", "source_records": ["bwb:9781645167785"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T06:41:01.841162"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T06:41:01.841162"}}
+/type/author /authors/OL10167229A 1 2022-01-28T07:06:26.771164 {"type": {"key": "/type/author"}, "name": "Igor Kiselev", "key": "/authors/OL10167229A", "source_records": ["bwb:9781643166605"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T07:06:26.771164"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T07:06:26.771164"}}
+/type/author /authors/OL1016724A 2 2008-08-20T20:02:28.158183 {"name": "Jo Nobuko Martin", "personal_name": "Jo Nobuko Martin", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T20:02:28.158183"}, "key": "/authors/OL1016724A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10167298A 1 2022-01-28T07:09:18.210089 {"type": {"key": "/type/author"}, "name": "Pamela Rae-Welsh", "key": "/authors/OL10167298A", "source_records": ["bwb:9781644674833"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T07:09:18.210089"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T07:09:18.210089"}}
+/type/author /authors/OL10167392A 1 2022-01-28T07:13:03.817185 {"type": {"key": "/type/author"}, "name": "Carrie Regan", "key": "/authors/OL10167392A", "source_records": ["bwb:9781645060048"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T07:13:03.817185"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T07:13:03.817185"}}
+/type/author /authors/OL10167535A 1 2022-01-28T07:19:11.924303 {"type": {"key": "/type/author"}, "name": "Carmen Horne", "key": "/authors/OL10167535A", "source_records": ["bwb:9781733262712"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T07:19:11.924303"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T07:19:11.924303"}}
+/type/author /authors/OL10167714A 1 2022-01-28T07:26:23.175938 {"type": {"key": "/type/author"}, "name": "Addison J. Chapple", "key": "/authors/OL10167714A", "source_records": ["bwb:9781646300945"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T07:26:23.175938"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T07:26:23.175938"}}
+/type/author /authors/OL10167872A 1 2022-01-28T07:30:20.519948 {"type": {"key": "/type/author"}, "name": "Ted Nicholas", "key": "/authors/OL10167872A", "source_records": ["bwb:9781649992369"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T07:30:20.519948"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T07:30:20.519948"}}
+/type/author /authors/OL10167904A 1 2022-01-28T07:31:42.777908 {"type": {"key": "/type/author"}, "name": "Jonathan Michael Smith", "key": "/authors/OL10167904A", "source_records": ["bwb:9781636251899"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T07:31:42.777908"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T07:31:42.777908"}}
+/type/author /authors/OL10167985A 1 2022-01-28T07:33:28.570251 {"type": {"key": "/type/author"}, "name": "The Ikouii Creative", "key": "/authors/OL10167985A", "source_records": ["bwb:9781648268786"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T07:33:28.570251"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T07:33:28.570251"}}
+/type/author /authors/OL10168219A 1 2022-01-28T07:40:12.970771 {"type": {"key": "/type/author"}, "name": "Steffen de Cassandro", "key": "/authors/OL10168219A", "source_records": ["bwb:9783749451302"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T07:40:12.970771"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T07:40:12.970771"}}
+/type/author /authors/OL10168635A 1 2022-01-28T07:57:06.835173 {"type": {"key": "/type/author"}, "name": "Greg T. Miraglia", "key": "/authors/OL10168635A", "source_records": ["bwb:9781649218933"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T07:57:06.835173"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T07:57:06.835173"}}
+/type/author /authors/OL10169092A 1 2022-01-28T08:12:02.431578 {"type": {"key": "/type/author"}, "name": "Matthew Coast", "key": "/authors/OL10169092A", "source_records": ["bwb:9781653457373"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T08:12:02.431578"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T08:12:02.431578"}}
+/type/author /authors/OL10169800A 1 2022-01-28T08:36:05.532216 {"type": {"key": "/type/author"}, "name": "Patrick Himwiita", "key": "/authors/OL10169800A", "source_records": ["bwb:9781648268137"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T08:36:05.532216"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T08:36:05.532216"}}
+/type/author /authors/OL10170087A 1 2022-01-28T08:45:14.901994 {"type": {"key": "/type/author"}, "name": "Adam Rish", "key": "/authors/OL10170087A", "source_records": ["bwb:9781640072312"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T08:45:14.901994"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T08:45:14.901994"}}
+/type/author /authors/OL10170158A 1 2022-01-28T08:46:43.169606 {"type": {"key": "/type/author"}, "name": "Shu Mo of Wonder Sky???", "key": "/authors/OL10170158A", "source_records": ["bwb:9781637324103"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T08:46:43.169606"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T08:46:43.169606"}}
+/type/author /authors/OL10170345A 1 2022-01-28T08:57:48.190992 {"type": {"key": "/type/author"}, "name": "Ezio L. Bono", "key": "/authors/OL10170345A", "source_records": ["bwb:9781631731174"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T08:57:48.190992"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T08:57:48.190992"}}
+/type/author /authors/OL10170346A 1 2022-01-28T08:57:48.190992 {"type": {"key": "/type/author"}, "name": "Isabel Vilanculos", "key": "/authors/OL10170346A", "source_records": ["bwb:9781631731174"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T08:57:48.190992"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T08:57:48.190992"}}
+/type/author /authors/OL1017047A 6 2020-09-30T15:40:06.946796 {"name": "Jusepe Marti\u0301nez", "personal_name": "Jusepe Marti\u0301nez", "death_date": "1682", "alternate_names": ["Jusepe Martinez", "Jusepe Mart\u00ednez"], "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2020-09-30T15:40:06.946796"}, "latest_revision": 6, "key": "/authors/OL1017047A", "birth_date": "1600", "revision": 6, "type": {"key": "/type/author"}, "remote_ids": {"viaf": "7436334", "wikidata": "Q3190233", "isni": "0000000066340594"}}
+/type/author /authors/OL10170968A 1 2022-01-28T09:28:17.079564 {"type": {"key": "/type/author"}, "name": "Aria Brooks", "key": "/authors/OL10170968A", "source_records": ["bwb:9781672096416"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T09:28:17.079564"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T09:28:17.079564"}}
+/type/author /authors/OL10171133A 1 2022-01-28T09:35:39.037356 {"type": {"key": "/type/author"}, "name": "Dominique Hunter", "key": "/authors/OL10171133A", "source_records": ["bwb:9781649218810"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T09:35:39.037356"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T09:35:39.037356"}}
+/type/author /authors/OL10171531A 1 2022-01-28T09:54:32.066984 {"type": {"key": "/type/author"}, "name": "Deitra Hickey", "key": "/authors/OL10171531A", "source_records": ["bwb:9781647860486"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T09:54:32.066984"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T09:54:32.066984"}}
+/type/author /authors/OL10171697A 1 2022-01-28T09:59:37.735452 {"type": {"key": "/type/author"}, "name": "Noreen Donnell", "key": "/authors/OL10171697A", "source_records": ["bwb:9781649994820"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T09:59:37.735452"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T09:59:37.735452"}}
+/type/author /authors/OL1017187A 2 2008-08-20T20:05:39.596932 {"name": "Mari\u0301a del Tura Bovet i Pla", "personal_name": "Mari\u0301a del Tura Bovet i Pla", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T20:05:39.596932"}, "key": "/authors/OL1017187A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10171975A 1 2022-01-28T10:11:20.129587 {"type": {"key": "/type/author"}, "name": "Neal Patel", "key": "/authors/OL10171975A", "source_records": ["bwb:9781646870165"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T10:11:20.129587"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T10:11:20.129587"}}
+/type/author /authors/OL10171990A 1 2022-01-28T10:11:56.770868 {"type": {"key": "/type/author"}, "name": "Reinhold Bennink", "key": "/authors/OL10171990A", "source_records": ["bwb:9781675446829"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T10:11:56.770868"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T10:11:56.770868"}}
+/type/author /authors/OL10172495A 1 2022-01-28T10:28:08.279656 {"type": {"key": "/type/author"}, "name": "Medicine7837 Publisher", "key": "/authors/OL10172495A", "source_records": ["bwb:9798618855662"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T10:28:08.279656"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T10:28:08.279656"}}
+/type/author /authors/OL10172776A 1 2022-01-28T10:34:01.481307 {"type": {"key": "/type/author"}, "name": "Julia Khmyrova", "key": "/authors/OL10172776A", "source_records": ["bwb:9781649451453"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T10:34:01.481307"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T10:34:01.481307"}}
+/type/author /authors/OL10172947A 1 2022-01-28T10:38:10.546866 {"type": {"key": "/type/author"}, "name": "Joshua Harden", "key": "/authors/OL10172947A", "source_records": ["bwb:9781638775881"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T10:38:10.546866"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T10:38:10.546866"}}
+/type/author /authors/OL10173132A 1 2022-01-28T10:43:34.074887 {"type": {"key": "/type/author"}, "name": "Ariana Moulton", "key": "/authors/OL10173132A", "source_records": ["bwb:9781637529515"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T10:43:34.074887"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T10:43:34.074887"}}
+/type/author /authors/OL10173610A 1 2022-01-28T10:57:19.727354 {"type": {"key": "/type/author"}, "name": "Andrew J. Bartzis", "key": "/authors/OL10173610A", "source_records": ["bwb:9781737290506"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T10:57:19.727354"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T10:57:19.727354"}}
+/type/author /authors/OL10173746A 1 2022-01-28T11:01:38.898293 {"type": {"key": "/type/author"}, "name": "O'Hara, Clarence E., II", "key": "/authors/OL10173746A", "source_records": ["bwb:9781638482628"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T11:01:38.898293"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T11:01:38.898293"}}
+/type/author /authors/OL10174706A 1 2022-01-28T11:34:48.651465 {"type": {"key": "/type/author"}, "name": "Lauren A.S. Monroe", "key": "/authors/OL10174706A", "source_records": ["bwb:9789004511521"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T11:34:48.651465"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T11:34:48.651465"}}
+/type/author /authors/OL10175080A 1 2022-01-28T11:49:12.238431 {"type": {"key": "/type/author"}, "name": "Tort and Insurance Practice Section Staff American Bar Association", "key": "/authors/OL10175080A", "source_records": ["bwb:9781639050567"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T11:49:12.238431"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T11:49:12.238431"}}
+/type/author /authors/OL10175119A 1 2022-01-28T11:50:47.839511 {"type": {"key": "/type/author"}, "name": "Anna Timmerman", "key": "/authors/OL10175119A", "source_records": ["bwb:9781522177517"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T11:50:47.839511"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T11:50:47.839511"}}
+/type/author /authors/OL10175806A 1 2022-01-28T12:15:06.336587 {"type": {"key": "/type/author"}, "name": "Barbra Guba", "key": "/authors/OL10175806A", "source_records": ["bwb:9798531201621"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T12:15:06.336587"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T12:15:06.336587"}}
+/type/author /authors/OL10176394A 1 2022-01-28T12:46:35.492352 {"type": {"key": "/type/author"}, "name": "Kathlin Collie", "key": "/authors/OL10176394A", "source_records": ["bwb:9798518953574"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T12:46:35.492352"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T12:46:35.492352"}}
+/type/author /authors/OL10176743A 1 2022-01-28T13:00:43.306592 {"type": {"key": "/type/author"}, "name": "Pat McVey", "key": "/authors/OL10176743A", "source_records": ["bwb:9798639579196"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T13:00:43.306592"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T13:00:43.306592"}}
+/type/author /authors/OL10176897A 1 2022-01-28T13:08:20.766700 {"type": {"key": "/type/author"}, "name": "Daniel y Paula Publicaciones", "key": "/authors/OL10176897A", "source_records": ["bwb:9798662716957"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T13:08:20.766700"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T13:08:20.766700"}}
+/type/author /authors/OL10177716A 1 2022-01-28T13:46:14.062850 {"type": {"key": "/type/author"}, "name": "Carlos Customized Funny Sayings", "key": "/authors/OL10177716A", "source_records": ["bwb:9798451469446"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T13:46:14.062850"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T13:46:14.062850"}}
+/type/author /authors/OL10177815A 2 2022-04-12T21:01:32.879480 {"type": {"key": "/type/author"}, "name": "Micha\u0142 Chodyra", "key": "/authors/OL10177815A", "source_records": ["bwb:9798694763097"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2022-01-28T13:51:45.067795"}, "last_modified": {"type": "/type/datetime", "value": "2022-04-12T21:01:32.879480"}}
+/type/author /authors/OL1017792A 2 2008-08-20T20:08:57.475322 {"name": "Claude E. Owen", "personal_name": "Claude E. Owen", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T20:08:57.475322"}, "key": "/authors/OL1017792A", "birth_date": "1922", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10178060A 1 2022-01-28T14:04:30.157209 {"type": {"key": "/type/author"}, "name": "Pierre john Elliote", "key": "/authors/OL10178060A", "source_records": ["bwb:9798500505965"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T14:04:30.157209"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T14:04:30.157209"}}
+/type/author /authors/OL10178244A 1 2022-01-28T14:12:54.626625 {"type": {"key": "/type/author"}, "name": "Raul lover press", "key": "/authors/OL10178244A", "source_records": ["bwb:9798454053833"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T14:12:54.626625"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T14:12:54.626625"}}
+/type/author /authors/OL10178704A 1 2022-01-28T14:36:19.405917 {"type": {"key": "/type/author"}, "name": "yatha designer", "key": "/authors/OL10178704A", "source_records": ["bwb:9798483127284"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T14:36:19.405917"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T14:36:19.405917"}}
+/type/author /authors/OL10178821A 1 2022-01-28T14:43:38.490454 {"type": {"key": "/type/author"}, "name": "One Color", "key": "/authors/OL10178821A", "source_records": ["bwb:9798767825646"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T14:43:38.490454"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T14:43:38.490454"}}
+/type/author /authors/OL10179172A 1 2022-01-28T15:01:21.171154 {"type": {"key": "/type/author"}, "name": "A. C. B. Pess", "key": "/authors/OL10179172A", "source_records": ["bwb:9798486941313"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T15:01:21.171154"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T15:01:21.171154"}}
+/type/author /authors/OL10179523A 1 2022-01-28T15:20:44.307609 {"type": {"key": "/type/author"}, "name": "Carson Garlinger", "key": "/authors/OL10179523A", "source_records": ["bwb:9798530607363"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T15:20:44.307609"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T15:20:44.307609"}}
+/type/author /authors/OL10179763A 1 2022-01-28T15:34:28.837018 {"type": {"key": "/type/author"}, "name": "Ariana Estrada", "key": "/authors/OL10179763A", "source_records": ["bwb:9798576338542"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T15:34:28.837018"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T15:34:28.837018"}}
+/type/author /authors/OL10181544A 1 2022-01-28T17:13:38.255364 {"type": {"key": "/type/author"}, "name": "Sasaki Yoshito", "key": "/authors/OL10181544A", "source_records": ["bwb:9798751647032"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T17:13:38.255364"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T17:13:38.255364"}}
+/type/author /authors/OL10182444A 1 2022-01-28T18:04:40.560127 {"type": {"key": "/type/author"}, "name": "dexter nourddine", "key": "/authors/OL10182444A", "source_records": ["bwb:9798482388518"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T18:04:40.560127"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T18:04:40.560127"}}
+/type/author /authors/OL10182598A 1 2022-01-28T18:12:35.597083 {"type": {"key": "/type/author"}, "name": "Jhon MAN", "key": "/authors/OL10182598A", "source_records": ["bwb:9798463057792"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T18:12:35.597083"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T18:12:35.597083"}}
+/type/author /authors/OL10182813A 1 2022-01-28T18:27:54.931681 {"type": {"key": "/type/author"}, "name": "Michael Hagmann", "key": "/authors/OL10182813A", "source_records": ["bwb:9781636392721"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T18:27:54.931681"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T18:27:54.931681"}}
+/type/author /authors/OL10182832A 1 2022-01-28T18:29:31.375209 {"type": {"key": "/type/author"}, "name": "Alice Fiuza", "key": "/authors/OL10182832A", "source_records": ["bwb:9780963984777"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T18:29:31.375209"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T18:29:31.375209"}}
+/type/author /authors/OL10182879A 1 2022-01-28T18:30:57.565054 {"type": {"key": "/type/author"}, "name": "Pranab Saha", "key": "/authors/OL10182879A", "source_records": ["bwb:9780768099461"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T18:30:57.565054"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T18:30:57.565054"}}
+/type/author /authors/OL10182992A 1 2022-01-28T18:34:23.846630 {"type": {"key": "/type/author"}, "name": "Melodee Barnes", "key": "/authors/OL10182992A", "source_records": ["bwb:9781952099977"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T18:34:23.846630"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T18:34:23.846630"}}
+/type/author /authors/OL10183164A 1 2022-01-28T18:40:35.155070 {"type": {"key": "/type/author"}, "name": "Ludmilla Hrynevych", "key": "/authors/OL10183164A", "source_records": ["bwb:9783838216652"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T18:40:35.155070"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T18:40:35.155070"}}
+/type/author /authors/OL10183528A 1 2022-01-28T18:54:36.837582 {"type": {"key": "/type/author"}, "name": "Jeyaprakash Natarajan; Che-Hua", "key": "/authors/OL10183528A", "source_records": ["bwb:9789815036312"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T18:54:36.837582"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T18:54:36.837582"}}
+/type/author /authors/OL10183607A 1 2022-01-28T18:57:58.216776 {"type": {"key": "/type/author"}, "name": "Judith Shenouda", "key": "/authors/OL10183607A", "source_records": ["bwb:9781732222359"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T18:57:58.216776"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T18:57:58.216776"}}
+/type/author /authors/OL10183702A 1 2022-01-28T19:03:02.350336 {"type": {"key": "/type/author"}, "name": "L. B. Childress", "key": "/authors/OL10183702A", "source_records": ["bwb:9781954252707"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T19:03:02.350336"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T19:03:02.350336"}}
+/type/author /authors/OL10183999A 1 2022-01-28T19:20:44.303335 {"type": {"key": "/type/author"}, "name": "Ozarks Romance Authors", "key": "/authors/OL10183999A", "source_records": ["bwb:9781951772888"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T19:20:44.303335"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T19:20:44.303335"}}
+/type/author /authors/OL10184009A 1 2022-01-28T19:21:05.454810 {"type": {"key": "/type/author"}, "name": "Randall Dills", "key": "/authors/OL10184009A", "source_records": ["bwb:9781952593383"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T19:21:05.454810"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T19:21:05.454810"}}
+/type/author /authors/OL10184035A 1 2022-01-28T19:23:17.904219 {"type": {"key": "/type/author"}, "name": "M. J. Conlon", "key": "/authors/OL10184035A", "source_records": ["bwb:9781950983087"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T19:23:17.904219"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T19:23:17.904219"}}
+/type/author /authors/OL10184231A 1 2022-01-28T19:30:36.131778 {"type": {"key": "/type/author"}, "name": "Grant R.L.", "key": "/authors/OL10184231A", "source_records": ["bwb:9789042947610"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T19:30:36.131778"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T19:30:36.131778"}}
+/type/author /authors/OL10184382A 1 2022-01-28T19:38:25.490057 {"type": {"key": "/type/author"}, "name": "Mary E. Matury Gibson", "key": "/authors/OL10184382A", "source_records": ["bwb:9781648957185"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T19:38:25.490057"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T19:38:25.490057"}}
+/type/author /authors/OL10184554A 1 2022-01-28T19:45:05.104670 {"type": {"key": "/type/author"}, "name": "Isaac Blum", "key": "/authors/OL10184554A", "source_records": ["bwb:9780593525821"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T19:45:05.104670"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T19:45:05.104670"}}
+/type/author /authors/OL1018499A 2 2008-08-20T20:13:08.718149 {"name": "Nikode\u0304mos Barouse\u0304s", "personal_name": "Nikode\u0304mos Barouse\u0304s", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T20:13:08.718149"}, "key": "/authors/OL1018499A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10185023A 1 2022-01-28T20:04:04.542376 {"type": {"key": "/type/author"}, "name": "wtfnotebook", "key": "/authors/OL10185023A", "source_records": ["bwb:9798775021924"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T20:04:04.542376"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T20:04:04.542376"}}
+/type/author /authors/OL10185906A 1 2022-01-28T20:41:02.128709 {"type": {"key": "/type/author"}, "name": "Rosalind Dandridge", "key": "/authors/OL10185906A", "source_records": ["bwb:9798623195692"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T20:41:02.128709"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T20:41:02.128709"}}
+/type/author /authors/OL1018597A 1 2008-04-01T03:28:50.625462 {"name": "Ogo\u0301lnopolska Konferencja Studenckich Ko\u0301\u0142 Naukowych Akademii Wychowania Fizycznego (22nd 1984 Poznan\u0301, Poland)", "last_modified": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "key": "/authors/OL1018597A", "type": {"key": "/type/author"}, "revision": 1}
+/type/author /authors/OL1018610A 2 2008-08-20T20:13:46.153108 {"name": "Massimiliano Boni", "personal_name": "Massimiliano Boni", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T20:13:46.153108"}, "key": "/authors/OL1018610A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10186448A 1 2022-01-28T21:08:46.526270 {"type": {"key": "/type/author"}, "name": "Vittoria Nelson", "key": "/authors/OL10186448A", "source_records": ["bwb:9798759142232"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T21:08:46.526270"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T21:08:46.526270"}}
+/type/author /authors/OL10186721A 1 2022-01-28T21:23:53.588210 {"type": {"key": "/type/author"}, "name": "Booksistic Scribbler", "key": "/authors/OL10186721A", "source_records": ["bwb:9798773772705"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T21:23:53.588210"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T21:23:53.588210"}}
+/type/author /authors/OL10186733A 1 2022-01-28T21:24:31.058320 {"type": {"key": "/type/author"}, "name": "Ankit Pushpad", "key": "/authors/OL10186733A", "source_records": ["bwb:9798481631066"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T21:24:31.058320"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T21:24:31.058320"}}
+/type/author /authors/OL1018678A 2 2008-08-20T20:14:05.531324 {"name": "Glenny Holdhof", "personal_name": "Glenny Holdhof", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T20:14:05.531324"}, "key": "/authors/OL1018678A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL1018688A 2 2008-08-20T20:14:14.180609 {"name": "Hugues Trousset", "personal_name": "Hugues Trousset", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T20:14:14.180609"}, "key": "/authors/OL1018688A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10187013A 1 2022-01-28T21:40:31.421773 {"type": {"key": "/type/author"}, "name": "Flexy Dyac", "key": "/authors/OL10187013A", "source_records": ["bwb:9798761624702"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T21:40:31.421773"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T21:40:31.421773"}}
+/type/author /authors/OL10187272A 1 2022-01-28T21:53:34.231438 {"type": {"key": "/type/author"}, "name": "Meditations Editions", "key": "/authors/OL10187272A", "source_records": ["bwb:9798689916392"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T21:53:34.231438"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T21:53:34.231438"}}
+/type/author /authors/OL10187374A 1 2022-01-28T22:00:52.967513 {"type": {"key": "/type/author"}, "name": "Katrix 2point0", "key": "/authors/OL10187374A", "source_records": ["bwb:9798540904186"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T22:00:52.967513"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T22:00:52.967513"}}
+/type/author /authors/OL10187679A 1 2022-01-28T22:19:56.780642 {"type": {"key": "/type/author"}, "name": "Rise Above Press", "key": "/authors/OL10187679A", "source_records": ["bwb:9798758667590"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T22:19:56.780642"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T22:19:56.780642"}}
+/type/author /authors/OL1018788A 2 2008-08-20T20:14:43.512764 {"name": "O. G. Ward", "personal_name": "O. G. Ward", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T20:14:43.512764"}, "key": "/authors/OL1018788A", "birth_date": "1921", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10189075A 1 2022-01-28T23:44:20.264317 {"type": {"key": "/type/author"}, "name": "Creative Side Creative Side LLC", "key": "/authors/OL10189075A", "source_records": ["bwb:9798778668898"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-28T23:44:20.264317"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-28T23:44:20.264317"}}
+/type/author /authors/OL10189239A 2 2022-04-12T20:59:21.061978 {"type": {"key": "/type/author"}, "name": "BOOKS\u685c\u9234\u5802", "key": "/authors/OL10189239A", "source_records": ["bwb:9798755880183"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2022-01-28T23:52:23.318887"}, "last_modified": {"type": "/type/datetime", "value": "2022-04-12T20:59:21.061978"}}
+/type/author /authors/OL10189600A 1 2022-01-29T00:22:31.297665 {"type": {"key": "/type/author"}, "name": "Edmund Edmund Shaw", "key": "/authors/OL10189600A", "source_records": ["bwb:9798769438332"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T00:22:31.297665"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T00:22:31.297665"}}
+/type/author /authors/OL10189774A 1 2022-01-29T00:33:28.281264 {"type": {"key": "/type/author"}, "name": "Lena Agarwe", "key": "/authors/OL10189774A", "source_records": ["bwb:9798496280662"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T00:33:28.281264"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T00:33:28.281264"}}
+/type/author /authors/OL10190066A 1 2022-01-29T00:51:06.299566 {"type": {"key": "/type/author"}, "name": "Bernhard Klampfl", "key": "/authors/OL10190066A", "source_records": ["bwb:9798532023802"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T00:51:06.299566"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T00:51:06.299566"}}
+/type/author /authors/OL10190481A 1 2022-01-29T01:16:47.341982 {"type": {"key": "/type/author"}, "name": "Rebekah Crochett", "key": "/authors/OL10190481A", "source_records": ["bwb:9798779642958"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T01:16:47.341982"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T01:16:47.341982"}}
+/type/author /authors/OL10190859A 1 2022-01-29T01:42:22.853590 {"type": {"key": "/type/author"}, "name": "Bryan TYLER", "key": "/authors/OL10190859A", "source_records": ["bwb:9798595289429"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T01:42:22.853590"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T01:42:22.853590"}}
+/type/author /authors/OL10190922A 1 2022-01-29T01:46:31.242535 {"type": {"key": "/type/author"}, "name": "Yi Kan", "key": "/authors/OL10190922A", "source_records": ["bwb:9798775009595"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T01:46:31.242535"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T01:46:31.242535"}}
+/type/author /authors/OL10191242A 1 2022-01-29T02:07:34.953001 {"type": {"key": "/type/author"}, "name": "Hilary Abner Herbert", "key": "/authors/OL10191242A", "source_records": ["bwb:9798589597943"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T02:07:34.953001"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T02:07:34.953001"}}
+/type/author /authors/OL1019141A 2 2008-08-20T20:17:07.990811 {"name": "A. M. Omarov", "personal_name": "A. M. Omarov", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T20:17:07.990811"}, "key": "/authors/OL1019141A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10191610A 1 2022-01-29T02:32:02.867802 {"type": {"key": "/type/author"}, "name": "Rich Krisciunas", "key": "/authors/OL10191610A", "source_records": ["bwb:9798773757580"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T02:32:02.867802"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T02:32:02.867802"}}
+/type/author /authors/OL10191790A 1 2022-01-29T02:41:24.336415 {"type": {"key": "/type/author"}, "name": "The Reverend Mike Sowards", "key": "/authors/OL10191790A", "source_records": ["bwb:9798985053791"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T02:41:24.336415"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T02:41:24.336415"}}
+/type/author /authors/OL10192230A 1 2022-01-29T02:54:56.753611 {"type": {"key": "/type/author"}, "name": "Adrien Taylor", "key": "/authors/OL10192230A", "source_records": ["bwb:9781680839289"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T02:54:56.753611"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T02:54:56.753611"}}
+/type/author /authors/OL10192255A 1 2022-01-29T02:55:25.273717 {"type": {"key": "/type/author"}, "name": "The Autumn Poets", "key": "/authors/OL10192255A", "source_records": ["bwb:9781006135347"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T02:55:25.273717"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T02:55:25.273717"}}
+/type/author /authors/OL10192386A 1 2022-01-29T03:00:00.363097 {"type": {"key": "/type/author"}, "name": "Kiara Johns", "key": "/authors/OL10192386A", "source_records": ["bwb:9781734194838"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T03:00:00.363097"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T03:00:00.363097"}}
+/type/author /authors/OL10192652A 1 2022-01-29T03:10:26.661066 {"type": {"key": "/type/author"}, "name": "Ciar\u00e1n Mc Goldrick", "key": "/authors/OL10192652A", "source_records": ["bwb:9781644901724"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T03:10:26.661066"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T03:10:26.661066"}}
+/type/author /authors/OL10192786A 1 2022-01-29T03:14:49.092578 {"type": {"key": "/type/author"}, "name": "LilyAnne Crockett", "key": "/authors/OL10192786A", "source_records": ["bwb:9798985497304"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T03:14:49.092578"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T03:14:49.092578"}}
+/type/author /authors/OL10192963A 1 2022-01-29T03:24:53.378586 {"type": {"key": "/type/author"}, "name": "Quilean Croi", "key": "/authors/OL10192963A", "source_records": ["bwb:9781630406462"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T03:24:53.378586"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T03:24:53.378586"}}
+/type/author /authors/OL10193057A 1 2022-01-29T03:27:46.805236 {"type": {"key": "/type/author"}, "name": "Juliana Lopez Collado", "key": "/authors/OL10193057A", "source_records": ["bwb:9781736853344"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T03:27:46.805236"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T03:27:46.805236"}}
+/type/author /authors/OL1019305A 3 2017-11-26T03:01:34.281769 {"name": "V. N. Shali\u0361agin", "personal_name": "V. N. Shali\u0361agin", "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2017-11-26T03:01:34.281769"}, "latest_revision": 3, "key": "/authors/OL1019305A", "type": {"key": "/type/author"}, "revision": 3}
+/type/author /authors/OL10193297A 1 2022-01-29T03:35:36.215793 {"type": {"key": "/type/author"}, "name": "Fanele", "key": "/authors/OL10193297A", "source_records": ["bwb:9781642264036"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T03:35:36.215793"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T03:35:36.215793"}}
+/type/author /authors/OL10193388A 1 2022-01-29T03:37:53.991085 {"type": {"key": "/type/author"}, "name": "Keisha McGill-Howard", "key": "/authors/OL10193388A", "source_records": ["bwb:9798985468403"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T03:37:53.991085"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T03:37:53.991085"}}
+/type/author /authors/OL10193476A 1 2022-01-29T03:39:53.202128 {"type": {"key": "/type/author"}, "name": "Sunflower Inc", "key": "/authors/OL10193476A", "source_records": ["bwb:9798535997629"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T03:39:53.202128"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T03:39:53.202128"}}
+/type/author /authors/OL10193634A 1 2022-01-29T03:45:36.406350 {"type": {"key": "/type/author"}, "name": "kfjkll nae ashato aurako", "key": "/authors/OL10193634A", "source_records": ["bwb:9798783123023"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T03:45:36.406350"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T03:45:36.406350"}}
+/type/author /authors/OL10193669A 1 2022-01-29T03:46:53.749513 {"type": {"key": "/type/author"}, "name": "Dear Victoria", "key": "/authors/OL10193669A", "source_records": ["bwb:9798738410567"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T03:46:53.749513"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T03:46:53.749513"}}
+/type/author /authors/OL10193759A 1 2022-01-29T03:49:48.668980 {"type": {"key": "/type/author"}, "name": "letter tracing and practicing", "key": "/authors/OL10193759A", "source_records": ["bwb:9798783588853"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T03:49:48.668980"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T03:49:48.668980"}}
+/type/author /authors/OL10193846A 1 2022-01-29T03:54:19.304056 {"type": {"key": "/type/author"}, "name": "Abdeu Amjad", "key": "/authors/OL10193846A", "source_records": ["bwb:9798470295347"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T03:54:19.304056"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T03:54:19.304056"}}
+/type/author /authors/OL10193936A 1 2022-01-29T03:58:33.311012 {"type": {"key": "/type/author"}, "name": "OLena Art", "key": "/authors/OL10193936A", "source_records": ["bwb:9798762311977"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T03:58:33.311012"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T03:58:33.311012"}}
+/type/author /authors/OL10194065A 1 2022-01-29T04:05:01.332582 {"type": {"key": "/type/author"}, "name": "Kirsten Roberts", "key": "/authors/OL10194065A", "source_records": ["bwb:9798518738560"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T04:05:01.332582"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T04:05:01.332582"}}
+/type/author /authors/OL10194399A 1 2022-01-29T04:22:08.545813 {"type": {"key": "/type/author"}, "name": "Avocado Lover", "key": "/authors/OL10194399A", "source_records": ["bwb:9798768523961"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T04:22:08.545813"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T04:22:08.545813"}}
+/type/author /authors/OL10194933A 1 2022-01-29T04:55:42.713507 {"type": {"key": "/type/author"}, "name": "James Mary", "key": "/authors/OL10194933A", "source_records": ["bwb:9798778496163"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T04:55:42.713507"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T04:55:42.713507"}}
+/type/author /authors/OL10195332A 1 2022-01-29T05:20:25.414552 {"type": {"key": "/type/author"}, "name": "Sarem Art", "key": "/authors/OL10195332A", "source_records": ["bwb:9798730725737"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T05:20:25.414552"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T05:20:25.414552"}}
+/type/author /authors/OL10195358A 1 2022-01-29T05:21:37.406579 {"type": {"key": "/type/author"}, "name": "Roguet Notebook", "key": "/authors/OL10195358A", "source_records": ["bwb:9781677768646"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T05:21:37.406579"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T05:21:37.406579"}}
+/type/author /authors/OL10195746A 1 2022-01-29T05:46:07.154938 {"type": {"key": "/type/author"}, "name": "ricky blue", "key": "/authors/OL10195746A", "source_records": ["bwb:9798481012001"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T05:46:07.154938"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T05:46:07.154938"}}
+/type/author /authors/OL10195975A 1 2022-01-29T06:04:25.613240 {"type": {"key": "/type/author"}, "name": "Maryie Youngon", "key": "/authors/OL10195975A", "source_records": ["bwb:9798775679361"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T06:04:25.613240"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T06:04:25.613240"}}
+/type/author /authors/OL10196083A 1 2022-01-29T06:12:22.877770 {"type": {"key": "/type/author"}, "name": "C\u00e1ndida Benavidez", "key": "/authors/OL10196083A", "source_records": ["bwb:9798784564467"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T06:12:22.877770"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T06:12:22.877770"}}
+/type/author /authors/OL1019619A 2 2008-08-20T20:19:56.604331 {"name": "Milorad Josipovic\u0301", "personal_name": "Milorad Josipovic\u0301", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T20:19:56.604331"}, "key": "/authors/OL1019619A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10196264A 1 2022-01-29T06:26:08.692389 {"type": {"key": "/type/author"}, "name": "Autumn Publisher", "key": "/authors/OL10196264A", "source_records": ["bwb:9798769479397"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T06:26:08.692389"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T06:26:08.692389"}}
+/type/author /authors/OL10196351A 1 2022-01-29T06:33:26.898575 {"type": {"key": "/type/author"}, "name": "Ellie-Louise Hirst", "key": "/authors/OL10196351A", "source_records": ["bwb:9798711110446"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T06:33:26.898575"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T06:33:26.898575"}}
+/type/author /authors/OL10196651A 1 2022-01-29T06:54:53.505908 {"type": {"key": "/type/author"}, "name": "Realworld Notebooks", "key": "/authors/OL10196651A", "source_records": ["bwb:9798668561513"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T06:54:53.505908"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T06:54:53.505908"}}
+/type/author /authors/OL10196824A 1 2022-01-29T07:08:44.041822 {"type": {"key": "/type/author"}, "name": "B. R. 7. Twenty1", "key": "/authors/OL10196824A", "source_records": ["bwb:9798454064327"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T07:08:44.041822"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T07:08:44.041822"}}
+/type/author /authors/OL10197455A 1 2022-01-29T08:05:20.055983 {"type": {"key": "/type/author"}, "name": "Amelia Confident Brave Journals NoteBooks", "key": "/authors/OL10197455A", "source_records": ["bwb:9798642338322"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T08:05:20.055983"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T08:05:20.055983"}}
+/type/author /authors/OL10197646A 1 2022-01-29T08:18:49.792652 {"type": {"key": "/type/author"}, "name": "NarMar score sheets", "key": "/authors/OL10197646A", "source_records": ["bwb:9798502176118"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T08:18:49.792652"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T08:18:49.792652"}}
+/type/author /authors/OL10197817A 1 2022-01-29T08:31:48.291006 {"type": {"key": "/type/author"}, "name": "D Getov", "key": "/authors/OL10197817A", "source_records": ["amazon:9042943475"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T08:31:48.291006"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T08:31:48.291006"}}
+/type/author /authors/OL1019782A 2 2008-08-20T20:20:38.624953 {"name": "Robbins Elliott", "personal_name": "Robbins Elliott", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T20:20:38.624953"}, "key": "/authors/OL1019782A", "birth_date": "1920", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10197944A 1 2022-01-29T08:35:56.129666 {"type": {"key": "/type/author"}, "name": "Voice Write", "key": "/authors/OL10197944A", "source_records": ["bwb:9798766377153"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T08:35:56.129666"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T08:35:56.129666"}}
+/type/author /authors/OL10198155A 1 2022-01-29T08:52:39.819202 {"type": {"key": "/type/author"}, "name": "Jessica Meloni", "key": "/authors/OL10198155A", "source_records": ["bwb:9798741023303"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T08:52:39.819202"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T08:52:39.819202"}}
+/type/author /authors/OL10198302A 1 2022-01-29T09:04:07.388670 {"type": {"key": "/type/author"}, "name": "Paul Vinder", "key": "/authors/OL10198302A", "source_records": ["bwb:9798709584822"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T09:04:07.388670"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T09:04:07.388670"}}
+/type/author /authors/OL10198321A 1 2022-01-29T09:05:51.060597 {"type": {"key": "/type/author"}, "name": "Charlesie Payneon", "key": "/authors/OL10198321A", "source_records": ["bwb:9798777569165"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T09:05:51.060597"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T09:05:51.060597"}}
+/type/author /authors/OL10198707A 1 2022-01-29T09:39:50.887646 {"type": {"key": "/type/author"}, "name": "Lyn Kirk", "key": "/authors/OL10198707A", "source_records": ["bwb:9798772818190"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T09:39:50.887646"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T09:39:50.887646"}}
+/type/author /authors/OL10199354A 1 2022-01-29T10:30:53.714073 {"type": {"key": "/type/author"}, "name": "Lev Nikolayevich Tolstoyq", "key": "/authors/OL10199354A", "source_records": ["bwb:9798452842491"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T10:30:53.714073"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T10:30:53.714073"}}
+/type/author /authors/OL10200019A 1 2022-01-29T10:55:01.997575 {"type": {"key": "/type/author"}, "name": "Charlene Marie", "key": "/authors/OL10200019A", "source_records": ["bwb:9781734936087"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T10:55:01.997575"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T10:55:01.997575"}}
+/type/author /authors/OL10200039A 1 2022-01-29T10:55:38.352856 {"type": {"key": "/type/author"}, "name": "Kendall Collins", "key": "/authors/OL10200039A", "source_records": ["bwb:9781735649146"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T10:55:38.352856"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T10:55:38.352856"}}
+/type/author /authors/OL10200198A 1 2022-01-29T11:03:14.935831 {"type": {"key": "/type/author"}, "name": "Marcia E. Formica", "key": "/authors/OL10200198A", "source_records": ["bwb:9781737801900"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T11:03:14.935831"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T11:03:14.935831"}}
+/type/author /authors/OL1020022A 2 2008-08-20T20:21:59.820267 {"name": "Xavier Roy", "personal_name": "Xavier Roy", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T20:21:59.820267"}, "key": "/authors/OL1020022A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10200310A 1 2022-01-29T11:06:45.236382 {"type": {"key": "/type/author"}, "name": "Brian A. Bliss", "key": "/authors/OL10200310A", "source_records": ["bwb:9781957404127"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T11:06:45.236382"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T11:06:45.236382"}}
+/type/author /authors/OL10200457A 1 2022-01-29T11:11:02.420074 {"type": {"key": "/type/author"}, "name": "Nichole Laub", "key": "/authors/OL10200457A", "source_records": ["bwb:9781637641446"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T11:11:02.420074"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T11:11:02.420074"}}
+/type/author /authors/OL10201325A 1 2022-01-29T11:36:19.741814 {"type": {"key": "/type/author"}, "name": "Ay Mi", "key": "/authors/OL10201325A", "source_records": ["bwb:9798788851785"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T11:36:19.741814"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T11:36:19.741814"}}
+/type/author /authors/OL10201401A 2 2022-04-12T20:55:35.554142 {"type": {"key": "/type/author"}, "name": "\u0418\u0433\u043e\u0440\u044c \u0415\u0433\u043e\u0440\u043a\u0438\u043d", "key": "/authors/OL10201401A", "source_records": ["bwb:9798779413732"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2022-01-29T11:38:25.723044"}, "last_modified": {"type": "/type/datetime", "value": "2022-04-12T20:55:35.554142"}}
+/type/author /authors/OL10201484A 1 2022-01-29T11:40:54.555521 {"type": {"key": "/type/author"}, "name": "Jumoke Okuwobi", "key": "/authors/OL10201484A", "source_records": ["bwb:9798502692274"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T11:40:54.555521"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T11:40:54.555521"}}
+/type/author /authors/OL10201605A 1 2022-01-29T11:45:20.445428 {"type": {"key": "/type/author"}, "name": "Natasha Jerimiah", "key": "/authors/OL10201605A", "source_records": ["bwb:9798755304207"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T11:45:20.445428"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T11:45:20.445428"}}
+/type/author /authors/OL10201609A 1 2022-01-29T11:45:28.118787 {"type": {"key": "/type/author"}, "name": "Relax Relax Co", "key": "/authors/OL10201609A", "source_records": ["bwb:9798669095598"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T11:45:28.118787"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T11:45:28.118787"}}
+/type/author /authors/OL10201669A 1 2022-01-29T11:47:28.351677 {"type": {"key": "/type/author"}, "name": "Jones Anderson", "key": "/authors/OL10201669A", "source_records": ["bwb:9798782282646"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T11:47:28.351677"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T11:47:28.351677"}}
+/type/author /authors/OL10201816A 1 2022-01-29T11:52:25.503899 {"type": {"key": "/type/author"}, "name": "Isabella SWIFT", "key": "/authors/OL10201816A", "source_records": ["bwb:9798774819140"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T11:52:25.503899"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T11:52:25.503899"}}
+/type/author /authors/OL10201824A 1 2022-01-29T11:52:46.501450 {"type": {"key": "/type/author"}, "name": "Bradley Stone", "key": "/authors/OL10201824A", "source_records": ["bwb:9798776316159"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T11:52:46.501450"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T11:52:46.501450"}}
+/type/author /authors/OL10201982A 1 2022-01-29T11:58:27.116756 {"type": {"key": "/type/author"}, "name": "Krishnamachar Perangur", "key": "/authors/OL10201982A", "source_records": ["bwb:9798787884678"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T11:58:27.116756"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T11:58:27.116756"}}
+/type/author /authors/OL10201996A 1 2022-01-29T11:58:50.593403 {"type": {"key": "/type/author"}, "name": "United States Government FEMA", "key": "/authors/OL10201996A", "source_records": ["bwb:9798460350070"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T11:58:50.593403"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T11:58:50.593403"}}
+/type/author /authors/OL10202038A 1 2022-01-29T12:00:25.391175 {"type": {"key": "/type/author"}, "name": "Gamar Samlika", "key": "/authors/OL10202038A", "source_records": ["bwb:9798475623299"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T12:00:25.391175"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T12:00:25.391175"}}
+/type/author /authors/OL10202283A 1 2022-01-29T12:09:56.114618 {"type": {"key": "/type/author"}, "name": "Golf player", "key": "/authors/OL10202283A", "source_records": ["bwb:9798497586206"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T12:09:56.114618"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T12:09:56.114618"}}
+/type/author /authors/OL10202740A 1 2022-01-29T12:34:09.573478 {"type": {"key": "/type/author"}, "name": "Israr Wolfe", "key": "/authors/OL10202740A", "source_records": ["bwb:9798486384691"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T12:34:09.573478"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T12:34:09.573478"}}
+/type/author /authors/OL10202915A 1 2022-01-29T12:41:01.985075 {"type": {"key": "/type/author"}, "name": "Ashik's Birthday House", "key": "/authors/OL10202915A", "source_records": ["bwb:9798636913511"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T12:41:01.985075"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T12:41:01.985075"}}
+/type/author /authors/OL10203362A 1 2022-01-29T13:00:50.798301 {"type": {"key": "/type/author"}, "name": "John CHAPMAN", "key": "/authors/OL10203362A", "source_records": ["bwb:9798502763240"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T13:00:50.798301"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T13:00:50.798301"}}
+/type/author /authors/OL10203508A 1 2022-01-29T13:07:24.319246 {"type": {"key": "/type/author"}, "name": "Carol Middleton", "key": "/authors/OL10203508A", "source_records": ["bwb:9798637190133"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T13:07:24.319246"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T13:07:24.319246"}}
+/type/author /authors/OL10203796A 1 2022-01-29T13:20:52.353531 {"type": {"key": "/type/author"}, "name": "Mercy Richard", "key": "/authors/OL10203796A", "source_records": ["bwb:9798491027347"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T13:20:52.353531"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T13:20:52.353531"}}
+/type/author /authors/OL102038A 2 2008-09-09T03:41:51.078291 {"name": "Sami\u0304ra Ta\u0304n\u0310ti\u0304", "personal_name": "Sami\u0304ra Ta\u0304n\u0310ti\u0304", "last_modified": {"type": "/type/datetime", "value": "2008-09-09T03:41:51.078291"}, "key": "/authors/OL102038A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL102039A 2 2008-09-09T03:41:51.078291 {"name": "Jogendra Prasad Singh", "personal_name": "Jogendra Prasad Singh", "last_modified": {"type": "/type/datetime", "value": "2008-09-09T03:41:51.078291"}, "key": "/authors/OL102039A", "birth_date": "1943", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10204192A 1 2022-01-29T13:41:14.859910 {"type": {"key": "/type/author"}, "name": "Glorious Unabomber Publishing", "key": "/authors/OL10204192A", "source_records": ["bwb:9798777953131"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T13:41:14.859910"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T13:41:14.859910"}}
+/type/author /authors/OL10204219A 1 2022-01-29T13:42:07.516361 {"type": {"key": "/type/author"}, "name": "Nana Tinkler", "key": "/authors/OL10204219A", "source_records": ["bwb:9798546991784"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T13:42:07.516361"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T13:42:07.516361"}}
+/type/author /authors/OL1020462A 1 2008-04-01T03:28:50.625462 {"name": "INS Winter Seminar on Structure and Forces in Elementary Particle Physics (1985 Institute for Nuclear Study, University of Tokyo)", "last_modified": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "key": "/authors/OL1020462A", "type": {"key": "/type/author"}, "revision": 1}
+/type/author /authors/OL10204716A 1 2022-01-29T14:06:12.211340 {"type": {"key": "/type/author"}, "name": "Gaelle Joseph", "key": "/authors/OL10204716A", "source_records": ["bwb:9781669805052"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T14:06:12.211340"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T14:06:12.211340"}}
+/type/author /authors/OL10205025A 1 2022-01-29T14:20:58.139565 {"type": {"key": "/type/author"}, "name": "Baseball best dads raises baseball players", "key": "/authors/OL10205025A", "source_records": ["bwb:9798491914081"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T14:20:58.139565"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T14:20:58.139565"}}
+/type/author /authors/OL10205427A 1 2022-01-29T14:43:56.326866 {"type": {"key": "/type/author"}, "name": "Santa Botticelli", "key": "/authors/OL10205427A", "source_records": ["bwb:9798786159845"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T14:43:56.326866"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T14:43:56.326866"}}
+/type/author /authors/OL10205456A 1 2022-01-29T14:45:45.722444 {"type": {"key": "/type/author"}, "name": "marlee berry", "key": "/authors/OL10205456A", "source_records": ["bwb:9798644115525"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T14:45:45.722444"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T14:45:45.722444"}}
+/type/author /authors/OL1020578A 2 2017-11-29T10:25:12.939370 {"name": "Ustinovshchikov, I\u0361U. I.", "personal_name": "Ustinovshchikov, I\u0361U. I.", "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2017-11-29T10:25:12.939370"}, "latest_revision": 2, "key": "/authors/OL1020578A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10206410A 1 2022-01-29T15:38:39.731795 {"type": {"key": "/type/author"}, "name": "Hee Lim", "key": "/authors/OL10206410A", "source_records": ["bwb:9798734831311"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T15:38:39.731795"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T15:38:39.731795"}}
+/type/author /authors/OL10206449A 1 2022-01-29T15:41:00.440881 {"type": {"key": "/type/author"}, "name": "Patrice Hardiman", "key": "/authors/OL10206449A", "source_records": ["bwb:9798773436201"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T15:41:00.440881"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T15:41:00.440881"}}
+/type/author /authors/OL10206919A 1 2022-01-29T16:04:33.817083 {"type": {"key": "/type/author"}, "name": "Victoria Willcoxon", "key": "/authors/OL10206919A", "source_records": ["bwb:9798787598995"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T16:04:33.817083"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T16:04:33.817083"}}
+/type/author /authors/OL10207426A 1 2022-01-29T16:33:56.719799 {"type": {"key": "/type/author"}, "name": "Thilo Kohl", "key": "/authors/OL10207426A", "source_records": ["bwb:9798791768285"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T16:33:56.719799"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T16:33:56.719799"}}
+/type/author /authors/OL10207430A 1 2022-01-29T16:34:04.930010 {"type": {"key": "/type/author"}, "name": "Connie McWhorter", "key": "/authors/OL10207430A", "source_records": ["bwb:9798539679248"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T16:34:04.930010"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T16:34:04.930010"}}
+/type/author /authors/OL10207473A 1 2022-01-29T16:37:04.511665 {"type": {"key": "/type/author"}, "name": "Mila Simmons", "key": "/authors/OL10207473A", "source_records": ["bwb:9798786128841"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T16:37:04.511665"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T16:37:04.511665"}}
+/type/author /authors/OL10207529A 1 2022-01-29T16:39:37.152922 {"type": {"key": "/type/author"}, "name": "Mccarthy Deandre", "key": "/authors/OL10207529A", "source_records": ["bwb:9798754025646"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T16:39:37.152922"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T16:39:37.152922"}}
+/type/author /authors/OL1020763A 3 2008-09-13T14:34:37.805028 {"name": "Friedrich Wilhelm Bosch", "personal_name": "Friedrich Wilhelm Bosch", "last_modified": {"type": "/type/datetime", "value": "2008-09-13T14:34:37.805028"}, "key": "/authors/OL1020763A", "birth_date": "1911", "type": {"key": "/type/author"}, "revision": 3}
+/type/author /authors/OL10207939A 1 2022-01-29T17:00:44.309855 {"type": {"key": "/type/author"}, "name": "Donald P. Forss", "key": "/authors/OL10207939A", "source_records": ["bwb:9781638718284"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T17:00:44.309855"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T17:00:44.309855"}}
+/type/author /authors/OL10208194A 1 2022-01-29T17:10:08.470251 {"type": {"key": "/type/author"}, "name": "Vox Stanley", "key": "/authors/OL10208194A", "source_records": ["bwb:9781956304206"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T17:10:08.470251"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T17:10:08.470251"}}
+/type/author /authors/OL10208232A 1 2022-01-29T17:10:52.098160 {"type": {"key": "/type/author"}, "name": "T\u00e9 Bassett", "key": "/authors/OL10208232A", "source_records": ["bwb:9798985546910"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T17:10:52.098160"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T17:10:52.098160"}}
+/type/author /authors/OL10208257A 1 2022-01-29T17:11:22.007250 {"type": {"key": "/type/author"}, "name": "AROARA", "key": "/authors/OL10208257A", "source_records": ["bwb:9781006074899"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T17:11:22.007250"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T17:11:22.007250"}}
+/type/author /authors/OL10208351A 1 2022-01-29T17:15:36.491532 {"type": {"key": "/type/author"}, "name": "Anushka Bansal", "key": "/authors/OL10208351A", "source_records": ["bwb:9781735335230"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T17:15:36.491532"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T17:15:36.491532"}}
+/type/author /authors/OL10208466A 1 2022-01-29T17:25:03.669752 {"type": {"key": "/type/author"}, "name": "D'Avanzo Wanda", "personal_name": "D'Avanzo Wanda", "birth_date": "1980", "key": "/authors/OL10208466A", "source_records": ["ia:partecipazionede0000dava"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T17:25:03.669752"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T17:25:03.669752"}}
+/type/author /authors/OL10208539A 1 2022-01-29T18:24:17.774624 {"type": {"key": "/type/author"}, "name": "National Cricket Association (Great Britain)", "key": "/authors/OL10208539A", "source_records": ["ia:cricketbowling0000unse"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T18:24:17.774624"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T18:24:17.774624"}}
+/type/author /authors/OL10208563A 1 2022-01-29T18:37:03.212453 {"type": {"key": "/type/author"}, "name": "ge Jiang", "personal_name": "ge Jiang", "key": "/authors/OL10208563A", "source_records": ["ia:zhongguoxinshiji0000unse"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T18:37:03.212453"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T18:37:03.212453"}}
+/type/author /authors/OL10208566A 1 2022-01-29T18:38:16.731105 {"type": {"key": "/type/author"}, "name": "Toru Takamizawa", "personal_name": "Toru Takamizawa", "key": "/authors/OL10208566A", "source_records": ["ia:conceptsofkarate0000taka"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T18:38:16.731105"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T18:38:16.731105"}}
+/type/author /authors/OL10208614A 1 2022-01-29T19:25:56.934693 {"type": {"key": "/type/author"}, "name": "Michael O'Mahony", "personal_name": "Michael O'Mahony", "key": "/authors/OL10208614A", "source_records": ["ia:myfairholmeroadd0000omah"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T19:25:56.934693"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T19:25:56.934693"}}
+/type/author /authors/OL10208642A 1 2022-01-29T19:51:55.185322 {"type": {"key": "/type/author"}, "name": "Dennis Brian Johnson", "personal_name": "Dennis Brian Johnson", "key": "/authors/OL10208642A", "source_records": ["ia:Johnson1972_0"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-29T19:51:55.185322"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-29T19:51:55.185322"}}
+/type/author /authors/OL10208957A 1 2022-01-30T00:00:56.803965 {"type": {"key": "/type/author"}, "name": "Jiao yu n\u00fc", "personal_name": "Jiao yu n\u00fc", "key": "/authors/OL10208957A", "source_records": ["ia:wodemuyuke5aji0000unse"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-30T00:00:56.803965"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-30T00:00:56.803965"}}
+/type/author /authors/OL10209336A 1 2022-01-30T11:10:02.301041 {"type": {"key": "/type/author"}, "name": "Jerome Bulos", "key": "/authors/OL10209336A", "source_records": ["amazon:1471783626"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-30T11:10:02.301041"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-30T11:10:02.301041"}}
+/type/author /authors/OL1020948A 2 2017-12-01T05:28:24.573360 {"name": "I\u0361Ur\u02b9eva di\u0361evit\u0361sa.", "title": "di\u0361evit\u0361sa.", "personal_name": "I\u0361Ur\u02b9eva", "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2017-12-01T05:28:24.573360"}, "latest_revision": 2, "key": "/authors/OL1020948A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL1020957A 2 2008-08-20T20:27:34.444188 {"name": "Ricardo Vergara", "personal_name": "Ricardo Vergara", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T20:27:34.444188"}, "key": "/authors/OL1020957A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10209658A 1 2022-01-31T21:21:25.185774 {"type": {"key": "/type/author"}, "name": "Victoria J Hunt", "key": "/authors/OL10209658A", "source_records": ["amazon:0992812348"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-31T21:21:25.185774"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-31T21:21:25.185774"}}
+/type/author /authors/OL10209705A 1 2022-01-31T22:20:13.711994 {"type": {"key": "/type/author"}, "name": "Latarsha Whitfield", "key": "/authors/OL10209705A", "source_records": ["amazon:1678190365"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-01-31T22:20:13.711994"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-31T22:20:13.711994"}}
+/type/author /authors/OL10209991A 1 2022-02-01T01:22:03.397273 {"name": "Daniel Reiter", "key": "/authors/OL10209991A", "type": {"key": "/type/author"}, "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-01T01:22:03.397273"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-01T01:22:03.397273"}}
+/type/author /authors/OL10210104A 1 2022-02-01T05:13:22.370616 {"name": "Jo Berger", "key": "/authors/OL10210104A", "type": {"key": "/type/author"}, "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-01T05:13:22.370616"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-01T05:13:22.370616"}}
+/type/author /authors/OL10210228A 1 2022-02-01T12:43:08.460658 {"type": {"key": "/type/author"}, "name": "Asuncion Esteban Blasco", "key": "/authors/OL10210228A", "source_records": ["amazon:1727889282"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-01T12:43:08.460658"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-01T12:43:08.460658"}}
+/type/author /authors/OL10210401A 1 2022-02-01T12:47:48.001333 {"type": {"key": "/type/author"}, "name": "Bertrand Carette", "key": "/authors/OL10210401A", "source_records": ["amazon:1782012214"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-01T12:47:48.001333"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-01T12:47:48.001333"}}
+/type/author /authors/OL10210450A 1 2022-02-01T12:49:48.500413 {"type": {"key": "/type/author"}, "name": "Ivonne Vivier", "key": "/authors/OL10210450A", "source_records": ["amazon:1796402885"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-01T12:49:48.500413"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-01T12:49:48.500413"}}
+/type/author /authors/OL10210612A 1 2022-02-01T12:53:58.407498 {"type": {"key": "/type/author"}, "name": "Crystal Odom", "key": "/authors/OL10210612A", "source_records": ["amazon:1798856654"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-01T12:53:58.407498"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-01T12:53:58.407498"}}
+/type/author /authors/OL10210633A 1 2022-02-01T12:54:16.282808 {"type": {"key": "/type/author"}, "name": "Manuel Ignacio Matos M\u00e9ndez", "key": "/authors/OL10210633A", "source_records": ["amazon:1799239772"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-01T12:54:16.282808"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-01T12:54:16.282808"}}
+/type/author /authors/OL10210691A 1 2022-02-01T12:56:10.998690 {"type": {"key": "/type/author"}, "name": "Frances Fowlkes", "key": "/authors/OL10210691A", "source_records": ["amazon:1799912833"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-01T12:56:10.998690"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-01T12:56:10.998690"}}
+/type/author /authors/OL10210766A 1 2022-02-01T13:00:03.253640 {"type": {"key": "/type/author"}, "name": "Dimitris Thanasoulas", "key": "/authors/OL10210766A", "source_records": ["amazon:1913773191"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-01T13:00:03.253640"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-01T13:00:03.253640"}}
+/type/author /authors/OL10211050A 1 2022-02-01T13:07:52.968470 {"type": {"key": "/type/author"}, "name": "Illyanna Maisonet", "key": "/authors/OL10211050A", "source_records": ["amazon:1984859765"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-01T13:07:52.968470"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-01T13:07:52.968470"}}
+/type/author /authors/OL10211500A 1 2022-02-02T08:43:11.835892 {"type": {"key": "/type/author"}, "name": "Hatem Tawfik", "key": "/authors/OL10211500A", "source_records": ["amazon:197514614X"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-02T08:43:11.835892"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-02T08:43:11.835892"}}
+/type/author /authors/OL1021165A 3 2017-11-30T22:12:41.091467 {"name": "Vlad I\u0361Urevich", "personal_name": "Vlad I\u0361Urevich", "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2017-11-30T22:12:41.091467"}, "latest_revision": 3, "key": "/authors/OL1021165A", "type": {"key": "/type/author"}, "revision": 3}
+/type/author /authors/OL10211928A 1 2022-02-03T09:03:26.102386 {"type": {"key": "/type/author"}, "name": "Lavanya Agarwal", "key": "/authors/OL10211928A", "source_records": ["amazon:9354727255"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-03T09:03:26.102386"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-03T09:03:26.102386"}}
+/type/author /authors/OL10212231A 1 2022-02-04T07:32:59.726518 {"type": {"key": "/type/author"}, "name": "Ross Pinder", "key": "/authors/OL10212231A", "source_records": ["amazon:1032026464"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-04T07:32:59.726518"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-04T07:32:59.726518"}}
+/type/author /authors/OL10212405A 1 2022-02-04T08:38:16.076605 {"type": {"key": "/type/author"}, "name": "CHICOURAS-F", "key": "/authors/OL10212405A", "source_records": ["amazon:2011302897"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-04T08:38:16.076605"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-04T08:38:16.076605"}}
+/type/author /authors/OL10212432A 1 2022-02-04T08:38:29.329110 {"type": {"key": "/type/author"}, "name": "VAYSSIERE-A", "key": "/authors/OL10212432A", "source_records": ["amazon:2011307988"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-04T08:38:29.329110"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-04T08:38:29.329110"}}
+/type/author /authors/OL10212704A 1 2022-02-04T08:44:46.327873 {"type": {"key": "/type/author"}, "name": "Margaret Jones-Davies", "key": "/authors/OL10212704A", "source_records": ["amazon:2406065529"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-04T08:44:46.327873"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-04T08:44:46.327873"}}
+/type/author /authors/OL10212889A 1 2022-02-04T08:46:46.178900 {"type": {"key": "/type/author"}, "name": "L Perrone", "key": "/authors/OL10212889A", "source_records": ["amazon:2503571581"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-04T08:46:46.178900"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-04T08:46:46.178900"}}
+/type/author /authors/OL10213534A 1 2022-02-04T08:58:27.822756 {"type": {"key": "/type/author"}, "name": "Ludwig Bergstr\u00e4sse", "key": "/authors/OL10213534A", "source_records": ["amazon:3111000834"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-04T08:58:27.822756"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-04T08:58:27.822756"}}
+/type/author /authors/OL10213677A 1 2022-02-04T09:10:55.613058 {"type": {"key": "/type/author"}, "name": "G Eisenreich", "key": "/authors/OL10213677A", "source_records": ["amazon:3112471237"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-04T09:10:55.613058"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-04T09:10:55.613058"}}
+/type/author /authors/OL10213744A 1 2022-02-04T09:16:28.803390 {"type": {"key": "/type/author"}, "name": "Carl Wilhelm VIX", "key": "/authors/OL10213744A", "source_records": ["amazon:3112516370"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-04T09:16:28.803390"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-04T09:16:28.803390"}}
+/type/author /authors/OL10213968A 1 2022-02-04T09:23:48.477953 {"type": {"key": "/type/author"}, "name": "Cristina Foroni Consani", "key": "/authors/OL10213968A", "source_records": ["amazon:3428184602"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-04T09:23:48.477953"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-04T09:23:48.477953"}}
+/type/author /authors/OL10214151A 1 2022-02-04T09:34:21.993394 {"type": {"key": "/type/author"}, "name": "D Jos\u00e9 Mar\u00eda Ruiz de Somavia Y Ramos", "key": "/authors/OL10214151A", "source_records": ["amazon:3752482826"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-04T09:34:21.993394"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-04T09:34:21.993394"}}
+/type/author /authors/OL10214334A 1 2022-02-04T09:39:06.974292 {"type": {"key": "/type/author"}, "name": "M V Oskin", "key": "/authors/OL10214334A", "source_records": ["amazon:5519565880"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-04T09:39:06.974292"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-04T09:39:06.974292"}}
+/type/author /authors/OL10214453A 1 2022-02-04T09:40:02.033939 {"type": {"key": "/type/author"}, "name": "J Aldridge", "key": "/authors/OL10214453A", "source_records": ["amazon:551960357X"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-04T09:40:02.033939"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-04T09:40:02.033939"}}
+/type/author /authors/OL10214625A 1 2022-02-04T09:44:43.391885 {"type": {"key": "/type/author"}, "name": "Daisy Madaan", "key": "/authors/OL10214625A", "source_records": ["amazon:9354461557"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-04T09:44:43.391885"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-04T09:44:43.391885"}}
+/type/author /authors/OL10214970A 1 2022-02-05T07:47:53.365653 {"type": {"key": "/type/author"}, "name": "Barney Sol Reese", "key": "/authors/OL10214970A", "source_records": ["amazon:1638719403"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-05T07:47:53.365653"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-05T07:47:53.365653"}}
+/type/author /authors/OL10215197A 1 2022-02-05T08:17:43.008753 {"type": {"key": "/type/author"}, "name": "Joyful Life Mastery", "key": "/authors/OL10215197A", "source_records": ["amazon:1990669034"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-05T08:17:43.008753"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-05T08:17:43.008753"}}
+/type/author /authors/OL10215370A 1 2022-02-05T08:27:23.385085 {"type": {"key": "/type/author"}, "name": "St'phane Lebecq", "key": "/authors/OL10215370A", "source_records": ["amazon:2757839292"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-05T08:27:23.385085"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-05T08:27:23.385085"}}
+/type/author /authors/OL10215465A 1 2022-02-05T08:36:39.993098 {"type": {"key": "/type/author"}, "name": "Anna-maria Getos Kalac", "key": "/authors/OL10215465A", "source_records": ["amazon:3428159934"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-05T08:36:39.993098"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-05T08:36:39.993098"}}
+/type/author /authors/OL10215508A 1 2022-02-05T08:40:52.831517 {"type": {"key": "/type/author"}, "name": "Sara Marquard", "key": "/authors/OL10215508A", "source_records": ["amazon:3847114255"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-05T08:40:52.831517"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-05T08:40:52.831517"}}
+/type/author /authors/OL10215910A 1 2022-02-06T12:12:11.659363 {"type": {"key": "/type/author"}, "name": "M Von Poseck", "key": "/authors/OL10215910A", "source_records": ["amazon:3752471298"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-06T12:12:11.659363"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-06T12:12:11.659363"}}
+/type/author /authors/OL10215916A 1 2022-02-06T12:13:03.232422 {"type": {"key": "/type/author"}, "name": "Tobias Schick", "key": "/authors/OL10215916A", "source_records": ["amazon:3755747847"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-06T12:13:03.232422"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-06T12:13:03.232422"}}
+/type/author /authors/OL10215923A 1 2022-02-06T12:16:38.791623 {"type": {"key": "/type/author"}, "name": "V Ja Shishkov", "key": "/authors/OL10215923A", "source_records": ["amazon:5519603596"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-06T12:16:38.791623"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-06T12:16:38.791623"}}
+/type/author /authors/OL10216114A 1 2022-02-07T10:27:37.464024 {"type": {"key": "/type/author"}, "name": "Juliette Hyman", "key": "/authors/OL10216114A", "source_records": ["amazon:2203097507"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-07T10:27:37.464024"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-07T10:27:37.464024"}}
+/type/author /authors/OL10216233A 1 2022-02-07T22:16:05.834494 {"type": {"key": "/type/author"}, "name": "Malyn Bromfield", "key": "/authors/OL10216233A", "source_records": ["amazon:1914498925"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-07T22:16:05.834494"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-07T22:16:05.834494"}}
+/type/author /authors/OL10216681A 1 2022-02-09T11:20:26.693334 {"name": "Paolo Babini", "key": "/authors/OL10216681A", "type": {"key": "/type/author"}, "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-09T11:20:26.693334"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-09T11:20:26.693334"}}
+/type/author /authors/OL10216778A 1 2022-02-10T05:35:28.343893 {"type": {"key": "/type/author"}, "name": "Kuppusv\u0101mi ayyar", "personal_name": "Kuppusv\u0101mi ayyar", "key": "/authors/OL10216778A", "source_records": ["ia:gc-sh1-0511"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-10T05:35:28.343893"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-10T05:35:28.343893"}}
+/type/author /authors/OL10217577A 1 2022-02-11T08:07:47.196691 {"type": {"key": "/type/author"}, "name": "Heather E Schwartz", "key": "/authors/OL10217577A", "source_records": ["amazon:1666345725"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-11T08:07:47.196691"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-11T08:07:47.196691"}}
+/type/author /authors/OL10218252A 1 2022-02-12T11:02:51.742994 {"type": {"key": "/type/author"}, "name": "Amant Josifi", "key": "/authors/OL10218252A", "source_records": ["amazon:2322410144"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-12T11:02:51.742994"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-12T11:02:51.742994"}}
+/type/author /authors/OL10218385A 1 2022-02-13T04:47:19.745676 {"type": {"key": "/type/author"}, "name": "Alberta. Dept. of Highways. Planning Branch", "key": "/authors/OL10218385A", "source_records": ["ia:ableg_33398001371755"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-13T04:47:19.745676"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-13T04:47:19.745676"}}
+/type/author /authors/OL10218421A 1 2022-02-13T05:22:11.364799 {"type": {"key": "/type/author"}, "name": "Bradley, Alice / Lambe, Loretto", "personal_name": "Bradley, Alice / Lambe, Loretto", "key": "/authors/OL10218421A", "source_records": ["ia:supportingcontin0000brad"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-13T05:22:11.364799"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-13T05:22:11.364799"}}
+/type/author /authors/OL10219051A 1 2022-02-14T19:05:38.170974 {"type": {"key": "/type/author"}, "name": "Anne Willsch", "key": "/authors/OL10219051A", "source_records": ["amazon:3755778327"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-14T19:05:38.170974"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-14T19:05:38.170974"}}
+/type/author /authors/OL10219107A 1 2022-02-14T22:12:57.318831 {"type": {"key": "/type/author"}, "name": "Keith Jefferson", "key": "/authors/OL10219107A", "source_records": ["amazon:1774853973"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-14T22:12:57.318831"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-14T22:12:57.318831"}}
+/type/author /authors/OL10219198A 1 2022-02-14T22:35:25.789244 {"type": {"key": "/type/author"}, "name": "Luis G\u00f3mez de Tapia", "key": "/authors/OL10219198A", "source_records": ["amazon:3752493755"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-14T22:35:25.789244"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-14T22:35:25.789244"}}
+/type/author /authors/OL1021924A 2 2008-08-20T20:33:19.007909 {"name": "Leslie Collins", "personal_name": "Leslie Collins", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T20:33:19.007909"}, "key": "/authors/OL1021924A", "birth_date": "1954", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10219579A 1 2022-02-16T04:38:21.758163 {"type": {"key": "/type/author"}, "name": "Alberta. Office of the Fire Commissioner", "key": "/authors/OL10219579A", "source_records": ["ia:ableg_33398001354066"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-16T04:38:21.758163"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-16T04:38:21.758163"}}
+/type/author /authors/OL10219728A 1 2022-02-16T06:07:42.252596 {"type": {"key": "/type/author"}, "name": "Y\u014fng-mi Mun", "personal_name": "Y\u014fng-mi Mun", "birth_date": "1966", "key": "/authors/OL10219728A", "source_records": ["ia:amudokunyouiiyag0000muny"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-16T06:07:42.252596"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-16T06:07:42.252596"}}
+/type/author /authors/OL10219804A 1 2022-02-16T07:29:35.156312 {"type": {"key": "/type/author"}, "name": "Shirley Bellamy", "key": "/authors/OL10219804A", "source_records": ["amazon:1034970151"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-16T07:29:35.156312"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-16T07:29:35.156312"}}
+/type/author /authors/OL1022018A 2 2008-08-20T20:33:46.280388 {"name": "Abdusalom Abduqodirov", "personal_name": "Abdusalom Abduqodirov", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T20:33:46.280388"}, "key": "/authors/OL1022018A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10220296A 1 2022-02-17T08:27:29.455648 {"type": {"key": "/type/author"}, "name": "Henry Holdsworth", "key": "/authors/OL10220296A", "source_records": ["amazon:1560378069"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-17T08:27:29.455648"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-17T08:27:29.455648"}}
+/type/author /authors/OL1022035A 2 2008-08-20T20:33:48.823184 {"name": "Marius Baranauskas", "personal_name": "Marius Baranauskas", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T20:33:48.823184"}, "key": "/authors/OL1022035A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10220867A 1 2022-02-19T05:17:57.660278 {"type": {"key": "/type/author"}, "name": "Ma li ni na", "personal_name": "Ma li ni na", "key": "/authors/OL10220867A", "source_records": ["ia:zaibierendechang0000unse"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-19T05:17:57.660278"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-19T05:17:57.660278"}}
+/type/author /authors/OL10220945A 1 2022-02-19T06:20:30.053826 {"type": {"key": "/type/author"}, "name": "Shlomo Sand", "personal_name": "Shlomo Sand", "birth_date": "1946", "key": "/authors/OL10220945A", "source_records": ["ia:dieerfindungdesj0000sand"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-19T06:20:30.053826"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-19T06:20:30.053826"}}
+/type/author /authors/OL10221077A 1 2022-02-19T07:47:07.410108 {"type": {"key": "/type/author"}, "name": "Martin G Cullup", "key": "/authors/OL10221077A", "source_records": ["amazon:1638855145"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-19T07:47:07.410108"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-19T07:47:07.410108"}}
+/type/author /authors/OL10221126A 1 2022-02-19T16:37:46.162283 {"type": {"key": "/type/author"}, "name": "ESTHER CROSS", "key": "/authors/OL10221126A", "source_records": ["amazon:9500435330"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-19T16:37:46.162283"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-19T16:37:46.162283"}}
+/type/author /authors/OL10221255A 1 2022-02-20T05:16:29.130268 {"type": {"key": "/type/author"}, "name": "X. J. Kennedy", "personal_name": "X. J. Kennedy", "birth_date": "(1929", "death_date": ").", "key": "/authors/OL10221255A", "source_records": ["ia:introductiontofi0000kenn_x3o6"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-20T05:16:29.130268"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-20T05:16:29.130268"}}
+/type/author /authors/OL10221269A 1 2022-02-20T05:29:06.241374 {"type": {"key": "/type/author"}, "name": "Liu ren zeng", "personal_name": "Liu ren zeng", "birth_date": "(1963", "death_date": ")", "key": "/authors/OL10221269A", "source_records": ["ia:meitianyigeyoumo0000unse"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-20T05:29:06.241374"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-20T05:29:06.241374"}}
+/type/author /authors/OL10221583A 1 2022-02-20T21:49:23.912549 {"type": {"key": "/type/author"}, "name": "Brian Boyington", "key": "/authors/OL10221583A", "source_records": ["amazon:1686432003"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-20T21:49:23.912549"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-20T21:49:23.912549"}}
+/type/author /authors/OL10221669A 1 2022-02-21T07:58:24.395162 {"type": {"key": "/type/author"}, "name": "Melissa Matias", "key": "/authors/OL10221669A", "source_records": ["amazon:1678020869"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-21T07:58:24.395162"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-21T07:58:24.395162"}}
+/type/author /authors/OL1022169A 2 2008-08-20T20:34:25.708044 {"name": "Lars Ingelstam", "personal_name": "Lars Ingelstam", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T20:34:25.708044"}, "key": "/authors/OL1022169A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10221756A 1 2022-02-21T08:32:50.864665 {"name": "Luisa L\u00f3pez Guti\u00e9rrez", "key": "/authors/OL10221756A", "type": {"key": "/type/author"}, "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-21T08:32:50.864665"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-21T08:32:50.864665"}}
+/type/author /authors/OL10221922A 1 2022-02-22T05:10:33.959953 {"type": {"key": "/type/author"}, "name": "Rafael Usero", "personal_name": "Rafael Usero", "key": "/authors/OL10221922A", "source_records": ["ia:elsantuariodesan0000user"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-22T05:10:33.959953"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-22T05:10:33.959953"}}
+/type/author /authors/OL10222128A 1 2022-02-22T08:10:52.378317 {"type": {"key": "/type/author"}, "name": "A Bizzarri", "key": "/authors/OL10222128A", "source_records": ["amazon:375249638X"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-22T08:10:52.378317"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-22T08:10:52.378317"}}
+/type/author /authors/OL10222337A 1 2022-02-23T04:54:58.572382 {"type": {"key": "/type/author"}, "name": "Tiziana Stillo", "personal_name": "Tiziana Stillo", "key": "/authors/OL10222337A", "source_records": ["ia:ilprimomortoital0000unse"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-23T04:54:58.572382"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-23T04:54:58.572382"}}
+/type/author /authors/OL10222339A 1 2022-02-23T04:56:00.956783 {"type": {"key": "/type/author"}, "name": "DELLA ROWLAND", "personal_name": "DELLA ROWLAND", "key": "/authors/OL10222339A", "source_records": ["ia:caseofgoldtoothp0000rowl"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-23T04:56:00.956783"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-23T04:56:00.956783"}}
+/type/author /authors/OL1022236A 1 2008-04-01T03:28:50.625462 {"name": "Santo Domingo de Silos (Benedictine abbey)", "last_modified": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "key": "/authors/OL1022236A", "type": {"key": "/type/author"}, "revision": 1}
+/type/author /authors/OL10222484A 1 2022-02-23T07:04:43.384737 {"type": {"key": "/type/author"}, "name": "Bo Lee", "personal_name": "Bo Lee", "key": "/authors/OL10222484A", "source_records": ["ia:naomisvacation0000leeb"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-23T07:04:43.384737"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-23T07:04:43.384737"}}
+/type/author /authors/OL10222680A 1 2022-02-24T03:22:15.998311 {"type": {"key": "/type/author"}, "name": "Roberto Ferrucci", "key": "/authors/OL10222680A", "source_records": ["amazon:2020996987"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-24T03:22:15.998311"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-24T03:22:15.998311"}}
+/type/author /authors/OL10222911A 1 2022-02-24T07:49:28.928456 {"type": {"key": "/type/author"}, "name": "Caylee Dean", "key": "/authors/OL10222911A", "source_records": ["amazon:1638602301"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-24T07:49:28.928456"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-24T07:49:28.928456"}}
+/type/author /authors/OL10223127A 1 2022-02-24T18:19:20.935162 {"type": {"key": "/type/author"}, "name": "TRAZ ROBERT DE", "key": "/authors/OL10223127A", "source_records": ["amazon:2051027781"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-24T18:19:20.935162"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-24T18:19:20.935162"}}
+/type/author /authors/OL10223247A 1 2022-02-25T04:52:37.643778 {"type": {"key": "/type/author"}, "name": "Telinke Mei", "personal_name": "Telinke Mei", "key": "/authors/OL10223247A", "source_records": ["ia:qingniao0035unse"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-25T04:52:37.643778"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-25T04:52:37.643778"}}
+/type/author /authors/OL10223493A 1 2022-02-25T08:11:40.166281 {"type": {"key": "/type/author"}, "name": "T M Blanchet", "key": "/authors/OL10223493A", "source_records": ["amazon:1946501476"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-25T08:11:40.166281"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-25T08:11:40.166281"}}
+/type/author /authors/OL10223570A 1 2022-02-25T08:23:20.038547 {"type": {"key": "/type/author"}, "name": "Martina Famos", "key": "/authors/OL10223570A", "source_records": ["amazon:3033090664"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-25T08:23:20.038547"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-25T08:23:20.038547"}}
+/type/author /authors/OL10223661A 1 2022-02-25T09:44:52.087022 {"type": {"key": "/type/author"}, "name": "David R. Sear", "key": "/authors/OL10223661A", "source_records": ["bwb:9780713478501"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-25T09:44:52.087022"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-25T09:44:52.087022"}}
+/type/author /authors/OL10223738A 1 2022-02-25T10:13:43.410015 {"type": {"key": "/type/author"}, "name": "Dora Piguet-Panayatova", "key": "/authors/OL10223738A", "source_records": ["bwb:9781899828913"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-25T10:13:43.410015"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-25T10:13:43.410015"}}
+/type/author /authors/OL10223750A 1 2022-02-25T10:14:53.726160 {"type": {"key": "/type/author"}, "name": "Francisco Guerra-Vazquez", "key": "/authors/OL10223750A", "source_records": ["bwb:9783540504436"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-25T10:14:53.726160"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-25T10:14:53.726160"}}
+/type/author /authors/OL10224608A 1 2022-02-25T13:39:52.231441 {"type": {"key": "/type/author"}, "name": "Irene E. Hones", "key": "/authors/OL10224608A", "source_records": ["bwb:9781860330285"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-25T13:39:52.231441"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-25T13:39:52.231441"}}
+/type/author /authors/OL10224620A 1 2022-02-25T13:41:47.176903 {"type": {"key": "/type/author"}, "name": "F. M. J. van Oystaeyen", "key": "/authors/OL10224620A", "source_records": ["bwb:9783540164968"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-25T13:41:47.176903"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-25T13:41:47.176903"}}
+/type/author /authors/OL10224662A 1 2022-02-25T13:46:20.224639 {"type": {"key": "/type/author"}, "name": "Hoizey", "key": "/authors/OL10224662A", "source_records": ["bwb:9780748604296"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-25T13:46:20.224639"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-25T13:46:20.224639"}}
+/type/author /authors/OL10224980A 1 2022-02-25T15:22:40.972296 {"type": {"key": "/type/author"}, "name": "E. R. Semlyen", "key": "/authors/OL10224980A", "source_records": ["bwb:9780306471179"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-25T15:22:40.972296"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-25T15:22:40.972296"}}
+/type/author /authors/OL10225157A 1 2022-02-25T16:17:38.297230 {"type": {"key": "/type/author"}, "name": "Pierre C. Saucier", "key": "/authors/OL10225157A", "source_records": ["bwb:9783446210691"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-25T16:17:38.297230"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-25T16:17:38.297230"}}
+/type/author /authors/OL10225799A 1 2022-02-25T17:50:47.696543 {"type": {"key": "/type/author"}, "name": "Bernhard Th\u00f6le", "key": "/authors/OL10225799A", "source_records": ["bwb:9783110854091"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-25T17:50:47.696543"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-25T17:50:47.696543"}}
+/type/author /authors/OL10225882A 1 2022-02-25T17:56:39.648587 {"type": {"key": "/type/author"}, "name": "G\u00f6tz Schmitz", "key": "/authors/OL10225882A", "source_records": ["bwb:9783110943191"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-25T17:56:39.648587"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-25T17:56:39.648587"}}
+/type/author /authors/OL10225937A 1 2022-02-25T18:02:06.315214 {"type": {"key": "/type/author"}, "name": "Zolt\u00e1n Klencs\u00e1r", "key": "/authors/OL10225937A", "source_records": ["bwb:9780387306827"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-25T18:02:06.315214"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-25T18:02:06.315214"}}
+/type/author /authors/OL10226046A 1 2022-02-25T18:13:43.968192 {"type": {"key": "/type/author"}, "name": "Pierre Hellier", "key": "/authors/OL10226046A", "source_records": ["bwb:9783540301356"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-25T18:13:43.968192"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-25T18:13:43.968192"}}
+/type/author /authors/OL10226266A 1 2022-02-25T18:44:50.925569 {"type": {"key": "/type/author"}, "name": "Kent H. Richards", "key": "/authors/OL10226266A", "source_records": ["bwb:9780567112293"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-25T18:44:50.925569"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-25T18:44:50.925569"}}
+/type/author /authors/OL10226286A 1 2022-02-25T18:47:49.624847 {"type": {"key": "/type/author"}, "name": "Michael L. Brewer", "key": "/authors/OL10226286A", "source_records": ["bwb:9783540751038"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-25T18:47:49.624847"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-25T18:47:49.624847"}}
+/type/author /authors/OL10226486A 1 2022-02-25T19:06:54.922026 {"type": {"key": "/type/author"}, "name": "Publitec Publitec Publications", "key": "/authors/OL10226486A", "source_records": ["bwb:9783110945904"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-25T19:06:54.922026"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-25T19:06:54.922026"}}
+/type/author /authors/OL10226757A 1 2022-02-25T19:30:13.560872 {"type": {"key": "/type/author"}, "name": "L. Siegelbaum", "key": "/authors/OL10226757A", "source_records": ["bwb:9781403984548"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-25T19:30:13.560872"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-25T19:30:13.560872"}}
+/type/author /authors/OL10226921A 1 2022-02-25T19:52:14.203518 {"type": {"key": "/type/author"}, "name": "Eddy M. Rojas", "key": "/authors/OL10226921A", "source_records": ["bwb:9781604270013"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-25T19:52:14.203518"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-25T19:52:14.203518"}}
+/type/author /authors/OL10226942A 1 2022-02-25T19:54:36.730360 {"type": {"key": "/type/author"}, "name": "Fisher, Jr., Richard D.", "key": "/authors/OL10226942A", "source_records": ["bwb:9781567207613"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-25T19:54:36.730360"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-25T19:54:36.730360"}}
+/type/author /authors/OL1022728A 2 2008-08-20T20:37:06.830121 {"name": "Hipo\u0301lito C. Irigoiti\u0301a", "personal_name": "Hipo\u0301lito C. Irigoiti\u0301a", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T20:37:06.830121"}, "key": "/authors/OL1022728A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10227364A 1 2022-02-25T20:37:15.421475 {"type": {"key": "/type/author"}, "name": "S. N. Semerak", "key": "/authors/OL10227364A", "source_records": ["bwb:9783540125914"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-25T20:37:15.421475"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-25T20:37:15.421475"}}
+/type/author /authors/OL10227400A 1 2022-02-25T20:40:54.010753 {"type": {"key": "/type/author"}, "name": "D. Kim", "key": "/authors/OL10227400A", "source_records": ["bwb:9780230626706"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-25T20:40:54.010753"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-25T20:40:54.010753"}}
+/type/author /authors/OL10227493A 1 2022-02-25T21:03:40.457489 {"type": {"key": "/type/author"}, "name": "Dominic Bitzer", "key": "/authors/OL10227493A", "source_records": ["bwb:9783484971486"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-25T21:03:40.457489"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-25T21:03:40.457489"}}
+/type/author /authors/OL10227765A 1 2022-02-25T21:27:17.294192 {"type": {"key": "/type/author"}, "name": "Gertrud Maria R\u00f6sch", "key": "/authors/OL10227765A", "source_records": ["bwb:9783110934946"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-25T21:27:17.294192"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-25T21:27:17.294192"}}
+/type/author /authors/OL10227872A 1 2022-02-25T21:37:49.705195 {"type": {"key": "/type/author"}, "name": "Rosa Maria Vicari", "key": "/authors/OL10227872A", "source_records": ["bwb:9783540301394"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-25T21:37:49.705195"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-25T21:37:49.705195"}}
+/type/author /authors/OL10227879A 1 2022-02-25T21:38:01.147600 {"type": {"key": "/type/author"}, "name": "Jos\u00e9 A. de Don\u00e1", "key": "/authors/OL10227879A", "source_records": ["bwb:9781846280634"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-25T21:38:01.147600"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-25T21:38:01.147600"}}
+/type/author /authors/OL10228037A 1 2022-02-25T21:56:36.567621 {"type": {"key": "/type/author"}, "name": "William Aylward", "key": "/authors/OL10228037A", "source_records": ["bwb:9780299220143"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-25T21:56:36.567621"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-25T21:56:36.567621"}}
+/type/author /authors/OL10228641A 1 2022-02-25T23:06:44.986394 {"type": {"key": "/type/author"}, "name": "C. Pattillo", "key": "/authors/OL10228641A", "source_records": ["bwb:9780230583191"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-25T23:06:44.986394"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-25T23:06:44.986394"}}
+/type/author /authors/OL10229038A 1 2022-02-25T23:44:01.417790 {"type": {"key": "/type/author"}, "name": "H. R. Petry", "key": "/authors/OL10229038A", "source_records": ["bwb:9783540089353"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-25T23:44:01.417790"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-25T23:44:01.417790"}}
+/type/author /authors/OL10229062A 1 2022-02-25T23:47:35.619647 {"type": {"key": "/type/author"}, "name": "S. Halford", "key": "/authors/OL10229062A", "source_records": ["bwb:9780230502710"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-25T23:47:35.619647"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-25T23:47:35.619647"}}
+/type/author /authors/OL10229098A 1 2022-02-25T23:53:00.215174 {"type": {"key": "/type/author"}, "name": "Ingo Straub", "key": "/authors/OL10229098A", "source_records": ["bwb:9783835060401"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-25T23:53:00.215174"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-25T23:53:00.215174"}}
+/type/author /authors/OL10229180A 1 2022-02-26T00:06:07.976565 {"type": {"key": "/type/author"}, "name": "Yvonne Zajontz", "key": "/authors/OL10229180A", "source_records": ["bwb:9783486589955"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-26T00:06:07.976565"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-26T00:06:07.976565"}}
+/type/author /authors/OL1022927A 2 2008-08-20T20:38:00.475169 {"name": "Acelino Pedro Guimara\u0303es", "personal_name": "Acelino Pedro Guimara\u0303es", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T20:38:00.475169"}, "key": "/authors/OL1022927A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10229384A 1 2022-02-26T00:30:25.620907 {"type": {"key": "/type/author"}, "name": "Kristie A. Foell", "key": "/authors/OL10229384A", "source_records": ["bwb:9783110906806"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-26T00:30:25.620907"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-26T00:30:25.620907"}}
+/type/author /authors/OL10229595A 1 2022-02-26T00:48:12.307505 {"type": {"key": "/type/author"}, "name": "Helena I. Boshoff", "key": "/authors/OL10229595A", "source_records": ["bwb:9783764375676"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-26T00:48:12.307505"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-26T00:48:12.307505"}}
+/type/author /authors/OL10229664A 1 2022-02-26T00:57:21.693347 {"type": {"key": "/type/author"}, "name": "Anett Hermann", "key": "/authors/OL10229664A", "source_records": ["bwb:9783824407842"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-26T00:57:21.693347"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-26T00:57:21.693347"}}
+/type/author /authors/OL10229893A 1 2022-02-26T01:25:35.770587 {"type": {"key": "/type/author"}, "name": "Brock-Utne, , , FFA(SA), John G.", "key": "/authors/OL10229893A", "source_records": ["bwb:9780387725253"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-26T01:25:35.770587"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-26T01:25:35.770587"}}
+/type/author /authors/OL1022996A 2 2008-08-20T20:38:22.665209 {"name": "Beatrice A. Campbell", "personal_name": "Beatrice A. Campbell", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T20:38:22.665209"}, "key": "/authors/OL1022996A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10230199A 1 2022-02-26T01:51:28.926384 {"type": {"key": "/type/author"}, "name": "Dan Georgakis", "key": "/authors/OL10230199A", "source_records": ["bwb:9780978967666"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-26T01:51:28.926384"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-26T01:51:28.926384"}}
+/type/author /authors/OL10230258A 1 2022-02-26T01:57:38.900874 {"type": {"key": "/type/author"}, "name": "Lucien Pelletier", "key": "/authors/OL10230258A", "source_records": ["bwb:9781554580781"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-26T01:57:38.900874"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-26T01:57:38.900874"}}
+/type/author /authors/OL10230310A 1 2022-02-26T01:59:49.777686 {"type": {"key": "/type/author"}, "name": "Ronald G. Haycock", "key": "/authors/OL10230310A", "source_records": ["bwb:9780889207868"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-26T01:59:49.777686"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-26T01:59:49.777686"}}
+/type/author /authors/OL1023066A 2 2008-08-20T20:38:47.007387 {"name": "William S. Grenzebach", "personal_name": "William S. Grenzebach", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T20:38:47.007387"}, "key": "/authors/OL1023066A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10230829A 1 2022-02-26T02:49:02.588465 {"type": {"key": "/type/author"}, "name": "M. Alvarez-Cobelas", "key": "/authors/OL10230829A", "source_records": ["bwb:9789048150670"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-26T02:49:02.588465"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-26T02:49:02.588465"}}
+/type/author /authors/OL10231158A 1 2022-02-26T03:21:26.084769 {"type": {"key": "/type/author"}, "name": "S. Rolph", "key": "/authors/OL10231158A", "source_records": ["bwb:9780230290303"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-26T03:21:26.084769"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-26T03:21:26.084769"}}
+/type/author /authors/OL10231355A 1 2022-02-26T03:44:40.352249 {"type": {"key": "/type/author"}, "name": "Peter A. Allison", "key": "/authors/OL10231355A", "source_records": ["bwb:9789048186433"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-26T03:44:40.352249"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-26T03:44:40.352249"}}
+/type/author /authors/OL1023141A 2 2008-08-20T20:39:09.683929 {"name": "Angel Novella Mateo", "personal_name": "Angel Novella Mateo", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T20:39:09.683929"}, "key": "/authors/OL1023141A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10231663A 1 2022-02-26T04:05:04.642377 {"type": {"key": "/type/author"}, "name": "J. R. D\u00f6hler", "key": "/authors/OL10231663A", "source_records": ["bwb:9783540722700"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-26T04:05:04.642377"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-26T04:05:04.642377"}}
+/type/author /authors/OL10231665A 1 2022-02-26T04:05:12.070493 {"type": {"key": "/type/author"}, "name": "V. Vento", "key": "/authors/OL10231665A", "source_records": ["bwb:9783540725169"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-26T04:05:12.070493"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-26T04:05:12.070493"}}
+/type/author /authors/OL102318A 1 2008-04-01T03:28:50.625462 {"name": "Vasantaman\u0323i, Ke. A\u0304r.", "personal_name": "Vasantaman\u0323i, Ke. A\u0304r.", "last_modified": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "key": "/authors/OL102318A", "birth_date": "1941", "type": {"key": "/type/author"}, "revision": 1}
+/type/author /authors/OL1023196A 2 2008-08-20T20:39:25.424557 {"name": "Jerry Wright Jordan", "personal_name": "Jerry Wright Jordan", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T20:39:25.424557"}, "key": "/authors/OL1023196A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10232844A 1 2022-02-26T06:01:34.137312 {"type": {"key": "/type/author"}, "name": "E. Stankiewicz", "key": "/authors/OL10232844A", "source_records": ["bwb:9783111035697"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-26T06:01:34.137312"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-26T06:01:34.137312"}}
+/type/author /authors/OL10233790A 1 2022-02-26T06:54:59.410611 {"type": {"key": "/type/author"}, "name": "Carol Hosius", "key": "/authors/OL10233790A", "source_records": ["bwb:9783111000220"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-26T06:54:59.410611"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-26T06:54:59.410611"}}
+/type/author /authors/OL1023399A 2 2008-08-20T20:40:33.810275 {"name": "Nikolai\u0306 Domovitov", "personal_name": "Nikolai\u0306 Domovitov", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T20:40:33.810275"}, "key": "/authors/OL1023399A", "birth_date": "1918", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10234206A 1 2022-02-26T07:26:38.226632 {"type": {"key": "/type/author"}, "name": "Karen Treece", "key": "/authors/OL10234206A", "source_records": ["amazon:1087935962"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-26T07:26:38.226632"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-26T07:26:38.226632"}}
+/type/author /authors/OL10234220A 1 2022-02-26T07:26:53.708675 {"type": {"key": "/type/author"}, "name": "William Detucci", "key": "/authors/OL10234220A", "source_records": ["amazon:1105512509"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-26T07:26:53.708675"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-26T07:26:53.708675"}}
+/type/author /authors/OL10234429A 1 2022-02-26T07:43:34.693587 {"type": {"key": "/type/author"}, "name": "Bobby Sinnett", "key": "/authors/OL10234429A", "source_records": ["bwb:9780752464732"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-26T07:43:34.693587"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-26T07:43:34.693587"}}
+/type/author /authors/OL10234581A 1 2022-02-26T07:58:44.663571 {"type": {"key": "/type/author"}, "name": "H. Jeong", "key": "/authors/OL10234581A", "source_records": ["bwb:9781403920034"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-26T07:58:44.663571"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-26T07:58:44.663571"}}
+/type/author /authors/OL10234830A 1 2022-02-26T08:12:13.858672 {"type": {"key": "/type/author"}, "name": "Jeanne Van Weel", "key": "/authors/OL10234830A", "source_records": ["bwb:9789031386574"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-26T08:12:13.858672"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-26T08:12:13.858672"}}
+/type/author /authors/OL10234952A 1 2022-02-26T08:23:01.997249 {"type": {"key": "/type/author"}, "name": "Robyn Taylor", "key": "/authors/OL10234952A", "source_records": ["bwb:9783642135446"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-26T08:23:01.997249"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-26T08:23:01.997249"}}
+/type/author /authors/OL1023496A 2 2008-08-20T20:41:03.883657 {"name": "Alvise Anto\u0302nio Mezzomo", "personal_name": "Alvise Anto\u0302nio Mezzomo", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T20:41:03.883657"}, "key": "/authors/OL1023496A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10235032A 1 2022-02-26T08:30:07.962797 {"type": {"key": "/type/author"}, "name": "Eric van Wyk", "key": "/authors/OL10235032A", "source_records": ["bwb:9783642004346"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-26T08:30:07.962797"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-26T08:30:07.962797"}}
+/type/author /authors/OL10235256A 1 2022-02-26T08:56:35.718592 {"type": {"key": "/type/author"}, "name": "Inma Garc\u00eda Jim\u00e9nez", "key": "/authors/OL10235256A", "source_records": ["bwb:9783110273861"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-26T08:56:35.718592"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-26T08:56:35.718592"}}
+/type/author /authors/OL10235257A 1 2022-02-26T08:56:38.188568 {"type": {"key": "/type/author"}, "name": "Raj Mesthrie", "key": "/authors/OL10235257A", "source_records": ["bwb:9781919895710"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-26T08:56:38.188568"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-26T08:56:38.188568"}}
+/type/author /authors/OL10235838A 1 2022-02-26T09:39:53.951757 {"type": {"key": "/type/author"}, "name": "J\u00f6 Redler", "key": "/authors/OL10235838A", "source_records": ["bwb:9783834938626"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-26T09:39:53.951757"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-26T09:39:53.951757"}}
+/type/author /authors/OL10235909A 1 2022-02-26T09:44:19.732012 {"type": {"key": "/type/author"}, "name": "\u00d6zg\u00fcr Arslan", "key": "/authors/OL10235909A", "source_records": ["bwb:9783642197093"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-26T09:44:19.732012"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-26T09:44:19.732012"}}
+/type/author /authors/OL10236488A 1 2022-02-26T10:12:13.629475 {"type": {"key": "/type/author"}, "name": "Andreas Taffertshofer", "key": "/authors/OL10236488A", "source_records": ["bwb:9783531915708"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-26T10:12:13.629475"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-26T10:12:13.629475"}}
+/type/author /authors/OL10236759A 1 2022-02-26T10:26:29.655144 {"type": {"key": "/type/author"}, "name": "Hans Volkmer", "key": "/authors/OL10236759A", "source_records": ["bwb:9783540460152"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-26T10:26:29.655144"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-26T10:26:29.655144"}}
+/type/author /authors/OL10236765A 1 2022-02-26T10:26:41.956485 {"type": {"key": "/type/author"}, "name": "Orlando Lopes", "key": "/authors/OL10236765A", "source_records": ["bwb:9783540459286"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-26T10:26:41.956485"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-26T10:26:41.956485"}}
+/type/author /authors/OL10236901A 1 2022-02-26T10:31:18.098831 {"type": {"key": "/type/author"}, "name": "Edgar A. Rutter", "key": "/authors/OL10236901A", "source_records": ["bwb:9783540383406"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-26T10:31:18.098831"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-26T10:31:18.098831"}}
+/type/author /authors/OL10237069A 1 2022-02-26T10:36:57.559666 {"type": {"key": "/type/author"}, "name": "Maria V. Otero-Espinar", "key": "/authors/OL10237069A", "source_records": ["bwb:9783540478126"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-26T10:36:57.559666"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-26T10:36:57.559666"}}
+/type/author /authors/OL10237270A 1 2022-02-26T10:48:01.924013 {"type": {"key": "/type/author"}, "name": "P.N. Fox", "key": "/authors/OL10237270A", "source_records": ["bwb:9789400915039"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-26T10:48:01.924013"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-26T10:48:01.924013"}}
+/type/author /authors/OL10237474A 1 2022-02-26T10:59:41.020313 {"type": {"key": "/type/author"}, "name": "Anja Seiffert", "key": "/authors/OL10237474A", "source_records": ["bwb:9783531934006"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-26T10:59:41.020313"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-26T10:59:41.020313"}}
+/type/author /authors/OL10237527A 1 2022-02-26T11:05:36.353610 {"type": {"key": "/type/author"}, "name": "Kyung Jung Kim", "key": "/authors/OL10237527A", "source_records": ["bwb:9783642272073"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-26T11:05:36.353610"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-26T11:05:36.353610"}}
+/type/author /authors/OL10237851A 1 2022-02-26T11:33:52.163049 {"type": {"key": "/type/author"}, "name": "K. Stange", "key": "/authors/OL10237851A", "source_records": ["bwb:9783540073536"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-26T11:33:52.163049"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-26T11:33:52.163049"}}
+/type/author /authors/OL10238406A 1 2022-02-26T12:31:55.263071 {"type": {"key": "/type/author"}, "name": "F. \u00dcnal", "key": "/authors/OL10238406A", "source_records": ["bwb:9781137110886"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-26T12:31:55.263071"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-26T12:31:55.263071"}}
+/type/author /authors/OL10238503A 1 2022-02-26T12:43:27.662736 {"type": {"key": "/type/author"}, "name": "Swapan Kumar Saha", "key": "/authors/OL10238503A", "source_records": ["bwb:9781461427025"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-26T12:43:27.662736"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-26T12:43:27.662736"}}
+/type/author /authors/OL10238648A 1 2022-02-26T12:53:01.305219 {"type": {"key": "/type/author"}, "name": "Stefan Gadringer", "key": "/authors/OL10238648A", "source_records": ["bwb:9783531187730"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-26T12:53:01.305219"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-26T12:53:01.305219"}}
+/type/author /authors/OL10239237A 1 2022-02-26T13:49:55.527304 {"type": {"key": "/type/author"}, "name": "Stewart Franklin", "key": "/authors/OL10239237A", "source_records": ["bwb:9781908373687"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-26T13:49:55.527304"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-26T13:49:55.527304"}}
+/type/author /authors/OL10239749A 1 2022-02-26T14:52:38.552424 {"type": {"key": "/type/author"}, "name": "Mihnea Dulea", "key": "/authors/OL10239749A", "source_records": ["bwb:9783319015194"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-26T14:52:38.552424"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-26T14:52:38.552424"}}
+/type/author /authors/OL10239906A 1 2022-02-26T15:05:59.247688 {"type": {"key": "/type/author"}, "name": "Rolf Joachim Nessel", "key": "/authors/OL10239906A", "source_records": ["bwb:9783531028415"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-26T15:05:59.247688"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-26T15:05:59.247688"}}
+/type/author /authors/OL10239918A 1 2022-02-26T15:06:30.751972 {"type": {"key": "/type/author"}, "name": "K. H. Borowski", "key": "/authors/OL10239918A", "source_records": ["bwb:9783540027744"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-26T15:06:30.751972"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-26T15:06:30.751972"}}
+/type/author /authors/OL10240138A 1 2022-02-26T15:20:17.457383 {"type": {"key": "/type/author"}, "name": "N. Abi-Aad", "key": "/authors/OL10240138A", "source_records": ["bwb:9780230378070"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-26T15:20:17.457383"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-26T15:20:17.457383"}}
+/type/author /authors/OL10241099A 1 2022-02-26T16:34:29.282385 {"type": {"key": "/type/author"}, "name": "H. W. Fl\u00fcgel", "key": "/authors/OL10241099A", "source_records": ["bwb:9783211863718"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-26T16:34:29.282385"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-26T16:34:29.282385"}}
+/type/author /authors/OL10241504A 1 2022-02-26T17:02:25.320050 {"type": {"key": "/type/author"}, "name": "Schweiggert", "key": "/authors/OL10241504A", "source_records": ["bwb:9783519026884"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-26T17:02:25.320050"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-26T17:02:25.320050"}}
+/type/author /authors/OL10241567A 1 2022-02-26T17:05:57.441758 {"type": {"key": "/type/author"}, "name": "Gesellschaft F\u00fcr Kohlentechnik M. B. H. Dortmund Staff", "key": "/authors/OL10241567A", "source_records": ["bwb:9783663036807"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-26T17:05:57.441758"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-26T17:05:57.441758"}}
+/type/author /authors/OL10241970A 1 2022-02-26T17:42:01.631965 {"type": {"key": "/type/author"}, "name": "Nancy Catano", "key": "/authors/OL10241970A", "source_records": ["bwb:9781281953346"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-26T17:42:01.631965"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-26T17:42:01.631965"}}
+/type/author /authors/OL10242094A 1 2022-02-26T19:13:47.595866 {"type": {"key": "/type/author"}, "name": "Staats-und Universitatsbibliotek Hamburg Staff", "key": "/authors/OL10242094A", "source_records": ["bwb:9783598236228"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-26T19:13:47.595866"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-26T19:13:47.595866"}}
+/type/author /authors/OL10242318A 1 2022-02-26T19:57:03.607063 {"type": {"key": "/type/author"}, "name": "Martijn van der Steen", "key": "/authors/OL10242318A", "source_records": ["bwb:9781447305774"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-26T19:57:03.607063"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-26T19:57:03.607063"}}
+/type/author /authors/OL10242364A 1 2022-02-26T20:02:20.683070 {"type": {"key": "/type/author"}, "name": "Antonia Rosa Gurrieri", "key": "/authors/OL10242364A", "source_records": ["bwb:9783319034287"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-26T20:02:20.683070"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-26T20:02:20.683070"}}
+/type/author /authors/OL10242453A 1 2022-02-26T20:14:46.939122 {"type": {"key": "/type/author"}, "name": "J. Gwenogvryn Evans", "key": "/authors/OL10242453A", "source_records": ["amazon:1333679777"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-26T20:14:46.939122"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-26T20:14:46.939122"}}
+/type/author /authors/OL10242474A 1 2022-02-26T20:16:54.915522 {"type": {"key": "/type/author"}, "name": "Ricardo P. S. M. Lobo", "key": "/authors/OL10242474A", "source_records": ["bwb:9783527412204"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-26T20:16:54.915522"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-26T20:16:54.915522"}}
+/type/author /authors/OL10242723A 1 2022-02-26T20:31:41.796444 {"type": {"key": "/type/author"}, "name": "N. R. Cameron", "key": "/authors/OL10242723A", "source_records": ["bwb:9783662147856"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-26T20:31:41.796444"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-26T20:31:41.796444"}}
+/type/author /authors/OL1024281A 1 2008-04-01T03:28:50.625462 {"name": "Evangelisch-Reformierte Kirche in Ju\u0308lich, Cleve, Berg und Mark. Weseler Classis.", "last_modified": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "key": "/authors/OL1024281A", "type": {"key": "/type/author"}, "revision": 1}
+/type/author /authors/OL10242905A 1 2022-02-26T20:47:18.488456 {"type": {"key": "/type/author"}, "name": "Richard Herz", "key": "/authors/OL10242905A", "source_records": ["bwb:9783111005942"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-26T20:47:18.488456"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-26T20:47:18.488456"}}
+/type/author /authors/OL10243767A 1 2022-02-26T22:16:03.171817 {"type": {"key": "/type/author"}, "name": "Joerg-Oliver Vogt", "key": "/authors/OL10243767A", "source_records": ["bwb:9783824476589"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-26T22:16:03.171817"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-26T22:16:03.171817"}}
+/type/author /authors/OL10244397A 1 2022-02-26T23:28:33.330047 {"type": {"key": "/type/author"}, "name": "David H. Carlson", "key": "/authors/OL10244397A", "source_records": ["bwb:9781317954514"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-26T23:28:33.330047"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-26T23:28:33.330047"}}
+/type/author /authors/OL1024448A 2 2008-08-20T20:46:18.30249 {"name": "Mirjana S\u030cakota", "personal_name": "Mirjana S\u030cakota", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T20:46:18.30249"}, "key": "/authors/OL1024448A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10244656A 1 2022-02-27T00:07:02.900415 {"type": {"key": "/type/author"}, "name": "Christian Eigen-Zucchi", "key": "/authors/OL10244656A", "source_records": ["bwb:9781464803192"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-27T00:07:02.900415"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-27T00:07:02.900415"}}
+/type/author /authors/OL1024473A 2 2008-08-20T20:46:23.840244 {"name": "Gu\u0308neri Ergu\u0308len", "personal_name": "Gu\u0308neri Ergu\u0308len", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T20:46:23.840244"}, "key": "/authors/OL1024473A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10245156A 1 2022-02-27T01:02:22.684942 {"type": {"key": "/type/author"}, "name": "Anna J. Skye", "key": "/authors/OL10245156A", "source_records": ["bwb:9781861513175"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-27T01:02:22.684942"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-27T01:02:22.684942"}}
+/type/author /authors/OL10245405A 1 2022-02-27T01:32:03.996327 {"type": {"key": "/type/author"}, "name": "Veronica Tomasello", "key": "/authors/OL10245405A", "source_records": ["bwb:9783662454442"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-27T01:32:03.996327"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-27T01:32:03.996327"}}
+/type/author /authors/OL10245476A 1 2022-02-27T01:41:05.335614 {"type": {"key": "/type/author"}, "name": "Benedikt Wefers", "key": "/authors/OL10245476A", "source_records": ["bwb:9781493929313"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-27T01:41:05.335614"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-27T01:41:05.335614"}}
+/type/author /authors/OL10245867A 1 2022-02-27T02:09:45.050624 {"type": {"key": "/type/author"}, "name": "J. A. Jr Seebach", "key": "/authors/OL10245867A", "source_records": ["bwb:9781461262909"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-27T02:09:45.050624"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-27T02:09:45.050624"}}
+/type/author /authors/OL10246086A 1 2022-02-27T02:18:32.390864 {"type": {"key": "/type/author"}, "name": "T. B. Hargreave", "key": "/authors/OL10246086A", "source_records": ["bwb:9781447110293"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-27T02:18:32.390864"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-27T02:18:32.390864"}}
+/type/author /authors/OL10246307A 1 2022-02-27T02:27:21.758711 {"type": {"key": "/type/author"}, "name": "Jieldouw T. Steensma", "key": "/authors/OL10246307A", "source_records": ["bwb:9783642746659"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-27T02:27:21.758711"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-27T02:27:21.758711"}}
+/type/author /authors/OL1024635A 2 2008-08-20T20:47:10.426443 {"name": "Lynn E. Ovenden", "personal_name": "Lynn E. Ovenden", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T20:47:10.426443"}, "key": "/authors/OL1024635A", "birth_date": "1950", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10246437A 1 2022-02-27T02:32:43.695103 {"type": {"key": "/type/author"}, "name": "A. S. J. P. A. M. van Miert", "key": "/authors/OL10246437A", "source_records": ["bwb:9789400941533"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-27T02:32:43.695103"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-27T02:32:43.695103"}}
+/type/author /authors/OL1024648A 2 2008-08-20T20:47:12.964317 {"name": "Jacqueline Duroc", "personal_name": "Jacqueline Duroc", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T20:47:12.964317"}, "key": "/authors/OL1024648A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10246570A 1 2022-02-27T02:39:04.145469 {"type": {"key": "/type/author"}, "name": "F. X. Kaufmann", "key": "/authors/OL10246570A", "source_records": ["bwb:9783642750915"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-27T02:39:04.145469"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-27T02:39:04.145469"}}
+/type/author /authors/OL10247689A 1 2022-02-27T03:47:54.310647 {"type": {"key": "/type/author"}, "name": "F. Steel", "key": "/authors/OL10247689A", "source_records": ["bwb:9783662040881"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-27T03:47:54.310647"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-27T03:47:54.310647"}}
+/type/author /authors/OL10247771A 1 2022-02-27T03:52:58.755616 {"type": {"key": "/type/author"}, "name": "Karl-Peter Paul", "key": "/authors/OL10247771A", "source_records": ["bwb:9783662005781"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-27T03:52:58.755616"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-27T03:52:58.755616"}}
+/type/author /authors/OL10248624A 1 2022-02-27T04:44:03.768168 {"type": {"key": "/type/author"}, "name": "W. M\u00fcller-Schauenburg", "key": "/authors/OL10248624A", "source_records": ["bwb:9783662122594"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-27T04:44:03.768168"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-27T04:44:03.768168"}}
+/type/author /authors/OL10248757A 1 2022-02-27T04:49:46.262132 {"type": {"key": "/type/author"}, "name": "Lodewijk Johannnes van der Mandele", "key": "/authors/OL10248757A", "source_records": ["bwb:9783662297247"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-27T04:49:46.262132"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-27T04:49:46.262132"}}
+/type/author /authors/OL10248800A 1 2022-02-27T04:52:02.570089 {"type": {"key": "/type/author"}, "name": "Vieweg, Friedr., & Sohn, Publishers, Brunswick, Friedr.", "key": "/authors/OL10248800A", "source_records": ["bwb:9783663159261"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-27T04:52:02.570089"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-27T04:52:02.570089"}}
+/type/author /authors/OL10248860A 1 2022-02-27T04:56:05.114229 {"type": {"key": "/type/author"}, "name": "Herbert Mangold", "key": "/authors/OL10248860A", "source_records": ["bwb:9783662379547"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-27T04:56:05.114229"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-27T04:56:05.114229"}}
+/type/author /authors/OL10248874A 1 2022-02-27T04:56:32.026988 {"type": {"key": "/type/author"}, "name": "Q. H. Siraj", "key": "/authors/OL10248874A", "source_records": ["bwb:9781489933560"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-27T04:56:32.026988"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-27T04:56:32.026988"}}
+/type/author /authors/OL10248913A 1 2022-02-27T04:58:19.944143 {"type": {"key": "/type/author"}, "name": "H. Offermann", "key": "/authors/OL10248913A", "source_records": ["bwb:9783662248546"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-27T04:58:19.944143"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-27T04:58:19.944143"}}
+/type/author /authors/OL1024915A 2 2008-08-20T20:48:20.033833 {"name": "William C. Rounds", "personal_name": "William C. Rounds", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T20:48:20.033833"}, "key": "/authors/OL1024915A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10249225A 1 2022-02-27T05:19:14.010744 {"type": {"key": "/type/author"}, "name": "Detlev M\u00fcller-Using", "key": "/authors/OL10249225A", "source_records": ["bwb:9783662410554"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-27T05:19:14.010744"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-27T05:19:14.010744"}}
+/type/author /authors/OL10249416A 1 2022-02-27T05:30:05.707806 {"type": {"key": "/type/author"}, "name": "W. Wolfart", "key": "/authors/OL10249416A", "source_records": ["bwb:9783642455131"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-27T05:30:05.707806"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-27T05:30:05.707806"}}
+/type/author /authors/OL10249743A 1 2022-02-27T05:46:55.867077 {"type": {"key": "/type/author"}, "name": "H. Colin", "key": "/authors/OL10249743A", "source_records": ["bwb:9783642692253"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-27T05:46:55.867077"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-27T05:46:55.867077"}}
+/type/author /authors/OL10249816A 1 2022-02-27T05:50:08.905261 {"type": {"key": "/type/author"}, "name": "H\u00fctte Gesellschaft f\u00fcr Technische Informationen mbH", "key": "/authors/OL10249816A", "source_records": ["bwb:9783662251850"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-27T05:50:08.905261"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-27T05:50:08.905261"}}
+/type/author /authors/OL10249903A 1 2022-02-27T05:55:23.542108 {"type": {"key": "/type/author"}, "name": "Siegfried Golbs", "key": "/authors/OL10249903A", "source_records": ["bwb:9783642749360"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-27T05:55:23.542108"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-27T05:55:23.542108"}}
+/type/author /authors/OL10250382A 1 2022-02-27T06:29:23.761552 {"type": {"key": "/type/author"}, "name": "P. H. von Mittlerwallner", "key": "/authors/OL10250382A", "source_records": ["bwb:9783663055945"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-27T06:29:23.761552"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-27T06:29:23.761552"}}
+/type/author /authors/OL1025048A 2 2008-08-20T20:48:45.95802 {"name": "Heinrich Erdmann", "personal_name": "Heinrich Erdmann", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T20:48:45.95802"}, "key": "/authors/OL1025048A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10250701A 1 2022-02-27T06:59:21.975332 {"type": {"key": "/type/author"}, "name": "Leopold ~vonoe Ubisch", "key": "/authors/OL10250701A", "source_records": ["bwb:9783663021995"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-27T06:59:21.975332"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-27T06:59:21.975332"}}
+/type/author /authors/OL10250884A 1 2022-02-27T07:18:37.338774 {"type": {"key": "/type/author"}, "name": "K. Wilke", "key": "/authors/OL10250884A", "source_records": ["bwb:9783540455530"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-27T07:18:37.338774"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-27T07:18:37.338774"}}
+/type/author /authors/OL10250902A 1 2022-02-27T07:20:00.170921 {"type": {"key": "/type/author"}, "name": "Kuhlig", "key": "/authors/OL10250902A", "source_records": ["bwb:9783662316009"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-27T07:20:00.170921"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-27T07:20:00.170921"}}
+/type/author /authors/OL10250943A 1 2022-02-27T07:24:21.209424 {"type": {"key": "/type/author"}, "name": "T. Kanaya", "key": "/authors/OL10250943A", "source_records": ["bwb:9783540444848"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-27T07:24:21.209424"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-27T07:24:21.209424"}}
+/type/author /authors/OL10251236A 1 2022-02-27T07:46:01.779055 {"type": {"key": "/type/author"}, "name": "R. E. Grandy", "key": "/authors/OL10251236A", "source_records": ["bwb:9789401011914"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-27T07:46:01.779055"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-27T07:46:01.779055"}}
+/type/author /authors/OL10251375A 1 2022-02-27T07:57:23.347143 {"type": {"key": "/type/author"}, "name": "W. D. Newmark", "key": "/authors/OL10251375A", "source_records": ["bwb:9783662048726"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-27T07:57:23.347143"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-27T07:57:23.347143"}}
+/type/author /authors/OL10253041A 1 2022-02-27T09:49:27.334493 {"type": {"key": "/type/author"}, "name": "Manuel Nieto-Sampedro", "key": "/authors/OL10253041A", "source_records": ["bwb:9781461557371"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-27T09:49:27.334493"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-27T09:49:27.334493"}}
+/type/author /authors/OL10253357A 1 2022-02-27T10:06:36.566148 {"type": {"key": "/type/author"}, "name": "Andrew Beresford", "key": "/authors/OL10253357A", "source_records": ["bwb:9781137492548"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-27T10:06:36.566148"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-27T10:06:36.566148"}}
+/type/author /authors/OL10253374A 1 2022-02-27T10:07:43.283857 {"type": {"key": "/type/author"}, "name": "Thomas B. Osborne", "key": "/authors/OL10253374A", "source_records": ["bwb:9783642513718"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-27T10:07:43.283857"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-27T10:07:43.283857"}}
+/type/author /authors/OL10253657A 1 2022-02-27T10:34:21.794836 {"type": {"key": "/type/author"}, "name": "P. Cottier", "key": "/authors/OL10253657A", "source_records": ["bwb:9783642498992"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-27T10:34:21.794836"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-27T10:34:21.794836"}}
+/type/author /authors/OL10254006A 1 2022-02-27T11:08:04.360270 {"type": {"key": "/type/author"}, "name": "Adam Taliaferro", "key": "/authors/OL10254006A", "source_records": ["bwb:9781633193635"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-27T11:08:04.360270"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-27T11:08:04.360270"}}
+/type/author /authors/OL10254114A 1 2022-02-27T11:22:55.591274 {"type": {"key": "/type/author"}, "name": "Y. G. Sinai", "key": "/authors/OL10254114A", "source_records": ["bwb:9781461569275"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-27T11:22:55.591274"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-27T11:22:55.591274"}}
+/type/author /authors/OL1025421A 3 2020-09-30T12:26:53.671399 {"personal_name": "Cao, Yu", "last_modified": {"type": "/type/datetime", "value": "2020-09-30T12:26:53.671399"}, "latest_revision": 3, "key": "/authors/OL1025421A", "remote_ids": {"viaf": "171428777", "wikidata": "Q353783", "isni": "0000000368585802"}, "name": "Cao, Yu", "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "death_date": "1996", "birth_date": "1910", "type": {"key": "/type/author"}, "revision": 3}
+/type/author /authors/OL1025440A 2 2008-08-20T20:50:46.699114 {"name": "Andrzej Brzeg", "personal_name": "Andrzej Brzeg", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T20:50:46.699114"}, "key": "/authors/OL1025440A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10254546A 1 2022-02-27T11:55:29.481512 {"type": {"key": "/type/author"}, "name": "Jackson B. Jett", "key": "/authors/OL10254546A", "source_records": ["bwb:9783642795145"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-27T11:55:29.481512"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-27T11:55:29.481512"}}
+/type/author /authors/OL10254580A 1 2022-02-27T11:58:10.679875 {"type": {"key": "/type/author"}, "name": "J. F. Grove", "key": "/authors/OL10254580A", "source_records": ["bwb:9783709165782"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-27T11:58:10.679875"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-27T11:58:10.679875"}}
+/type/author /authors/OL10255081A 1 2022-02-27T12:53:49.336887 {"type": {"key": "/type/author"}, "name": "Paul Sarbanes", "key": "/authors/OL10255081A", "source_records": ["bwb:9781349117864"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-27T12:53:49.336887"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-27T12:53:49.336887"}}
+/type/author /authors/OL10255217A 1 2022-02-27T13:10:19.567026 {"type": {"key": "/type/author"}, "name": "J. Wheare", "key": "/authors/OL10255217A", "source_records": ["bwb:9781349196845"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-27T13:10:19.567026"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-27T13:10:19.567026"}}
+/type/author /authors/OL10255504A 1 2022-02-27T13:42:09.337082 {"type": {"key": "/type/author"}, "name": "Foundation for the History of Technology", "key": "/authors/OL10255504A", "source_records": ["bwb:9780230308039"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-27T13:42:09.337082"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-27T13:42:09.337082"}}
+/type/author /authors/OL10256192A 1 2022-02-27T14:52:26.927495 {"type": {"key": "/type/author"}, "name": "Joseph Tse Lee", "key": "/authors/OL10256192A", "source_records": ["bwb:9781349949311"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-27T14:52:26.927495"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-27T14:52:26.927495"}}
+/type/author /authors/OL10256194A 1 2022-02-27T14:52:32.524385 {"type": {"key": "/type/author"}, "name": "Soren Tvorup Christensen", "key": "/authors/OL10256194A", "source_records": ["bwb:9781493937875"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-27T14:52:32.524385"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-27T14:52:32.524385"}}
+/type/author /authors/OL10256496A 1 2022-02-27T15:24:04.214329 {"type": {"key": "/type/author"}, "name": "Liz Joiner", "key": "/authors/OL10256496A", "source_records": ["bwb:9781407169712"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-27T15:24:04.214329"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-27T15:24:04.214329"}}
+/type/author /authors/OL10257055A 1 2022-02-27T16:25:26.200888 {"type": {"key": "/type/author"}, "name": "Petra Bayerl", "key": "/authors/OL10257055A", "source_records": ["bwb:9783319476704"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-27T16:25:26.200888"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-27T16:25:26.200888"}}
+/type/author /authors/OL10257179A 1 2022-02-27T16:41:16.003608 {"type": {"key": "/type/author"}, "name": "Zohaib Najam", "key": "/authors/OL10257179A", "source_records": ["bwb:9789811031199"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-27T16:41:16.003608"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-27T16:41:16.003608"}}
+/type/author /authors/OL10257392A 1 2022-02-27T17:02:40.936134 {"type": {"key": "/type/author"}, "name": "G\u00e9rard Pr\u00eale", "key": "/authors/OL10257392A", "source_records": ["bwb:9789462392458"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-27T17:02:40.936134"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-27T17:02:40.936134"}}
+/type/author /authors/OL10257727A 1 2022-02-27T17:37:33.347332 {"type": {"key": "/type/author"}, "name": "Michael Schuhen", "key": "/authors/OL10257727A", "source_records": ["bwb:9783110508703"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-27T17:37:33.347332"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-27T17:37:33.347332"}}
+/type/author /authors/OL10258402A 1 2022-02-27T18:59:11.464901 {"type": {"key": "/type/author"}, "name": "Zineb Djoub", "key": "/authors/OL10258402A", "source_records": ["bwb:9781522529637"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-27T18:59:11.464901"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-27T18:59:11.464901"}}
+/type/author /authors/OL10258620A 1 2022-02-27T19:14:57.961321 {"type": {"key": "/type/author"}, "name": "Olaf-Immanuel Seel", "key": "/authors/OL10258620A", "source_records": ["bwb:9781522528326"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-27T19:14:57.961321"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-27T19:14:57.961321"}}
+/type/author /authors/OL10258798A 1 2022-02-27T19:30:50.704891 {"type": {"key": "/type/author"}, "name": "Armin Krieg", "key": "/authors/OL10258798A", "source_records": ["bwb:9781522528456"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-27T19:30:50.704891"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-27T19:30:50.704891"}}
+/type/author /authors/OL10259262A 1 2022-02-27T20:15:50.904672 {"type": {"key": "/type/author"}, "name": "Michele Lombardelli", "key": "/authors/OL10259262A", "source_records": ["bwb:9788899385293"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-27T20:15:50.904672"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-27T20:15:50.904672"}}
+/type/author /authors/OL10259635A 1 2022-02-27T20:40:42.593421 {"type": {"key": "/type/author"}, "name": "R. David Ratna", "key": "/authors/OL10259635A", "source_records": ["bwb:9789380578644"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-27T20:40:42.593421"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-27T20:40:42.593421"}}
+/type/author /authors/OL10259671A 1 2022-02-27T20:41:58.159876 {"type": {"key": "/type/author"}, "name": "Naveen Kango", "key": "/authors/OL10259671A", "source_records": ["bwb:9789380026442"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-27T20:41:58.159876"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-27T20:41:58.159876"}}
+/type/author /authors/OL10259809A 1 2022-02-27T20:49:23.560301 {"type": {"key": "/type/author"}, "name": "Ugochukwu Chinonso Okolie", "key": "/authors/OL10259809A", "source_records": ["bwb:9781522541455"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-27T20:49:23.560301"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-27T20:49:23.560301"}}
+/type/author /authors/OL10259862A 1 2022-02-27T20:53:00.779376 {"type": {"key": "/type/author"}, "name": "Amir-Kian Kashani-Poor", "key": "/authors/OL10259862A", "source_records": ["bwb:9781470435158"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-27T20:53:00.779376"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-27T20:53:00.779376"}}
+/type/author /authors/OL10260060A 1 2022-02-27T21:15:20.437124 {"type": {"key": "/type/author"}, "name": "Purnima Dubey", "key": "/authors/OL10260060A", "source_records": ["bwb:9781493978588"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-27T21:15:20.437124"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-27T21:15:20.437124"}}
+/type/author /authors/OL10260391A 1 2022-02-27T21:59:11.883184 {"name": "Thomas Lucas Bayard", "key": "/authors/OL10260391A", "type": {"key": "/type/author"}, "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-27T21:59:11.883184"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-27T21:59:11.883184"}}
+/type/author /authors/OL10260412A 1 2022-02-27T22:00:38.753779 {"type": {"key": "/type/author"}, "name": "The Missoni The Missoni Archive", "key": "/authors/OL10260412A", "source_records": ["bwb:9780847867158"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-27T22:00:38.753779"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-27T22:00:38.753779"}}
+/type/author /authors/OL10260809A 1 2022-02-27T22:49:05.589233 {"type": {"key": "/type/author"}, "name": "Dan Meagher", "key": "/authors/OL10260809A", "source_records": ["bwb:9781509919833"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-27T22:49:05.589233"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-27T22:49:05.589233"}}
+/type/author /authors/OL10260952A 1 2022-02-27T23:05:44.327354 {"type": {"key": "/type/author"}, "name": "Thibault Mayor", "key": "/authors/OL10260952A", "source_records": ["bwb:9781493993710"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-27T23:05:44.327354"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-27T23:05:44.327354"}}
+/type/author /authors/OL10261205A 1 2022-02-27T23:40:13.603025 {"type": {"key": "/type/author"}, "name": "Carla Bluhm", "key": "/authors/OL10261205A", "source_records": ["bwb:9780313356179"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-27T23:40:13.603025"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-27T23:40:13.603025"}}
+/type/author /authors/OL10261209A 1 2022-02-27T23:40:29.900383 {"type": {"key": "/type/author"}, "name": "Danielle L. Apugo", "key": "/authors/OL10261209A", "source_records": ["bwb:9781522578147"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-27T23:40:29.900383"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-27T23:40:29.900383"}}
+/type/author /authors/OL10262344A 1 2022-02-28T02:01:19.075952 {"type": {"key": "/type/author"}, "name": "Beatrice Rammstedt", "key": "/authors/OL10262344A", "source_records": ["bwb:9783030475147"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-28T02:01:19.075952"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-28T02:01:19.075952"}}
+/type/author /authors/OL10262721A 1 2022-02-28T02:58:12.235789 {"type": {"key": "/type/author"}, "name": "Reinhold Wimberger-Friedl", "key": "/authors/OL10262721A", "source_records": ["bwb:9783446216709"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-28T02:58:12.235789"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-28T02:58:12.235789"}}
+/type/author /authors/OL10263083A 1 2022-02-28T03:47:29.235964 {"type": {"key": "/type/author"}, "name": "J. V. Tirkey", "key": "/authors/OL10263083A", "source_records": ["bwb:9788184870787"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-28T03:47:29.235964"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-28T03:47:29.235964"}}
+/type/author /authors/OL10263202A 1 2022-02-28T04:10:45.911589 {"type": {"key": "/type/author"}, "name": "Federica Riguzzi", "key": "/authors/OL10263202A", "source_records": ["bwb:9783030014544"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-28T04:10:45.911589"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-28T04:10:45.911589"}}
+/type/author /authors/OL10263271A 1 2022-02-28T04:22:50.467657 {"type": {"key": "/type/author"}, "name": "Friedrich Everling", "key": "/authors/OL10263271A", "source_records": ["bwb:9783111301167"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-28T04:22:50.467657"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-28T04:22:50.467657"}}
+/type/author /authors/OL10263371A 1 2022-02-28T04:34:20.410850 {"type": {"key": "/type/author"}, "name": "Jean-Fran\u00e7ois Puget", "key": "/authors/OL10263371A", "source_records": ["bwb:9781583478929"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-28T04:34:20.410850"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-28T04:34:20.410850"}}
+/type/author /authors/OL10263451A 1 2022-02-28T04:44:00.967291 {"type": {"key": "/type/author"}, "name": "Yongchao Jia", "key": "/authors/OL10263451A", "source_records": ["bwb:9780128186374"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-28T04:44:00.967291"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-28T04:44:00.967291"}}
+/type/author /authors/OL10263708A 1 2022-02-28T05:08:35.805927 {"type": {"key": "/type/author"}, "name": "Ant\u00f3nio Casimiro", "key": "/authors/OL10263708A", "source_records": ["bwb:9783030545482"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-28T05:08:35.805927"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-28T05:08:35.805927"}}
+/type/author /authors/OL10263817A 1 2022-02-28T05:14:45.893821 {"type": {"key": "/type/author"}, "name": "Ligia Moga", "key": "/authors/OL10263817A", "source_records": ["bwb:9783030574178"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-28T05:14:45.893821"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-28T05:14:45.893821"}}
+/type/author /authors/OL10264190A 1 2022-02-28T05:38:41.836470 {"type": {"key": "/type/author"}, "name": "Udai Bhan Singh", "key": "/authors/OL10264190A", "source_records": ["bwb:9789811591532"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-28T05:38:41.836470"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-28T05:38:41.836470"}}
+/type/author /authors/OL1026422A 2 2008-08-20T20:55:15.141036 {"name": "Christian Strauss", "personal_name": "Christian Strauss", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T20:55:15.141036"}, "key": "/authors/OL1026422A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10264689A 1 2022-02-28T06:04:52.082975 {"type": {"key": "/type/author"}, "name": "Jose L. Fernandez", "key": "/authors/OL10264689A", "source_records": ["bwb:9781789383676"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-28T06:04:52.082975"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-28T06:04:52.082975"}}
+/type/author /authors/OL10265053A 1 2022-02-28T06:19:04.489586 {"type": {"key": "/type/author"}, "name": "Pressure Vessels and Piping Division Staff American Society of Mechanical Engineers", "key": "/authors/OL10265053A", "source_records": ["bwb:9780791858974"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-28T06:19:04.489586"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-28T06:19:04.489586"}}
+/type/author /authors/OL10265117A 1 2022-02-28T06:21:59.315278 {"type": {"key": "/type/author"}, "name": "Douwe Truijens", "key": "/authors/OL10265117A", "source_records": ["bwb:9783030646011"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-28T06:21:59.315278"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-28T06:21:59.315278"}}
+/type/author /authors/OL1026535A 2 2008-08-20T20:55:41.98095 {"name": "Gioacchino Tosi", "personal_name": "Gioacchino Tosi", "death_date": "1837", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T20:55:41.98095"}, "key": "/authors/OL1026535A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL1026540A 2 2008-08-20T20:55:49.00028 {"name": "Geo\u0304rgios Skempeas", "personal_name": "Geo\u0304rgios Skempeas", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T20:55:49.00028"}, "key": "/authors/OL1026540A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10265466A 1 2022-02-28T06:41:45.286328 {"type": {"key": "/type/author"}, "name": "Holger \u00f6ning", "key": "/authors/OL10265466A", "source_records": ["bwb:9783030667696"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-28T06:41:45.286328"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-28T06:41:45.286328"}}
+/type/author /authors/OL1026588A 1 2008-04-01T03:28:50.625462 {"name": "Cho, Ch\u02bbi-hun", "personal_name": "Cho, Ch\u02bbi-hun", "last_modified": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "key": "/authors/OL1026588A", "birth_date": "1956", "type": {"key": "/type/author"}, "revision": 1}
+/type/author /authors/OL1026650A 2 2008-08-20T20:56:32.796497 {"name": "Friedrich Wilhelm Deichmann", "personal_name": "Friedrich Wilhelm Deichmann", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T20:56:32.796497"}, "key": "/authors/OL1026650A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10266679A 1 2022-02-28T07:43:52.521289 {"type": {"key": "/type/author"}, "name": "Martin Bojaj", "key": "/authors/OL10266679A", "source_records": ["bwb:9781839624865"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-28T07:43:52.521289"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-28T07:43:52.521289"}}
+/type/author /authors/OL10266941A 1 2022-02-28T08:01:50.078688 {"type": {"key": "/type/author"}, "name": "The Tattoo Journalist", "key": "/authors/OL10266941A", "source_records": ["bwb:9780857829122"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-28T08:01:50.078688"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-28T08:01:50.078688"}}
+/type/author /authors/OL10267105A 1 2022-02-28T08:16:34.584591 {"type": {"key": "/type/author"}, "name": "Tibor Balazs", "key": "/authors/OL10267105A", "source_records": ["bwb:9780367276249"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-28T08:16:34.584591"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-28T08:16:34.584591"}}
+/type/author /authors/OL10267347A 1 2022-02-28T08:33:30.239032 {"type": {"key": "/type/author"}, "name": "Ghulam Ali Malul", "key": "/authors/OL10267347A", "source_records": ["bwb:9781999339012"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-28T08:33:30.239032"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-28T08:33:30.239032"}}
+/type/author /authors/OL10267507A 1 2022-02-28T08:40:14.404130 {"type": {"key": "/type/author"}, "name": "Kerrion Marsh", "key": "/authors/OL10267507A", "source_records": ["bwb:9781999622343"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-28T08:40:14.404130"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-28T08:40:14.404130"}}
+/type/author /authors/OL10267618A 1 2022-02-28T08:44:51.790984 {"type": {"key": "/type/author"}, "name": "Subhash Babu", "key": "/authors/OL10267618A", "source_records": ["bwb:9789948831174"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-28T08:44:51.790984"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-28T08:44:51.790984"}}
+/type/author /authors/OL10267750A 1 2022-02-28T08:48:24.595783 {"type": {"key": "/type/author"}, "name": "Nicola Sum", "key": "/authors/OL10267750A", "source_records": ["bwb:9781648027130"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-28T08:48:24.595783"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-28T08:48:24.595783"}}
+/type/author /authors/OL1026799A 2 2008-08-20T20:57:11.132995 {"name": "Georges van Hecke", "personal_name": "Georges van Hecke", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T20:57:11.132995"}, "key": "/authors/OL1026799A", "birth_date": "1915", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL102680A 2 2008-09-09T03:47:32.626696 {"name": "Erik Ilayappa\u0304racci", "personal_name": "Erik Ilayappa\u0304racci", "last_modified": {"type": "/type/datetime", "value": "2008-09-09T03:47:32.626696"}, "key": "/authors/OL102680A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10268155A 1 2022-02-28T09:10:06.289288 {"type": {"key": "/type/author"}, "name": "Diederik Vermeir", "key": "/authors/OL10268155A", "source_records": ["bwb:9789462362673"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-28T09:10:06.289288"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-28T09:10:06.289288"}}
+/type/author /authors/OL10268189A 1 2022-02-28T09:11:19.920210 {"type": {"key": "/type/author"}, "name": "Sam Squiers", "key": "/authors/OL10268189A", "source_records": ["bwb:9781912678624"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-28T09:11:19.920210"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-28T09:11:19.920210"}}
+/type/author /authors/OL10268604A 1 2022-02-28T09:25:36.636744 {"type": {"key": "/type/author"}, "name": "K. G\u00fcrlebeck", "key": "/authors/OL10268604A", "source_records": ["bwb:9783112576182"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-28T09:25:36.636744"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-28T09:25:36.636744"}}
+/type/author /authors/OL10269020A 1 2022-02-28T09:43:51.530422 {"type": {"key": "/type/author"}, "name": "Lola Flash", "key": "/authors/OL10269020A", "source_records": ["bwb:9781620977538"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-28T09:43:51.530422"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-28T09:43:51.530422"}}
+/type/author /authors/OL10269201A 1 2022-02-28T09:47:37.037422 {"type": {"key": "/type/author"}, "name": "Giuseppe Scium\u00e8", "key": "/authors/OL10269201A", "source_records": ["bwb:9783030966065"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-28T09:47:37.037422"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-28T09:47:37.037422"}}
+/type/author /authors/OL10269715A 1 2022-02-28T10:11:19.810795 {"type": {"key": "/type/author"}, "name": "Wilhelm Unverzagt", "key": "/authors/OL10269715A", "source_records": ["bwb:9783112574201"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-28T10:11:19.810795"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-28T10:11:19.810795"}}
+/type/author /authors/OL10270345A 1 2022-02-28T10:46:51.891172 {"type": {"key": "/type/author"}, "name": "Thomas Drennen", "key": "/authors/OL10270345A", "source_records": ["bwb:9781315136967"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-28T10:46:51.891172"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-28T10:46:51.891172"}}
+/type/author /authors/OL10271089A 1 2022-02-28T11:13:22.032564 {"type": {"key": "/type/author"}, "name": "Tom Petch", "key": "/authors/OL10271089A", "source_records": ["bwb:9780753559413"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-28T11:13:22.032564"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-28T11:13:22.032564"}}
+/type/author /authors/OL10271285A 1 2022-02-28T11:42:37.573844 {"type": {"key": "/type/author"}, "name": "Charles A. Cesaretti", "key": "/authors/OL10271285A", "source_records": ["bwb:9780816422968"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-28T11:42:37.573844"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-28T11:42:37.573844"}}
+/type/author /authors/OL10271837A 1 2022-02-28T14:40:33.937300 {"type": {"key": "/type/author"}, "name": "Shari Hill Yetto", "key": "/authors/OL10271837A", "source_records": ["bwb:9780976536932"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-28T14:40:33.937300"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-28T14:40:33.937300"}}
+/type/author /authors/OL10272161A 1 2022-02-28T16:48:57.803525 {"type": {"key": "/type/author"}, "name": "E. Kendall", "key": "/authors/OL10272161A", "source_records": ["bwb:9780063636095"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-28T16:48:57.803525"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-28T16:48:57.803525"}}
+/type/author /authors/OL1027229A 1 2008-04-01T03:28:50.625462 {"name": "Triennale europea dell'incisione (3rd 1987 Grado, Italy)", "last_modified": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "key": "/authors/OL1027229A", "type": {"key": "/type/author"}, "revision": 1}
+/type/author /authors/OL10272741A 1 2022-02-28T20:58:42.868303 {"type": {"key": "/type/author"}, "name": "Peter P. Pujad\u00f3", "key": "/authors/OL10272741A", "source_records": ["bwb:9781402028205"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-28T20:58:42.868303"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-28T20:58:42.868303"}}
+/type/author /authors/OL10272843A 1 2022-02-28T21:36:20.263357 {"type": {"key": "/type/author"}, "name": "Gloria L. Krahn", "key": "/authors/OL10272843A", "source_records": ["bwb:9780875531915"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-28T21:36:20.263357"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-28T21:36:20.263357"}}
+/type/author /authors/OL1027320A 2 2008-08-20T20:59:37.249705 {"name": "Mary MacPherson", "personal_name": "Mary MacPherson", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T20:59:37.249705"}, "key": "/authors/OL1027320A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10273254A 1 2022-02-28T23:32:51.890555 {"type": {"key": "/type/author"}, "name": "Jacob Neff", "key": "/authors/OL10273254A", "source_records": ["bwb:9781429021241"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-02-28T23:32:51.890555"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-28T23:32:51.890555"}}
+/type/author /authors/OL1027336A 2 2008-08-20T20:59:44.07543 {"name": "Horst-Heino von Borzeszkowski", "personal_name": "Horst-Heino von Borzeszkowski", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T20:59:44.07543"}, "key": "/authors/OL1027336A", "birth_date": "1940", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10273546A 1 2022-03-01T01:17:20.068355 {"type": {"key": "/type/author"}, "name": "Issac Tillinghast", "key": "/authors/OL10273546A", "source_records": ["bwb:9781429013024"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-01T01:17:20.068355"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-01T01:17:20.068355"}}
+/type/author /authors/OL10273554A 1 2022-03-01T01:21:21.542637 {"type": {"key": "/type/author"}, "name": "Ne-yo", "key": "/authors/OL10273554A", "source_records": ["bwb:9780061875717"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-01T01:21:21.542637"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-01T01:21:21.542637"}}
+/type/author /authors/OL10273920A 1 2022-03-01T03:13:50.014103 {"type": {"key": "/type/author"}, "name": "Nguyen Trung Thanh", "key": "/authors/OL10273920A", "source_records": ["bwb:9789054874348"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-01T03:13:50.014103"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-01T03:13:50.014103"}}
+/type/author /authors/OL10274001A 1 2022-03-01T03:37:43.210047 {"type": {"key": "/type/author"}, "name": "Cardinal Antonio Ca\u00f1izares", "key": "/authors/OL10274001A", "source_records": ["bwb:9781596986114"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-01T03:37:43.210047"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-01T03:37:43.210047"}}
+/type/author /authors/OL10274164A 1 2022-03-01T04:36:01.458012 {"type": {"key": "/type/author"}, "name": "Perry Boling", "key": "/authors/OL10274164A", "source_records": ["bwb:9781934615270"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-01T04:36:01.458012"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-01T04:36:01.458012"}}
+/type/author /authors/OL10274566A 1 2022-03-01T05:51:15.110376 {"type": {"key": "/type/author"}, "name": "Joachim Heinrich Knoll", "key": "/authors/OL10274566A", "source_records": ["bwb:9783111025322"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-01T05:51:15.110376"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-01T05:51:15.110376"}}
+/type/author /authors/OL10274906A 1 2022-03-01T06:53:32.817492 {"type": {"key": "/type/author"}, "name": "Anuj Saxena", "key": "/authors/OL10274906A", "source_records": ["bwb:9781604276572"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-01T06:53:32.817492"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-01T06:53:32.817492"}}
+/type/author /authors/OL10275347A 1 2022-03-01T08:07:49.080030 {"type": {"key": "/type/author"}, "name": "Alan Ram\u00f3n Clinton", "key": "/authors/OL10275347A", "source_records": ["bwb:9781137006974"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-01T08:07:49.080030"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-01T08:07:49.080030"}}
+/type/author /authors/OL10275353A 1 2022-03-01T08:08:30.879779 {"type": {"key": "/type/author"}, "name": "Juan-Carlos Moreno", "key": "/authors/OL10275353A", "source_records": ["bwb:9781781605462"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-01T08:08:30.879779"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-01T08:08:30.879779"}}
+/type/author /authors/OL10275357A 1 2022-03-01T08:08:45.714388 {"type": {"key": "/type/author"}, "name": "Luke Longstreet Sullivan", "key": "/authors/OL10275357A", "source_records": ["bwb:9780816682744"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-01T08:08:45.714388"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-01T08:08:45.714388"}}
+/type/author /authors/OL10275517A 1 2022-03-01T08:32:13.399527 {"type": {"key": "/type/author"}, "name": "Albrecht von Bitter", "key": "/authors/OL10275517A", "source_records": ["bwb:9783848704736"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-01T08:32:13.399527"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-01T08:32:13.399527"}}
+/type/author /authors/OL10275569A 1 2022-03-01T08:40:42.788235 {"type": {"key": "/type/author"}, "name": "Marla Schwartz", "key": "/authors/OL10275569A", "source_records": ["bwb:9781426897184"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-01T08:40:42.788235"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-01T08:40:42.788235"}}
+/type/author /authors/OL1027582A 2 2008-08-20T21:01:36.141671 {"name": "Stefan Kru\u0306stev", "personal_name": "Stefan Kru\u0306stev", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T21:01:36.141671"}, "key": "/authors/OL1027582A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10275895A 1 2022-03-01T09:30:11.457979 {"type": {"key": "/type/author"}, "name": "Colin Neenan", "key": "/authors/OL10275895A", "source_records": ["bwb:9780152012434"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-01T09:30:11.457979"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-01T09:30:11.457979"}}
+/type/author /authors/OL102762A 2 2008-09-09T03:48:30.578887 {"name": "Sumana Meharotra\u0304", "personal_name": "Sumana Meharotra\u0304", "last_modified": {"type": "/type/datetime", "value": "2008-09-09T03:48:30.578887"}, "key": "/authors/OL102762A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10276337A 1 2022-03-01T11:04:50.130084 {"type": {"key": "/type/author"}, "name": "Olga Marques", "key": "/authors/OL10276337A", "source_records": ["bwb:9780060452254"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-01T11:04:50.130084"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-01T11:04:50.130084"}}
+/type/author /authors/OL10277001A 1 2022-03-01T12:45:11.549050 {"type": {"key": "/type/author"}, "name": "Wilma Van Esch", "key": "/authors/OL10277001A", "source_records": ["bwb:9789221168751"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-01T12:45:11.549050"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-01T12:45:11.549050"}}
+/type/author /authors/OL10277049A 1 2022-03-01T12:47:17.809627 {"type": {"key": "/type/author"}, "name": "Derek Osborne", "key": "/authors/OL10277049A", "source_records": ["bwb:9789221147794"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-01T12:47:17.809627"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-01T12:47:17.809627"}}
+/type/author /authors/OL10277215A 1 2022-03-01T13:03:23.228511 {"type": {"key": "/type/author"}, "name": "Bayerisches Bayerisches Landesamt", "key": "/authors/OL10277215A", "source_records": ["bwb:9783486504569"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-01T13:03:23.228511"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-01T13:03:23.228511"}}
+/type/author /authors/OL10277244A 1 2022-03-01T13:09:17.653240 {"type": {"key": "/type/author"}, "name": "Bj\u00f6 Thies", "key": "/authors/OL10277244A", "source_records": ["bwb:9783642549175"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-01T13:09:17.653240"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-01T13:09:17.653240"}}
+/type/author /authors/OL10277518A 1 2022-03-01T13:59:29.455959 {"type": {"key": "/type/author"}, "name": "Abby Dening", "key": "/authors/OL10277518A", "source_records": ["bwb:9780062377739"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-01T13:59:29.455959"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-01T13:59:29.455959"}}
+/type/author /authors/OL10277781A 1 2022-03-01T14:21:12.028368 {"type": {"key": "/type/author"}, "name": "Y. Lesheim", "key": "/authors/OL10277781A", "source_records": ["bwb:9789401730938"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-01T14:21:12.028368"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-01T14:21:12.028368"}}
+/type/author /authors/OL10278078A 1 2022-03-01T14:45:07.131031 {"type": {"key": "/type/author"}, "name": "D. F. Botkin", "key": "/authors/OL10278078A", "source_records": ["bwb:9781461259503"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-01T14:45:07.131031"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-01T14:45:07.131031"}}
+/type/author /authors/OL10278279A 1 2022-03-01T15:00:10.564350 {"type": {"key": "/type/author"}, "name": "S\u00e1ndor Korossy", "key": "/authors/OL10278279A", "source_records": ["bwb:9781468409161"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-01T15:00:10.564350"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-01T15:00:10.564350"}}
+/type/author /authors/OL10278295A 1 2022-03-01T15:00:59.561712 {"type": {"key": "/type/author"}, "name": "M. de Villepin", "key": "/authors/OL10278295A", "source_records": ["bwb:9783322992697"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-01T15:00:59.561712"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-01T15:00:59.561712"}}
+/type/author /authors/OL10278316A 1 2022-03-01T15:02:48.084558 {"type": {"key": "/type/author"}, "name": "Joerg Moebius", "key": "/authors/OL10278316A", "source_records": ["bwb:9783663068426"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-01T15:02:48.084558"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-01T15:02:48.084558"}}
+/type/author /authors/OL10278507A 1 2022-03-01T15:20:37.045041 {"type": {"key": "/type/author"}, "name": "P. P. van der Werf", "key": "/authors/OL10278507A", "source_records": ["bwb:9789400917262"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-01T15:20:37.045041"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-01T15:20:37.045041"}}
+/type/author /authors/OL10278661A 1 2022-03-01T15:31:11.950403 {"type": {"key": "/type/author"}, "name": "J. T. Cushing", "key": "/authors/OL10278661A", "source_records": ["bwb:9789401587150"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-01T15:31:11.950403"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-01T15:31:11.950403"}}
+/type/author /authors/OL10278728A 1 2022-03-01T15:35:01.214381 {"type": {"key": "/type/author"}, "name": "Zeashan H. Khan", "key": "/authors/OL10278728A", "source_records": ["bwb:9789814585361"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-01T15:35:01.214381"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-01T15:35:01.214381"}}
+/type/author /authors/OL10279252A 1 2022-03-01T16:15:06.745365 {"type": {"key": "/type/author"}, "name": "Mircea Radulian", "key": "/authors/OL10279252A", "source_records": ["bwb:9783034884150"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-01T16:15:06.745365"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-01T16:15:06.745365"}}
+/type/author /authors/OL10279448A 1 2022-03-01T16:28:13.063967 {"type": {"key": "/type/author"}, "name": "Lincoln Wallen", "key": "/authors/OL10279448A", "source_records": ["bwb:9783642968686"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-01T16:28:13.063967"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-01T16:28:13.063967"}}
+/type/author /authors/OL10279549A 1 2022-03-01T17:00:59.027926 {"type": {"key": "/type/author"}, "name": "Sonia Huang", "key": "/authors/OL10279549A", "source_records": ["bwb:9781940561042"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-01T17:00:59.027926"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-01T17:00:59.027926"}}
+/type/author /authors/OL10279760A 1 2022-03-01T17:29:11.314511 {"type": {"key": "/type/author"}, "name": "Sam C. Stiger", "key": "/authors/OL10279760A", "source_records": ["bwb:9781611608021"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-01T17:29:11.314511"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-01T17:29:11.314511"}}
+/type/author /authors/OL10279868A 1 2022-03-01T17:41:57.767440 {"type": {"key": "/type/author"}, "name": "Pascal Amel", "key": "/authors/OL10279868A", "source_records": ["bwb:9782757208748"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-01T17:41:57.767440"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-01T17:41:57.767440"}}
+/type/author /authors/OL10279970A 1 2022-03-01T18:40:49.761323 {"type": {"key": "/type/author"}, "name": "D. J. Risenga", "key": "/authors/OL10279970A", "source_records": ["bwb:9781868886722"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-01T18:40:49.761323"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-01T18:40:49.761323"}}
+/type/author /authors/OL10280143A 1 2022-03-01T19:24:04.673928 {"type": {"key": "/type/author"}, "name": "Lily-Anne Stroobach", "key": "/authors/OL10280143A", "source_records": ["bwb:9781775490821"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-01T19:24:04.673928"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-01T19:24:04.673928"}}
+/type/author /authors/OL10280379A 1 2022-03-01T19:51:44.530812 {"type": {"key": "/type/author"}, "name": "D. Granger", "key": "/authors/OL10280379A", "source_records": ["bwb:9781137122520"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-01T19:51:44.530812"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-01T19:51:44.530812"}}
+/type/author /authors/OL10280437A 1 2022-03-01T20:02:25.135296 {"type": {"key": "/type/author"}, "name": "Allan Descheneau", "key": "/authors/OL10280437A", "source_records": ["bwb:9781498298858"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-01T20:02:25.135296"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-01T20:02:25.135296"}}
+/type/author /authors/OL10280533A 1 2022-03-01T20:20:30.895757 {"type": {"key": "/type/author"}, "name": "Gabriel Szkely", "key": "/authors/OL10280533A", "source_records": ["bwb:9781349131280"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-01T20:20:30.895757"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-01T20:20:30.895757"}}
+/type/author /authors/OL10280547A 1 2022-03-01T20:23:04.613449 {"type": {"key": "/type/author"}, "name": "Michael J. Messina", "key": "/authors/OL10280547A", "source_records": ["bwb:9781137560452"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-01T20:23:04.613449"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-01T20:23:04.613449"}}
+/type/author /authors/OL10280597A 1 2022-03-01T20:31:20.617615 {"type": {"key": "/type/author"}, "name": "Nina Hossain", "key": "/authors/OL10280597A", "source_records": ["bwb:9783848720804"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-01T20:31:20.617615"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-01T20:31:20.617615"}}
+/type/author /authors/OL1028065A 1 2008-04-01T03:28:50.625462 {"name": "World's Columbian Exposition (1893 Chicago, Ill.).", "last_modified": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "key": "/authors/OL1028065A", "type": {"key": "/type/author"}, "revision": 1}
+/type/author /authors/OL1028092A 4 2020-09-30T16:17:12.967370 {"personal_name": "A. V. Venediktov", "last_modified": {"type": "/type/datetime", "value": "2020-09-30T16:17:12.967370"}, "latest_revision": 4, "key": "/authors/OL1028092A", "remote_ids": {"viaf": "13871886", "wikidata": "Q4107122", "isni": "0000000117446162"}, "name": "A. V. Venediktov", "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "death_date": "1959", "birth_date": "1887", "type": {"key": "/type/author"}, "revision": 4}
+/type/author /authors/OL10281061A 1 2022-03-01T22:45:41.123680 {"type": {"key": "/type/author"}, "name": "Coders American Academy of", "key": "/authors/OL10281061A", "source_records": ["bwb:9781260436143"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-01T22:45:41.123680"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-01T22:45:41.123680"}}
+/type/author /authors/OL10281330A 1 2022-03-01T23:10:00.118629 {"type": {"key": "/type/author"}, "name": "Claudio Oltremonti", "key": "/authors/OL10281330A", "source_records": ["bwb:9781072922360"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-01T23:10:00.118629"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-01T23:10:00.118629"}}
+/type/author /authors/OL10281343A 1 2022-03-01T23:10:30.967198 {"type": {"key": "/type/author"}, "name": "J. E. rome", "key": "/authors/OL10281343A", "source_records": ["bwb:9781951591069"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-01T23:10:30.967198"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-01T23:10:30.967198"}}
+/type/author /authors/OL10281402A 1 2022-03-01T23:18:01.600848 {"type": {"key": "/type/author"}, "name": "Tyler Wetherall", "key": "/authors/OL10281402A", "source_records": ["bwb:9781250112200"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-01T23:18:01.600848"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-01T23:18:01.600848"}}
+/type/author /authors/OL10281465A 1 2022-03-01T23:28:35.427436 {"type": {"key": "/type/author"}, "name": "Simon Sikora", "key": "/authors/OL10281465A", "source_records": ["bwb:9783170338401"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-01T23:28:35.427436"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-01T23:28:35.427436"}}
+/type/author /authors/OL10281540A 1 2022-03-01T23:36:32.172523 {"type": {"key": "/type/author"}, "name": "Jean-Marc De Vos", "key": "/authors/OL10281540A", "source_records": ["bwb:9781091159037"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-01T23:36:32.172523"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-01T23:36:32.172523"}}
+/type/author /authors/OL10281544A 1 2022-03-01T23:36:39.655355 {"type": {"key": "/type/author"}, "name": "Garima Saxena Khusboo Saxena Verma", "key": "/authors/OL10281544A", "source_records": ["bwb:9788183335454"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-01T23:36:39.655355"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-01T23:36:39.655355"}}
+/type/author /authors/OL10281601A 1 2022-03-01T23:42:07.085148 {"type": {"key": "/type/author"}, "name": "Cuca Vincenzo", "key": "/authors/OL10281601A", "source_records": ["bwb:9781503748057"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-01T23:42:07.085148"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-01T23:42:07.085148"}}
+/type/author /authors/OL10281704A 1 2022-03-01T23:53:18.254962 {"type": {"key": "/type/author"}, "name": "Mark Sherwood", "key": "/authors/OL10281704A", "source_records": ["bwb:9781936487424"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-01T23:53:18.254962"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-01T23:53:18.254962"}}
+/type/author /authors/OL10282122A 1 2022-03-02T00:47:47.139573 {"type": {"key": "/type/author"}, "name": "T. L. Bohr", "key": "/authors/OL10282122A", "source_records": ["bwb:9781728709703"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T00:47:47.139573"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T00:47:47.139573"}}
+/type/author /authors/OL10282732A 1 2022-03-02T02:02:52.363997 {"type": {"key": "/type/author"}, "name": "Notierbuch Kunstbuch", "key": "/authors/OL10282732A", "source_records": ["bwb:9781071025321"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T02:02:52.363997"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T02:02:52.363997"}}
+/type/author /authors/OL10283185A 1 2022-03-02T03:06:04.695745 {"type": {"key": "/type/author"}, "name": "Windy Mindy Creations", "key": "/authors/OL10283185A", "source_records": ["bwb:9781720049852"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T03:06:04.695745"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T03:06:04.695745"}}
+/type/author /authors/OL10284080A 1 2022-03-02T04:28:46.403957 {"type": {"key": "/type/author"}, "name": "Josiane FRANCES SAINT SUPERY", "key": "/authors/OL10284080A", "source_records": ["bwb:9798655077218"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T04:28:46.403957"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T04:28:46.403957"}}
+/type/author /authors/OL10284218A 1 2022-03-02T04:38:33.929677 {"type": {"key": "/type/author"}, "name": "P. A. Y. PERACK", "key": "/authors/OL10284218A", "source_records": ["bwb:9798665538785"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T04:38:33.929677"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T04:38:33.929677"}}
+/type/author /authors/OL10284238A 1 2022-03-02T04:39:02.635017 {"type": {"key": "/type/author"}, "name": "Alan Erdogan", "key": "/authors/OL10284238A", "source_records": ["bwb:9798669155582"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T04:39:02.635017"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T04:39:02.635017"}}
+/type/author /authors/OL10284278A 1 2022-03-02T04:40:51.373454 {"type": {"key": "/type/author"}, "name": "316 Publishing", "key": "/authors/OL10284278A", "source_records": ["bwb:9781937212407"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T04:40:51.373454"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T04:40:51.373454"}}
+/type/author /authors/OL10284473A 1 2022-03-02T04:50:18.230294 {"type": {"key": "/type/author"}, "name": "Jeffrey Gonell", "key": "/authors/OL10284473A", "source_records": ["bwb:9798690006808"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T04:50:18.230294"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T04:50:18.230294"}}
+/type/author /authors/OL10284913A 1 2022-03-02T05:07:34.332647 {"type": {"key": "/type/author"}, "name": "Yemurai Mafi", "key": "/authors/OL10284913A", "source_records": ["bwb:9781736473009"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T05:07:34.332647"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T05:07:34.332647"}}
+/type/author /authors/OL10285264A 1 2022-03-02T05:24:08.702061 {"type": {"key": "/type/author"}, "name": "Hari Patel", "key": "/authors/OL10285264A", "source_records": ["bwb:9798582406617"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T05:24:08.702061"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T05:24:08.702061"}}
+/type/author /authors/OL10286408A 1 2022-03-02T06:23:20.360694 {"type": {"key": "/type/author"}, "name": "Benjamin Topp", "key": "/authors/OL10286408A", "source_records": ["bwb:9783847114000"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T06:23:20.360694"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T06:23:20.360694"}}
+/type/author /authors/OL10286479A 1 2022-03-02T06:25:11.476709 {"type": {"key": "/type/author"}, "name": "Sabine Zorn", "key": "/authors/OL10286479A", "source_records": ["bwb:9783374071371"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T06:25:11.476709"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T06:25:11.476709"}}
+/type/author /authors/OL10286639A 1 2022-03-02T06:32:42.196539 {"type": {"key": "/type/author"}, "name": "Marti DeLiema", "key": "/authors/OL10286639A", "source_records": ["bwb:9781946135773"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T06:32:42.196539"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T06:32:42.196539"}}
+/type/author /authors/OL1028669A 2 2008-08-19T21:49:45.713881 {"name": "Carlo Bertolazzi", "personal_name": "Carlo Bertolazzi", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T21:49:45.713881"}, "key": "/authors/OL1028669A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL1028681A 3 2020-09-30T19:24:23.150251 {"personal_name": "\u0110a\u0300o, Ta\u0301\u0302n", "last_modified": {"type": "/type/datetime", "value": "2020-09-30T19:24:23.150251"}, "latest_revision": 3, "key": "/authors/OL1028681A", "remote_ids": {"viaf": "63101008", "wikidata": "Q10840478", "isni": "0000000027446492"}, "name": "\u0110a\u0300o, Ta\u0301\u0302n", "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "death_date": "1907", "birth_date": "1845", "type": {"key": "/type/author"}, "revision": 3}
+/type/author /authors/OL10286901A 1 2022-03-02T06:44:57.635368 {"type": {"key": "/type/author"}, "name": "Donald Ferruzzi", "key": "/authors/OL10286901A", "source_records": ["bwb:9780978796839"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T06:44:57.635368"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T06:44:57.635368"}}
+/type/author /authors/OL10287616A 1 2022-03-02T07:13:53.289688 {"type": {"key": "/type/author"}, "name": "Linguist Publishing", "key": "/authors/OL10287616A", "source_records": ["bwb:9798772665299"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T07:13:53.289688"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T07:13:53.289688"}}
+/type/author /authors/OL10287694A 1 2022-03-02T07:17:08.487520 {"type": {"key": "/type/author"}, "name": "drgon lion", "key": "/authors/OL10287694A", "source_records": ["bwb:9798791339683"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T07:17:08.487520"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T07:17:08.487520"}}
+/type/author /authors/OL10288036A 1 2022-03-02T07:32:28.086976 {"type": {"key": "/type/author"}, "name": "Blue-eyed Raincoat Press", "key": "/authors/OL10288036A", "source_records": ["bwb:9798490920472"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T07:32:28.086976"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T07:32:28.086976"}}
+/type/author /authors/OL10288731A 1 2022-03-02T08:05:06.866993 {"type": {"key": "/type/author"}, "name": "I'm Dead Now What Journals", "key": "/authors/OL10288731A", "source_records": ["bwb:9798786486279"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T08:05:06.866993"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T08:05:06.866993"}}
+/type/author /authors/OL10288848A 1 2022-03-02T08:10:45.788366 {"type": {"key": "/type/author"}, "name": "True Paradox", "key": "/authors/OL10288848A", "source_records": ["bwb:9798759469797"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T08:10:45.788366"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T08:10:45.788366"}}
+/type/author /authors/OL10288852A 1 2022-03-02T08:10:56.334022 {"type": {"key": "/type/author"}, "name": "Harland Michitsch", "key": "/authors/OL10288852A", "source_records": ["bwb:9798470276100"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T08:10:56.334022"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T08:10:56.334022"}}
+/type/author /authors/OL10289015A 1 2022-03-02T08:20:17.490117 {"type": {"key": "/type/author"}, "name": "Maine Coon 2022 Calendar", "key": "/authors/OL10289015A", "source_records": ["bwb:9798772728345"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T08:20:17.490117"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T08:20:17.490117"}}
+/type/author /authors/OL10289344A 1 2022-03-02T08:38:01.924140 {"type": {"key": "/type/author"}, "name": "Rilakkuma", "key": "/authors/OL10289344A", "source_records": ["bwb:9798783431272"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T08:38:01.924140"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T08:38:01.924140"}}
+/type/author /authors/OL10289435A 1 2022-03-02T08:43:04.228817 {"type": {"key": "/type/author"}, "name": "Alejandra Hern\u00e1ndez S\u00e1nchez", "key": "/authors/OL10289435A", "source_records": ["bwb:9798789039519"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T08:43:04.228817"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T08:43:04.228817"}}
+/type/author /authors/OL1028971A 2 2008-08-19T21:51:06.769379 {"name": "Camillus de Carlo", "personal_name": "Camillus de Carlo", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T21:51:06.769379"}, "key": "/authors/OL1028971A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10289962A 1 2022-03-02T09:18:10.462036 {"type": {"key": "/type/author"}, "name": "drgon lay klay", "key": "/authors/OL10289962A", "source_records": ["bwb:9798790499012"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T09:18:10.462036"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T09:18:10.462036"}}
+/type/author /authors/OL10289990A 1 2022-03-02T09:19:47.538126 {"type": {"key": "/type/author"}, "name": "Gabriel Ashbe", "key": "/authors/OL10289990A", "source_records": ["bwb:9798494859815"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T09:19:47.538126"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T09:19:47.538126"}}
+/type/author /authors/OL10290139A 1 2022-03-02T09:28:58.295289 {"type": {"key": "/type/author"}, "name": "Brayan Sandoval", "key": "/authors/OL10290139A", "source_records": ["bwb:9798792737778"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T09:28:58.295289"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T09:28:58.295289"}}
+/type/author /authors/OL1029025A 2 2008-08-19T21:51:23.670866 {"name": "John L. Respess", "personal_name": "John L. Respess", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T21:51:23.670866"}, "key": "/authors/OL1029025A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10290272A 1 2022-03-02T09:37:51.085269 {"type": {"key": "/type/author"}, "name": "Silo ALXANDER", "key": "/authors/OL10290272A", "source_records": ["bwb:9798710141199"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T09:37:51.085269"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T09:37:51.085269"}}
+/type/author /authors/OL10290391A 1 2022-03-02T09:43:58.285048 {"type": {"key": "/type/author"}, "name": "sain hamzi", "key": "/authors/OL10290391A", "source_records": ["bwb:9798790023774"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T09:43:58.285048"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T09:43:58.285048"}}
+/type/author /authors/OL10290411A 1 2022-03-02T09:44:45.929946 {"type": {"key": "/type/author"}, "name": "Ahmed Rashad", "key": "/authors/OL10290411A", "source_records": ["bwb:9798791732729"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T09:44:45.929946"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T09:44:45.929946"}}
+/type/author /authors/OL10290484A 1 2022-03-02T09:49:43.968885 {"type": {"key": "/type/author"}, "name": "Huggy wuggy Books", "key": "/authors/OL10290484A", "source_records": ["bwb:9798779902885"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T09:49:43.968885"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T09:49:43.968885"}}
+/type/author /authors/OL10290871A 1 2022-03-02T10:11:22.216903 {"type": {"key": "/type/author"}, "name": "Defendente Sacchi", "key": "/authors/OL10290871A", "source_records": ["bwb:9798453704439"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T10:11:22.216903"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T10:11:22.216903"}}
+/type/author /authors/OL10291090A 1 2022-03-02T10:22:02.331238 {"type": {"key": "/type/author"}, "name": "drgon lon", "key": "/authors/OL10291090A", "source_records": ["bwb:9798790498794"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T10:22:02.331238"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T10:22:02.331238"}}
+/type/author /authors/OL10292139A 1 2022-03-02T11:27:21.131167 {"type": {"key": "/type/author"}, "name": "Social Books", "key": "/authors/OL10292139A", "source_records": ["bwb:9798500441799"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T11:27:21.131167"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T11:27:21.131167"}}
+/type/author /authors/OL10292351A 1 2022-03-02T11:41:03.399775 {"type": {"key": "/type/author"}, "name": "lilia cristina", "key": "/authors/OL10292351A", "source_records": ["bwb:9798736343195"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T11:41:03.399775"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T11:41:03.399775"}}
+/type/author /authors/OL10292784A 1 2022-03-02T12:07:39.559962 {"type": {"key": "/type/author"}, "name": "Carrie West", "key": "/authors/OL10292784A", "source_records": ["bwb:9798464343344"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T12:07:39.559962"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T12:07:39.559962"}}
+/type/author /authors/OL10293308A 1 2022-03-02T12:47:20.062053 {"type": {"key": "/type/author"}, "name": "C. A. T. WET", "key": "/authors/OL10293308A", "source_records": ["bwb:9798764190129"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T12:47:20.062053"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T12:47:20.062053"}}
+/type/author /authors/OL10293642A 1 2022-03-02T13:10:25.409985 {"type": {"key": "/type/author"}, "name": "plans of strategy publishing", "key": "/authors/OL10293642A", "source_records": ["bwb:9798740336534"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T13:10:25.409985"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T13:10:25.409985"}}
+/type/author /authors/OL10293673A 2 2022-04-12T20:52:00.326453 {"type": {"key": "/type/author"}, "name": "\u516b\u7f85\u6587\u660e", "key": "/authors/OL10293673A", "source_records": ["bwb:9798750885077"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2022-03-02T13:12:40.671864"}, "last_modified": {"type": "/type/datetime", "value": "2022-04-12T20:52:00.326453"}}
+/type/author /authors/OL10294020A 1 2022-03-02T13:38:05.839534 {"type": {"key": "/type/author"}, "name": "Ijran Beg", "key": "/authors/OL10294020A", "source_records": ["bwb:9798793312240"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T13:38:05.839534"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T13:38:05.839534"}}
+/type/author /authors/OL10294097A 1 2022-03-02T13:44:08.201821 {"type": {"key": "/type/author"}, "name": "G. A. G. Gift Animal", "key": "/authors/OL10294097A", "source_records": ["bwb:9798778041547"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T13:44:08.201821"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T13:44:08.201821"}}
+/type/author /authors/OL10294184A 1 2022-03-02T13:50:16.986328 {"type": {"key": "/type/author"}, "name": "Lexi Notebooks", "key": "/authors/OL10294184A", "source_records": ["bwb:9798787454239"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T13:50:16.986328"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T13:50:16.986328"}}
+/type/author /authors/OL10294721A 1 2022-03-02T14:17:44.679506 {"type": {"key": "/type/author"}, "name": "Ada Ann Johnson Osbey", "key": "/authors/OL10294721A", "source_records": ["bwb:9781950894659"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T14:17:44.679506"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T14:17:44.679506"}}
+/type/author /authors/OL1029476A 2 2008-08-19T21:53:30.72042 {"name": "Edgard de Moura Bittencourt", "personal_name": "Edgard de Moura Bittencourt", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T21:53:30.72042"}, "key": "/authors/OL1029476A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10294846A 1 2022-03-02T14:21:43.237677 {"type": {"key": "/type/author"}, "name": "Greg Forbis", "key": "/authors/OL10294846A", "source_records": ["bwb:9780578355559"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T14:21:43.237677"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T14:21:43.237677"}}
+/type/author /authors/OL10295101A 1 2022-03-02T14:33:22.329519 {"type": {"key": "/type/author"}, "name": "R. B. Caixeta", "key": "/authors/OL10295101A", "source_records": ["bwb:9781734948936"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T14:33:22.329519"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T14:33:22.329519"}}
+/type/author /authors/OL10295144A 1 2022-03-02T14:34:28.901482 {"type": {"key": "/type/author"}, "name": "Harry Shepard", "key": "/authors/OL10295144A", "source_records": ["bwb:9781956882070"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T14:34:28.901482"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T14:34:28.901482"}}
+/type/author /authors/OL10295204A 1 2022-03-02T14:35:45.432922 {"type": {"key": "/type/author"}, "name": "Paul A. Chick", "key": "/authors/OL10295204A", "source_records": ["bwb:9781006047503"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T14:35:45.432922"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T14:35:45.432922"}}
+/type/author /authors/OL10295862A 1 2022-03-02T14:56:26.509772 {"type": {"key": "/type/author"}, "name": "Monique Carter", "key": "/authors/OL10295862A", "source_records": ["bwb:9781087890975"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T14:56:26.509772"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T14:56:26.509772"}}
+/type/author /authors/OL10296443A 1 2022-03-02T15:07:28.565204 {"type": {"key": "/type/author"}, "name": "Viki Zarkin", "key": "/authors/OL10296443A", "source_records": ["bwb:9781737872900"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T15:07:28.565204"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T15:07:28.565204"}}
+/type/author /authors/OL10296719A 1 2022-03-02T15:19:40.279676 {"type": {"key": "/type/author"}, "name": "1st Tarush Chandra", "key": "/authors/OL10296719A", "source_records": ["bwb:9781685762223"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T15:19:40.279676"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T15:19:40.279676"}}
+/type/author /authors/OL10296826A 1 2022-03-02T15:24:50.200253 {"type": {"key": "/type/author"}, "name": "La Tonya Anderson", "key": "/authors/OL10296826A", "source_records": ["bwb:9781664189850"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T15:24:50.200253"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T15:24:50.200253"}}
+/type/author /authors/OL10297059A 1 2022-03-02T15:34:31.648002 {"type": {"key": "/type/author"}, "name": "Taro's Origami Studio", "key": "/authors/OL10297059A", "source_records": ["bwb:9798985602906"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T15:34:31.648002"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T15:34:31.648002"}}
+/type/author /authors/OL10297232A 1 2022-03-02T15:41:26.345510 {"type": {"key": "/type/author"}, "name": "Munaf Sherani", "key": "/authors/OL10297232A", "source_records": ["bwb:9798775626877"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T15:41:26.345510"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T15:41:26.345510"}}
+/type/author /authors/OL10297273A 1 2022-03-02T15:42:49.351013 {"type": {"key": "/type/author"}, "name": "Embiid Melo", "key": "/authors/OL10297273A", "source_records": ["bwb:9798758528396"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T15:42:49.351013"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T15:42:49.351013"}}
+/type/author /authors/OL10297476A 1 2022-03-02T15:53:54.715911 {"type": {"key": "/type/author"}, "name": "DevilsHV Notebook", "key": "/authors/OL10297476A", "source_records": ["bwb:9781677982950"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T15:53:54.715911"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T15:53:54.715911"}}
+/type/author /authors/OL10297778A 1 2022-03-02T16:12:11.743896 {"type": {"key": "/type/author"}, "name": "Sincerely Kait", "key": "/authors/OL10297778A", "source_records": ["bwb:9798489771733"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T16:12:11.743896"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T16:12:11.743896"}}
+/type/author /authors/OL10297841A 1 2022-03-02T16:16:19.071144 {"type": {"key": "/type/author"}, "name": "Books by Shay", "key": "/authors/OL10297841A", "source_records": ["bwb:9798504803678"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T16:16:19.071144"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T16:16:19.071144"}}
+/type/author /authors/OL10298068A 1 2022-03-02T16:32:37.802043 {"type": {"key": "/type/author"}, "name": "Just Journals Publications", "key": "/authors/OL10298068A", "source_records": ["bwb:9798521396474"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T16:32:37.802043"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T16:32:37.802043"}}
+/type/author /authors/OL10298259A 1 2022-03-02T16:48:13.884216 {"type": {"key": "/type/author"}, "name": "abdelk aso", "key": "/authors/OL10298259A", "source_records": ["bwb:9798698971498"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T16:48:13.884216"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T16:48:13.884216"}}
+/type/author /authors/OL10298462A 1 2022-03-02T17:03:32.457865 {"type": {"key": "/type/author"}, "name": "Pinedan Zecha", "key": "/authors/OL10298462A", "source_records": ["bwb:9798468752715"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T17:03:32.457865"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T17:03:32.457865"}}
+/type/author /authors/OL10298554A 1 2022-03-02T17:10:17.028807 {"type": {"key": "/type/author"}, "name": "todo Arts", "key": "/authors/OL10298554A", "source_records": ["bwb:9798794311044"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T17:10:17.028807"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T17:10:17.028807"}}
+/type/author /authors/OL10298558A 1 2022-03-02T17:10:43.486513 {"type": {"key": "/type/author"}, "name": "Arup Satpati", "key": "/authors/OL10298558A", "source_records": ["bwb:9798796436189"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T17:10:43.486513"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T17:10:43.486513"}}
+/type/author /authors/OL10299228A 1 2022-03-02T17:58:50.008906 {"type": {"key": "/type/author"}, "name": "Paulo Matheus Souza de Souza", "key": "/authors/OL10299228A", "source_records": ["bwb:9798594214934"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T17:58:50.008906"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T17:58:50.008906"}}
+/type/author /authors/OL10299340A 1 2022-03-02T18:06:28.976877 {"type": {"key": "/type/author"}, "name": "LY-Password Books", "key": "/authors/OL10299340A", "source_records": ["bwb:9798770325638"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T18:06:28.976877"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T18:06:28.976877"}}
+/type/author /authors/OL1029962A 5 2020-09-30T12:55:41.874666 {"personal_name": "Roberto Roversi", "last_modified": {"type": "/type/datetime", "value": "2020-09-30T12:55:41.874666"}, "latest_revision": 5, "key": "/authors/OL1029962A", "remote_ids": {"viaf": "34505841", "wikidata": "Q642814", "isni": "0000000056835809"}, "name": "Roberto Roversi", "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "death_date": "2012", "birth_date": "1923", "type": {"key": "/type/author"}, "revision": 5}
+/type/author /authors/OL10299857A 1 2022-03-02T18:46:02.590009 {"type": {"key": "/type/author"}, "name": "Buster Jaiden", "key": "/authors/OL10299857A", "source_records": ["bwb:9798571066396"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T18:46:02.590009"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T18:46:02.590009"}}
+/type/author /authors/OL10300187A 1 2022-03-02T19:11:03.608678 {"type": {"key": "/type/author"}, "name": "Nerdy Crayon", "key": "/authors/OL10300187A", "source_records": ["bwb:9798537635536"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T19:11:03.608678"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T19:11:03.608678"}}
+/type/author /authors/OL10300470A 1 2022-03-02T19:32:59.972582 {"type": {"key": "/type/author"}, "name": "Stephanie A. Neal", "key": "/authors/OL10300470A", "source_records": ["bwb:9798760444226"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T19:32:59.972582"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T19:32:59.972582"}}
+/type/author /authors/OL10300642A 1 2022-03-02T19:45:29.791295 {"type": {"key": "/type/author"}, "name": "Valerian Grant", "key": "/authors/OL10300642A", "source_records": ["bwb:9798775666835"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T19:45:29.791295"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T19:45:29.791295"}}
+/type/author /authors/OL10300736A 1 2022-03-02T19:51:20.033265 {"type": {"key": "/type/author"}, "name": "Alberto Hetman", "key": "/authors/OL10300736A", "source_records": ["bwb:9798790214721"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T19:51:20.033265"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T19:51:20.033265"}}
+/type/author /authors/OL10300802A 1 2022-03-02T19:56:21.744529 {"type": {"key": "/type/author"}, "name": "brain for", "key": "/authors/OL10300802A", "source_records": ["bwb:9798785955226"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T19:56:21.744529"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T19:56:21.744529"}}
+/type/author /authors/OL103008A 2 2008-09-09T03:50:30.982137 {"name": "B. T. Lawani", "personal_name": "B. T. Lawani", "last_modified": {"type": "/type/datetime", "value": "2008-09-09T03:50:30.982137"}, "key": "/authors/OL103008A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10301232A 1 2022-03-02T20:30:35.697390 {"type": {"key": "/type/author"}, "name": "Harrick Don", "key": "/authors/OL10301232A", "source_records": ["bwb:9798554254925"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T20:30:35.697390"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T20:30:35.697390"}}
+/type/author /authors/OL10301316A 1 2022-03-02T20:38:20.598311 {"type": {"key": "/type/author"}, "name": "Floral publishing", "key": "/authors/OL10301316A", "source_records": ["bwb:9798530745850"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T20:38:20.598311"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T20:38:20.598311"}}
+/type/author /authors/OL10301404A 1 2022-03-02T20:45:03.312649 {"type": {"key": "/type/author"}, "name": "Nelson Larrosa", "key": "/authors/OL10301404A", "source_records": ["bwb:9781726602266"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T20:45:03.312649"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T20:45:03.312649"}}
+/type/author /authors/OL1030150A 2 2008-08-19T21:56:53.014819 {"name": "Ruggero Crivelli", "personal_name": "Ruggero Crivelli", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T21:56:53.014819"}, "key": "/authors/OL1030150A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10301511A 1 2022-03-02T20:53:44.772686 {"type": {"key": "/type/author"}, "name": "Noel joy", "key": "/authors/OL10301511A", "source_records": ["bwb:9798773822127"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T20:53:44.772686"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T20:53:44.772686"}}
+/type/author /authors/OL10301725A 1 2022-03-02T21:12:01.517363 {"type": {"key": "/type/author"}, "name": "Carter, M.Ed., Brennen", "key": "/authors/OL10301725A", "source_records": ["bwb:9798677410697"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T21:12:01.517363"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T21:12:01.517363"}}
+/type/author /authors/OL10301755A 1 2022-03-02T21:14:35.552630 {"type": {"key": "/type/author"}, "name": "Flowers Exotic", "key": "/authors/OL10301755A", "source_records": ["bwb:9798763909500"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T21:14:35.552630"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T21:14:35.552630"}}
+/type/author /authors/OL1030193A 2 2008-08-19T21:57:03.837677 {"name": "Kristina Nyman", "personal_name": "Kristina Nyman", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T21:57:03.837677"}, "key": "/authors/OL1030193A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10302002A 1 2022-03-02T21:34:28.114734 {"type": {"key": "/type/author"}, "name": "RoseMary Gabriel", "key": "/authors/OL10302002A", "source_records": ["bwb:9798511749136"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T21:34:28.114734"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T21:34:28.114734"}}
+/type/author /authors/OL10302214A 1 2022-03-02T21:49:51.705830 {"type": {"key": "/type/author"}, "name": "period tracker press", "key": "/authors/OL10302214A", "source_records": ["bwb:9798795279367"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T21:49:51.705830"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T21:49:51.705830"}}
+/type/author /authors/OL10302407A 1 2022-03-02T22:02:34.577980 {"type": {"key": "/type/author"}, "name": "Ver\u00f3nica Garey", "key": "/authors/OL10302407A", "source_records": ["bwb:9798520487319"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T22:02:34.577980"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T22:02:34.577980"}}
+/type/author /authors/OL10302422A 1 2022-03-02T22:03:27.209971 {"type": {"key": "/type/author"}, "name": "Jackson Op", "key": "/authors/OL10302422A", "source_records": ["bwb:9798499502600"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T22:03:27.209971"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T22:03:27.209971"}}
+/type/author /authors/OL10302581A 1 2022-03-02T22:15:53.561386 {"type": {"key": "/type/author"}, "name": "Continuous Improvement Consultant wez", "key": "/authors/OL10302581A", "source_records": ["bwb:9798469732044"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T22:15:53.561386"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T22:15:53.561386"}}
+/type/author /authors/OL1030306A 2 2008-08-19T21:57:36.530845 {"name": "Jean-Robert Sansfac\u0327on", "personal_name": "Jean-Robert Sansfac\u0327on", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T21:57:36.530845"}, "key": "/authors/OL1030306A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10303621A 1 2022-03-02T23:22:49.651244 {"type": {"key": "/type/author"}, "name": "Daniel McGhee", "key": "/authors/OL10303621A", "source_records": ["bwb:9781733948517"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T23:22:49.651244"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T23:22:49.651244"}}
+/type/author /authors/OL10303691A 1 2022-03-02T23:24:35.085013 {"type": {"key": "/type/author"}, "name": "Gwenda C. Hopkins", "key": "/authors/OL10303691A", "source_records": ["bwb:9798985612608"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T23:24:35.085013"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T23:24:35.085013"}}
+/type/author /authors/OL10303967A 1 2022-03-02T23:36:13.916593 {"type": {"key": "/type/author"}, "name": "Ichhya Neupane", "key": "/authors/OL10303967A", "source_records": ["bwb:9781685362973"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T23:36:13.916593"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T23:36:13.916593"}}
+/type/author /authors/OL10303A 1 2008-04-01T03:28:50.625462 {"name": "Nas\u0323i\u0304r Kot\u0323i\u0304", "personal_name": "Nas\u0323i\u0304r Kot\u0323i\u0304", "last_modified": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "key": "/authors/OL10303A", "birth_date": "1936", "type": {"key": "/type/author"}, "revision": 1}
+/type/author /authors/OL10304138A 1 2022-03-02T23:44:01.643661 {"type": {"key": "/type/author"}, "name": "Audra Bellmore", "key": "/authors/OL10304138A", "source_records": ["bwb:9780890136706"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T23:44:01.643661"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T23:44:01.643661"}}
+/type/author /authors/OL10304183A 1 2022-03-02T23:45:24.394351 {"type": {"key": "/type/author"}, "name": "Hayden Rexelle", "key": "/authors/OL10304183A", "source_records": ["bwb:9781685500344"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T23:45:24.394351"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T23:45:24.394351"}}
+/type/author /authors/OL10304274A 1 2022-03-02T23:49:53.620172 {"type": {"key": "/type/author"}, "name": "Powell, Daniel, Sr.", "key": "/authors/OL10304274A", "source_records": ["bwb:9780578346007"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T23:49:53.620172"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T23:49:53.620172"}}
+/type/author /authors/OL10304280A 1 2022-03-02T23:50:00.529561 {"type": {"key": "/type/author"}, "name": "E. K. Barnes", "key": "/authors/OL10304280A", "source_records": ["bwb:9781737971412"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T23:50:00.529561"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T23:50:00.529561"}}
+/type/author /authors/OL10304356A 1 2022-03-02T23:52:14.825109 {"type": {"key": "/type/author"}, "name": "Jeremy Janus", "key": "/authors/OL10304356A", "source_records": ["bwb:9780578360300"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T23:52:14.825109"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T23:52:14.825109"}}
+/type/author /authors/OL10304406A 1 2022-03-02T23:53:22.685036 {"type": {"key": "/type/author"}, "name": "Phoenix International Phoenix International Kids", "key": "/authors/OL10304406A", "source_records": ["bwb:9781503762527"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-02T23:53:22.685036"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T23:53:22.685036"}}
+/type/author /authors/OL10305025A 1 2022-03-03T00:26:41.013121 {"type": {"key": "/type/author"}, "name": "Lloyd Black", "key": "/authors/OL10305025A", "source_records": ["bwb:9798539252922"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T00:26:41.013121"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T00:26:41.013121"}}
+/type/author /authors/OL10305857A 1 2022-03-03T01:04:52.105550 {"type": {"key": "/type/author"}, "name": "Laughing Gypsy", "key": "/authors/OL10305857A", "source_records": ["bwb:9798784201409"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T01:04:52.105550"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T01:04:52.105550"}}
+/type/author /authors/OL10305996A 1 2022-03-03T01:12:20.218366 {"type": {"key": "/type/author"}, "name": "Igor Noev", "key": "/authors/OL10305996A", "source_records": ["bwb:9798796549605"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T01:12:20.218366"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T01:12:20.218366"}}
+/type/author /authors/OL10306242A 1 2022-03-03T01:23:37.065740 {"type": {"key": "/type/author"}, "name": "\u00e9d\u00e9ric Martin", "key": "/authors/OL10306242A", "source_records": ["bwb:9798778887442"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T01:23:37.065740"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T01:23:37.065740"}}
+/type/author /authors/OL10306318A 1 2022-03-03T01:26:56.085966 {"type": {"key": "/type/author"}, "name": "Awesome Planners Editions", "key": "/authors/OL10306318A", "source_records": ["bwb:9798774569212"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T01:26:56.085966"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T01:26:56.085966"}}
+/type/author /authors/OL10306722A 1 2022-03-03T01:47:46.679175 {"type": {"key": "/type/author"}, "name": "Vibes Positive Energy", "key": "/authors/OL10306722A", "source_records": ["bwb:9798493492150"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T01:47:46.679175"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T01:47:46.679175"}}
+/type/author /authors/OL10306744A 1 2022-03-03T01:49:13.235740 {"type": {"key": "/type/author"}, "name": "I. M. Planificateur", "key": "/authors/OL10306744A", "source_records": ["bwb:9798485507879"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T01:49:13.235740"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T01:49:13.235740"}}
+/type/author /authors/OL10306776A 1 2022-03-03T01:51:19.132082 {"type": {"key": "/type/author"}, "name": "Bennett Flomenhoft", "key": "/authors/OL10306776A", "source_records": ["bwb:9798460144389"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T01:51:19.132082"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T01:51:19.132082"}}
+/type/author /authors/OL10306817A 1 2022-03-03T01:54:06.571774 {"type": {"key": "/type/author"}, "name": "M. Q. MQ Notebooks", "key": "/authors/OL10306817A", "source_records": ["bwb:9798794420579"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T01:54:06.571774"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T01:54:06.571774"}}
+/type/author /authors/OL10307237A 1 2022-03-03T02:19:24.878357 {"type": {"key": "/type/author"}, "name": "Donut Me", "key": "/authors/OL10307237A", "source_records": ["bwb:9798754189898"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T02:19:24.878357"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T02:19:24.878357"}}
+/type/author /authors/OL10307404A 1 2022-03-03T02:29:15.013164 {"type": {"key": "/type/author"}, "name": "Fans Stewart", "key": "/authors/OL10307404A", "source_records": ["bwb:9798785475090"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T02:29:15.013164"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T02:29:15.013164"}}
+/type/author /authors/OL1030741A 2 2008-08-19T21:59:13.668866 {"name": "Frans Koning", "personal_name": "Frans Koning", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T21:59:13.668866"}, "key": "/authors/OL1030741A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10307576A 1 2022-03-03T02:38:52.475658 {"type": {"key": "/type/author"}, "name": "Berniece G. Miller", "key": "/authors/OL10307576A", "source_records": ["bwb:9798607268954"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T02:38:52.475658"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T02:38:52.475658"}}
+/type/author /authors/OL10307863A 1 2022-03-03T02:54:55.312346 {"type": {"key": "/type/author"}, "name": "Novi Sad Novi Sad Pro", "key": "/authors/OL10307863A", "source_records": ["bwb:9798775103064"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T02:54:55.312346"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T02:54:55.312346"}}
+/type/author /authors/OL10307932A 1 2022-03-03T02:58:38.556608 {"type": {"key": "/type/author"}, "name": "Azhar Islam", "key": "/authors/OL10307932A", "source_records": ["bwb:9798559842448"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T02:58:38.556608"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T02:58:38.556608"}}
+/type/author /authors/OL10308044A 1 2022-03-03T03:04:38.198380 {"type": {"key": "/type/author"}, "name": "Alexandra Mary", "key": "/authors/OL10308044A", "source_records": ["bwb:9798468248560"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T03:04:38.198380"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T03:04:38.198380"}}
+/type/author /authors/OL1030816A 2 2008-08-19T21:59:29.770779 {"name": "Pier Luigi Guiducci", "personal_name": "Pier Luigi Guiducci", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T21:59:29.770779"}, "key": "/authors/OL1030816A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10308241A 1 2022-03-03T03:16:02.735342 {"type": {"key": "/type/author"}, "name": "Trader Essentials", "key": "/authors/OL10308241A", "source_records": ["bwb:9798779651622"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T03:16:02.735342"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T03:16:02.735342"}}
+/type/author /authors/OL10308586A 1 2022-03-03T03:35:45.717799 {"type": {"key": "/type/author"}, "name": "Athena Fassett", "key": "/authors/OL10308586A", "source_records": ["bwb:9798798848881"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T03:35:45.717799"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T03:35:45.717799"}}
+/type/author /authors/OL10309402A 1 2022-03-03T04:20:49.227863 {"type": {"key": "/type/author"}, "name": "Massimo Scognamiglio", "key": "/authors/OL10309402A", "source_records": ["bwb:9798799150495"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T04:20:49.227863"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T04:20:49.227863"}}
+/type/author /authors/OL10309798A 1 2022-03-03T04:46:52.956626 {"type": {"key": "/type/author"}, "name": "Mayeul Edition", "key": "/authors/OL10309798A", "source_records": ["bwb:9798649386227"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T04:46:52.956626"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T04:46:52.956626"}}
+/type/author /authors/OL10309864A 1 2022-03-03T04:51:26.623281 {"type": {"key": "/type/author"}, "name": "Goddess Diary's", "key": "/authors/OL10309864A", "source_records": ["bwb:9798797113027"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T04:51:26.623281"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T04:51:26.623281"}}
+/type/author /authors/OL10310432A 1 2022-03-03T05:27:02.368523 {"type": {"key": "/type/author"}, "name": "Healthcare Worker by Anne Bracker", "key": "/authors/OL10310432A", "source_records": ["bwb:9798781403813"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T05:27:02.368523"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T05:27:02.368523"}}
+/type/author /authors/OL10310836A 1 2022-03-03T05:51:42.580766 {"type": {"key": "/type/author"}, "name": "Kevin Hearne,Kevin Hearne", "key": "/authors/OL10310836A", "source_records": ["amazon:1780892616"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T05:51:42.580766"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T05:51:42.580766"}}
+/type/author /authors/OL10310943A 1 2022-03-03T05:56:48.145178 {"type": {"key": "/type/author"}, "name": "Omario AW", "key": "/authors/OL10310943A", "source_records": ["bwb:9798790964510"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T05:56:48.145178"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T05:56:48.145178"}}
+/type/author /authors/OL10311158A 1 2022-03-03T06:09:25.293799 {"type": {"key": "/type/author"}, "name": "Guerrna Kathlin", "key": "/authors/OL10311158A", "source_records": ["bwb:9798768632298"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T06:09:25.293799"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T06:09:25.293799"}}
+/type/author /authors/OL10311239A 1 2022-03-03T06:15:31.865175 {"type": {"key": "/type/author"}, "name": "Mohamed H. Kalif", "key": "/authors/OL10311239A", "source_records": ["bwb:9798551024026"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T06:15:31.865175"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T06:15:31.865175"}}
+/type/author /authors/OL10311327A 1 2022-03-03T06:23:17.819540 {"type": {"key": "/type/author"}, "name": "Salvatore Salvatore Owens", "key": "/authors/OL10311327A", "source_records": ["bwb:9798772744147"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T06:23:17.819540"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T06:23:17.819540"}}
+/type/author /authors/OL10311966A 1 2022-03-03T06:55:05.979949 {"type": {"key": "/type/author"}, "name": "Jo Brewis", "key": "/authors/OL10311966A", "source_records": ["bwb:9781529215700"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T06:55:05.979949"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T06:55:05.979949"}}
+/type/author /authors/OL10312646A 1 2022-03-03T07:17:32.390355 {"type": {"key": "/type/author"}, "name": "Vincent Conville", "key": "/authors/OL10312646A", "source_records": ["bwb:9781638672395"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T07:17:32.390355"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T07:17:32.390355"}}
+/type/author /authors/OL10312911A 1 2022-03-03T07:28:45.832405 {"type": {"key": "/type/author"}, "name": "Marie-Pierre Rootering", "key": "/authors/OL10312911A", "source_records": ["bwb:9782406122449"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T07:28:45.832405"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T07:28:45.832405"}}
+/type/author /authors/OL10313349A 1 2022-03-03T07:45:24.224250 {"type": {"key": "/type/author"}, "name": "Eavan ODochartaigh", "key": "/authors/OL10313349A", "source_records": ["bwb:9781108994897"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T07:45:24.224250"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T07:45:24.224250"}}
+/type/author /authors/OL10313400A 1 2022-03-03T07:49:03.547041 {"type": {"key": "/type/author"}, "name": "Chelsea Barrett", "key": "/authors/OL10313400A", "source_records": ["bwb:9781664116986"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T07:49:03.547041"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T07:49:03.547041"}}
+/type/author /authors/OL10313912A 1 2022-03-03T08:08:38.404097 {"type": {"key": "/type/author"}, "name": "MadDog Press", "key": "/authors/OL10313912A", "source_records": ["bwb:9798752360879"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T08:08:38.404097"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T08:08:38.404097"}}
+/type/author /authors/OL10314304A 1 2022-03-03T08:25:38.470677 {"type": {"key": "/type/author"}, "name": "Rohan Das", "key": "/authors/OL10314304A", "source_records": ["bwb:9798404713367"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T08:25:38.470677"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T08:25:38.470677"}}
+/type/author /authors/OL10314603A 1 2022-03-03T08:39:43.275046 {"type": {"key": "/type/author"}, "name": "France EDITION", "key": "/authors/OL10314603A", "source_records": ["bwb:9798782573720"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T08:39:43.275046"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T08:39:43.275046"}}
+/type/author /authors/OL10314876A 1 2022-03-03T08:53:08.925203 {"type": {"key": "/type/author"}, "name": "Lina Press", "key": "/authors/OL10314876A", "source_records": ["bwb:9798799902131"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T08:53:08.925203"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T08:53:08.925203"}}
+/type/author /authors/OL10315346A 1 2022-03-03T09:17:40.475775 {"type": {"key": "/type/author"}, "name": "B. C. Finnie", "key": "/authors/OL10315346A", "source_records": ["bwb:9780228861256"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T09:17:40.475775"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T09:17:40.475775"}}
+/type/author /authors/OL1031549A 2 2008-08-19T22:02:32.522149 {"name": "Lars M\u00f8lhave", "personal_name": "Lars M\u00f8lhave", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T22:02:32.522149"}, "key": "/authors/OL1031549A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10315503A 1 2022-03-03T09:46:57.241377 {"type": {"key": "/type/author"}, "name": "Gosta Hallonsten", "key": "/authors/OL10315503A", "source_records": ["bwb:9780813234052"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T09:46:57.241377"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T09:46:57.241377"}}
+/type/author /authors/OL10315633A 1 2022-03-03T10:00:33.750884 {"type": {"key": "/type/author"}, "name": "Mar Gota", "key": "/authors/OL10315633A", "source_records": ["bwb:9798774505173"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T10:00:33.750884"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T10:00:33.750884"}}
+/type/author /authors/OL1031567A 2 2008-08-19T22:02:34.379667 {"name": "Paulina Balba\u0301s", "personal_name": "Paulina Balba\u0301s", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T22:02:34.379667"}, "key": "/authors/OL1031567A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10315992A 1 2022-03-03T10:15:28.170713 {"type": {"key": "/type/author"}, "name": "Brian David Walker", "key": "/authors/OL10315992A", "source_records": ["bwb:9780881459128"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T10:15:28.170713"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T10:15:28.170713"}}
+/type/author /authors/OL10316227A 1 2022-03-03T10:26:13.420620 {"type": {"key": "/type/author"}, "name": "liverpool Lovea Anilaks", "key": "/authors/OL10316227A", "source_records": ["bwb:9798401341532"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T10:26:13.420620"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T10:26:13.420620"}}
+/type/author /authors/OL10317232A 1 2022-03-03T11:37:40.227352 {"type": {"key": "/type/author"}, "name": "Jazz Parks", "key": "/authors/OL10317232A", "source_records": ["bwb:9798405228082"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T11:37:40.227352"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T11:37:40.227352"}}
+/type/author /authors/OL10317300A 1 2022-03-03T11:42:36.236770 {"type": {"key": "/type/author"}, "name": "asmae ere", "key": "/authors/OL10317300A", "source_records": ["bwb:9798769796814"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T11:42:36.236770"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T11:42:36.236770"}}
+/type/author /authors/OL10317688A 1 2022-03-03T12:05:49.535565 {"type": {"key": "/type/author"}, "name": "Sarte Ltd Publishing", "key": "/authors/OL10317688A", "source_records": ["bwb:9798708849960"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T12:05:49.535565"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T12:05:49.535565"}}
+/type/author /authors/OL10317971A 1 2022-03-03T12:28:41.523252 {"type": {"key": "/type/author"}, "name": "Youssef Benchiir", "key": "/authors/OL10317971A", "source_records": ["bwb:9798755461016"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T12:28:41.523252"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T12:28:41.523252"}}
+/type/author /authors/OL10318170A 1 2022-03-03T12:41:18.671975 {"type": {"key": "/type/author"}, "name": "mona reda", "key": "/authors/OL10318170A", "source_records": ["bwb:9798405181585"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T12:41:18.671975"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T12:41:18.671975"}}
+/type/author /authors/OL10318669A 1 2022-03-03T13:19:11.422441 {"type": {"key": "/type/author"}, "name": "Hannah Purkey", "key": "/authors/OL10318669A", "source_records": ["bwb:9798402287594"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T13:19:11.422441"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T13:19:11.422441"}}
+/type/author /authors/OL10319224A 1 2022-03-03T14:03:58.677042 {"type": {"key": "/type/author"}, "name": "Ava N. Bailey", "key": "/authors/OL10319224A", "source_records": ["bwb:9798403127370"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T14:03:58.677042"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T14:03:58.677042"}}
+/type/author /authors/OL10319309A 1 2022-03-03T14:11:02.348304 {"type": {"key": "/type/author"}, "name": "Sigifredo Gallardo Mercado", "key": "/authors/OL10319309A", "source_records": ["bwb:9798405038292"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T14:11:02.348304"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T14:11:02.348304"}}
+/type/author /authors/OL10319594A 1 2022-03-03T14:35:47.444226 {"type": {"key": "/type/author"}, "name": "Home & Co", "key": "/authors/OL10319594A", "source_records": ["bwb:9798794675818"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T14:35:47.444226"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T14:35:47.444226"}}
+/type/author /authors/OL10319641A 1 2022-03-03T14:40:31.220348 {"type": {"key": "/type/author"}, "name": "A. R. C. Ltd", "key": "/authors/OL10319641A", "source_records": ["bwb:9798491657032"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T14:40:31.220348"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T14:40:31.220348"}}
+/type/author /authors/OL10319922A 1 2022-03-03T15:06:29.053559 {"type": {"key": "/type/author"}, "name": "James Rowlands", "key": "/authors/OL10319922A", "source_records": ["bwb:9798676108649"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T15:06:29.053559"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T15:06:29.053559"}}
+/type/author /authors/OL10319973A 1 2022-03-03T15:12:17.137807 {"type": {"key": "/type/author"}, "name": "Lashanda KLINE", "key": "/authors/OL10319973A", "source_records": ["bwb:9798782701048"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T15:12:17.137807"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T15:12:17.137807"}}
+/type/author /authors/OL10320149A 1 2022-03-03T15:28:32.952592 {"type": {"key": "/type/author"}, "name": "Trinity Jefferson", "key": "/authors/OL10320149A", "source_records": ["bwb:9798798250530"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T15:28:32.952592"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T15:28:32.952592"}}
+/type/author /authors/OL10320744A 1 2022-03-03T15:57:04.591646 {"type": {"key": "/type/author"}, "name": "Anthony Blackshaw", "key": "/authors/OL10320744A", "source_records": ["bwb:9781365281259"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T15:57:04.591646"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T15:57:04.591646"}}
+/type/author /authors/OL10320779A 1 2022-03-03T15:59:41.797095 {"type": {"key": "/type/author"}, "name": "Atalina Wright", "key": "/authors/OL10320779A", "source_records": ["bwb:9781399907415"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T15:59:41.797095"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T15:59:41.797095"}}
+/type/author /authors/OL10320827A 1 2022-03-03T16:04:12.959322 {"type": {"key": "/type/author"}, "name": "Luiza Ramirez", "key": "/authors/OL10320827A", "source_records": ["bwb:9781471785153"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T16:04:12.959322"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T16:04:12.959322"}}
+/type/author /authors/OL10321149A 1 2022-03-03T16:17:24.773050 {"type": {"key": "/type/author"}, "name": "Tereza Racekova", "key": "/authors/OL10321149A", "source_records": ["bwb:9781525597572"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T16:17:24.773050"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T16:17:24.773050"}}
+/type/author /authors/OL10321449A 1 2022-03-03T16:35:37.397693 {"type": {"key": "/type/author"}, "name": "Jason Likens", "key": "/authors/OL10321449A", "source_records": ["bwb:9781636926179"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T16:35:37.397693"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T16:35:37.397693"}}
+/type/author /authors/OL10321516A 1 2022-03-03T16:36:51.862106 {"type": {"key": "/type/author"}, "name": "John Ginos", "key": "/authors/OL10321516A", "source_records": ["bwb:9781637105214"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T16:36:51.862106"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T16:36:51.862106"}}
+/type/author /authors/OL10321703A 1 2022-03-03T16:41:12.184730 {"type": {"key": "/type/author"}, "name": "Christine Tosti", "key": "/authors/OL10321703A", "source_records": ["bwb:9781638440598"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T16:41:12.184730"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T16:41:12.184730"}}
+/type/author /authors/OL10321832A 1 2022-03-03T16:43:30.800822 {"type": {"key": "/type/author"}, "name": "Kayla Olmstead", "key": "/authors/OL10321832A", "source_records": ["bwb:9781638740162"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T16:43:30.800822"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T16:43:30.800822"}}
+/type/author /authors/OL10322167A 1 2022-03-03T16:52:08.991638 {"type": {"key": "/type/author"}, "name": "Freud Ford", "key": "/authors/OL10322167A", "source_records": ["bwb:9781645438038"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T16:52:08.991638"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T16:52:08.991638"}}
+/type/author /authors/OL10322370A 1 2022-03-03T17:01:58.602369 {"type": {"key": "/type/author"}, "name": "Bolton Haslock", "key": "/authors/OL10322370A", "source_records": ["bwb:9781649699695"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T17:01:58.602369"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T17:01:58.602369"}}
+/type/author /authors/OL10322517A 1 2022-03-03T17:05:09.905442 {"type": {"key": "/type/author"}, "name": "Cheryll Hendrickson", "key": "/authors/OL10322517A", "source_records": ["bwb:9781662448775"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T17:05:09.905442"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T17:05:09.905442"}}
+/type/author /authors/OL10322641A 1 2022-03-03T17:07:38.253746 {"type": {"key": "/type/author"}, "name": "Sebastian Ekwotafia", "key": "/authors/OL10322641A", "source_records": ["bwb:9781662819148"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T17:07:38.253746"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T17:07:38.253746"}}
+/type/author /authors/OL10322681A 1 2022-03-03T17:08:10.618984 {"type": {"key": "/type/author"}, "name": "Eddie Crunch", "key": "/authors/OL10322681A", "source_records": ["bwb:9781662829529"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T17:08:10.618984"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T17:08:10.618984"}}
+/type/author /authors/OL10323371A 1 2022-03-03T17:35:15.321344 {"type": {"key": "/type/author"}, "name": "Siddhanta Bora", "key": "/authors/OL10323371A", "source_records": ["bwb:9781685639693"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T17:35:15.321344"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T17:35:15.321344"}}
+/type/author /authors/OL10323568A 1 2022-03-03T17:39:18.696964 {"type": {"key": "/type/author"}, "name": "Great Igwe", "key": "/authors/OL10323568A", "source_records": ["bwb:9781733280341"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T17:39:18.696964"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T17:39:18.696964"}}
+/type/author /authors/OL10323570A 1 2022-03-03T17:39:28.631042 {"type": {"key": "/type/author"}, "name": "Peggy D. Sideratos", "key": "/authors/OL10323570A", "source_records": ["bwb:9781733462020"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T17:39:28.631042"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T17:39:28.631042"}}
+/type/author /authors/OL10323920A 1 2022-03-03T17:52:29.946615 {"type": {"key": "/type/author"}, "name": "C. a Perez", "key": "/authors/OL10323920A", "source_records": ["bwb:9781790395439"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T17:52:29.946615"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T17:52:29.946615"}}
+/type/author /authors/OL1032419A 2 2008-08-19T22:06:19.767992 {"name": "Sakari Kolonen", "personal_name": "Sakari Kolonen", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T22:06:19.767992"}, "key": "/authors/OL1032419A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10324535A 1 2022-03-03T18:25:51.187825 {"type": {"key": "/type/author"}, "name": "Evgenia Malina", "key": "/authors/OL10324535A", "source_records": ["bwb:9781916902701"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T18:25:51.187825"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T18:25:51.187825"}}
+/type/author /authors/OL10325030A 1 2022-03-03T18:43:54.792628 {"type": {"key": "/type/author"}, "name": "Tom Omidi", "key": "/authors/OL10325030A", "source_records": ["bwb:9781988351155"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T18:43:54.792628"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T18:43:54.792628"}}
+/type/author /authors/OL10325783A 1 2022-03-03T19:21:19.897257 {"type": {"key": "/type/author"}, "name": "Lynn Erin Chesser", "key": "/authors/OL10325783A", "source_records": ["bwb:9780985545864"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T19:21:19.897257"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T19:21:19.897257"}}
+/type/author /authors/OL10326308A 1 2022-03-03T19:45:36.605175 {"type": {"key": "/type/author"}, "name": "Eva Linde", "key": "/authors/OL10326308A", "source_records": ["bwb:9798985712902"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T19:45:36.605175"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T19:45:36.605175"}}
+/type/author /authors/OL10326359A 1 2022-03-03T19:48:40.910518 {"type": {"key": "/type/author"}, "name": "Rainer Brunn", "key": "/authors/OL10326359A", "source_records": ["bwb:9781705127988"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T19:48:40.910518"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T19:48:40.910518"}}
+/type/author /authors/OL10326511A 1 2022-03-03T19:55:15.682879 {"type": {"key": "/type/author"}, "name": "Matt Max", "key": "/authors/OL10326511A", "source_records": ["bwb:9781735098326"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T19:55:15.682879"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T19:55:15.682879"}}
+/type/author /authors/OL10326536A 1 2022-03-03T19:56:20.541702 {"type": {"key": "/type/author"}, "name": "Kim Tucker", "key": "/authors/OL10326536A", "source_records": ["bwb:9781954363267"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T19:56:20.541702"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T19:56:20.541702"}}
+/type/author /authors/OL10326541A 1 2022-03-03T19:56:34.083782 {"type": {"key": "/type/author"}, "name": "Rahel Gizaw", "key": "/authors/OL10326541A", "source_records": ["bwb:9781736527412"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T19:56:34.083782"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T19:56:34.083782"}}
+/type/author /authors/OL10326584A 1 2022-03-03T19:57:46.630258 {"type": {"key": "/type/author"}, "name": "Lance VanTine", "key": "/authors/OL10326584A", "source_records": ["bwb:9798985437201"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T19:57:46.630258"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T19:57:46.630258"}}
+/type/author /authors/OL10326730A 1 2022-03-03T20:05:15.407608 {"type": {"key": "/type/author"}, "name": "Ana Albero, Eng Gee Fan, Amaia Arrazola", "key": "/authors/OL10326730A", "source_records": ["amazon:9123876719"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T20:05:15.407608"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T20:05:15.407608"}}
+/type/author /authors/OL10326796A 1 2022-03-03T20:07:34.047782 {"type": {"key": "/type/author"}, "name": "K. Kloth Press", "key": "/authors/OL10326796A", "source_records": ["bwb:9798671720877"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T20:07:34.047782"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T20:07:34.047782"}}
+/type/author /authors/OL10327339A 1 2022-03-03T20:40:45.087196 {"type": {"key": "/type/author"}, "name": "Inoj Linn", "key": "/authors/OL10327339A", "source_records": ["bwb:9798409974343"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T20:40:45.087196"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T20:40:45.087196"}}
+/type/author /authors/OL10327617A 1 2022-03-03T20:56:48.451389 {"type": {"key": "/type/author"}, "name": "Mary Kay Washington", "key": "/authors/OL10327617A", "source_records": ["bwb:9798733629360"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T20:56:48.451389"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T20:56:48.451389"}}
+/type/author /authors/OL10327716A 1 2022-03-03T21:03:11.402313 {"type": {"key": "/type/author"}, "name": "Aylah Hallel", "key": "/authors/OL10327716A", "source_records": ["bwb:9798496285056"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T21:03:11.402313"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T21:03:11.402313"}}
+/type/author /authors/OL10328210A 1 2022-03-03T21:38:37.043895 {"type": {"key": "/type/author"}, "name": "Robert Robert Laumand", "key": "/authors/OL10328210A", "source_records": ["bwb:9798407276227"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T21:38:37.043895"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T21:38:37.043895"}}
+/type/author /authors/OL10328247A 1 2022-03-03T21:41:10.603472 {"type": {"key": "/type/author"}, "name": "Kadi Bello", "key": "/authors/OL10328247A", "source_records": ["bwb:9798685327451"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T21:41:10.603472"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T21:41:10.603472"}}
+/type/author /authors/OL10328309A 1 2022-03-03T21:45:20.567491 {"type": {"key": "/type/author"}, "name": "Hamza Islam", "key": "/authors/OL10328309A", "source_records": ["bwb:9798408882854"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T21:45:20.567491"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T21:45:20.567491"}}
+/type/author /authors/OL10328518A 1 2022-03-03T21:59:37.582618 {"type": {"key": "/type/author"}, "name": "Ogechi Obayi", "key": "/authors/OL10328518A", "source_records": ["bwb:9798799878795"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T21:59:37.582618"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T21:59:37.582618"}}
+/type/author /authors/OL10328675A 1 2022-03-03T22:12:15.424011 {"type": {"key": "/type/author"}, "name": "Stan Jackson", "key": "/authors/OL10328675A", "source_records": ["bwb:9798773236641"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T22:12:15.424011"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T22:12:15.424011"}}
+/type/author /authors/OL10328737A 1 2022-03-03T22:16:43.776967 {"type": {"key": "/type/author"}, "name": "Jeannice Samani", "key": "/authors/OL10328737A", "source_records": ["bwb:9798455070938"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T22:16:43.776967"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T22:16:43.776967"}}
+/type/author /authors/OL10328877A 1 2022-03-03T22:25:59.132337 {"type": {"key": "/type/author"}, "name": "Dragonheart Group", "key": "/authors/OL10328877A", "source_records": ["bwb:9798408866458"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T22:25:59.132337"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T22:25:59.132337"}}
+/type/author /authors/OL10329210A 1 2022-03-03T22:47:07.221043 {"type": {"key": "/type/author"}, "name": "Ermita Rodrigues", "key": "/authors/OL10329210A", "source_records": ["bwb:9798401390967"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T22:47:07.221043"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T22:47:07.221043"}}
+/type/author /authors/OL10329581A 1 2022-03-03T23:10:58.523169 {"type": {"key": "/type/author"}, "name": "Just Laughs", "key": "/authors/OL10329581A", "source_records": ["bwb:9798496442077"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T23:10:58.523169"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T23:10:58.523169"}}
+/type/author /authors/OL10329716A 1 2022-03-03T23:18:19.146683 {"type": {"key": "/type/author"}, "name": "Conscious Flow", "key": "/authors/OL10329716A", "source_records": ["bwb:9798404033038"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T23:18:19.146683"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T23:18:19.146683"}}
+/type/author /authors/OL10329723A 1 2022-03-03T23:18:48.843288 {"type": {"key": "/type/author"}, "name": "Rodney Blackburn", "key": "/authors/OL10329723A", "source_records": ["bwb:9798754767539"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T23:18:48.843288"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T23:18:48.843288"}}
+/type/author /authors/OL10329770A 1 2022-03-03T23:22:41.558064 {"type": {"key": "/type/author"}, "name": "Valentina Vigato", "key": "/authors/OL10329770A", "source_records": ["bwb:9798758175873"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T23:22:41.558064"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T23:22:41.558064"}}
+/type/author /authors/OL1032978A 2 2008-08-19T22:08:44.625549 {"name": "Roland Wick", "personal_name": "Roland Wick", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T22:08:44.625549"}, "key": "/authors/OL1032978A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10329836A 1 2022-03-03T23:27:57.678635 {"type": {"key": "/type/author"}, "name": "Clemencia M. Mize H. I. S Publications", "key": "/authors/OL10329836A", "source_records": ["bwb:9798720987138"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T23:27:57.678635"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T23:27:57.678635"}}
+/type/author /authors/OL10330119A 1 2022-03-03T23:46:33.971926 {"type": {"key": "/type/author"}, "name": "Joele Marrone", "key": "/authors/OL10330119A", "source_records": ["bwb:9798407590897"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T23:46:33.971926"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T23:46:33.971926"}}
+/type/author /authors/OL10330199A 1 2022-03-03T23:53:01.502889 {"type": {"key": "/type/author"}, "name": "Jessica Beland", "key": "/authors/OL10330199A", "source_records": ["bwb:9798486449123"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T23:53:01.502889"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T23:53:01.502889"}}
+/type/author /authors/OL10330238A 1 2022-03-03T23:55:57.518251 {"type": {"key": "/type/author"}, "name": "Sivajith P R", "key": "/authors/OL10330238A", "source_records": ["bwb:9798408427161"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T23:55:57.518251"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T23:55:57.518251"}}
+/type/author /authors/OL10330259A 1 2022-03-03T23:57:04.846350 {"type": {"key": "/type/author"}, "name": "khonae ferds", "key": "/authors/OL10330259A", "source_records": ["bwb:9798735769200"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-03T23:57:04.846350"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-03T23:57:04.846350"}}
+/type/author /authors/OL10330500A 1 2022-03-04T00:12:54.182792 {"type": {"key": "/type/author"}, "name": "Erika Atherstone", "key": "/authors/OL10330500A", "source_records": ["bwb:9798401079824"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-04T00:12:54.182792"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-04T00:12:54.182792"}}
+/type/author /authors/OL10331514A 1 2022-03-04T01:35:44.674749 {"type": {"key": "/type/author"}, "name": "Robert Rogler", "key": "/authors/OL10331514A", "source_records": ["bwb:9798786508209"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-04T01:35:44.674749"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-04T01:35:44.674749"}}
+/type/author /authors/OL1033157A 3 2012-06-06T23:31:15.166694 {"created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "latest_revision": 3, "name": "Fanny Heaslip Lea", "key": "/authors/OL1033157A", "personal_name": "Fanny Heaslip Lea", "birth_date": "1884", "death_date": "1955", "type": {"key": "/type/author"}, "last_modified": {"type": "/type/datetime", "value": "2012-06-06T23:31:15.166694"}, "revision": 3}
+/type/author /authors/OL10331702A 1 2022-03-04T01:50:20.376539 {"type": {"key": "/type/author"}, "name": "Phil Zito", "key": "/authors/OL10331702A", "source_records": ["amazon:1539914488"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-04T01:50:20.376539"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-04T01:50:20.376539"}}
+/type/author /authors/OL10331734A 1 2022-03-04T01:52:48.651667 {"type": {"key": "/type/author"}, "name": "Squid Lovers", "key": "/authors/OL10331734A", "source_records": ["bwb:9798496842266"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-04T01:52:48.651667"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-04T01:52:48.651667"}}
+/type/author /authors/OL10332149A 1 2022-03-04T02:22:32.982193 {"type": {"key": "/type/author"}, "name": "Tracy Horton", "key": "/authors/OL10332149A", "source_records": ["bwb:9798406744611"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-04T02:22:32.982193"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-04T02:22:32.982193"}}
+/type/author /authors/OL1033255A 3 2017-12-01T09:33:39.105613 {"name": "R. M. Lobat\u0361skai\u0361a", "personal_name": "R. M. Lobat\u0361skai\u0361a", "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2017-12-01T09:33:39.105613"}, "latest_revision": 3, "key": "/authors/OL1033255A", "type": {"key": "/type/author"}, "revision": 3}
+/type/author /authors/OL10332574A 2 2022-04-12T21:10:02.734417 {"type": {"key": "/type/author"}, "name": "\u30ab\u30d7\u30e9\u5916\u56fd\u8a9e\u7814\u7a76\u4f1a", "key": "/authors/OL10332574A", "source_records": ["bwb:9798405870984"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2022-03-04T02:56:24.146898"}, "last_modified": {"type": "/type/datetime", "value": "2022-04-12T21:10:02.734417"}}
+/type/author /authors/OL10332664A 1 2022-03-04T03:02:20.502718 {"type": {"key": "/type/author"}, "name": "Chosen T. Auuste", "key": "/authors/OL10332664A", "source_records": ["bwb:9798406709672"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-04T03:02:20.502718"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-04T03:02:20.502718"}}
+/type/author /authors/OL10332726A 1 2022-03-04T03:07:26.191768 {"type": {"key": "/type/author"}, "name": "Charles-Elie Buhnik", "key": "/authors/OL10332726A", "source_records": ["bwb:9798769664748"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-04T03:07:26.191768"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-04T03:07:26.191768"}}
+/type/author /authors/OL1033343A 2 2008-08-19T22:10:31.137811 {"name": "Peter Poerting", "personal_name": "Peter Poerting", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T22:10:31.137811"}, "key": "/authors/OL1033343A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10333497A 1 2022-03-04T04:15:13.728440 {"type": {"key": "/type/author"}, "name": "Mary Elizabeth Duffy", "key": "/authors/OL10333497A", "source_records": ["bwb:9781953985460"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-04T04:15:13.728440"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-04T04:15:13.728440"}}
+/type/author /authors/OL10333960A 1 2022-03-04T04:37:14.171815 {"type": {"key": "/type/author"}, "name": "3rd T. Naresh Babu", "key": "/authors/OL10333960A", "source_records": ["bwb:9781685762605"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-04T04:37:14.171815"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-04T04:37:14.171815"}}
+/type/author /authors/OL10334135A 1 2022-03-04T04:45:13.345599 {"type": {"key": "/type/author"}, "name": "Brady Johns", "key": "/authors/OL10334135A", "source_records": ["bwb:9781637741788"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-04T04:45:13.345599"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-04T04:45:13.345599"}}
+/type/author /authors/OL10334162A 1 2022-03-04T04:47:52.772173 {"type": {"key": "/type/author"}, "name": "Mikelle Street", "key": "/authors/OL10334162A", "source_records": ["bwb:9781597115308"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-04T04:47:52.772173"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-04T04:47:52.772173"}}
+/type/author /authors/OL10334262A 1 2022-03-04T04:51:21.349443 {"type": {"key": "/type/author"}, "name": "I'Heshia Handy", "key": "/authors/OL10334262A", "source_records": ["bwb:9798985737004"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-04T04:51:21.349443"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-04T04:51:21.349443"}}
+/type/author /authors/OL10335155A 1 2022-03-04T12:35:04.994259 {"type": {"key": "/type/author"}, "name": "Clayton M. Christensen", "personal_name": "Clayton M. Christensen", "birth_date": "1952", "death_date": "2020", "key": "/authors/OL10335155A", "source_records": ["ia:thconaochocuocib0000chri"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-04T12:35:04.994259"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-04T12:35:04.994259"}}
+/type/author /authors/OL10335184A 1 2022-03-04T12:55:45.504549 {"type": {"key": "/type/author"}, "name": "Murray Weston", "personal_name": "Murray Weston", "key": "/authors/OL10335184A", "source_records": ["ia:canicopythisbrie0000west"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-04T12:55:45.504549"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-04T12:55:45.504549"}}
+/type/author /authors/OL1033545A 2 2008-08-19T22:11:28.888598 {"name": "Marie-The\u0301re\u0300se de Brosses", "personal_name": "Marie-The\u0301re\u0300se de Brosses", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T22:11:28.888598"}, "key": "/authors/OL1033545A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL1033559A 2 2008-08-19T22:11:34.939777 {"name": "Maurice Dayan", "personal_name": "Maurice Dayan", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T22:11:34.939777"}, "key": "/authors/OL1033559A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10335669A 1 2022-03-07T11:48:53.430761 {"name": "Helen Huber", "key": "/authors/OL10335669A", "type": {"key": "/type/author"}, "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-07T11:48:53.430761"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-07T11:48:53.430761"}}
+/type/author /authors/OL10335727A 1 2022-03-07T20:12:34.472710 {"type": {"key": "/type/author"}, "name": "Arlene Prunkl", "key": "/authors/OL10335727A", "source_records": ["amazon:0978850858"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-07T20:12:34.472710"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-07T20:12:34.472710"}}
+/type/author /authors/OL10336173A 1 2022-03-09T11:24:31.197322 {"type": {"key": "/type/author"}, "name": "The North of England P&I Association", "key": "/authors/OL10336173A", "source_records": ["amazon:0955825784"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-09T11:24:31.197322"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-09T11:24:31.197322"}}
+/type/author /authors/OL10336212A 1 2022-03-09T15:55:24.666405 {"name": "Janis Laden [and others]", "key": "/authors/OL10336212A", "type": {"key": "/type/author"}, "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-09T15:55:24.666405"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-09T15:55:24.666405"}}
+/type/author /authors/OL10336480A 1 2022-03-10T07:18:47.136244 {"type": {"key": "/type/author"}, "name": "Baker, Robert S. Mrs", "title": "Mrs", "personal_name": "Baker, Robert S.", "key": "/authors/OL10336480A", "source_records": ["ia:tombstoneinscrip00daug"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-10T07:18:47.136244"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-10T07:18:47.136244"}}
+/type/author /authors/OL10336831A 1 2022-03-11T05:49:32.373153 {"type": {"key": "/type/author"}, "name": "Rider Nursery & Floral", "key": "/authors/OL10336831A", "source_records": ["ia:CAT31381163"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-11T05:49:32.373153"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-11T05:49:32.373153"}}
+/type/author /authors/OL10336861A 1 2022-03-11T06:01:22.515287 {"type": {"key": "/type/author"}, "name": "Horst Kr\u00fcger", "personal_name": "Horst Kr\u00fcger", "birth_date": "1919", "death_date": "1999", "key": "/authors/OL10336861A", "source_records": ["ia:ostwestpassagenr0000krug"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-11T06:01:22.515287"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-11T06:01:22.515287"}}
+/type/author /authors/OL10336876A 1 2022-03-11T06:07:58.877023 {"type": {"key": "/type/author"}, "name": "Letts Ks2", "personal_name": "Letts Ks2", "key": "/authors/OL10336876A", "source_records": ["ia:ks2englishsatspr0000lett"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-11T06:07:58.877023"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-11T06:07:58.877023"}}
+/type/author /authors/OL10337034A 1 2022-03-11T19:53:09.546732 {"type": {"key": "/type/author"}, "name": "Beverly Bajema", "key": "/authors/OL10337034A", "source_records": ["amazon:1889471119"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-11T19:53:09.546732"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-11T19:53:09.546732"}}
+/type/author /authors/OL10337642A 1 2022-03-14T00:57:18.345179 {"type": {"key": "/type/author"}, "name": "Dustin P. Salomon", "key": "/authors/OL10337642A", "source_records": ["amazon:0692621784"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-14T00:57:18.345179"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-14T00:57:18.345179"}}
+/type/author /authors/OL10337827A 1 2022-03-14T06:05:09.930771 {"type": {"key": "/type/author"}, "name": "Myles R. Berg", "personal_name": "Myles R. Berg", "birth_date": "1932", "key": "/authors/OL10337827A", "source_records": ["ia:wondersofworldwo0000berg"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-14T06:05:09.930771"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-14T06:05:09.930771"}}
+/type/author /authors/OL10337989A 1 2022-03-14T08:48:16.712999 {"type": {"key": "/type/author"}, "name": "Ahmed Mohamed Rafik Moustafa", "key": "/authors/OL10337989A", "source_records": ["amazon:1782175539"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-14T08:48:16.712999"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-14T08:48:16.712999"}}
+/type/author /authors/OL10338144A 1 2022-03-14T08:52:37.879591 {"type": {"key": "/type/author"}, "name": "Christopher Studebaker", "key": "/authors/OL10338144A", "source_records": ["amazon:1784394203"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-14T08:52:37.879591"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-14T08:52:37.879591"}}
+/type/author /authors/OL10338275A 1 2022-03-14T08:56:06.736624 {"type": {"key": "/type/author"}, "name": "Prashant Kumar Mishra", "key": "/authors/OL10338275A", "source_records": ["amazon:1800205651"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-14T08:56:06.736624"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-14T08:56:06.736624"}}
+/type/author /authors/OL10338312A 1 2022-03-14T08:59:53.175248 {"type": {"key": "/type/author"}, "name": "Gilberto T. Garcia Jr.", "key": "/authors/OL10338312A", "source_records": ["amazon:1849515883"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-14T08:59:53.175248"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-14T08:59:53.175248"}}
+/type/author /authors/OL10338347A 1 2022-03-14T09:00:38.198680 {"type": {"key": "/type/author"}, "name": "Richard Harbridge", "key": "/authors/OL10338347A", "source_records": ["amazon:1849686106"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-14T09:00:38.198680"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-14T09:00:38.198680"}}
+/type/author /authors/OL10338385A 1 2022-03-14T09:01:37.258375 {"type": {"key": "/type/author"}, "name": "Claire Broadley and Mathew Dixon", "key": "/authors/OL10338385A", "source_records": ["amazon:1849697280"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-14T09:01:37.258375"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-14T09:01:37.258375"}}
+/type/author /authors/OL10338554A 1 2022-03-15T04:34:05.199971 {"type": {"key": "/type/author"}, "name": "Irene Nie\u00dfen", "personal_name": "Irene Nie\u00dfen", "birth_date": "1957", "key": "/authors/OL10338554A", "source_records": ["ia:schaumirindieaug0000unse"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-15T04:34:05.199971"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-15T04:34:05.199971"}}
+/type/author /authors/OL10339199A 1 2022-03-16T21:36:36.697259 {"type": {"key": "/type/author"}, "name": "Anuj Singh Parihar", "key": "/authors/OL10339199A", "source_records": ["amazon:3954894548"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-16T21:36:36.697259"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-16T21:36:36.697259"}}
+/type/author /authors/OL1033937A 2 2008-08-19T22:13:20.779841 {"name": "H. Abbink", "personal_name": "H. Abbink", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T22:13:20.779841"}, "key": "/authors/OL1033937A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10339415A 1 2022-03-17T06:38:37.424817 {"type": {"key": "/type/author"}, "name": "Herb Reisenfeld", "personal_name": "Herb Reisenfeld", "key": "/authors/OL10339415A", "source_records": ["ia:checkinginnadven0000reis"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-17T06:38:37.424817"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-17T06:38:37.424817"}}
+/type/author /authors/OL10339476A 1 2022-03-17T07:23:44.930554 {"type": {"key": "/type/author"}, "name": "Sugako Kubo", "personal_name": "Sugako Kubo", "key": "/authors/OL10339476A", "source_records": ["ia:tangotopurizudak0000unse"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-17T07:23:44.930554"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-17T07:23:44.930554"}}
+/type/author /authors/OL10339618A 1 2022-03-17T09:27:33.534525 {"type": {"key": "/type/author"}, "name": "Emily Beth Gerard", "personal_name": "Emily Beth Gerard", "key": "/authors/OL10339618A", "source_records": ["ia:catchat0000gera_d9d3"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-17T09:27:33.534525"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-17T09:27:33.534525"}}
+/type/author /authors/OL10339721A 1 2022-03-18T00:04:18.093758 {"type": {"key": "/type/author"}, "name": "Charles C. Christie Jr.", "key": "/authors/OL10339721A", "source_records": ["amazon:1548977314"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-18T00:04:18.093758"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-18T00:04:18.093758"}}
+/type/author /authors/OL10339930A 1 2022-03-18T05:43:31.393787 {"type": {"key": "/type/author"}, "name": "Isabelle Pozuelo", "personal_name": "Isabelle Pozuelo", "key": "/authors/OL10339930A", "source_records": ["ia:camarguealpilles0000unse"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-18T05:43:31.393787"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-18T05:43:31.393787"}}
+/type/author /authors/OL10340064A 1 2022-03-19T06:22:56.672923 {"name": "Susan Smith", "key": "/authors/OL10340064A", "type": {"key": "/type/author"}, "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-19T06:22:56.672923"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-19T06:22:56.672923"}}
+/type/author /authors/OL10340201A 1 2022-03-19T07:22:31.548645 {"type": {"key": "/type/author"}, "name": "St\u00e9phanie Blake", "personal_name": "St\u00e9phanie Blake", "birth_date": "1968", "key": "/authors/OL10340201A", "source_records": ["ia:auloup0000blak_g9x3"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-19T07:22:31.548645"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-19T07:22:31.548645"}}
+/type/author /authors/OL10340216A 1 2022-03-19T07:29:12.699469 {"type": {"key": "/type/author"}, "name": "Paul Belaiche-Daninos", "personal_name": "Paul Belaiche-Daninos", "key": "/authors/OL10340216A", "source_records": ["ia:guidefamilialdel0000bela"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-19T07:29:12.699469"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-19T07:29:12.699469"}}
+/type/author /authors/OL10340545A 1 2022-03-20T05:58:53.949322 {"type": {"key": "/type/author"}, "name": "Jing nan", "personal_name": "Jing nan", "key": "/authors/OL10340545A", "source_records": ["ia:xiaobenchuangfu0000unse"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-20T05:58:53.949322"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-20T05:58:53.949322"}}
+/type/author /authors/OL1034096A 2 2008-08-19T22:14:08.18865 {"name": "I. V. Perun", "personal_name": "I. V. Perun", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T22:14:08.18865"}, "key": "/authors/OL1034096A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10341089A 1 2022-03-21T09:07:48.335123 {"type": {"key": "/type/author"}, "name": "Linda J. Groundwater", "key": "/authors/OL10341089A", "source_records": ["amazon:0991033078"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-21T09:07:48.335123"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-21T09:07:48.335123"}}
+/type/author /authors/OL10342119A 1 2022-03-23T22:51:32.261559 {"type": {"key": "/type/author"}, "name": "JAMES D. PLUMMER ET AL.", "key": "/authors/OL10342119A", "source_records": ["amazon:8131726045"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-23T22:51:32.261559"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-23T22:51:32.261559"}}
+/type/author /authors/OL10342143A 1 2022-03-24T04:36:21.849731 {"type": {"key": "/type/author"}, "name": "T Adamakopoulos", "key": "/authors/OL10342143A", "source_records": ["amazon:9608195748"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-24T04:36:21.849731"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-24T04:36:21.849731"}}
+/type/author /authors/OL10342596A 1 2022-03-25T04:57:58.173812 {"type": {"key": "/type/author"}, "name": "Jennifer Vanderbes", "personal_name": "Jennifer Vanderbes", "birth_date": "1956", "key": "/authors/OL10342596A", "source_records": ["ia:isladepascua0000vand"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-25T04:57:58.173812"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-25T04:57:58.173812"}}
+/type/author /authors/OL10342862A 1 2022-03-26T11:31:15.814281 {"type": {"key": "/type/author"}, "name": "Bobby Peters", "key": "/authors/OL10342862A", "source_records": ["amazon:179099554X"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-26T11:31:15.814281"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-26T11:31:15.814281"}}
+/type/author /authors/OL10343133A 1 2022-03-28T10:21:35.405962 {"type": {"key": "/type/author"}, "name": "Virginia Del R\u00edo Garc\u00eda", "key": "/authors/OL10343133A", "source_records": ["amazon:8417766677"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-28T10:21:35.405962"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-28T10:21:35.405962"}}
+/type/author /authors/OL10344036A 1 2022-03-30T09:19:19.831317 {"type": {"key": "/type/author"}, "name": "MITRA MONABI", "personal_name": "MITRA MONABI", "key": "/authors/OL10344036A", "source_records": ["ia:deaddontconfessm0000mona"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-30T09:19:19.831317"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-30T09:19:19.831317"}}
+/type/author /authors/OL10344432A 1 2022-03-31T14:40:25.146886 {"type": {"key": "/type/author"}, "name": "Prof James Kelly", "key": "/authors/OL10344432A", "source_records": ["amazon:2070439941"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-03-31T14:40:25.146886"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-31T14:40:25.146886"}}
+/type/author /authors/OL10344585A 1 2022-04-01T06:49:34.203021 {"type": {"key": "/type/author"}, "name": "Susan Hamamura", "personal_name": "Susan Hamamura", "key": "/authors/OL10344585A", "source_records": ["ia:wovenworks0000unse"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-04-01T06:49:34.203021"}, "last_modified": {"type": "/type/datetime", "value": "2022-04-01T06:49:34.203021"}}
+/type/author /authors/OL10344721A 1 2022-04-01T07:43:34.754730 {"type": {"key": "/type/author"}, "name": "Ruth S. Doxsee", "personal_name": "Ruth S. Doxsee", "key": "/authors/OL10344721A", "source_records": ["ia:CAT31382465"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-04-01T07:43:34.754730"}, "last_modified": {"type": "/type/datetime", "value": "2022-04-01T07:43:34.754730"}}
+/type/author /authors/OL10344728A 1 2022-04-01T07:46:48.401764 {"type": {"key": "/type/author"}, "name": "July", "personal_name": "July", "key": "/authors/OL10344728A", "source_records": ["ia:bianchengzhifami0000july"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-04-01T07:46:48.401764"}, "last_modified": {"type": "/type/datetime", "value": "2022-04-01T07:46:48.401764"}}
+/type/author /authors/OL10344760A 1 2022-04-01T11:10:10.219341 {"type": {"key": "/type/author"}, "name": "Nicole Hallissey MS RDN CDN", "key": "/authors/OL10344760A", "source_records": ["amazon:1641523123"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-04-01T11:10:10.219341"}, "last_modified": {"type": "/type/datetime", "value": "2022-04-01T11:10:10.219341"}}
+/type/author /authors/OL10344835A 1 2022-04-02T05:52:01.076007 {"type": {"key": "/type/author"}, "name": "Kathleen Vossler", "personal_name": "Kathleen Vossler", "key": "/authors/OL10344835A", "source_records": ["ia:lucindamightyoak0000voss"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-04-02T05:52:01.076007"}, "last_modified": {"type": "/type/datetime", "value": "2022-04-02T05:52:01.076007"}}
+/type/author /authors/OL10345087A 1 2022-04-02T17:45:29.820060 {"type": {"key": "/type/author"}, "name": "Alexandra Michot", "key": "/authors/OL10345087A", "source_records": ["amazon:2812308400"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-04-02T17:45:29.820060"}, "last_modified": {"type": "/type/datetime", "value": "2022-04-02T17:45:29.820060"}}
+/type/author /authors/OL10345110A 1 2022-04-03T05:25:34.613985 {"type": {"key": "/type/author"}, "name": "Song yuan", "personal_name": "Song yuan", "key": "/authors/OL10345110A", "source_records": ["ia:weiwangshiganbei0000unse"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-04-03T05:25:34.613985"}, "last_modified": {"type": "/type/datetime", "value": "2022-04-03T05:25:34.613985"}}
+/type/author /authors/OL10345494A 1 2022-04-05T05:03:28.938614 {"type": {"key": "/type/author"}, "name": "Vincent, Jean-Luc professeur de lettres", "title": "professeur de lettres", "personal_name": "Vincent, Jean-Luc", "birth_date": "1973", "key": "/authors/OL10345494A", "source_records": ["ia:3questionsdedram0000unse"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-04-05T05:03:28.938614"}, "last_modified": {"type": "/type/datetime", "value": "2022-04-05T05:03:28.938614"}}
+/type/author /authors/OL10345619A 1 2022-04-05T08:01:31.162565 {"type": {"key": "/type/author"}, "name": "Nicolas Gouny i Gouny", "key": "/authors/OL10345619A", "source_records": ["amazon:8416578435"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-04-05T08:01:31.162565"}, "last_modified": {"type": "/type/datetime", "value": "2022-04-05T08:01:31.162565"}}
+/type/author /authors/OL10345801A 1 2022-04-06T05:53:55.489856 {"type": {"key": "/type/author"}, "name": "Kan D. Mariwalla", "personal_name": "Kan D. Mariwalla", "key": "/authors/OL10345801A", "source_records": ["ia:randomthoughtspl0000mari"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-04-06T05:53:55.489856"}, "last_modified": {"type": "/type/datetime", "value": "2022-04-06T05:53:55.489856"}}
+/type/author /authors/OL1034586A 2 2008-08-19T22:16:27.629897 {"name": "Ulrich Bairl-Vaslin", "personal_name": "Ulrich Bairl-Vaslin", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T22:16:27.629897"}, "key": "/authors/OL1034586A", "birth_date": "1955", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10345925A 1 2022-04-06T06:47:19.901634 {"type": {"key": "/type/author"}, "name": "Thomas Pugsley", "personal_name": "Thomas Pugsley", "key": "/authors/OL10345925A", "source_records": ["ia:doktoranimo0000unse"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-04-06T06:47:19.901634"}, "last_modified": {"type": "/type/datetime", "value": "2022-04-06T06:47:19.901634"}}
+/type/author /authors/OL1034607A 2 2008-08-19T22:16:31.080615 {"name": "Hemma Fasoli", "personal_name": "Hemma Fasoli", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T22:16:31.080615"}, "key": "/authors/OL1034607A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10346196A 1 2022-04-07T05:20:56.997639 {"type": {"key": "/type/author"}, "name": "Maggie Bruehl", "personal_name": "Maggie Bruehl", "key": "/authors/OL10346196A", "source_records": ["ia:splashcapturedmo0000brue"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-04-07T05:20:56.997639"}, "last_modified": {"type": "/type/datetime", "value": "2022-04-07T05:20:56.997639"}}
+/type/author /authors/OL10346418A 1 2022-04-07T21:19:38.281335 {"type": {"key": "/type/author"}, "name": "Susan Cornell", "key": "/authors/OL10346418A", "source_records": ["amazon:188187642X"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-04-07T21:19:38.281335"}, "last_modified": {"type": "/type/datetime", "value": "2022-04-07T21:19:38.281335"}}
+/type/author /authors/OL10346599A 1 2022-04-08T06:57:01.098849 {"type": {"key": "/type/author"}, "name": "Will Carrier", "personal_name": "Will Carrier", "key": "/authors/OL10346599A", "source_records": ["ia:CAT31447471"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-04-08T06:57:01.098849"}, "last_modified": {"type": "/type/datetime", "value": "2022-04-08T06:57:01.098849"}}
+/type/author /authors/OL10346726A 1 2022-04-09T03:54:06.873664 {"type": {"key": "/type/author"}, "name": "Kimbwandende Fu-Kiau", "key": "/authors/OL10346726A", "source_records": ["amazon:1592325009"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-04-09T03:54:06.873664"}, "last_modified": {"type": "/type/datetime", "value": "2022-04-09T03:54:06.873664"}}
+/type/author /authors/OL10346983A 1 2022-04-10T01:12:09.342485 {"type": {"key": "/type/author"}, "name": "Gifted Kids Publications", "key": "/authors/OL10346983A", "source_records": ["amazon:1942375085"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-04-10T01:12:09.342485"}, "last_modified": {"type": "/type/datetime", "value": "2022-04-10T01:12:09.342485"}}
+/type/author /authors/OL10347367A 1 2022-04-11T10:00:17.189384 {"type": {"key": "/type/author"}, "name": "\u00cd\u00f1igo Garc\u00eda Ureta", "key": "/authors/OL10347367A", "source_records": ["amazon:8412457889"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-04-11T10:00:17.189384"}, "last_modified": {"type": "/type/datetime", "value": "2022-04-11T10:00:17.189384"}}
+/type/author /authors/OL10347431A 1 2022-04-11T14:49:07.978637 {"type": {"key": "/type/author"}, "name": "Mayel\u00edn Dom\u00ednguez", "key": "/authors/OL10347431A", "source_records": ["amazon:3330092998"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-04-11T14:49:07.978637"}, "last_modified": {"type": "/type/datetime", "value": "2022-04-11T14:49:07.978637"}}
+/type/author /authors/OL10347443A 1 2022-04-11T15:47:10.356626 {"type": {"key": "/type/author"}, "name": "WEST-B Exam Secrets Test Prep Team", "key": "/authors/OL10347443A", "source_records": ["amazon:1630947679"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-04-11T15:47:10.356626"}, "last_modified": {"type": "/type/datetime", "value": "2022-04-11T15:47:10.356626"}}
+/type/author /authors/OL10347453A 1 2022-04-11T16:05:35.366691 {"type": {"key": "/type/author"}, "name": "Masae", "key": "/authors/OL10347453A", "source_records": ["amazon:6071635802"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-04-11T16:05:35.366691"}, "last_modified": {"type": "/type/datetime", "value": "2022-04-11T16:05:35.366691"}}
+/type/author /authors/OL10347758A 1 2022-04-12T15:58:11.710632 {"type": {"key": "/type/author"}, "name": "978-0451239242, 0451239245, 9780451239242", "key": "/authors/OL10347758A", "source_records": ["amazon:9124071862"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-04-12T15:58:11.710632"}, "last_modified": {"type": "/type/datetime", "value": "2022-04-12T15:58:11.710632"}}
+/type/author /authors/OL10347815A 1 2022-04-13T05:35:10.243198 {"type": {"key": "/type/author"}, "name": "Yongyi Zhongtian", "personal_name": "Yongyi Zhongtian", "birth_date": "(1978", "death_date": ")", "key": "/authors/OL10347815A", "source_records": ["ia:bailaichaoxiangz0000zhon"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-04-13T05:35:10.243198"}, "last_modified": {"type": "/type/datetime", "value": "2022-04-13T05:35:10.243198"}}
+/type/author /authors/OL10347872A 1 2022-04-13T05:56:37.788775 {"type": {"key": "/type/author"}, "name": "Doris A. Rapp", "personal_name": "Doris A. Rapp", "key": "/authors/OL10347872A", "source_records": ["ia:pancephysicianas0000rapp"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-04-13T05:56:37.788775"}, "last_modified": {"type": "/type/datetime", "value": "2022-04-13T05:56:37.788775"}}
+/type/author /authors/OL10347876A 1 2022-04-13T05:58:14.207806 {"type": {"key": "/type/author"}, "name": "Keith R. Soltis", "personal_name": "Keith R. Soltis", "key": "/authors/OL10347876A", "source_records": ["ia:ivyleaguewealths0000solt"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-04-13T05:58:14.207806"}, "last_modified": {"type": "/type/datetime", "value": "2022-04-13T05:58:14.207806"}}
+/type/author /authors/OL10348037A 1 2022-04-14T05:06:17.809624 {"type": {"key": "/type/author"}, "name": "Janet Munn", "personal_name": "Janet Munn", "key": "/authors/OL10348037A", "source_records": ["ia:armyonitskneesdy0000munn"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-04-14T05:06:17.809624"}, "last_modified": {"type": "/type/datetime", "value": "2022-04-14T05:06:17.809624"}}
+/type/author /authors/OL10348135A 1 2022-04-14T06:03:24.190614 {"type": {"key": "/type/author"}, "name": "Ning An", "personal_name": "Ning An", "birth_date": "1982", "key": "/authors/OL10348135A", "source_records": ["ia:liaozhaiwushihu0000anni"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-04-14T06:03:24.190614"}, "last_modified": {"type": "/type/datetime", "value": "2022-04-14T06:03:24.190614"}}
+/type/author /authors/OL1034828A 2 2008-08-19T22:17:32.092107 {"name": "Manuel Maceiras Fafi\u0301an", "personal_name": "Manuel Maceiras Fafi\u0301an", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T22:17:32.092107"}, "key": "/authors/OL1034828A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10348437A 1 2022-04-16T04:56:12.484519 {"type": {"key": "/type/author"}, "name": "Muyao Duan", "personal_name": "Muyao Duan", "date": "1982", "key": "/authors/OL10348437A", "source_records": ["ia:zhanghengezhihun0000duan"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-04-16T04:56:12.484519"}, "last_modified": {"type": "/type/datetime", "value": "2022-04-16T04:56:12.484519"}}
+/type/author /authors/OL10348441A 1 2022-04-16T04:57:52.689421 {"type": {"key": "/type/author"}, "name": "Renick W. Dunlap", "personal_name": "Renick W. Dunlap", "birth_date": "1872", "death_date": "1945", "key": "/authors/OL10348441A", "source_records": ["ia:CAT31447562"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-04-16T04:57:52.689421"}, "last_modified": {"type": "/type/datetime", "value": "2022-04-16T04:57:52.689421"}}
+/type/author /authors/OL1034877A 2 2008-08-19T22:17:47.356015 {"name": "Vincenzo Gallina", "personal_name": "Vincenzo Gallina", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T22:17:47.356015"}, "key": "/authors/OL1034877A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10349016A 1 2022-04-22T07:46:49.848757 {"type": {"key": "/type/author"}, "name": "Luseno D.", "key": "/authors/OL10349016A", "source_records": ["amazon:5389122372"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-04-22T07:46:49.848757"}, "last_modified": {"type": "/type/datetime", "value": "2022-04-22T07:46:49.848757"}}
+/type/author /authors/OL10349062A 1 2022-04-22T15:40:02.828296 {"type": {"key": "/type/author"}, "name": "Soler Francisco", "key": "/authors/OL10349062A", "source_records": ["amazon:9586482901"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-04-22T15:40:02.828296"}, "last_modified": {"type": "/type/datetime", "value": "2022-04-22T15:40:02.828296"}}
+/type/author /authors/OL10350086A 1 2022-04-25T22:07:45.016864 {"type": {"key": "/type/author"}, "name": "LAPCHAROENSAP RATTAWUT", "key": "/authors/OL10350086A", "source_records": ["amazon:2283021030"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-04-25T22:07:45.016864"}, "last_modified": {"type": "/type/datetime", "value": "2022-04-25T22:07:45.016864"}}
+/type/author /authors/OL10350140A 1 2022-04-25T22:10:33.096750 {"type": {"key": "/type/author"}, "name": "Josef G. Cascales", "personal_name": "Josef G. Cascales", "birth_date": "1928", "death_date": "2012", "key": "/authors/OL10350140A", "source_records": ["marc:marc_dnb_202006/dnb_all_dnbmarc_20200615-1.mrc:515580498:898"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-04-25T22:10:33.096750"}, "last_modified": {"type": "/type/datetime", "value": "2022-04-25T22:10:33.096750"}}
+/type/author /authors/OL10350313A 1 2022-04-25T22:50:44.418294 {"type": {"key": "/type/author"}, "name": "Artur Z\u00f6ller", "personal_name": "Artur Z\u00f6ller", "key": "/authors/OL10350313A", "source_records": ["marc:marc_dnb_202006/dnb_all_dnbmarc_20200615-1.mrc:516420234:953"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-04-25T22:50:44.418294"}, "last_modified": {"type": "/type/datetime", "value": "2022-04-25T22:50:44.418294"}}
+/type/author /authors/OL10350484A 1 2022-04-25T23:00:08.978692 {"type": {"key": "/type/author"}, "name": "Barnickel, ...", "personal_name": "Barnickel, ...", "key": "/authors/OL10350484A", "source_records": ["marc:marc_dnb_202006/dnb_all_dnbmarc_20200615-1.mrc:517285659:1362"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-04-25T23:00:08.978692"}, "last_modified": {"type": "/type/datetime", "value": "2022-04-25T23:00:08.978692"}}
+/type/author /authors/OL10350986A 1 2022-04-25T23:31:44.661625 {"type": {"key": "/type/author"}, "name": "Georg Piltz", "personal_name": "Georg Piltz", "birth_date": "1925", "death_date": "2011", "key": "/authors/OL10350986A", "source_records": ["marc:marc_dnb_202006/dnb_all_dnbmarc_20200615-1.mrc:520142927:1018"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-04-25T23:31:44.661625"}, "last_modified": {"type": "/type/datetime", "value": "2022-04-25T23:31:44.661625"}}
+/type/author /authors/OL10351161A 1 2022-04-25T23:40:36.184913 {"type": {"key": "/type/author"}, "name": "Armin Abmeier", "personal_name": "Armin Abmeier", "birth_date": "1940", "death_date": "2012", "key": "/authors/OL10351161A", "source_records": ["marc:marc_dnb_202006/dnb_all_dnbmarc_20200615-1.mrc:520930195:826"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-04-25T23:40:36.184913"}, "last_modified": {"type": "/type/datetime", "value": "2022-04-25T23:40:36.184913"}}
+/type/author /authors/OL10351799A 1 2022-04-26T02:49:23.906205 {"type": {"key": "/type/author"}, "name": "Alexander Herbst", "personal_name": "Alexander Herbst", "key": "/authors/OL10351799A", "source_records": ["marc:marc_dnb_202006/dnb_all_dnbmarc_20200615-4.mrc:5312683:2132"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-04-26T02:49:23.906205"}, "last_modified": {"type": "/type/datetime", "value": "2022-04-26T02:49:23.906205"}}
+/type/author /authors/OL10351932A 1 2022-04-26T03:01:26.295608 {"type": {"key": "/type/author"}, "name": "Juan M. Fern\u00e1ndez Chico", "personal_name": "Juan M. Fern\u00e1ndez Chico", "key": "/authors/OL10351932A", "source_records": ["marc:marc_dnb_202006/dnb_all_dnbmarc_20200615-4.mrc:9683373:2090"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-04-26T03:01:26.295608"}, "last_modified": {"type": "/type/datetime", "value": "2022-04-26T03:01:26.295608"}}
+/type/author /authors/OL1035204A 1 2008-04-01T03:28:50.625462 {"name": "Western Australia. Petrol Prices Advisory Committee.", "last_modified": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "key": "/authors/OL1035204A", "type": {"key": "/type/author"}, "revision": 1}
+/type/author /authors/OL10352223A 1 2022-04-26T10:05:39.686329 {"type": {"key": "/type/author"}, "name": "Christopher Paolini", "key": "/authors/OL10352223A", "source_records": ["amazon:274702119X"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-04-26T10:05:39.686329"}, "last_modified": {"type": "/type/datetime", "value": "2022-04-26T10:05:39.686329"}}
+/type/author /authors/OL10352296A 1 2022-04-26T10:40:43.747608 {"type": {"key": "/type/author"}, "name": "SABARD MARIE HELENE / DICKENS CHARLES", "key": "/authors/OL10352296A", "source_records": ["amazon:2211081053"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-04-26T10:40:43.747608"}, "last_modified": {"type": "/type/datetime", "value": "2022-04-26T10:40:43.747608"}}
+/type/author /authors/OL10352561A 1 2022-04-29T02:09:27.515596 {"type": {"key": "/type/author"}, "name": "L.J. Greene", "key": "/authors/OL10352561A", "source_records": ["amazon:0998271632"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-04-29T02:09:27.515596"}, "last_modified": {"type": "/type/datetime", "value": "2022-04-29T02:09:27.515596"}}
+/type/author /authors/OL10352684A 1 2022-04-30T14:33:33.719099 {"type": {"key": "/type/author"}, "name": "Lee Mun-Yung", "key": "/authors/OL10352684A", "source_records": ["amazon:8952770021"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-04-30T14:33:33.719099"}, "last_modified": {"type": "/type/datetime", "value": "2022-04-30T14:33:33.719099"}}
+/type/author /authors/OL10353101A 1 2022-05-05T06:00:42.742663 {"type": {"key": "/type/author"}, "name": "Jean-Fran\u00e7ois Chassay", "personal_name": "Jean-Fran\u00e7ois Chassay", "birth_date": "1959", "key": "/authors/OL10353101A", "source_records": ["ia:requiempouruncou0000chas"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-05T06:00:42.742663"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-05T06:00:42.742663"}}
+/type/author /authors/OL10353164A 1 2022-05-05T06:35:49.917439 {"type": {"key": "/type/author"}, "name": "Maruko", "key": "/authors/OL10353164A", "source_records": ["ia:jissenamerikafud0000unse"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-05T06:35:49.917439"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-05T06:35:49.917439"}}
+/type/author /authors/OL10353174A 1 2022-05-05T08:43:24.957033 {"type": {"key": "/type/author"}, "name": "Moore Short Smith Ta", "key": "/authors/OL10353174A", "source_records": ["amazon:1285948793"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-05T08:43:24.957033"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-05T08:43:24.957033"}}
+/type/author /authors/OL10353237A 1 2022-05-05T18:31:11.801882 {"type": {"key": "/type/author"}, "name": "Daved Rosensweet MD", "key": "/authors/OL10353237A", "source_records": ["amazon:0999744909"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-05T18:31:11.801882"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-05T18:31:11.801882"}}
+/type/author /authors/OL10353734A 1 2022-05-07T00:31:11.289739 {"type": {"key": "/type/author"}, "name": "978-0786838684, 078683868X, 9780786838684", "key": "/authors/OL10353734A", "source_records": ["amazon:0552577626"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-07T00:31:11.289739"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-07T00:31:11.289739"}}
+/type/author /authors/OL10354100A 1 2022-05-07T16:15:55.921222 {"name": "Susanna Fava", "key": "/authors/OL10354100A", "type": {"key": "/type/author"}, "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-07T16:15:55.921222"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-07T16:15:55.921222"}}
+/type/author /authors/OL10354166A 1 2022-05-08T04:42:41.747075 {"type": {"key": "/type/author"}, "name": "H. C. Andersen", "personal_name": "H. C. Andersen", "birth_date": "1805", "death_date": "1875", "key": "/authors/OL10354166A", "source_records": ["ia:tushengtonghua0019unse"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-08T04:42:41.747075"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-08T04:42:41.747075"}}
+/type/author /authors/OL10354586A 1 2022-05-11T04:59:46.310343 {"type": {"key": "/type/author"}, "name": "Xiping Zhao", "personal_name": "Xiping Zhao", "key": "/authors/OL10354586A", "source_records": ["ia:luyoushichangyin0000zhao"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-11T04:59:46.310343"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-11T04:59:46.310343"}}
+/type/author /authors/OL10354625A 1 2022-05-11T05:32:52.816109 {"type": {"key": "/type/author"}, "name": "Marc-Andr\u00e9 Guindon", "personal_name": "Marc-Andr\u00e9 Guindon", "key": "/authors/OL10354625A", "source_records": ["ia:learningautodesk0000guin_n0q3"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-11T05:32:52.816109"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-11T05:32:52.816109"}}
+/type/author /authors/OL10354797A 1 2022-05-11T06:54:19.592855 {"type": {"key": "/type/author"}, "name": "U.S. Department of the Interior. Fish and Wildlife Service. Bureau of Sport Fisheries and Wildlife", "key": "/authors/OL10354797A", "source_records": ["ia:nationalwildlife00usde"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-11T06:54:19.592855"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-11T06:54:19.592855"}}
+/type/author /authors/OL10354926A 1 2022-05-11T18:28:52.655623 {"type": {"key": "/type/author"}, "name": "Amie D. Brooks PharmD FCCP BCACP", "key": "/authors/OL10354926A", "source_records": ["amazon:1506208436"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-11T18:28:52.655623"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-11T18:28:52.655623"}}
+/type/author /authors/OL10355212A 1 2022-05-12T06:07:57.302097 {"type": {"key": "/type/author"}, "name": "Cambridge Tile Mfg. Company", "key": "/authors/OL10355212A", "source_records": ["ia:suntileceramicti00camb"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-12T06:07:57.302097"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-12T06:07:57.302097"}}
+/type/author /authors/OL10355259A 1 2022-05-12T07:00:39.293470 {"type": {"key": "/type/author"}, "name": "29 Singapore authors", "key": "/authors/OL10355259A", "source_records": ["amazon:9814827347"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-12T07:00:39.293470"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-12T07:00:39.293470"}}
+/type/author /authors/OL10355329A 1 2022-05-12T15:53:17.936859 {"type": {"key": "/type/author"}, "name": "Jacquie Marquez", "key": "/authors/OL10355329A", "source_records": ["amazon:0692106197"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-12T15:53:17.936859"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-12T15:53:17.936859"}}
+/type/author /authors/OL10355349A 1 2022-05-12T20:24:33.257308 {"type": {"key": "/type/author"}, "name": "ernest sheldon [illustrated by harry baerg] booth", "key": "/authors/OL10355349A", "source_records": ["amazon:0520001524"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-12T20:24:33.257308"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-12T20:24:33.257308"}}
+/type/author /authors/OL10355357A 1 2022-05-12T20:49:28.661376 {"type": {"key": "/type/author"}, "name": "978-0525433446, 0525433449, 9780525433446", "key": "/authors/OL10355357A", "source_records": ["amazon:9123589779"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-12T20:49:28.661376"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-12T20:49:28.661376"}}
+/type/author /authors/OL10355604A 1 2022-05-13T08:05:28.197784 {"type": {"key": "/type/author"}, "name": "John Holt & Co. (Liverpool)", "key": "/authors/OL10355604A", "source_records": ["ia:merchantadventur00unse"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-13T08:05:28.197784"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-13T08:05:28.197784"}}
+/type/author /authors/OL10355705A 2 2022-05-13T21:23:37.812635 {"name": "Ronya Othmann", "key": "/authors/OL10355705A", "type": {"key": "/type/author"}, "birth_date": "12 January 1993", "remote_ids": {"wikidata": "Q64861176"}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2022-05-13T21:20:48.695506"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-13T21:23:37.812635"}}
+/type/author /authors/OL10355764A 1 2022-05-14T05:05:10.432864 {"type": {"key": "/type/author"}, "name": "S\u012b N\u00f4rthako\u1e6da P\u0101rkinsana", "personal_name": "S\u012b N\u00f4rthako\u1e6da P\u0101rkinsana", "key": "/authors/OL10355764A", "source_records": ["ia:unnatike134gurah0000park"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-14T05:05:10.432864"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-14T05:05:10.432864"}}
+/type/author /authors/OL10355945A 1 2022-05-14T08:32:38.180542 {"type": {"key": "/type/author"}, "name": "J\u00fcrgen Schimanek", "personal_name": "J\u00fcrgen Schimanek", "birth_date": "1939", "death_date": "2014", "key": "/authors/OL10355945A", "source_records": ["ia:diestaatssekreta0000schi"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-14T08:32:38.180542"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-14T08:32:38.180542"}}
+/type/author /authors/OL10356752A 1 2022-05-17T08:36:06.459683 {"type": {"key": "/type/author"}, "name": "Todd Burpo; David Drury", "key": "/authors/OL10356752A", "source_records": ["amazon:1546033262"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-17T08:36:06.459683"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-17T08:36:06.459683"}}
+/type/author /authors/OL1035717A 1 2008-04-01T03:28:50.625462 {"name": "Allen Press.", "last_modified": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "key": "/authors/OL1035717A", "type": {"key": "/type/author"}, "revision": 1}
+/type/author /authors/OL1035755A 5 2020-09-30T15:33:35.688783 {"personal_name": "Jean-Baptiste Muratore", "last_modified": {"type": "/type/datetime", "value": "2020-09-30T15:33:35.688783"}, "latest_revision": 5, "key": "/authors/OL1035755A", "remote_ids": {"viaf": "22943838", "wikidata": "Q3164307", "isni": "0000000013554417"}, "name": "Jean-Baptiste Muratore", "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "death_date": "1977", "birth_date": "1915", "type": {"key": "/type/author"}, "revision": 5}
+/type/author /authors/OL1035760A 1 2008-04-01T03:28:50.625462 {"name": "Venet, Bernar", "last_modified": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "key": "/authors/OL1035760A", "type": {"key": "/type/author"}, "revision": 1}
+/type/author /authors/OL10357871A 1 2022-05-18T04:36:18.749211 {"type": {"key": "/type/author"}, "name": "George Watts Garrod", "personal_name": "George Watts Garrod", "birth_date": "1857", "death_date": "1936", "key": "/authors/OL10357871A", "source_records": ["marc:marc_gtu/KLF IA Export 5-5-22.mrc:10741065:1280"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-18T04:36:18.749211"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-18T04:36:18.749211"}}
+/type/author /authors/OL10357964A 1 2022-05-18T04:46:55.081359 {"type": {"key": "/type/author"}, "name": "Hans Ludwig Holborn", "personal_name": "Hans Ludwig Holborn", "key": "/authors/OL10357964A", "source_records": ["marc:marc_gtu/KLF IA Export 5-5-22.mrc:11902268:1190"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-18T04:46:55.081359"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-18T04:46:55.081359"}}
+/type/author /authors/OL10357980A 1 2022-05-18T04:47:22.598426 {"type": {"key": "/type/author"}, "name": "Barrow, John musician", "title": "musician", "personal_name": "Barrow, John", "key": "/authors/OL10357980A", "source_records": ["marc:marc_gtu/KLF IA Export 5-5-22.mrc:11948198:1049"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-18T04:47:22.598426"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-18T04:47:22.598426"}}
+/type/author /authors/OL10358659A 1 2022-05-18T06:44:03.040640 {"type": {"key": "/type/author"}, "name": "Rudolf Finsler", "personal_name": "Rudolf Finsler", "key": "/authors/OL10358659A", "source_records": ["marc:marc_gtu/KLF IA Export 5-5-22.mrc:22703978:1545"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-18T06:44:03.040640"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-18T06:44:03.040640"}}
+/type/author /authors/OL10359477A 1 2022-05-18T09:19:55.636112 {"type": {"key": "/type/author"}, "name": "E.-J Savign\u00e9", "personal_name": "E.-J Savign\u00e9", "birth_date": "1834", "death_date": "1906", "key": "/authors/OL10359477A", "source_records": ["marc:marc_gtu/KLF IA Export 5-5-22.mrc:42987989:1097"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-18T09:19:55.636112"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-18T09:19:55.636112"}}
+/type/author /authors/OL10359535A 1 2022-05-18T09:26:29.809051 {"type": {"key": "/type/author"}, "name": "Universit\u00e4t Wittenberg", "key": "/authors/OL10359535A", "source_records": ["marc:marc_gtu/KLF IA Export 5-5-22.mrc:43771789:1433"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-18T09:26:29.809051"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-18T09:26:29.809051"}}
+/type/author /authors/OL10359711A 1 2022-05-18T09:45:56.092752 {"type": {"key": "/type/author"}, "name": "John Williams", "personal_name": "John Williams", "birth_date": "1811", "death_date": "1862", "key": "/authors/OL10359711A", "source_records": ["marc:marc_gtu/KLF IA Export 5-5-22.mrc:45935961:1900"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-18T09:45:56.092752"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-18T09:45:56.092752"}}
+/type/author /authors/OL10359724A 1 2022-05-18T09:47:46.122586 {"type": {"key": "/type/author"}, "name": "Charles Johnson Woodbury", "personal_name": "Charles Johnson Woodbury", "birth_date": "1844", "death_date": "1927", "key": "/authors/OL10359724A", "source_records": ["marc:marc_gtu/KLF IA Export 5-5-22.mrc:46137898:1088"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-18T09:47:46.122586"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-18T09:47:46.122586"}}
+/type/author /authors/OL10359774A 1 2022-05-18T09:51:24.084049 {"type": {"key": "/type/author"}, "name": "W. Storrs", "personal_name": "W. Storrs", "key": "/authors/OL10359774A", "source_records": ["marc:marc_gtu/KLF IA Export 5-5-22.mrc:46529453:1209"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-18T09:51:24.084049"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-18T09:51:24.084049"}}
+/type/author /authors/OL10359908A 1 2022-05-18T10:00:33.548494 {"type": {"key": "/type/author"}, "name": "A\u1e1fanasi\u012d Bulgakov", "personal_name": "A\u1e1fanasi\u012d Bulgakov", "birth_date": "1859", "death_date": "1907", "key": "/authors/OL10359908A", "source_records": ["marc:marc_gtu/KLF IA Export 5-5-22.mrc:47601432:1377"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-18T10:00:33.548494"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-18T10:00:33.548494"}}
+/type/author /authors/OL10360357A 1 2022-05-18T10:44:01.280123 {"type": {"key": "/type/author"}, "name": "Walter Ashbel Sellew", "personal_name": "Walter Ashbel Sellew", "birth_date": "1844", "death_date": "1929", "key": "/authors/OL10360357A", "source_records": ["marc:marc_gtu/KLF IA Export 5-5-22.mrc:52620165:1168"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-18T10:44:01.280123"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-18T10:44:01.280123"}}
+/type/author /authors/OL10360615A 1 2022-05-18T11:10:08.638375 {"type": {"key": "/type/author"}, "name": "Kairos/USA", "key": "/authors/OL10360615A", "source_records": ["marc:marc_gtu/KLF IA Export 5-5-22.mrc:56455315:884"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-18T11:10:08.638375"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-18T11:10:08.638375"}}
+/type/author /authors/OL10360960A 1 2022-05-18T11:56:43.808960 {"name": "\u6cb9\u70b8\u5305\u5b50", "key": "/authors/OL10360960A", "type": {"key": "/type/author"}, "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-18T11:56:43.808960"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-18T11:56:43.808960"}}
+/type/author /authors/OL10361217A 1 2022-05-18T12:31:31.216302 {"type": {"key": "/type/author"}, "name": "Theodore Russell Ludlow", "personal_name": "Theodore Russell Ludlow", "birth_date": "1883", "key": "/authors/OL10361217A", "source_records": ["marc:marc_gtu/KLF IA Export 5-5-22.mrc:65046930:856"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-18T12:31:31.216302"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-18T12:31:31.216302"}}
+/type/author /authors/OL10361662A 1 2022-05-18T13:28:16.924846 {"type": {"key": "/type/author"}, "name": "T. D. Roberts", "personal_name": "T. D. Roberts", "birth_date": "1849", "key": "/authors/OL10361662A", "source_records": ["marc:marc_gtu/KLF IA Export 5-5-22.mrc:71324544:923"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-18T13:28:16.924846"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-18T13:28:16.924846"}}
+/type/author /authors/OL10361693A 1 2022-05-18T13:32:49.782191 {"type": {"key": "/type/author"}, "name": "Thomas M. Donn", "personal_name": "Thomas M. Donn", "birth_date": "1907", "key": "/authors/OL10361693A", "source_records": ["marc:marc_gtu/KLF IA Export 5-5-22.mrc:71910001:877"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-18T13:32:49.782191"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-18T13:32:49.782191"}}
+/type/author /authors/OL10361737A 1 2022-05-18T13:38:32.512556 {"type": {"key": "/type/author"}, "name": "Jarlath Prendergast", "personal_name": "Jarlath Prendergast", "key": "/authors/OL10361737A", "source_records": ["marc:marc_gtu/KLF IA Export 5-5-22.mrc:72589178:1074"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-18T13:38:32.512556"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-18T13:38:32.512556"}}
+/type/author /authors/OL10362026A 1 2022-05-18T14:01:12.735563 {"type": {"key": "/type/author"}, "name": "United American Freewill Baptists", "key": "/authors/OL10362026A", "source_records": ["marc:marc_gtu/KLF IA Export 5-5-22.mrc:74963166:1078"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-18T14:01:12.735563"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-18T14:01:12.735563"}}
+/type/author /authors/OL10362212A 1 2022-05-18T14:09:36.566660 {"type": {"key": "/type/author"}, "name": "Spirit Rock Meditation Center", "key": "/authors/OL10362212A", "source_records": ["marc:marc_gtu/KLF IA Export 5-5-22.mrc:76112669:1746"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-18T14:09:36.566660"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-18T14:09:36.566660"}}
+/type/author /authors/OL10362239A 1 2022-05-18T14:10:11.249356 {"type": {"key": "/type/author"}, "name": "Konko Churches of North America", "key": "/authors/OL10362239A", "source_records": ["marc:marc_gtu/KLF IA Export 5-5-22.mrc:76186693:1744"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-18T14:10:11.249356"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-18T14:10:11.249356"}}
+/type/author /authors/OL10362245A 1 2022-05-18T14:10:19.093503 {"type": {"key": "/type/author"}, "name": "Lemuria Builders", "key": "/authors/OL10362245A", "source_records": ["marc:marc_gtu/KLF IA Export 5-5-22.mrc:76203270:2041"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-18T14:10:19.093503"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-18T14:10:19.093503"}}
+/type/author /authors/OL10362713A 1 2022-05-18T14:53:45.649416 {"type": {"key": "/type/author"}, "name": "Leland E. Gartrell", "personal_name": "Leland E. Gartrell", "key": "/authors/OL10362713A", "source_records": ["marc:marc_gtu/KLF IA Export 5-5-22.mrc:81648181:1172"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-18T14:53:45.649416"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-18T14:53:45.649416"}}
+/type/author /authors/OL10362806A 1 2022-05-18T15:03:16.841069 {"type": {"key": "/type/author"}, "name": "Ricardo Gar\u0107ia Villoslada", "personal_name": "Ricardo Gar\u0107ia Villoslada", "key": "/authors/OL10362806A", "source_records": ["marc:marc_gtu/KLF IA Export 5-5-22.mrc:82413472:1163"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-18T15:03:16.841069"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-18T15:03:16.841069"}}
+/type/author /authors/OL10362990A 1 2022-05-18T15:23:19.881718 {"type": {"key": "/type/author"}, "name": "Bertrams, G., S. J.", "personal_name": "Bertrams, G., S. J.", "key": "/authors/OL10362990A", "source_records": ["marc:marc_gtu/KLF IA Export 5-5-22.mrc:84108750:887"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-18T15:23:19.881718"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-18T15:23:19.881718"}}
+/type/author /authors/OL10363094A 1 2022-05-18T15:38:08.148856 {"type": {"key": "/type/author"}, "name": "Eridsford Michael O'Brien", "personal_name": "Eridsford Michael O'Brien", "key": "/authors/OL10363094A", "source_records": ["marc:marc_gtu/KLF IA Export 5-5-22.mrc:85387843:947"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-18T15:38:08.148856"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-18T15:38:08.148856"}}
+/type/author /authors/OL10363362A 1 2022-05-18T16:15:50.231573 {"type": {"key": "/type/author"}, "name": "Domenico Jorio", "personal_name": "Domenico Jorio", "birth_date": "1867", "key": "/authors/OL10363362A", "source_records": ["marc:marc_gtu/KLF IA Export 5-5-22.mrc:88759621:1005"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-18T16:15:50.231573"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-18T16:15:50.231573"}}
+/type/author /authors/OL10363400A 1 2022-05-18T16:21:47.208132 {"type": {"key": "/type/author"}, "name": "Giovanni Battista da Farnese", "personal_name": "Giovanni Battista da Farnese", "key": "/authors/OL10363400A", "source_records": ["marc:marc_gtu/KLF IA Export 5-5-22.mrc:89343124:747"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-18T16:21:47.208132"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-18T16:21:47.208132"}}
+/type/author /authors/OL10363474A 1 2022-05-18T16:28:43.126488 {"type": {"key": "/type/author"}, "name": "Chester A. Burns", "personal_name": "Chester A. Burns", "birth_date": "1896", "key": "/authors/OL10363474A", "source_records": ["marc:marc_gtu/KLF IA Export 5-5-22.mrc:89971993:1307"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-18T16:28:43.126488"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-18T16:28:43.126488"}}
+/type/author /authors/OL10363623A 1 2022-05-18T16:39:07.975251 {"type": {"key": "/type/author"}, "name": "Eileen M. Fleeton", "personal_name": "Eileen M. Fleeton", "key": "/authors/OL10363623A", "source_records": ["marc:marc_gtu/KLF IA Export 5-5-22.mrc:90814518:713"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-18T16:39:07.975251"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-18T16:39:07.975251"}}
+/type/author /authors/OL1036374A 2 2008-08-19T22:25:09.301332 {"name": "T. A. M. Nash", "personal_name": "T. A. M. Nash", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T22:25:09.301332"}, "key": "/authors/OL1036374A", "birth_date": "1905", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10363922A 1 2022-05-18T16:55:11.446997 {"type": {"key": "/type/author"}, "name": "\u012ash\u014d-Yahbh of Kuphl\u0101n\u0101", "title": "of Kuphl\u0101n\u0101", "personal_name": "\u012ash\u014d-Yahbh", "date": "7th century.", "key": "/authors/OL10363922A", "source_records": ["marc:marc_gtu/KLF IA Export 5-5-22.mrc:91986060:965"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-18T16:55:11.446997"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-18T16:55:11.446997"}}
+/type/author /authors/OL10363931A 1 2022-05-18T16:56:22.127936 {"type": {"key": "/type/author"}, "name": "Stephan Horst", "personal_name": "Stephan Horst", "birth_date": "1873", "key": "/authors/OL10363931A", "source_records": ["marc:marc_gtu/KLF IA Export 5-5-22.mrc:92064763:810"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-18T16:56:22.127936"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-18T16:56:22.127936"}}
+/type/author /authors/OL10364313A 1 2022-05-18T17:49:09.425175 {"type": {"key": "/type/author"}, "name": "Convegno dei Superiori e Professori dei seminari regionali e maggiori d'Italia (3d 1951 Rome)", "key": "/authors/OL10364313A", "source_records": ["marc:marc_gtu/KLF IA Export 5-5-22.mrc:97590536:790"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-18T17:49:09.425175"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-18T17:49:09.425175"}}
+/type/author /authors/OL10364317A 1 2022-05-18T17:49:39.723838 {"type": {"key": "/type/author"}, "name": "V. G. Lombardo", "personal_name": "V. G. Lombardo", "key": "/authors/OL10364317A", "source_records": ["marc:marc_gtu/KLF IA Export 5-5-22.mrc:97628868:726"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-18T17:49:39.723838"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-18T17:49:39.723838"}}
+/type/author /authors/OL10364550A 1 2022-05-19T11:46:21.821686 {"name": "Clara Nu\u00f1ez", "key": "/authors/OL10364550A", "type": {"key": "/type/author"}, "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-19T11:46:21.821686"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-19T11:46:21.821686"}}
+/type/author /authors/OL10364582A 1 2022-05-19T19:25:06.350641 {"type": {"key": "/type/author"}, "name": "J.S. Malcom", "key": "/authors/OL10364582A", "source_records": ["amazon:169642741X"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-19T19:25:06.350641"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-19T19:25:06.350641"}}
+/type/author /authors/OL10365018A 1 2022-05-24T07:54:09.853657 {"type": {"key": "/type/author"}, "name": "A M Dyer", "key": "/authors/OL10365018A", "source_records": ["amazon:0645462926"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-24T07:54:09.853657"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-24T07:54:09.853657"}}
+/type/author /authors/OL10365107A 1 2022-05-24T23:00:14.522310 {"type": {"key": "/type/author"}, "name": "Stan Targosz", "key": "/authors/OL10365107A", "source_records": ["amazon:0692665498"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-24T23:00:14.522310"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-24T23:00:14.522310"}}
+/type/author /authors/OL10365481A 1 2022-05-24T23:57:02.734255 {"type": {"key": "/type/author"}, "name": "Dr. Na Yu", "key": "/authors/OL10365481A", "source_records": ["pressbooks:https://pressbooks.library.ryerson.ca/multivariatecalculus/"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-24T23:57:02.734255"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-24T23:57:02.734255"}}
+/type/author /authors/OL10366632A 1 2022-05-25T00:52:22.102348 {"type": {"key": "/type/author"}, "name": "Selinda Berg", "key": "/authors/OL10366632A", "source_records": ["pressbooks:https://ecampusontario.pressbooks.pub/inclusivehealth/"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-25T00:52:22.102348"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T00:52:22.102348"}}
+/type/author /authors/OL10366758A 1 2022-05-25T00:56:56.087442 {"type": {"key": "/type/author"}, "name": "bshelton", "key": "/authors/OL10366758A", "source_records": ["pressbooks:https://harpercollege.pressbooks.pub/filmto1942/"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-25T00:56:56.087442"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T00:56:56.087442"}}
+/type/author /authors/OL10366838A 1 2022-05-25T01:02:04.423492 {"type": {"key": "/type/author"}, "name": "David Kwasny", "key": "/authors/OL10366838A", "source_records": ["pressbooks:https://ecampusontario.pressbooks.pub/osdigcomm/"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-25T01:02:04.423492"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T01:02:04.423492"}}
+/type/author /authors/OL1036684A 2 2008-08-19T22:26:27.480014 {"name": "L. A. Deribas", "personal_name": "L. A. Deribas", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T22:26:27.480014"}, "key": "/authors/OL1036684A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10367076A 1 2022-05-25T01:15:11.127795 {"type": {"key": "/type/author"}, "name": "Mike Thelin", "key": "/authors/OL10367076A", "source_records": ["pressbooks:https://uen.pressbooks.pub/ehsl/"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-25T01:15:11.127795"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T01:15:11.127795"}}
+/type/author /authors/OL10367179A 1 2022-05-25T02:06:14.623978 {"type": {"key": "/type/author"}, "name": "David Sleep", "key": "/authors/OL10367179A", "source_records": ["bwb:9780752433813"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-25T02:06:14.623978"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T02:06:14.623978"}}
+/type/author /authors/OL10367265A 1 2022-05-25T02:52:35.805268 {"type": {"key": "/type/author"}, "name": "Quay Assessment Staff", "key": "/authors/OL10367265A", "source_records": ["bwb:9781841960753"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-25T02:52:35.805268"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T02:52:35.805268"}}
+/type/author /authors/OL1036749A 1 2008-04-01T03:28:50.625462 {"name": "New South Wales. Law Reform Commission.", "last_modified": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "key": "/authors/OL1036749A", "type": {"key": "/type/author"}, "revision": 1}
+/type/author /authors/OL10367532A 1 2022-05-25T03:50:02.546153 {"type": {"key": "/type/author"}, "name": "Hermoine Cameron", "key": "/authors/OL10367532A", "source_records": ["bwb:9780752432236"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-25T03:50:02.546153"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T03:50:02.546153"}}
+/type/author /authors/OL1036755A 2 2017-11-27T19:19:33.565477 {"name": "Geguzin, I\u0361A. E.", "personal_name": "Geguzin, I\u0361A. E.", "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2017-11-27T19:19:33.565477"}, "latest_revision": 2, "key": "/authors/OL1036755A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10367620A 1 2022-05-25T04:01:19.690868 {"type": {"key": "/type/author"}, "name": "M. Osawa", "key": "/authors/OL10367620A", "source_records": ["bwb:9780230624870"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-25T04:01:19.690868"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T04:01:19.690868"}}
+/type/author /authors/OL10367675A 1 2022-05-25T04:05:26.305536 {"type": {"key": "/type/author"}, "name": "Bob Bingham", "key": "/authors/OL10367675A", "source_records": ["bwb:9780340549285"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-25T04:05:26.305536"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T04:05:26.305536"}}
+/type/author /authors/OL10368464A 1 2022-05-25T05:54:54.936189 {"type": {"key": "/type/author"}, "name": "Xavier-Gilles N'Ret", "key": "/authors/OL10368464A", "source_records": ["bwb:9783822830529"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-25T05:54:54.936189"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T05:54:54.936189"}}
+/type/author /authors/OL10368775A 1 2022-05-25T06:41:07.099330 {"type": {"key": "/type/author"}, "name": "Laurence Ackerman", "key": "/authors/OL10368775A", "source_records": ["bwb:9781605096193"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-25T06:41:07.099330"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T06:41:07.099330"}}
+/type/author /authors/OL10368893A 1 2022-05-25T06:50:27.858779 {"type": {"key": "/type/author"}, "name": "Sarah M\u00f6sker", "key": "/authors/OL10368893A", "source_records": ["bwb:9783640204625"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-25T06:50:27.858779"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T06:50:27.858779"}}
+/type/author /authors/OL10369122A 1 2022-05-25T07:16:41.978820 {"type": {"key": "/type/author"}, "name": "Carl Toms", "key": "/authors/OL10369122A", "source_records": ["bwb:9781848763401"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-25T07:16:41.978820"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T07:16:41.978820"}}
+/type/author /authors/OL10369161A 1 2022-05-25T07:20:50.040875 {"type": {"key": "/type/author"}, "name": "John Hooley", "key": "/authors/OL10369161A", "source_records": ["bwb:9781780880389"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-25T07:20:50.040875"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T07:20:50.040875"}}
+/type/author /authors/OL10369324A 1 2022-05-25T07:39:15.844382 {"type": {"key": "/type/author"}, "name": "Gallagher Gallagher", "key": "/authors/OL10369324A", "source_records": ["bwb:9781605098487"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-25T07:39:15.844382"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T07:39:15.844382"}}
+/type/author /authors/OL10369804A 1 2022-05-25T08:40:59.766896 {"type": {"key": "/type/author"}, "name": "Christian Bienert", "key": "/authors/OL10369804A", "source_records": ["bwb:9783656506010"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-25T08:40:59.766896"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T08:40:59.766896"}}
+/type/author /authors/OL10369857A 1 2022-05-25T08:48:20.303676 {"type": {"key": "/type/author"}, "name": "Patricia Fryer", "key": "/authors/OL10369857A", "source_records": ["bwb:9781118664209"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-25T08:48:20.303676"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T08:48:20.303676"}}
+/type/author /authors/OL10370078A 1 2022-05-25T09:16:29.918568 {"type": {"key": "/type/author"}, "name": "Kiran Locke", "key": "/authors/OL10370078A", "source_records": ["bwb:9781471829147"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-25T09:16:29.918568"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T09:16:29.918568"}}
+/type/author /authors/OL10370120A 1 2022-05-25T09:21:29.768523 {"type": {"key": "/type/author"}, "name": "Charles Robert Darwin", "key": "/authors/OL10370120A", "source_records": ["bwb:9781783340521"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-25T09:21:29.768523"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T09:21:29.768523"}}
+/type/author /authors/OL10370202A 1 2022-05-25T09:30:47.453521 {"type": {"key": "/type/author"}, "name": "Michael Perris", "key": "/authors/OL10370202A", "source_records": ["bwb:9780750953580"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-25T09:30:47.453521"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T09:30:47.453521"}}
+/type/author /authors/OL10370271A 1 2022-05-25T09:40:33.472789 {"type": {"key": "/type/author"}, "name": "Hones, Edward W., Jr.", "key": "/authors/OL10370271A", "source_records": ["bwb:9781118664223"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-25T09:40:33.472789"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T09:40:33.472789"}}
+/type/author /authors/OL10370654A 1 2022-05-25T10:31:33.179600 {"type": {"key": "/type/author"}, "name": "Ernst Stidsing", "key": "/authors/OL10370654A", "source_records": ["bwb:9788771243246"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-25T10:31:33.179600"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T10:31:33.179600"}}
+/type/author /authors/OL10371189A 1 2022-05-25T11:13:55.972400 {"type": {"key": "/type/author"}, "name": "Gary Blank", "key": "/authors/OL10371189A", "source_records": ["bwb:9781780997575"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-25T11:13:55.972400"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T11:13:55.972400"}}
+/type/author /authors/OL10371316A 1 2022-05-25T11:27:41.086640 {"type": {"key": "/type/author"}, "name": "Judith Sandstrom", "key": "/authors/OL10371316A", "source_records": ["bwb:9780764348587"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-25T11:27:41.086640"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T11:27:41.086640"}}
+/type/author /authors/OL1037141A 2 2008-08-19T22:28:50.5687 {"name": "V. G. Sobolev", "personal_name": "V. G. Sobolev", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T22:28:50.5687"}, "key": "/authors/OL1037141A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10371688A 1 2022-05-25T12:01:41.036812 {"type": {"key": "/type/author"}, "name": "McIntyre, Donald, Donald", "key": "/authors/OL10371688A", "source_records": ["bwb:9781136352966"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-25T12:01:41.036812"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T12:01:41.036812"}}
+/type/author /authors/OL10372157A 1 2022-05-25T13:04:41.363696 {"type": {"key": "/type/author"}, "name": "Angela Whitelock", "key": "/authors/OL10372157A", "source_records": ["bwb:9781789551914"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-25T13:04:41.363696"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T13:04:41.363696"}}
+/type/author /authors/OL10372198A 1 2022-05-25T13:07:25.370007 {"type": {"key": "/type/author"}, "name": "Patrick Drouin", "key": "/authors/OL10372198A", "source_records": ["bwb:9789027265432"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-25T13:07:25.370007"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T13:07:25.370007"}}
+/type/author /authors/OL10372465A 1 2022-05-25T13:39:47.042259 {"type": {"key": "/type/author"}, "name": "Radia Chibani", "key": "/authors/OL10372465A", "source_records": ["bwb:9781510425262"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-25T13:39:47.042259"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T13:39:47.042259"}}
+/type/author /authors/OL1037249A 1 2008-04-01T03:28:50.625462 {"name": "Arbeitszeit-Forum der Gru\u0308nen im Bundestag (1984 Bonn, Germany)", "last_modified": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "key": "/authors/OL1037249A", "type": {"key": "/type/author"}, "revision": 1}
+/type/author /authors/OL10372687A 1 2022-05-25T14:13:23.230765 {"type": {"key": "/type/author"}, "name": "Bruce Nutting", "key": "/authors/OL10372687A", "source_records": ["bwb:9781483580098"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-25T14:13:23.230765"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T14:13:23.230765"}}
+/type/author /authors/OL10372824A 1 2022-05-25T14:33:37.480220 {"type": {"key": "/type/author"}, "name": "Karen Wiltshire (with Nick Townsend)", "key": "/authors/OL10372824A", "source_records": ["bwb:9780750995061"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-25T14:33:37.480220"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T14:33:37.480220"}}
+/type/author /authors/OL10373548A 1 2022-05-25T15:18:17.943364 {"type": {"key": "/type/author"}, "name": "Norma Borelli", "key": "/authors/OL10373548A", "source_records": ["bwb:9781098337087"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-25T15:18:17.943364"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T15:18:17.943364"}}
+/type/author /authors/OL10373878A 1 2022-05-25T15:38:39.076138 {"type": {"key": "/type/author"}, "name": "Margo Walter", "key": "/authors/OL10373878A", "source_records": ["bwb:9781098336530"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-25T15:38:39.076138"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T15:38:39.076138"}}
+/type/author /authors/OL10374118A 1 2022-05-25T15:50:28.506450 {"type": {"key": "/type/author"}, "name": "Jeffery Karp", "key": "/authors/OL10374118A", "source_records": ["bwb:9781473580763"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-25T15:50:28.506450"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T15:50:28.506450"}}
+/type/author /authors/OL1037417A 2 2008-08-19T22:29:50.456665 {"name": "Christiane Lefftz-Sittler", "personal_name": "Christiane Lefftz-Sittler", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T22:29:50.456665"}, "key": "/authors/OL1037417A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10374634A 1 2022-05-25T16:08:10.423407 {"type": {"key": "/type/author"}, "name": "Laura Rubin", "key": "/authors/OL10374634A", "source_records": ["bwb:9781912843602"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-25T16:08:10.423407"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T16:08:10.423407"}}
+/type/author /authors/OL10375028A 1 2022-05-25T16:18:56.454072 {"type": {"key": "/type/author"}, "name": "MABILLARD", "key": "/authors/OL10375028A", "source_records": ["bwb:9783961714193"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-25T16:18:56.454072"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T16:18:56.454072"}}
+/type/author /authors/OL10375031A 1 2022-05-25T16:19:00.055618 {"type": {"key": "/type/author"}, "name": "Will Swaithes", "key": "/authors/OL10375031A", "source_records": ["bwb:9781912820368"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-25T16:19:00.055618"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T16:19:00.055618"}}
+/type/author /authors/OL10375487A 1 2022-05-25T16:32:59.333855 {"type": {"key": "/type/author"}, "name": "Shardul S. Phadnis", "key": "/authors/OL10375487A", "source_records": ["bwb:9783030918125"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-25T16:32:59.333855"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T16:32:59.333855"}}
+/type/author /authors/OL10375509A 1 2022-05-25T16:33:27.756377 {"type": {"key": "/type/author"}, "name": "Ono no Komachi", "key": "/authors/OL10375509A", "source_records": ["bwb:9781529198850"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-25T16:33:27.756377"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T16:33:27.756377"}}
+/type/author /authors/OL10375604A 1 2022-05-25T16:36:36.563570 {"type": {"key": "/type/author"}, "name": "Julius Tanyu Nganji", "key": "/authors/OL10375604A", "source_records": ["bwb:9789811933820"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-25T16:36:36.563570"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T16:36:36.563570"}}
+/type/author /authors/OL10375660A 1 2022-05-25T16:38:04.064899 {"type": {"key": "/type/author"}, "name": "JEFFORD", "key": "/authors/OL10375660A", "source_records": ["bwb:9781913141325"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-25T16:38:04.064899"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T16:38:04.064899"}}
+/type/author /authors/OL10375885A 1 2022-05-25T16:45:24.598293 {"type": {"key": "/type/author"}, "name": "Heba Mohamed", "key": "/authors/OL10375885A", "source_records": ["bwb:9780323952422"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-25T16:45:24.598293"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T16:45:24.598293"}}
+/type/author /authors/OL10376384A 1 2022-05-25T17:00:50.491335 {"type": {"key": "/type/author"}, "name": "Stephen Buckman", "key": "/authors/OL10376384A", "source_records": ["bwb:9781000645736"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-25T17:00:50.491335"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T17:00:50.491335"}}
+/type/author /authors/OL10376604A 1 2022-05-25T17:09:11.077438 {"type": {"key": "/type/author"}, "name": "Dorothy VanderJagt", "key": "/authors/OL10376604A", "source_records": ["bwb:9781475863710"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-25T17:09:11.077438"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T17:09:11.077438"}}
+/type/author /authors/OL10376667A 1 2022-05-25T17:11:46.677435 {"type": {"key": "/type/author"}, "name": "Giusi Russo", "key": "/authors/OL10376667A", "source_records": ["bwb:9781496234438"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-25T17:11:46.677435"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T17:11:46.677435"}}
+/type/author /authors/OL10377264A 1 2022-05-25T17:33:16.610485 {"type": {"key": "/type/author"}, "name": "Suhas P. Veetil", "key": "/authors/OL10377264A", "source_records": ["bwb:9789811916403"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-25T17:33:16.610485"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T17:33:16.610485"}}
+/type/author /authors/OL10377492A 1 2022-05-25T17:42:36.368147 {"type": {"key": "/type/author"}, "name": "Elizabeth Barnert", "key": "/authors/OL10377492A", "source_records": ["bwb:9780520386150"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-25T17:42:36.368147"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T17:42:36.368147"}}
+/type/author /authors/OL1037773A 2 2008-08-18T14:57:43.511255 {"name": "Jean-Marie Cavada", "personal_name": "Jean-Marie Cavada", "last_modified": {"type": "/type/datetime", "value": "2008-08-18T14:57:43.511255"}, "key": "/authors/OL1037773A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10377779A 1 2022-05-25T17:55:35.148580 {"type": {"key": "/type/author"}, "name": "Milan St\u00fcrmer", "key": "/authors/OL10377779A", "source_records": ["bwb:9783035804812"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-25T17:55:35.148580"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T17:55:35.148580"}}
+/type/author /authors/OL10378158A 1 2022-05-25T18:06:22.055658 {"type": {"key": "/type/author"}, "name": "Wolfgang Weidinger", "key": "/authors/OL10378158A", "source_records": ["bwb:9781569908860"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-25T18:06:22.055658"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T18:06:22.055658"}}
+/type/author /authors/OL10378250A 1 2022-05-25T18:09:10.872794 {"type": {"key": "/type/author"}, "name": "Village Voices Reminiscence Group Staff", "key": "/authors/OL10378250A", "source_records": ["bwb:9781789268935"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-25T18:09:10.872794"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T18:09:10.872794"}}
+/type/author /authors/OL10378638A 1 2022-05-25T18:40:36.848669 {"type": {"key": "/type/author"}, "name": "GeoffreyE Blight", "key": "/authors/OL10378638A", "source_records": ["bwb:9781351445115"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-25T18:40:36.848669"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T18:40:36.848669"}}
+/type/author /authors/OL1037884A 2 2008-08-19T22:32:11.369803 {"name": "Pierre Lavoie", "personal_name": "Pierre Lavoie", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T22:32:11.369803"}, "key": "/authors/OL1037884A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10378945A 1 2022-05-25T18:53:08.174757 {"type": {"key": "/type/author"}, "name": "Del Hansen", "key": "/authors/OL10378945A", "source_records": ["bwb:9781667832289"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-25T18:53:08.174757"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T18:53:08.174757"}}
+/type/author /authors/OL10379387A 1 2022-05-25T19:11:26.580156 {"type": {"key": "/type/author"}, "name": "Raghbir S. Khakha", "key": "/authors/OL10379387A", "source_records": ["bwb:9781119798743"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-25T19:11:26.580156"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T19:11:26.580156"}}
+/type/author /authors/OL10379436A 1 2022-05-25T19:13:27.934836 {"type": {"key": "/type/author"}, "name": "Bisheshwar Prasad Litt", "key": "/authors/OL10379436A", "source_records": ["bwb:9788182746633"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-25T19:13:27.934836"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T19:13:27.934836"}}
+/type/author /authors/OL10379505A 1 2022-05-25T19:15:02.130813 {"type": {"key": "/type/author"}, "name": "Nicole Julius", "key": "/authors/OL10379505A", "source_records": ["bwb:9781916483200"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-25T19:15:02.130813"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T19:15:02.130813"}}
+/type/author /authors/OL10379566A 1 2022-05-25T19:16:47.038222 {"type": {"key": "/type/author"}, "name": "Ben Grobbelaar", "key": "/authors/OL10379566A", "source_records": ["bwb:9781098366438"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-25T19:16:47.038222"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T19:16:47.038222"}}
+/type/author /authors/OL10379723A 1 2022-05-25T19:23:42.530917 {"type": {"key": "/type/author"}, "name": "\u00c9ric Gast\u00e9", "key": "/authors/OL10379723A", "source_records": ["bwb:9780764364594"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-25T19:23:42.530917"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T19:23:42.530917"}}
+/type/author /authors/OL1038014A 2 2008-08-19T22:32:58.097932 {"name": "V. D. Gvozdev", "personal_name": "V. D. Gvozdev", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T22:32:58.097932"}, "key": "/authors/OL1038014A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10380287A 1 2022-05-25T19:48:26.961501 {"type": {"key": "/type/author"}, "name": "Roshna E. Wunderlich", "key": "/authors/OL10380287A", "source_records": ["bwb:9783031064357"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-25T19:48:26.961501"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T19:48:26.961501"}}
+/type/author /authors/OL10380300A 1 2022-05-25T19:49:09.818457 {"type": {"key": "/type/author"}, "name": "Janice P. Smith", "key": "/authors/OL10380300A", "source_records": ["bwb:9781475864618"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-25T19:49:09.818457"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T19:49:09.818457"}}
+/type/author /authors/OL10380384A 1 2022-05-25T19:52:37.905591 {"type": {"key": "/type/author"}, "name": "Peter Sawkins", "key": "/authors/OL10380384A", "source_records": ["bwb:9781785303500"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-25T19:52:37.905591"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T19:52:37.905591"}}
+/type/author /authors/OL10381137A 1 2022-05-25T20:25:04.989402 {"type": {"key": "/type/author"}, "name": "Victoria Ostrovskaya", "key": "/authors/OL10381137A", "source_records": ["bwb:9783031049026"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-25T20:25:04.989402"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T20:25:04.989402"}}
+/type/author /authors/OL10381195A 1 2022-05-25T20:27:14.372428 {"type": {"key": "/type/author"}, "name": "Arra Amaru", "key": "/authors/OL10381195A", "source_records": ["bwb:9781667839493"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-25T20:27:14.372428"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T20:27:14.372428"}}
+/type/author /authors/OL10381267A 1 2022-05-25T20:31:35.156094 {"type": {"key": "/type/author"}, "name": "Vivek Bhadra", "key": "/authors/OL10381267A", "source_records": ["bwb:9781838986049"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-25T20:31:35.156094"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T20:31:35.156094"}}
+/type/author /authors/OL10381441A 1 2022-05-25T20:39:01.324232 {"type": {"key": "/type/author"}, "name": "City of Leicester College (Leicester, England), First Story Group Staff", "key": "/authors/OL10381441A", "source_records": ["bwb:9780857483058"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-25T20:39:01.324232"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T20:39:01.324232"}}
+/type/author /authors/OL10381626A 1 2022-05-25T20:47:29.773146 {"type": {"key": "/type/author"}, "name": "Verena Ummenhofer", "key": "/authors/OL10381626A", "source_records": ["bwb:9783422986947"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-25T20:47:29.773146"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T20:47:29.773146"}}
+/type/author /authors/OL10381886A 1 2022-05-25T20:58:53.972464 {"type": {"key": "/type/author"}, "name": "Pigpong", "key": "/authors/OL10381886A", "source_records": ["bwb:9780764364198"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-25T20:58:53.972464"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T20:58:53.972464"}}
+/type/author /authors/OL10382258A 1 2022-05-25T21:18:39.198082 {"type": {"key": "/type/author"}, "name": "Katharine Howard Foundation Staff", "key": "/authors/OL10382258A", "source_records": ["bwb:9781999883782"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-25T21:18:39.198082"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T21:18:39.198082"}}
+/type/author /authors/OL10382305A 1 2022-05-25T21:21:09.423230 {"type": {"key": "/type/author"}, "name": "David E. Avigan", "key": "/authors/OL10382305A", "source_records": ["bwb:9781933880945"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-25T21:21:09.423230"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T21:21:09.423230"}}
+/type/author /authors/OL10382568A 1 2022-05-25T21:31:37.276664 {"type": {"key": "/type/author"}, "name": "Orestis Tringides", "key": "/authors/OL10382568A", "source_records": ["bwb:9783031068690"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-25T21:31:37.276664"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T21:31:37.276664"}}
+/type/author /authors/OL10383068A 1 2022-05-25T21:59:25.181611 {"type": {"key": "/type/author"}, "name": "Alexander Ruthemeier", "key": "/authors/OL10383068A", "source_records": ["bwb:9783031038488"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-25T21:59:25.181611"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T21:59:25.181611"}}
+/type/author /authors/OL1038315A 2 2008-08-19T22:34:20.511627 {"name": "Werner Schatt", "personal_name": "Werner Schatt", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T22:34:20.511627"}, "key": "/authors/OL1038315A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10383184A 1 2022-05-25T22:04:36.507256 {"type": {"key": "/type/author"}, "name": "Ben Kavanagh", "key": "/authors/OL10383184A", "source_records": ["bwb:9781912430765"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-25T22:04:36.507256"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T22:04:36.507256"}}
+/type/author /authors/OL10383594A 1 2022-05-25T22:23:57.183364 {"type": {"key": "/type/author"}, "name": "Gautam Sarker", "key": "/authors/OL10383594A", "source_records": ["bwb:9789354651205"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-25T22:23:57.183364"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T22:23:57.183364"}}
+/type/author /authors/OL10383810A 1 2022-05-25T22:54:32.455703 {"type": {"key": "/type/author"}, "name": "Stoeltie", "key": "/authors/OL10383810A", "source_records": ["bwb:9783822812839"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-25T22:54:32.455703"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T22:54:32.455703"}}
+/type/author /authors/OL10384092A 1 2022-05-26T00:22:15.202717 {"type": {"key": "/type/author"}, "name": "Genia", "key": "/authors/OL10384092A", "source_records": ["bwb:9781403368355"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T00:22:15.202717"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T00:22:15.202717"}}
+/type/author /authors/OL10384284A 1 2022-05-26T00:54:04.339313 {"type": {"key": "/type/author"}, "name": "Ager Karen", "key": "/authors/OL10384284A", "source_records": ["bwb:9781741108507"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T00:54:04.339313"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T00:54:04.339313"}}
+/type/author /authors/OL10384464A 1 2022-05-26T01:25:07.581849 {"type": {"key": "/type/author"}, "name": "Lars Klassen", "key": "/authors/OL10384464A", "source_records": ["bwb:9788788415599"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T01:25:07.581849"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T01:25:07.581849"}}
+/type/author /authors/OL10384668A 1 2022-05-26T01:49:18.470058 {"type": {"key": "/type/author"}, "name": "Brett McMillan", "key": "/authors/OL10384668A", "source_records": ["bwb:9781464105272"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T01:49:18.470058"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T01:49:18.470058"}}
+/type/author /authors/OL10384827A 1 2022-05-26T02:08:54.248290 {"type": {"key": "/type/author"}, "name": "Garinger", "key": "/authors/OL10384827A", "source_records": ["bwb:9780538655798"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T02:08:54.248290"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T02:08:54.248290"}}
+/type/author /authors/OL10385366A 1 2022-05-26T03:11:54.899947 {"type": {"key": "/type/author"}, "name": "Pat Lieby", "key": "/authors/OL10385366A", "source_records": ["bwb:9781613397794"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T03:11:54.899947"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T03:11:54.899947"}}
+/type/author /authors/OL10385596A 1 2022-05-26T03:29:54.167359 {"type": {"key": "/type/author"}, "name": "Kurt Rudolf Hartung", "key": "/authors/OL10385596A", "source_records": ["bwb:9783428005833"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T03:29:54.167359"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T03:29:54.167359"}}
+/type/author /authors/OL10386323A 1 2022-05-26T04:33:10.393617 {"type": {"key": "/type/author"}, "name": "Brian E. Daley", "key": "/authors/OL10386323A", "source_records": ["bwb:9780268077839"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T04:33:10.393617"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T04:33:10.393617"}}
+/type/author /authors/OL10386365A 1 2022-05-26T04:37:09.888503 {"type": {"key": "/type/author"}, "name": "Maar Paul", "key": "/authors/OL10386365A", "source_records": ["amazon:5928732244"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T04:37:09.888503"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T04:37:09.888503"}}
+/type/author /authors/OL10386564A 1 2022-05-26T04:50:34.039069 {"type": {"key": "/type/author"}, "name": "Laura Maria Schutze", "key": "/authors/OL10386564A", "source_records": ["bwb:9788771842616"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T04:50:34.039069"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T04:50:34.039069"}}
+/type/author /authors/OL10386746A 1 2022-05-26T05:02:04.189006 {"type": {"key": "/type/author"}, "name": "Baixiang Liu", "key": "/authors/OL10386746A", "source_records": ["bwb:9789004355965"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T05:02:04.189006"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T05:02:04.189006"}}
+/type/author /authors/OL10386760A 1 2022-05-26T05:02:42.868170 {"type": {"key": "/type/author"}, "name": "Earlene Broussard", "key": "/authors/OL10386760A", "source_records": ["bwb:9781455623761"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T05:02:42.868170"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T05:02:42.868170"}}
+/type/author /authors/OL10387232A 1 2022-05-26T05:36:03.977362 {"type": {"key": "/type/author"}, "name": "Bartlomiej Blesznowski", "key": "/authors/OL10387232A", "source_records": ["bwb:9789004297005"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T05:36:03.977362"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T05:36:03.977362"}}
+/type/author /authors/OL10387570A 1 2022-05-26T06:00:03.646839 {"type": {"key": "/type/author"}, "name": "Arie L. Spaans", "key": "/authors/OL10387570A", "source_records": ["bwb:9789004352315"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T06:00:03.646839"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T06:00:03.646839"}}
+/type/author /authors/OL10388270A 1 2022-05-26T06:55:49.370060 {"type": {"key": "/type/author"}, "name": "Robert Wuttke", "key": "/authors/OL10388270A", "source_records": ["bwb:9783428177240"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T06:55:49.370060"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T06:55:49.370060"}}
+/type/author /authors/OL10388360A 1 2022-05-26T06:59:32.464524 {"type": {"key": "/type/author"}, "name": "Portland Audubon", "key": "/authors/OL10388360A", "source_records": ["bwb:9781620054017"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T06:59:32.464524"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T06:59:32.464524"}}
+/type/author /authors/OL10388437A 1 2022-05-26T07:02:13.992957 {"type": {"key": "/type/author"}, "name": "Gitte Adler Reimer", "key": "/authors/OL10388437A", "source_records": ["bwb:9788771845624"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T07:02:13.992957"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T07:02:13.992957"}}
+/type/author /authors/OL10389114A 1 2022-05-26T07:32:13.140181 {"type": {"key": "/type/author"}, "name": "Don Gibbin", "key": "/authors/OL10389114A", "source_records": ["bwb:9781698829333"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T07:32:13.140181"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T07:32:13.140181"}}
+/type/author /authors/OL10390259A 1 2022-05-26T08:28:39.304823 {"type": {"key": "/type/author"}, "name": "Joe Cothen ThD", "key": "/authors/OL10390259A", "source_records": ["bwb:9781589808454"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T08:28:39.304823"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T08:28:39.304823"}}
+/type/author /authors/OL10390297A 1 2022-05-26T08:31:07.346744 {"type": {"key": "/type/author"}, "name": "Tine Trumpp", "key": "/authors/OL10390297A", "source_records": ["bwb:9783515123389"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T08:31:07.346744"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T08:31:07.346744"}}
+/type/author /authors/OL10390420A 1 2022-05-26T08:37:42.891162 {"type": {"key": "/type/author"}, "name": "Johanna Wedan", "key": "/authors/OL10390420A", "source_records": ["bwb:9798680884614"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T08:37:42.891162"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T08:37:42.891162"}}
+/type/author /authors/OL10390506A 1 2022-05-26T08:42:17.776778 {"type": {"key": "/type/author"}, "name": "Wolfgang Hudel", "key": "/authors/OL10390506A", "source_records": ["bwb:9783928238502"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T08:42:17.776778"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T08:42:17.776778"}}
+/type/author /authors/OL10390982A 1 2022-05-26T09:04:57.021623 {"type": {"key": "/type/author"}, "name": "Nina's Design", "key": "/authors/OL10390982A", "source_records": ["bwb:9798708587312"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T09:04:57.021623"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T09:04:57.021623"}}
+/type/author /authors/OL10391120A 1 2022-05-26T09:13:25.694086 {"type": {"key": "/type/author"}, "name": "L. Godfrey-Isaacs", "key": "/authors/OL10391120A", "source_records": ["bwb:9781780667454"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T09:13:25.694086"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T09:13:25.694086"}}
+/type/author /authors/OL10391379A 1 2022-05-26T09:25:04.456179 {"type": {"key": "/type/author"}, "name": "Nathan Rigel", "key": "/authors/OL10391379A", "source_records": ["bwb:9781264775668"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T09:25:04.456179"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T09:25:04.456179"}}
+/type/author /authors/OL10391412A 1 2022-05-26T09:26:03.806790 {"type": {"key": "/type/author"}, "name": "Matthias F. Kraatz", "key": "/authors/OL10391412A", "source_records": ["bwb:9783428183890"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T09:26:03.806790"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T09:26:03.806790"}}
+/type/author /authors/OL10391576A 1 2022-05-26T09:34:45.080157 {"type": {"key": "/type/author"}, "name": "Stephanie Sarazin", "key": "/authors/OL10391576A", "source_records": ["bwb:9781538709757"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T09:34:45.080157"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T09:34:45.080157"}}
+/type/author /authors/OL103916A 2 2008-09-09T03:58:08.949584 {"name": "Abra\u0304r Rah\u0323ma\u0304ni\u0304", "personal_name": "Abra\u0304r Rah\u0323ma\u0304ni\u0304", "last_modified": {"type": "/type/datetime", "value": "2008-09-09T03:58:08.949584"}, "key": "/authors/OL103916A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10391816A 1 2022-05-26T09:47:46.937838 {"type": {"key": "/type/author"}, "name": "Maximilian Reidt", "key": "/authors/OL10391816A", "source_records": ["bwb:9783848786398"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T09:47:46.937838"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T09:47:46.937838"}}
+/type/author /authors/OL10391995A 1 2022-05-26T09:55:15.499321 {"type": {"key": "/type/author"}, "name": "Brendan McLeod", "key": "/authors/OL10391995A", "source_records": ["bwb:9780992024598"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T09:55:15.499321"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T09:55:15.499321"}}
+/type/author /authors/OL10392791A 1 2022-05-26T10:26:16.556470 {"type": {"key": "/type/author"}, "name": "Alberto Reguera", "key": "/authors/OL10392791A", "source_records": ["bwb:9789887470779"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T10:26:16.556470"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T10:26:16.556470"}}
+/type/author /authors/OL10392842A 1 2022-05-26T10:29:12.300118 {"type": {"key": "/type/author"}, "name": "Sabine Bradley", "key": "/authors/OL10392842A", "source_records": ["bwb:9781978596160"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T10:29:12.300118"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T10:29:12.300118"}}
+/type/author /authors/OL10392900A 1 2022-05-26T10:35:09.149341 {"type": {"key": "/type/author"}, "name": "Steven Jeffrey Goode", "key": "/authors/OL10392900A", "source_records": ["bwb:9781636599250"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T10:35:09.149341"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T10:35:09.149341"}}
+/type/author /authors/OL10393226A 1 2022-05-26T10:45:33.765524 {"type": {"key": "/type/author"}, "name": "Marta F. Suarez", "key": "/authors/OL10393226A", "source_records": ["bwb:9781350216198"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T10:45:33.765524"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T10:45:33.765524"}}
+/type/author /authors/OL10393374A 1 2022-05-26T10:51:04.452855 {"type": {"key": "/type/author"}, "name": "Bulls Eye", "key": "/authors/OL10393374A", "source_records": ["bwb:9798459762716"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T10:51:04.452855"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T10:51:04.452855"}}
+/type/author /authors/OL10393719A 1 2022-05-26T10:59:49.161730 {"type": {"key": "/type/author"}, "name": "Henry Rancourt", "key": "/authors/OL10393719A", "source_records": ["bwb:9781684492855"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T10:59:49.161730"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T10:59:49.161730"}}
+/type/author /authors/OL10394830A 1 2022-05-26T11:38:26.420653 {"type": {"key": "/type/author"}, "name": "Lisa Creech Bledsoe", "key": "/authors/OL10394830A", "source_records": ["bwb:9781733176828"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T11:38:26.420653"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T11:38:26.420653"}}
+/type/author /authors/OL10394943A 1 2022-05-26T11:43:21.879450 {"type": {"key": "/type/author"}, "name": "Lexi Cook", "key": "/authors/OL10394943A", "source_records": ["bwb:9798986071008"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T11:43:21.879450"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T11:43:21.879450"}}
+/type/author /authors/OL10394988A 1 2022-05-26T11:43:53.289082 {"type": {"key": "/type/author"}, "name": "Ashley Lanni", "key": "/authors/OL10394988A", "source_records": ["bwb:9780578285719"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T11:43:53.289082"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T11:43:53.289082"}}
+/type/author /authors/OL10395278A 1 2022-05-26T11:53:25.438644 {"type": {"key": "/type/author"}, "name": "Sarah Mulllally", "key": "/authors/OL10395278A", "source_records": ["bwb:9780334059615"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T11:53:25.438644"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T11:53:25.438644"}}
+/type/author /authors/OL1039532A 2 2008-08-19T22:40:06.300908 {"name": "Robert A. Holman", "personal_name": "Robert A. Holman", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T22:40:06.300908"}, "key": "/authors/OL1039532A", "birth_date": "1913", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10395477A 1 2022-05-26T12:20:21.998885 {"type": {"key": "/type/author"}, "name": "Marian ] [From Old Catalo [Andrews", "key": "/authors/OL10395477A", "source_records": ["bwb:9780343315108"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T12:20:21.998885"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T12:20:21.998885"}}
+/type/author /authors/OL10395606A 1 2022-05-26T12:45:28.411479 {"type": {"key": "/type/author"}, "name": "Chunilal Lallubhai Parekh", "key": "/authors/OL10395606A", "source_records": ["bwb:9780344302718"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T12:45:28.411479"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T12:45:28.411479"}}
+/type/author /authors/OL10395812A 1 2022-05-26T13:02:40.954755 {"type": {"key": "/type/author"}, "name": "Dominique Turner", "key": "/authors/OL10395812A", "source_records": ["bwb:9780578694498"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T13:02:40.954755"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T13:02:40.954755"}}
+/type/author /authors/OL1039581A 1 2008-04-01T03:28:50.625462 {"name": "Alfieri, Luigi", "personal_name": "Alfieri, Luigi", "last_modified": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "key": "/authors/OL1039581A", "birth_date": "1951", "type": {"key": "/type/author"}, "revision": 1}
+/type/author /authors/OL1039592A 2 2008-08-19T22:40:26.452736 {"name": "Bernard Fonty", "personal_name": "Bernard Fonty", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T22:40:26.452736"}, "key": "/authors/OL1039592A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10396232A 1 2022-05-26T13:29:07.111128 {"type": {"key": "/type/author"}, "name": "Lorraine Hay", "key": "/authors/OL10396232A", "source_records": ["bwb:9781039102767"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T13:29:07.111128"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T13:29:07.111128"}}
+/type/author /authors/OL10396355A 1 2022-05-26T13:31:55.096106 {"type": {"key": "/type/author"}, "name": "Rick W. Knowles", "key": "/authors/OL10396355A", "source_records": ["bwb:9781039128408"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T13:31:55.096106"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T13:31:55.096106"}}
+/type/author /authors/OL10396736A 1 2022-05-26T13:42:39.008204 {"type": {"key": "/type/author"}, "name": "Renato Monteverdi", "key": "/authors/OL10396736A", "source_records": ["bwb:9781300826354"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T13:42:39.008204"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T13:42:39.008204"}}
+/type/author /authors/OL10396812A 1 2022-05-26T13:45:27.232559 {"type": {"key": "/type/author"}, "name": "Siruplifts Bey", "key": "/authors/OL10396812A", "source_records": ["bwb:9781312979345"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T13:45:27.232559"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T13:45:27.232559"}}
+/type/author /authors/OL10396938A 1 2022-05-26T13:50:26.213971 {"type": {"key": "/type/author"}, "name": "Thomas Jefferys", "key": "/authors/OL10396938A", "source_records": ["bwb:9781385390818"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T13:50:26.213971"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T13:50:26.213971"}}
+/type/author /authors/OL10397011A 1 2022-05-26T13:53:02.019703 {"type": {"key": "/type/author"}, "name": "Kaydia Torrell", "key": "/authors/OL10397011A", "source_records": ["bwb:9781398408227"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T13:53:02.019703"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T13:53:02.019703"}}
+/type/author /authors/OL10397846A 1 2022-05-26T14:23:01.482061 {"type": {"key": "/type/author"}, "name": "Roger Kingston", "key": "/authors/OL10397846A", "source_records": ["bwb:9781638443919"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T14:23:01.482061"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T14:23:01.482061"}}
+/type/author /authors/OL10397892A 1 2022-05-26T14:23:55.185445 {"type": {"key": "/type/author"}, "name": "Sajna Hameed", "key": "/authors/OL10397892A", "source_records": ["bwb:9781638507352"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T14:23:55.185445"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T14:23:55.185445"}}
+/type/author /authors/OL10397895A 1 2022-05-26T14:23:59.210499 {"type": {"key": "/type/author"}, "name": "Lauretta Nichols", "key": "/authors/OL10397895A", "source_records": ["bwb:9781638600206"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T14:23:59.210499"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T14:23:59.210499"}}
+/type/author /authors/OL10398019A 1 2022-05-26T14:27:04.702943 {"type": {"key": "/type/author"}, "name": "Man Of Letters Jabbar", "key": "/authors/OL10398019A", "source_records": ["bwb:9781638746706"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T14:27:04.702943"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T14:27:04.702943"}}
+/type/author /authors/OL1039838A 3 2017-11-30T01:26:23.430885 {"name": "\u0116 Guli\u0361amova", "personal_name": "\u0116 Guli\u0361amova", "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2017-11-30T01:26:23.430885"}, "latest_revision": 3, "key": "/authors/OL1039838A", "type": {"key": "/type/author"}, "revision": 3}
+/type/author /authors/OL1039848A 2 2008-08-19T22:41:38.666173 {"name": "Marion Wehmeyer", "personal_name": "Marion Wehmeyer", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T22:41:38.666173"}, "key": "/authors/OL1039848A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10398543A 1 2022-05-26T14:42:46.585651 {"type": {"key": "/type/author"}, "name": "Josie Dariyaeeghoda", "key": "/authors/OL10398543A", "source_records": ["bwb:9781645383277"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T14:42:46.585651"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T14:42:46.585651"}}
+/type/author /authors/OL10398564A 1 2022-05-26T14:43:13.283423 {"type": {"key": "/type/author"}, "name": "Prasanta Bhunya", "key": "/authors/OL10398564A", "source_records": ["bwb:9781645600824"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T14:43:13.283423"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T14:43:13.283423"}}
+/type/author /authors/OL10398624A 1 2022-05-26T14:45:17.579156 {"type": {"key": "/type/author"}, "name": "Joez Roche", "key": "/authors/OL10398624A", "source_records": ["bwb:9781646946570"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T14:45:17.579156"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T14:45:17.579156"}}
+/type/author /authors/OL10398643A 1 2022-05-26T14:45:34.109730 {"type": {"key": "/type/author"}, "name": "Kyle A. Robinson", "key": "/authors/OL10398643A", "source_records": ["bwb:9781647194079"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T14:45:34.109730"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T14:45:34.109730"}}
+/type/author /authors/OL10398922A 1 2022-05-26T14:52:35.492367 {"type": {"key": "/type/author"}, "name": "Kristen Drysch", "key": "/authors/OL10398922A", "source_records": ["bwb:9781662460098"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T14:52:35.492367"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T14:52:35.492367"}}
+/type/author /authors/OL10399223A 1 2022-05-26T14:58:33.299398 {"type": {"key": "/type/author"}, "name": "Tyrone Fuller Brown", "key": "/authors/OL10399223A", "source_records": ["bwb:9781662839511"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T14:58:33.299398"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T14:58:33.299398"}}
+/type/author /authors/OL10399252A 1 2022-05-26T14:58:55.155695 {"type": {"key": "/type/author"}, "name": "Evangelist M. a Lucas", "key": "/authors/OL10399252A", "source_records": ["bwb:9781662840630"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T14:58:55.155695"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T14:58:55.155695"}}
+/type/author /authors/OL10399944A 1 2022-05-26T15:23:40.232825 {"type": {"key": "/type/author"}, "name": "Anamika Mitra", "key": "/authors/OL10399944A", "source_records": ["bwb:9781684949199"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T15:23:40.232825"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T15:23:40.232825"}}
+/type/author /authors/OL10399984A 1 2022-05-26T15:24:34.593198 {"type": {"key": "/type/author"}, "name": "Sam T. Scaling", "key": "/authors/OL10399984A", "source_records": ["bwb:9781685171070"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T15:24:34.593198"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T15:24:34.593198"}}
+/type/author /authors/OL10400308A 1 2022-05-26T15:32:38.042958 {"type": {"key": "/type/author"}, "name": "Simon Crack", "key": "/authors/OL10400308A", "source_records": ["bwb:9781716018480"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T15:32:38.042958"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T15:32:38.042958"}}
+/type/author /authors/OL10400662A 1 2022-05-26T15:41:31.839177 {"type": {"key": "/type/author"}, "name": "Vicki Judice", "key": "/authors/OL10400662A", "source_records": ["bwb:9781716826146"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T15:41:31.839177"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T15:41:31.839177"}}
+/type/author /authors/OL10400726A 1 2022-05-26T15:42:48.332919 {"type": {"key": "/type/author"}, "name": "Black Rose Writing Texas", "key": "/authors/OL10400726A", "source_records": ["bwb:9781733119450"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T15:42:48.332919"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T15:42:48.332919"}}
+/type/author /authors/OL10400735A 1 2022-05-26T15:42:58.927109 {"type": {"key": "/type/author"}, "name": "Beth Cavenaugh", "key": "/authors/OL10400735A", "source_records": ["bwb:9781733690928"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T15:42:58.927109"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T15:42:58.927109"}}
+/type/author /authors/OL10401108A 1 2022-05-26T15:57:24.670735 {"type": {"key": "/type/author"}, "name": "Brockley, Bill, Jr.", "key": "/authors/OL10401108A", "source_records": ["bwb:9781794718845"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T15:57:24.670735"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T15:57:24.670735"}}
+/type/author /authors/OL10401190A 1 2022-05-26T15:59:07.332830 {"type": {"key": "/type/author"}, "name": "Maudelyne Maxineau-Gedeon", "key": "/authors/OL10401190A", "source_records": ["bwb:9781794747647"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T15:59:07.332830"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T15:59:07.332830"}}
+/type/author /authors/OL10401325A 1 2022-05-26T16:02:17.718863 {"type": {"key": "/type/author"}, "name": "Shea Tracey", "key": "/authors/OL10401325A", "source_records": ["bwb:9781794783119"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T16:02:17.718863"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T16:02:17.718863"}}
+/type/author /authors/OL10402086A 1 2022-05-26T16:32:39.288006 {"type": {"key": "/type/author"}, "name": "Joanna Howells", "key": "/authors/OL10402086A", "source_records": ["bwb:9781916084322"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T16:32:39.288006"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T16:32:39.288006"}}
+/type/author /authors/OL10402382A 1 2022-05-26T16:43:35.410601 {"type": {"key": "/type/author"}, "name": "Sara Jacobs", "key": "/authors/OL10402382A", "source_records": ["bwb:9781955791052"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T16:43:35.410601"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T16:43:35.410601"}}
+/type/author /authors/OL10402397A 1 2022-05-26T16:44:20.338376 {"type": {"key": "/type/author"}, "name": "Lorne Ryburn", "key": "/authors/OL10402397A", "source_records": ["bwb:9781956021011"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T16:44:20.338376"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T16:44:20.338376"}}
+/type/author /authors/OL10402579A 1 2022-05-26T16:50:18.574911 {"type": {"key": "/type/author"}, "name": "Lauren Yack M Ed", "key": "/authors/OL10402579A", "source_records": ["bwb:9781982265922"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T16:50:18.574911"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T16:50:18.574911"}}
+/type/author /authors/OL10402608A 1 2022-05-26T16:51:23.486367 {"type": {"key": "/type/author"}, "name": "Robert Stermscheg", "key": "/authors/OL10402608A", "source_records": ["bwb:9781988983240"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T16:51:23.486367"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T16:51:23.486367"}}
+/type/author /authors/OL10402777A 1 2022-05-26T16:58:54.626094 {"type": {"key": "/type/author"}, "name": "Ccfcs", "key": "/authors/OL10402777A", "source_records": ["bwb:9781953248282"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T16:58:54.626094"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T16:58:54.626094"}}
+/type/author /authors/OL10403364A 1 2022-05-26T17:19:53.802664 {"type": {"key": "/type/author"}, "name": "Theodora Charalambides", "key": "/authors/OL10403364A", "source_records": ["bwb:9798210168221"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T17:19:53.802664"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T17:19:53.802664"}}
+/type/author /authors/OL10403508A 1 2022-05-26T17:25:13.742698 {"type": {"key": "/type/author"}, "name": "Gena Edition", "key": "/authors/OL10403508A", "source_records": ["bwb:9798435472073"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T17:25:13.742698"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T17:25:13.742698"}}
+/type/author /authors/OL10404146A 1 2022-05-26T17:50:21.116563 {"type": {"key": "/type/author"}, "name": "Victor Fredriksson", "key": "/authors/OL10404146A", "source_records": ["bwb:9798432506726"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T17:50:21.116563"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T17:50:21.116563"}}
+/type/author /authors/OL10404790A 1 2022-05-26T18:19:42.094168 {"type": {"key": "/type/author"}, "name": "Ron Polinder", "key": "/authors/OL10404790A", "source_records": ["bwb:9781489740243"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T18:19:42.094168"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T18:19:42.094168"}}
+/type/author /authors/OL10405553A 1 2022-05-26T19:12:29.166507 {"type": {"key": "/type/author"}, "name": "Sarah Japan", "key": "/authors/OL10405553A", "source_records": ["bwb:9798738172038"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T19:12:29.166507"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T19:12:29.166507"}}
+/type/author /authors/OL10405973A 1 2022-05-26T19:35:22.277888 {"type": {"key": "/type/author"}, "name": "Smith Edition Smith Edition Press", "key": "/authors/OL10405973A", "source_records": ["bwb:9798753668462"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T19:35:22.277888"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T19:35:22.277888"}}
+/type/author /authors/OL10405987A 1 2022-05-26T19:35:56.868138 {"type": {"key": "/type/author"}, "name": "D. W. E. Studio publishing", "key": "/authors/OL10405987A", "source_records": ["bwb:9798790102028"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T19:35:56.868138"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T19:35:56.868138"}}
+/type/author /authors/OL10406024A 1 2022-05-26T19:38:30.578829 {"type": {"key": "/type/author"}, "name": "Dorothy Carol", "key": "/authors/OL10406024A", "source_records": ["bwb:9798442456301"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T19:38:30.578829"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T19:38:30.578829"}}
+/type/author /authors/OL10406063A 1 2022-05-26T19:40:35.620969 {"type": {"key": "/type/author"}, "name": "The Big Trip Calendar", "key": "/authors/OL10406063A", "source_records": ["bwb:9798430600129"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T19:40:35.620969"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T19:40:35.620969"}}
+/type/author /authors/OL1040621A 2 2008-08-19T22:45:28.352853 {"name": "Daniela Boccassini", "personal_name": "Daniela Boccassini", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T22:45:28.352853"}, "key": "/authors/OL1040621A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10406572A 1 2022-05-26T20:07:46.140362 {"type": {"key": "/type/author"}, "name": "Nicolas Madera", "key": "/authors/OL10406572A", "source_records": ["bwb:9798542377261"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T20:07:46.140362"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T20:07:46.140362"}}
+/type/author /authors/OL10406728A 1 2022-05-26T20:16:06.215365 {"type": {"key": "/type/author"}, "name": "Ismael Sais Ll\u00e1cer", "key": "/authors/OL10406728A", "source_records": ["bwb:9798431101625"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T20:16:06.215365"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T20:16:06.215365"}}
+/type/author /authors/OL10406928A 1 2022-05-26T20:26:39.862166 {"type": {"key": "/type/author"}, "name": "Aidan Publishing", "key": "/authors/OL10406928A", "source_records": ["bwb:9798664018059"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T20:26:39.862166"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T20:26:39.862166"}}
+/type/author /authors/OL10406941A 1 2022-05-26T20:27:22.746363 {"type": {"key": "/type/author"}, "name": "Olufunke AKINNIYI", "key": "/authors/OL10406941A", "source_records": ["bwb:9798414884385"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T20:27:22.746363"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T20:27:22.746363"}}
+/type/author /authors/OL10407331A 1 2022-05-26T20:49:52.285085 {"type": {"key": "/type/author"}, "name": "Anwar Islam Publisher", "key": "/authors/OL10407331A", "source_records": ["bwb:9798436099866"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T20:49:52.285085"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T20:49:52.285085"}}
+/type/author /authors/OL10408039A 1 2022-05-26T21:35:30.014850 {"type": {"key": "/type/author"}, "name": "Seth Kawulok", "key": "/authors/OL10408039A", "source_records": ["bwb:9798441557467"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T21:35:30.014850"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T21:35:30.014850"}}
+/type/author /authors/OL10408057A 1 2022-05-26T21:36:36.151529 {"type": {"key": "/type/author"}, "name": "Sylas Publishing", "key": "/authors/OL10408057A", "source_records": ["bwb:9798666862094"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T21:36:36.151529"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T21:36:36.151529"}}
+/type/author /authors/OL10408113A 1 2022-05-26T21:39:43.878344 {"type": {"key": "/type/author"}, "name": "Livia Tan & Francis Soetanto", "key": "/authors/OL10408113A", "source_records": ["bwb:9798425900661"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T21:39:43.878344"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T21:39:43.878344"}}
+/type/author /authors/OL10408276A 1 2022-05-26T21:48:23.809003 {"type": {"key": "/type/author"}, "name": "Goode Vibes", "key": "/authors/OL10408276A", "source_records": ["bwb:9798442350067"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T21:48:23.809003"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T21:48:23.809003"}}
+/type/author /authors/OL10408454A 1 2022-05-26T21:59:11.544115 {"type": {"key": "/type/author"}, "name": "Dragon coloring book", "key": "/authors/OL10408454A", "source_records": ["bwb:9798421008965"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T21:59:11.544115"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T21:59:11.544115"}}
+/type/author /authors/OL10409534A 1 2022-05-26T22:53:12.380512 {"type": {"key": "/type/author"}, "name": "Danielle Benden", "key": "/authors/OL10409534A", "source_records": ["bwb:9798986099705"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T22:53:12.380512"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T22:53:12.380512"}}
+/type/author /authors/OL10409959A 1 2022-05-26T23:14:18.666390 {"type": {"key": "/type/author"}, "name": "Kathryn Myers", "key": "/authors/OL10409959A", "source_records": ["bwb:9798985999303"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T23:14:18.666390"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T23:14:18.666390"}}
+/type/author /authors/OL10410342A 1 2022-05-26T23:30:05.722151 {"type": {"key": "/type/author"}, "name": "Levon Brevard-Mays", "key": "/authors/OL10410342A", "source_records": ["bwb:9798985309874"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-26T23:30:05.722151"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T23:30:05.722151"}}
+/type/author /authors/OL10411136A 1 2022-05-27T00:00:44.302772 {"type": {"key": "/type/author"}, "name": "Kalam Press Publishing", "key": "/authors/OL10411136A", "source_records": ["bwb:9798519053068"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T00:00:44.302772"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T00:00:44.302772"}}
+/type/author /authors/OL10411196A 1 2022-05-27T00:02:46.827909 {"type": {"key": "/type/author"}, "name": "Brahim Calligraphy", "key": "/authors/OL10411196A", "source_records": ["bwb:9798442260601"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T00:02:46.827909"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T00:02:46.827909"}}
+/type/author /authors/OL10411296A 1 2022-05-27T00:06:31.409007 {"type": {"key": "/type/author"}, "name": "Roman Joseph", "key": "/authors/OL10411296A", "source_records": ["bwb:9798445678168"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T00:06:31.409007"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T00:06:31.409007"}}
+/type/author /authors/OL10411828A 1 2022-05-27T00:40:38.149981 {"type": {"key": "/type/author"}, "name": "Corina Badea", "key": "/authors/OL10411828A", "source_records": ["bwb:9798436460475"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T00:40:38.149981"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T00:40:38.149981"}}
+/type/author /authors/OL10411879A 1 2022-05-27T00:43:05.435972 {"type": {"key": "/type/author"}, "name": "Ennaji BASSIM", "key": "/authors/OL10411879A", "source_records": ["bwb:9798442438680"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T00:43:05.435972"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T00:43:05.435972"}}
+/type/author /authors/OL10411908A 1 2022-05-27T00:44:02.726305 {"type": {"key": "/type/author"}, "name": "Jason Potsander", "key": "/authors/OL10411908A", "source_records": ["bwb:9798417435188"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T00:44:02.726305"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T00:44:02.726305"}}
+/type/author /authors/OL10411919A 1 2022-05-27T00:44:30.375206 {"type": {"key": "/type/author"}, "name": "Trudy Salas", "key": "/authors/OL10411919A", "source_records": ["bwb:9798681139720"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T00:44:30.375206"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T00:44:30.375206"}}
+/type/author /authors/OL10411984A 1 2022-05-27T00:47:52.147463 {"type": {"key": "/type/author"}, "name": "Stefanie Cramer", "key": "/authors/OL10411984A", "source_records": ["bwb:9798775991098"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T00:47:52.147463"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T00:47:52.147463"}}
+/type/author /authors/OL10412026A 1 2022-05-27T00:49:29.370762 {"type": {"key": "/type/author"}, "name": "Fuchizaki Tenshin", "key": "/authors/OL10412026A", "source_records": ["bwb:9798438845416"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T00:49:29.370762"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T00:49:29.370762"}}
+/type/author /authors/OL10412290A 1 2022-05-27T01:01:29.104783 {"type": {"key": "/type/author"}, "name": "Katie-Louise Conroy", "key": "/authors/OL10412290A", "source_records": ["bwb:9798440379503"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T01:01:29.104783"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T01:01:29.104783"}}
+/type/author /authors/OL10412543A 1 2022-05-27T01:14:37.408922 {"type": {"key": "/type/author"}, "name": "Edward Soto", "key": "/authors/OL10412543A", "source_records": ["bwb:9781707637669"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T01:14:37.408922"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T01:14:37.408922"}}
+/type/author /authors/OL10412622A 1 2022-05-27T01:17:59.577753 {"type": {"key": "/type/author"}, "name": "Allison Volk", "key": "/authors/OL10412622A", "source_records": ["bwb:9798404102840"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T01:17:59.577753"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T01:17:59.577753"}}
+/type/author /authors/OL10412625A 1 2022-05-27T01:18:00.707193 {"type": {"key": "/type/author"}, "name": "N. T. Cafe", "key": "/authors/OL10412625A", "source_records": ["bwb:9798435968880"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T01:18:00.707193"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T01:18:00.707193"}}
+/type/author /authors/OL10412717A 1 2022-05-27T01:22:37.796800 {"type": {"key": "/type/author"}, "name": "Dylan Park", "key": "/authors/OL10412717A", "source_records": ["bwb:9798415642038"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T01:22:37.796800"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T01:22:37.796800"}}
+/type/author /authors/OL10412889A 1 2022-05-27T01:32:01.906872 {"type": {"key": "/type/author"}, "name": "Ng Lillian", "key": "/authors/OL10412889A", "source_records": ["bwb:9798420438497"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T01:32:01.906872"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T01:32:01.906872"}}
+/type/author /authors/OL10413314A 1 2022-05-27T01:52:37.406030 {"type": {"key": "/type/author"}, "name": "Marriet Gold", "key": "/authors/OL10413314A", "source_records": ["bwb:9798776568244"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T01:52:37.406030"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T01:52:37.406030"}}
+/type/author /authors/OL1041337A 2 2008-08-19T22:48:56.232863 {"name": "Ilene Kay Hall McKinney", "personal_name": "Ilene Kay Hall McKinney", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T22:48:56.232863"}, "key": "/authors/OL1041337A", "birth_date": "1947", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10413457A 1 2022-05-27T01:59:57.567354 {"type": {"key": "/type/author"}, "name": "Motorcycle Racing Calender", "key": "/authors/OL10413457A", "source_records": ["bwb:9798422433384"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T01:59:57.567354"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T01:59:57.567354"}}
+/type/author /authors/OL10414306A 1 2022-05-27T02:45:03.814707 {"type": {"key": "/type/author"}, "name": "Editions des R\u00eaveurs", "key": "/authors/OL10414306A", "source_records": ["bwb:9798421589211"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T02:45:03.814707"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T02:45:03.814707"}}
+/type/author /authors/OL10414408A 1 2022-05-27T02:49:44.059918 {"type": {"key": "/type/author"}, "name": "kareem A", "key": "/authors/OL10414408A", "source_records": ["bwb:9798447911904"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T02:49:44.059918"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T02:49:44.059918"}}
+/type/author /authors/OL10414453A 1 2022-05-27T02:51:41.539519 {"type": {"key": "/type/author"}, "name": "Jhony Surmankiewicz", "key": "/authors/OL10414453A", "source_records": ["bwb:9798434660112"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T02:51:41.539519"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T02:51:41.539519"}}
+/type/author /authors/OL10414517A 1 2022-05-27T02:54:49.241999 {"type": {"key": "/type/author"}, "name": "cadeau anniversaire 51 ans LANA", "key": "/authors/OL10414517A", "source_records": ["bwb:9798549483873"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T02:54:49.241999"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T02:54:49.241999"}}
+/type/author /authors/OL10414522A 1 2022-05-27T02:54:58.981338 {"type": {"key": "/type/author"}, "name": "Natalie BACHE", "key": "/authors/OL10414522A", "source_records": ["bwb:9798798122288"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T02:54:58.981338"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T02:54:58.981338"}}
+/type/author /authors/OL10414961A 1 2022-05-27T03:19:59.959387 {"type": {"key": "/type/author"}, "name": "Busy Potato Press", "key": "/authors/OL10414961A", "source_records": ["bwb:9798744614546"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T03:19:59.959387"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T03:19:59.959387"}}
+/type/author /authors/OL10414991A 1 2022-05-27T03:21:07.516617 {"type": {"key": "/type/author"}, "name": "Faris Ahmed", "key": "/authors/OL10414991A", "source_records": ["bwb:9798483557487"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T03:21:07.516617"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T03:21:07.516617"}}
+/type/author /authors/OL10415072A 1 2022-05-27T03:25:17.767505 {"type": {"key": "/type/author"}, "name": "Ira Horn Publishing", "key": "/authors/OL10415072A", "source_records": ["bwb:9798478427306"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T03:25:17.767505"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T03:25:17.767505"}}
+/type/author /authors/OL10415082A 1 2022-05-27T03:25:40.997802 {"type": {"key": "/type/author"}, "name": "Eva Iglesias Rodr\u00edguez", "key": "/authors/OL10415082A", "source_records": ["bwb:9798447312862"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T03:25:40.997802"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T03:25:40.997802"}}
+/type/author /authors/OL10415320A 1 2022-05-27T03:38:53.063374 {"type": {"key": "/type/author"}, "name": "S. Eang", "key": "/authors/OL10415320A", "source_records": ["bwb:9781664193178"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T03:38:53.063374"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T03:38:53.063374"}}
+/type/author /authors/OL10415355A 1 2022-05-27T03:40:07.895269 {"type": {"key": "/type/author"}, "name": "Jeffrey William", "key": "/authors/OL10415355A", "source_records": ["bwb:9798418347534"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T03:40:07.895269"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T03:40:07.895269"}}
+/type/author /authors/OL10415367A 1 2022-05-27T03:40:54.821808 {"type": {"key": "/type/author"}, "name": "Marcy Keller", "key": "/authors/OL10415367A", "source_records": ["bwb:9798436451954"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T03:40:54.821808"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T03:40:54.821808"}}
+/type/author /authors/OL10415568A 1 2022-05-27T03:51:50.214396 {"type": {"key": "/type/author"}, "name": "Christina Wither", "key": "/authors/OL10415568A", "source_records": ["bwb:9798595487894"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T03:51:50.214396"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T03:51:50.214396"}}
+/type/author /authors/OL10415611A 1 2022-05-27T03:54:14.884985 {"type": {"key": "/type/author"}, "name": "Ape X. Heffe", "key": "/authors/OL10415611A", "source_records": ["bwb:9798444388228"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T03:54:14.884985"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T03:54:14.884985"}}
+/type/author /authors/OL10415722A 1 2022-05-27T04:01:43.354627 {"type": {"key": "/type/author"}, "name": "F. M. Mes Souvenirs Publication", "key": "/authors/OL10415722A", "source_records": ["bwb:9798444442128"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T04:01:43.354627"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T04:01:43.354627"}}
+/type/author /authors/OL10415785A 1 2022-05-27T04:06:09.745793 {"type": {"key": "/type/author"}, "name": "Gabor Gr\u00fcnwald", "key": "/authors/OL10415785A", "source_records": ["bwb:9798402629929"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T04:06:09.745793"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T04:06:09.745793"}}
+/type/author /authors/OL10415963A 1 2022-05-27T04:16:34.835673 {"type": {"key": "/type/author"}, "name": "裏方志向", "key": "/authors/OL10415963A", "source_records": ["bwb:9798438916482"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T04:16:34.835673"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T04:16:34.835673"}}
+/type/author /authors/OL10416448A 1 2022-05-27T04:42:09.336752 {"type": {"key": "/type/author"}, "name": "Kim Henry", "key": "/authors/OL10416448A", "source_records": ["bwb:9798986136707"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T04:42:09.336752"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T04:42:09.336752"}}
+/type/author /authors/OL10416570A 1 2022-05-27T04:47:22.759060 {"type": {"key": "/type/author"}, "name": "Issac Alb\u00e9niz", "key": "/authors/OL10416570A", "source_records": ["bwb:9781470650070"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T04:47:22.759060"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T04:47:22.759060"}}
+/type/author /authors/OL10416628A 1 2022-05-27T04:52:08.550757 {"type": {"key": "/type/author"}, "name": "Christopher Straub", "key": "/authors/OL10416628A", "source_records": ["bwb:9780578292281"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T04:52:08.550757"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T04:52:08.550757"}}
+/type/author /authors/OL10416756A 1 2022-05-27T04:58:06.063291 {"type": {"key": "/type/author"}, "name": "Anna Boyle", "key": "/authors/OL10416756A", "source_records": ["bwb:9780578290348"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T04:58:06.063291"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T04:58:06.063291"}}
+/type/author /authors/OL10416796A 1 2022-05-27T04:59:31.552139 {"type": {"key": "/type/author"}, "name": "Brooke Richardson", "key": "/authors/OL10416796A", "source_records": ["bwb:9781772584066"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T04:59:31.552139"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T04:59:31.552139"}}
+/type/author /authors/OL10416855A 1 2022-05-27T05:03:03.991655 {"type": {"key": "/type/author"}, "name": "Brian Morgenstern", "key": "/authors/OL10416855A", "source_records": ["bwb:9781637584989"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T05:03:03.991655"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T05:03:03.991655"}}
+/type/author /authors/OL10417072A 1 2022-05-27T05:12:32.329936 {"type": {"key": "/type/author"}, "name": "《当代中国评论》编辑部", "key": "/authors/OL10417072A", "source_records": ["bwb:9798210187543"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T05:12:32.329936"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T05:12:32.329936"}}
+/type/author /authors/OL10417467A 1 2022-05-27T05:28:59.751141 {"type": {"key": "/type/author"}, "name": "Obiora N. Anekwe MEd EdD MS Bioethics MST", "key": "/authors/OL10417467A", "source_records": ["bwb:9781669819653"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T05:28:59.751141"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T05:28:59.751141"}}
+/type/author /authors/OL10417608A 1 2022-05-27T05:34:15.902838 {"type": {"key": "/type/author"}, "name": "Kathleen Deist", "key": "/authors/OL10417608A", "source_records": ["bwb:9781736620106"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T05:34:15.902838"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T05:34:15.902838"}}
+/type/author /authors/OL10417664A 1 2022-05-27T05:36:10.507023 {"type": {"key": "/type/author"}, "name": "zhi zhongyuan", "key": "/authors/OL10417664A", "source_records": ["bwb:9781956307122"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T05:36:10.507023"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T05:36:10.507023"}}
+/type/author /authors/OL10417707A 1 2022-05-27T05:38:25.437404 {"type": {"key": "/type/author"}, "name": "Shoshana Mirsky", "key": "/authors/OL10417707A", "source_records": ["bwb:9780578294285"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T05:38:25.437404"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T05:38:25.437404"}}
+/type/author /authors/OL10417767A 1 2022-05-27T05:39:22.695218 {"type": {"key": "/type/author"}, "name": "LaCerro Daniels", "key": "/authors/OL10417767A", "source_records": ["bwb:9781792390845"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T05:39:22.695218"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T05:39:22.695218"}}
+/type/author /authors/OL10418256A 1 2022-05-27T06:00:53.118336 {"type": {"key": "/type/author"}, "name": "A. K. DJOUDA", "key": "/authors/OL10418256A", "source_records": ["bwb:9798434561228"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T06:00:53.118336"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T06:00:53.118336"}}
+/type/author /authors/OL10418595A 1 2022-05-27T06:16:50.569120 {"type": {"key": "/type/author"}, "name": "Schlittschuh Trainer", "key": "/authors/OL10418595A", "source_records": ["bwb:9798548884602"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T06:16:50.569120"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T06:16:50.569120"}}
+/type/author /authors/OL10418927A 1 2022-05-27T06:38:07.630794 {"type": {"key": "/type/author"}, "name": "Rebecca Ruiz", "key": "/authors/OL10418927A", "source_records": ["bwb:9798441166447"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T06:38:07.630794"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T06:38:07.630794"}}
+/type/author /authors/OL10418944A 1 2022-05-27T06:40:35.901839 {"type": {"key": "/type/author"}, "name": "The Sunflower Kam", "key": "/authors/OL10418944A", "source_records": ["bwb:9798449887689"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T06:40:35.901839"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T06:40:35.901839"}}
+/type/author /authors/OL10418965A 1 2022-05-27T06:43:09.249470 {"type": {"key": "/type/author"}, "name": "Carnival Row Calender", "key": "/authors/OL10418965A", "source_records": ["bwb:9798796238028"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T06:43:09.249470"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T06:43:09.249470"}}
+/type/author /authors/OL1041931A 5 2020-09-27T04:13:59.757758 {"name": "Dorothy Edwards", "personal_name": "Dorothy Edwards", "death_date": "1934", "alternate_names": ["Edwards, Dorothy."], "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "date": "d.1982", "last_modified": {"type": "/type/datetime", "value": "2020-09-27T04:13:59.757758"}, "latest_revision": 5, "key": "/authors/OL1041931A", "birth_date": "1903", "revision": 5, "type": {"key": "/type/author"}, "remote_ids": {"viaf": "30993066", "wikidata": "Q5298404", "isni": "0000000082159234"}}
+/type/author /authors/OL10420113A 1 2022-05-27T07:43:07.735575 {"type": {"key": "/type/author"}, "name": "Brave Calendar", "key": "/authors/OL10420113A", "source_records": ["bwb:9798796298619"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T07:43:07.735575"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T07:43:07.735575"}}
+/type/author /authors/OL10420257A 1 2022-05-27T07:51:33.922824 {"type": {"key": "/type/author"}, "name": "chris premium", "key": "/authors/OL10420257A", "source_records": ["bwb:9798403158596"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T07:51:33.922824"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T07:51:33.922824"}}
+/type/author /authors/OL10420401A 1 2022-05-27T07:58:21.922797 {"type": {"key": "/type/author"}, "name": "black barret", "key": "/authors/OL10420401A", "source_records": ["bwb:9798487460592"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T07:58:21.922797"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T07:58:21.922797"}}
+/type/author /authors/OL1042045A 3 2012-06-06T23:42:00.063268 {"created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "latest_revision": 3, "name": "Joseph Alcock", "key": "/authors/OL1042045A", "personal_name": "Joseph Alcock", "birth_date": "1880", "death_date": "1962", "type": {"key": "/type/author"}, "last_modified": {"type": "/type/datetime", "value": "2012-06-06T23:42:00.063268"}, "revision": 3}
+/type/author /authors/OL10420563A 1 2022-05-27T08:07:32.381764 {"type": {"key": "/type/author"}, "name": "Giovanna Pepe Diaz", "key": "/authors/OL10420563A", "source_records": ["bwb:9798801413495"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T08:07:32.381764"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T08:07:32.381764"}}
+/type/author /authors/OL10420896A 1 2022-05-27T08:25:04.111884 {"type": {"key": "/type/author"}, "name": "Juliette la cr\u00e9ative", "key": "/authors/OL10420896A", "source_records": ["bwb:9798611158050"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T08:25:04.111884"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T08:25:04.111884"}}
+/type/author /authors/OL10421840A 1 2022-05-27T09:16:15.530592 {"type": {"key": "/type/author"}, "name": "Michael Michael Mueller", "key": "/authors/OL10421840A", "source_records": ["bwb:9798459690101"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T09:16:15.530592"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T09:16:15.530592"}}
+/type/author /authors/OL10422226A 1 2022-05-27T09:36:48.015614 {"type": {"key": "/type/author"}, "name": "wolver\u00edne Coloring", "key": "/authors/OL10422226A", "source_records": ["bwb:9798447294823"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T09:36:48.015614"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T09:36:48.015614"}}
+/type/author /authors/OL10422227A 1 2022-05-27T09:36:50.066380 {"type": {"key": "/type/author"}, "name": "Sofia PUBLISH", "key": "/authors/OL10422227A", "source_records": ["bwb:9798404015942"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T09:36:50.066380"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T09:36:50.066380"}}
+/type/author /authors/OL1042254A 2 2008-08-19T22:53:46.942123 {"name": "Ma\u0142gorzata Czermin\u0301ska", "personal_name": "Ma\u0142gorzata Czermin\u0301ska", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T22:53:46.942123"}, "key": "/authors/OL1042254A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10423344A 1 2022-05-27T10:25:24.451752 {"type": {"key": "/type/author"}, "name": "Rachael Whitbread", "key": "/authors/OL10423344A", "source_records": ["bwb:9781399080989"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T10:25:24.451752"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T10:25:24.451752"}}
+/type/author /authors/OL10423356A 1 2022-05-27T10:25:52.161490 {"type": {"key": "/type/author"}, "name": "Steven Rutlidge", "key": "/authors/OL10423356A", "source_records": ["bwb:9781399088770"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T10:25:52.161490"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T10:25:52.161490"}}
+/type/author /authors/OL10423554A 1 2022-05-27T10:31:50.869581 {"type": {"key": "/type/author"}, "name": "William L. Harris", "key": "/authors/OL10423554A", "source_records": ["bwb:9798886806335"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T10:31:50.869581"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T10:31:50.869581"}}
+/type/author /authors/OL10423619A 1 2022-05-27T10:34:01.479956 {"type": {"key": "/type/author"}, "name": "Norm Spivey", "key": "/authors/OL10423619A", "source_records": ["bwb:9781735215945"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T10:34:01.479956"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T10:34:01.479956"}}
+/type/author /authors/OL10423635A 1 2022-05-27T10:34:26.741253 {"type": {"key": "/type/author"}, "name": "Miel Vandepitte", "key": "/authors/OL10423635A", "source_records": ["bwb:9781736860533"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T10:34:26.741253"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T10:34:26.741253"}}
+/type/author /authors/OL10423929A 1 2022-05-27T10:45:20.317671 {"type": {"key": "/type/author"}, "name": "Joyce E. Wright", "key": "/authors/OL10423929A", "source_records": ["bwb:9781685568252"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T10:45:20.317671"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T10:45:20.317671"}}
+/type/author /authors/OL10423948A 1 2022-05-27T10:46:26.131197 {"type": {"key": "/type/author"}, "name": "B. Risky", "key": "/authors/OL10423948A", "source_records": ["bwb:9781734923339"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T10:46:26.131197"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T10:46:26.131197"}}
+/type/author /authors/OL10424082A 1 2022-05-27T10:51:26.493018 {"type": {"key": "/type/author"}, "name": "Bud Stumbaugh", "key": "/authors/OL10424082A", "source_records": ["bwb:9781665721271"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T10:51:26.493018"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T10:51:26.493018"}}
+/type/author /authors/OL10425057A 1 2022-05-27T11:26:26.991403 {"type": {"key": "/type/author"}, "name": "Marianne Landrum", "key": "/authors/OL10425057A", "source_records": ["bwb:9798808234666"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T11:26:26.991403"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T11:26:26.991403"}}
+/type/author /authors/OL10425073A 1 2022-05-27T11:26:47.023646 {"type": {"key": "/type/author"}, "name": "Diy Gabrielle edition", "key": "/authors/OL10425073A", "source_records": ["bwb:9798597957654"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T11:26:47.023646"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T11:26:47.023646"}}
+/type/author /authors/OL10425171A 1 2022-05-27T11:29:29.494310 {"type": {"key": "/type/author"}, "name": "CarnetPom designs", "key": "/authors/OL10425171A", "source_records": ["bwb:9798602524628"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T11:29:29.494310"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T11:29:29.494310"}}
+/type/author /authors/OL10425779A 1 2022-05-27T11:49:23.286655 {"type": {"key": "/type/author"}, "name": "Carrie Humphrey", "key": "/authors/OL10425779A", "source_records": ["bwb:9781697113259"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T11:49:23.286655"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T11:49:23.286655"}}
+/type/author /authors/OL10425941A 1 2022-05-27T11:54:19.610569 {"type": {"key": "/type/author"}, "name": "osliai aslim", "key": "/authors/OL10425941A", "source_records": ["bwb:9798743576449"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T11:54:19.610569"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T11:54:19.610569"}}
+/type/author /authors/OL10426095A 1 2022-05-27T12:00:36.982035 {"type": {"key": "/type/author"}, "name": "Grand Delhi Edition", "key": "/authors/OL10426095A", "source_records": ["bwb:9798574588673"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T12:00:36.982035"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T12:00:36.982035"}}
+/type/author /authors/OL10426101A 1 2022-05-27T12:00:44.054300 {"type": {"key": "/type/author"}, "name": "Maureen Archie", "key": "/authors/OL10426101A", "source_records": ["bwb:9798579662989"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T12:00:44.054300"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T12:00:44.054300"}}
+/type/author /authors/OL10426281A 1 2022-05-27T12:07:27.297250 {"type": {"key": "/type/author"}, "name": "Luke owner edition", "key": "/authors/OL10426281A", "source_records": ["bwb:9798679651456"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T12:07:27.297250"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T12:07:27.297250"}}
+/type/author /authors/OL10426405A 1 2022-05-27T12:11:56.548345 {"type": {"key": "/type/author"}, "name": "Sarah Bd colorful", "key": "/authors/OL10426405A", "source_records": ["bwb:9798692367280"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T12:11:56.548345"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T12:11:56.548345"}}
+/type/author /authors/OL10426515A 1 2022-05-27T12:16:36.202534 {"type": {"key": "/type/author"}, "name": "Monz's Designs", "key": "/authors/OL10426515A", "source_records": ["bwb:9798435977769"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T12:16:36.202534"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T12:16:36.202534"}}
+/type/author /authors/OL10426728A 1 2022-05-27T12:30:49.416179 {"type": {"key": "/type/author"}, "name": "Eli Kampf", "key": "/authors/OL10426728A", "source_records": ["bwb:9798806053702"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T12:30:49.416179"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T12:30:49.416179"}}
+/type/author /authors/OL10427150A 1 2022-05-27T12:48:36.990634 {"type": {"key": "/type/author"}, "name": "Isla Xmax colorful", "key": "/authors/OL10427150A", "source_records": ["bwb:9798557747059"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T12:48:36.990634"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T12:48:36.990634"}}
+/type/author /authors/OL10427242A 1 2022-05-27T12:51:26.810902 {"type": {"key": "/type/author"}, "name": "Victioria Jhon", "key": "/authors/OL10427242A", "source_records": ["bwb:9798804857005"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T12:51:26.810902"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T12:51:26.810902"}}
+/type/author /authors/OL10427420A 1 2022-05-27T12:58:34.006900 {"type": {"key": "/type/author"}, "name": "Allison Journal Edition", "key": "/authors/OL10427420A", "source_records": ["bwb:9798673747681"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T12:58:34.006900"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T12:58:34.006900"}}
+/type/author /authors/OL10427849A 1 2022-05-27T13:17:53.821026 {"type": {"key": "/type/author"}, "name": "Shavoya Mayhew", "key": "/authors/OL10427849A", "source_records": ["bwb:9798805294199"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T13:17:53.821026"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T13:17:53.821026"}}
+/type/author /authors/OL1042796A 5 2020-09-30T15:20:18.967526 {"personal_name": "Ernest Moutoussamy", "last_modified": {"type": "/type/datetime", "value": "2020-09-30T15:20:18.967526"}, "latest_revision": 5, "key": "/authors/OL1042796A", "remote_ids": {"viaf": "110494119", "wikidata": "Q3057096", "isni": "0000000084077662"}, "name": "Ernest Moutoussamy", "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "death_date": "Fran\u00e7ois, commune de Guadeloupe", "birth_date": "1941", "type": {"key": "/type/author"}, "revision": 5}
+/type/author /authors/OL10428059A 1 2022-05-27T13:28:32.929808 {"type": {"key": "/type/author"}, "name": "Allison Natalia", "key": "/authors/OL10428059A", "source_records": ["bwb:9798775857097"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T13:28:32.929808"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T13:28:32.929808"}}
+/type/author /authors/OL10428488A 1 2022-05-27T13:48:32.924137 {"type": {"key": "/type/author"}, "name": "Angela Bins", "key": "/authors/OL10428488A", "source_records": ["bwb:9798805969868"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T13:48:32.924137"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T13:48:32.924137"}}
+/type/author /authors/OL10428688A 1 2022-05-27T13:59:03.629180 {"type": {"key": "/type/author"}, "name": "Aliyah's Bd publishing", "key": "/authors/OL10428688A", "source_records": ["bwb:9798740966069"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T13:59:03.629180"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T13:59:03.629180"}}
+/type/author /authors/OL10428966A 1 2022-05-27T14:16:38.552886 {"type": {"key": "/type/author"}, "name": "Mamta Pujari", "key": "/authors/OL10428966A", "source_records": ["bwb:9781685079550"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T14:16:38.552886"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T14:16:38.552886"}}
+/type/author /authors/OL10429235A 1 2022-05-27T14:29:27.652843 {"type": {"key": "/type/author"}, "name": "Camilla Falkenberg", "key": "/authors/OL10429235A", "source_records": ["bwb:9780744077308"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T14:29:27.652843"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T14:29:27.652843"}}
+/type/author /authors/OL10429769A 1 2022-05-27T14:51:04.315888 {"type": {"key": "/type/author"}, "name": "Adams, T. Jermaine, 1st", "key": "/authors/OL10429769A", "source_records": ["bwb:9781732060920"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T14:51:04.315888"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T14:51:04.315888"}}
+/type/author /authors/OL10429823A 1 2022-05-27T14:52:54.449362 {"type": {"key": "/type/author"}, "name": "Justin Louis", "key": "/authors/OL10429823A", "source_records": ["bwb:9781737868439"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T14:52:54.449362"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T14:52:54.449362"}}
+/type/author /authors/OL10430243A 1 2022-05-27T17:59:35.796085 {"type": {"key": "/type/author"}, "name": "Edward L. Green", "personal_name": "Edward L. Green", "birth_date": "1946", "key": "/authors/OL10430243A", "source_records": ["ia:supplementalguid0000gree"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-27T17:59:35.796085"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T17:59:35.796085"}}
+/type/author /authors/OL10431376A 1 2022-05-28T11:56:58.307416 {"type": {"key": "/type/author"}, "name": "Robin Cain", "personal_name": "Robin Cain", "key": "/authors/OL10431376A", "source_records": ["ia:whendreamsbleedn0000cain"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-28T11:56:58.307416"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-28T11:56:58.307416"}}
+/type/author /authors/OL10431488A 1 2022-05-28T13:24:51.887601 {"type": {"key": "/type/author"}, "name": "Kathleen S. Kendrick", "personal_name": "Kathleen S. Kendrick", "key": "/authors/OL10431488A", "source_records": ["ia:attentiondeficit0000kend"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-28T13:24:51.887601"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-28T13:24:51.887601"}}
+/type/author /authors/OL10431659A 1 2022-05-28T15:38:43.082960 {"type": {"key": "/type/author"}, "name": "Pietro Luca Perazzini", "personal_name": "Pietro Luca Perazzini", "key": "/authors/OL10431659A", "source_records": ["ia:applausipoeticio00unse"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-28T15:38:43.082960"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-28T15:38:43.082960"}}
+/type/author /authors/OL10431940A 1 2022-05-29T20:05:15.631808 {"type": {"key": "/type/author"}, "name": "Coralia Schenk", "key": "/authors/OL10431940A", "source_records": ["amazon:1980240345"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-29T20:05:15.631808"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-29T20:05:15.631808"}}
+/type/author /authors/OL10432166A 1 2022-05-31T05:38:40.066264 {"type": {"key": "/type/author"}, "name": "Y. F. So", "personal_name": "Y. F. So", "key": "/authors/OL10432166A", "source_records": ["ia:newwayadditional0000soyf"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-31T05:38:40.066264"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-31T05:38:40.066264"}}
+/type/author /authors/OL10432189A 1 2022-05-31T06:00:09.369987 {"type": {"key": "/type/author"}, "name": "Carla Torres", "personal_name": "Carla Torres", "key": "/authors/OL10432189A", "source_records": ["ia:larryfriends0000torr"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-31T06:00:09.369987"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-31T06:00:09.369987"}}
+/type/author /authors/OL10432220A 1 2022-05-31T06:44:16.825279 {"type": {"key": "/type/author"}, "name": "Gary R. Winstead", "personal_name": "Gary R. Winstead", "birth_date": "1948", "key": "/authors/OL10432220A", "source_records": ["ia:soyouwanttobemar0000wins"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-31T06:44:16.825279"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-31T06:44:16.825279"}}
+/type/author /authors/OL10432289A 1 2022-05-31T22:38:41.473715 {"type": {"key": "/type/author"}, "name": "PRENTICE HALL", "key": "/authors/OL10432289A", "source_records": ["amazon:9620058690"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-31T22:38:41.473715"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-31T22:38:41.473715"}}
+/type/author /authors/OL10432838A 1 2022-06-03T07:28:20.861668 {"type": {"key": "/type/author"}, "name": "Jane Gannon", "personal_name": "Jane Gannon", "key": "/authors/OL10432838A", "source_records": ["ia:math201albertawo0000unse"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-03T07:28:20.861668"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-03T07:28:20.861668"}}
+/type/author /authors/OL10432998A 1 2022-06-04T04:32:33.500425 {"type": {"key": "/type/author"}, "name": "William Carl Thalbitzer", "personal_name": "William Carl Thalbitzer", "birth_date": "1873", "death_date": "1958", "key": "/authors/OL10432998A", "source_records": ["ia:ammassalikeskimo0002unse"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-04T04:32:33.500425"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-04T04:32:33.500425"}}
+/type/author /authors/OL10433673A 1 2022-06-07T06:30:19.973402 {"type": {"key": "/type/author"}, "name": "Dani\u00e8le Brun", "personal_name": "Dani\u00e8le Brun", "birth_date": "1938", "key": "/authors/OL10433673A", "source_records": ["ia:lapassiondanslam0000brun"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-07T06:30:19.973402"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-07T06:30:19.973402"}}
+/type/author /authors/OL1043376A 1 2008-04-01T03:28:50.625462 {"name": "Democracia Cristiana Guatemalteca (Political party)", "last_modified": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "key": "/authors/OL1043376A", "type": {"key": "/type/author"}, "revision": 1}
+/type/author /authors/OL10433824A 1 2022-06-08T04:54:35.080587 {"type": {"key": "/type/author"}, "name": "Dmitri\u012d Sergeevich Likhachev", "personal_name": "Dmitri\u012d Sergeevich Likhachev", "key": "/authors/OL10433824A", "source_records": ["ia:perepiskaivanagr0000unse"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-08T04:54:35.080587"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-08T04:54:35.080587"}}
+/type/author /authors/OL10433851A 1 2022-06-08T05:20:16.081385 {"type": {"key": "/type/author"}, "name": "Milena G\u00f3mez Kopp", "personal_name": "Milena G\u00f3mez Kopp", "birth_date": "1956", "key": "/authors/OL10433851A", "source_records": ["ia:elvotoenelexteri0000unse"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-08T05:20:16.081385"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-08T05:20:16.081385"}}
+/type/author /authors/OL10433941A 1 2022-06-08T10:48:35.178097 {"type": {"key": "/type/author"}, "name": "Mich\u00e4el Escoffier", "key": "/authors/OL10433941A", "source_records": ["amazon:8416427453"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-08T10:48:35.178097"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-08T10:48:35.178097"}}
+/type/author /authors/OL10433977A 1 2022-06-08T18:08:48.395819 {"type": {"key": "/type/author"}, "name": "Sachar", "key": "/authors/OL10433977A", "source_records": ["amazon:9875739529"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-08T18:08:48.395819"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-08T18:08:48.395819"}}
+/type/author /authors/OL10434240A 1 2022-06-09T18:02:03.205783 {"type": {"key": "/type/author"}, "name": "Bernard E Rath", "key": "/authors/OL10434240A", "source_records": ["amazon:1511457600"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-09T18:02:03.205783"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-09T18:02:03.205783"}}
+/type/author /authors/OL10434776A 1 2022-06-11T07:50:50.136050 {"type": {"key": "/type/author"}, "name": "Leola Wilkerson-Williams", "key": "/authors/OL10434776A", "source_records": ["amazon:1452580936"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-11T07:50:50.136050"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-11T07:50:50.136050"}}
+/type/author /authors/OL10434912A 1 2022-06-12T04:36:04.535148 {"type": {"key": "/type/author"}, "name": "Marijke Libert", "personal_name": "Marijke Libert", "birth_date": "1962", "key": "/authors/OL10434912A", "source_records": ["ia:sisterka0000libe"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-12T04:36:04.535148"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-12T04:36:04.535148"}}
+/type/author /authors/OL10435186A 1 2022-06-13T04:32:13.779488 {"type": {"key": "/type/author"}, "name": "Zhigang Luan", "personal_name": "Zhigang Luan", "key": "/authors/OL10435186A", "source_records": ["ia:lingdaoxuequansh0000luan"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-13T04:32:13.779488"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-13T04:32:13.779488"}}
+/type/author /authors/OL10435403A 1 2022-06-14T05:29:15.216330 {"type": {"key": "/type/author"}, "name": "Joe Tog", "personal_name": "Joe Tog", "key": "/authors/OL10435403A", "source_records": ["ia:aussietruecrimes0000togj"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-14T05:29:15.216330"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-14T05:29:15.216330"}}
+/type/author /authors/OL1043542A 2 2008-08-19T22:59:34.015871 {"name": "L. P. Turkin", "personal_name": "L. P. Turkin", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T22:59:34.015871"}, "key": "/authors/OL1043542A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10435954A 1 2022-06-15T06:33:36.346804 {"type": {"key": "/type/author"}, "name": "Marcin We\u0142nicki", "personal_name": "Marcin We\u0142nicki", "birth_date": "(1984", "death_date": ")", "key": "/authors/OL10435954A", "source_records": ["ia:testamentdamokle0000weni"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-15T06:33:36.346804"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-15T06:33:36.346804"}}
+/type/author /authors/OL10436197A 1 2022-06-16T04:43:24.067017 {"type": {"key": "/type/author"}, "name": "Willem Kas", "personal_name": "Willem Kas", "key": "/authors/OL10436197A", "source_records": ["ia:tekstenschrijven0000kasw"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-16T04:43:24.067017"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-16T04:43:24.067017"}}
+/type/author /authors/OL10436583A 1 2022-06-17T01:24:16.034619 {"type": {"key": "/type/author"}, "name": "Peter J Carroll", "key": "/authors/OL10436583A", "source_records": ["amazon:1914153146"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-17T01:24:16.034619"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-17T01:24:16.034619"}}
+/type/author /authors/OL10436606A 1 2022-06-17T02:37:08.639427 {"type": {"key": "/type/author"}, "name": "David S. Heath", "key": "/authors/OL10436606A", "source_records": ["bwb:9780203507063"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-17T02:37:08.639427"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-17T02:37:08.639427"}}
+/type/author /authors/OL10436673A 1 2022-06-17T03:30:43.610550 {"type": {"key": "/type/author"}, "name": "Ulrike W\u00fcrz", "key": "/authors/OL10436673A", "source_records": ["amazon:3060200947"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-17T03:30:43.610550"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-17T03:30:43.610550"}}
+/type/author /authors/OL10436720A 1 2022-06-17T04:10:32.542961 {"type": {"key": "/type/author"}, "name": "ELTIS", "key": "/authors/OL10436720A", "source_records": ["bwb:9781858981727"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-17T04:10:32.542961"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-17T04:10:32.542961"}}
+/type/author /authors/OL1043698A 2 2008-08-19T23:00:20.333384 {"name": "Alec Forshaw", "personal_name": "Alec Forshaw", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T23:00:20.333384"}, "key": "/authors/OL1043698A", "birth_date": "1951", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10437286A 1 2022-06-17T06:24:58.291937 {"type": {"key": "/type/author"}, "name": "Mark Brodie", "key": "/authors/OL10437286A", "source_records": ["bwb:9780975747537"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-17T06:24:58.291937"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-17T06:24:58.291937"}}
+/type/author /authors/OL10437778A 1 2022-06-17T07:28:38.278214 {"type": {"key": "/type/author"}, "name": "Heidi Harms", "key": "/authors/OL10437778A", "source_records": ["bwb:9780887553271"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-17T07:28:38.278214"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-17T07:28:38.278214"}}
+/type/author /authors/OL10438271A 1 2022-06-17T07:56:04.475064 {"type": {"key": "/type/author"}, "name": "Joseph L. Subbiondo", "key": "/authors/OL10438271A", "source_records": ["bwb:9789027277237"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-17T07:56:04.475064"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-17T07:56:04.475064"}}
+/type/author /authors/OL1043833A 2 2008-08-19T23:01:46.202088 {"name": "Valeria Del Tufo", "personal_name": "Valeria Del Tufo", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T23:01:46.202088"}, "key": "/authors/OL1043833A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10438455A 1 2022-06-17T08:02:36.727058 {"type": {"key": "/type/author"}, "name": "Dick Farnsworth", "key": "/authors/OL10438455A", "source_records": ["bwb:9781452559032"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-17T08:02:36.727058"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-17T08:02:36.727058"}}
+/type/author /authors/OL1043845A 3 2017-11-24T05:29:43.930941 {"name": "A. I\u0361U Terekhina", "personal_name": "A. I\u0361U Terekhina", "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2017-11-24T05:29:43.930941"}, "latest_revision": 3, "key": "/authors/OL1043845A", "type": {"key": "/type/author"}, "revision": 3}
+/type/author /authors/OL10438525A 1 2022-06-17T08:06:08.147375 {"type": {"key": "/type/author"}, "name": "Wolfgang Lower", "key": "/authors/OL10438525A", "source_records": ["bwb:9783899716030"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-17T08:06:08.147375"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-17T08:06:08.147375"}}
+/type/author /authors/OL10438650A 1 2022-06-17T08:15:49.422827 {"type": {"key": "/type/author"}, "name": "Fabian Shafiq", "key": "/authors/OL10438650A", "source_records": ["bwb:9783656121237"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-17T08:15:49.422827"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-17T08:15:49.422827"}}
+/type/author /authors/OL1043920A 2 2008-08-19T23:02:05.888272 {"name": "Hans Peter Rohr", "personal_name": "Hans Peter Rohr", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T23:02:05.888272"}, "key": "/authors/OL1043920A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10439236A 1 2022-06-17T08:48:09.474445 {"type": {"key": "/type/author"}, "name": "R. M. Keelan Downton", "key": "/authors/OL10439236A", "source_records": ["bwb:9781846944895"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-17T08:48:09.474445"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-17T08:48:09.474445"}}
+/type/author /authors/OL10439362A 1 2022-06-17T08:56:40.618346 {"type": {"key": "/type/author"}, "name": "B\u00e1rbara Del Amo", "key": "/authors/OL10439362A", "source_records": ["bwb:9781452550978"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-17T08:56:40.618346"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-17T08:56:40.618346"}}
+/type/author /authors/OL10439555A 1 2022-06-17T09:03:43.475479 {"type": {"key": "/type/author"}, "name": "Regine Alegiani", "key": "/authors/OL10439555A", "source_records": ["bwb:9783525401149"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-17T09:03:43.475479"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-17T09:03:43.475479"}}
+/type/author /authors/OL10439791A 1 2022-06-17T09:19:16.537795 {"type": {"key": "/type/author"}, "name": "Brett P. Laursen", "key": "/authors/OL10439791A", "source_records": ["bwb:9781452263878"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-17T09:19:16.537795"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-17T09:19:16.537795"}}
+/type/author /authors/OL10440047A 1 2022-06-17T09:35:56.224034 {"type": {"key": "/type/author"}, "name": "Francis Perry Milton", "key": "/authors/OL10440047A", "source_records": ["bwb:9781452550671"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-17T09:35:56.224034"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-17T09:35:56.224034"}}
+/type/author /authors/OL1044036A 2 2008-08-19T23:02:38.71669 {"name": "Tom Greeves", "personal_name": "Tom Greeves", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T23:02:38.71669"}, "key": "/authors/OL1044036A", "birth_date": "1949", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10440654A 1 2022-06-17T10:08:51.553680 {"type": {"key": "/type/author"}, "name": "Belair Stable Belair Stable Museum", "key": "/authors/OL10440654A", "source_records": ["bwb:9781614234739"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-17T10:08:51.553680"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-17T10:08:51.553680"}}
+/type/author /authors/OL1044079A 2 2008-08-19T23:02:58.552768 {"name": "Robert L. Susnow", "personal_name": "Robert L. Susnow", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T23:02:58.552768"}, "key": "/authors/OL1044079A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10440908A 1 2022-06-17T10:20:57.170737 {"type": {"key": "/type/author"}, "name": "Marty Markowitz", "key": "/authors/OL10440908A", "source_records": ["bwb:9781625840271"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-17T10:20:57.170737"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-17T10:20:57.170737"}}
+/type/author /authors/OL10441476A 1 2022-06-17T10:42:37.588652 {"type": {"key": "/type/author"}, "name": "Michael Martin Nachtrab", "key": "/authors/OL10441476A", "source_records": ["bwb:9783656517498"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-17T10:42:37.588652"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-17T10:42:37.588652"}}
+/type/author /authors/OL10442325A 1 2022-06-17T11:09:51.538675 {"type": {"key": "/type/author"}, "name": "J. -P Touffut", "key": "/authors/OL10442325A", "source_records": ["bwb:9781282908659"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-17T11:09:51.538675"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-17T11:09:51.538675"}}
+/type/author /authors/OL10442406A 1 2022-06-17T11:53:50.710081 {"type": {"key": "/type/author"}, "name": "Toni Collins", "key": "/authors/OL10442406A", "source_records": ["bwb:9781283661164"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-17T11:53:50.710081"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-17T11:53:50.710081"}}
+/type/author /authors/OL10443111A 1 2022-06-17T14:31:56.070385 {"type": {"key": "/type/author"}, "name": "Paul A. Dirac", "key": "/authors/OL10443111A", "source_records": ["bwb:9781306326223"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-17T14:31:56.070385"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-17T14:31:56.070385"}}
+/type/author /authors/OL10443384A 1 2022-06-17T15:04:40.376003 {"type": {"key": "/type/author"}, "name": "Helen Cowles Lecron", "key": "/authors/OL10443384A", "source_records": ["bwb:9781306393287"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-17T15:04:40.376003"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-17T15:04:40.376003"}}
+/type/author /authors/OL10443491A 1 2022-06-17T15:17:57.893985 {"type": {"key": "/type/author"}, "name": "Roger L. Cutting", "key": "/authors/OL10443491A", "source_records": ["bwb:9781473909434"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-17T15:17:57.893985"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-17T15:17:57.893985"}}
+/type/author /authors/OL10443771A 1 2022-06-17T15:36:32.874077 {"type": {"key": "/type/author"}, "name": "Charles Polidano", "key": "/authors/OL10443771A", "source_records": ["bwb:9781781950494"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-17T15:36:32.874077"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-17T15:36:32.874077"}}
+/type/author /authors/OL10443840A 1 2022-06-17T15:38:31.996973 {"type": {"key": "/type/author"}, "name": "M. Augier", "key": "/authors/OL10443840A", "source_records": ["bwb:9781781006641"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-17T15:38:31.996973"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-17T15:38:31.996973"}}
+/type/author /authors/OL10444190A 1 2022-06-17T15:49:41.737595 {"type": {"key": "/type/author"}, "name": "Lisa De Propis", "key": "/authors/OL10444190A", "source_records": ["bwb:9781781007808"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-17T15:49:41.737595"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-17T15:49:41.737595"}}
+/type/author /authors/OL10445285A 1 2022-06-17T17:30:47.515157 {"type": {"key": "/type/author"}, "name": "Wilson, Isaiah, III", "key": "/authors/OL10445285A", "source_records": ["bwb:9781421415307"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-17T17:30:47.515157"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-17T17:30:47.515157"}}
+/type/author /authors/OL10445439A 1 2022-06-17T17:46:20.409249 {"type": {"key": "/type/author"}, "name": "T. Bando", "key": "/authors/OL10445439A", "source_records": ["bwb:9780080862378"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-17T17:46:20.409249"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-17T17:46:20.409249"}}
+/type/author /authors/OL10445778A 1 2022-06-17T18:04:31.553794 {"type": {"key": "/type/author"}, "name": "Marek Lagunov", "key": "/authors/OL10445778A", "source_records": ["bwb:9781681172033"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-17T18:04:31.553794"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-17T18:04:31.553794"}}
+/type/author /authors/OL10446587A 1 2022-06-17T19:05:58.406869 {"type": {"key": "/type/author"}, "name": "Roman Dubasevych", "key": "/authors/OL10446587A", "source_records": ["bwb:9783205204848"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-17T19:05:58.406869"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-17T19:05:58.406869"}}
+/type/author /authors/OL10446840A 1 2022-06-17T19:19:09.225191 {"type": {"key": "/type/author"}, "name": "Laurie C. Heffron", "key": "/authors/OL10446840A", "source_records": ["bwb:9781506305707"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-17T19:19:09.225191"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-17T19:19:09.225191"}}
+/type/author /authors/OL10447286A 1 2022-06-17T19:44:26.176119 {"type": {"key": "/type/author"}, "name": "Immanuel Schnoor", "key": "/authors/OL10447286A", "source_records": ["bwb:9781681178653"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-17T19:44:26.176119"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-17T19:44:26.176119"}}
+/type/author /authors/OL10447463A 1 2022-06-17T19:53:06.518590 {"type": {"key": "/type/author"}, "name": "Nobert Wagner", "key": "/authors/OL10447463A", "source_records": ["bwb:9789814377003"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-17T19:53:06.518590"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-17T19:53:06.518590"}}
+/type/author /authors/OL10447742A 1 2022-06-17T20:07:56.913148 {"type": {"key": "/type/author"}, "name": "Jonathan Bryan", "key": "/authors/OL10447742A", "source_records": ["bwb:9781911600787"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-17T20:07:56.913148"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-17T20:07:56.913148"}}
+/type/author /authors/OL10447815A 1 2022-06-17T20:19:19.528085 {"type": {"key": "/type/author"}, "name": "Yizhu Lu", "key": "/authors/OL10447815A", "source_records": ["bwb:9781642240221"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-17T20:19:19.528085"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-17T20:19:19.528085"}}
+/type/author /authors/OL10447833A 1 2022-06-17T20:19:27.138463 {"type": {"key": "/type/author"}, "name": "Mehrdad Jafari Salim", "key": "/authors/OL10447833A", "source_records": ["bwb:9781642240207"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-17T20:19:27.138463"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-17T20:19:27.138463"}}
+/type/author /authors/OL10448049A 1 2022-06-17T20:36:04.688691 {"type": {"key": "/type/author"}, "name": "Umair Shahzad", "key": "/authors/OL10448049A", "source_records": ["bwb:9781642241624"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-17T20:36:04.688691"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-17T20:36:04.688691"}}
+/type/author /authors/OL10448344A 1 2022-06-17T20:53:09.870264 {"type": {"key": "/type/author"}, "name": "Brian Robert Sovik", "key": "/authors/OL10448344A", "source_records": ["bwb:9781642230314"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-17T20:53:09.870264"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-17T20:53:09.870264"}}
+/type/author /authors/OL10448405A 1 2022-06-17T20:54:01.526788 {"type": {"key": "/type/author"}, "name": "Geraldo Chavarria", "key": "/authors/OL10448405A", "source_records": ["bwb:9781642230772"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-17T20:54:01.526788"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-17T20:54:01.526788"}}
+/type/author /authors/OL10448712A 1 2022-06-17T21:07:04.059749 {"type": {"key": "/type/author"}, "name": "Larry Yother", "key": "/authors/OL10448712A", "source_records": ["bwb:9781543942538"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-17T21:07:04.059749"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-17T21:07:04.059749"}}
+/type/author /authors/OL10449461A 1 2022-06-17T22:09:08.879895 {"type": {"key": "/type/author"}, "name": "Tanika Riggs", "key": "/authors/OL10449461A", "source_records": ["bwb:9781642242072"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-17T22:09:08.879895"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-17T22:09:08.879895"}}
+/type/author /authors/OL10449505A 1 2022-06-17T22:10:26.831314 {"type": {"key": "/type/author"}, "name": "Pat Dowd", "key": "/authors/OL10449505A", "source_records": ["bwb:9781543966558"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-17T22:10:26.831314"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-17T22:10:26.831314"}}
+/type/author /authors/OL10449593A 1 2022-06-17T22:13:12.490074 {"type": {"key": "/type/author"}, "name": "Michael Choptiany", "key": "/authors/OL10449593A", "source_records": ["bwb:9783525571293"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-17T22:13:12.490074"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-17T22:13:12.490074"}}
+/type/author /authors/OL10449737A 1 2022-06-17T22:19:15.643637 {"type": {"key": "/type/author"}, "name": "Andra Douglas", "key": "/authors/OL10449737A", "source_records": ["bwb:9781733583503"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-17T22:19:15.643637"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-17T22:19:15.643637"}}
+/type/author /authors/OL1044982A 2 2008-08-19T23:07:10.591307 {"name": "Bajram Maloku", "personal_name": "Bajram Maloku", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T23:07:10.591307"}, "key": "/authors/OL1044982A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10449840A 1 2022-06-17T22:27:08.577253 {"type": {"key": "/type/author"}, "name": "Russ Mathews", "key": "/authors/OL10449840A", "source_records": ["bwb:9781543975468"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-17T22:27:08.577253"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-17T22:27:08.577253"}}
+/type/author /authors/OL10450422A 1 2022-06-17T22:56:12.818942 {"type": {"key": "/type/author"}, "name": "M\u00e1rta Fischer", "key": "/authors/OL10450422A", "source_records": ["bwb:9781622738625"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-17T22:56:12.818942"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-17T22:56:12.818942"}}
+/type/author /authors/OL10450428A 1 2022-06-17T22:56:52.886822 {"type": {"key": "/type/author"}, "name": "Daneile Hicks-Burnett", "key": "/authors/OL10450428A", "source_records": ["bwb:9781543994797"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-17T22:56:52.886822"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-17T22:56:52.886822"}}
+/type/author /authors/OL10450738A 1 2022-06-17T23:10:12.464436 {"type": {"key": "/type/author"}, "name": "Dominik B\u00fcschken", "key": "/authors/OL10450738A", "source_records": ["bwb:9783847111702"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-17T23:10:12.464436"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-17T23:10:12.464436"}}
+/type/author /authors/OL10450774A 1 2022-06-17T23:17:32.349243 {"type": {"key": "/type/author"}, "name": "Iris S\u00f6hngen", "key": "/authors/OL10450774A", "source_records": ["bwb:9783525407431"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-17T23:17:32.349243"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-17T23:17:32.349243"}}
+/type/author /authors/OL10450805A 1 2022-06-17T23:20:21.975521 {"type": {"key": "/type/author"}, "name": "FREMON", "key": "/authors/OL10450805A", "source_records": ["bwb:9781838014100"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-17T23:20:21.975521"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-17T23:20:21.975521"}}
+/type/author /authors/OL1045125A 2 2008-08-19T23:07:40.506261 {"name": "Jose\u0301 Luis Lo\u0301pez Lo\u0301pez", "personal_name": "Jose\u0301 Luis Lo\u0301pez Lo\u0301pez", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T23:07:40.506261"}, "key": "/authors/OL1045125A", "birth_date": "1940", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10451560A 1 2022-06-18T00:01:13.751034 {"type": {"key": "/type/author"}, "name": "Dieter Kre\u00df", "key": "/authors/OL10451560A", "source_records": ["bwb:9783112596548"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-18T00:01:13.751034"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-18T00:01:13.751034"}}
+/type/author /authors/OL10451690A 1 2022-06-18T00:10:47.420232 {"type": {"key": "/type/author"}, "name": "Joeanna Rebello Fernandes", "key": "/authors/OL10451690A", "source_records": ["bwb:9780143450139"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-18T00:10:47.420232"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-18T00:10:47.420232"}}
+/type/author /authors/OL10451853A 1 2022-06-18T00:24:10.143831 {"type": {"key": "/type/author"}, "name": "Manpreet Singh Manna", "key": "/authors/OL10451853A", "source_records": ["bwb:9781000624328"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-18T00:24:10.143831"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-18T00:24:10.143831"}}
+/type/author /authors/OL10451865A 1 2022-06-18T00:26:02.707275 {"type": {"key": "/type/author"}, "name": "A. P. Iwanow", "key": "/authors/OL10451865A", "source_records": ["bwb:9783112575321"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-18T00:26:02.707275"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-18T00:26:02.707275"}}
+/type/author /authors/OL10452025A 1 2022-06-18T00:36:53.055966 {"type": {"key": "/type/author"}, "name": "Cornelia Wrzus", "key": "/authors/OL10452025A", "source_records": ["bwb:9783662651827"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-18T00:36:53.055966"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-18T00:36:53.055966"}}
+/type/author /authors/OL10452222A 1 2022-06-18T00:45:26.161143 {"type": {"key": "/type/author"}, "name": "Chlo\u00e9 Gaboriaux", "key": "/authors/OL10452222A", "source_records": ["bwb:9782875745392"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-18T00:45:26.161143"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-18T00:45:26.161143"}}
+/type/author /authors/OL10452406A 1 2022-06-18T00:54:31.243603 {"type": {"key": "/type/author"}, "name": "Simona Kukovič", "key": "/authors/OL10452406A", "source_records": ["bwb:9781802205527"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-18T00:54:31.243603"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-18T00:54:31.243603"}}
+/type/author /authors/OL10452530A 1 2022-06-18T00:59:45.571765 {"type": {"key": "/type/author"}, "name": "Charlene Smoyer", "key": "/authors/OL10452530A", "source_records": ["bwb:9780824844011"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-18T00:59:45.571765"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-18T00:59:45.571765"}}
+/type/author /authors/OL10452677A 1 2022-06-18T01:06:06.225717 {"type": {"key": "/type/author"}, "name": "David Stiles-Ocran", "key": "/authors/OL10452677A", "source_records": ["bwb:9781003265511"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-18T01:06:06.225717"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-18T01:06:06.225717"}}
+/type/author /authors/OL10452710A 1 2022-06-18T01:08:17.821774 {"type": {"key": "/type/author"}, "name": "Kevin Goldsmith", "key": "/authors/OL10452710A", "source_records": ["bwb:9781800568785"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-18T01:08:17.821774"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-18T01:08:17.821774"}}
+/type/author /authors/OL10453048A 1 2022-06-18T01:25:10.943313 {"type": {"key": "/type/author"}, "name": "Franz Wright Aurel Schmidt", "key": "/authors/OL10453048A", "source_records": ["bwb:9781907071348"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-18T01:25:10.943313"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-18T01:25:10.943313"}}
+/type/author /authors/OL10453404A 1 2022-06-18T01:37:52.887316 {"type": {"key": "/type/author"}, "name": "Thorsten Merse", "key": "/authors/OL10453404A", "source_records": ["bwb:9781000686487"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-18T01:37:52.887316"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-18T01:37:52.887316"}}
+/type/author /authors/OL1045343A 2 2008-08-19T23:08:33.350564 {"name": "Georgios Karamanidis", "personal_name": "Georgios Karamanidis", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T23:08:33.350564"}, "key": "/authors/OL1045343A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10453581A 1 2022-06-18T01:49:19.007627 {"type": {"key": "/type/author"}, "name": "Thomas Maes", "key": "/authors/OL10453581A", "source_records": ["bwb:9783031086281"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-18T01:49:19.007627"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-18T01:49:19.007627"}}
+/type/author /authors/OL10453625A 1 2022-06-18T01:50:19.673781 {"type": {"key": "/type/author"}, "name": "Yonina Eldar", "key": "/authors/OL10453625A", "source_records": ["bwb:9783031085055"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-18T01:50:19.673781"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-18T01:50:19.673781"}}
+/type/author /authors/OL10453691A 1 2022-06-18T01:51:34.124007 {"type": {"key": "/type/author"}, "name": "Karen Jaehrling", "key": "/authors/OL10453691A", "source_records": ["bwb:9783658380250"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-18T01:51:34.124007"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-18T01:51:34.124007"}}
+/type/author /authors/OL10453802A 1 2022-06-18T01:53:52.689417 {"type": {"key": "/type/author"}, "name": "Norhaliza Abdul Wahab", "key": "/authors/OL10453802A", "source_records": ["bwb:9789811939228"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-18T01:53:52.689417"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-18T01:53:52.689417"}}
+/type/author /authors/OL10453926A 1 2022-06-18T01:58:19.476339 {"type": {"key": "/type/author"}, "name": "Jamie Hex; Sara Luna", "key": "/authors/OL10453926A", "source_records": ["bwb:9781848868892"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-18T01:58:19.476339"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-18T01:58:19.476339"}}
+/type/author /authors/OL10453999A 1 2022-06-18T02:00:01.705470 {"type": {"key": "/type/author"}, "name": "Laura Stoops", "key": "/authors/OL10453999A", "source_records": ["bwb:9781839826399"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-18T02:00:01.705470"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-18T02:00:01.705470"}}
+/type/author /authors/OL10454201A 1 2022-06-18T02:08:36.258667 {"type": {"key": "/type/author"}, "name": "Mostafa Baghani", "key": "/authors/OL10454201A", "source_records": ["bwb:9780443189920"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-18T02:08:36.258667"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-18T02:08:36.258667"}}
+/type/author /authors/OL10454360A 1 2022-06-18T02:13:35.229855 {"type": {"key": "/type/author"}, "name": "George Dietrich", "key": "/authors/OL10454360A", "source_records": ["bwb:9781801818674"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-18T02:13:35.229855"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-18T02:13:35.229855"}}
+/type/author /authors/OL10454692A 1 2022-06-18T02:21:56.873687 {"type": {"key": "/type/author"}, "name": "PETER LORD AND RHIAN DAVIES", "key": "/authors/OL10454692A", "source_records": ["bwb:9781914595257"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-18T02:21:56.873687"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-18T02:21:56.873687"}}
+/type/author /authors/OL10455036A 1 2022-06-18T02:36:27.553327 {"type": {"key": "/type/author"}, "name": "Francoise Contreras", "key": "/authors/OL10455036A", "source_records": ["bwb:9781803827889"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-18T02:36:27.553327"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-18T02:36:27.553327"}}
+/type/author /authors/OL10455628A 1 2022-06-18T03:00:16.235297 {"type": {"key": "/type/author"}, "name": "Pettarusp Murzban Wadia", "key": "/authors/OL10455628A", "source_records": ["bwb:9789354650352"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-18T03:00:16.235297"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-18T03:00:16.235297"}}
+/type/author /authors/OL10455878A 1 2022-06-18T03:11:19.779542 {"type": {"key": "/type/author"}, "name": "Swadhin Sen", "key": "/authors/OL10455878A", "source_records": ["bwb:9781000780758"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-18T03:11:19.779542"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-18T03:11:19.779542"}}
+/type/author /authors/OL10456082A 1 2022-06-18T03:20:50.508293 {"type": {"key": "/type/author"}, "name": "Douglas Summerville", "key": "/authors/OL10456082A", "source_records": ["bwb:9783031797965"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-18T03:20:50.508293"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-18T03:20:50.508293"}}
+/type/author /authors/OL10456921A 1 2022-06-18T04:22:29.735239 {"type": {"key": "/type/author"}, "name": "Beryl H. Brubaker", "key": "/authors/OL10456921A", "source_records": ["bwb:9780585262536"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-18T04:22:29.735239"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-18T04:22:29.735239"}}
+/type/author /authors/OL10457556A 1 2022-06-18T08:04:57.984240 {"type": {"key": "/type/author"}, "name": "Nunzio Barbera", "key": "/authors/OL10457556A", "source_records": ["bwb:9781934597385"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-18T08:04:57.984240"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-18T08:04:57.984240"}}
+/type/author /authors/OL10457847A 1 2022-06-18T09:07:44.812197 {"type": {"key": "/type/author"}, "name": "Rehab Rivers", "key": "/authors/OL10457847A", "source_records": ["bwb:9781452533315"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-18T09:07:44.812197"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-18T09:07:44.812197"}}
+/type/author /authors/OL10458275A 1 2022-06-18T10:11:00.738718 {"type": {"key": "/type/author"}, "name": "Vergil Staff", "key": "/authors/OL10458275A", "source_records": ["bwb:9780486113975"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-18T10:11:00.738718"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-18T10:11:00.738718"}}
+/type/author /authors/OL1045841A 2 2008-08-19T23:11:15.533736 {"name": "Sten V. Wa\u030angstedt", "personal_name": "Sten V. Wa\u030angstedt", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T23:11:15.533736"}, "key": "/authors/OL1045841A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10458475A 1 2022-06-18T10:46:06.135023 {"type": {"key": "/type/author"}, "name": "John C.L. Sparkes", "key": "/authors/OL10458475A", "source_records": ["bwb:9780486136561"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-18T10:46:06.135023"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-18T10:46:06.135023"}}
+/type/author /authors/OL10458640A 1 2022-06-18T11:11:21.125470 {"type": {"key": "/type/author"}, "name": "Paulo Cezar Carvalho", "key": "/authors/OL10458640A", "source_records": ["bwb:9781598295634"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-18T11:11:21.125470"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-18T11:11:21.125470"}}
+/type/author /authors/OL1045883A 1 2008-04-01T03:28:50.625462 {"name": "Advanced Business Law Seminar (16th 1985 Richmond, Va.)", "last_modified": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "key": "/authors/OL1045883A", "type": {"key": "/type/author"}, "revision": 1}
+/type/author /authors/OL10459435A 1 2022-06-18T13:39:52.463164 {"type": {"key": "/type/author"}, "name": "Gaia Shawna Morrissette", "key": "/authors/OL10459435A", "source_records": ["bwb:9781452595122"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-18T13:39:52.463164"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-18T13:39:52.463164"}}
+/type/author /authors/OL1045968A 1 2008-04-01T03:28:50.625462 {"name": "South West Africa Archives Depot.", "last_modified": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "key": "/authors/OL1045968A", "type": {"key": "/type/author"}, "revision": 1}
+/type/author /authors/OL10459804A 1 2022-06-18T14:17:13.298809 {"type": {"key": "/type/author"}, "name": "Tanna Marshall", "key": "/authors/OL10459804A", "source_records": ["bwb:9781452522180"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-18T14:17:13.298809"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-18T14:17:13.298809"}}
+/type/author /authors/OL10460139A 1 2022-06-18T14:49:16.169739 {"type": {"key": "/type/author"}, "name": "Nora Aharonian", "key": "/authors/OL10460139A", "source_records": ["bwb:9781504329200"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-18T14:49:16.169739"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-18T14:49:16.169739"}}
+/type/author /authors/OL10460323A 1 2022-06-18T15:00:00.175564 {"type": {"key": "/type/author"}, "name": "George Andre", "key": "/authors/OL10460323A", "source_records": ["bwb:9781925209792"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-18T15:00:00.175564"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-18T15:00:00.175564"}}
+/type/author /authors/OL10460558A 1 2022-06-18T15:16:25.274820 {"type": {"key": "/type/author"}, "name": "Jerri Lynn Hogg", "key": "/authors/OL10460558A", "source_records": ["bwb:9781609383787"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-18T15:16:25.274820"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-18T15:16:25.274820"}}
+/type/author /authors/OL10460930A 1 2022-06-18T15:45:28.557946 {"type": {"key": "/type/author"}, "name": "Kelly Gunzehauser", "key": "/authors/OL10460930A", "source_records": ["bwb:9781634719025"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-18T15:45:28.557946"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-18T15:45:28.557946"}}
+/type/author /authors/OL10462388A 1 2022-06-18T18:04:27.534517 {"type": {"key": "/type/author"}, "name": "Robert O. Whyte", "key": "/authors/OL10462388A", "source_records": ["bwb:9789814377461"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-18T18:04:27.534517"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-18T18:04:27.534517"}}
+/type/author /authors/OL10463064A 1 2022-06-18T19:18:23.340631 {"type": {"key": "/type/author"}, "name": "Christopher C. Wagner", "key": "/authors/OL10463064A", "source_records": ["bwb:9781462534166"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-18T19:18:23.340631"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-18T19:18:23.340631"}}
+/type/author /authors/OL10463111A 1 2022-06-18T19:23:45.256869 {"type": {"key": "/type/author"}, "name": "Hans-Erhard Sulanke", "key": "/authors/OL10463111A", "source_records": ["bwb:9783428031887"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-18T19:23:45.256869"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-18T19:23:45.256869"}}
+/type/author /authors/OL10463266A 1 2022-06-18T19:31:33.297999 {"type": {"key": "/type/author"}, "name": "Edward Hocker", "key": "/authors/OL10463266A", "source_records": ["bwb:9781620062982"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-18T19:31:33.297999"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-18T19:31:33.297999"}}
+/type/author /authors/OL10463384A 1 2022-06-18T19:40:31.423678 {"type": {"key": "/type/author"}, "name": "Lucia Gaschick", "key": "/authors/OL10463384A", "source_records": ["bwb:9783848755455"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-18T19:40:31.423678"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-18T19:40:31.423678"}}
+/type/author /authors/OL10463535A 1 2022-06-18T19:49:58.314009 {"type": {"key": "/type/author"}, "name": "Patrulla Canina", "key": "/authors/OL10463535A", "source_records": ["bwb:9781503732896"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-18T19:49:58.314009"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-18T19:49:58.314009"}}
+/type/author /authors/OL10463625A 1 2022-06-18T19:55:45.490991 {"type": {"key": "/type/author"}, "name": "Donald D. Doxsee", "key": "/authors/OL10463625A", "source_records": ["bwb:9781949478129"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-18T19:55:45.490991"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-18T19:55:45.490991"}}
+/type/author /authors/OL10464309A 1 2022-06-18T20:57:16.752612 {"type": {"key": "/type/author"}, "name": "Morgan Everhart", "key": "/authors/OL10464309A", "source_records": ["bwb:9781890327064"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-18T20:57:16.752612"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-18T20:57:16.752612"}}
+/type/author /authors/OL10464522A 1 2022-06-18T21:13:06.247884 {"type": {"key": "/type/author"}, "name": "Gerald Passedat", "key": "/authors/OL10464522A", "source_records": ["bwb:9782080203953"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-18T21:13:06.247884"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-18T21:13:06.247884"}}
+/type/author /authors/OL10465740A 1 2022-06-18T22:23:40.325182 {"type": {"key": "/type/author"}, "name": "Master Sergeant Trevor D. Brewer", "key": "/authors/OL10465740A", "source_records": ["bwb:9781637584415"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-18T22:23:40.325182"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-18T22:23:40.325182"}}
+/type/author /authors/OL10465838A 1 2022-06-18T22:28:09.624876 {"type": {"key": "/type/author"}, "name": "ACI Committee 301", "key": "/authors/OL10465838A", "source_records": ["bwb:9781641951494"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-18T22:28:09.624876"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-18T22:28:09.624876"}}
+/type/author /authors/OL10466052A 1 2022-06-18T22:41:44.051671 {"type": {"key": "/type/author"}, "name": "Matthew McWhorter", "key": "/authors/OL10466052A", "source_records": ["bwb:9780935372731"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-18T22:41:44.051671"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-18T22:41:44.051671"}}
+/type/author /authors/OL10467015A 1 2022-06-18T23:20:03.109703 {"type": {"key": "/type/author"}, "name": "Cyn", "key": "/authors/OL10467015A", "source_records": ["bwb:9781734280517"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-18T23:20:03.109703"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-18T23:20:03.109703"}}
+/type/author /authors/OL10467161A 1 2022-06-18T23:26:29.695030 {"type": {"key": "/type/author"}, "name": "Rachel Sussman Kaplan", "key": "/authors/OL10467161A", "source_records": ["bwb:9781793640543"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-18T23:26:29.695030"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-18T23:26:29.695030"}}
+/type/author /authors/OL10467270A 1 2022-06-18T23:30:13.338702 {"type": {"key": "/type/author"}, "name": "Kyla Sankey", "key": "/authors/OL10467270A", "source_records": ["bwb:9781538163955"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-18T23:30:13.338702"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-18T23:30:13.338702"}}
+/type/author /authors/OL10467275A 1 2022-06-18T23:30:17.546829 {"type": {"key": "/type/author"}, "name": "Stephen D. Caldes", "key": "/authors/OL10467275A", "source_records": ["bwb:9781793655332"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-18T23:30:17.546829"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-18T23:30:17.546829"}}
+/type/author /authors/OL10467696A 1 2022-06-18T23:48:57.507921 {"type": {"key": "/type/author"}, "name": "Walter Puza", "key": "/authors/OL10467696A", "source_records": ["bwb:9798886273670"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-18T23:48:57.507921"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-18T23:48:57.507921"}}
+/type/author /authors/OL1046779A 2 2008-08-19T23:15:04.609965 {"name": "Nicolo Stolfo", "personal_name": "Nicolo Stolfo", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T23:15:04.609965"}, "key": "/authors/OL1046779A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10468314A 1 2022-06-19T00:06:44.181375 {"type": {"key": "/type/author"}, "name": "Grassi Colorare", "key": "/authors/OL10468314A", "source_records": ["bwb:9798657278248"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T00:06:44.181375"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T00:06:44.181375"}}
+/type/author /authors/OL10468596A 1 2022-06-19T00:16:04.582977 {"type": {"key": "/type/author"}, "name": "Diego Colorare", "key": "/authors/OL10468596A", "source_records": ["bwb:9798656663588"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T00:16:04.582977"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T00:16:04.582977"}}
+/type/author /authors/OL1046897A 1 2008-04-01T03:28:50.625462 {"name": "Italy. Tribunale speciale per la difesa dello Stato.", "last_modified": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "key": "/authors/OL1046897A", "type": {"key": "/type/author"}, "revision": 1}
+/type/author /authors/OL10469303A 1 2022-06-19T00:44:40.126516 {"type": {"key": "/type/author"}, "name": "Erik Collett", "key": "/authors/OL10469303A", "source_records": ["bwb:9798481859002"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T00:44:40.126516"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T00:44:40.126516"}}
+/type/author /authors/OL10469313A 1 2022-06-19T00:44:59.474963 {"type": {"key": "/type/author"}, "name": "yosf books", "key": "/authors/OL10469313A", "source_records": ["bwb:9798433530638"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T00:44:59.474963"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T00:44:59.474963"}}
+/type/author /authors/OL10470106A 1 2022-06-19T01:15:21.809385 {"type": {"key": "/type/author"}, "name": "Emiliano", "key": "/authors/OL10470106A", "source_records": ["bwb:9798802624883"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T01:15:21.809385"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T01:15:21.809385"}}
+/type/author /authors/OL10470434A 1 2022-06-19T01:26:40.923267 {"type": {"key": "/type/author"}, "name": "Felicia Thomas", "key": "/authors/OL10470434A", "source_records": ["bwb:9798801462813"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T01:26:40.923267"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T01:26:40.923267"}}
+/type/author /authors/OL10470588A 1 2022-06-19T01:32:25.540322 {"type": {"key": "/type/author"}, "name": "B. D. Joy Press", "key": "/authors/OL10470588A", "source_records": ["bwb:9798484449019"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T01:32:25.540322"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T01:32:25.540322"}}
+/type/author /authors/OL10470590A 1 2022-06-19T01:32:29.455949 {"type": {"key": "/type/author"}, "name": "Travis Daro", "key": "/authors/OL10470590A", "source_records": ["bwb:9798769263613"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T01:32:29.455949"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T01:32:29.455949"}}
+/type/author /authors/OL10471743A 1 2022-06-19T02:24:44.518552 {"type": {"key": "/type/author"}, "name": "D. J. Hogarth D. J. Hogarth", "key": "/authors/OL10471743A", "source_records": ["bwb:9798453147526"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T02:24:44.518552"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T02:24:44.518552"}}
+/type/author /authors/OL10471934A 1 2022-06-19T02:41:25.281844 {"type": {"key": "/type/author"}, "name": "Sandra Leigh Gable", "key": "/authors/OL10471934A", "source_records": ["bwb:9781633042391"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T02:41:25.281844"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T02:41:25.281844"}}
+/type/author /authors/OL10471942A 1 2022-06-19T02:42:05.037963 {"type": {"key": "/type/author"}, "name": "Andrea Ptacek", "key": "/authors/OL10471942A", "source_records": ["bwb:9781733325523"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T02:42:05.037963"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T02:42:05.037963"}}
+/type/author /authors/OL10472214A 1 2022-06-19T02:50:17.664213 {"type": {"key": "/type/author"}, "name": "P. K. Harmon", "key": "/authors/OL10472214A", "source_records": ["bwb:9781935198505"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T02:50:17.664213"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T02:50:17.664213"}}
+/type/author /authors/OL10472226A 1 2022-06-19T02:50:29.535093 {"type": {"key": "/type/author"}, "name": "Mallory Krall", "key": "/authors/OL10472226A", "source_records": ["bwb:9781627673334"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T02:50:29.535093"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T02:50:29.535093"}}
+/type/author /authors/OL10472449A 1 2022-06-19T02:58:07.192429 {"type": {"key": "/type/author"}, "name": "Tharanga Kumara", "key": "/authors/OL10472449A", "source_records": ["bwb:9798802164310"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T02:58:07.192429"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T02:58:07.192429"}}
+/type/author /authors/OL10472629A 1 2022-06-19T03:06:22.031817 {"type": {"key": "/type/author"}, "name": "skr press", "key": "/authors/OL10472629A", "source_records": ["bwb:9798754372986"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T03:06:22.031817"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T03:06:22.031817"}}
+/type/author /authors/OL10472683A 1 2022-06-19T03:09:28.896627 {"type": {"key": "/type/author"}, "name": "Clara's birdyy publishing", "key": "/authors/OL10472683A", "source_records": ["bwb:9798818076799"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T03:09:28.896627"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T03:09:28.896627"}}
+/type/author /authors/OL10472774A 1 2022-06-19T03:14:22.032681 {"type": {"key": "/type/author"}, "name": "Cameron Liotta", "key": "/authors/OL10472774A", "source_records": ["bwb:9781634320412"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T03:14:22.032681"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T03:14:22.032681"}}
+/type/author /authors/OL10472927A 1 2022-06-19T03:18:39.919258 {"type": {"key": "/type/author"}, "name": "Victorica Monroe", "key": "/authors/OL10472927A", "source_records": ["bwb:9781737711728"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T03:18:39.919258"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T03:18:39.919258"}}
+/type/author /authors/OL10472988A 1 2022-06-19T03:19:45.832717 {"type": {"key": "/type/author"}, "name": "Zexiang Zhang", "key": "/authors/OL10472988A", "source_records": ["bwb:9781664266124"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T03:19:45.832717"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T03:19:45.832717"}}
+/type/author /authors/OL10473189A 1 2022-06-19T03:26:18.317117 {"type": {"key": "/type/author"}, "name": "Michele Labella", "key": "/authors/OL10473189A", "source_records": ["bwb:9798762355377"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T03:26:18.317117"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T03:26:18.317117"}}
+/type/author /authors/OL10473243A 1 2022-06-19T03:28:21.635518 {"type": {"key": "/type/author"}, "name": "Arnaud TRANSON", "key": "/authors/OL10473243A", "source_records": ["bwb:9798814205780"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T03:28:21.635518"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T03:28:21.635518"}}
+/type/author /authors/OL10473496A 1 2022-06-19T03:39:51.853476 {"type": {"key": "/type/author"}, "name": "Sherwood Cost", "key": "/authors/OL10473496A", "source_records": ["bwb:9798549526730"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T03:39:51.853476"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T03:39:51.853476"}}
+/type/author /authors/OL10473741A 1 2022-06-19T03:53:24.997977 {"type": {"key": "/type/author"}, "name": "Pauline Evans-Gillislee", "key": "/authors/OL10473741A", "source_records": ["bwb:9780982781449"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T03:53:24.997977"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T03:53:24.997977"}}
+/type/author /authors/OL10473826A 1 2022-06-19T03:55:10.806758 {"type": {"key": "/type/author"}, "name": "Lomasi Laine", "key": "/authors/OL10473826A", "source_records": ["bwb:9798986367309"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T03:55:10.806758"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T03:55:10.806758"}}
+/type/author /authors/OL10473989A 1 2022-06-19T03:59:49.212906 {"type": {"key": "/type/author"}, "name": "Publishing dwetx", "key": "/authors/OL10473989A", "source_records": ["bwb:9798810894216"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T03:59:49.212906"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T03:59:49.212906"}}
+/type/author /authors/OL10474008A 1 2022-06-19T04:00:15.339133 {"type": {"key": "/type/author"}, "name": "Maverick HOPKINS", "key": "/authors/OL10474008A", "source_records": ["bwb:9798435981841"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T04:00:15.339133"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T04:00:15.339133"}}
+/type/author /authors/OL10474213A 1 2022-06-19T04:06:39.223929 {"type": {"key": "/type/author"}, "name": "Arya Cheeze", "key": "/authors/OL10474213A", "source_records": ["bwb:9798815947368"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T04:06:39.223929"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T04:06:39.223929"}}
+/type/author /authors/OL10474385A 1 2022-06-19T04:12:46.632488 {"type": {"key": "/type/author"}, "name": "Syed Martin", "key": "/authors/OL10474385A", "source_records": ["bwb:9798404271119"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T04:12:46.632488"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T04:12:46.632488"}}
+/type/author /authors/OL10474486A 1 2022-06-19T04:16:03.334269 {"type": {"key": "/type/author"}, "name": "M. T. Flag Edition", "key": "/authors/OL10474486A", "source_records": ["bwb:9798646430053"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T04:16:03.334269"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T04:16:03.334269"}}
+/type/author /authors/OL10474723A 1 2022-06-19T04:23:40.855752 {"type": {"key": "/type/author"}, "name": "O. Henry O. Henry", "key": "/authors/OL10474723A", "source_records": ["bwb:9798412102900"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T04:23:40.855752"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T04:23:40.855752"}}
+/type/author /authors/OL10474969A 1 2022-06-19T04:30:59.268848 {"type": {"key": "/type/author"}, "name": "Anne Verhelst", "key": "/authors/OL10474969A", "source_records": ["bwb:9789403548418"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T04:30:59.268848"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T04:30:59.268848"}}
+/type/author /authors/OL10475030A 1 2022-06-19T04:32:25.239351 {"type": {"key": "/type/author"}, "name": "Ari Zeiger", "key": "/authors/OL10475030A", "source_records": ["bwb:9798986325217"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T04:32:25.239351"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T04:32:25.239351"}}
+/type/author /authors/OL10475104A 1 2022-06-19T04:33:57.067131 {"type": {"key": "/type/author"}, "name": "T. a Sperry", "key": "/authors/OL10475104A", "source_records": ["bwb:9798809948029"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T04:33:57.067131"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T04:33:57.067131"}}
+/type/author /authors/OL1047521A 1 2008-04-01T03:28:50.625462 {"name": "Ma\u0301rquez, Enrique", "personal_name": "Ma\u0301rquez, Enrique", "last_modified": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "key": "/authors/OL1047521A", "birth_date": "1952", "type": {"key": "/type/author"}, "revision": 1}
+/type/author /authors/OL10475270A 1 2022-06-19T04:39:49.652298 {"type": {"key": "/type/author"}, "name": "Clothilde PAQUIER", "key": "/authors/OL10475270A", "source_records": ["bwb:9798415016228"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T04:39:49.652298"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T04:39:49.652298"}}
+/type/author /authors/OL10475316A 1 2022-06-19T04:41:46.430790 {"type": {"key": "/type/author"}, "name": "Finn cuty publishing", "key": "/authors/OL10475316A", "source_records": ["bwb:9798585741555"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T04:41:46.430790"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T04:41:46.430790"}}
+/type/author /authors/OL10475323A 1 2022-06-19T04:42:06.299629 {"type": {"key": "/type/author"}, "name": "Yekta Kop\u00e1n", "key": "/authors/OL10475323A", "source_records": ["bwb:9798803467601"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T04:42:06.299629"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T04:42:06.299629"}}
+/type/author /authors/OL10475954A 1 2022-06-19T05:29:34.133842 {"type": {"key": "/type/author"}, "name": "Tobias Rader", "key": "/authors/OL10475954A", "source_records": ["bwb:9798811438822"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T05:29:34.133842"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T05:29:34.133842"}}
+/type/author /authors/OL1047608A 2 2008-08-19T23:17:51.440621 {"name": "Aime\u0301 Coulaudon", "personal_name": "Aime\u0301 Coulaudon", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T23:17:51.440621"}, "key": "/authors/OL1047608A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10476303A 1 2022-06-19T05:45:06.667444 {"type": {"key": "/type/author"}, "name": "Patricia Rumbel", "key": "/authors/OL10476303A", "source_records": ["bwb:9798822035423"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T05:45:06.667444"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T05:45:06.667444"}}
+/type/author /authors/OL10476728A 1 2022-06-19T06:06:01.220006 {"type": {"key": "/type/author"}, "name": "Prophetess Patrice Jacques", "key": "/authors/OL10476728A", "source_records": ["bwb:9781955063784"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T06:06:01.220006"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T06:06:01.220006"}}
+/type/author /authors/OL10476818A 1 2022-06-19T06:08:15.834147 {"type": {"key": "/type/author"}, "name": "Walker P. Smith", "key": "/authors/OL10476818A", "source_records": ["bwb:9780809338955"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T06:08:15.834147"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T06:08:15.834147"}}
+/type/author /authors/OL10476897A 1 2022-06-19T06:11:05.186220 {"type": {"key": "/type/author"}, "name": "David Roseberry", "key": "/authors/OL10476897A", "source_records": ["bwb:9781735846132"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T06:11:05.186220"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T06:11:05.186220"}}
+/type/author /authors/OL10477019A 1 2022-06-19T06:17:35.088851 {"type": {"key": "/type/author"}, "name": "Leonardo Moscato", "key": "/authors/OL10477019A", "source_records": ["bwb:9798746773654"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T06:17:35.088851"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T06:17:35.088851"}}
+/type/author /authors/OL10477314A 1 2022-06-19T06:42:44.960539 {"type": {"key": "/type/author"}, "name": "Andrea Astuto", "key": "/authors/OL10477314A", "source_records": ["bwb:9798828130993"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T06:42:44.960539"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T06:42:44.960539"}}
+/type/author /authors/OL10477400A 1 2022-06-19T06:49:03.559268 {"type": {"key": "/type/author"}, "name": "Hariett Williams", "key": "/authors/OL10477400A", "source_records": ["bwb:9798815271296"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T06:49:03.559268"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T06:49:03.559268"}}
+/type/author /authors/OL10477740A 1 2022-06-19T07:00:17.111365 {"type": {"key": "/type/author"}, "name": "Dreamy Bearr", "key": "/authors/OL10477740A", "source_records": ["bwb:9798433699779"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T07:00:17.111365"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T07:00:17.111365"}}
+/type/author /authors/OL10477747A 1 2022-06-19T07:00:36.823411 {"type": {"key": "/type/author"}, "name": "Jovag JONES", "key": "/authors/OL10477747A", "source_records": ["bwb:9798407596929"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T07:00:36.823411"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T07:00:36.823411"}}
+/type/author /authors/OL1047778A 1 2008-04-01T03:28:50.625462 {"name": "Bartsch, Heinrich", "personal_name": "Bartsch, Heinrich", "last_modified": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "key": "/authors/OL1047778A", "birth_date": "1904", "type": {"key": "/type/author"}, "revision": 1}
+/type/author /authors/OL10477917A 1 2022-06-19T07:06:37.108533 {"type": {"key": "/type/author"}, "name": "53 year old Thank you gifts", "key": "/authors/OL10477917A", "source_records": ["bwb:9798814359766"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T07:06:37.108533"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T07:06:37.108533"}}
+/type/author /authors/OL10478000A 1 2022-06-19T07:10:17.890804 {"type": {"key": "/type/author"}, "name": "Eugy Eugy Sank", "key": "/authors/OL10478000A", "source_records": ["bwb:9798475849118"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T07:10:17.890804"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T07:10:17.890804"}}
+/type/author /authors/OL1047815A 1 2008-04-01T03:28:50.625462 {"name": "Coloquio Nacional de Fotografi\u0301a (1st 1984 Pachuca, Mexico)", "last_modified": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "key": "/authors/OL1047815A", "type": {"key": "/type/author"}, "revision": 1}
+/type/author /authors/OL10478403A 1 2022-06-19T07:25:18.903878 {"type": {"key": "/type/author"}, "name": "Carmen de Burgos", "key": "/authors/OL10478403A", "source_records": ["bwb:9798713533779"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T07:25:18.903878"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T07:25:18.903878"}}
+/type/author /authors/OL10478455A 1 2022-06-19T07:27:37.141350 {"type": {"key": "/type/author"}, "name": "Najzma M. Williams", "key": "/authors/OL10478455A", "source_records": ["bwb:9781737579274"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T07:27:37.141350"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T07:27:37.141350"}}
+/type/author /authors/OL10478874A 1 2022-06-19T07:44:28.374562 {"type": {"key": "/type/author"}, "name": "Mary L. G. Theroux", "key": "/authors/OL10478874A", "source_records": ["bwb:9781598133509"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T07:44:28.374562"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T07:44:28.374562"}}
+/type/author /authors/OL10479417A 1 2022-06-19T08:30:31.085171 {"type": {"key": "/type/author"}, "name": "Valli Ritenour", "key": "/authors/OL10479417A", "source_records": ["bwb:9781956464146"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T08:30:31.085171"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T08:30:31.085171"}}
+/type/author /authors/OL10479451A 1 2022-06-19T08:31:27.330709 {"type": {"key": "/type/author"}, "name": "Matt Sturrock", "key": "/authors/OL10479451A", "source_records": ["bwb:9781989555781"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T08:31:27.330709"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T08:31:27.330709"}}
+/type/author /authors/OL10479851A 1 2022-06-19T08:50:15.570793 {"type": {"key": "/type/author"}, "name": "rayan fly", "key": "/authors/OL10479851A", "source_records": ["bwb:9798415456703"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T08:50:15.570793"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T08:50:15.570793"}}
+/type/author /authors/OL10479883A 1 2022-06-19T08:52:17.206148 {"type": {"key": "/type/author"}, "name": "Dorian DONALDSON", "key": "/authors/OL10479883A", "source_records": ["bwb:9798411137064"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T08:52:17.206148"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T08:52:17.206148"}}
+/type/author /authors/OL10479897A 1 2022-06-19T08:53:07.742709 {"type": {"key": "/type/author"}, "name": "Giovanni Valenzia", "key": "/authors/OL10479897A", "source_records": ["bwb:9798801410500"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T08:53:07.742709"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T08:53:07.742709"}}
+/type/author /authors/OL10479971A 1 2022-06-19T08:56:54.838042 {"type": {"key": "/type/author"}, "name": "Chantal Bastien", "key": "/authors/OL10479971A", "source_records": ["bwb:9798806418082"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T08:56:54.838042"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T08:56:54.838042"}}
+/type/author /authors/OL10480075A 1 2022-06-19T09:02:50.073350 {"type": {"key": "/type/author"}, "name": "Barbara Ann Yoder", "key": "/authors/OL10480075A", "source_records": ["bwb:9798986300115"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T09:02:50.073350"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T09:02:50.073350"}}
+/type/author /authors/OL10480119A 1 2022-06-19T09:04:29.344565 {"type": {"key": "/type/author"}, "name": "Elizabeth Dodge", "key": "/authors/OL10480119A", "source_records": ["bwb:9781954990104"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T09:04:29.344565"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T09:04:29.344565"}}
+/type/author /authors/OL10480192A 1 2022-06-19T09:06:59.003936 {"type": {"key": "/type/author"}, "name": "Steven Mortenson", "key": "/authors/OL10480192A", "source_records": ["bwb:9781793637963"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T09:06:59.003936"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T09:06:59.003936"}}
+/type/author /authors/OL10480215A 1 2022-06-19T09:07:45.595201 {"type": {"key": "/type/author"}, "name": "Emerson Broadnax", "key": "/authors/OL10480215A", "source_records": ["bwb:9798885148528"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T09:07:45.595201"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T09:07:45.595201"}}
+/type/author /authors/OL10480551A 1 2022-06-19T09:31:19.513458 {"type": {"key": "/type/author"}, "name": "Kouki Kouki Okumura", "key": "/authors/OL10480551A", "source_records": ["bwb:9798816016742"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T09:31:19.513458"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T09:31:19.513458"}}
+/type/author /authors/OL10480973A 1 2022-06-19T09:49:29.776869 {"type": {"key": "/type/author"}, "name": "Ravi Raj", "key": "/authors/OL10480973A", "source_records": ["bwb:9798832067629"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T09:49:29.776869"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T09:49:29.776869"}}
+/type/author /authors/OL10481169A 1 2022-06-19T09:58:28.810584 {"type": {"key": "/type/author"}, "name": "Oryginal Tekno", "key": "/authors/OL10481169A", "source_records": ["bwb:9798714366819"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T09:58:28.810584"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T09:58:28.810584"}}
+/type/author /authors/OL10481386A 1 2022-06-19T10:07:31.663455 {"type": {"key": "/type/author"}, "name": "Buch Kolorieren", "key": "/authors/OL10481386A", "source_records": ["bwb:9798622287237"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T10:07:31.663455"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T10:07:31.663455"}}
+/type/author /authors/OL10481674A 1 2022-06-19T10:19:44.480449 {"type": {"key": "/type/author"}, "name": "Emily Hund", "key": "/authors/OL10481674A", "source_records": ["bwb:9780691234076"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T10:19:44.480449"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T10:19:44.480449"}}
+/type/author /authors/OL10481875A 1 2022-06-19T10:27:18.174846 {"type": {"key": "/type/author"}, "name": "Tracy Flowers", "key": "/authors/OL10481875A", "source_records": ["bwb:9798443026367"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T10:27:18.174846"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T10:27:18.174846"}}
+/type/author /authors/OL10481928A 1 2022-06-19T10:29:18.995422 {"type": {"key": "/type/author"}, "name": "Meed GONZA", "key": "/authors/OL10481928A", "source_records": ["bwb:9798801282466"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T10:29:18.995422"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T10:29:18.995422"}}
+/type/author /authors/OL10481951A 1 2022-06-19T10:30:15.466570 {"type": {"key": "/type/author"}, "name": "R. K. Rickson", "key": "/authors/OL10481951A", "source_records": ["bwb:9798534440089"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T10:30:15.466570"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T10:30:15.466570"}}
+/type/author /authors/OL10482049A 1 2022-06-19T10:34:31.600999 {"type": {"key": "/type/author"}, "name": "Lindsay Hargrqve", "key": "/authors/OL10482049A", "source_records": ["bwb:9781954499850"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T10:34:31.600999"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T10:34:31.600999"}}
+/type/author /authors/OL10482060A 1 2022-06-19T10:34:55.913825 {"type": {"key": "/type/author"}, "name": "Greyhound Adoption League of Texas", "key": "/authors/OL10482060A", "source_records": ["bwb:9798985351606"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T10:34:55.913825"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T10:34:55.913825"}}
+/type/author /authors/OL10482157A 1 2022-06-19T10:38:53.519244 {"type": {"key": "/type/author"}, "name": "Argos MacCallum", "key": "/authors/OL10482157A", "source_records": ["bwb:9781639801596"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T10:38:53.519244"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T10:38:53.519244"}}
+/type/author /authors/OL10482331A 1 2022-06-19T10:55:09.464038 {"type": {"key": "/type/author"}, "name": "Ellie Aiden", "key": "/authors/OL10482331A", "source_records": ["bwb:9798487710383"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T10:55:09.464038"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T10:55:09.464038"}}
+/type/author /authors/OL10482562A 1 2022-06-19T11:18:19.772070 {"type": {"key": "/type/author"}, "name": "Helen Yee", "key": "/authors/OL10482562A", "source_records": ["bwb:9798985773804"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T11:18:19.772070"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T11:18:19.772070"}}
+/type/author /authors/OL10482780A 1 2022-06-19T11:27:13.435673 {"type": {"key": "/type/author"}, "name": "Elliot Westbrook", "key": "/authors/OL10482780A", "source_records": ["bwb:9798985465808"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T11:27:13.435673"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T11:27:13.435673"}}
+/type/author /authors/OL10482972A 1 2022-06-19T11:36:53.767768 {"type": {"key": "/type/author"}, "name": "Jeannine Ledoux", "key": "/authors/OL10482972A", "source_records": ["bwb:9798528739939"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T11:36:53.767768"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T11:36:53.767768"}}
+/type/author /authors/OL10483261A 1 2022-06-19T11:51:58.381374 {"type": {"key": "/type/author"}, "name": "Caro Asercion", "key": "/authors/OL10483261A", "source_records": ["bwb:9781951419813"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T11:51:58.381374"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T11:51:58.381374"}}
+/type/author /authors/OL10483338A 1 2022-06-19T11:54:34.810694 {"type": {"key": "/type/author"}, "name": "Jean Mpi", "key": "/authors/OL10483338A", "source_records": ["bwb:9781637461402"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T11:54:34.810694"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T11:54:34.810694"}}
+/type/author /authors/OL10483345A 1 2022-06-19T11:54:57.575919 {"type": {"key": "/type/author"}, "name": "Beverly Brown Brown", "key": "/authors/OL10483345A", "source_records": ["bwb:9781735610214"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T11:54:57.575919"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T11:54:57.575919"}}
+/type/author /authors/OL10483505A 1 2022-06-19T12:05:10.194407 {"type": {"key": "/type/author"}, "name": "Esse Desiderio", "key": "/authors/OL10483505A", "source_records": ["bwb:9798448607530"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T12:05:10.194407"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T12:05:10.194407"}}
+/type/author /authors/OL10483572A 1 2022-06-19T12:10:34.406329 {"type": {"key": "/type/author"}, "name": "Denise Nordin", "key": "/authors/OL10483572A", "source_records": ["bwb:9798804675418"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T12:10:34.406329"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T12:10:34.406329"}}
+/type/author /authors/OL10483620A 1 2022-06-19T12:15:06.323708 {"type": {"key": "/type/author"}, "name": "Jusmine Ken", "key": "/authors/OL10483620A", "source_records": ["bwb:9798417225628"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T12:15:06.323708"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T12:15:06.323708"}}
+/type/author /authors/OL10483637A 1 2022-06-19T12:17:37.920561 {"type": {"key": "/type/author"}, "name": "Karen Taffer", "key": "/authors/OL10483637A", "source_records": ["bwb:9798829697648"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T12:17:37.920561"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T12:17:37.920561"}}
+/type/author /authors/OL10483937A 1 2022-06-19T12:38:23.372582 {"type": {"key": "/type/author"}, "name": "Susan LeVan-Green", "key": "/authors/OL10483937A", "source_records": ["bwb:9781734048520"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T12:38:23.372582"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T12:38:23.372582"}}
+/type/author /authors/OL10484107A 1 2022-06-19T12:47:10.393976 {"type": {"key": "/type/author"}, "name": "Graziela Le\u00e3o", "key": "/authors/OL10484107A", "source_records": ["bwb:9798828670710"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T12:47:10.393976"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T12:47:10.393976"}}
+/type/author /authors/OL10484803A 1 2022-06-19T13:18:24.135752 {"type": {"key": "/type/author"}, "name": "Ajdoz Day Guided", "key": "/authors/OL10484803A", "source_records": ["bwb:9798805370312"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T13:18:24.135752"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T13:18:24.135752"}}
+/type/author /authors/OL10484819A 1 2022-06-19T13:19:07.396551 {"type": {"key": "/type/author"}, "name": "Martha Malbuch", "key": "/authors/OL10484819A", "source_records": ["bwb:9798656311748"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T13:19:07.396551"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T13:19:07.396551"}}
+/type/author /authors/OL10484856A 1 2022-06-19T13:20:24.368228 {"type": {"key": "/type/author"}, "name": "Carlotta Malbuch", "key": "/authors/OL10484856A", "source_records": ["bwb:9798657022605"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T13:20:24.368228"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T13:20:24.368228"}}
+/type/author /authors/OL10485023A 1 2022-06-19T13:27:33.295538 {"type": {"key": "/type/author"}, "name": "David Zvi Kalman", "key": "/authors/OL10485023A", "source_records": ["bwb:9781951324032"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T13:27:33.295538"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T13:27:33.295538"}}
+/type/author /authors/OL10485276A 1 2022-06-19T13:44:58.787054 {"type": {"key": "/type/author"}, "name": "Ieysha Walker", "key": "/authors/OL10485276A", "source_records": ["bwb:9798420179574"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T13:44:58.787054"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T13:44:58.787054"}}
+/type/author /authors/OL10485593A 1 2022-06-19T14:15:24.790441 {"type": {"key": "/type/author"}, "name": "Aanya Negi", "key": "/authors/OL10485593A", "source_records": ["bwb:9798218007171"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T14:15:24.790441"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T14:15:24.790441"}}
+/type/author /authors/OL10485621A 1 2022-06-19T14:17:46.736805 {"type": {"key": "/type/author"}, "name": "Dahlia Hart", "key": "/authors/OL10485621A", "source_records": ["bwb:9798218007706"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T14:17:46.736805"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T14:17:46.736805"}}
+/type/author /authors/OL10485895A 1 2022-06-19T14:33:55.426595 {"type": {"key": "/type/author"}, "name": "Chuck Chuck Howard", "key": "/authors/OL10485895A", "source_records": ["bwb:9798815025158"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T14:33:55.426595"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T14:33:55.426595"}}
+/type/author /authors/OL10486470A 1 2022-06-19T15:10:24.622744 {"type": {"key": "/type/author"}, "name": "Amber Adcock", "key": "/authors/OL10486470A", "source_records": ["bwb:9798824140613"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T15:10:24.622744"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T15:10:24.622744"}}
+/type/author /authors/OL10486526A 1 2022-06-19T15:13:46.451996 {"type": {"key": "/type/author"}, "name": "Steve Zoltek", "key": "/authors/OL10486526A", "source_records": ["bwb:9798469727361"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T15:13:46.451996"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T15:13:46.451996"}}
+/type/author /authors/OL10486527A 1 2022-06-19T15:13:54.893050 {"type": {"key": "/type/author"}, "name": "M. I. X. COLOR", "key": "/authors/OL10486527A", "source_records": ["bwb:9798795404752"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T15:13:54.893050"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T15:13:54.893050"}}
+/type/author /authors/OL10487252A 1 2022-06-19T15:54:36.438076 {"type": {"key": "/type/author"}, "name": "Biryani Hunting Log Book", "key": "/authors/OL10487252A", "source_records": ["bwb:9798447587512"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T15:54:36.438076"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T15:54:36.438076"}}
+/type/author /authors/OL10487620A 1 2022-06-19T16:10:28.051566 {"type": {"key": "/type/author"}, "name": "Richard J. Samworth", "key": "/authors/OL10487620A", "source_records": ["bwb:9781638280040"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T16:10:28.051566"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T16:10:28.051566"}}
+/type/author /authors/OL1048763A 2 2008-08-19T23:22:09.830077 {"name": "Santinho Furtado", "personal_name": "Santinho Furtado", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T23:22:09.830077"}, "key": "/authors/OL1048763A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL1048792A 2 2008-08-19T23:22:16.68566 {"name": "Per-\u00d8ivind Sandberg", "personal_name": "Per-\u00d8ivind Sandberg", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T23:22:16.68566"}, "key": "/authors/OL1048792A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10488046A 1 2022-06-19T16:31:16.385571 {"type": {"key": "/type/author"}, "name": "V. Book Company KIDS", "key": "/authors/OL10488046A", "source_records": ["bwb:9798807759733"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T16:31:16.385571"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T16:31:16.385571"}}
+/type/author /authors/OL10488316A 1 2022-06-19T17:06:14.029789 {"type": {"key": "/type/author"}, "name": "Sushma Tirunagari", "key": "/authors/OL10488316A", "source_records": ["bwb:9798500554796"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T17:06:14.029789"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T17:06:14.029789"}}
+/type/author /authors/OL10488550A 1 2022-06-19T17:21:57.406833 {"type": {"key": "/type/author"}, "name": "Uruguay Calendar", "key": "/authors/OL10488550A", "source_records": ["bwb:9798811790968"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T17:21:57.406833"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T17:21:57.406833"}}
+/type/author /authors/OL10488620A 1 2022-06-19T17:26:18.765677 {"type": {"key": "/type/author"}, "name": "Ross's birdyy publishing", "key": "/authors/OL10488620A", "source_records": ["bwb:9798817931679"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T17:26:18.765677"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T17:26:18.765677"}}
+/type/author /authors/OL10488748A 1 2022-06-19T17:35:57.333335 {"type": {"key": "/type/author"}, "name": "The Organized Boss", "key": "/authors/OL10488748A", "source_records": ["bwb:9798808474666"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T17:35:57.333335"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T17:35:57.333335"}}
+/type/author /authors/OL10488814A 1 2022-06-19T17:39:39.618297 {"type": {"key": "/type/author"}, "name": "Sanders ANESSA", "key": "/authors/OL10488814A", "source_records": ["bwb:9798789262467"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T17:39:39.618297"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T17:39:39.618297"}}
+/type/author /authors/OL10489419A 1 2022-06-19T18:38:03.165456 {"type": {"key": "/type/author"}, "name": "Hak Lee", "key": "/authors/OL10489419A", "source_records": ["bwb:9781684970971"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T18:38:03.165456"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T18:38:03.165456"}}
+/type/author /authors/OL1048960A 2 2008-08-19T23:22:53.132647 {"name": "Kalki Kaal Bhairav", "personal_name": "Kalki Kaal Bhairav", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T23:22:53.132647"}, "key": "/authors/OL1048960A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10489887A 1 2022-06-19T18:59:51.997608 {"type": {"key": "/type/author"}, "name": "Lahcen Idar", "key": "/authors/OL10489887A", "source_records": ["bwb:9798434078177"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T18:59:51.997608"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T18:59:51.997608"}}
+/type/author /authors/OL10489935A 1 2022-06-19T19:02:03.180000 {"type": {"key": "/type/author"}, "name": "Lumber Fishing Log Book", "key": "/authors/OL10489935A", "source_records": ["bwb:9798434563833"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T19:02:03.180000"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T19:02:03.180000"}}
+/type/author /authors/OL1048999A 2 2008-08-19T23:23:05.644174 {"name": "Marina Tomassini", "personal_name": "Marina Tomassini", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T23:23:05.644174"}, "key": "/authors/OL1048999A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10490085A 1 2022-06-19T19:10:10.011612 {"type": {"key": "/type/author"}, "name": "Arnold A. Vaughn", "key": "/authors/OL10490085A", "source_records": ["bwb:9798824807011"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T19:10:10.011612"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T19:10:10.011612"}}
+/type/author /authors/OL10490104A 1 2022-06-19T19:11:09.977672 {"type": {"key": "/type/author"}, "name": "Sell Homes Hunting Log Book", "key": "/authors/OL10490104A", "source_records": ["bwb:9798446460809"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T19:11:09.977672"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T19:11:09.977672"}}
+/type/author /authors/OL10490604A 1 2022-06-19T19:39:11.637635 {"type": {"key": "/type/author"}, "name": "KeMing Chen", "key": "/authors/OL10490604A", "source_records": ["bwb:9781957235219"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T19:39:11.637635"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T19:39:11.637635"}}
+/type/author /authors/OL10490786A 1 2022-06-19T19:58:56.324238 {"type": {"key": "/type/author"}, "name": "Sailor Moon Crystal Calender", "key": "/authors/OL10490786A", "source_records": ["bwb:9798422343287"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T19:58:56.324238"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T19:58:56.324238"}}
+/type/author /authors/OL10491096A 1 2022-06-19T20:27:51.260509 {"type": {"key": "/type/author"}, "name": "Catherine Bodnar", "key": "/authors/OL10491096A", "source_records": ["bwb:9781957184104"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T20:27:51.260509"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T20:27:51.260509"}}
+/type/author /authors/OL10491131A 1 2022-06-19T20:29:49.853166 {"type": {"key": "/type/author"}, "name": "TongeTastic Tales", "key": "/authors/OL10491131A", "source_records": ["bwb:9798827452041"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T20:29:49.853166"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T20:29:49.853166"}}
+/type/author /authors/OL10491169A 1 2022-06-19T20:32:25.877247 {"type": {"key": "/type/author"}, "name": "Arthur Mc Teackers", "key": "/authors/OL10491169A", "source_records": ["bwb:9798823644679"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T20:32:25.877247"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T20:32:25.877247"}}
+/type/author /authors/OL10491202A 1 2022-06-19T20:34:24.228830 {"type": {"key": "/type/author"}, "name": "Julien Laoche", "key": "/authors/OL10491202A", "source_records": ["bwb:9798427925082"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T20:34:24.228830"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T20:34:24.228830"}}
+/type/author /authors/OL10491533A 1 2022-06-19T20:58:32.163122 {"type": {"key": "/type/author"}, "name": "Owen Schoenhofen", "key": "/authors/OL10491533A", "source_records": ["bwb:9781649944436"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T20:58:32.163122"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T20:58:32.163122"}}
+/type/author /authors/OL10491770A 1 2022-06-19T21:16:46.593951 {"type": {"key": "/type/author"}, "name": "Xeniya Zagor", "key": "/authors/OL10491770A", "source_records": ["bwb:9798818914503"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T21:16:46.593951"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T21:16:46.593951"}}
+/type/author /authors/OL10491959A 1 2022-06-19T21:33:07.451232 {"type": {"key": "/type/author"}, "name": "Andra Vltav\u00edn", "key": "/authors/OL10491959A", "source_records": ["bwb:9781733824682"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T21:33:07.451232"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T21:33:07.451232"}}
+/type/author /authors/OL10492041A 1 2022-06-19T21:36:31.815148 {"type": {"key": "/type/author"}, "name": "Jan Koch", "key": "/authors/OL10492041A", "source_records": ["bwb:9781957255057"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T21:36:31.815148"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T21:36:31.815148"}}
+/type/author /authors/OL1049213A 2 2008-08-19T23:23:48.60385 {"name": "Conrado Alonso", "personal_name": "Conrado Alonso", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T23:23:48.60385"}, "key": "/authors/OL1049213A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10492238A 1 2022-06-19T21:46:08.753086 {"type": {"key": "/type/author"}, "name": "Meme Road Trip Log Book", "key": "/authors/OL10492238A", "source_records": ["bwb:9798438137511"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T21:46:08.753086"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T21:46:08.753086"}}
+/type/author /authors/OL10492291A 1 2022-06-19T21:50:35.585005 {"type": {"key": "/type/author"}, "name": "Xaverio Javier Munoz Bullejos", "key": "/authors/OL10492291A", "source_records": ["bwb:9781081281465"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T21:50:35.585005"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T21:50:35.585005"}}
+/type/author /authors/OL10492319A 1 2022-06-19T21:52:11.667937 {"type": {"key": "/type/author"}, "name": "Mine Pi Road Trip Log Book", "key": "/authors/OL10492319A", "source_records": ["bwb:9798441785112"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T21:52:11.667937"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T21:52:11.667937"}}
+/type/author /authors/OL10492415A 1 2022-06-19T21:57:02.547681 {"type": {"key": "/type/author"}, "name": "Stormi Corinne", "key": "/authors/OL10492415A", "source_records": ["bwb:9798829967680"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T21:57:02.547681"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T21:57:02.547681"}}
+/type/author /authors/OL10492567A 1 2022-06-19T22:05:10.453890 {"type": {"key": "/type/author"}, "name": "86 year old Diabetis Diary", "key": "/authors/OL10492567A", "source_records": ["bwb:9798804093526"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T22:05:10.453890"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T22:05:10.453890"}}
+/type/author /authors/OL10492951A 1 2022-06-19T22:26:35.937709 {"type": {"key": "/type/author"}, "name": "Joy Pitner", "key": "/authors/OL10492951A", "source_records": ["bwb:9781955492898"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T22:26:35.937709"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T22:26:35.937709"}}
+/type/author /authors/OL10493129A 1 2022-06-19T22:43:08.561351 {"type": {"key": "/type/author"}, "name": "Manuel Ant\u00f4nio de Almeida", "key": "/authors/OL10493129A", "source_records": ["bwb:9798513109662"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T22:43:08.561351"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T22:43:08.561351"}}
+/type/author /authors/OL10493258A 1 2022-06-19T22:56:34.532611 {"type": {"key": "/type/author"}, "name": "riki sang", "key": "/authors/OL10493258A", "source_records": ["bwb:9798437610039"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T22:56:34.532611"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T22:56:34.532611"}}
+/type/author /authors/OL1049350A 2 2008-08-19T23:24:31.140344 {"name": "Traugott Haefeli-Meylan", "personal_name": "Traugott Haefeli-Meylan", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T23:24:31.140344"}, "key": "/authors/OL1049350A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10493828A 1 2022-06-19T23:41:16.600140 {"type": {"key": "/type/author"}, "name": "Lamiae Antoinette(tm)", "key": "/authors/OL10493828A", "source_records": ["bwb:9798813552717"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T23:41:16.600140"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T23:41:16.600140"}}
+/type/author /authors/OL10493867A 1 2022-06-19T23:43:29.548418 {"type": {"key": "/type/author"}, "name": "Manassas Campgrounds Church of God", "key": "/authors/OL10493867A", "source_records": ["bwb:9781643382661"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T23:43:29.548418"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T23:43:29.548418"}}
+/type/author /authors/OL10493995A 1 2022-06-19T23:51:01.492477 {"type": {"key": "/type/author"}, "name": "Shila Russell", "key": "/authors/OL10493995A", "source_records": ["bwb:9798986349701"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-19T23:51:01.492477"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-19T23:51:01.492477"}}
+/type/author /authors/OL10494113A 1 2022-06-20T00:01:23.373937 {"type": {"key": "/type/author"}, "name": "Carrol Tilford", "key": "/authors/OL10494113A", "source_records": ["bwb:9798514430505"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-20T00:01:23.373937"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-20T00:01:23.373937"}}
+/type/author /authors/OL10494167A 1 2022-06-20T00:06:42.425425 {"type": {"key": "/type/author"}, "name": "Dott JEFFERY", "key": "/authors/OL10494167A", "source_records": ["bwb:9798768514167"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-20T00:06:42.425425"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-20T00:06:42.425425"}}
+/type/author /authors/OL10494342A 1 2022-06-20T00:26:34.214773 {"type": {"key": "/type/author"}, "name": "Wendy McCullough", "key": "/authors/OL10494342A", "source_records": ["bwb:9798986356501"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-20T00:26:34.214773"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-20T00:26:34.214773"}}
+/type/author /authors/OL10494368A 1 2022-06-20T00:29:33.768381 {"type": {"key": "/type/author"}, "name": "James P. Shanahan", "key": "/authors/OL10494368A", "source_records": ["bwb:9781667846309"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-20T00:29:33.768381"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-20T00:29:33.768381"}}
+/type/author /authors/OL10494484A 1 2022-06-20T00:42:31.502112 {"type": {"key": "/type/author"}, "name": "Lindsey Kannas", "key": "/authors/OL10494484A", "source_records": ["bwb:9798818976716"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-20T00:42:31.502112"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-20T00:42:31.502112"}}
+/type/author /authors/OL10494499A 1 2022-06-20T00:43:15.185213 {"type": {"key": "/type/author"}, "name": "Javier L\u00f3pez-D\u00edaz", "key": "/authors/OL10494499A", "source_records": ["bwb:9798831754872"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-20T00:43:15.185213"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-20T00:43:15.185213"}}
+/type/author /authors/OL10494639A 1 2022-06-20T00:50:57.933780 {"type": {"key": "/type/author"}, "name": "Hannah Sterling", "key": "/authors/OL10494639A", "source_records": ["bwb:9798827057994"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-20T00:50:57.933780"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-20T00:50:57.933780"}}
+/type/author /authors/OL10494720A 1 2022-06-20T00:55:44.936031 {"type": {"key": "/type/author"}, "name": "Triathlon Road Trip Log Book", "key": "/authors/OL10494720A", "source_records": ["bwb:9798440225992"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-20T00:55:44.936031"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-20T00:55:44.936031"}}
+/type/author /authors/OL10495045A 1 2022-06-20T01:12:14.575592 {"type": {"key": "/type/author"}, "name": "Alexa Spadafora", "key": "/authors/OL10495045A", "source_records": ["bwb:9781737372110"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-20T01:12:14.575592"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-20T01:12:14.575592"}}
+/type/author /authors/OL10495088A 1 2022-06-20T01:20:09.770878 {"type": {"key": "/type/author"}, "name": "H. L. Eldin", "personal_name": "H. L. Eldin", "key": "/authors/OL10495088A", "source_records": ["ia:treeswoodsman0000eldi"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-20T01:20:09.770878"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-20T01:20:09.770878"}}
+/type/author /authors/OL10495187A 1 2022-06-20T02:03:44.995085 {"type": {"key": "/type/author"}, "name": "Suresh Padmanabhan", "personal_name": "Suresh Padmanabhan", "birth_date": "1968", "key": "/authors/OL10495187A", "source_records": ["ia:marovahalopaisoi0000sure"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-20T02:03:44.995085"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-20T02:03:44.995085"}}
+/type/author /authors/OL10495416A 1 2022-06-20T03:37:35.680198 {"type": {"key": "/type/author"}, "name": "Christopher Bevan", "personal_name": "Christopher Bevan", "birth_date": "1957", "key": "/authors/OL10495416A", "source_records": ["ia:kinchelaboy0000beva"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-20T03:37:35.680198"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-20T03:37:35.680198"}}
+/type/author /authors/OL10495470A 1 2022-06-20T04:11:12.753908 {"type": {"key": "/type/author"}, "name": "Annet Huizing", "personal_name": "Annet Huizing", "birth_date": "1960", "key": "/authors/OL10495470A", "source_records": ["ia:commentjaiecritu0000huiz"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-20T04:11:12.753908"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-20T04:11:12.753908"}}
+/type/author /authors/OL10495472A 1 2022-06-20T04:12:18.167187 {"type": {"key": "/type/author"}, "name": "Rebecca Zimmerman", "personal_name": "Rebecca Zimmerman", "key": "/authors/OL10495472A", "source_records": ["ia:beyonddarkness0000zimm"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-20T04:12:18.167187"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-20T04:12:18.167187"}}
+/type/author /authors/OL10495760A 1 2022-06-20T06:18:11.399599 {"type": {"key": "/type/author"}, "name": "Sjaak van der Velden", "personal_name": "Sjaak van der Velden", "birth_date": "1954", "key": "/authors/OL10495760A", "source_records": ["ia:woordenindestrij0000unse"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-20T06:18:11.399599"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-20T06:18:11.399599"}}
+/type/author /authors/OL10495788A 1 2022-06-20T06:29:15.344495 {"type": {"key": "/type/author"}, "name": "Amita Kum\u0101ra (Software engineer)", "title": "(Software engineer)", "personal_name": "Amita Kum\u0101ra", "key": "/authors/OL10495788A", "source_records": ["ia:ekaaisijagahajod0000amit"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-20T06:29:15.344495"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-20T06:29:15.344495"}}
+/type/author /authors/OL10496145A 1 2022-06-21T04:38:57.734033 {"type": {"key": "/type/author"}, "name": "Dmitri? Balashov", "personal_name": "Dmitri? Balashov", "key": "/authors/OL10496145A", "source_records": ["ia:moskovskiitron0000bala"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-21T04:38:57.734033"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-21T04:38:57.734033"}}
+/type/author /authors/OL10496282A 1 2022-06-21T05:22:53.702180 {"type": {"key": "/type/author"}, "name": "Mu\u1e25ammad Sal\u012bm al-Ra\u1e25m\u0101n", "personal_name": "Mu\u1e25ammad Sal\u012bm al-Ra\u1e25m\u0101n", "key": "/authors/OL10496282A", "source_records": ["ia:sindbadjehazi0000alra"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-21T05:22:53.702180"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-21T05:22:53.702180"}}
+/type/author /authors/OL10496638A 1 2022-06-22T05:03:31.801952 {"type": {"key": "/type/author"}, "name": "Frank Crooks", "personal_name": "Frank Crooks", "birth_date": "1958", "key": "/authors/OL10496638A", "source_records": ["ia:fundamentalsofqu0000croo"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-22T05:03:31.801952"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-22T05:03:31.801952"}}
+/type/author /authors/OL10496775A 1 2022-06-22T05:57:39.309686 {"type": {"key": "/type/author"}, "name": "Gary Lee Miller", "personal_name": "Gary Lee Miller", "birth_date": "1960", "key": "/authors/OL10496775A", "source_records": ["ia:shakinghandswith0000mill"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-22T05:57:39.309686"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-22T05:57:39.309686"}}
+/type/author /authors/OL10496942A 1 2022-06-23T02:32:06.495954 {"type": {"key": "/type/author"}, "name": "Siegfried Lindhorst", "key": "/authors/OL10496942A", "source_records": ["amazon:3833419482"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-23T02:32:06.495954"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-23T02:32:06.495954"}}
+/type/author /authors/OL10497090A 1 2022-06-23T05:12:30.708321 {"type": {"key": "/type/author"}, "name": "Helen Johnson", "personal_name": "Helen Johnson", "birth_date": "1940", "key": "/authors/OL10497090A", "source_records": ["ia:naturalstressanx0000john"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-23T05:12:30.708321"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-23T05:12:30.708321"}}
+/type/author /authors/OL10497259A 1 2022-06-24T04:39:16.031356 {"type": {"key": "/type/author"}, "name": "Cathie Dunsford", "personal_name": "Cathie Dunsford", "key": "/authors/OL10497259A", "source_records": ["ia:newwomensfiction0000unse_z3x7"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-24T04:39:16.031356"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-24T04:39:16.031356"}}
+/type/author /authors/OL10497899A 1 2022-06-26T04:35:31.804981 {"type": {"key": "/type/author"}, "name": "Li,Zhengxuan", "personal_name": "Li,Zhengxuan", "key": "/authors/OL10497899A", "source_records": ["ia:yingyudeyuanliyo0000lizh"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-26T04:35:31.804981"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-26T04:35:31.804981"}}
+/type/author /authors/OL10498166A 1 2022-06-27T04:10:27.708084 {"type": {"key": "/type/author"}, "name": "Han Fook Kwang", "key": "/authors/OL10498166A", "source_records": ["amazon:9814677620"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-27T04:10:27.708084"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-27T04:10:27.708084"}}
+/type/author /authors/OL10498687A 1 2022-06-29T04:54:19.912196 {"type": {"key": "/type/author"}, "name": "Jim Klinzing", "personal_name": "Jim Klinzing", "key": "/authors/OL10498687A", "source_records": ["ia:basketballforsta0000klin"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-29T04:54:19.912196"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-29T04:54:19.912196"}}
+/type/author /authors/OL10498731A 1 2022-06-29T05:13:30.371478 {"type": {"key": "/type/author"}, "name": "Pleasant View Farm", "key": "/authors/OL10498731A", "source_records": ["ia:CAT31448784"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-29T05:13:30.371478"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-29T05:13:30.371478"}}
+/type/author /authors/OL10499047A 1 2022-06-30T05:16:42.959841 {"type": {"key": "/type/author"}, "name": "Rookwood Farm", "key": "/authors/OL10499047A", "source_records": ["ia:CAT31448827"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-30T05:16:42.959841"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-30T05:16:42.959841"}}
+/type/author /authors/OL10499165A 1 2022-06-30T07:02:45.523141 {"type": {"key": "/type/author"}, "name": "Institute of Electrical and Electronics Engineers. Professional Technical Group on Industrial Electronics", "key": "/authors/OL10499165A", "source_records": ["marc:marc_wpi/WPI_Bibliographic_records_20220607.mrc:87953:1411"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-30T07:02:45.523141"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-30T07:02:45.523141"}}
+/type/author /authors/OL10499233A 1 2022-06-30T07:06:13.392678 {"type": {"key": "/type/author"}, "name": "IRE Professional Group on Engineering Management", "key": "/authors/OL10499233A", "source_records": ["marc:marc_wpi/WPI_Bibliographic_records_20220607.mrc:533952:1907"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-30T07:06:13.392678"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-30T07:06:13.392678"}}
+/type/author /authors/OL10499252A 1 2022-06-30T07:07:10.906656 {"type": {"key": "/type/author"}, "name": "Massachusetts Institute of Technology. Research Laboratory of Electronics", "key": "/authors/OL10499252A", "source_records": ["marc:marc_wpi/WPI_Bibliographic_records_20220607.mrc:651640:1603"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-30T07:07:10.906656"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-30T07:07:10.906656"}}
+/type/author /authors/OL10500135A 1 2022-06-30T10:33:29.025568 {"type": {"key": "/type/author"}, "name": "Hsiu-Hui Huang", "personal_name": "Hsiu-Hui Huang", "birth_date": "1980", "key": "/authors/OL10500135A", "source_records": ["marc:marc_dnb_202006/dnb_all_dnbmarc_20200615-3.mrc:2542903:1489"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-06-30T10:33:29.025568"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-30T10:33:29.025568"}}
+/type/author /authors/OL10500422A 1 2022-07-01T14:48:29.898046 {"type": {"key": "/type/author"}, "name": "978-1786896698, 1786896699, 9781786896698", "key": "/authors/OL10500422A", "source_records": ["amazon:9123933747"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-01T14:48:29.898046"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-01T14:48:29.898046"}}
+/type/author /authors/OL10500639A 1 2022-07-03T23:20:20.723682 {"type": {"key": "/type/author"}, "name": "Sandra Lina Jakob", "key": "/authors/OL10500639A", "source_records": ["amazon:3981870301"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-03T23:20:20.723682"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-03T23:20:20.723682"}}
+/type/author /authors/OL10500951A 1 2022-07-07T04:31:13.762889 {"type": {"key": "/type/author"}, "name": "Kenneth B. Singleton M.D.", "key": "/authors/OL10500951A", "source_records": ["amazon:1439226989"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-07T04:31:13.762889"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-07T04:31:13.762889"}}
+/type/author /authors/OL10501097A 1 2022-07-07T08:55:41.503106 {"type": {"key": "/type/author"}, "name": "Alfredo \u00c1lvarez \u00c1lvarez", "key": "/authors/OL10501097A", "source_records": ["amazon:8418481013"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-07T08:55:41.503106"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-07T08:55:41.503106"}}
+/type/author /authors/OL10501217A 1 2022-07-07T08:56:48.583484 {"type": {"key": "/type/author"}, "name": "Anna Llenas Serra", "key": "/authors/OL10501217A", "source_records": ["amazon:8415208715"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-07T08:56:48.583484"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-07T08:56:48.583484"}}
+/type/author /authors/OL10501290A 1 2022-07-07T08:57:36.184654 {"type": {"key": "/type/author"}, "name": "Maria S. Floro", "key": "/authors/OL10501290A", "source_records": ["amazon:8472908747"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-07T08:57:36.184654"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-07T08:57:36.184654"}}
+/type/author /authors/OL10501855A 1 2022-07-11T02:58:41.074058 {"type": {"key": "/type/author"}, "name": "Adolf T\u00f6rngren", "personal_name": "Adolf T\u00f6rngren", "birth_date": "1860", "death_date": "1943", "key": "/authors/OL10501855A", "source_records": ["marc:marc_uic/UIC_2022.mrc:2532572:1004"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-11T02:58:41.074058"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-11T02:58:41.074058"}}
+/type/author /authors/OL10502224A 1 2022-07-11T04:02:46.721055 {"type": {"key": "/type/author"}, "name": "American Association of University Professors of Italian", "key": "/authors/OL10502224A", "source_records": ["marc:marc_uic/UIC_2022.mrc:12445105:2796"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-11T04:02:46.721055"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-11T04:02:46.721055"}}
+/type/author /authors/OL10502273A 1 2022-07-11T04:10:46.632922 {"type": {"key": "/type/author"}, "name": "G\u00fcnter Nagel", "personal_name": "G\u00fcnter Nagel", "key": "/authors/OL10502273A", "source_records": ["marc:marc_uic/UIC_2022.mrc:13629168:1623"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-11T04:10:46.632922"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-11T04:10:46.632922"}}
+/type/author /authors/OL10502491A 1 2022-07-11T05:00:59.166606 {"type": {"key": "/type/author"}, "name": "Joseph Faulkner-Main Street Galleries", "key": "/authors/OL10502491A", "source_records": ["marc:marc_uic/UIC_2022.mrc:21150634:1045"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-11T05:00:59.166606"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-11T05:00:59.166606"}}
+/type/author /authors/OL10502550A 1 2022-07-11T05:09:17.832346 {"type": {"key": "/type/author"}, "name": "Nihon Daigaku. Rik\u014dgaku Kenky\u016bjo", "key": "/authors/OL10502550A", "source_records": ["marc:marc_uic/UIC_2022.mrc:22148284:1785"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-11T05:09:17.832346"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-11T05:09:17.832346"}}
+/type/author /authors/OL1050266A 1 2008-04-01T03:28:50.625462 {"name": "Sahat Singhawiriya.", "personal_name": "Sahat Singhawiriya.", "last_modified": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "key": "/authors/OL1050266A", "type": {"key": "/type/author"}, "revision": 1}
+/type/author /authors/OL10502872A 1 2022-07-11T05:59:36.946284 {"type": {"key": "/type/author"}, "name": "Fran\u00e7ois, Lucien doctor of laws", "title": "doctor of laws", "personal_name": "Fran\u00e7ois, Lucien", "key": "/authors/OL10502872A", "source_records": ["marc:marc_uic/UIC_2022.mrc:29836667:1075"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-11T05:59:36.946284"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-11T05:59:36.946284"}}
+/type/author /authors/OL10502986A 1 2022-07-11T06:20:40.795324 {"type": {"key": "/type/author"}, "name": "University of Michigan. Dept. of English Language and Literature", "key": "/authors/OL10502986A", "source_records": ["marc:marc_uic/UIC_2022.mrc:32875997:1059"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-11T06:20:40.795324"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-11T06:20:40.795324"}}
+/type/author /authors/OL1050313A 2 2008-08-19T23:28:55.728909 {"name": "Joseph H. Damrosch", "personal_name": "Joseph H. Damrosch", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T23:28:55.728909"}, "key": "/authors/OL1050313A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10503281A 1 2022-07-11T07:31:27.869966 {"type": {"key": "/type/author"}, "name": "IEEE Vehicular Technology Group", "key": "/authors/OL10503281A", "source_records": ["marc:marc_uic/UIC_2022.mrc:42359720:975"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-11T07:31:27.869966"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-11T07:31:27.869966"}}
+/type/author /authors/OL10503933A 1 2022-07-11T10:02:11.367167 {"type": {"key": "/type/author"}, "name": "Warren Miller/Arthur Miller/Richard Brody/Jack Dennis/David Kovenock/Merrill Shanks", "personal_name": "Warren Miller/Arthur Miller/Richard Brody/Jack Dennis/David Kovenock/Merrill Shanks", "key": "/authors/OL10503933A", "source_records": ["marc:marc_uic/UIC_2022.mrc:58774811:451"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-11T10:02:11.367167"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-11T10:02:11.367167"}}
+/type/author /authors/OL10504000A 1 2022-07-11T10:14:16.142211 {"type": {"key": "/type/author"}, "name": "James Hearst", "personal_name": "James Hearst", "birth_date": "1900", "death_date": "1984", "key": "/authors/OL10504000A", "source_records": ["marc:marc_uic/UIC_2022.mrc:60567650:673"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-11T10:14:16.142211"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-11T10:14:16.142211"}}
+/type/author /authors/OL10504629A 1 2022-07-11T11:56:03.185234 {"type": {"key": "/type/author"}, "name": "St\u00e4dtisches Museum M\u00f6nchengladbach", "key": "/authors/OL10504629A", "source_records": ["marc:marc_uic/UIC_2022.mrc:76310966:904"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-11T11:56:03.185234"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-11T11:56:03.185234"}}
+/type/author /authors/OL10504786A 1 2022-07-11T12:36:33.813521 {"type": {"key": "/type/author"}, "name": "J. Had\u017ei", "personal_name": "J. Had\u017ei", "birth_date": "1884", "death_date": "1972", "key": "/authors/OL10504786A", "source_records": ["marc:marc_uic/UIC_2022.mrc:80766872:930"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-11T12:36:33.813521"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-11T12:36:33.813521"}}
+/type/author /authors/OL10504841A 1 2022-07-11T12:54:32.614585 {"type": {"key": "/type/author"}, "name": "University of Hull. Department of Geography", "key": "/authors/OL10504841A", "source_records": ["marc:marc_uic/UIC_2022.mrc:82674932:1917"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-11T12:54:32.614585"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-11T12:54:32.614585"}}
+/type/author /authors/OL10504972A 1 2022-07-11T13:27:45.685527 {"type": {"key": "/type/author"}, "name": "J\u00f3zef Klemens Sz\u0142apczynski", "personal_name": "J\u00f3zef Klemens Sz\u0142apczynski", "key": "/authors/OL10504972A", "source_records": ["marc:marc_uic/UIC_2022.mrc:87799605:1035"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-11T13:27:45.685527"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-11T13:27:45.685527"}}
+/type/author /authors/OL10505019A 1 2022-07-11T13:38:06.320644 {"type": {"key": "/type/author"}, "name": "Calif.) Investment Statistics Laboratory (Palo Alto", "key": "/authors/OL10505019A", "source_records": ["marc:marc_uic/UIC_2022.mrc:89445356:1348"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-11T13:38:06.320644"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-11T13:38:06.320644"}}
+/type/author /authors/OL10505060A 1 2022-07-11T13:48:51.955800 {"type": {"key": "/type/author"}, "name": "N. I. Kolchenko", "personal_name": "N. I. Kolchenko", "key": "/authors/OL10505060A", "source_records": ["marc:marc_uic/UIC_2022.mrc:90943718:1115"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-11T13:48:51.955800"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-11T13:48:51.955800"}}
+/type/author /authors/OL10505081A 1 2022-07-11T13:51:49.034113 {"type": {"key": "/type/author"}, "name": "Berger M., Gibowski,W., etal", "personal_name": "Berger M., Gibowski,W., etal", "key": "/authors/OL10505081A", "source_records": ["marc:marc_uic/UIC_2022.mrc:91267934:394"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-11T13:51:49.034113"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-11T13:51:49.034113"}}
+/type/author /authors/OL10505136A 1 2022-07-11T14:00:35.539325 {"type": {"key": "/type/author"}, "name": "Storm Horse (Writer)", "personal_name": "Storm Horse (Writer)", "key": "/authors/OL10505136A", "source_records": ["marc:marc_uic/UIC_2022.mrc:92436539:921"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-11T14:00:35.539325"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-11T14:00:35.539325"}}
+/type/author /authors/OL10506114A 1 2022-07-11T17:15:56.152023 {"type": {"key": "/type/author"}, "name": "Deutsche Geophysikalische Gesellschaft", "key": "/authors/OL10506114A", "source_records": ["marc:marc_uic/UIC_2022.mrc:122537386:1698"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-11T17:15:56.152023"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-11T17:15:56.152023"}}
+/type/author /authors/OL10506147A 1 2022-07-11T17:23:20.632139 {"type": {"key": "/type/author"}, "name": "Colloquium on Information Theory Kossuth Lajos University 1967", "key": "/authors/OL10506147A", "source_records": ["marc:marc_uic/UIC_2022.mrc:123707893:1315"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-11T17:23:20.632139"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-11T17:23:20.632139"}}
+/type/author /authors/OL10506170A 1 2022-07-11T17:26:33.018887 {"type": {"key": "/type/author"}, "name": "University of Puerto Rico. Institute of Caribbean Studies", "key": "/authors/OL10506170A", "source_records": ["marc:marc_uic/UIC_2022.mrc:124256356:1838"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-11T17:26:33.018887"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-11T17:26:33.018887"}}
+/type/author /authors/OL10506310A 1 2022-07-11T18:01:59.903351 {"type": {"key": "/type/author"}, "name": "Symposium on Combustion", "key": "/authors/OL10506310A", "source_records": ["marc:marc_uic/UIC_2022.mrc:129583737:2165"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-11T18:01:59.903351"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-11T18:01:59.903351"}}
+/type/author /authors/OL10506A 2 2008-09-10T10:37:49.56274 {"name": "C. M. Samuel", "personal_name": "C. M. Samuel", "last_modified": {"type": "/type/datetime", "value": "2008-09-10T10:37:49.56274"}, "key": "/authors/OL10506A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10507078A 1 2022-07-11T20:46:16.013887 {"type": {"key": "/type/author"}, "name": "Ike Caudill", "personal_name": "Ike Caudill", "key": "/authors/OL10507078A", "source_records": ["marc:marc_uic/UIC_2022.mrc:152567412:4870"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-11T20:46:16.013887"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-11T20:46:16.013887"}}
+/type/author /authors/OL10507609A 1 2022-07-11T22:43:35.192843 {"type": {"key": "/type/author"}, "name": "Fred Shafer", "personal_name": "Fred Shafer", "key": "/authors/OL10507609A", "source_records": ["marc:marc_uic/UIC_2022.mrc:170497018:2136"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-11T22:43:35.192843"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-11T22:43:35.192843"}}
+/type/author /authors/OL10507879A 1 2022-07-11T23:39:57.924863 {"type": {"key": "/type/author"}, "name": "Sylvia Riggs Liroff", "personal_name": "Sylvia Riggs Liroff", "birth_date": "1954", "key": "/authors/OL10507879A", "source_records": ["marc:marc_uic/UIC_2022.mrc:179328997:1385"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-11T23:39:57.924863"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-11T23:39:57.924863"}}
+/type/author /authors/OL10507975A 1 2022-07-12T00:07:05.561834 {"type": {"key": "/type/author"}, "name": "John Baldon", "personal_name": "John Baldon", "key": "/authors/OL10507975A", "source_records": ["marc:marc_uic/UIC_2022.mrc:183644520:4680"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-12T00:07:05.561834"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-12T00:07:05.561834"}}
+/type/author /authors/OL10508155A 1 2022-07-12T00:59:35.163330 {"type": {"key": "/type/author"}, "name": "Deutsche Gesellschaft f\u00fcr Anthropologie", "key": "/authors/OL10508155A", "source_records": ["marc:marc_uic/UIC_2022.mrc:190321846:1616"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-12T00:59:35.163330"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-12T00:59:35.163330"}}
+/type/author /authors/OL10508221A 1 2022-07-12T01:13:09.892696 {"type": {"key": "/type/author"}, "name": "Rice University. School of Architecture", "key": "/authors/OL10508221A", "source_records": ["marc:marc_uic/UIC_2022.mrc:192503034:1100"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-12T01:13:09.892696"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-12T01:13:09.892696"}}
+/type/author /authors/OL1050838A 2 2008-08-19T23:31:36.783812 {"name": "De\u0304me\u0304tre\u0304s Vlantas", "personal_name": "De\u0304me\u0304tre\u0304s Vlantas", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T23:31:36.783812"}, "key": "/authors/OL1050838A", "birth_date": "1908", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL105085A 3 2009-05-21T22:10:38.886768 {"name": "S\u016brajap\u0101la Cauh\u0101na", "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "personal_name": "S\u016brajap\u0101la Cauh\u0101na", "last_modified": {"type": "/type/datetime", "value": "2009-05-21T22:10:38.886768"}, "latest_revision": 3, "key": "/authors/OL105085A", "birth_date": "1955", "type": {"key": "/type/author"}, "revision": 3}
+/type/author /authors/OL10509061A 1 2022-07-12T04:13:45.915708 {"type": {"key": "/type/author"}, "name": "Pan American Union. Division of General Information", "key": "/authors/OL10509061A", "source_records": ["marc:marc_uic/UIC_2022.mrc:221416656:1189"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-12T04:13:45.915708"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-12T04:13:45.915708"}}
+/type/author /authors/OL10509252A 1 2022-07-12T05:01:12.181828 {"type": {"key": "/type/author"}, "name": "David Footman", "personal_name": "David Footman", "birth_date": "1875", "key": "/authors/OL10509252A", "source_records": ["marc:marc_uic/UIC_2022.mrc:228224469:887"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-12T05:01:12.181828"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-12T05:01:12.181828"}}
+/type/author /authors/OL10509271A 1 2022-07-12T05:04:05.763517 {"type": {"key": "/type/author"}, "name": "Edward Young", "personal_name": "Edward Young", "birth_date": "1875", "death_date": "1949", "key": "/authors/OL10509271A", "source_records": ["marc:marc_uic/UIC_2022.mrc:228610018:895"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-12T05:04:05.763517"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-12T05:04:05.763517"}}
+/type/author /authors/OL10509435A 1 2022-07-13T20:49:39.361700 {"type": {"key": "/type/author"}, "name": "David B Black", "key": "/authors/OL10509435A", "source_records": ["amazon:1517352487"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-13T20:49:39.361700"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-13T20:49:39.361700"}}
+/type/author /authors/OL10509720A 1 2022-07-15T21:13:07.849028 {"type": {"key": "/type/author"}, "name": "Brenda Wellingham", "key": "/authors/OL10509720A", "source_records": ["amazon:0590740814"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-15T21:13:07.849028"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-15T21:13:07.849028"}}
+/type/author /authors/OL10509891A 1 2022-07-16T05:11:39.965561 {"type": {"key": "/type/author"}, "name": "Noel Blackham", "personal_name": "Noel Blackham", "birth_date": "1925", "key": "/authors/OL10509891A", "source_records": ["ia:lifesmerrygoroun0000blac"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-16T05:11:39.965561"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-16T05:11:39.965561"}}
+/type/author /authors/OL10509935A 1 2022-07-16T05:38:51.289873 {"type": {"key": "/type/author"}, "name": "Sandra Lynn Price", "personal_name": "Sandra Lynn Price", "key": "/authors/OL10509935A", "source_records": ["ia:katrinasgracewin0000pric"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-16T05:38:51.289873"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-16T05:38:51.289873"}}
+/type/author /authors/OL10509967A 1 2022-07-16T06:04:41.846041 {"type": {"key": "/type/author"}, "name": "Maryvonne Dhers", "personal_name": "Maryvonne Dhers", "key": "/authors/OL10509967A", "source_records": ["ia:preparationalepr0000unse"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-16T06:04:41.846041"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-16T06:04:41.846041"}}
+/type/author /authors/OL10510075A 1 2022-07-16T06:58:07.033428 {"type": {"key": "/type/author"}, "name": "LINDA HOWELL BETZ", "personal_name": "LINDA HOWELL BETZ", "key": "/authors/OL10510075A", "source_records": ["ia:freefall0000betz"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-16T06:58:07.033428"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-16T06:58:07.033428"}}
+/type/author /authors/OL10510107A 1 2022-07-16T07:12:18.468869 {"type": {"key": "/type/author"}, "name": "Ana Elizabete da Mota", "personal_name": "Ana Elizabete da Mota", "key": "/authors/OL10510107A", "source_records": ["ia:novafabricadecon0000unse"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-16T07:12:18.468869"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-16T07:12:18.468869"}}
+/type/author /authors/OL10510183A 1 2022-07-16T07:53:25.903400 {"type": {"key": "/type/author"}, "name": "Chris Brewster", "personal_name": "Chris Brewster", "birth_date": "(1947", "death_date": "...).", "key": "/authors/OL10510183A", "source_records": ["ia:gestiondesressou0000unse"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-16T07:53:25.903400"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-16T07:53:25.903400"}}
+/type/author /authors/OL10510260A 1 2022-07-16T18:42:45.877426 {"type": {"key": "/type/author"}, "name": "J. Wolfgang Goethe", "key": "/authors/OL10510260A", "source_records": ["amazon:8804229810"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-16T18:42:45.877426"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-16T18:42:45.877426"}}
+/type/author /authors/OL10510691A 1 2022-07-17T06:54:09.055772 {"type": {"key": "/type/author"}, "name": "Herve Joly", "key": "/authors/OL10510691A", "source_records": ["bwb:9780119864939"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-17T06:54:09.055772"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T06:54:09.055772"}}
+/type/author /authors/OL10510936A 1 2022-07-17T07:10:43.362113 {"type": {"key": "/type/author"}, "name": "Historic Buildings Council for England Staff", "key": "/authors/OL10510936A", "source_records": ["bwb:9780102155754"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-17T07:10:43.362113"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T07:10:43.362113"}}
+/type/author /authors/OL10511013A 1 2022-07-17T07:13:24.324275 {"type": {"key": "/type/author"}, "name": "Statutory Publications Office Staff Great Britain", "key": "/authors/OL10511013A", "source_records": ["bwb:9780113304431"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-17T07:13:24.324275"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T07:13:24.324275"}}
+/type/author /authors/OL10511143A 1 2022-07-17T07:20:05.861301 {"type": {"key": "/type/author"}, "name": "Industrial Development Board for Northern Ireland Staff", "key": "/authors/OL10511143A", "source_records": ["bwb:9780101145824"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-17T07:20:05.861301"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T07:20:05.861301"}}
+/type/author /authors/OL10511460A 1 2022-07-17T07:52:22.233720 {"type": {"key": "/type/author"}, "name": "S. Dunaway", "key": "/authors/OL10511460A", "source_records": ["bwb:9780119872385"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-17T07:52:22.233720"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T07:52:22.233720"}}
+/type/author /authors/OL10511566A 1 2022-07-17T08:00:39.668787 {"type": {"key": "/type/author"}, "name": "Joint Standing Committee on Safety in the Cotton and Allied Fibres Weaving Industry Staff", "key": "/authors/OL10511566A", "source_records": ["bwb:9780113609673"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-17T08:00:39.668787"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T08:00:39.668787"}}
+/type/author /authors/OL10511668A 1 2022-07-17T08:08:42.595274 {"type": {"key": "/type/author"}, "name": "Ireland Staff", "key": "/authors/OL10511668A", "source_records": ["bwb:9780101053525"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-17T08:08:42.595274"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T08:08:42.595274"}}
+/type/author /authors/OL10512017A 1 2022-07-17T08:49:32.573619 {"type": {"key": "/type/author"}, "name": "Scheifler", "key": "/authors/OL10512017A", "source_records": ["bwb:9780139731570"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-17T08:49:32.573619"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T08:49:32.573619"}}
+/type/author /authors/OL10512206A 1 2022-07-17T09:19:37.136905 {"type": {"key": "/type/author"}, "name": "Sheffield North East Education Action Zone Staff", "key": "/authors/OL10512206A", "source_records": ["bwb:9780102910292"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-17T09:19:37.136905"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T09:19:37.136905"}}
+/type/author /authors/OL10512315A 1 2022-07-17T09:32:56.454355 {"type": {"key": "/type/author"}, "name": "Sydney Roskruge Bowden", "key": "/authors/OL10512315A", "source_records": ["bwb:9780116702944"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-17T09:32:56.454355"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T09:32:56.454355"}}
+/type/author /authors/OL10512468A 1 2022-07-17T09:49:15.374736 {"type": {"key": "/type/author"}, "name": "F. Cottam", "key": "/authors/OL10512468A", "source_records": ["bwb:9780743239530"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-17T09:49:15.374736"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T09:49:15.374736"}}
+/type/author /authors/OL10512795A 1 2022-07-17T10:47:33.783265 {"type": {"key": "/type/author"}, "name": "Great Britain: Committee of Inquiry into Police Interrogation Procedures in Northern Ireland", "key": "/authors/OL10512795A", "source_records": ["bwb:9780101749701"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-17T10:47:33.783265"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T10:47:33.783265"}}
+/type/author /authors/OL10512801A 1 2022-07-17T10:47:50.078271 {"type": {"key": "/type/author"}, "name": "Great Britain: Department of Transport: Railway Inspectorate", "key": "/authors/OL10512801A", "source_records": ["bwb:9780115504983"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-17T10:47:50.078271"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T10:47:50.078271"}}
+/type/author /authors/OL10513089A 1 2022-07-17T11:37:04.740411 {"type": {"key": "/type/author"}, "name": "Great Britain: H.M. Prison Service", "key": "/authors/OL10513089A", "source_records": ["bwb:9780102922394"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-17T11:37:04.740411"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T11:37:04.740411"}}
+/type/author /authors/OL10513474A 1 2022-07-17T12:44:38.171474 {"type": {"key": "/type/author"}, "name": "U. M. Michie", "key": "/authors/OL10513474A", "source_records": ["bwb:9780118840590"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-17T12:44:38.171474"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T12:44:38.171474"}}
+/type/author /authors/OL10513540A 1 2022-07-17T12:54:14.536138 {"type": {"key": "/type/author"}, "name": "Steward Sutherland Sutherland of Houndwood", "key": "/authors/OL10513540A", "source_records": ["bwb:9780108444845"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-17T12:54:14.536138"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T12:54:14.536138"}}
+/type/author /authors/OL10513858A 1 2022-07-17T13:39:17.988525 {"type": {"key": "/type/author"}, "name": "United Kingdom Sports Council", "key": "/authors/OL10513858A", "source_records": ["bwb:9780103284217"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-17T13:39:17.988525"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T13:39:17.988525"}}
+/type/author /authors/OL10514310A 1 2022-07-17T14:50:55.597972 {"type": {"key": "/type/author"}, "name": "Great Britain: Parliament: House Of Commons: Home Affairs Committee", "key": "/authors/OL10514310A", "source_records": ["bwb:9780215561602"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-17T14:50:55.597972"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T14:50:55.597972"}}
+/type/author /authors/OL10514441A 1 2022-07-17T15:18:58.893781 {"type": {"key": "/type/author"}, "name": "Albert Owen", "key": "/authors/OL10514441A", "source_records": ["bwb:9780215039279"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-17T15:18:58.893781"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T15:18:58.893781"}}
+/type/author /authors/OL10514463A 1 2022-07-17T15:24:34.122898 {"type": {"key": "/type/author"}, "name": "Social Services and Public Safety (Northern Ireland) Northern Ireland: Department of Health", "key": "/authors/OL10514463A", "source_records": ["bwb:9780339401273"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-17T15:24:34.122898"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T15:24:34.122898"}}
+/type/author /authors/OL10514776A 1 2022-07-17T16:43:51.611466 {"type": {"key": "/type/author"}, "name": "Sylvia Lady Jay", "key": "/authors/OL10514776A", "source_records": ["bwb:9780102938722"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-17T16:43:51.611466"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T16:43:51.611466"}}
+/type/author /authors/OL10514826A 1 2022-07-17T16:57:14.875082 {"type": {"key": "/type/author"}, "name": "Northern Ireland Ambulance Service Health and Social Care Trust", "key": "/authors/OL10514826A", "source_records": ["bwb:9780337095092"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-17T16:57:14.875082"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T16:57:14.875082"}}
+/type/author /authors/OL10515178A 1 2022-07-17T17:58:44.700453 {"type": {"key": "/type/author"}, "name": "Jamie Pike", "key": "/authors/OL10515178A", "source_records": ["bwb:9780102955750"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-17T17:58:44.700453"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T17:58:44.700453"}}
+/type/author /authors/OL10515440A 1 2022-07-17T18:53:29.107555 {"type": {"key": "/type/author"}, "name": "Children and Family Court Advisory and Support Service (CAFCASS)", "key": "/authors/OL10515440A", "source_records": ["bwb:9780102938463"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-17T18:53:29.107555"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T18:53:29.107555"}}
+/type/author /authors/OL10515510A 1 2022-07-17T19:29:32.435772 {"type": {"key": "/type/author"}, "name": "Steve Moyle", "key": "/authors/OL10515510A", "source_records": ["bwb:9781782192466"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-17T19:29:32.435772"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T19:29:32.435772"}}
+/type/author /authors/OL10516240A 1 2022-07-17T22:55:55.250951 {"type": {"key": "/type/author"}, "name": "Rena Gordon", "key": "/authors/OL10516240A", "source_records": ["bwb:9781281863027"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-17T22:55:55.250951"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T22:55:55.250951"}}
+/type/author /authors/OL10516309A 1 2022-07-17T23:40:12.460684 {"type": {"key": "/type/author"}, "name": "Great Britain: Board of Trade", "key": "/authors/OL10516309A", "source_records": ["bwb:9780108511387"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-17T23:40:12.460684"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T23:40:12.460684"}}
+/type/author /authors/OL1051646A 2 2008-08-19T23:35:29.447927 {"name": "Frederick Griffin Young", "personal_name": "Frederick Griffin Young", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T23:35:29.447927"}, "key": "/authors/OL1051646A", "birth_date": "1940", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10516573A 1 2022-07-18T01:03:49.958799 {"type": {"key": "/type/author"}, "name": "Hawkins, Whnp-BC,", "key": "/authors/OL10516573A", "source_records": ["bwb:9781283281003"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-18T01:03:49.958799"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-18T01:03:49.958799"}}
+/type/author /authors/OL10516622A 1 2022-07-18T01:06:21.174111 {"type": {"key": "/type/author"}, "name": "Christine Edmunds", "key": "/authors/OL10516622A", "source_records": ["bwb:9781281813541"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-18T01:06:21.174111"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-18T01:06:21.174111"}}
+/type/author /authors/OL10516718A 1 2022-07-18T01:21:26.645973 {"type": {"key": "/type/author"}, "name": "Msc Lisa y Adams", "key": "/authors/OL10516718A", "source_records": ["bwb:9781306957793"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-18T01:21:26.645973"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-18T01:21:26.645973"}}
+/type/author /authors/OL10516868A 1 2022-07-18T01:40:57.537526 {"type": {"key": "/type/author"}, "name": "Laurie N Gottlieb", "key": "/authors/OL10516868A", "source_records": ["bwb:9781306114615"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-18T01:40:57.537526"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-18T01:40:57.537526"}}
+/type/author /authors/OL10516911A 1 2022-07-18T01:45:32.373224 {"type": {"key": "/type/author"}, "name": "R. Coe", "key": "/authors/OL10516911A", "source_records": ["bwb:9781315078175"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-18T01:45:32.373224"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-18T01:45:32.373224"}}
+/type/author /authors/OL10516939A 1 2022-07-18T01:55:09.418563 {"type": {"key": "/type/author"}, "name": "Carrie Scotto", "key": "/authors/OL10516939A", "source_records": ["bwb:9781322348308"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-18T01:55:09.418563"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-18T01:55:09.418563"}}
+/type/author /authors/OL10517108A 1 2022-07-18T02:18:08.595657 {"type": {"key": "/type/author"}, "name": "Robert Allen Rouse", "key": "/authors/OL10517108A", "source_records": ["bwb:9781322069340"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-18T02:18:08.595657"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-18T02:18:08.595657"}}
+/type/author /authors/OL10517165A 1 2022-07-18T02:28:33.405396 {"type": {"key": "/type/author"}, "name": "Jiyoung Yoon", "key": "/authors/OL10517165A", "source_records": ["bwb:9789027204417"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-18T02:28:33.405396"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-18T02:28:33.405396"}}
+/type/author /authors/OL10517256A 1 2022-07-18T02:43:00.638389 {"type": {"key": "/type/author"}, "name": "Reina Whaitiri", "key": "/authors/OL10517256A", "source_records": ["bwb:9781869405748"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-18T02:43:00.638389"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-18T02:43:00.638389"}}
+/type/author /authors/OL10517505A 1 2022-07-18T03:22:49.463298 {"type": {"key": "/type/author"}, "name": "Seung Woo Shin", "key": "/authors/OL10517505A", "source_records": ["bwb:9781680830064"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-18T03:22:49.463298"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-18T03:22:49.463298"}}
+/type/author /authors/OL10517704A 1 2022-07-18T03:59:09.197985 {"type": {"key": "/type/author"}, "name": "Paul Pentland", "key": "/authors/OL10517704A", "source_records": ["bwb:9780108882760"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-18T03:59:09.197985"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-18T03:59:09.197985"}}
+/type/author /authors/OL10518321A 1 2022-07-18T06:10:46.884991 {"type": {"key": "/type/author"}, "name": "Olga Russakovsky", "key": "/authors/OL10518321A", "source_records": ["bwb:9781680832129"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-18T06:10:46.884991"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-18T06:10:46.884991"}}
+/type/author /authors/OL10518375A 1 2022-07-18T06:38:03.318967 {"type": {"key": "/type/author"}, "name": "Kamil Demirhan", "key": "/authors/OL10518375A", "source_records": ["bwb:9781522520191"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-18T06:38:03.318967"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-18T06:38:03.318967"}}
+/type/author /authors/OL10518674A 1 2022-07-18T07:40:31.551929 {"type": {"key": "/type/author"}, "name": "Marjorie Elizabeth Plummer", "key": "/authors/OL10518674A", "source_records": ["bwb:9781785335419"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-18T07:40:31.551929"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-18T07:40:31.551929"}}
+/type/author /authors/OL10518759A 1 2022-07-18T08:06:45.720613 {"type": {"key": "/type/author"}, "name": "Giang Pham", "key": "/authors/OL10518759A", "source_records": ["bwb:9781635501896"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-18T08:06:45.720613"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-18T08:06:45.720613"}}
+/type/author /authors/OL10518914A 1 2022-07-18T08:39:18.491697 {"type": {"key": "/type/author"}, "name": "Stefan Blom", "key": "/authors/OL10518914A", "source_records": ["bwb:9780798172103"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-18T08:39:18.491697"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-18T08:39:18.491697"}}
+/type/author /authors/OL1051901A 2 2008-08-19T23:36:28.885588 {"name": "Fiachra O\u0301 Dubhthaigh", "personal_name": "Fiachra O\u0301 Dubhthaigh", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T23:36:28.885588"}, "key": "/authors/OL1051901A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10519534A 1 2022-07-18T12:23:07.479077 {"type": {"key": "/type/author"}, "name": "Tami J. Gurley-Calvez", "key": "/authors/OL10519534A", "source_records": ["bwb:9781680836783"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-18T12:23:07.479077"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-18T12:23:07.479077"}}
+/type/author /authors/OL10519698A 1 2022-07-18T13:25:41.822125 {"type": {"key": "/type/author"}, "name": "Great Britain: Committee on Broadcasting", "key": "/authors/OL10519698A", "source_records": ["bwb:9780105200154"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-18T13:25:41.822125"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-18T13:25:41.822125"}}
+/type/author /authors/OL10519931A 1 2022-07-18T14:45:07.454193 {"type": {"key": "/type/author"}, "name": "Yubin Zhou", "key": "/authors/OL10519931A", "source_records": ["bwb:9781000787542"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-18T14:45:07.454193"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-18T14:45:07.454193"}}
+/type/author /authors/OL1052009A 2 2008-08-19T23:36:56.074045 {"name": "S. N. Shchelkunov", "personal_name": "S. N. Shchelkunov", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T23:36:56.074045"}, "key": "/authors/OL1052009A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10520155A 1 2022-07-18T15:05:24.900567 {"type": {"key": "/type/author"}, "name": "Marek Węcowski", "key": "/authors/OL10520155A", "source_records": ["bwb:9780198848202"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-18T15:05:24.900567"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-18T15:05:24.900567"}}
+/type/author /authors/OL10520190A 1 2022-07-18T15:06:00.758271 {"type": {"key": "/type/author"}, "name": "Marcial Bragadini B\u00f3o", "key": "/authors/OL10520190A", "source_records": ["bwb:9781447364160"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-18T15:06:00.758271"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-18T15:06:00.758271"}}
+/type/author /authors/OL10520309A 1 2022-07-18T15:10:25.439222 {"type": {"key": "/type/author"}, "name": "Hajar Farnoudkia", "key": "/authors/OL10520309A", "source_records": ["bwb:9781003324508"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-18T15:10:25.439222"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-18T15:10:25.439222"}}
+/type/author /authors/OL10520348A 1 2022-07-18T15:11:28.031368 {"type": {"key": "/type/author"}, "name": "GAID", "key": "/authors/OL10520348A", "source_records": ["bwb:9781784058340"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-18T15:11:28.031368"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-18T15:11:28.031368"}}
+/type/author /authors/OL10520554A 1 2022-07-18T15:21:55.331207 {"type": {"key": "/type/author"}, "name": "L. R. Griffin", "key": "/authors/OL10520554A", "source_records": ["bwb:9781793510563"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-18T15:21:55.331207"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-18T15:21:55.331207"}}
+/type/author /authors/OL10520556A 1 2022-07-18T15:22:01.425522 {"type": {"key": "/type/author"}, "name": "Tim Hollinger", "key": "/authors/OL10520556A", "source_records": ["bwb:9781793532770"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-18T15:22:01.425522"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-18T15:22:01.425522"}}
+/type/author /authors/OL10520826A 1 2022-07-18T15:46:59.243294 {"type": {"key": "/type/author"}, "name": "Britta Richter", "key": "/authors/OL10520826A", "source_records": ["bwb:9783662657379"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-18T15:46:59.243294"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-18T15:46:59.243294"}}
+/type/author /authors/OL10521129A 1 2022-07-18T15:57:13.261107 {"type": {"key": "/type/author"}, "name": "Rob De Boer", "key": "/authors/OL10521129A", "source_records": ["bwb:9780443191114"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-18T15:57:13.261107"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-18T15:57:13.261107"}}
+/type/author /authors/OL10521149A 1 2022-07-18T15:57:37.751124 {"type": {"key": "/type/author"}, "name": "Luiz Ricardo Vieira Gonzaga", "key": "/authors/OL10521149A", "source_records": ["bwb:9783031127366"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-18T15:57:37.751124"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-18T15:57:37.751124"}}
+/type/author /authors/OL10521406A 1 2022-07-18T16:20:34.490989 {"type": {"key": "/type/author"}, "name": "Fernando\u00a0ARRABAL", "key": "/authors/OL10521406A", "source_records": ["amazon:8495399903"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-18T16:20:34.490989"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-18T16:20:34.490989"}}
+/type/author /authors/OL10521499A 1 2022-07-18T16:29:00.926137 {"type": {"key": "/type/author"}, "name": "Mark Wildermuth", "key": "/authors/OL10521499A", "source_records": ["bwb:9783031117947"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-18T16:29:00.926137"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-18T16:29:00.926137"}}
+/type/author /authors/OL10521567A 1 2022-07-18T16:31:07.294801 {"type": {"key": "/type/author"}, "name": "Bertrand Deputte", "key": "/authors/OL10521567A", "source_records": ["bwb:9781800622388"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-18T16:31:07.294801"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-18T16:31:07.294801"}}
+/type/author /authors/OL10521596A 1 2022-07-18T16:32:52.940540 {"type": {"key": "/type/author"}, "name": "Marjorie Lotfi", "key": "/authors/OL10521596A", "source_records": ["bwb:9781906841485"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-18T16:32:52.940540"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-18T16:32:52.940540"}}
+/type/author /authors/OL10521768A 1 2022-07-18T16:39:53.301941 {"type": {"key": "/type/author"}, "name": "Luise Ganter", "key": "/authors/OL10521768A", "source_records": ["bwb:9783658386740"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-18T16:39:53.301941"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-18T16:39:53.301941"}}
+/type/author /authors/OL10521900A 1 2022-07-18T16:51:15.831418 {"type": {"key": "/type/author"}, "name": "Sharadchandra Panse", "key": "/authors/OL10521900A", "source_records": ["bwb:9780367553999"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-18T16:51:15.831418"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-18T16:51:15.831418"}}
+/type/author /authors/OL10522108A 1 2022-07-18T17:11:08.350537 {"type": {"key": "/type/author"}, "name": "Agustin Chevez", "key": "/authors/OL10522108A", "source_records": ["bwb:9789811947612"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-18T17:11:08.350537"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-18T17:11:08.350537"}}
+/type/author /authors/OL10522141A 1 2022-07-18T17:11:59.517531 {"type": {"key": "/type/author"}, "name": "Kurt Caesar", "key": "/authors/OL10522141A", "source_records": ["bwb:9781907081804"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-18T17:11:59.517531"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-18T17:11:59.517531"}}
+/type/author /authors/OL10522283A 1 2022-07-18T17:18:56.752104 {"type": {"key": "/type/author"}, "name": "Marcin J. Menkes", "key": "/authors/OL10522283A", "source_records": ["bwb:9781032321059"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-18T17:18:56.752104"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-18T17:18:56.752104"}}
+/type/author /authors/OL10522835A 1 2022-07-18T18:01:56.545400 {"type": {"key": "/type/author"}, "name": "Josephine Greig", "key": "/authors/OL10522835A", "source_records": ["bwb:9781667852898"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-18T18:01:56.545400"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-18T18:01:56.545400"}}
+/type/author /authors/OL10523449A 1 2022-07-18T19:04:41.476483 {"type": {"key": "/type/author"}, "name": "Carmen L. Garcia-Mata", "key": "/authors/OL10523449A", "source_records": ["bwb:9781527585027"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-18T19:04:41.476483"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-18T19:04:41.476483"}}
+/type/author /authors/OL10523488A 1 2022-07-18T19:18:19.197718 {"type": {"key": "/type/author"}, "name": "Nora Chadwick", "key": "/authors/OL10523488A", "source_records": ["bwb:9780141937106"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-18T19:18:19.197718"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-18T19:18:19.197718"}}
+/type/author /authors/OL10523661A 1 2022-07-18T19:27:21.491092 {"type": {"key": "/type/author"}, "name": "Arun Kumar Pujari", "key": "/authors/OL10523661A", "source_records": ["bwb:9789811950896"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-18T19:27:21.491092"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-18T19:27:21.491092"}}
+/type/author /authors/OL10524038A 1 2022-07-18T20:03:28.747932 {"type": {"key": "/type/author"}, "name": "Michael Handricks", "key": "/authors/OL10524038A", "source_records": ["bwb:9780750999021"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-18T20:03:28.747932"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-18T20:03:28.747932"}}
+/type/author /authors/OL10524044A 1 2022-07-18T20:03:36.303604 {"type": {"key": "/type/author"}, "name": "Francois Lancien-Guilberteau", "key": "/authors/OL10524044A", "source_records": ["bwb:9782955948651"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-18T20:03:36.303604"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-18T20:03:36.303604"}}
+/type/author /authors/OL10524257A 1 2022-07-18T20:52:05.974063 {"type": {"key": "/type/author"}, "name": "Pruett, Robert H., Sr.", "key": "/authors/OL10524257A", "source_records": ["bwb:9781883911461"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-18T20:52:05.974063"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-18T20:52:05.974063"}}
+/type/author /authors/OL105245A 1 2008-04-01T03:28:50.625462 {"name": "National Seminar on a Decade of Orchid Research and Development (1994 New Delhi, India)", "last_modified": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "key": "/authors/OL105245A", "type": {"key": "/type/author"}, "revision": 1}
+/type/author /authors/OL10525120A 1 2022-07-19T04:06:27.528218 {"type": {"key": "/type/author"}, "name": "Liz Siivola", "key": "/authors/OL10525120A", "source_records": ["bwb:9781937165420"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-19T04:06:27.528218"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-19T04:06:27.528218"}}
+/type/author /authors/OL10525189A 1 2022-07-19T04:27:06.199648 {"type": {"key": "/type/author"}, "name": "Taryn A. Taylor", "key": "/authors/OL10525189A", "source_records": ["bwb:9780988629288"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-19T04:27:06.199648"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-19T04:27:06.199648"}}
+/type/author /authors/OL10525293A 1 2022-07-19T04:55:37.388562 {"type": {"key": "/type/author"}, "name": "Eugene Red Mcdaniel", "key": "/authors/OL10525293A", "source_records": ["bwb:9781936488940"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-19T04:55:37.388562"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-19T04:55:37.388562"}}
+/type/author /authors/OL10525347A 1 2022-07-19T05:20:57.411244 {"type": {"key": "/type/author"}, "name": "Elmer Blistein", "key": "/authors/OL10525347A", "source_records": ["bwb:9780822300175"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-19T05:20:57.411244"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-19T05:20:57.411244"}}
+/type/author /authors/OL1052594A 2 2008-08-19T23:39:11.163061 {"name": "Paolo De Luca", "personal_name": "Paolo De Luca", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T23:39:11.163061"}, "key": "/authors/OL1052594A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10525959A 1 2022-07-19T08:44:06.066689 {"type": {"key": "/type/author"}, "name": "Sara Zampieri", "key": "/authors/OL10525959A", "source_records": ["bwb:9781507146866"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-19T08:44:06.066689"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-19T08:44:06.066689"}}
+/type/author /authors/OL10526702A 1 2022-07-19T10:50:15.450913 {"type": {"key": "/type/author"}, "name": "Edwin A. Abbot", "key": "/authors/OL10526702A", "source_records": ["bwb:9781926500942"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-19T10:50:15.450913"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-19T10:50:15.450913"}}
+/type/author /authors/OL10526768A 1 2022-07-19T11:04:55.973928 {"type": {"key": "/type/author"}, "name": "E. B. Hilwig", "key": "/authors/OL10526768A", "source_records": ["bwb:9789058501196"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-19T11:04:55.973928"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-19T11:04:55.973928"}}
+/type/author /authors/OL10527006A 1 2022-07-19T11:52:37.261003 {"type": {"key": "/type/author"}, "name": "Peters, Jerry L., Jr.", "key": "/authors/OL10527006A", "source_records": ["bwb:9780736105668"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-19T11:52:37.261003"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-19T11:52:37.261003"}}
+/type/author /authors/OL10527359A 1 2022-07-19T13:05:25.666583 {"type": {"key": "/type/author"}, "name": "Timothy J. Moriarty", "key": "/authors/OL10527359A", "source_records": ["bwb:9781948365932"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-19T13:05:25.666583"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-19T13:05:25.666583"}}
+/type/author /authors/OL10527650A 1 2022-07-19T13:41:03.763073 {"type": {"key": "/type/author"}, "name": "Jannik Streeb", "key": "/authors/OL10527650A", "source_records": ["bwb:9783668498020"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-19T13:41:03.763073"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-19T13:41:03.763073"}}
+/type/author /authors/OL1052806A 2 2008-08-19T23:40:00.593348 {"name": "Aleksandr Nikolaevich Alymov", "personal_name": "Aleksandr Nikolaevich Alymov", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T23:40:00.593348"}, "key": "/authors/OL1052806A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10528133A 1 2022-07-19T15:00:44.808154 {"type": {"key": "/type/author"}, "name": "Charles Geyh", "key": "/authors/OL10528133A", "source_records": ["bwb:9781531005412"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-19T15:00:44.808154"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-19T15:00:44.808154"}}
+/type/author /authors/OL10528331A 1 2022-07-19T15:39:23.992627 {"type": {"key": "/type/author"}, "name": "Nina Wittmann", "key": "/authors/OL10528331A", "source_records": ["bwb:9783828842960"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-19T15:39:23.992627"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-19T15:39:23.992627"}}
+/type/author /authors/OL10528587A 1 2022-07-19T16:21:24.194635 {"type": {"key": "/type/author"}, "name": "James Edward Deeds", "key": "/authors/OL10528587A", "source_records": ["bwb:9781616895013"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-19T16:21:24.194635"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-19T16:21:24.194635"}}
+/type/author /authors/OL105290A 2 2008-09-09T04:08:07.240213 {"name": "Ma\u0304nasi\u0304 Mis\u0301ra", "personal_name": "Ma\u0304nasi\u0304 Mis\u0301ra", "last_modified": {"type": "/type/datetime", "value": "2008-09-09T04:08:07.240213"}, "key": "/authors/OL105290A", "birth_date": "1955", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10529203A 1 2022-07-19T17:31:57.468402 {"type": {"key": "/type/author"}, "name": "Karen Palmstein", "key": "/authors/OL10529203A", "source_records": ["bwb:9781645382904"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-19T17:31:57.468402"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-19T17:31:57.468402"}}
+/type/author /authors/OL10529211A 1 2022-07-19T17:32:34.316680 {"type": {"key": "/type/author"}, "name": "Berta Ziebart", "key": "/authors/OL10529211A", "source_records": ["bwb:9798470828460"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-19T17:32:34.316680"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-19T17:32:34.316680"}}
+/type/author /authors/OL10529388A 1 2022-07-19T17:50:48.613820 {"type": {"key": "/type/author"}, "name": "Ruben Clymer", "key": "/authors/OL10529388A", "source_records": ["bwb:9781647987367"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-19T17:50:48.613820"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-19T17:50:48.613820"}}
+/type/author /authors/OL10529671A 1 2022-07-19T18:26:41.906481 {"type": {"key": "/type/author"}, "name": "Livre D. O. R. Bapteme LIVRE DOR BAPTEME", "key": "/authors/OL10529671A", "source_records": ["bwb:9781672969178"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-19T18:26:41.906481"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-19T18:26:41.906481"}}
+/type/author /authors/OL10529835A 1 2022-07-19T18:45:22.369881 {"type": {"key": "/type/author"}, "name": "Sergey Rinner", "key": "/authors/OL10529835A", "source_records": ["bwb:9781687543042"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-19T18:45:22.369881"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-19T18:45:22.369881"}}
+/type/author /authors/OL10529941A 1 2022-07-19T18:58:38.147902 {"type": {"key": "/type/author"}, "name": "Hemant K. Sharma", "key": "/authors/OL10529941A", "source_records": ["bwb:9781531019372"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-19T18:58:38.147902"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-19T18:58:38.147902"}}
+/type/author /authors/OL10530027A 1 2022-07-19T19:08:34.570597 {"type": {"key": "/type/author"}, "name": "R. Sosnow", "key": "/authors/OL10530027A", "source_records": ["bwb:9780967848051"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-19T19:08:34.570597"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-19T19:08:34.570597"}}
+/type/author /authors/OL10530226A 1 2022-07-19T19:36:45.951640 {"type": {"key": "/type/author"}, "name": "Hagenbeck", "key": "/authors/OL10530226A", "source_records": ["bwb:9781647980733"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-19T19:36:45.951640"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-19T19:36:45.951640"}}
+/type/author /authors/OL10530838A 1 2022-07-19T20:08:28.735657 {"type": {"key": "/type/author"}, "name": "Jazlyn Lakin", "key": "/authors/OL10530838A", "source_records": ["bwb:9798833484494"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-19T20:08:28.735657"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-19T20:08:28.735657"}}
+/type/author /authors/OL10531024A 1 2022-07-19T20:14:52.011648 {"type": {"key": "/type/author"}, "name": "Life Animаniаcs", "key": "/authors/OL10531024A", "source_records": ["bwb:9798437895566"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-19T20:14:52.011648"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-19T20:14:52.011648"}}
+/type/author /authors/OL10531065A 1 2022-07-19T20:15:50.666514 {"type": {"key": "/type/author"}, "name": "Andrew J. Wright", "key": "/authors/OL10531065A", "source_records": ["bwb:9798885366489"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-19T20:15:50.666514"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-19T20:15:50.666514"}}
+/type/author /authors/OL10531139A 1 2022-07-19T20:18:05.130759 {"type": {"key": "/type/author"}, "name": "Ana Feest", "key": "/authors/OL10531139A", "source_records": ["bwb:9798788137537"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-19T20:18:05.130759"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-19T20:18:05.130759"}}
+/type/author /authors/OL10531412A 1 2022-07-19T20:27:47.515006 {"type": {"key": "/type/author"}, "name": "Allison Nicole", "key": "/authors/OL10531412A", "source_records": ["bwb:9798986428901"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-19T20:27:47.515006"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-19T20:27:47.515006"}}
+/type/author /authors/OL10531471A 1 2022-07-19T20:30:32.135500 {"type": {"key": "/type/author"}, "name": "Marganne Glasser", "key": "/authors/OL10531471A", "source_records": ["bwb:9798985212501"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-19T20:30:32.135500"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-19T20:30:32.135500"}}
+/type/author /authors/OL10531726A 1 2022-07-19T20:37:06.069436 {"type": {"key": "/type/author"}, "name": "Jennifer LaCross", "key": "/authors/OL10531726A", "source_records": ["bwb:9798809331678"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-19T20:37:06.069436"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-19T20:37:06.069436"}}
+/type/author /authors/OL10531735A 1 2022-07-19T20:37:26.922498 {"type": {"key": "/type/author"}, "name": "Dracula Calender", "key": "/authors/OL10531735A", "source_records": ["bwb:9798786370127"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-19T20:37:26.922498"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-19T20:37:26.922498"}}
+/type/author /authors/OL10532075A 1 2022-07-19T20:46:32.359742 {"type": {"key": "/type/author"}, "name": "Brenda Tofte", "key": "/authors/OL10532075A", "source_records": ["bwb:9781611633467"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-19T20:46:32.359742"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-19T20:46:32.359742"}}
+/type/author /authors/OL10532332A 1 2022-07-19T20:54:45.538088 {"type": {"key": "/type/author"}, "name": "Kim O'Hara", "key": "/authors/OL10532332A", "source_records": ["bwb:9781608082797"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-19T20:54:45.538088"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-19T20:54:45.538088"}}
+/type/author /authors/OL10532482A 1 2022-07-19T20:59:21.091454 {"type": {"key": "/type/author"}, "name": "Badlove Design", "key": "/authors/OL10532482A", "source_records": ["bwb:9798986493206"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-19T20:59:21.091454"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-19T20:59:21.091454"}}
+/type/author /authors/OL10532911A 1 2022-07-19T21:10:05.182184 {"type": {"key": "/type/author"}, "name": "Sandra Snipes", "key": "/authors/OL10532911A", "source_records": ["bwb:9798406357163"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-19T21:10:05.182184"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-19T21:10:05.182184"}}
+/type/author /authors/OL10532978A 1 2022-07-19T21:11:20.886626 {"type": {"key": "/type/author"}, "name": "Password book", "key": "/authors/OL10532978A", "source_records": ["bwb:9798476441410"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-19T21:11:20.886626"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-19T21:11:20.886626"}}
+/type/author /authors/OL10533203A 1 2022-07-19T21:17:48.637953 {"type": {"key": "/type/author"}, "name": "Sophie CLAIRE DIAZ ESPINOSA", "key": "/authors/OL10533203A", "source_records": ["bwb:9781071590393"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-19T21:17:48.637953"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-19T21:17:48.637953"}}
+/type/author /authors/OL10533505A 1 2022-07-19T21:25:37.281260 {"type": {"key": "/type/author"}, "name": "Karl Theodor Ferdinand Gr\u00fcn", "key": "/authors/OL10533505A", "source_records": ["bwb:9780270040524"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-19T21:25:37.281260"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-19T21:25:37.281260"}}
+/type/author /authors/OL10533687A 1 2022-07-19T21:32:06.700464 {"type": {"key": "/type/author"}, "name": "Jakob Philipp Kulik", "key": "/authors/OL10533687A", "source_records": ["bwb:9780270246117"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-19T21:32:06.700464"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-19T21:32:06.700464"}}
+/type/author /authors/OL105339A 2 2008-09-09T04:08:07.240213 {"name": "Shamsulhuda\u0301 Ra\u0304jvi\u0304", "personal_name": "Shamsulhuda\u0301 Ra\u0304jvi\u0304", "last_modified": {"type": "/type/datetime", "value": "2008-09-09T04:08:07.240213"}, "key": "/authors/OL105339A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10534377A 1 2022-07-19T21:53:13.995279 {"type": {"key": "/type/author"}, "name": "R\u00fcckl J.", "key": "/authors/OL10534377A", "source_records": ["bwb:9789042942646"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-19T21:53:13.995279"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-19T21:53:13.995279"}}
+/type/author /authors/OL10535089A 1 2022-07-19T22:20:22.307997 {"type": {"key": "/type/author"}, "name": "Fix Guns Running Log Book", "key": "/authors/OL10535089A", "source_records": ["bwb:9798491283651"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-19T22:20:22.307997"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-19T22:20:22.307997"}}
+/type/author /authors/OL1053528A 1 2008-04-01T03:28:50.625462 {"name": "Watson, David G.", "personal_name": "Watson, David G.", "last_modified": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "key": "/authors/OL1053528A", "birth_date": "1934", "type": {"key": "/type/author"}, "revision": 1}
+/type/author /authors/OL10535591A 1 2022-07-19T22:36:26.587019 {"type": {"key": "/type/author"}, "name": "hallal hallal", "key": "/authors/OL10535591A", "source_records": ["bwb:9798800793840"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-19T22:36:26.587019"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-19T22:36:26.587019"}}
+/type/author /authors/OL10535635A 1 2022-07-19T22:37:52.590134 {"type": {"key": "/type/author"}, "name": "Hamster Sketchbook", "key": "/authors/OL10535635A", "source_records": ["bwb:9798545094196"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-19T22:37:52.590134"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-19T22:37:52.590134"}}
+/type/author /authors/OL10535955A 1 2022-07-19T22:52:19.477966 {"type": {"key": "/type/author"}, "name": "Caelan Huntress", "key": "/authors/OL10535955A", "source_records": ["bwb:9798986461717"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-19T22:52:19.477966"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-19T22:52:19.477966"}}
+/type/author /authors/OL10536105A 1 2022-07-19T22:57:00.000329 {"type": {"key": "/type/author"}, "name": "Paula Lillard Preschlack", "key": "/authors/OL10536105A", "source_records": ["bwb:9781641608923"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-19T22:57:00.000329"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-19T22:57:00.000329"}}
+/type/author /authors/OL10536261A 1 2022-07-19T23:01:11.231823 {"type": {"key": "/type/author"}, "name": "E. F. Coleman", "key": "/authors/OL10536261A", "source_records": ["bwb:9798986063706"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-19T23:01:11.231823"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-19T23:01:11.231823"}}
+/type/author /authors/OL10536640A 1 2022-07-19T23:09:31.946086 {"type": {"key": "/type/author"}, "name": "Windy Mcnees", "key": "/authors/OL10536640A", "source_records": ["bwb:9798454493493"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-19T23:09:31.946086"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-19T23:09:31.946086"}}
+/type/author /authors/OL10536883A 1 2022-07-19T23:16:48.239108 {"type": {"key": "/type/author"}, "name": "Bianca Rita Cataldi", "key": "/authors/OL10536883A", "source_records": ["bwb:9781667400679"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-19T23:16:48.239108"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-19T23:16:48.239108"}}
+/type/author /authors/OL10538581A 1 2022-07-20T00:21:29.450061 {"type": {"key": "/type/author"}, "name": "V. Ram", "key": "/authors/OL10538581A", "source_records": ["bwb:9781684159161"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T00:21:29.450061"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T00:21:29.450061"}}
+/type/author /authors/OL1053859A 2 2008-08-19T23:44:34.402244 {"name": "Olga L. Crocker", "personal_name": "Olga L. Crocker", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T23:44:34.402244"}, "key": "/authors/OL1053859A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10538668A 1 2022-07-20T00:26:07.079721 {"type": {"key": "/type/author"}, "name": "Vanessa Stretch", "key": "/authors/OL10538668A", "source_records": ["bwb:9798986445007"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T00:26:07.079721"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T00:26:07.079721"}}
+/type/author /authors/OL10539221A 1 2022-07-20T00:44:23.432182 {"type": {"key": "/type/author"}, "name": "Cesar Cabrera", "key": "/authors/OL10539221A", "source_records": ["bwb:9781950823376"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T00:44:23.432182"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T00:44:23.432182"}}
+/type/author /authors/OL10539452A 1 2022-07-20T00:51:08.092790 {"type": {"key": "/type/author"}, "name": "P. G. Negreira", "key": "/authors/OL10539452A", "source_records": ["bwb:9781071581896"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T00:51:08.092790"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T00:51:08.092790"}}
+/type/author /authors/OL10539522A 1 2022-07-20T00:53:50.509136 {"type": {"key": "/type/author"}, "name": "Lawn Mowing Treasure Hunting Log Book", "key": "/authors/OL10539522A", "source_records": ["bwb:9798443411064"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T00:53:50.509136"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T00:53:50.509136"}}
+/type/author /authors/OL10539772A 1 2022-07-20T00:59:19.579397 {"type": {"key": "/type/author"}, "name": "Rama Rama Bradley", "key": "/authors/OL10539772A", "source_records": ["bwb:9798831978391"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T00:59:19.579397"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T00:59:19.579397"}}
+/type/author /authors/OL10540034A 1 2022-07-20T01:06:00.939349 {"type": {"key": "/type/author"}, "name": "Ana Rubia de Moraes", "key": "/authors/OL10540034A", "source_records": ["bwb:9781071593479"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T01:06:00.939349"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T01:06:00.939349"}}
+/type/author /authors/OL10540089A 1 2022-07-20T01:08:26.628976 {"type": {"key": "/type/author"}, "name": "Cynthia Yaworske", "key": "/authors/OL10540089A", "source_records": ["bwb:9798986083001"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T01:08:26.628976"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T01:08:26.628976"}}
+/type/author /authors/OL10540283A 1 2022-07-20T01:14:16.871920 {"type": {"key": "/type/author"}, "name": "1810-1858 L\u00e9on Feug\u00e8re", "key": "/authors/OL10540283A", "source_records": ["bwb:9780270120592"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T01:14:16.871920"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T01:14:16.871920"}}
+/type/author /authors/OL10540518A 1 2022-07-20T01:22:58.829387 {"type": {"key": "/type/author"}, "name": "J. A****", "key": "/authors/OL10540518A", "source_records": ["bwb:9780270414325"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T01:22:58.829387"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T01:22:58.829387"}}
+/type/author /authors/OL1054051A 1 2008-04-01T03:28:50.625462 {"name": "Monica-Augsburg (Project : Germany)", "last_modified": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "key": "/authors/OL1054051A", "type": {"key": "/type/author"}, "revision": 1}
+/type/author /authors/OL10540685A 1 2022-07-20T01:29:12.335452 {"type": {"key": "/type/author"}, "name": "Andre Charles Lajaille", "key": "/authors/OL10540685A", "source_records": ["bwb:9780270647334"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T01:29:12.335452"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T01:29:12.335452"}}
+/type/author /authors/OL10540739A 1 2022-07-20T01:31:31.192890 {"type": {"key": "/type/author"}, "name": "Dialecte Gascon", "key": "/authors/OL10540739A", "source_records": ["bwb:9780270719550"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T01:31:31.192890"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T01:31:31.192890"}}
+/type/author /authors/OL10541563A 1 2022-07-20T02:03:11.348839 {"type": {"key": "/type/author"}, "name": "G&J Publishing", "key": "/authors/OL10541563A", "source_records": ["bwb:9798808490673"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T02:03:11.348839"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T02:03:11.348839"}}
+/type/author /authors/OL1054178A 2 2008-08-19T23:45:53.817971 {"name": "P. J. van Swigchem", "personal_name": "P. J. van Swigchem", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T23:45:53.817971"}, "key": "/authors/OL1054178A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10541847A 1 2022-07-20T02:13:35.277003 {"type": {"key": "/type/author"}, "name": "Mini Bauherr", "key": "/authors/OL10541847A", "source_records": ["bwb:9798755025935"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T02:13:35.277003"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T02:13:35.277003"}}
+/type/author /authors/OL10542250A 1 2022-07-20T02:28:28.760055 {"type": {"key": "/type/author"}, "name": "Terry Williams Spicer", "key": "/authors/OL10542250A", "source_records": ["bwb:9781944359911"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T02:28:28.760055"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T02:28:28.760055"}}
+/type/author /authors/OL10542403A 1 2022-07-20T02:34:21.283994 {"type": {"key": "/type/author"}, "name": "Robin Schepper", "key": "/authors/OL10542403A", "source_records": ["bwb:9781954854963"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T02:34:21.283994"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T02:34:21.283994"}}
+/type/author /authors/OL10542431A 1 2022-07-20T02:35:19.206029 {"type": {"key": "/type/author"}, "name": "Charlotte Pipereau", "key": "/authors/OL10542431A", "source_records": ["bwb:9781071584149"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T02:35:19.206029"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T02:35:19.206029"}}
+/type/author /authors/OL1054267A 2 2008-08-19T23:46:19.128089 {"name": "Marc Desaubliaux", "personal_name": "Marc Desaubliaux", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T23:46:19.128089"}, "key": "/authors/OL1054267A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10542796A 1 2022-07-20T02:44:21.020835 {"type": {"key": "/type/author"}, "name": "David Tietmeyer", "key": "/authors/OL10542796A", "source_records": ["bwb:9781737303114"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T02:44:21.020835"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T02:44:21.020835"}}
+/type/author /authors/OL10542817A 1 2022-07-20T02:45:54.086805 {"type": {"key": "/type/author"}, "name": "NewLife Church", "key": "/authors/OL10542817A", "source_records": ["bwb:9781735328430"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T02:45:54.086805"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T02:45:54.086805"}}
+/type/author /authors/OL10542992A 1 2022-07-20T02:51:04.215167 {"type": {"key": "/type/author"}, "name": "Camille L. Miller", "key": "/authors/OL10542992A", "source_records": ["bwb:9781954047600"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T02:51:04.215167"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T02:51:04.215167"}}
+/type/author /authors/OL10543311A 1 2022-07-20T03:03:42.558208 {"type": {"key": "/type/author"}, "name": "Johannes Lap\u00e4us", "key": "/authors/OL10543311A", "source_records": ["bwb:9780270347289"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T03:03:42.558208"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T03:03:42.558208"}}
+/type/author /authors/OL10543465A 1 2022-07-20T03:09:46.611286 {"type": {"key": "/type/author"}, "name": "Jacques Maleville", "key": "/authors/OL10543465A", "source_records": ["bwb:9780270571189"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T03:09:46.611286"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T03:09:46.611286"}}
+/type/author /authors/OL10543697A 1 2022-07-20T03:20:19.736985 {"type": {"key": "/type/author"}, "name": "Parameshachari B", "key": "/authors/OL10543697A", "source_records": ["bwb:9789815036398"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T03:20:19.736985"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T03:20:19.736985"}}
+/type/author /authors/OL10543762A 1 2022-07-20T03:24:53.802088 {"type": {"key": "/type/author"}, "name": "Tiffany Rich", "key": "/authors/OL10543762A", "source_records": ["bwb:9781792393969"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T03:24:53.802088"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T03:24:53.802088"}}
+/type/author /authors/OL10543885A 1 2022-07-20T03:30:19.486819 {"type": {"key": "/type/author"}, "name": "Maurizio Coccorese", "key": "/authors/OL10543885A", "source_records": ["bwb:9798817038699"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T03:30:19.486819"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T03:30:19.486819"}}
+/type/author /authors/OL10544609A 1 2022-07-20T03:59:47.185007 {"type": {"key": "/type/author"}, "name": "Kelly Evelyn", "key": "/authors/OL10544609A", "source_records": ["bwb:9798830479073"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T03:59:47.185007"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T03:59:47.185007"}}
+/type/author /authors/OL10544670A 1 2022-07-20T04:01:47.682738 {"type": {"key": "/type/author"}, "name": "Koven Dream", "key": "/authors/OL10544670A", "source_records": ["bwb:9798825574905"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T04:01:47.682738"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T04:01:47.682738"}}
+/type/author /authors/OL10545172A 1 2022-07-20T04:21:44.619459 {"type": {"key": "/type/author"}, "name": "Lungu Viorelia", "key": "/authors/OL10545172A", "source_records": ["bwb:9798887226279"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T04:21:44.619459"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T04:21:44.619459"}}
+/type/author /authors/OL10545244A 1 2022-07-20T04:24:59.426334 {"type": {"key": "/type/author"}, "name": "Ward Baird", "key": "/authors/OL10545244A", "source_records": ["bwb:9798536889503"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T04:24:59.426334"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T04:24:59.426334"}}
+/type/author /authors/OL10545455A 1 2022-07-20T04:30:23.794100 {"type": {"key": "/type/author"}, "name": "Thomas MATEO", "key": "/authors/OL10545455A", "source_records": ["bwb:9798834345336"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T04:30:23.794100"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T04:30:23.794100"}}
+/type/author /authors/OL10546118A 1 2022-07-20T04:56:04.940702 {"type": {"key": "/type/author"}, "name": "Antoine Michel Carette", "key": "/authors/OL10546118A", "source_records": ["bwb:9780270500486"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T04:56:04.940702"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T04:56:04.940702"}}
+/type/author /authors/OL1054631A 2 2008-08-19T23:47:57.646156 {"name": "Mariano Para", "personal_name": "Mariano Para", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T23:47:57.646156"}, "key": "/authors/OL1054631A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10546537A 1 2022-07-20T05:17:53.868089 {"type": {"key": "/type/author"}, "name": "Bouzi Deаth Nⲟte", "key": "/authors/OL10546537A", "source_records": ["bwb:9798444417010"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T05:17:53.868089"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T05:17:53.868089"}}
+/type/author /authors/OL10546938A 1 2022-07-20T05:35:34.621294 {"type": {"key": "/type/author"}, "name": "sema deman", "key": "/authors/OL10546938A", "source_records": ["bwb:9798411274080"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T05:35:34.621294"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T05:35:34.621294"}}
+/type/author /authors/OL10546954A 1 2022-07-20T05:36:05.893301 {"type": {"key": "/type/author"}, "name": "Orr, CFP, Mark", "key": "/authors/OL10546954A", "source_records": ["bwb:9798456174598"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T05:36:05.893301"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T05:36:05.893301"}}
+/type/author /authors/OL10547059A 1 2022-07-20T05:41:58.616007 {"type": {"key": "/type/author"}, "name": "Hallel Conner", "key": "/authors/OL10547059A", "source_records": ["bwb:9798986448503"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T05:41:58.616007"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T05:41:58.616007"}}
+/type/author /authors/OL10547090A 1 2022-07-20T05:43:19.006094 {"type": {"key": "/type/author"}, "name": "Dea Print", "key": "/authors/OL10547090A", "source_records": ["bwb:9798485758769"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T05:43:19.006094"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T05:43:19.006094"}}
+/type/author /authors/OL1054729A 2 2008-08-19T23:48:20.061427 {"name": "R. J. Hart", "personal_name": "R. J. Hart", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T23:48:20.061427"}, "key": "/authors/OL1054729A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL1054767A 2 2008-08-19T21:33:58.26401 {"name": "Elmar Unland", "personal_name": "Elmar Unland", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T21:33:58.26401"}, "key": "/authors/OL1054767A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10547698A 1 2022-07-20T06:05:41.931325 {"type": {"key": "/type/author"}, "name": "Galina Kupriyeva", "key": "/authors/OL10547698A", "source_records": ["bwb:9781071518038"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T06:05:41.931325"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T06:05:41.931325"}}
+/type/author /authors/OL10548013A 1 2022-07-20T06:16:02.210844 {"type": {"key": "/type/author"}, "name": "Camp Counselor Password book", "key": "/authors/OL10548013A", "source_records": ["bwb:9798493381041"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T06:16:02.210844"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T06:16:02.210844"}}
+/type/author /authors/OL1054834A 2 2008-08-19T23:48:47.962579 {"name": "Marek K\u0142odzin\u0301ski", "personal_name": "Marek K\u0142odzin\u0301ski", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T23:48:47.962579"}, "key": "/authors/OL1054834A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10548785A 1 2022-07-20T07:15:32.167239 {"type": {"key": "/type/author"}, "name": "Jaime Greene", "key": "/authors/OL10548785A", "source_records": ["bwb:9798885810135"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T07:15:32.167239"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T07:15:32.167239"}}
+/type/author /authors/OL10549188A 1 2022-07-20T07:34:09.469512 {"type": {"key": "/type/author"}, "name": "Youcef Boudjbiha", "key": "/authors/OL10549188A", "source_records": ["bwb:9781982294847"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T07:34:09.469512"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T07:34:09.469512"}}
+/type/author /authors/OL10550024A 1 2022-07-20T08:11:24.047294 {"type": {"key": "/type/author"}, "name": "Rita Sineiro", "key": "/authors/OL10550024A", "source_records": ["bwb:9788418972058"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T08:11:24.047294"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T08:11:24.047294"}}
+/type/author /authors/OL10550319A 1 2022-07-20T08:21:46.228059 {"type": {"key": "/type/author"}, "name": "AlloArto A", "key": "/authors/OL10550319A", "source_records": ["bwb:9798783136870"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T08:21:46.228059"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T08:21:46.228059"}}
+/type/author /authors/OL10551201A 1 2022-07-20T09:05:55.431648 {"type": {"key": "/type/author"}, "name": "Horacek, H. Joseph, Jr.", "key": "/authors/OL10551201A", "source_records": ["bwb:9781735458809"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T09:05:55.431648"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T09:05:55.431648"}}
+/type/author /authors/OL1055149A 2 2008-08-19T23:50:15.173364 {"name": "Manfred Fuhrich", "personal_name": "Manfred Fuhrich", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T23:50:15.173364"}, "key": "/authors/OL1055149A", "birth_date": "1950", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL1055151A 2 2008-08-19T23:50:15.589245 {"name": "P. Hoyle", "personal_name": "P. Hoyle", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T23:50:15.589245"}, "key": "/authors/OL1055151A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10551611A 1 2022-07-20T09:22:27.198394 {"type": {"key": "/type/author"}, "name": "Circe Circe Angulo", "key": "/authors/OL10551611A", "source_records": ["bwb:9781688974050"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T09:22:27.198394"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T09:22:27.198394"}}
+/type/author /authors/OL10551960A 1 2022-07-20T09:37:57.513421 {"type": {"key": "/type/author"}, "name": "Routine Journals", "key": "/authors/OL10551960A", "source_records": ["bwb:9798477296804"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T09:37:57.513421"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T09:37:57.513421"}}
+/type/author /authors/OL10551978A 1 2022-07-20T09:38:39.269410 {"type": {"key": "/type/author"}, "name": "EXPR", "key": "/authors/OL10551978A", "source_records": ["bwb:9798526287661"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T09:38:39.269410"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T09:38:39.269410"}}
+/type/author /authors/OL10552547A 1 2022-07-20T10:01:17.661931 {"type": {"key": "/type/author"}, "name": "Jorge Daren", "key": "/authors/OL10552547A", "source_records": ["bwb:9798429669175"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T10:01:17.661931"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T10:01:17.661931"}}
+/type/author /authors/OL10552621A 1 2022-07-20T10:03:00.444462 {"type": {"key": "/type/author"}, "name": "Audition Rehearse Freak Out Kill it Shooting Log Book", "key": "/authors/OL10552621A", "source_records": ["bwb:9798435572520"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T10:03:00.444462"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T10:03:00.444462"}}
+/type/author /authors/OL10552688A 1 2022-07-20T10:06:20.867305 {"type": {"key": "/type/author"}, "name": "Jos\u00e9 A. \"Tony\" Ruano", "key": "/authors/OL10552688A", "source_records": ["bwb:9781071584866"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T10:06:20.867305"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T10:06:20.867305"}}
+/type/author /authors/OL10553250A 1 2022-07-20T10:36:55.081761 {"type": {"key": "/type/author"}, "name": "Georges Antoine Marie Girard", "key": "/authors/OL10553250A", "source_records": ["bwb:9780270886818"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T10:36:55.081761"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T10:36:55.081761"}}
+/type/author /authors/OL10553516A 1 2022-07-20T10:48:13.514811 {"type": {"key": "/type/author"}, "name": "Henri Joseph Gisquet", "key": "/authors/OL10553516A", "source_records": ["bwb:9780270986051"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T10:48:13.514811"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T10:48:13.514811"}}
+/type/author /authors/OL10553633A 1 2022-07-20T10:53:26.936467 {"type": {"key": "/type/author"}, "name": "Johann Ephraim Scheibel", "key": "/authors/OL10553633A", "source_records": ["bwb:9780274008896"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T10:53:26.936467"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T10:53:26.936467"}}
+/type/author /authors/OL10554028A 1 2022-07-20T11:13:35.072140 {"type": {"key": "/type/author"}, "name": "Jean Charlier De Gerson", "key": "/authors/OL10554028A", "source_records": ["bwb:9780274094585"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T11:13:35.072140"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T11:13:35.072140"}}
+/type/author /authors/OL10554131A 1 2022-07-20T11:18:56.239862 {"type": {"key": "/type/author"}, "name": "Bo Jardin Botanique Alpin De La Linnaea", "key": "/authors/OL10554131A", "source_records": ["bwb:9780274116188"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T11:18:56.239862"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T11:18:56.239862"}}
+/type/author /authors/OL10554398A 1 2022-07-20T11:31:41.571110 {"type": {"key": "/type/author"}, "name": "Niklaus Emanuel Wetzel", "key": "/authors/OL10554398A", "source_records": ["bwb:9780274176113"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T11:31:41.571110"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T11:31:41.571110"}}
+/type/author /authors/OL10554448A 1 2022-07-20T11:33:55.790760 {"type": {"key": "/type/author"}, "name": "Ernst Wilhelmine", "key": "/authors/OL10554448A", "source_records": ["bwb:9780274186297"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T11:33:55.790760"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T11:33:55.790760"}}
+/type/author /authors/OL10554533A 1 2022-07-20T11:36:35.606262 {"type": {"key": "/type/author"}, "name": "Gustav Georg Winkler", "key": "/authors/OL10554533A", "source_records": ["bwb:9780274199839"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T11:36:35.606262"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T11:36:35.606262"}}
+/type/author /authors/OL10554682A 1 2022-07-20T11:44:03.978866 {"type": {"key": "/type/author"}, "name": "James B. Lilleker", "key": "/authors/OL10554682A", "source_records": ["bwb:9781649974495"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T11:44:03.978866"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T11:44:03.978866"}}
+/type/author /authors/OL10554787A 1 2022-07-20T11:48:39.886979 {"type": {"key": "/type/author"}, "name": "W. R. Rowan", "key": "/authors/OL10554787A", "source_records": ["bwb:9780274246304"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T11:48:39.886979"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T11:48:39.886979"}}
+/type/author /authors/OL10554797A 1 2022-07-20T11:49:19.352205 {"type": {"key": "/type/author"}, "name": "Jean Fran\u00e7ois Leturcq", "key": "/authors/OL10554797A", "source_records": ["bwb:9780274249763"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T11:49:19.352205"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T11:49:19.352205"}}
+/type/author /authors/OL10555049A 1 2022-07-20T11:58:15.655722 {"type": {"key": "/type/author"}, "name": "Martin Gottlieb Wilhelm Brandt", "key": "/authors/OL10555049A", "source_records": ["bwb:9780274284429"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T11:58:15.655722"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T11:58:15.655722"}}
+/type/author /authors/OL10555086A 1 2022-07-20T11:59:25.025033 {"type": {"key": "/type/author"}, "name": "Rafael DeLattore", "key": "/authors/OL10555086A", "source_records": ["bwb:9781956731262"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T11:59:25.025033"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T11:59:25.025033"}}
+/type/author /authors/OL10555248A 1 2022-07-20T12:04:25.503596 {"type": {"key": "/type/author"}, "name": "Jean Antoine de la Tour de Varan", "key": "/authors/OL10555248A", "source_records": ["bwb:9780274304158"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T12:04:25.503596"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T12:04:25.503596"}}
+/type/author /authors/OL10555332A 1 2022-07-20T12:07:29.380536 {"type": {"key": "/type/author"}, "name": "YanJie Liang", "key": "/authors/OL10555332A", "source_records": ["bwb:9781957235288"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T12:07:29.380536"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T12:07:29.380536"}}
+/type/author /authors/OL10555376A 1 2022-07-20T12:08:51.817150 {"type": {"key": "/type/author"}, "name": "Maurice Charton De Meur", "key": "/authors/OL10555376A", "source_records": ["bwb:9780274316489"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T12:08:51.817150"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T12:08:51.817150"}}
+/type/author /authors/OL1055547A 2 2008-08-19T23:52:08.715437 {"name": "Franz Dworschak", "personal_name": "Franz Dworschak", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T23:52:08.715437"}, "key": "/authors/OL1055547A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10555564A 1 2022-07-20T12:14:05.025596 {"type": {"key": "/type/author"}, "name": "Alfred Mller", "key": "/authors/OL10555564A", "source_records": ["bwb:9780274333271"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T12:14:05.025596"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T12:14:05.025596"}}
+/type/author /authors/OL10555580A 1 2022-07-20T12:14:45.843069 {"type": {"key": "/type/author"}, "name": "Oskar Konstantin Wulff", "key": "/authors/OL10555580A", "source_records": ["bwb:9780274336623"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T12:14:45.843069"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T12:14:45.843069"}}
+/type/author /authors/OL10555849A 1 2022-07-20T12:25:05.354605 {"type": {"key": "/type/author"}, "name": "France Commission de la Topographie Des", "key": "/authors/OL10555849A", "source_records": ["bwb:9780274381876"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T12:25:05.354605"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T12:25:05.354605"}}
+/type/author /authors/OL10556178A 1 2022-07-20T12:40:42.852025 {"type": {"key": "/type/author"}, "name": "M. De Montyon", "key": "/authors/OL10556178A", "source_records": ["bwb:9780274451449"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T12:40:42.852025"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T12:40:42.852025"}}
+/type/author /authors/OL10556401A 1 2022-07-20T12:48:04.341650 {"type": {"key": "/type/author"}, "name": "Fritz Schoell", "key": "/authors/OL10556401A", "source_records": ["bwb:9780274489152"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T12:48:04.341650"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T12:48:04.341650"}}
+/type/author /authors/OL1055664A 2 2008-08-19T23:52:37.627274 {"name": "Michel Christol", "personal_name": "Michel Christol", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T23:52:37.627274"}, "key": "/authors/OL1055664A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10556752A 1 2022-07-20T12:58:47.927523 {"type": {"key": "/type/author"}, "name": "H. R. (Henri Raymond) 1831-19 Casgrain", "key": "/authors/OL10556752A", "source_records": ["bwb:9780274537945"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T12:58:47.927523"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T12:58:47.927523"}}
+/type/author /authors/OL10556938A 1 2022-07-20T13:01:43.883390 {"type": {"key": "/type/author"}, "name": "Dorlodot Henri De", "key": "/authors/OL10556938A", "source_records": ["bwb:9780274558599"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T13:01:43.883390"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T13:01:43.883390"}}
+/type/author /authors/OL10557744A 1 2022-07-20T13:55:10.890334 {"type": {"key": "/type/author"}, "name": "Jos\u00e9 Francisco Paula de Se\u00f1\u00e1n", "key": "/authors/OL10557744A", "source_records": ["bwb:9780341865773"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T13:55:10.890334"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T13:55:10.890334"}}
+/type/author /authors/OL10557955A 1 2022-07-20T14:39:47.416924 {"type": {"key": "/type/author"}, "name": "D. E. Cranenburgh", "key": "/authors/OL10557955A", "source_records": ["bwb:9780342102747"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T14:39:47.416924"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T14:39:47.416924"}}
+/type/author /authors/OL10558147A 1 2022-07-20T15:26:19.872485 {"type": {"key": "/type/author"}, "name": "Beccles Fen", "key": "/authors/OL10558147A", "source_records": ["bwb:9780342353750"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T15:26:19.872485"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T15:26:19.872485"}}
+/type/author /authors/OL10558551A 1 2022-07-20T16:02:54.870915 {"type": {"key": "/type/author"}, "name": "Kentucky State Agent at Washington [", "key": "/authors/OL10558551A", "source_records": ["bwb:9780342563685"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T16:02:54.870915"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T16:02:54.870915"}}
+/type/author /authors/OL10558634A 1 2022-07-20T16:06:04.646408 {"type": {"key": "/type/author"}, "name": "Stephen Arnold Douglas", "key": "/authors/OL10558634A", "source_records": ["bwb:9780342590704"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T16:06:04.646408"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T16:06:04.646408"}}
+/type/author /authors/OL10558918A 1 2022-07-20T16:24:51.046515 {"type": {"key": "/type/author"}, "name": "Frederick George Nichols", "key": "/authors/OL10558918A", "source_records": ["bwb:9780342715718"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T16:24:51.046515"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T16:24:51.046515"}}
+/type/author /authors/OL10559045A 1 2022-07-20T16:33:22.275711 {"type": {"key": "/type/author"}, "name": "Edith Livermore", "key": "/authors/OL10559045A", "source_records": ["bwb:9780342767830"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T16:33:22.275711"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T16:33:22.275711"}}
+/type/author /authors/OL10559173A 1 2022-07-20T16:42:58.003506 {"type": {"key": "/type/author"}, "name": "Uriah S. Hollister", "key": "/authors/OL10559173A", "source_records": ["bwb:9780342826940"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T16:42:58.003506"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T16:42:58.003506"}}
+/type/author /authors/OL10559374A 1 2022-07-20T16:57:11.195866 {"type": {"key": "/type/author"}, "name": "J. E. 1819-1889 Nourse", "key": "/authors/OL10559374A", "source_records": ["bwb:9780342908615"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T16:57:11.195866"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T16:57:11.195866"}}
+/type/author /authors/OL10559536A 1 2022-07-20T17:08:49.634814 {"type": {"key": "/type/author"}, "name": "Malverd A. B. 1863 Howe", "key": "/authors/OL10559536A", "source_records": ["bwb:9780342976102"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T17:08:49.634814"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T17:08:49.634814"}}
+/type/author /authors/OL10559836A 1 2022-07-20T17:26:29.009946 {"type": {"key": "/type/author"}, "name": "Edmund 1645-1699 Cn Bohun", "key": "/authors/OL10559836A", "source_records": ["bwb:9780343080877"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T17:26:29.009946"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T17:26:29.009946"}}
+/type/author /authors/OL10559867A 1 2022-07-20T17:27:14.677165 {"type": {"key": "/type/author"}, "name": "United States Bureau of Fisheries [Fro", "key": "/authors/OL10559867A", "source_records": ["bwb:9780343085544"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T17:27:14.677165"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T17:27:14.677165"}}
+/type/author /authors/OL10560137A 1 2022-07-20T17:41:25.569244 {"type": {"key": "/type/author"}, "name": "Boyce Alexander Drummond", "key": "/authors/OL10560137A", "source_records": ["bwb:9780343166519"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T17:41:25.569244"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T17:41:25.569244"}}
+/type/author /authors/OL10560209A 1 2022-07-20T17:48:17.449123 {"type": {"key": "/type/author"}, "name": "Franklin T. 1864-1949 Baker", "key": "/authors/OL10560209A", "source_records": ["bwb:9780343220334"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T17:48:17.449123"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T17:48:17.449123"}}
+/type/author /authors/OL10560362A 1 2022-07-20T18:00:34.855660 {"type": {"key": "/type/author"}, "name": "Keshav Rao Balwant Dongray", "key": "/authors/OL10560362A", "source_records": ["bwb:9780343303853"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T18:00:34.855660"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T18:00:34.855660"}}
+/type/author /authors/OL10560480A 1 2022-07-20T18:06:45.885703 {"type": {"key": "/type/author"}, "name": "Arthur Howe D. 1860 Holdsworth", "key": "/authors/OL10560480A", "source_records": ["bwb:9780343341473"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T18:06:45.885703"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T18:06:45.885703"}}
+/type/author /authors/OL10560618A 1 2022-07-20T18:14:57.121961 {"type": {"key": "/type/author"}, "name": "J. H. (John Henry) 1846-1896 Middleton", "key": "/authors/OL10560618A", "source_records": ["bwb:9780343383633"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T18:14:57.121961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T18:14:57.121961"}}
+/type/author /authors/OL105613A 1 2008-04-01T03:28:50.625462 {"name": "National Seminar on Neuroanaesthesia (1st 1983 Bangalore, India)", "last_modified": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "key": "/authors/OL105613A", "type": {"key": "/type/author"}, "revision": 1}
+/type/author /authors/OL10561820A 1 2022-07-20T22:19:15.689965 {"type": {"key": "/type/author"}, "name": "Isidor. (From Old Catalog] Blum", "key": "/authors/OL10561820A", "source_records": ["bwb:9780344528293"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T22:19:15.689965"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T22:19:15.689965"}}
+/type/author /authors/OL10562168A 1 2022-07-20T22:45:11.841141 {"type": {"key": "/type/author"}, "name": "Arthur M. Sherman", "key": "/authors/OL10562168A", "source_records": ["bwb:9780344872730"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T22:45:11.841141"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T22:45:11.841141"}}
+/type/author /authors/OL10562385A 1 2022-07-20T23:02:23.626699 {"type": {"key": "/type/author"}, "name": "Calvin F. B. 1846 Swingle", "key": "/authors/OL10562385A", "source_records": ["bwb:9780344986451"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T23:02:23.626699"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T23:02:23.626699"}}
+/type/author /authors/OL10562663A 1 2022-07-20T23:21:54.949998 {"type": {"key": "/type/author"}, "name": "Bill & Win Evans", "key": "/authors/OL10562663A", "source_records": ["bwb:9780852449271"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T23:21:54.949998"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T23:21:54.949998"}}
+/type/author /authors/OL10562974A 1 2022-07-20T23:39:51.181668 {"type": {"key": "/type/author"}, "name": "Rebecca Maurer", "key": "/authors/OL10562974A", "source_records": ["bwb:9781039129511"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T23:39:51.181668"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T23:39:51.181668"}}
+/type/author /authors/OL10563076A 1 2022-07-20T23:41:56.740497 {"type": {"key": "/type/author"}, "name": "Sam Buckland", "key": "/authors/OL10563076A", "source_records": ["bwb:9781039139169"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-20T23:41:56.740497"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-20T23:41:56.740497"}}
+/type/author /authors/OL10563525A 1 2022-07-21T00:02:06.169485 {"type": {"key": "/type/author"}, "name": "Ritchie Francis", "key": "/authors/OL10563525A", "source_records": ["bwb:9781296763978"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T00:02:06.169485"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T00:02:06.169485"}}
+/type/author /authors/OL10563627A 1 2022-07-21T00:08:34.764429 {"type": {"key": "/type/author"}, "name": "William John 1860- [From Old Wittemore", "key": "/authors/OL10563627A", "source_records": ["bwb:9781296947903"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T00:08:34.764429"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T00:08:34.764429"}}
+/type/author /authors/OL1056374A 3 2011-04-11T16:50:18.761757 {"name": "Krzysztof Jab\u0142o\u0144ski", "personal_name": "Krzysztof Jab\u0142on\u0301ski", "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2011-04-11T16:50:18.761757"}, "latest_revision": 3, "key": "/authors/OL1056374A", "type": {"key": "/type/author"}, "revision": 3}
+/type/author /authors/OL10564105A 1 2022-07-21T00:36:45.659603 {"type": {"key": "/type/author"}, "name": "J. & H. Cox", "key": "/authors/OL10564105A", "source_records": ["bwb:9781298922090"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T00:36:45.659603"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T00:36:45.659603"}}
+/type/author /authors/OL10564496A 1 2022-07-21T00:51:29.641687 {"type": {"key": "/type/author"}, "name": "N. Y. Reformed Protestant Dutch Chatham", "key": "/authors/OL10564496A", "source_records": ["bwb:9781340084943"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T00:51:29.641687"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T00:51:29.641687"}}
+/type/author /authors/OL10564507A 1 2022-07-21T00:51:46.699219 {"type": {"key": "/type/author"}, "name": "Business Publication Limited", "key": "/authors/OL10564507A", "source_records": ["bwb:9781340090173"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T00:51:46.699219"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T00:51:46.699219"}}
+/type/author /authors/OL10564749A 1 2022-07-21T00:57:52.812704 {"type": {"key": "/type/author"}, "name": "New York Central and Hudson River Railro", "key": "/authors/OL10564749A", "source_records": ["bwb:9781340171001"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T00:57:52.812704"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T00:57:52.812704"}}
+/type/author /authors/OL10565344A 1 2022-07-21T01:10:17.759673 {"type": {"key": "/type/author"}, "name": "Parkhill John H", "key": "/authors/OL10565344A", "source_records": ["bwb:9781340261009"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T01:10:17.759673"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T01:10:17.759673"}}
+/type/author /authors/OL10565568A 1 2022-07-21T01:14:14.582824 {"type": {"key": "/type/author"}, "name": "Edward Charles Stuart Baker", "key": "/authors/OL10565568A", "source_records": ["bwb:9781340276423"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T01:14:14.582824"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T01:14:14.582824"}}
+/type/author /authors/OL1056584A 2 2008-08-19T23:57:32.347676 {"name": "Jean-Franc\u0327ois Chadelat", "personal_name": "Jean-Franc\u0327ois Chadelat", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T23:57:32.347676"}, "key": "/authors/OL1056584A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL1056586A 2 2008-08-19T23:57:32.797958 {"name": "Terezinha Na\u0301dia Jaime Mendonc\u0327a", "personal_name": "Terezinha Na\u0301dia Jaime Mendonc\u0327a", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T23:57:32.797958"}, "key": "/authors/OL1056586A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10565914A 1 2022-07-21T01:23:29.774632 {"type": {"key": "/type/author"}, "name": "A. H. Reginald 1874-1944 Buller", "key": "/authors/OL10565914A", "source_records": ["bwb:9781340309732"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T01:23:29.774632"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T01:23:29.774632"}}
+/type/author /authors/OL10566352A 1 2022-07-21T01:37:06.811087 {"type": {"key": "/type/author"}, "name": "R j. 1867-1956 Campbell", "key": "/authors/OL10566352A", "source_records": ["bwb:9781340362140"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T01:37:06.811087"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T01:37:06.811087"}}
+/type/author /authors/OL10566581A 1 2022-07-21T01:44:51.549691 {"type": {"key": "/type/author"}, "name": "A. T. 1869-1916 Sweet", "key": "/authors/OL10566581A", "source_records": ["bwb:9781340394547"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T01:44:51.549691"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T01:44:51.549691"}}
+/type/author /authors/OL1056712A 2 2008-08-19T23:58:00.986572 {"name": "Genowefa Czeka\u0142a-Mucha", "personal_name": "Genowefa Czeka\u0142a-Mucha", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T23:58:00.986572"}, "key": "/authors/OL1056712A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10567267A 1 2022-07-21T02:02:30.014521 {"type": {"key": "/type/author"}, "name": "South Carolina Geological Survey", "key": "/authors/OL10567267A", "source_records": ["bwb:9781340463700"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T02:02:30.014521"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T02:02:30.014521"}}
+/type/author /authors/OL10567725A 1 2022-07-21T02:11:09.511792 {"type": {"key": "/type/author"}, "name": "Blankinship J. W", "key": "/authors/OL10567725A", "source_records": ["bwb:9781340493783"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T02:11:09.511792"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T02:11:09.511792"}}
+/type/author /authors/OL1056779A 3 2017-11-28T22:38:25.012304 {"name": "Si\u0361arhe\u012d Palui\u0361an", "personal_name": "Si\u0361arhe\u012d Palui\u0361an", "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2017-11-28T22:38:25.012304"}, "latest_revision": 3, "key": "/authors/OL1056779A", "type": {"key": "/type/author"}, "revision": 3}
+/type/author /authors/OL10567979A 1 2022-07-21T02:20:34.361759 {"type": {"key": "/type/author"}, "name": "S M Kingsford", "key": "/authors/OL10567979A", "source_records": ["bwb:9781340518400"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T02:20:34.361759"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T02:20:34.361759"}}
+/type/author /authors/OL10568062A 1 2022-07-21T02:24:09.798438 {"type": {"key": "/type/author"}, "name": "Carl A. Agardh", "key": "/authors/OL10568062A", "source_records": ["bwb:9781340532291"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T02:24:09.798438"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T02:24:09.798438"}}
+/type/author /authors/OL10568516A 1 2022-07-21T02:37:16.528989 {"type": {"key": "/type/author"}, "name": "William Nichols (Ed )", "key": "/authors/OL10568516A", "source_records": ["bwb:9781340580650"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T02:37:16.528989"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T02:37:16.528989"}}
+/type/author /authors/OL10568661A 1 2022-07-21T02:53:36.155458 {"type": {"key": "/type/author"}, "name": "John T. [From Old Catalog] Christian", "key": "/authors/OL10568661A", "source_records": ["bwb:9781376231793"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T02:53:36.155458"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T02:53:36.155458"}}
+/type/author /authors/OL10568820A 1 2022-07-21T03:03:12.871369 {"type": {"key": "/type/author"}, "name": "Baron George Granville Lansdowne", "key": "/authors/OL10568820A", "source_records": ["bwb:9781376396515"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T03:03:12.871369"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T03:03:12.871369"}}
+/type/author /authors/OL10568827A 1 2022-07-21T03:03:31.634605 {"type": {"key": "/type/author"}, "name": "Beirut Syria American Mission Press", "key": "/authors/OL10568827A", "source_records": ["bwb:9781376397451"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T03:03:31.634605"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T03:03:31.634605"}}
+/type/author /authors/OL10568957A 1 2022-07-21T03:17:27.063903 {"type": {"key": "/type/author"}, "name": "United States Delegation to the Interna", "key": "/authors/OL10568957A", "source_records": ["bwb:9781376435337"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T03:17:27.063903"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T03:17:27.063903"}}
+/type/author /authors/OL1056921A 2 2008-08-19T23:58:44.215246 {"name": "Jose\u0301 Guardia Rodri\u0301guez", "personal_name": "Jose\u0301 Guardia Rodri\u0301guez", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T23:58:44.215246"}, "key": "/authors/OL1056921A", "birth_date": "1948", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10570520A 1 2022-07-21T04:44:51.173951 {"type": {"key": "/type/author"}, "name": "National Conference on Infantile Mortali", "key": "/authors/OL10570520A", "source_records": ["bwb:9781376703559"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T04:44:51.173951"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T04:44:51.173951"}}
+/type/author /authors/OL10570829A 1 2022-07-21T05:01:26.693228 {"type": {"key": "/type/author"}, "name": "H. A. K", "key": "/authors/OL10570829A", "source_records": ["bwb:9781376769944"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T05:01:26.693228"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T05:01:26.693228"}}
+/type/author /authors/OL10570914A 1 2022-07-21T05:06:00.579969 {"type": {"key": "/type/author"}, "name": "Arthur Blockey Hutchinson", "key": "/authors/OL10570914A", "source_records": ["bwb:9781376785975"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T05:06:00.579969"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T05:06:00.579969"}}
+/type/author /authors/OL10571068A 1 2022-07-21T05:13:15.005588 {"type": {"key": "/type/author"}, "name": "Edward F. 1876-1960 Garesch\u00e9", "key": "/authors/OL10571068A", "source_records": ["bwb:9781376814552"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T05:13:15.005588"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T05:13:15.005588"}}
+/type/author /authors/OL10571592A 1 2022-07-21T05:33:22.036484 {"type": {"key": "/type/author"}, "name": "Harry Lewis Bird", "key": "/authors/OL10571592A", "source_records": ["bwb:9781376879377"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T05:33:22.036484"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T05:33:22.036484"}}
+/type/author /authors/OL10571600A 1 2022-07-21T05:33:28.733967 {"type": {"key": "/type/author"}, "name": "T. 1862-1936 Iyenaga", "key": "/authors/OL10571600A", "source_records": ["bwb:9781376879711"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T05:33:28.733967"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T05:33:28.733967"}}
+/type/author /authors/OL1057165A 2 2008-08-19T23:59:45.475989 {"name": "Emil Nemirov", "personal_name": "Emil Nemirov", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T23:59:45.475989"}, "key": "/authors/OL1057165A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10571880A 1 2022-07-21T05:41:36.294181 {"type": {"key": "/type/author"}, "name": "William Of Ochtertyre Murray", "key": "/authors/OL10571880A", "source_records": ["bwb:9781376912197"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T05:41:36.294181"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T05:41:36.294181"}}
+/type/author /authors/OL10571938A 1 2022-07-21T05:42:43.211866 {"type": {"key": "/type/author"}, "name": "Arthur Ellis 1857- Franklin", "key": "/authors/OL10571938A", "source_records": ["bwb:9781376917246"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T05:42:43.211866"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T05:42:43.211866"}}
+/type/author /authors/OL10572265A 1 2022-07-21T05:47:02.759206 {"type": {"key": "/type/author"}, "name": "Morgan George Blacker", "key": "/authors/OL10572265A", "source_records": ["bwb:9781376934380"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T05:47:02.759206"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T05:47:02.759206"}}
+/type/author /authors/OL10572443A 1 2022-07-21T05:49:27.889462 {"type": {"key": "/type/author"}, "name": "Florence Mass [ Nonotuck Silk Company", "key": "/authors/OL10572443A", "source_records": ["bwb:9781376944167"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T05:49:27.889462"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T05:49:27.889462"}}
+/type/author /authors/OL10572652A 1 2022-07-21T05:54:47.135114 {"type": {"key": "/type/author"}, "name": "Jd Main Smith", "key": "/authors/OL10572652A", "source_records": ["bwb:9781376964332"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T05:54:47.135114"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T05:54:47.135114"}}
+/type/author /authors/OL10573150A 1 2022-07-21T06:14:14.435641 {"type": {"key": "/type/author"}, "name": "Joseph Seccombe", "key": "/authors/OL10573150A", "source_records": ["bwb:9781377034737"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T06:14:14.435641"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T06:14:14.435641"}}
+/type/author /authors/OL10573440A 1 2022-07-21T06:27:48.620104 {"type": {"key": "/type/author"}, "name": "Mary Landon. [From Old Catalog] Baker", "key": "/authors/OL10573440A", "source_records": ["bwb:9781377069746"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T06:27:48.620104"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T06:27:48.620104"}}
+/type/author /authors/OL10573466A 1 2022-07-21T06:28:07.977303 {"type": {"key": "/type/author"}, "name": "Wilhelm Max 1832-1920 Wundt", "key": "/authors/OL10573466A", "source_records": ["bwb:9781377071107"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T06:28:07.977303"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T06:28:07.977303"}}
+/type/author /authors/OL10573570A 1 2022-07-21T06:29:42.581001 {"type": {"key": "/type/author"}, "name": "Andreas W\u00e5hlin", "key": "/authors/OL10573570A", "source_records": ["bwb:9781377077086"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T06:29:42.581001"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T06:29:42.581001"}}
+/type/author /authors/OL10573657A 1 2022-07-21T06:32:31.340314 {"type": {"key": "/type/author"}, "name": "Marcus A. Emmons", "key": "/authors/OL10573657A", "source_records": ["bwb:9781377088259"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T06:32:31.340314"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T06:32:31.340314"}}
+/type/author /authors/OL10573794A 1 2022-07-21T06:35:53.851804 {"type": {"key": "/type/author"}, "name": "Richard H. [From Old Catalog] Ball", "key": "/authors/OL10573794A", "source_records": ["bwb:9781377099200"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T06:35:53.851804"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T06:35:53.851804"}}
+/type/author /authors/OL10573815A 1 2022-07-21T06:36:13.087435 {"type": {"key": "/type/author"}, "name": "James 1775-1859 [From Old Ca Carnahan", "key": "/authors/OL10573815A", "source_records": ["bwb:9781377100180"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T06:36:13.087435"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T06:36:13.087435"}}
+/type/author /authors/OL10573938A 1 2022-07-21T06:39:37.491783 {"type": {"key": "/type/author"}, "name": "H O'Neill and Company", "key": "/authors/OL10573938A", "source_records": ["bwb:9781377106861"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T06:39:37.491783"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T06:39:37.491783"}}
+/type/author /authors/OL1057402A 3 2017-11-26T00:11:38.218444 {"name": "S. B. Buri\u0361ak", "personal_name": "S. B. Buri\u0361ak", "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2017-11-26T00:11:38.218444"}, "latest_revision": 3, "key": "/authors/OL1057402A", "type": {"key": "/type/author"}, "revision": 3}
+/type/author /authors/OL10574307A 1 2022-07-21T06:48:43.447125 {"type": {"key": "/type/author"}, "name": "Joseph X. Schreyegg", "key": "/authors/OL10574307A", "source_records": ["bwb:9781377140322"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T06:48:43.447125"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T06:48:43.447125"}}
+/type/author /authors/OL10574425A 1 2022-07-21T06:52:30.070082 {"type": {"key": "/type/author"}, "name": "Mass. ) Free Public Library (New Bedford", "key": "/authors/OL10574425A", "source_records": ["bwb:9781377152691"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T06:52:30.070082"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T06:52:30.070082"}}
+/type/author /authors/OL10574809A 1 2022-07-21T07:06:30.498965 {"type": {"key": "/type/author"}, "name": "American Board of Commissioners for for", "key": "/authors/OL10574809A", "source_records": ["bwb:9781377199207"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T07:06:30.498965"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T07:06:30.498965"}}
+/type/author /authors/OL10574876A 1 2022-07-21T07:09:32.594942 {"type": {"key": "/type/author"}, "name": "Silas Moore Stilwell", "key": "/authors/OL10574876A", "source_records": ["bwb:9781377207025"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T07:09:32.594942"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T07:09:32.594942"}}
+/type/author /authors/OL10575322A 1 2022-07-21T07:34:28.930419 {"type": {"key": "/type/author"}, "name": "Brother Paul (Pseud )", "key": "/authors/OL10575322A", "source_records": ["bwb:9781377282459"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T07:34:28.930419"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T07:34:28.930419"}}
+/type/author /authors/OL105756A 1 2008-04-01T03:28:50.625462 {"name": "Chandra, Prakash.", "personal_name": "Chandra, Prakash.", "last_modified": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "key": "/authors/OL105756A", "type": {"key": "/type/author"}, "revision": 1}
+/type/author /authors/OL10575738A 1 2022-07-21T07:48:32.022976 {"type": {"key": "/type/author"}, "name": "Charles Richmond Vaughan", "key": "/authors/OL10575738A", "source_records": ["bwb:9781377328560"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T07:48:32.022976"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T07:48:32.022976"}}
+/type/author /authors/OL10576007A 1 2022-07-21T08:01:53.715050 {"type": {"key": "/type/author"}, "name": "Pollyanne Hrebenar", "key": "/authors/OL10576007A", "source_records": ["bwb:9780997312881"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T08:01:53.715050"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T08:01:53.715050"}}
+/type/author /authors/OL10576044A 1 2022-07-21T08:03:42.184024 {"type": {"key": "/type/author"}, "name": "John D. Ogletree", "key": "/authors/OL10576044A", "source_records": ["bwb:9781685366988"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T08:03:42.184024"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T08:03:42.184024"}}
+/type/author /authors/OL10576127A 1 2022-07-21T08:07:44.921576 {"type": {"key": "/type/author"}, "name": "Meredith Philips", "key": "/authors/OL10576127A", "source_records": ["bwb:9781956646658"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T08:07:44.921576"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T08:07:44.921576"}}
+/type/author /authors/OL10576158A 1 2022-07-21T08:09:47.113580 {"type": {"key": "/type/author"}, "name": "National Patent Wood Preserving Company", "key": "/authors/OL10576158A", "source_records": ["bwb:9781377380667"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T08:09:47.113580"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T08:09:47.113580"}}
+/type/author /authors/OL10576281A 1 2022-07-21T08:14:50.929962 {"type": {"key": "/type/author"}, "name": "Trustees of Public Reservations (Mass )", "key": "/authors/OL10576281A", "source_records": ["bwb:9781377393865"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T08:14:50.929962"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T08:14:50.929962"}}
+/type/author /authors/OL1057639A 1 2008-04-01T03:28:50.625462 {"name": "E\u0301des, Marianna.", "personal_name": "E\u0301des, Marianna.", "last_modified": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "key": "/authors/OL1057639A", "type": {"key": "/type/author"}, "revision": 1}
+/type/author /authors/OL10576552A 1 2022-07-21T08:41:41.123373 {"type": {"key": "/type/author"}, "name": "Michael Van Der Gucht", "key": "/authors/OL10576552A", "source_records": ["bwb:9781377480794"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T08:41:41.123373"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T08:41:41.123373"}}
+/type/author /authors/OL10576575A 1 2022-07-21T08:43:50.826222 {"type": {"key": "/type/author"}, "name": "Ormond Eros Loomis", "key": "/authors/OL10576575A", "source_records": ["bwb:9781377488462"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T08:43:50.826222"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T08:43:50.826222"}}
+/type/author /authors/OL10576715A 1 2022-07-21T08:55:45.412600 {"type": {"key": "/type/author"}, "name": "English Cart-Horse Society", "key": "/authors/OL10576715A", "source_records": ["bwb:9781377527840"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T08:55:45.412600"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T08:55:45.412600"}}
+/type/author /authors/OL10576858A 1 2022-07-21T09:06:51.482380 {"type": {"key": "/type/author"}, "name": "Fd Coburn", "key": "/authors/OL10576858A", "source_records": ["bwb:9781377562087"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T09:06:51.482380"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T09:06:51.482380"}}
+/type/author /authors/OL10577063A 1 2022-07-21T09:24:10.770300 {"type": {"key": "/type/author"}, "name": "Francis Osborne", "key": "/authors/OL10577063A", "source_records": ["bwb:9781377612966"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T09:24:10.770300"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T09:24:10.770300"}}
+/type/author /authors/OL10577298A 1 2022-07-21T09:42:25.505709 {"type": {"key": "/type/author"}, "name": "Southampton Railway", "key": "/authors/OL10577298A", "source_records": ["bwb:9781377666426"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T09:42:25.505709"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T09:42:25.505709"}}
+/type/author /authors/OL10577572A 1 2022-07-21T09:59:50.901101 {"type": {"key": "/type/author"}, "name": "United States Dept of the Army Genera", "key": "/authors/OL10577572A", "source_records": ["bwb:9781377720517"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T09:59:50.901101"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T09:59:50.901101"}}
+/type/author /authors/OL10577604A 1 2022-07-21T10:01:49.414761 {"type": {"key": "/type/author"}, "name": "Arthur Brooks Clawson", "key": "/authors/OL10577604A", "source_records": ["bwb:9781377726670"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T10:01:49.414761"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T10:01:49.414761"}}
+/type/author /authors/OL10577637A 1 2022-07-21T10:04:54.423775 {"type": {"key": "/type/author"}, "name": "Henry Ripley", "key": "/authors/OL10577637A", "source_records": ["bwb:9781377735153"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T10:04:54.423775"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T10:04:54.423775"}}
+/type/author /authors/OL10577720A 1 2022-07-21T10:10:40.358413 {"type": {"key": "/type/author"}, "name": "William George Giovanni", "key": "/authors/OL10577720A", "source_records": ["bwb:9781377754659"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T10:10:40.358413"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T10:10:40.358413"}}
+/type/author /authors/OL1057779A 2 2008-08-20T00:02:04.808938 {"name": "Benedetto Ronchi", "personal_name": "Benedetto Ronchi", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T00:02:04.808938"}, "key": "/authors/OL1057779A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10578311A 1 2022-07-21T10:58:10.172810 {"type": {"key": "/type/author"}, "name": "Cornell University College of Law", "key": "/authors/OL10578311A", "source_records": ["bwb:9781377903712"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T10:58:10.172810"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T10:58:10.172810"}}
+/type/author /authors/OL10578558A 1 2022-07-21T11:09:32.238892 {"type": {"key": "/type/author"}, "name": "Siboga Expedition", "key": "/authors/OL10578558A", "source_records": ["bwb:9781377941806"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T11:09:32.238892"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T11:09:32.238892"}}
+/type/author /authors/OL1057927A 5 2020-10-09T04:48:11.838549 {"personal_name": "Ingjald Reichborn-Kjennerud", "last_modified": {"type": "/type/datetime", "value": "2020-10-09T04:48:11.838549"}, "latest_revision": 5, "key": "/authors/OL1057927A", "remote_ids": {"viaf": "59067462", "wikidata": "Q16904222", "isni": "000000005180734X"}, "name": "Ingjald Reichborn-Kjennerud", "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "death_date": "1949", "birth_date": "1865", "type": {"key": "/type/author"}, "revision": 5}
+/type/author /authors/OL10579346A 1 2022-07-21T11:32:01.963400 {"type": {"key": "/type/author"}, "name": "Margaret A. Currie", "key": "/authors/OL10579346A", "source_records": ["bwb:9781378068120"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T11:32:01.963400"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T11:32:01.963400"}}
+/type/author /authors/OL10579852A 1 2022-07-21T11:52:52.008941 {"type": {"key": "/type/author"}, "name": "I. B. 1893- Boughton", "key": "/authors/OL10579852A", "source_records": ["bwb:9781378156605"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T11:52:52.008941"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T11:52:52.008941"}}
+/type/author /authors/OL10580150A 1 2022-07-21T12:03:29.845827 {"type": {"key": "/type/author"}, "name": "189 United States Philppine Commission", "key": "/authors/OL10580150A", "source_records": ["bwb:9781378192009"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T12:03:29.845827"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T12:03:29.845827"}}
+/type/author /authors/OL10580231A 1 2022-07-21T12:09:22.555255 {"type": {"key": "/type/author"}, "name": "Free Public Library Museum(liverpool)", "key": "/authors/OL10580231A", "source_records": ["bwb:9781378207833"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T12:09:22.555255"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T12:09:22.555255"}}
+/type/author /authors/OL10580678A 1 2022-07-21T12:45:57.051694 {"type": {"key": "/type/author"}, "name": "Charles 1722-1770 Some Consider Yorke", "key": "/authors/OL10580678A", "source_records": ["bwb:9781378278529"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T12:45:57.051694"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T12:45:57.051694"}}
+/type/author /authors/OL10580729A 1 2022-07-21T12:48:30.754869 {"type": {"key": "/type/author"}, "name": "Michael Garrity", "key": "/authors/OL10580729A", "source_records": ["bwb:9781378286098"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T12:48:30.754869"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T12:48:30.754869"}}
+/type/author /authors/OL10580851A 1 2022-07-21T12:52:00.514018 {"type": {"key": "/type/author"}, "name": "Gotthilf Traugott Zachariae", "key": "/authors/OL10580851A", "source_records": ["bwb:9781378298367"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T12:52:00.514018"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T12:52:00.514018"}}
+/type/author /authors/OL10580899A 1 2022-07-21T12:53:44.491045 {"type": {"key": "/type/author"}, "name": "H. W. Longyear", "key": "/authors/OL10580899A", "source_records": ["bwb:9781378303580"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T12:53:44.491045"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T12:53:44.491045"}}
+/type/author /authors/OL10580967A 1 2022-07-21T12:55:58.553097 {"type": {"key": "/type/author"}, "name": "Thomas Turner \u00c0 Beckett", "key": "/authors/OL10580967A", "source_records": ["bwb:9781378310854"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T12:55:58.553097"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T12:55:58.553097"}}
+/type/author /authors/OL10581116A 1 2022-07-21T13:01:00.688784 {"type": {"key": "/type/author"}, "name": "G. C. Renouard", "key": "/authors/OL10581116A", "source_records": ["bwb:9781378327036"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T13:01:00.688784"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T13:01:00.688784"}}
+/type/author /authors/OL10581242A 1 2022-07-21T13:03:39.863564 {"type": {"key": "/type/author"}, "name": "Guy Vernon Bennett", "key": "/authors/OL10581242A", "source_records": ["bwb:9781378336564"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T13:03:39.863564"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T13:03:39.863564"}}
+/type/author /authors/OL10581334A 1 2022-07-21T13:07:26.759820 {"type": {"key": "/type/author"}, "name": "Louis Oliver Armstrong", "key": "/authors/OL10581334A", "source_records": ["bwb:9781378345597"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T13:07:26.759820"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T13:07:26.759820"}}
+/type/author /authors/OL10581391A 1 2022-07-21T13:09:06.891668 {"type": {"key": "/type/author"}, "name": "David Rockell Sperry", "key": "/authors/OL10581391A", "source_records": ["bwb:9781378351536"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T13:09:06.891668"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T13:09:06.891668"}}
+/type/author /authors/OL10582273A 1 2022-07-21T13:40:25.347136 {"type": {"key": "/type/author"}, "name": "Missouri Dept of Education", "key": "/authors/OL10582273A", "source_records": ["bwb:9781378483008"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T13:40:25.347136"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T13:40:25.347136"}}
+/type/author /authors/OL10582909A 1 2022-07-21T14:20:27.728713 {"type": {"key": "/type/author"}, "name": "R. T. 1812-1877 Trall", "key": "/authors/OL10582909A", "source_records": ["bwb:9781378606889"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T14:20:27.728713"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T14:20:27.728713"}}
+/type/author /authors/OL10583428A 1 2022-07-21T14:42:46.215028 {"type": {"key": "/type/author"}, "name": "R. McIndoe", "key": "/authors/OL10583428A", "source_records": ["bwb:9781378693865"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T14:42:46.215028"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T14:42:46.215028"}}
+/type/author /authors/OL1058350A 2 2008-08-20T00:05:13.054571 {"name": "Bob Hern", "personal_name": "Bob Hern", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T00:05:13.054571"}, "key": "/authors/OL1058350A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10584108A 1 2022-07-21T15:21:53.917486 {"type": {"key": "/type/author"}, "name": "Sierra Ward", "key": "/authors/OL10584108A", "source_records": ["bwb:9798835752850"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T15:21:53.917486"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T15:21:53.917486"}}
+/type/author /authors/OL1058448A 2 2008-08-20T00:05:57.267271 {"name": "J. Rutherford Willems", "personal_name": "J. Rutherford Willems", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T00:05:57.267271"}, "key": "/authors/OL1058448A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10584698A 1 2022-07-21T15:58:55.469419 {"type": {"key": "/type/author"}, "name": "Kasey Murray", "key": "/authors/OL10584698A", "source_records": ["bwb:9798831144246"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T15:58:55.469419"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T15:58:55.469419"}}
+/type/author /authors/OL10584948A 1 2022-07-21T16:09:41.093469 {"type": {"key": "/type/author"}, "name": "81st Infantry 81st Infantry Division", "key": "/authors/OL10584948A", "source_records": ["bwb:9798812879105"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T16:09:41.093469"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T16:09:41.093469"}}
+/type/author /authors/OL10584960A 1 2022-07-21T16:10:21.259257 {"type": {"key": "/type/author"}, "name": "Maximilian Poole", "key": "/authors/OL10584960A", "source_records": ["bwb:9798490817192"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T16:10:21.259257"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T16:10:21.259257"}}
+/type/author /authors/OL10585069A 1 2022-07-21T16:16:43.658285 {"type": {"key": "/type/author"}, "name": "Private Enterprise", "key": "/authors/OL10585069A", "source_records": ["bwb:9781378900772"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T16:16:43.658285"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T16:16:43.658285"}}
+/type/author /authors/OL1058530A 2 2008-08-20T00:06:31.919422 {"name": "Norman Hildrum", "personal_name": "Norman Hildrum", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T00:06:31.919422"}, "key": "/authors/OL1058530A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10585405A 1 2022-07-21T16:31:31.015950 {"type": {"key": "/type/author"}, "name": "Land- En Volkenkunde Van Java", "key": "/authors/OL10585405A", "source_records": ["bwb:9781378947616"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T16:31:31.015950"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T16:31:31.015950"}}
+/type/author /authors/OL10585474A 1 2022-07-21T16:34:59.268156 {"type": {"key": "/type/author"}, "name": "William Bp of Gloucester Warburton", "key": "/authors/OL10585474A", "source_records": ["bwb:9781378959626"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T16:34:59.268156"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T16:34:59.268156"}}
+/type/author /authors/OL10585774A 1 2022-07-21T16:44:37.234364 {"type": {"key": "/type/author"}, "name": "J. M. Spitzglass", "key": "/authors/OL10585774A", "source_records": ["bwb:9781378968550"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T16:44:37.234364"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T16:44:37.234364"}}
+/type/author /authors/OL10585913A 1 2022-07-21T16:50:04.666448 {"type": {"key": "/type/author"}, "name": "W. M. LeBow", "key": "/authors/OL10585913A", "source_records": ["bwb:9781378979952"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T16:50:04.666448"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T16:50:04.666448"}}
+/type/author /authors/OL10586005A 1 2022-07-21T16:54:17.857940 {"type": {"key": "/type/author"}, "name": "Hans Driech", "key": "/authors/OL10586005A", "source_records": ["bwb:9781378990599"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T16:54:17.857940"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T16:54:17.857940"}}
+/type/author /authors/OL1058661A 1 2008-04-01T03:28:50.625462 {"name": "Myers, Donald A.", "personal_name": "Myers, Donald A.", "last_modified": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "key": "/authors/OL1058661A", "birth_date": "1921", "type": {"key": "/type/author"}, "revision": 1}
+/type/author /authors/OL10587186A 1 2022-07-21T17:49:47.676621 {"type": {"key": "/type/author"}, "name": "Reformed Presbyterian Church in North Am", "key": "/authors/OL10587186A", "source_records": ["bwb:9781379107248"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T17:49:47.676621"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T17:49:47.676621"}}
+/type/author /authors/OL10587298A 1 2022-07-21T17:57:58.591560 {"type": {"key": "/type/author"}, "name": "Master Painters and Decorators Associati", "key": "/authors/OL10587298A", "source_records": ["bwb:9781379133124"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T17:57:58.591560"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T17:57:58.591560"}}
+/type/author /authors/OL10587458A 1 2022-07-21T18:13:29.995301 {"type": {"key": "/type/author"}, "name": "Frederick Reed", "key": "/authors/OL10587458A", "source_records": ["bwb:9781379181767"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T18:13:29.995301"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T18:13:29.995301"}}
+/type/author /authors/OL10587599A 1 2022-07-21T18:31:20.120512 {"type": {"key": "/type/author"}, "name": "J. C. 1844-1932 Glashan", "key": "/authors/OL10587599A", "source_records": ["bwb:9781379212034"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T18:31:20.120512"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T18:31:20.120512"}}
+/type/author /authors/OL10587787A 1 2022-07-21T18:39:30.164121 {"type": {"key": "/type/author"}, "name": "John Of Great Yarmouth Brown", "key": "/authors/OL10587787A", "source_records": ["bwb:9781379236320"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T18:39:30.164121"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T18:39:30.164121"}}
+/type/author /authors/OL10587841A 1 2022-07-21T18:42:47.913572 {"type": {"key": "/type/author"}, "name": "University of California School of Medic", "key": "/authors/OL10587841A", "source_records": ["bwb:9781379246954"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T18:42:47.913572"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T18:42:47.913572"}}
+/type/author /authors/OL1058803A 3 2010-04-12T12:19:43.239002 {"name": "Garrett E. Crow", "personal_name": "Garrett E. Crow", "photos": [6256678], "last_modified": {"type": "/type/datetime", "value": "2010-04-12T12:19:43.239002"}, "latest_revision": 3, "key": "/authors/OL1058803A", "type": {"key": "/type/author"}, "revision": 3}
+/type/author /authors/OL10588897A 1 2022-07-21T19:48:23.645658 {"type": {"key": "/type/author"}, "name": "Hervey Redmond Morres", "key": "/authors/OL10588897A", "source_records": ["bwb:9781379894711"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T19:48:23.645658"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T19:48:23.645658"}}
+/type/author /authors/OL10589376A 1 2022-07-21T20:43:59.783857 {"type": {"key": "/type/author"}, "name": "F. Wustenfeld", "key": "/authors/OL10589376A", "source_records": ["bwb:9781385950036"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T20:43:59.783857"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T20:43:59.783857"}}
+/type/author /authors/OL10589378A 1 2022-07-21T20:44:04.453903 {"type": {"key": "/type/author"}, "name": "Eduard Mocite", "key": "/authors/OL10589378A", "source_records": ["bwb:9781385950128"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T20:44:04.453903"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T20:44:04.453903"}}
+/type/author /authors/OL10589486A 1 2022-07-21T20:46:09.531075 {"type": {"key": "/type/author"}, "name": "Otto Rudolf", "key": "/authors/OL10589486A", "source_records": ["bwb:9781385959862"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T20:46:09.531075"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T20:46:09.531075"}}
+/type/author /authors/OL10590065A 1 2022-07-21T21:06:12.485162 {"type": {"key": "/type/author"}, "name": "Pauline Salhi", "key": "/authors/OL10590065A", "source_records": ["bwb:9781398454323"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T21:06:12.485162"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T21:06:12.485162"}}
+/type/author /authors/OL1059012A 2 2008-08-20T00:09:01.854607 {"name": "Diane Lee Rhodes", "personal_name": "Diane Lee Rhodes", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T00:09:01.854607"}, "key": "/authors/OL1059012A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10590309A 1 2022-07-21T21:13:49.776708 {"type": {"key": "/type/author"}, "name": "Ryszard Feldman", "key": "/authors/OL10590309A", "source_records": ["bwb:9781435788091"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T21:13:49.776708"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T21:13:49.776708"}}
+/type/author /authors/OL10590393A 1 2022-07-21T21:18:05.576848 {"type": {"key": "/type/author"}, "name": "Blank Book Blank Book Comic Book", "key": "/authors/OL10590393A", "source_records": ["bwb:9798838040589"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T21:18:05.576848"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T21:18:05.576848"}}
+/type/author /authors/OL10590754A 1 2022-07-21T21:30:54.120088 {"type": {"key": "/type/author"}, "name": "Андрей Смолюк", "key": "/authors/OL10590754A", "source_records": ["bwb:9781458343116"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T21:30:54.120088"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T21:30:54.120088"}}
+/type/author /authors/OL10591096A 1 2022-07-21T21:41:40.406113 {"type": {"key": "/type/author"}, "name": "Zinbo Of Arianna", "key": "/authors/OL10591096A", "source_records": ["bwb:9798837809217"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T21:41:40.406113"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T21:41:40.406113"}}
+/type/author /authors/OL10591216A 1 2022-07-21T21:46:34.575465 {"type": {"key": "/type/author"}, "name": "Maja Lande", "key": "/authors/OL10591216A", "source_records": ["bwb:9798507410323"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T21:46:34.575465"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T21:46:34.575465"}}
+/type/author /authors/OL10591259A 1 2022-07-21T21:48:01.173329 {"type": {"key": "/type/author"}, "name": "Align Teeth Treasure Hunting Log Book", "key": "/authors/OL10591259A", "source_records": ["bwb:9798441857024"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T21:48:01.173329"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T21:48:01.173329"}}
+/type/author /authors/OL10591309A 1 2022-07-21T21:50:14.553184 {"type": {"key": "/type/author"}, "name": "Edward Socha", "key": "/authors/OL10591309A", "source_records": ["bwb:9798432173904"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T21:50:14.553184"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T21:50:14.553184"}}
+/type/author /authors/OL10591424A 1 2022-07-21T21:54:00.585733 {"type": {"key": "/type/author"}, "name": "Nicholas Morlin", "key": "/authors/OL10591424A", "source_records": ["bwb:9781471775024"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T21:54:00.585733"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T21:54:00.585733"}}
+/type/author /authors/OL10591557A 1 2022-07-21T22:00:21.499906 {"type": {"key": "/type/author"}, "name": "Charlotte A. Karetak", "key": "/authors/OL10591557A", "source_records": ["bwb:9781525585746"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T22:00:21.499906"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T22:00:21.499906"}}
+/type/author /authors/OL10591758A 1 2022-07-21T22:14:04.181751 {"type": {"key": "/type/author"}, "name": "Kinita Schripsema", "key": "/authors/OL10591758A", "source_records": ["bwb:9781625862259"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T22:14:04.181751"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T22:14:04.181751"}}
+/type/author /authors/OL10591810A 1 2022-07-21T22:16:10.420433 {"type": {"key": "/type/author"}, "name": "Lotus Kay", "key": "/authors/OL10591810A", "source_records": ["bwb:9781632333377"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T22:16:10.420433"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T22:16:10.420433"}}
+/type/author /authors/OL10592023A 1 2022-07-21T22:23:04.847836 {"type": {"key": "/type/author"}, "name": "Aj Easterling", "key": "/authors/OL10592023A", "source_records": ["bwb:9781637106174"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T22:23:04.847836"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T22:23:04.847836"}}
+/type/author /authors/OL10592124A 1 2022-07-21T22:25:26.787097 {"type": {"key": "/type/author"}, "name": "Margarita Mart\u00ednez Meza", "key": "/authors/OL10592124A", "source_records": ["bwb:9781637651964"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T22:25:26.787097"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T22:25:26.787097"}}
+/type/author /authors/OL10592267A 1 2022-07-21T22:30:19.082529 {"type": {"key": "/type/author"}, "name": "Kelly E. Bird", "key": "/authors/OL10592267A", "source_records": ["bwb:9781638442097"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T22:30:19.082529"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T22:30:19.082529"}}
+/type/author /authors/OL10592332A 1 2022-07-21T22:32:01.301287 {"type": {"key": "/type/author"}, "name": "Zachary Joan", "key": "/authors/OL10592332A", "source_records": ["bwb:9798830921664"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T22:32:01.301287"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T22:32:01.301287"}}
+/type/author /authors/OL105923A 2 2008-09-09T04:12:57.517105 {"name": "Sitanshu Das", "personal_name": "Sitanshu Das", "last_modified": {"type": "/type/datetime", "value": "2008-09-09T04:12:57.517105"}, "key": "/authors/OL105923A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10592867A 1 2022-07-21T22:42:22.757652 {"type": {"key": "/type/author"}, "name": "Christopher Travail Gates", "key": "/authors/OL10592867A", "source_records": ["bwb:9781639617920"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T22:42:22.757652"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T22:42:22.757652"}}
+/type/author /authors/OL10593125A 1 2022-07-21T22:49:45.079241 {"type": {"key": "/type/author"}, "name": "Angela Halgrimson", "key": "/authors/OL10593125A", "source_records": ["bwb:9781643437286"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T22:49:45.079241"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T22:49:45.079241"}}
+/type/author /authors/OL1059354A 1 2008-04-01T03:28:50.625462 {"name": "Washington Library Network.", "last_modified": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "key": "/authors/OL1059354A", "type": {"key": "/type/author"}, "revision": 1}
+/type/author /authors/OL10593593A 1 2022-07-21T23:09:13.889567 {"type": {"key": "/type/author"}, "name": "J. O. Rogers", "key": "/authors/OL10593593A", "source_records": ["bwb:9781649572820"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T23:09:13.889567"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T23:09:13.889567"}}
+/type/author /authors/OL1059363A 2 2008-08-20T00:10:10.952565 {"name": "James Wooster", "personal_name": "James Wooster", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T00:10:10.952565"}, "key": "/authors/OL1059363A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10594284A 1 2022-07-21T23:21:26.390683 {"type": {"key": "/type/author"}, "name": "Shantel Young", "key": "/authors/OL10594284A", "source_records": ["bwb:9781662849435"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T23:21:26.390683"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T23:21:26.390683"}}
+/type/author /authors/OL10594436A 1 2022-07-21T23:25:15.461526 {"type": {"key": "/type/author"}, "name": "Spencer Hawk", "key": "/authors/OL10594436A", "source_records": ["bwb:9781678000479"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T23:25:15.461526"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T23:25:15.461526"}}
+/type/author /authors/OL10594944A 1 2022-07-21T23:37:29.897057 {"type": {"key": "/type/author"}, "name": "Esackuruvilla", "key": "/authors/OL10594944A", "source_records": ["bwb:9781685541231"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T23:37:29.897057"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T23:37:29.897057"}}
+/type/author /authors/OL1059522A 1 2008-04-01T03:28:50.625462 {"name": "Seminar on Recent Developments in Federal Criminal Law (1985 Atlanta, Ga.)", "last_modified": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "key": "/authors/OL1059522A", "type": {"key": "/type/author"}, "revision": 1}
+/type/author /authors/OL10595307A 1 2022-07-21T23:45:25.574184 {"type": {"key": "/type/author"}, "name": "Kareen L. Samuels", "key": "/authors/OL10595307A", "source_records": ["bwb:9781734364460"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T23:45:25.574184"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T23:45:25.574184"}}
+/type/author /authors/OL10595477A 1 2022-07-21T23:50:29.579236 {"type": {"key": "/type/author"}, "name": "Tiffany Uman", "key": "/authors/OL10595477A", "source_records": ["bwb:9781771805469"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-21T23:50:29.579236"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-21T23:50:29.579236"}}
+/type/author /authors/OL10596021A 1 2022-07-22T00:12:37.149482 {"type": {"key": "/type/author"}, "name": "Liz Childs Kelly", "key": "/authors/OL10596021A", "source_records": ["bwb:9781910559802"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-22T00:12:37.149482"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-22T00:12:37.149482"}}
+/type/author /authors/OL1059604A 1 2008-04-01T03:28:50.625462 {"name": "Seminar on Federal Practice & Procedure (1986 Savannah, Ga. and Atlanta, Ga.)", "last_modified": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "key": "/authors/OL1059604A", "type": {"key": "/type/author"}, "revision": 1}
+/type/author /authors/OL10596081A 1 2022-07-22T00:16:53.843097 {"type": {"key": "/type/author"}, "name": "Ann Nunn", "key": "/authors/OL10596081A", "source_records": ["bwb:9781913247676"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-22T00:16:53.843097"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-22T00:16:53.843097"}}
+/type/author /authors/OL1059620A 2 2008-08-20T00:10:54.299544 {"name": "Stephen J. Reynolds", "personal_name": "Stephen J. Reynolds", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T00:10:54.299544"}, "key": "/authors/OL1059620A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10597724A 1 2022-07-22T01:31:28.175556 {"type": {"key": "/type/author"}, "name": "Fredo Sanchez", "key": "/authors/OL10597724A", "source_records": ["bwb:9781734096743"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-22T01:31:28.175556"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-22T01:31:28.175556"}}
+/type/author /authors/OL10598266A 1 2022-07-22T05:54:19.767712 {"type": {"key": "/type/author"}, "name": "Michael Friderici", "personal_name": "Michael Friderici", "date": "active 1622", "key": "/authors/OL10598266A", "source_records": ["ia:b31867959"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-22T05:54:19.767712"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-22T05:54:19.767712"}}
+/type/author /authors/OL105982A 1 2008-04-01T03:28:50.625462 {"name": "Bose, S. K.", "personal_name": "Bose, S. K.", "last_modified": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "key": "/authors/OL105982A", "birth_date": "1939", "type": {"key": "/type/author"}, "revision": 1}
+/type/author /authors/OL10598932A 1 2022-07-22T12:29:01.445238 {"type": {"key": "/type/author"}, "name": "Great Britain. Government Office for Science", "key": "/authors/OL10598932A", "source_records": ["ia:b32231611"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-22T12:29:01.445238"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-22T12:29:01.445238"}}
+/type/author /authors/OL10599114A 1 2022-07-22T13:50:04.592754 {"type": {"key": "/type/author"}, "name": "Johann Wolffgang Haag", "personal_name": "Johann Wolffgang Haag", "birth_date": "1707", "key": "/authors/OL10599114A", "source_records": ["ia:b31881336_0001"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-22T13:50:04.592754"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-22T13:50:04.592754"}}
+/type/author /authors/OL10599256A 1 2022-07-22T15:20:44.592649 {"type": {"key": "/type/author"}, "name": "Atle Jordahl", "personal_name": "Atle Jordahl", "key": "/authors/OL10599256A", "source_records": ["ia:leadershipdevelo0000unse_o1t1"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-22T15:20:44.592649"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-22T15:20:44.592649"}}
+/type/author /authors/OL10599729A 1 2022-07-25T03:58:02.197546 {"type": {"key": "/type/author"}, "name": "BossLady Awesome Notebooks", "key": "/authors/OL10599729A", "source_records": ["amazon:1673664644"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-25T03:58:02.197546"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-25T03:58:02.197546"}}
+/type/author /authors/OL10599794A 1 2022-07-25T08:10:17.228009 {"type": {"key": "/type/author"}, "name": "Giles Culkin", "key": "/authors/OL10599794A", "source_records": ["amazon:199970231X"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-25T08:10:17.228009"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-25T08:10:17.228009"}}
+/type/author /authors/OL10599811A 1 2022-07-25T08:22:49.339918 {"type": {"key": "/type/author"}, "name": "brian rollins", "key": "/authors/OL10599811A", "source_records": ["amazon:1482624753"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-25T08:22:49.339918"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-25T08:22:49.339918"}}
+/type/author /authors/OL10600172A 1 2022-07-25T15:33:59.379343 {"type": {"key": "/type/author"}, "name": "Megan Arbour", "key": "/authors/OL10600172A", "source_records": ["amazon:1790133637"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-25T15:33:59.379343"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-25T15:33:59.379343"}}
+/type/author /authors/OL10600422A 1 2022-07-26T09:30:32.949475 {"type": {"key": "/type/author"}, "name": "DALE METTAM", "key": "/authors/OL10600422A", "source_records": ["amazon:8424642384"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-26T09:30:32.949475"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-26T09:30:32.949475"}}
+/type/author /authors/OL10600637A 1 2022-07-27T06:00:36.476428 {"type": {"key": "/type/author"}, "name": "Ockanickon", "personal_name": "Ockanickon", "death_date": "1682?", "key": "/authors/OL10600637A", "source_records": ["ia:trueaccountofdyi00ocka_0"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-27T06:00:36.476428"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-27T06:00:36.476428"}}
+/type/author /authors/OL10600676A 1 2022-07-27T07:32:57.444064 {"type": {"key": "/type/author"}, "name": "Patrick Skene Catling", "key": "/authors/OL10600676A", "source_records": ["amazon:0553155679"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-27T07:32:57.444064"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-27T07:32:57.444064"}}
+/type/author /authors/OL10600779A 1 2022-07-28T05:24:12.609124 {"type": {"key": "/type/author"}, "name": "John A. Logan", "personal_name": "John A. Logan", "birth_date": "1908", "death_date": "1987", "key": "/authors/OL10600779A", "source_records": ["ia:newmethodofwaste00loga"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-28T05:24:12.609124"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-28T05:24:12.609124"}}
+/type/author /authors/OL10601159A 1 2022-07-30T06:44:59.981799 {"type": {"key": "/type/author"}, "name": "Lorin Mannella", "personal_name": "Lorin Mannella", "key": "/authors/OL10601159A", "source_records": ["ia:columbiaglacier00mann"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-30T06:44:59.981799"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-30T06:44:59.981799"}}
+/type/author /authors/OL10601195A 1 2022-07-30T07:12:46.338590 {"type": {"key": "/type/author"}, "name": "Joseph Gordon Martin", "personal_name": "Joseph Gordon Martin", "birth_date": "1930", "key": "/authors/OL10601195A", "source_records": ["ia:lifetimesofjoego0000mart"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-07-30T07:12:46.338590"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-30T07:12:46.338590"}}
+/type/author /authors/OL1060159A 3 2020-09-30T16:12:40.273466 {"created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "latest_revision": 3, "name": "Christopher Derrick", "key": "/authors/OL1060159A", "personal_name": "Christopher Derrick", "birth_date": "1921", "revision": 3, "type": {"key": "/type/author"}, "last_modified": {"type": "/type/datetime", "value": "2020-09-30T16:12:40.273466"}, "remote_ids": {"viaf": "69498393", "wikidata": "Q3892159", "isni": "0000000084531167"}}
+/type/author /authors/OL10601743A 1 2022-08-02T20:07:10.255448 {"type": {"key": "/type/author"}, "name": "James H. Schmitz", "key": "/authors/OL10601743A", "source_records": ["amazon:1538439883"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-02T20:07:10.255448"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-02T20:07:10.255448"}}
+/type/author /authors/OL10601761A 1 2022-08-02T23:46:40.606639 {"type": {"key": "/type/author"}, "name": "PECAU", "key": "/authors/OL10601761A", "source_records": ["amazon:2803628120"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-02T23:46:40.606639"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-02T23:46:40.606639"}}
+/type/author /authors/OL10601821A 1 2022-08-03T04:58:38.285254 {"type": {"key": "/type/author"}, "name": "Yang ruo ya", "personal_name": "Yang ruo ya", "key": "/authors/OL10601821A", "source_records": ["ia:shenbingyongyaoy0001unse_k0k7"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-03T04:58:38.285254"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-03T04:58:38.285254"}}
+/type/author /authors/OL10602087A 1 2022-08-04T05:36:42.906732 {"type": {"key": "/type/author"}, "name": "Flora Macdonald Dempster", "personal_name": "Flora Macdonald Dempster", "key": "/authors/OL10602087A", "source_records": ["ia:helpmemum0000demp"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-04T05:36:42.906732"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-04T05:36:42.906732"}}
+/type/author /authors/OL10602156A 1 2022-08-04T08:03:17.729544 {"type": {"key": "/type/author"}, "name": "Luo Xin", "key": "/authors/OL10602156A", "source_records": ["amazon:7547743129"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-04T08:03:17.729544"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-04T08:03:17.729544"}}
+/type/author /authors/OL10602368A 1 2022-08-05T05:57:22.844405 {"type": {"key": "/type/author"}, "name": "Mac J. Dunbar", "personal_name": "Mac J. Dunbar", "key": "/authors/OL10602368A", "source_records": ["ia:homoarcticuspape00dunb"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-05T05:57:22.844405"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-05T05:57:22.844405"}}
+/type/author /authors/OL1060258A 2 2008-08-20T00:14:03.771882 {"name": "Heinz Nattka\u0308mper", "personal_name": "Heinz Nattka\u0308mper", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T00:14:03.771882"}, "key": "/authors/OL1060258A", "birth_date": "1927", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10602634A 1 2022-08-07T17:30:23.465434 {"type": {"key": "/type/author"}, "name": "DIANA GABALDON", "key": "/authors/OL10602634A", "source_records": ["amazon:0385255853"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-07T17:30:23.465434"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-07T17:30:23.465434"}}
+/type/author /authors/OL10602697A 1 2022-08-08T11:37:45.305177 {"type": {"key": "/type/author"}, "name": "Lidia Palayo Alonso", "key": "/authors/OL10602697A", "source_records": ["amazon:8416985065"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-08T11:37:45.305177"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-08T11:37:45.305177"}}
+/type/author /authors/OL10602718A 1 2022-08-08T16:09:56.001368 {"name": "Miche\u0300le Thibodeau", "key": "/authors/OL10602718A", "type": {"key": "/type/author"}, "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-08T16:09:56.001368"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-08T16:09:56.001368"}}
+/type/author /authors/OL10602762A 1 2022-08-08T22:35:28.712544 {"type": {"key": "/type/author"}, "name": "Sik Pui Wong", "key": "/authors/OL10602762A", "source_records": ["amazon:1930490615"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-08T22:35:28.712544"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-08T22:35:28.712544"}}
+/type/author /authors/OL10603045A 1 2022-08-10T13:31:44.630180 {"name": "Justyna Suchecka", "key": "/authors/OL10603045A", "type": {"key": "/type/author"}, "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-10T13:31:44.630180"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-10T13:31:44.630180"}}
+/type/author /authors/OL10603170A 1 2022-08-11T11:08:53.146069 {"name": "Stewart Clem", "key": "/authors/OL10603170A", "type": {"key": "/type/author"}, "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-11T11:08:53.146069"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-11T11:08:53.146069"}}
+/type/author /authors/OL10603514A 1 2022-08-14T09:39:22.257851 {"type": {"key": "/type/author"}, "name": "rtm", "key": "/authors/OL10603514A", "source_records": ["amazon:9706276025"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-14T09:39:22.257851"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-14T09:39:22.257851"}}
+/type/author /authors/OL10603996A 1 2022-08-17T02:53:23.736306 {"type": {"key": "/type/author"}, "name": "Susan Mortensen", "key": "/authors/OL10603996A", "source_records": ["bwb:9780893709235"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-17T02:53:23.736306"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-17T02:53:23.736306"}}
+/type/author /authors/OL10604321A 1 2022-08-17T04:09:26.651517 {"type": {"key": "/type/author"}, "name": "Fox, John, Jr.", "key": "/authors/OL10604321A", "source_records": ["bwb:9781434476173"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-17T04:09:26.651517"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-17T04:09:26.651517"}}
+/type/author /authors/OL10604333A 1 2022-08-17T04:11:54.271582 {"type": {"key": "/type/author"}, "name": "Janet Kamphorst", "key": "/authors/OL10604333A", "source_records": ["bwb:9789048506033"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-17T04:11:54.271582"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-17T04:11:54.271582"}}
+/type/author /authors/OL1060440A 3 2008-08-29T06:30:28.017789 {"name": "Hans Findeisen", "personal_name": "Hans Findeisen", "last_modified": {"type": "/type/datetime", "value": "2008-08-29T06:30:28.017789"}, "key": "/authors/OL1060440A", "date": "comp.", "type": {"key": "/type/author"}, "revision": 3}
+/type/author /authors/OL10604944A 1 2022-08-17T05:35:53.775642 {"type": {"key": "/type/author"}, "name": "Ronald van Ree", "key": "/authors/OL10604944A", "source_records": ["bwb:9789056296766"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-17T05:35:53.775642"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-17T05:35:53.775642"}}
+/type/author /authors/OL10605337A 1 2022-08-17T06:28:20.971072 {"type": {"key": "/type/author"}, "name": "P. M. Unnikrishnan", "key": "/authors/OL10605337A", "source_records": ["bwb:9788175969513"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-17T06:28:20.971072"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-17T06:28:20.971072"}}
+/type/author /authors/OL10606754A 1 2022-08-17T08:39:45.648094 {"type": {"key": "/type/author"}, "name": "Hseyin Gngr", "key": "/authors/OL10606754A", "source_records": ["bwb:9781281787798"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-17T08:39:45.648094"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-17T08:39:45.648094"}}
+/type/author /authors/OL10606767A 1 2022-08-17T08:42:35.214048 {"type": {"key": "/type/author"}, "name": "J. Burhanudin", "key": "/authors/OL10606767A", "source_records": ["bwb:9781306207836"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-17T08:42:35.214048"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-17T08:42:35.214048"}}
+/type/author /authors/OL10606941A 1 2022-08-17T08:58:08.388493 {"type": {"key": "/type/author"}, "name": "Ryan Lemmer", "key": "/authors/OL10606941A", "source_records": ["bwb:9781783988723"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-17T08:58:08.388493"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-17T08:58:08.388493"}}
+/type/author /authors/OL10607158A 1 2022-08-17T09:16:24.145724 {"type": {"key": "/type/author"}, "name": "Thomas \u00e1 Kempis", "key": "/authors/OL10607158A", "source_records": ["bwb:9781462747689"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-17T09:16:24.145724"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-17T09:16:24.145724"}}
+/type/author /authors/OL10607219A 1 2022-08-17T09:22:31.091928 {"type": {"key": "/type/author"}, "name": "Javeed Chida", "key": "/authors/OL10607219A", "source_records": ["bwb:9781785881725"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-17T09:22:31.091928"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-17T09:22:31.091928"}}
+/type/author /authors/OL10607243A 1 2022-08-17T09:24:54.307213 {"type": {"key": "/type/author"}, "name": "Victoria Hanlen", "key": "/authors/OL10607243A", "source_records": ["bwb:9781474049641"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-17T09:24:54.307213"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-17T09:24:54.307213"}}
+/type/author /authors/OL10607349A 1 2022-08-17T09:34:06.788893 {"type": {"key": "/type/author"}, "name": "Bayo Erinlec", "key": "/authors/OL10607349A", "source_records": ["bwb:9781784394813"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-17T09:34:06.788893"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-17T09:34:06.788893"}}
+/type/author /authors/OL10607501A 1 2022-08-17T09:46:58.841219 {"type": {"key": "/type/author"}, "name": "GEHLAWAT", "key": "/authors/OL10607501A", "source_records": ["bwb:9789380601823"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-17T09:46:58.841219"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-17T09:46:58.841219"}}
+/type/author /authors/OL10607603A 1 2022-08-17T10:10:15.369890 {"type": {"key": "/type/author"}, "name": "Kosmas Dafas", "key": "/authors/OL10607603A", "source_records": ["bwb:9781905670673"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-17T10:10:15.369890"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-17T10:10:15.369890"}}
+/type/author /authors/OL10607790A 1 2022-08-17T11:30:02.587054 {"type": {"key": "/type/author"}, "name": "Alan Anand Johnson", "key": "/authors/OL10607790A", "source_records": ["bwb:9789813273115"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-17T11:30:02.587054"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-17T11:30:02.587054"}}
+/type/author /authors/OL10607795A 1 2022-08-17T11:38:47.975323 {"type": {"key": "/type/author"}, "name": "Adam N. Rorabaugh", "key": "/authors/OL10607795A", "source_records": ["bwb:9781407315836"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-17T11:38:47.975323"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-17T11:38:47.975323"}}
+/type/author /authors/OL10608031A 1 2022-08-17T12:56:39.757995 {"type": {"key": "/type/author"}, "name": "Alicia Nahmad", "key": "/authors/OL10608031A", "source_records": ["bwb:9789811912795"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-17T12:56:39.757995"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-17T12:56:39.757995"}}
+/type/author /authors/OL10608140A 1 2022-08-17T13:01:37.690017 {"type": {"key": "/type/author"}, "name": "Tim Vasilakis", "key": "/authors/OL10608140A", "source_records": ["bwb:9781529149197"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-17T13:01:37.690017"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-17T13:01:37.690017"}}
+/type/author /authors/OL10608277A 1 2022-08-17T13:05:34.074518 {"type": {"key": "/type/author"}, "name": "Samantha Sunne", "key": "/authors/OL10608277A", "source_records": ["bwb:9781003273301"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-17T13:05:34.074518"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-17T13:05:34.074518"}}
+/type/author /authors/OL10608378A 1 2022-08-17T13:08:41.673638 {"type": {"key": "/type/author"}, "name": "THE IMAGES PUBL..", "key": "/authors/OL10608378A", "source_records": ["bwb:9781864709582"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-17T13:08:41.673638"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-17T13:08:41.673638"}}
+/type/author /authors/OL10608384A 1 2022-08-17T13:09:12.490857 {"type": {"key": "/type/author"}, "name": "Rachel E Kovacs", "key": "/authors/OL10608384A", "source_records": ["amazon:1492126098"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-17T13:09:12.490857"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-17T13:09:12.490857"}}
+/type/author /authors/OL10609222A 1 2022-08-17T13:41:52.802392 {"type": {"key": "/type/author"}, "name": "Igor A. Korobeynikov", "key": "/authors/OL10609222A", "source_records": ["bwb:9783031136450"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-17T13:41:52.802392"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-17T13:41:52.802392"}}
+/type/author /authors/OL1060927A 2 2008-08-20T00:18:05.382422 {"name": "Ligia Toms\u0326a", "personal_name": "Ligia Toms\u0326a", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T00:18:05.382422"}, "key": "/authors/OL1060927A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10609412A 1 2022-08-17T13:50:15.147803 {"type": {"key": "/type/author"}, "name": "A. R. Kessel", "key": "/authors/OL10609412A", "source_records": ["bwb:9783112648582"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-17T13:50:15.147803"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-17T13:50:15.147803"}}
+/type/author /authors/OL10609778A 1 2022-08-17T14:09:00.176140 {"type": {"key": "/type/author"}, "name": "Antonius Ratdomopurbo", "key": "/authors/OL10609778A", "source_records": ["bwb:9783031150395"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-17T14:09:00.176140"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-17T14:09:00.176140"}}
+/type/author /authors/OL10610891A 1 2022-08-17T15:21:56.707509 {"type": {"key": "/type/author"}, "name": "Jason Bried", "key": "/authors/OL10610891A", "source_records": ["bwb:9780192898623"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-17T15:21:56.707509"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-17T15:21:56.707509"}}
+/type/author /authors/OL10611074A 1 2022-08-17T15:34:08.135395 {"type": {"key": "/type/author"}, "name": "Pegah Hashemi", "key": "/authors/OL10611074A", "source_records": ["bwb:9780443152986"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-17T15:34:08.135395"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-17T15:34:08.135395"}}
+/type/author /authors/OL10611506A 1 2022-08-17T16:34:09.567851 {"type": {"key": "/type/author"}, "name": "R. Hidaka", "key": "/authors/OL10611506A", "source_records": ["bwb:9780867463323"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-17T16:34:09.567851"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-17T16:34:09.567851"}}
+/type/author /authors/OL10611532A 1 2022-08-17T16:40:24.415286 {"type": {"key": "/type/author"}, "name": "Robert Kallman", "key": "/authors/OL10611532A", "source_records": ["bwb:9780809559053"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-17T16:40:24.415286"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-17T16:40:24.415286"}}
+/type/author /authors/OL10611549A 1 2022-08-17T16:41:53.379986 {"type": {"key": "/type/author"}, "name": "Wheeler, John, Jr.", "key": "/authors/OL10611549A", "source_records": ["bwb:9780809548118"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-17T16:41:53.379986"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-17T16:41:53.379986"}}
+/type/author /authors/OL10611742A 1 2022-08-17T17:18:04.151677 {"type": {"key": "/type/author"}, "name": "Klaus Zacharias", "key": "/authors/OL10611742A", "source_records": ["bwb:9783428089246"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-17T17:18:04.151677"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-17T17:18:04.151677"}}
+/type/author /authors/OL10611793A 1 2022-08-17T17:28:31.426074 {"type": {"key": "/type/author"}, "name": "Yue-dian Hsu", "key": "/authors/OL10611793A", "source_records": ["bwb:9783428099511"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-17T17:28:31.426074"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-17T17:28:31.426074"}}
+/type/author /authors/OL10611899A 1 2022-08-17T17:42:45.109934 {"type": {"key": "/type/author"}, "name": "Cayetano de Cabrera y Quintero", "key": "/authors/OL10611899A", "source_records": ["bwb:9788498976427"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-17T17:42:45.109934"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-17T17:42:45.109934"}}
+/type/author /authors/OL10611900A 1 2022-08-17T17:42:52.034450 {"type": {"key": "/type/author"}, "name": "Zeferino Gonz\u00e1lez", "key": "/authors/OL10611900A", "source_records": ["bwb:9788498970678"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-17T17:42:52.034450"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-17T17:42:52.034450"}}
+/type/author /authors/OL10612162A 1 2022-08-17T18:36:32.518755 {"type": {"key": "/type/author"}, "name": "Gaspar N\u00fa\u00f1ez de Arce", "key": "/authors/OL10612162A", "source_records": ["bwb:9788498978032"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-17T18:36:32.518755"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-17T18:36:32.518755"}}
+/type/author /authors/OL10612283A 1 2022-08-17T19:00:17.468113 {"type": {"key": "/type/author"}, "name": "Wolf-D Grussmann", "key": "/authors/OL10612283A", "source_records": ["bwb:9783428106615"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-17T19:00:17.468113"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-17T19:00:17.468113"}}
+/type/author /authors/OL10612850A 1 2022-08-17T19:53:23.469606 {"type": {"key": "/type/author"}, "name": "Jos\u00e9 Vin\u00e3ls", "key": "/authors/OL10612850A", "source_records": ["bwb:9781589069091"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-17T19:53:23.469606"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-17T19:53:23.469606"}}
+/type/author /authors/OL10613117A 1 2022-08-17T20:25:09.874882 {"type": {"key": "/type/author"}, "name": "Ernesto Hernndez-Cat", "key": "/authors/OL10613117A", "source_records": ["bwb:9781451849851"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-17T20:25:09.874882"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-17T20:25:09.874882"}}
+/type/author /authors/OL10613249A 1 2022-08-17T20:49:51.131410 {"type": {"key": "/type/author"}, "name": "Nina Pavcnik", "key": "/authors/OL10613249A", "source_records": ["bwb:9781451911114"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-17T20:49:51.131410"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-17T20:49:51.131410"}}
+/type/author /authors/OL10613291A 1 2022-08-17T20:59:20.442220 {"type": {"key": "/type/author"}, "name": "Katerina Teksoz", "key": "/authors/OL10613291A", "source_records": ["bwb:9781475599589"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-17T20:59:20.442220"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-17T20:59:20.442220"}}
+/type/author /authors/OL10613458A 1 2022-08-17T21:27:01.211669 {"type": {"key": "/type/author"}, "name": "David G. Dunn", "key": "/authors/OL10613458A", "source_records": ["bwb:9781451926538"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-17T21:27:01.211669"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-17T21:27:01.211669"}}
+/type/author /authors/OL10613702A 1 2022-08-17T22:21:28.849794 {"type": {"key": "/type/author"}, "name": "Alexandra Nigito", "key": "/authors/OL10613702A", "source_records": ["bwb:9782503515199"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-17T22:21:28.849794"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-17T22:21:28.849794"}}
+/type/author /authors/OL10613812A 1 2022-08-17T22:36:54.669028 {"type": {"key": "/type/author"}, "name": "Dieter Bs", "key": "/authors/OL10613812A", "source_records": ["bwb:9781451842463"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-17T22:36:54.669028"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-17T22:36:54.669028"}}
+/type/author /authors/OL10613944A 1 2022-08-17T23:25:13.494972 {"type": {"key": "/type/author"}, "name": "Robert H. Floyd", "key": "/authors/OL10613944A", "source_records": ["bwb:9781455215379"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-17T23:25:13.494972"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-17T23:25:13.494972"}}
+/type/author /authors/OL10613996A 1 2022-08-17T23:29:02.985594 {"type": {"key": "/type/author"}, "name": "Harry Domela", "key": "/authors/OL10613996A", "source_records": ["bwb:9781434415141"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-17T23:29:02.985594"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-17T23:29:02.985594"}}
+/type/author /authors/OL10614045A 2 2022-08-18T00:20:33.327419 {"name": "Ant\u00f3nio Rocha & Fernando Laureano", "key": "/authors/OL10614045A", "type": {"key": "/type/author"}, "photos": [12861732], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2022-08-18T00:03:54.089619"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T00:20:33.327419"}}
+/type/author /authors/OL10614169A 1 2022-08-18T00:43:52.374920 {"type": {"key": "/type/author"}, "name": "Ahmed Zorom", "key": "/authors/OL10614169A", "source_records": ["bwb:9781451866513"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T00:43:52.374920"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T00:43:52.374920"}}
+/type/author /authors/OL1061418A 2 2012-06-06T22:46:17.111784 {"created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "latest_revision": 2, "name": "Lange, Fritz", "key": "/authors/OL1061418A", "personal_name": "Lange, Fritz", "birth_date": "1873", "death_date": "1933", "type": {"key": "/type/author"}, "last_modified": {"type": "/type/datetime", "value": "2012-06-06T22:46:17.111784"}, "revision": 2}
+/type/author /authors/OL10614194A 1 2022-08-18T01:12:59.893373 {"type": {"key": "/type/author"}, "name": "V. Y. Peterson", "key": "/authors/OL10614194A", "source_records": ["bwb:9781481743013"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T01:12:59.893373"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T01:12:59.893373"}}
+/type/author /authors/OL10614224A 1 2022-08-18T01:29:43.777264 {"type": {"key": "/type/author"}, "name": "Esteve Bosch De Jaureguizar", "key": "/authors/OL10614224A", "source_records": ["bwb:9788415115519"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T01:29:43.777264"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T01:29:43.777264"}}
+/type/author /authors/OL1061450A 2 2008-08-20T00:20:51.393809 {"name": "Philippe Visson", "personal_name": "Philippe Visson", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T00:20:51.393809"}, "key": "/authors/OL1061450A", "birth_date": "1942", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10614511A 1 2022-08-18T03:27:03.885381 {"type": {"key": "/type/author"}, "name": "John Ridings Lee", "key": "/authors/OL10614511A", "source_records": ["bwb:9781484311677"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T03:27:03.885381"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T03:27:03.885381"}}
+/type/author /authors/OL10614645A 1 2022-08-18T03:33:26.358718 {"type": {"key": "/type/author"}, "name": "Dusica Kunaver", "key": "/authors/OL10614645A", "source_records": ["bwb:9781740490351"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T03:33:26.358718"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T03:33:26.358718"}}
+/type/author /authors/OL10614901A 1 2022-08-18T03:50:17.695976 {"type": {"key": "/type/author"}, "name": "Carl August Emge", "key": "/authors/OL10614901A", "source_records": ["bwb:9783428003594"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T03:50:17.695976"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T03:50:17.695976"}}
+/type/author /authors/OL10615362A 1 2022-08-18T04:28:35.586260 {"type": {"key": "/type/author"}, "name": "Billlie A. Williams", "key": "/authors/OL10615362A", "source_records": ["bwb:9781613090626"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T04:28:35.586260"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T04:28:35.586260"}}
+/type/author /authors/OL10615495A 1 2022-08-18T04:38:21.390609 {"type": {"key": "/type/author"}, "name": "Chris Chris Ruisi", "key": "/authors/OL10615495A", "source_records": ["bwb:9781599326252"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T04:38:21.390609"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T04:38:21.390609"}}
+/type/author /authors/OL10615626A 1 2022-08-18T04:51:18.957081 {"type": {"key": "/type/author"}, "name": "Alexandra Dreibus", "key": "/authors/OL10615626A", "source_records": ["bwb:9783428101269"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T04:51:18.957081"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T04:51:18.957081"}}
+/type/author /authors/OL10615727A 1 2022-08-18T05:00:20.565090 {"type": {"key": "/type/author"}, "name": "Patrick del Duca", "key": "/authors/OL10615727A", "source_records": ["bwb:9782503551128"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T05:00:20.565090"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T05:00:20.565090"}}
+/type/author /authors/OL10616038A 1 2022-08-18T05:30:29.758144 {"type": {"key": "/type/author"}, "name": "Ifo-Institut f\u00fcr Wirtschaftsforschung", "key": "/authors/OL10616038A", "source_records": ["bwb:9783428002399"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T05:30:29.758144"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T05:30:29.758144"}}
+/type/author /authors/OL10617478A 1 2022-08-18T08:01:07.876246 {"type": {"key": "/type/author"}, "name": "Thorvardur T. Olafsson", "key": "/authors/OL10617478A", "source_records": ["bwb:9781484376645"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T08:01:07.876246"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T08:01:07.876246"}}
+/type/author /authors/OL10617674A 1 2022-08-18T08:14:24.598219 {"type": {"key": "/type/author"}, "name": "Marty Marty Verbic", "key": "/authors/OL10617674A", "source_records": ["bwb:9781599328911"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T08:14:24.598219"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T08:14:24.598219"}}
+/type/author /authors/OL10617800A 1 2022-08-18T08:23:43.923505 {"type": {"key": "/type/author"}, "name": "Fella Cederbaum", "key": "/authors/OL10617800A", "source_records": ["bwb:9781076678058"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T08:23:43.923505"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T08:23:43.923505"}}
+/type/author /authors/OL10618025A 1 2022-08-18T08:44:32.349885 {"type": {"key": "/type/author"}, "name": "Hebermann JOHN", "key": "/authors/OL10618025A", "source_records": ["bwb:9781695922242"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T08:44:32.349885"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T08:44:32.349885"}}
+/type/author /authors/OL10618047A 1 2022-08-18T08:45:35.139350 {"type": {"key": "/type/author"}, "name": "Colors and Zone", "key": "/authors/OL10618047A", "source_records": ["bwb:9781674072081"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T08:45:35.139350"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T08:45:35.139350"}}
+/type/author /authors/OL10618397A 1 2022-08-18T09:15:44.978453 {"type": {"key": "/type/author"}, "name": "Resty Design", "key": "/authors/OL10618397A", "source_records": ["bwb:9781089868293"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T09:15:44.978453"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T09:15:44.978453"}}
+/type/author /authors/OL10618504A 1 2022-08-18T09:26:42.605758 {"type": {"key": "/type/author"}, "name": "Frances B. Dielmann", "key": "/authors/OL10618504A", "source_records": ["bwb:9783428058921"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T09:26:42.605758"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T09:26:42.605758"}}
+/type/author /authors/OL10618767A 1 2022-08-18T09:54:57.423644 {"type": {"key": "/type/author"}, "name": "Jane Dokko", "key": "/authors/OL10618767A", "source_records": ["bwb:9781484387092"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T09:54:57.423644"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T09:54:57.423644"}}
+/type/author /authors/OL10618807A 1 2022-08-18T09:59:14.738676 {"type": {"key": "/type/author"}, "name": "Ronnie Champ", "key": "/authors/OL10618807A", "source_records": ["bwb:9781099189746"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T09:59:14.738676"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T09:59:14.738676"}}
+/type/author /authors/OL10618979A 1 2022-08-18T10:13:25.903555 {"type": {"key": "/type/author"}, "name": "Jeff Danforth", "key": "/authors/OL10618979A", "source_records": ["bwb:9781475542936"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T10:13:25.903555"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T10:13:25.903555"}}
+/type/author /authors/OL1061908A 2 2008-08-20T00:23:18.994219 {"name": "Inge Taubert", "personal_name": "Inge Taubert", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T00:23:18.994219"}, "key": "/authors/OL1061908A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10619258A 1 2022-08-18T10:32:11.424220 {"type": {"key": "/type/author"}, "name": "Allan Auclair", "key": "/authors/OL10619258A", "source_records": ["bwb:9781484378977"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T10:32:11.424220"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T10:32:11.424220"}}
+/type/author /authors/OL10619263A 1 2022-08-18T10:32:39.595653 {"type": {"key": "/type/author"}, "name": "Pedro Espaillat", "key": "/authors/OL10619263A", "source_records": ["bwb:9781513524160"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T10:32:39.595653"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T10:32:39.595653"}}
+/type/author /authors/OL10619358A 1 2022-08-18T10:41:32.195111 {"type": {"key": "/type/author"}, "name": "Kai Helge Becker", "key": "/authors/OL10619358A", "source_records": ["bwb:9788763003049"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T10:41:32.195111"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T10:41:32.195111"}}
+/type/author /authors/OL10620028A 1 2022-08-18T11:44:09.807340 {"type": {"key": "/type/author"}, "name": "Nate Morgan", "key": "/authors/OL10620028A", "source_records": ["bwb:9780786049417"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T11:44:09.807340"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T11:44:09.807340"}}
+/type/author /authors/OL1062002A 2 2008-08-20T00:23:40.722177 {"name": "Heinz Niewerth", "personal_name": "Heinz Niewerth", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T00:23:40.722177"}, "key": "/authors/OL1062002A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10620439A 1 2022-08-18T12:49:00.726523 {"type": {"key": "/type/author"}, "name": "Giovanni Consolo", "key": "/authors/OL10620439A", "source_records": ["bwb:9781521238301"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T12:49:00.726523"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T12:49:00.726523"}}
+/type/author /authors/OL10620581A 1 2022-08-18T12:55:48.708120 {"type": {"key": "/type/author"}, "name": "A. V. Blackmon", "key": "/authors/OL10620581A", "source_records": ["bwb:9781665598477"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T12:55:48.708120"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T12:55:48.708120"}}
+/type/author /authors/OL10620950A 1 2022-08-18T13:03:14.268774 {"type": {"key": "/type/author"}, "name": "Daisy Adams", "key": "/authors/OL10620950A", "source_records": ["bwb:9798746940216"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T13:03:14.268774"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T13:03:14.268774"}}
+/type/author /authors/OL10621118A 1 2022-08-18T13:06:13.921621 {"type": {"key": "/type/author"}, "name": "Rachel Ratke", "key": "/authors/OL10621118A", "source_records": ["bwb:9798447050528"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T13:06:13.921621"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T13:06:13.921621"}}
+/type/author /authors/OL10621292A 1 2022-08-18T13:09:35.884306 {"type": {"key": "/type/author"}, "name": "Reynaldo ANDERSON", "key": "/authors/OL10621292A", "source_records": ["bwb:9798834834373"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T13:09:35.884306"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T13:09:35.884306"}}
+/type/author /authors/OL10621610A 1 2022-08-18T13:24:32.978658 {"type": {"key": "/type/author"}, "name": "www.facebook.com/lapennadorata", "key": "/authors/OL10621610A", "source_records": ["bwb:9781667416823"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T13:24:32.978658"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T13:24:32.978658"}}
+/type/author /authors/OL10621897A 1 2022-08-18T13:33:37.328124 {"type": {"key": "/type/author"}, "name": "Amine NASMA", "key": "/authors/OL10621897A", "source_records": ["bwb:9798839619500"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T13:33:37.328124"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T13:33:37.328124"}}
+/type/author /authors/OL10622211A 1 2022-08-18T13:40:30.200613 {"type": {"key": "/type/author"}, "name": "Dazzling Deer", "key": "/authors/OL10622211A", "source_records": ["bwb:9798838329363"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T13:40:30.200613"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T13:40:30.200613"}}
+/type/author /authors/OL10622283A 1 2022-08-18T13:42:03.876723 {"type": {"key": "/type/author"}, "name": "D. Dorio", "key": "/authors/OL10622283A", "source_records": ["bwb:9798834964919"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T13:42:03.876723"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T13:42:03.876723"}}
+/type/author /authors/OL10622751A 1 2022-08-18T13:55:08.681548 {"type": {"key": "/type/author"}, "name": "Helga Zeiner", "key": "/authors/OL10622751A", "source_records": ["bwb:9798667671671"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T13:55:08.681548"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T13:55:08.681548"}}
+/type/author /authors/OL10623006A 1 2022-08-18T14:00:18.886600 {"type": {"key": "/type/author"}, "name": "Josephine Griffith", "key": "/authors/OL10623006A", "source_records": ["bwb:9798794469240"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T14:00:18.886600"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T14:00:18.886600"}}
+/type/author /authors/OL1062317A 1 2008-04-01T03:28:50.625462 {"name": "World Mining Congress (9th 1976 Du\u0308sseldorf, Germany)", "last_modified": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "key": "/authors/OL1062317A", "type": {"key": "/type/author"}, "revision": 1}
+/type/author /authors/OL1062319A 2 2008-08-20T00:25:14.599784 {"name": "H. G. Jerie", "personal_name": "H. G. Jerie", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T00:25:14.599784"}, "key": "/authors/OL1062319A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10623422A 1 2022-08-18T14:11:11.107202 {"type": {"key": "/type/author"}, "name": "Natalie Preci", "key": "/authors/OL10623422A", "source_records": ["bwb:9781982290337"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T14:11:11.107202"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T14:11:11.107202"}}
+/type/author /authors/OL10623475A 1 2022-08-18T14:12:55.150695 {"type": {"key": "/type/author"}, "name": "John Tabis", "key": "/authors/OL10623475A", "source_records": ["bwb:9780789341426"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T14:12:55.150695"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T14:12:55.150695"}}
+/type/author /authors/OL10624247A 1 2022-08-18T14:36:25.033824 {"type": {"key": "/type/author"}, "name": "Holly Holidays Pockets", "key": "/authors/OL10624247A", "source_records": ["bwb:9798699930388"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T14:36:25.033824"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T14:36:25.033824"}}
+/type/author /authors/OL10624426A 1 2022-08-18T14:40:49.797569 {"type": {"key": "/type/author"}, "name": "Charlott's Little Castle Press Co.", "key": "/authors/OL10624426A", "source_records": ["bwb:9798736685677"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T14:40:49.797569"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T14:40:49.797569"}}
+/type/author /authors/OL10624678A 1 2022-08-18T14:48:18.815422 {"type": {"key": "/type/author"}, "name": "Sumreen Asim", "key": "/authors/OL10624678A", "source_records": ["bwb:9781668455883"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T14:48:18.815422"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T14:48:18.815422"}}
+/type/author /authors/OL10625028A 1 2022-08-18T14:57:32.707583 {"type": {"key": "/type/author"}, "name": "Charles Lochotzki", "key": "/authors/OL10625028A", "source_records": ["bwb:9798404447545"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T14:57:32.707583"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T14:57:32.707583"}}
+/type/author /authors/OL10625105A 1 2022-08-18T14:59:13.224205 {"type": {"key": "/type/author"}, "name": "Charlie Arlo", "key": "/authors/OL10625105A", "source_records": ["bwb:9798835471003"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T14:59:13.224205"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T14:59:13.224205"}}
+/type/author /authors/OL10625230A 1 2022-08-18T15:02:52.156728 {"type": {"key": "/type/author"}, "name": "Jimmy Dzurilla", "key": "/authors/OL10625230A", "source_records": ["bwb:9798507492107"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T15:02:52.156728"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T15:02:52.156728"}}
+/type/author /authors/OL1062538A 2 2008-08-20T00:26:07.641611 {"name": "Heiner Vollsta\u0308dt", "personal_name": "Heiner Vollsta\u0308dt", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T00:26:07.641611"}, "key": "/authors/OL1062538A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10625602A 1 2022-08-18T15:12:59.579428 {"type": {"key": "/type/author"}, "name": "The Uglycat Press", "key": "/authors/OL10625602A", "source_records": ["bwb:9798986574004"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T15:12:59.579428"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T15:12:59.579428"}}
+/type/author /authors/OL10625606A 1 2022-08-18T15:13:08.091380 {"type": {"key": "/type/author"}, "name": "Adriena Fong", "key": "/authors/OL10625606A", "source_records": ["bwb:9781913123161"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T15:13:08.091380"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T15:13:08.091380"}}
+/type/author /authors/OL10625687A 1 2022-08-18T15:23:23.610238 {"type": {"key": "/type/author"}, "name": "Paul L. Staack", "key": "/authors/OL10625687A", "source_records": ["bwb:9781664269040"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T15:23:23.610238"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T15:23:23.610238"}}
+/type/author /authors/OL10625799A 1 2022-08-18T15:29:26.297421 {"type": {"key": "/type/author"}, "name": "Heidi McLynn", "key": "/authors/OL10625799A", "source_records": ["bwb:9798986014500"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T15:29:26.297421"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T15:29:26.297421"}}
+/type/author /authors/OL1062584A 2 2008-08-19T21:34:48.394605 {"name": "Peter Sippel", "personal_name": "Peter Sippel", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T21:34:48.394605"}, "key": "/authors/OL1062584A", "birth_date": "1951", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10625873A 1 2022-08-18T15:30:37.129616 {"type": {"key": "/type/author"}, "name": "Jenna Love", "key": "/authors/OL10625873A", "source_records": ["bwb:9780578269900"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T15:30:37.129616"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T15:30:37.129616"}}
+/type/author /authors/OL10626132A 1 2022-08-18T15:37:11.991349 {"type": {"key": "/type/author"}, "name": "Bande Dessin\u00e9e Vierge Publicaion", "key": "/authors/OL10626132A", "source_records": ["bwb:9798629657576"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T15:37:11.991349"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T15:37:11.991349"}}
+/type/author /authors/OL10626293A 1 2022-08-18T15:42:25.308580 {"type": {"key": "/type/author"}, "name": "I. A. W. Gratitude Press", "key": "/authors/OL10626293A", "source_records": ["bwb:9798409438128"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T15:42:25.308580"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T15:42:25.308580"}}
+/type/author /authors/OL10626351A 1 2022-08-18T15:43:42.193600 {"type": {"key": "/type/author"}, "name": "Cossondre Bahr", "key": "/authors/OL10626351A", "source_records": ["bwb:9798524613141"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T15:43:42.193600"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T15:43:42.193600"}}
+/type/author /authors/OL10626442A 1 2022-08-18T15:46:29.094497 {"type": {"key": "/type/author"}, "name": "W.A.Woodhouse", "key": "/authors/OL10626442A", "source_records": ["bwb:9781669820840"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T15:46:29.094497"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T15:46:29.094497"}}
+/type/author /authors/OL10626583A 1 2022-08-18T15:52:01.833298 {"type": {"key": "/type/author"}, "name": "Adam Langstroth", "key": "/authors/OL10626583A", "source_records": ["bwb:9781922539595"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T15:52:01.833298"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T15:52:01.833298"}}
+/type/author /authors/OL10626626A 1 2022-08-18T15:53:48.527435 {"type": {"key": "/type/author"}, "name": "Marilyn Almonte", "key": "/authors/OL10626626A", "source_records": ["bwb:9798218030186"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T15:53:48.527435"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T15:53:48.527435"}}
+/type/author /authors/OL10626648A 1 2022-08-18T15:54:39.578300 {"type": {"key": "/type/author"}, "name": "Mars Avelino", "key": "/authors/OL10626648A", "source_records": ["bwb:9798886224641"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T15:54:39.578300"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T15:54:39.578300"}}
+/type/author /authors/OL10626658A 1 2022-08-18T15:54:50.989844 {"type": {"key": "/type/author"}, "name": "Lissette Tuarez", "key": "/authors/OL10626658A", "source_records": ["bwb:9781955964463"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T15:54:50.989844"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T15:54:50.989844"}}
+/type/author /authors/OL10626685A 1 2022-08-18T15:55:51.843619 {"type": {"key": "/type/author"}, "name": "Sangeeta Krishnan", "key": "/authors/OL10626685A", "source_records": ["bwb:9781637424162"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T15:55:51.843619"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T15:55:51.843619"}}
+/type/author /authors/OL10627007A 1 2022-08-18T16:06:37.135814 {"type": {"key": "/type/author"}, "name": "Heide Hause", "key": "/authors/OL10627007A", "source_records": ["bwb:9798544607878"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T16:06:37.135814"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T16:06:37.135814"}}
+/type/author /authors/OL10627305A 1 2022-08-18T16:17:41.139563 {"type": {"key": "/type/author"}, "name": "Katherine Stagnitti", "key": "/authors/OL10627305A", "source_records": ["bwb:9798986609515"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T16:17:41.139563"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T16:17:41.139563"}}
+/type/author /authors/OL1062756A 2 2008-08-20T00:27:08.416775 {"name": "Walter Borchers", "personal_name": "Walter Borchers", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T00:27:08.416775"}, "key": "/authors/OL1062756A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10627579A 1 2022-08-18T16:29:03.169360 {"type": {"key": "/type/author"}, "name": "Xu Bian", "key": "/authors/OL10627579A", "source_records": ["bwb:9781475862096"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T16:29:03.169360"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T16:29:03.169360"}}
+/type/author /authors/OL10627699A 1 2022-08-18T16:33:07.045963 {"type": {"key": "/type/author"}, "name": "Tasana Camara", "key": "/authors/OL10627699A", "source_records": ["bwb:9781953166128"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T16:33:07.045963"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T16:33:07.045963"}}
+/type/author /authors/OL10627742A 1 2022-08-18T16:34:49.716533 {"type": {"key": "/type/author"}, "name": "ameni el haj", "key": "/authors/OL10627742A", "source_records": ["bwb:9798442042658"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T16:34:49.716533"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T16:34:49.716533"}}
+/type/author /authors/OL10627895A 1 2022-08-18T16:40:03.941508 {"type": {"key": "/type/author"}, "name": "Eken SHINE", "key": "/authors/OL10627895A", "source_records": ["bwb:9798842150700"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T16:40:03.941508"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T16:40:03.941508"}}
+/type/author /authors/OL10627948A 1 2022-08-18T16:41:31.577939 {"type": {"key": "/type/author"}, "name": "Frances J.Wilson", "key": "/authors/OL10627948A", "source_records": ["bwb:9798837453519"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T16:41:31.577939"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T16:41:31.577939"}}
+/type/author /authors/OL10628580A 1 2022-08-18T17:07:16.031713 {"type": {"key": "/type/author"}, "name": "Lydia Abuhl", "key": "/authors/OL10628580A", "source_records": ["bwb:9798462957673"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T17:07:16.031713"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T17:07:16.031713"}}
+/type/author /authors/OL10628660A 1 2022-08-18T17:09:32.222395 {"type": {"key": "/type/author"}, "name": "Bennett Dutka", "key": "/authors/OL10628660A", "source_records": ["bwb:9798460563647"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T17:09:32.222395"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T17:09:32.222395"}}
+/type/author /authors/OL10628734A 1 2022-08-18T17:11:24.000849 {"type": {"key": "/type/author"}, "name": "Webefo Paxton Press", "key": "/authors/OL10628734A", "source_records": ["bwb:9798772570838"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T17:11:24.000849"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T17:11:24.000849"}}
+/type/author /authors/OL10628824A 1 2022-08-18T17:14:31.819388 {"type": {"key": "/type/author"}, "name": "Debora Bursley", "key": "/authors/OL10628824A", "source_records": ["bwb:9798444845387"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T17:14:31.819388"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T17:14:31.819388"}}
+/type/author /authors/OL10629356A 1 2022-08-18T17:43:55.579300 {"type": {"key": "/type/author"}, "name": "Madan Gopal Goel", "key": "/authors/OL10629356A", "source_records": ["bwb:9781637544426"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T17:43:55.579300"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T17:43:55.579300"}}
+/type/author /authors/OL10629806A 1 2022-08-18T17:58:54.020748 {"type": {"key": "/type/author"}, "name": "Valentina Robles", "key": "/authors/OL10629806A", "source_records": ["bwb:9798838355959"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T17:58:54.020748"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T17:58:54.020748"}}
+/type/author /authors/OL10629937A 1 2022-08-18T18:04:48.235962 {"type": {"key": "/type/author"}, "name": "Paul Christo", "key": "/authors/OL10629937A", "source_records": ["bwb:9781945188107"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T18:04:48.235962"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T18:04:48.235962"}}
+/type/author /authors/OL10629961A 1 2022-08-18T18:05:36.143362 {"type": {"key": "/type/author"}, "name": "Karen Kliethermes", "key": "/authors/OL10629961A", "source_records": ["bwb:9780998869209"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T18:05:36.143362"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T18:05:36.143362"}}
+/type/author /authors/OL10630384A 1 2022-08-18T18:40:35.764654 {"type": {"key": "/type/author"}, "name": "Eva Mo", "key": "/authors/OL10630384A", "source_records": ["bwb:9798833229835"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T18:40:35.764654"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T18:40:35.764654"}}
+/type/author /authors/OL10630536A 1 2022-08-18T18:47:05.465906 {"type": {"key": "/type/author"}, "name": "Rehman Hassan", "key": "/authors/OL10630536A", "source_records": ["bwb:9798839608382"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T18:47:05.465906"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T18:47:05.465906"}}
+/type/author /authors/OL10630664A 1 2022-08-18T18:51:55.418501 {"type": {"key": "/type/author"}, "name": "Holly Margl", "key": "/authors/OL10630664A", "source_records": ["bwb:9781737200673"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T18:51:55.418501"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T18:51:55.418501"}}
+/type/author /authors/OL10630787A 1 2022-08-18T18:59:39.428453 {"type": {"key": "/type/author"}, "name": "Mignon Nagel-Selb", "key": "/authors/OL10630787A", "source_records": ["bwb:9781071505809"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T18:59:39.428453"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T18:59:39.428453"}}
+/type/author /authors/OL10630802A 1 2022-08-18T19:00:35.713016 {"type": {"key": "/type/author"}, "name": "Franco Rovedo", "key": "/authors/OL10630802A", "source_records": ["bwb:9781547523573"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T19:00:35.713016"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T19:00:35.713016"}}
+/type/author /authors/OL10631633A 1 2022-08-18T19:30:58.359404 {"type": {"key": "/type/author"}, "name": "Jan Lehman", "key": "/authors/OL10631633A", "source_records": ["bwb:9781634895859"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T19:30:58.359404"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T19:30:58.359404"}}
+/type/author /authors/OL10631947A 1 2022-08-18T19:44:04.964969 {"type": {"key": "/type/author"}, "name": "Alex WILLIAMS", "key": "/authors/OL10631947A", "source_records": ["bwb:9798838111869"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T19:44:04.964969"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T19:44:04.964969"}}
+/type/author /authors/OL10632170A 1 2022-08-18T19:50:21.730651 {"type": {"key": "/type/author"}, "name": "J. A. A. Yorkshire Coloring Book", "key": "/authors/OL10632170A", "source_records": ["bwb:9798789330197"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T19:50:21.730651"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T19:50:21.730651"}}
+/type/author /authors/OL10632220A 1 2022-08-18T19:51:45.726664 {"type": {"key": "/type/author"}, "name": "Jennifer Jeppson", "key": "/authors/OL10632220A", "source_records": ["bwb:9798833084748"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T19:51:45.726664"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T19:51:45.726664"}}
+/type/author /authors/OL10632261A 1 2022-08-18T19:52:56.230231 {"type": {"key": "/type/author"}, "name": "Matzi Mollỵ", "key": "/authors/OL10632261A", "source_records": ["bwb:9798835159147"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T19:52:56.230231"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T19:52:56.230231"}}
+/type/author /authors/OL10632591A 1 2022-08-18T20:11:44.805048 {"type": {"key": "/type/author"}, "name": "Jan Kuniholm", "key": "/authors/OL10632591A", "source_records": ["bwb:9780988202443"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T20:11:44.805048"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T20:11:44.805048"}}
+/type/author /authors/OL10632723A 1 2022-08-18T20:19:15.751672 {"type": {"key": "/type/author"}, "name": "David Redstone", "key": "/authors/OL10632723A", "source_records": ["bwb:9798831781472"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T20:19:15.751672"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T20:19:15.751672"}}
+/type/author /authors/OL10633162A 1 2022-08-18T20:34:06.317130 {"type": {"key": "/type/author"}, "name": "Biryani Treasure Hunting Log Book", "key": "/authors/OL10633162A", "source_records": ["bwb:9798439121397"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T20:34:06.317130"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T20:34:06.317130"}}
+/type/author /authors/OL10634155A 1 2022-08-18T21:14:10.319782 {"type": {"key": "/type/author"}, "name": "Daria Utenkova", "key": "/authors/OL10634155A", "source_records": ["bwb:9781667433950"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T21:14:10.319782"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T21:14:10.319782"}}
+/type/author /authors/OL1063426A 2 2008-08-20T00:29:25.702858 {"name": "Don L. Voss", "personal_name": "Don L. Voss", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T00:29:25.702858"}, "key": "/authors/OL1063426A", "birth_date": "1949", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10634380A 1 2022-08-18T21:21:35.008208 {"type": {"key": "/type/author"}, "name": "Mlaudie Amador", "key": "/authors/OL10634380A", "source_records": ["bwb:9798439019700"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T21:21:35.008208"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T21:21:35.008208"}}
+/type/author /authors/OL1063443A 2 2008-08-20T00:29:30.880759 {"name": "Eric D. Rankin", "personal_name": "Eric D. Rankin", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T00:29:30.880759"}, "key": "/authors/OL1063443A", "birth_date": "1954", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL1063446A 2 2008-08-20T00:29:31.224682 {"name": "Ronald Selleck", "personal_name": "Ronald Selleck", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T00:29:31.224682"}, "key": "/authors/OL1063446A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10634567A 1 2022-08-18T21:29:08.882748 {"type": {"key": "/type/author"}, "name": "Hajar design", "key": "/authors/OL10634567A", "source_records": ["bwb:9798818059266"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T21:29:08.882748"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T21:29:08.882748"}}
+/type/author /authors/OL10634767A 1 2022-08-18T21:37:40.981927 {"type": {"key": "/type/author"}, "name": "Jane Larson", "key": "/authors/OL10634767A", "source_records": ["bwb:9798808094635"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T21:37:40.981927"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T21:37:40.981927"}}
+/type/author /authors/OL10635250A 1 2022-08-18T21:56:59.488893 {"type": {"key": "/type/author"}, "name": "Eloise Fasula", "key": "/authors/OL10635250A", "source_records": ["bwb:9798468995471"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T21:56:59.488893"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T21:56:59.488893"}}
+/type/author /authors/OL10635400A 1 2022-08-18T22:00:49.880232 {"type": {"key": "/type/author"}, "name": "Elisa Maiorano Driussi", "key": "/authors/OL10635400A", "source_records": ["bwb:9798821158208"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T22:00:49.880232"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T22:00:49.880232"}}
+/type/author /authors/OL10635723A 1 2022-08-18T22:19:36.616018 {"type": {"key": "/type/author"}, "name": "Elizabeth German", "key": "/authors/OL10635723A", "source_records": ["bwb:9780838949917"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T22:19:36.616018"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T22:19:36.616018"}}
+/type/author /authors/OL10635789A 1 2022-08-18T22:23:22.553015 {"type": {"key": "/type/author"}, "name": "Liani Mirelis V\u00e1zquez Santana", "key": "/authors/OL10635789A", "source_records": ["bwb:9781735805955"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T22:23:22.553015"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T22:23:22.553015"}}
+/type/author /authors/OL1063579A 2 2008-08-20T00:30:03.885609 {"name": "Maria Cristina Jorge Squeff", "personal_name": "Maria Cristina Jorge Squeff", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T00:30:03.885609"}, "key": "/authors/OL1063579A", "birth_date": "1953", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10636028A 1 2022-08-18T22:31:46.741062 {"type": {"key": "/type/author"}, "name": "Lillian Oberlander", "key": "/authors/OL10636028A", "source_records": ["bwb:9798526460583"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T22:31:46.741062"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T22:31:46.741062"}}
+/type/author /authors/OL1063624A 4 2020-09-30T18:47:51.110431 {"personal_name": "Walter Arthur Maier", "last_modified": {"type": "/type/datetime", "value": "2020-09-30T18:47:51.110431"}, "latest_revision": 4, "key": "/authors/OL1063624A", "remote_ids": {"viaf": "33298290", "wikidata": "Q7964128", "isni": "000000006337502X"}, "name": "Walter Arthur Maier", "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "death_date": "1950", "birth_date": "1893", "type": {"key": "/type/author"}, "revision": 4}
+/type/author /authors/OL10636254A 1 2022-08-18T22:40:36.459059 {"type": {"key": "/type/author"}, "name": "Ericka Pierre", "key": "/authors/OL10636254A", "source_records": ["bwb:9798479190643"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T22:40:36.459059"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T22:40:36.459059"}}
+/type/author /authors/OL10636264A 1 2022-08-18T22:41:33.050024 {"type": {"key": "/type/author"}, "name": "Trail Mix Shooting Log Book", "key": "/authors/OL10636264A", "source_records": ["bwb:9798433946408"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T22:41:33.050024"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T22:41:33.050024"}}
+/type/author /authors/OL1063665A 2 2017-12-01T00:36:10.171388 {"name": "Emilov, I\u0361U. N.", "personal_name": "Emilov, I\u0361U. N.", "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2017-12-01T00:36:10.171388"}, "latest_revision": 2, "key": "/authors/OL1063665A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10636695A 1 2022-08-18T22:59:13.628077 {"type": {"key": "/type/author"}, "name": "Saul Burns", "key": "/authors/OL10636695A", "source_records": ["bwb:9798656815307"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T22:59:13.628077"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T22:59:13.628077"}}
+/type/author /authors/OL10636845A 1 2022-08-18T23:05:34.938193 {"type": {"key": "/type/author"}, "name": "The Goldbergs Calender", "key": "/authors/OL10636845A", "source_records": ["bwb:9798786380515"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T23:05:34.938193"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T23:05:34.938193"}}
+/type/author /authors/OL10637067A 1 2022-08-18T23:15:49.087445 {"type": {"key": "/type/author"}, "name": "Taylor Kay Phillips", "key": "/authors/OL10637067A", "source_records": ["bwb:9781984861337"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T23:15:49.087445"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T23:15:49.087445"}}
+/type/author /authors/OL10637464A 1 2022-08-18T23:33:50.079792 {"type": {"key": "/type/author"}, "name": "Leonor's Little Castle Press Co.", "key": "/authors/OL10637464A", "source_records": ["bwb:9798506818113"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T23:33:50.079792"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T23:33:50.079792"}}
+/type/author /authors/OL10637847A 1 2022-08-18T23:46:50.667113 {"type": {"key": "/type/author"}, "name": "Enya's Little Castle Press Co.", "key": "/authors/OL10637847A", "source_records": ["bwb:9798717007498"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T23:46:50.667113"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T23:46:50.667113"}}
+/type/author /authors/OL10637892A 1 2022-08-18T23:49:15.982138 {"type": {"key": "/type/author"}, "name": "D. Steve Walker", "key": "/authors/OL10637892A", "source_records": ["bwb:9781663241801"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T23:49:15.982138"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T23:49:15.982138"}}
+/type/author /authors/OL10637967A 1 2022-08-18T23:53:14.209548 {"type": {"key": "/type/author"}, "name": "Anna-Lisa Giehl", "key": "/authors/OL10637967A", "source_records": ["bwb:9783161613234"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-18T23:53:14.209548"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-18T23:53:14.209548"}}
+/type/author /authors/OL10638152A 1 2022-08-19T00:01:25.059254 {"type": {"key": "/type/author"}, "name": "Axel Kelly", "key": "/authors/OL10638152A", "source_records": ["bwb:9798692362728"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-19T00:01:25.059254"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-19T00:01:25.059254"}}
+/type/author /authors/OL10638347A 1 2022-08-19T00:07:29.760162 {"type": {"key": "/type/author"}, "name": "Luciano Milner", "key": "/authors/OL10638347A", "source_records": ["bwb:9798469638742"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-19T00:07:29.760162"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-19T00:07:29.760162"}}
+/type/author /authors/OL10638816A 1 2022-08-19T00:39:01.022787 {"type": {"key": "/type/author"}, "name": "Harry Amareld", "key": "/authors/OL10638816A", "source_records": ["bwb:9798434878876"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-19T00:39:01.022787"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-19T00:39:01.022787"}}
+/type/author /authors/OL10638974A 1 2022-08-19T00:44:08.527086 {"name": "Ronald A. Howard, Jr.", "key": "/authors/OL10638974A", "type": {"key": "/type/author"}, "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-19T00:44:08.527086"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-19T00:44:08.527086"}}
+/type/author /authors/OL10639035A 1 2022-08-19T00:46:53.749703 {"type": {"key": "/type/author"}, "name": "deep art", "key": "/authors/OL10639035A", "source_records": ["bwb:9798838872920"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-19T00:46:53.749703"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-19T00:46:53.749703"}}
+/type/author /authors/OL1063912A 4 2020-09-30T16:21:22.236836 {"personal_name": "G. A. Leer", "last_modified": {"type": "/type/datetime", "value": "2020-09-30T16:21:22.236836"}, "latest_revision": 4, "key": "/authors/OL1063912A", "remote_ids": {"viaf": "26001044", "wikidata": "Q4257253", "isni": "0000000109609259"}, "name": "G. A. Leer", "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "death_date": "1904", "birth_date": "1829", "type": {"key": "/type/author"}, "revision": 4}
+/type/author /authors/OL10639353A 1 2022-08-19T01:02:57.086874 {"type": {"key": "/type/author"}, "name": "Ahmad Yehya", "key": "/authors/OL10639353A", "source_records": ["bwb:9781958732724"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-19T01:02:57.086874"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-19T01:02:57.086874"}}
+/type/author /authors/OL1064021A 3 2008-09-06T12:55:07.612673 {"name": "Sandra Cook", "personal_name": "Sandra Cook", "last_modified": {"type": "/type/datetime", "value": "2008-09-06T12:55:07.612673"}, "key": "/authors/OL1064021A", "birth_date": "1970", "type": {"key": "/type/author"}, "revision": 3}
+/type/author /authors/OL10640222A 1 2022-08-19T01:40:47.653753 {"type": {"key": "/type/author"}, "name": "Josefina Farias", "key": "/authors/OL10640222A", "source_records": ["bwb:9798816016759"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-19T01:40:47.653753"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-19T01:40:47.653753"}}
+/type/author /authors/OL1064027A 2 2008-08-20T00:31:41.420307 {"name": "C. Miskin", "personal_name": "C. Miskin", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T00:31:41.420307"}, "key": "/authors/OL1064027A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10640585A 1 2022-08-19T01:55:09.022523 {"type": {"key": "/type/author"}, "name": "Princess Bubble", "key": "/authors/OL10640585A", "source_records": ["bwb:9798443993683"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-19T01:55:09.022523"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-19T01:55:09.022523"}}
+/type/author /authors/OL10640611A 1 2022-08-19T01:56:42.958775 {"type": {"key": "/type/author"}, "name": "D. U. Potet BARON", "key": "/authors/OL10640611A", "source_records": ["bwb:9798733100135"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-19T01:56:42.958775"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-19T01:56:42.958775"}}
+/type/author /authors/OL10640630A 1 2022-08-19T01:57:12.450297 {"type": {"key": "/type/author"}, "name": "The Smart Planner Press", "key": "/authors/OL10640630A", "source_records": ["bwb:9798592983078"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-19T01:57:12.450297"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-19T01:57:12.450297"}}
+/type/author /authors/OL10640850A 1 2022-08-19T02:10:24.370177 {"type": {"key": "/type/author"}, "name": "Fabrizio Roscini", "key": "/authors/OL10640850A", "source_records": ["bwb:9798835221769"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-19T02:10:24.370177"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-19T02:10:24.370177"}}
+/type/author /authors/OL10641213A 1 2022-08-19T02:22:56.689113 {"type": {"key": "/type/author"}, "name": "Cherise Fanton", "key": "/authors/OL10641213A", "source_records": ["bwb:9798538668199"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-19T02:22:56.689113"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-19T02:22:56.689113"}}
+/type/author /authors/OL10641392A 1 2022-08-19T02:38:05.650380 {"type": {"key": "/type/author"}, "name": "Tate Butler", "key": "/authors/OL10641392A", "source_records": ["bwb:9781734486339"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-19T02:38:05.650380"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-19T02:38:05.650380"}}
+/type/author /authors/OL10641724A 1 2022-08-19T02:56:17.782258 {"type": {"key": "/type/author"}, "name": "Lucasta Calendar", "key": "/authors/OL10641724A", "source_records": ["bwb:9798772859537"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-19T02:56:17.782258"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-19T02:56:17.782258"}}
+/type/author /authors/OL10642188A 1 2022-08-19T03:18:49.585005 {"type": {"key": "/type/author"}, "name": "Diana Eros Press", "key": "/authors/OL10642188A", "source_records": ["bwb:9798594529960"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-19T03:18:49.585005"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-19T03:18:49.585005"}}
+/type/author /authors/OL10642358A 1 2022-08-19T03:25:44.095383 {"type": {"key": "/type/author"}, "name": "Kelvin Frost", "key": "/authors/OL10642358A", "source_records": ["bwb:9798839495876"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-19T03:25:44.095383"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-19T03:25:44.095383"}}
+/type/author /authors/OL10642413A 1 2022-08-19T03:27:34.455012 {"type": {"key": "/type/author"}, "name": "mia biya", "key": "/authors/OL10642413A", "source_records": ["bwb:9798756574197"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-19T03:27:34.455012"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-19T03:27:34.455012"}}
+/type/author /authors/OL10642442A 1 2022-08-19T03:28:24.177629 {"type": {"key": "/type/author"}, "name": "Kaouther Sdiri", "key": "/authors/OL10642442A", "source_records": ["bwb:9798806264054"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-19T03:28:24.177629"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-19T03:28:24.177629"}}
+/type/author /authors/OL10642840A 1 2022-08-19T03:48:23.245131 {"type": {"key": "/type/author"}, "name": "Dorian Alexander Ray", "key": "/authors/OL10642840A", "source_records": ["bwb:9781735110585"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-19T03:48:23.245131"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-19T03:48:23.245131"}}
+/type/author /authors/OL10642897A 1 2022-08-19T03:51:32.307161 {"type": {"key": "/type/author"}, "name": "Serge FILION", "key": "/authors/OL10642897A", "source_records": ["bwb:9798480393606"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-19T03:51:32.307161"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-19T03:51:32.307161"}}
+/type/author /authors/OL10642961A 1 2022-08-19T03:53:34.735413 {"type": {"key": "/type/author"}, "name": "Ali Denn", "key": "/authors/OL10642961A", "source_records": ["bwb:9798836538972"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-19T03:53:34.735413"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-19T03:53:34.735413"}}
+/type/author /authors/OL10643008A 1 2022-08-19T03:55:11.368968 {"type": {"key": "/type/author"}, "name": "Lee Norris", "key": "/authors/OL10643008A", "source_records": ["bwb:9798480927245"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-19T03:55:11.368968"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-19T03:55:11.368968"}}
+/type/author /authors/OL10643280A 1 2022-08-19T04:06:28.566209 {"type": {"key": "/type/author"}, "name": "Angela STEWART", "key": "/authors/OL10643280A", "source_records": ["bwb:9798841017066"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-19T04:06:28.566209"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-19T04:06:28.566209"}}
+/type/author /authors/OL10643406A 1 2022-08-19T04:11:26.035773 {"type": {"key": "/type/author"}, "name": "Corinna Gannon", "key": "/authors/OL10643406A", "source_records": ["bwb:9783777440620"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-19T04:11:26.035773"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-19T04:11:26.035773"}}
+/type/author /authors/OL10643669A 1 2022-08-19T04:23:40.448676 {"type": {"key": "/type/author"}, "name": "Lora Clarke", "key": "/authors/OL10643669A", "source_records": ["bwb:9798474374833"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-19T04:23:40.448676"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-19T04:23:40.448676"}}
+/type/author /authors/OL10643670A 1 2022-08-19T04:23:41.487233 {"type": {"key": "/type/author"}, "name": "Robby Malabey", "key": "/authors/OL10643670A", "source_records": ["bwb:9798538396900"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-19T04:23:41.487233"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-19T04:23:41.487233"}}
+/type/author /authors/OL1064443A 2 2008-08-20T00:33:36.999988 {"name": "Oy\u0307a\u0304hidula Haka", "personal_name": "Oy\u0307a\u0304hidula Haka", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T00:33:36.999988"}, "key": "/authors/OL1064443A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10644681A 1 2022-08-19T05:09:26.643556 {"type": {"key": "/type/author"}, "name": "Susan Manning Blanchard", "key": "/authors/OL10644681A", "source_records": ["bwb:9780963352231"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-19T05:09:26.643556"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-19T05:09:26.643556"}}
+/type/author /authors/OL10644706A 1 2022-08-19T05:10:32.097325 {"type": {"key": "/type/author"}, "name": "Fernando Diaz", "key": "/authors/OL10644706A", "source_records": ["bwb:9781638280408"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-19T05:10:32.097325"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-19T05:10:32.097325"}}
+/type/author /authors/OL10645101A 1 2022-08-19T05:30:18.013903 {"type": {"key": "/type/author"}, "name": "Antonio Alfonso P\u00e9rez Mart\u00edn-Tereso", "key": "/authors/OL10645101A", "source_records": ["bwb:9798832170244"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-19T05:30:18.013903"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-19T05:30:18.013903"}}
+/type/author /authors/OL10645348A 1 2022-08-19T05:43:12.184495 {"type": {"key": "/type/author"}, "name": "Brother Esteban de Emaus", "key": "/authors/OL10645348A", "source_records": ["bwb:9781071519226"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-19T05:43:12.184495"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-19T05:43:12.184495"}}
+/type/author /authors/OL10645402A 1 2022-08-19T05:46:43.873553 {"type": {"key": "/type/author"}, "name": "Olga Kriuchkova", "key": "/authors/OL10645402A", "source_records": ["bwb:9781071529669"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-19T05:46:43.873553"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-19T05:46:43.873553"}}
+/type/author /authors/OL1064548A 2 2008-08-20T00:33:58.247804 {"name": "Jagannath Agrawal", "personal_name": "Jagannath Agrawal", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T00:33:58.247804"}, "key": "/authors/OL1064548A", "birth_date": "1905", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10645495A 1 2022-08-19T05:53:00.953214 {"type": {"key": "/type/author"}, "name": "Terria Smith", "key": "/authors/OL10645495A", "source_records": ["bwb:9781597146067"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-19T05:53:00.953214"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-19T05:53:00.953214"}}
+/type/author /authors/OL10646378A 1 2022-08-19T08:26:59.387863 {"type": {"key": "/type/author"}, "name": "Karin Bishop", "personal_name": "Karin Bishop", "key": "/authors/OL10646378A", "source_records": ["ia:greatfamilyoutin0000bish"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-19T08:26:59.387863"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-19T08:26:59.387863"}}
+/type/author /authors/OL10646405A 1 2022-08-19T08:38:36.503764 {"type": {"key": "/type/author"}, "name": "Nh\u1ea5t H\u1ea1nh Th\u00edch", "title": "Th\u00edch", "personal_name": "Nh\u1ea5t H\u1ea1nh", "key": "/authors/OL10646405A", "source_records": ["ia:nikeyibushengqi0001nhat"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-19T08:38:36.503764"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-19T08:38:36.503764"}}
+/type/author /authors/OL10646479A 1 2022-08-19T09:28:57.073694 {"type": {"key": "/type/author"}, "name": "Sun bo wen", "personal_name": "Sun bo wen", "key": "/authors/OL10646479A", "source_records": ["ia:maomao0000unse_p8a5"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-19T09:28:57.073694"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-19T09:28:57.073694"}}
+/type/author /authors/OL10646888A 1 2022-08-20T05:15:27.926251 {"type": {"key": "/type/author"}, "name": "B.C.A. Drubbel", "personal_name": "B.C.A. Drubbel", "key": "/authors/OL10646888A", "source_records": ["ia:basiswoordenboek0000unse_r2j5"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-20T05:15:27.926251"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-20T05:15:27.926251"}}
+/type/author /authors/OL10647092A 1 2022-08-21T04:37:21.561464 {"type": {"key": "/type/author"}, "name": "D. Marc Jacobs Jr", "key": "/authors/OL10647092A", "source_records": ["amazon:1938966171"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-21T04:37:21.561464"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-21T04:37:21.561464"}}
+/type/author /authors/OL10647157A 1 2022-08-21T05:16:12.428851 {"type": {"key": "/type/author"}, "name": "Fengyu Zang", "personal_name": "Fengyu Zang", "birth_date": "1978", "key": "/authors/OL10647157A", "source_records": ["ia:renshengsanpianz0000zang"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-21T05:16:12.428851"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-21T05:16:12.428851"}}
+/type/author /authors/OL1064738A 2 2012-06-06T23:56:54.837573 {"created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "latest_revision": 2, "name": "Nairan\u0307ga Sarahadi\u0304", "key": "/authors/OL1064738A", "personal_name": "Nairan\u0307ga Sarahadi\u0304", "birth_date": "1912", "death_date": "1973", "type": {"key": "/type/author"}, "last_modified": {"type": "/type/datetime", "value": "2012-06-06T23:56:54.837573"}, "revision": 2}
+/type/author /authors/OL10647425A 1 2022-08-23T04:34:26.163425 {"type": {"key": "/type/author"}, "name": "Jin zhe si", "personal_name": "Jin zhe si", "key": "/authors/OL10647425A", "source_records": ["ia:youdengshengdouz0000unse"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-23T04:34:26.163425"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-23T04:34:26.163425"}}
+/type/author /authors/OL10647654A 1 2022-08-23T12:57:18.044591 {"type": {"key": "/type/author"}, "name": "Kathrin Sokolowski", "key": "/authors/OL10647654A", "source_records": ["amazon:3126762506"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-23T12:57:18.044591"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-23T12:57:18.044591"}}
+/type/author /authors/OL10648080A 1 2022-08-27T05:52:15.169229 {"type": {"key": "/type/author"}, "name": "Catherine Warne", "personal_name": "Catherine Warne", "birth_date": "1951", "key": "/authors/OL10648080A", "source_records": ["ia:illawarraexperie0000unse"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-27T05:52:15.169229"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-27T05:52:15.169229"}}
+/type/author /authors/OL10648235A 1 2022-08-27T07:41:55.587654 {"type": {"key": "/type/author"}, "name": "Kelly Kathleen Ferguson", "personal_name": "Kelly Kathleen Ferguson", "key": "/authors/OL10648235A", "source_records": ["ia:mylifeaslaurahow0000ferg"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-27T07:41:55.587654"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-27T07:41:55.587654"}}
+/type/author /authors/OL10648328A 1 2022-08-28T05:10:22.937802 {"type": {"key": "/type/author"}, "name": "Beaver Dredging Co. Ltd", "key": "/authors/OL10648328A", "source_records": ["ia:gatewaytoarctice00beav"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-28T05:10:22.937802"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-28T05:10:22.937802"}}
+/type/author /authors/OL10648746A 1 2022-08-30T14:43:24.645475 {"type": {"key": "/type/author"}, "name": "Virginia Lee Burton", "key": "/authors/OL10648746A", "source_records": ["amazon:1439597758"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-08-30T14:43:24.645475"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-30T14:43:24.645475"}}
+/type/author /authors/OL10649482A 1 2022-09-02T05:55:19.596965 {"type": {"key": "/type/author"}, "name": "Community of the Resurrection, Mirfield, England", "key": "/authors/OL10649482A", "source_records": ["ia:mirfieldmissionh0000unse"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-02T05:55:19.596965"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-02T05:55:19.596965"}}
+/type/author /authors/OL10650173A 1 2022-09-06T05:37:08.125173 {"type": {"key": "/type/author"}, "name": "Jos\u00e9 Luis Soliz", "personal_name": "Jos\u00e9 Luis Soliz", "key": "/authors/OL10650173A", "source_records": ["ia:controlesudiabet0000soli"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-06T05:37:08.125173"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-06T05:37:08.125173"}}
+/type/author /authors/OL10650210A 1 2022-09-06T06:07:45.791040 {"type": {"key": "/type/author"}, "name": "Evans, Margaret (Holistic therapist)", "title": "(Holistic therapist)", "personal_name": "Evans, Margaret", "key": "/authors/OL10650210A", "source_records": ["ia:taleofrainbowsen0000evan"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-06T06:07:45.791040"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-06T06:07:45.791040"}}
+/type/author /authors/OL10650654A 1 2022-09-08T05:33:11.970213 {"type": {"key": "/type/author"}, "name": "ya li Chen", "personal_name": "ya li Chen", "key": "/authors/OL10650654A", "source_records": ["ia:jiazhangqinzixin0000unse_f1f8"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-08T05:33:11.970213"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-08T05:33:11.970213"}}
+/type/author /authors/OL10650657A 1 2022-09-08T05:34:07.450149 {"type": {"key": "/type/author"}, "name": "Qingchang Meng", "personal_name": "Qingchang Meng", "key": "/authors/OL10650657A", "source_records": ["ia:linuxjiaocheng0000meng"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-08T05:34:07.450149"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-08T05:34:07.450149"}}
+/type/author /authors/OL10651108A 1 2022-09-09T08:24:06.780926 {"type": {"key": "/type/author"}, "name": "Langsai Da", "personal_name": "Langsai Da", "key": "/authors/OL10651108A", "source_records": ["ia:pukeyouxi0000unse"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-09T08:24:06.780926"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-09T08:24:06.780926"}}
+/type/author /authors/OL10651142A 1 2022-09-09T09:04:38.815922 {"type": {"key": "/type/author"}, "name": "Chester Pachucki", "personal_name": "Chester Pachucki", "key": "/authors/OL10651142A", "source_records": ["ia:mathematicsforin0000pach"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-09T09:04:38.815922"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-09T09:04:38.815922"}}
+/type/author /authors/OL10651738A 1 2022-09-10T05:18:08.371784 {"type": {"key": "/type/author"}, "name": "Tie yuan", "personal_name": "Tie yuan", "key": "/authors/OL10651738A", "source_records": ["ia:xiuxianyulexiaob0000unse"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-10T05:18:08.371784"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-10T05:18:08.371784"}}
+/type/author /authors/OL10651837A 1 2022-09-11T04:37:12.381102 {"type": {"key": "/type/author"}, "name": "SALMA KHAN", "personal_name": "SALMA KHAN", "key": "/authors/OL10651837A", "source_records": ["ia:poetree0000khan"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-11T04:37:12.381102"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-11T04:37:12.381102"}}
+/type/author /authors/OL10652050A 1 2022-09-12T04:01:25.522438 {"type": {"key": "/type/author"}, "name": "Maxime J. Durand", "key": "/authors/OL10652050A", "source_records": ["amazon:1039413188"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-12T04:01:25.522438"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-12T04:01:25.522438"}}
+/type/author /authors/OL10652152A 1 2022-09-13T04:31:35.091026 {"type": {"key": "/type/author"}, "name": "Elinor J.. Pinczes", "personal_name": "Elinor J.. Pinczes", "key": "/authors/OL10652152A", "source_records": ["ia:defiledevantlare0000pinc"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-13T04:31:35.091026"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-13T04:31:35.091026"}}
+/type/author /authors/OL10652315A 1 2022-09-13T18:01:18.726121 {"name": "R. Horville", "key": "/authors/OL10652315A", "type": {"key": "/type/author"}, "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-13T18:01:18.726121"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-13T18:01:18.726121"}}
+/type/author /authors/OL10652472A 1 2022-09-14T05:30:27.858597 {"type": {"key": "/type/author"}, "name": "Wilhelm Insulanus", "personal_name": "Wilhelm Insulanus", "death_date": "1561", "key": "/authors/OL10652472A", "source_records": ["ia:b33027018_0001"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-14T05:30:27.858597"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-14T05:30:27.858597"}}
+/type/author /authors/OL10652532A 1 2022-09-14T15:07:55.130618 {"type": {"key": "/type/author"}, "name": "Carmen Oca\u00f1a Ord\u00f3\u00f1ez", "key": "/authors/OL10652532A", "source_records": ["amazon:8412492609"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-14T15:07:55.130618"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-14T15:07:55.130618"}}
+/type/author /authors/OL10652706A 1 2022-09-15T05:28:15.487064 {"type": {"key": "/type/author"}, "name": "Jaye\u015ba Mekav\u0101na", "personal_name": "Jaye\u015ba Mekav\u0101na", "key": "/authors/OL10652706A", "source_records": ["ia:dijhastarameneja0000meka"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-15T05:28:15.487064"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-15T05:28:15.487064"}}
+/type/author /authors/OL10652921A 1 2022-09-16T05:30:23.541425 {"type": {"key": "/type/author"}, "name": "Yao yao", "personal_name": "Yao yao", "key": "/authors/OL10652921A", "source_records": ["ia:tamenshizenyangz0000unse"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-16T05:30:23.541425"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-16T05:30:23.541425"}}
+/type/author /authors/OL10652966A 1 2022-09-16T15:30:19.758500 {"type": {"key": "/type/author"}, "name": "NICOLLET", "key": "/authors/OL10652966A", "source_records": ["amazon:2915757070"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-16T15:30:19.758500"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-16T15:30:19.758500"}}
+/type/author /authors/OL10652976A 1 2022-09-16T18:14:16.824874 {"type": {"key": "/type/author"}, "name": "Michael Afenfia", "key": "/authors/OL10652976A", "source_records": ["amazon:9785728110"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-16T18:14:16.824874"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-16T18:14:16.824874"}}
+/type/author /authors/OL1065328A 2 2008-08-20T00:36:24.990939 {"name": "Zubair Alam", "personal_name": "Zubair Alam", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T00:36:24.990939"}, "key": "/authors/OL1065328A", "birth_date": "1956", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10653641A 1 2022-09-17T05:18:29.697064 {"type": {"key": "/type/author"}, "name": "Karin Colsen", "key": "/authors/OL10653641A", "source_records": ["bwb:9780620367677"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-17T05:18:29.697064"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-17T05:18:29.697064"}}
+/type/author /authors/OL10653743A 1 2022-09-17T05:39:47.967926 {"type": {"key": "/type/author"}, "name": "Linda Martin Gilmore", "key": "/authors/OL10653743A", "source_records": ["amazon:0991122135"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-17T05:39:47.967926"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-17T05:39:47.967926"}}
+/type/author /authors/OL10653856A 1 2022-09-17T05:54:04.726556 {"type": {"key": "/type/author"}, "name": "Martin Ramirez", "key": "/authors/OL10653856A", "source_records": ["bwb:9788480264136"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-17T05:54:04.726556"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-17T05:54:04.726556"}}
+/type/author /authors/OL10653882A 1 2022-09-17T05:57:20.189522 {"type": {"key": "/type/author"}, "name": "Feargus \u00d3 Raghallaigh MA", "key": "/authors/OL10653882A", "source_records": ["bwb:9780717148400"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-17T05:57:20.189522"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-17T05:57:20.189522"}}
+/type/author /authors/OL10654021A 1 2022-09-17T06:16:53.334479 {"type": {"key": "/type/author"}, "name": "Lois Lenski", "key": "/authors/OL10654021A", "source_records": ["bwb:9781453227473"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-17T06:16:53.334479"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-17T06:16:53.334479"}}
+/type/author /authors/OL10654106A 1 2022-09-17T06:28:18.732913 {"type": {"key": "/type/author"}, "name": "Llewellyn C.", "key": "/authors/OL10654106A", "source_records": ["bwb:9780230432192"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-17T06:28:18.732913"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-17T06:28:18.732913"}}
+/type/author /authors/OL10654199A 1 2022-09-17T06:41:59.523603 {"type": {"key": "/type/author"}, "name": "Duree, Galen , Jr.", "key": "/authors/OL10654199A", "source_records": ["bwb:9783527708406"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-17T06:41:59.523603"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-17T06:41:59.523603"}}
+/type/author /authors/OL10654363A 1 2022-09-17T06:59:26.339898 {"type": {"key": "/type/author"}, "name": "Professor Eric Ziolkowski", "key": "/authors/OL10654363A", "source_records": ["bwb:9781283190848"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-17T06:59:26.339898"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-17T06:59:26.339898"}}
+/type/author /authors/OL10654431A 1 2022-09-17T07:03:16.186932 {"type": {"key": "/type/author"}, "name": "Snejana Slantcheva", "key": "/authors/OL10654431A", "source_records": ["bwb:9781281363138"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-17T07:03:16.186932"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-17T07:03:16.186932"}}
+/type/author /authors/OL10654568A 1 2022-09-17T07:08:03.458712 {"type": {"key": "/type/author"}, "name": "Nickie Professor Charles", "key": "/authors/OL10654568A", "source_records": ["bwb:9781283317924"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-17T07:08:03.458712"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-17T07:08:03.458712"}}
+/type/author /authors/OL10654816A 1 2022-09-17T07:29:45.697252 {"type": {"key": "/type/author"}, "name": "Duckkoo Chung", "key": "/authors/OL10654816A", "source_records": ["bwb:9781280765643"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-17T07:29:45.697252"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-17T07:29:45.697252"}}
+/type/author /authors/OL10655315A 1 2022-09-17T08:00:11.207933 {"type": {"key": "/type/author"}, "name": "Lynn Orilla Scott", "key": "/authors/OL10655315A", "source_records": ["bwb:9781281360977"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-17T08:00:11.207933"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-17T08:00:11.207933"}}
+/type/author /authors/OL10655359A 1 2022-09-17T08:02:44.577352 {"type": {"key": "/type/author"}, "name": "Desmond Professor Manderson", "key": "/authors/OL10655359A", "source_records": ["bwb:9781282277717"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-17T08:02:44.577352"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-17T08:02:44.577352"}}
+/type/author /authors/OL10655599A 1 2022-09-17T08:20:52.893947 {"type": {"key": "/type/author"}, "name": "Romulo Yanes", "key": "/authors/OL10655599A", "source_records": ["bwb:9781613127223"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-17T08:20:52.893947"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-17T08:20:52.893947"}}
+/type/author /authors/OL1065566A 2 2008-08-20T00:37:06.728938 {"name": "Shailendra K. Bajpai", "personal_name": "Shailendra K. Bajpai", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T00:37:06.728938"}, "key": "/authors/OL1065566A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10655854A 1 2022-09-17T08:35:01.863032 {"type": {"key": "/type/author"}, "name": "Professor Kathleen Lynch", "key": "/authors/OL10655854A", "source_records": ["bwb:9781280881237"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-17T08:35:01.863032"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-17T08:35:01.863032"}}
+/type/author /authors/OL10655949A 1 2022-09-17T08:39:04.229836 {"type": {"key": "/type/author"}, "name": "Norman Professor Laporte", "key": "/authors/OL10655949A", "source_records": ["bwb:9781282101579"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-17T08:39:04.229836"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-17T08:39:04.229836"}}
+/type/author /authors/OL10656103A 1 2022-09-17T08:53:56.847103 {"type": {"key": "/type/author"}, "name": "Gert Svendsen", "key": "/authors/OL10656103A", "source_records": ["bwb:9781283183420"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-17T08:53:56.847103"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-17T08:53:56.847103"}}
+/type/author /authors/OL10656168A 1 2022-09-17T08:57:10.824924 {"type": {"key": "/type/author"}, "name": "Tribble, Jeffery L., Sr.", "key": "/authors/OL10656168A", "source_records": ["bwb:9781281368935"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-17T08:57:10.824924"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-17T08:57:10.824924"}}
+/type/author /authors/OL10656410A 1 2022-09-17T09:14:53.871900 {"type": {"key": "/type/author"}, "name": "Mary A. Keating", "key": "/authors/OL10656410A", "source_records": ["bwb:9781306179072"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-17T09:14:53.871900"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-17T09:14:53.871900"}}
+/type/author /authors/OL10656439A 1 2022-09-17T09:16:52.515741 {"type": {"key": "/type/author"}, "name": "Neil Gridley", "key": "/authors/OL10656439A", "source_records": ["bwb:9781306556354"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-17T09:16:52.515741"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-17T09:16:52.515741"}}
+/type/author /authors/OL10656626A 1 2022-09-17T09:29:38.566091 {"type": {"key": "/type/author"}, "name": "Barrie Prof Gunter", "key": "/authors/OL10656626A", "source_records": ["bwb:9781282997714"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-17T09:29:38.566091"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-17T09:29:38.566091"}}
+/type/author /authors/OL10656767A 1 2022-09-17T09:35:16.795538 {"type": {"key": "/type/author"}, "name": "Kasper Professor Lippert-Rasmussen", "key": "/authors/OL10656767A", "source_records": ["bwb:9781283651325"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-17T09:35:16.795538"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-17T09:35:16.795538"}}
+/type/author /authors/OL10656823A 1 2022-09-17T09:42:06.898693 {"type": {"key": "/type/author"}, "name": "Karen DeMoss", "key": "/authors/OL10656823A", "source_records": ["bwb:9781315855462"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-17T09:42:06.898693"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-17T09:42:06.898693"}}
+/type/author /authors/OL10656879A 1 2022-09-17T09:47:57.889965 {"type": {"key": "/type/author"}, "name": "T. R. Dudley", "key": "/authors/OL10656879A", "source_records": ["bwb:9781118665060"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-17T09:47:57.889965"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-17T09:47:57.889965"}}
+/type/author /authors/OL10657281A 1 2022-09-17T10:11:48.343817 {"type": {"key": "/type/author"}, "name": "Megan Moreno", "key": "/authors/OL10657281A", "source_records": ["bwb:9781306432825"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-17T10:11:48.343817"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-17T10:11:48.343817"}}
+/type/author /authors/OL10657475A 1 2022-09-17T10:26:08.090521 {"type": {"key": "/type/author"}, "name": "Professor Geert Bouckaert", "key": "/authors/OL10657475A", "source_records": ["bwb:9781282910676"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-17T10:26:08.090521"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-17T10:26:08.090521"}}
+/type/author /authors/OL1065753A 1 2008-04-01T03:28:50.625462 {"name": "Prako\u031c\u0304p Khuna\u0304rak.", "personal_name": "Prako\u031c\u0304p Khuna\u0304rak.", "last_modified": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "key": "/authors/OL1065753A", "type": {"key": "/type/author"}, "revision": 1}
+/type/author /authors/OL10657801A 1 2022-09-17T10:55:53.622201 {"type": {"key": "/type/author"}, "name": "Donald Grove Barnes", "key": "/authors/OL10657801A", "source_records": ["bwb:9781136582516"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-17T10:55:53.622201"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-17T10:55:53.622201"}}
+/type/author /authors/OL10658056A 1 2022-09-17T11:24:50.997330 {"type": {"key": "/type/author"}, "name": "Laurette Olson", "key": "/authors/OL10658056A", "source_records": ["bwb:9781317786351"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-17T11:24:50.997330"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-17T11:24:50.997330"}}
+/type/author /authors/OL10658269A 1 2022-09-17T11:46:33.917194 {"type": {"key": "/type/author"}, "name": "Tyrrel M. Hawker MC", "key": "/authors/OL10658269A", "source_records": ["bwb:9781322401195"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-17T11:46:33.917194"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-17T11:46:33.917194"}}
+/type/author /authors/OL10658295A 1 2022-09-17T11:49:10.036677 {"type": {"key": "/type/author"}, "name": "Nathan Pearson", "key": "/authors/OL10658295A", "source_records": ["bwb:9781349096770"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-17T11:49:10.036677"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-17T11:49:10.036677"}}
+/type/author /authors/OL10658322A 1 2022-09-17T11:51:15.327831 {"type": {"key": "/type/author"}, "name": "Malcolm Baxter", "key": "/authors/OL10658322A", "source_records": ["bwb:9781597553216"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-17T11:51:15.327831"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-17T11:51:15.327831"}}
+/type/author /authors/OL10658465A 1 2022-09-17T12:07:05.061650 {"type": {"key": "/type/author"}, "name": "Barentsen J.", "key": "/authors/OL10658465A", "source_records": ["bwb:9789042934054"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-17T12:07:05.061650"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-17T12:07:05.061650"}}
+/type/author /authors/OL1065853A 2 2008-08-20T00:37:21.394548 {"name": "Khwa\u0304jah Muh\u0323ammad Sa\u0304\u02bcil", "personal_name": "Khwa\u0304jah Muh\u0323ammad Sa\u0304\u02bcil", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T00:37:21.394548"}, "key": "/authors/OL1065853A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10658606A 1 2022-09-17T12:36:53.355649 {"type": {"key": "/type/author"}, "name": "Cobus Swardt-Kraus", "key": "/authors/OL10658606A", "source_records": ["bwb:9781315810584"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-17T12:36:53.355649"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-17T12:36:53.355649"}}
+/type/author /authors/OL10658912A 1 2022-09-17T13:15:31.250527 {"type": {"key": "/type/author"}, "name": "Ismv\u00e9e Williams", "key": "/authors/OL10658912A", "source_records": ["bwb:9781683354871"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-17T13:15:31.250527"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-17T13:15:31.250527"}}
+/type/author /authors/OL10659168A 1 2022-09-17T13:46:35.482603 {"type": {"key": "/type/author"}, "name": "Celia F.", "key": "/authors/OL10659168A", "source_records": ["bwb:9789042934450"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-17T13:46:35.482603"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-17T13:46:35.482603"}}
+/type/author /authors/OL10659313A 1 2022-09-17T14:05:39.770567 {"type": {"key": "/type/author"}, "name": "IAFRATE", "key": "/authors/OL10659313A", "source_records": ["bwb:9781784054366"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-17T14:05:39.770567"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-17T14:05:39.770567"}}
+/type/author /authors/OL1065933A 2 2008-08-20T00:37:31.940708 {"name": "Muh\u0323ammad Anva\u0304rulh\u0323asan Sherkot\u0323i\u0304", "personal_name": "Muh\u0323ammad Anva\u0304rulh\u0323asan Sherkot\u0323i\u0304", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T00:37:31.940708"}, "key": "/authors/OL1065933A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10659402A 1 2022-09-17T14:19:11.818893 {"type": {"key": "/type/author"}, "name": "MANDRAN", "key": "/authors/OL10659402A", "source_records": ["bwb:9781784054441"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-17T14:19:11.818893"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-17T14:19:11.818893"}}
+/type/author /authors/OL10659773A 1 2022-09-17T15:06:54.373594 {"type": {"key": "/type/author"}, "name": "Paizo Inc.", "key": "/authors/OL10659773A", "source_records": ["bwb:9781640783232"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-17T15:06:54.373594"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-17T15:06:54.373594"}}
+/type/author /authors/OL10660407A 1 2022-09-17T16:09:32.437997 {"type": {"key": "/type/author"}, "name": "Shubhangi Bhadada", "key": "/authors/OL10660407A", "source_records": ["bwb:9789354792908"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-17T16:09:32.437997"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-17T16:09:32.437997"}}
+/type/author /authors/OL10660950A 1 2022-09-17T16:28:10.023884 {"type": {"key": "/type/author"}, "name": "Robin Bennett Kanarek", "key": "/authors/OL10660950A", "source_records": ["bwb:9781421445984"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-17T16:28:10.023884"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-17T16:28:10.023884"}}
+/type/author /authors/OL10661079A 1 2022-09-17T16:31:44.333439 {"type": {"key": "/type/author"}, "name": "Joel Benabu", "key": "/authors/OL10661079A", "source_records": ["bwb:9781433187858"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-17T16:31:44.333439"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-17T16:31:44.333439"}}
+/type/author /authors/OL10661504A 1 2022-09-17T16:44:48.866373 {"type": {"key": "/type/author"}, "name": "Susanne T. Schroder", "key": "/authors/OL10661504A", "source_records": ["bwb:9781908053077"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-17T16:44:48.866373"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-17T16:44:48.866373"}}
+/type/author /authors/OL1066175A 3 2012-06-07T00:10:46.905401 {"created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "latest_revision": 3, "name": "Muji\u0304burrah\u0323ma\u0304n Mufti\u0304", "key": "/authors/OL1066175A", "personal_name": "Muji\u0304burrah\u0323ma\u0304n Mufti\u0304", "birth_date": "1923", "death_date": "1985", "type": {"key": "/type/author"}, "last_modified": {"type": "/type/datetime", "value": "2012-06-07T00:10:46.905401"}, "revision": 3}
+/type/author /authors/OL10661967A 1 2022-09-17T17:01:17.533766 {"type": {"key": "/type/author"}, "name": "Christos Kozyrakis", "key": "/authors/OL10661967A", "source_records": ["bwb:9780443154072"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-17T17:01:17.533766"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-17T17:01:17.533766"}}
+/type/author /authors/OL10662290A 1 2022-09-17T17:14:21.832902 {"type": {"key": "/type/author"}, "name": "Hermione Redshaw; Drue Rintoul", "key": "/authors/OL10662290A", "source_records": ["bwb:9781801558396"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-17T17:14:21.832902"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-17T17:14:21.832902"}}
+/type/author /authors/OL10662428A 1 2022-09-17T17:18:25.947645 {"type": {"key": "/type/author"}, "name": "N. Joseph Glass", "key": "/authors/OL10662428A", "source_records": ["bwb:9798986659831"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-17T17:18:25.947645"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-17T17:18:25.947645"}}
+/type/author /authors/OL10662541A 1 2022-09-17T17:21:50.334383 {"type": {"key": "/type/author"}, "name": "Battrick", "key": "/authors/OL10662541A", "source_records": ["bwb:9781839524875"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-17T17:21:50.334383"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-17T17:21:50.334383"}}
+/type/author /authors/OL10662617A 1 2022-09-17T17:24:50.560051 {"type": {"key": "/type/author"}, "name": "Charlotte Koscielny", "key": "/authors/OL10662617A", "source_records": ["bwb:9783658392321"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-17T17:24:50.560051"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-17T17:24:50.560051"}}
+/type/author /authors/OL1066269A 2 2008-08-20T00:38:16.614668 {"name": "Sa\u02bbdulla\u0304h Kali\u0304m", "personal_name": "Sa\u02bbdulla\u0304h Kali\u0304m", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T00:38:16.614668"}, "key": "/authors/OL1066269A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10663027A 1 2022-09-17T17:40:15.613415 {"type": {"key": "/type/author"}, "name": "Daniel Liden", "key": "/authors/OL10663027A", "source_records": ["bwb:9781529419689"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-17T17:40:15.613415"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-17T17:40:15.613415"}}
+/type/author /authors/OL10663529A 1 2022-09-17T18:00:11.799006 {"type": {"key": "/type/author"}, "name": "Gene Tavernetti", "key": "/authors/OL10663529A", "source_records": ["bwb:9781915261557"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-17T18:00:11.799006"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-17T18:00:11.799006"}}
+/type/author /authors/OL10664375A 1 2022-09-17T18:40:47.790916 {"type": {"key": "/type/author"}, "name": "Mark T. Rasmussen", "key": "/authors/OL10664375A", "source_records": ["bwb:9798986723150"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-17T18:40:47.790916"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-17T18:40:47.790916"}}
+/type/author /authors/OL10664406A 1 2022-09-17T18:42:02.181396 {"type": {"key": "/type/author"}, "name": "Kevin G. Speer", "key": "/authors/OL10664406A", "source_records": ["bwb:9781108498555"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-17T18:42:02.181396"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-17T18:42:02.181396"}}
+/type/author /authors/OL10664418A 1 2022-09-17T18:42:39.088629 {"type": {"key": "/type/author"}, "name": "Barbara U. Metzler-Zebeli", "key": "/authors/OL10664418A", "source_records": ["bwb:9781801460859"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-17T18:42:39.088629"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-17T18:42:39.088629"}}
+/type/author /authors/OL10664421A 1 2022-09-17T18:42:39.869781 {"type": {"key": "/type/author"}, "name": "Mark Fife", "key": "/authors/OL10664421A", "source_records": ["bwb:9781801464185"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-17T18:42:39.869781"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-17T18:42:39.869781"}}
+/type/author /authors/OL10664438A 1 2022-09-17T18:44:17.989416 {"type": {"key": "/type/author"}, "name": "Umm Fahtima Zahra", "key": "/authors/OL10664438A", "source_records": ["bwb:9780860378136"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-17T18:44:17.989416"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-17T18:44:17.989416"}}
+/type/author /authors/OL10664681A 1 2022-09-17T18:56:14.591783 {"type": {"key": "/type/author"}, "name": "Victor S. C. Fung", "key": "/authors/OL10664681A", "source_records": ["bwb:9780367634353"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-17T18:56:14.591783"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-17T18:56:14.591783"}}
+/type/author /authors/OL10664889A 1 2022-09-17T19:09:58.353890 {"type": {"key": "/type/author"}, "name": "Royal Economic Society Staff", "key": "/authors/OL10664889A", "source_records": ["bwb:9780312778408"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-17T19:09:58.353890"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-17T19:09:58.353890"}}
+/type/author /authors/OL10665159A 1 2022-09-17T20:52:21.990589 {"type": {"key": "/type/author"}, "name": "Lauren Chapin", "key": "/authors/OL10665159A", "source_records": ["bwb:9780840771209"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-17T20:52:21.990589"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-17T20:52:21.990589"}}
+/type/author /authors/OL10665553A 1 2022-09-17T22:29:33.850128 {"type": {"key": "/type/author"}, "name": "Demar\u00e9e R.J.", "key": "/authors/OL10665553A", "source_records": ["bwb:9789042923492"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-17T22:29:33.850128"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-17T22:29:33.850128"}}
+/type/author /authors/OL10665573A 1 2022-09-17T22:32:59.128225 {"type": {"key": "/type/author"}, "name": "Jane Schapiro", "key": "/authors/OL10665573A", "source_records": ["bwb:9780299193331"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-17T22:32:59.128225"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-17T22:32:59.128225"}}
+/type/author /authors/OL10665685A 1 2022-09-17T22:44:42.632065 {"type": {"key": "/type/author"}, "name": "Leonard Krash", "key": "/authors/OL10665685A", "source_records": ["bwb:9780981599106"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-17T22:44:42.632065"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-17T22:44:42.632065"}}
+/type/author /authors/OL10666354A 1 2022-09-18T00:14:22.267628 {"type": {"key": "/type/author"}, "name": "I. Guermeur", "key": "/authors/OL10666354A", "source_records": ["bwb:9789042929128"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T00:14:22.267628"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T00:14:22.267628"}}
+/type/author /authors/OL10666377A 1 2022-09-18T00:18:06.544859 {"type": {"key": "/type/author"}, "name": "Wyndham Nicholls", "key": "/authors/OL10666377A", "source_records": ["bwb:9781621036166"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T00:18:06.544859"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T00:18:06.544859"}}
+/type/author /authors/OL10666557A 1 2022-09-18T00:56:55.352731 {"type": {"key": "/type/author"}, "name": "Byongwon Bahk", "key": "/authors/OL10666557A", "source_records": ["bwb:9781931368292"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T00:56:55.352731"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T00:56:55.352731"}}
+/type/author /authors/OL10666939A 1 2022-09-18T01:54:51.914081 {"type": {"key": "/type/author"}, "name": "Richard W. Norman", "key": "/authors/OL10666939A", "source_records": ["bwb:9780191574795"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T01:54:51.914081"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T01:54:51.914081"}}
+/type/author /authors/OL10667009A 1 2022-09-18T02:03:00.736316 {"type": {"key": "/type/author"}, "name": "J\u00fcrgen Mimkes", "key": "/authors/OL10667009A", "source_records": ["bwb:9780191662195"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T02:03:00.736316"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T02:03:00.736316"}}
+/type/author /authors/OL10667231A 1 2022-09-18T02:30:31.330628 {"type": {"key": "/type/author"}, "name": "Monica Tatzkow", "key": "/authors/OL10667231A", "source_records": ["bwb:9781473816053"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T02:30:31.330628"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T02:30:31.330628"}}
+/type/author /authors/OL10667324A 1 2022-09-18T02:39:49.108332 {"type": {"key": "/type/author"}, "name": "Denis Weerasiri", "key": "/authors/OL10667324A", "source_records": ["bwb:9781849688970"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T02:39:49.108332"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T02:39:49.108332"}}
+/type/author /authors/OL10667507A 1 2022-09-18T02:55:19.820548 {"type": {"key": "/type/author"}, "name": "Gaumer M.A.", "key": "/authors/OL10667507A", "source_records": ["bwb:9789042931558"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T02:55:19.820548"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T02:55:19.820548"}}
+/type/author /authors/OL10667797A 1 2022-09-18T03:27:38.705779 {"type": {"key": "/type/author"}, "name": "Melinda Messineo", "key": "/authors/OL10667797A", "source_records": ["bwb:9780738061481"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T03:27:38.705779"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T03:27:38.705779"}}
+/type/author /authors/OL10668340A 1 2022-09-18T04:29:22.791191 {"type": {"key": "/type/author"}, "name": "Florian Dirks", "key": "/authors/OL10668340A", "source_records": ["bwb:9783847104506"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T04:29:22.791191"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T04:29:22.791191"}}
+/type/author /authors/OL10668781A 1 2022-09-18T05:10:58.086822 {"type": {"key": "/type/author"}, "name": "Milijove Pejovic", "key": "/authors/OL10668781A", "source_records": ["bwb:9782707812957"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T05:10:58.086822"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T05:10:58.086822"}}
+/type/author /authors/OL10668901A 1 2022-09-18T05:21:35.151002 {"type": {"key": "/type/author"}, "name": "Taha Ja?bir al-'alwa?ni?", "key": "/authors/OL10668901A", "source_records": ["bwb:9781565646483"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T05:21:35.151002"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T05:21:35.151002"}}
+/type/author /authors/OL1066907A 2 2008-08-20T00:39:47.416164 {"name": "R. H. Moh Amin", "personal_name": "R. H. Moh Amin", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T00:39:47.416164"}, "key": "/authors/OL1066907A", "birth_date": "1915", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10669279A 1 2022-09-18T05:48:41.298122 {"type": {"key": "/type/author"}, "name": "Loretta Gould", "key": "/authors/OL10669279A", "source_records": ["bwb:9781771086622"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T05:48:41.298122"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T05:48:41.298122"}}
+/type/author /authors/OL10669425A 1 2022-09-18T06:01:57.378461 {"type": {"key": "/type/author"}, "name": "van Wieringen", "key": "/authors/OL10669425A", "source_records": ["bwb:9789042935426"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T06:01:57.378461"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T06:01:57.378461"}}
+/type/author /authors/OL10669611A 1 2022-09-18T06:29:45.920150 {"type": {"key": "/type/author"}, "name": "Schiefer M.", "key": "/authors/OL10669611A", "source_records": ["bwb:9789042934405"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T06:29:45.920150"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T06:29:45.920150"}}
+/type/author /authors/OL10669656A 1 2022-09-18T06:35:29.929628 {"type": {"key": "/type/author"}, "name": "Florian Grafl", "key": "/authors/OL10669656A", "source_records": ["bwb:9783847107705"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T06:35:29.929628"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T06:35:29.929628"}}
+/type/author /authors/OL10670270A 1 2022-09-18T07:28:55.550823 {"type": {"key": "/type/author"}, "name": "Jenica McGann", "key": "/authors/OL10670270A", "source_records": ["bwb:9781938326448"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T07:28:55.550823"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T07:28:55.550823"}}
+/type/author /authors/OL10670426A 1 2022-09-18T07:41:08.285311 {"type": {"key": "/type/author"}, "name": "Michael Niemis", "key": "/authors/OL10670426A", "source_records": ["bwb:9781983309212"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T07:41:08.285311"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T07:41:08.285311"}}
+/type/author /authors/OL1067089A 2 2008-08-20T00:40:25.751495 {"name": "Muh\u0323ammad al-Sayyid Da\u0304wu\u0304di\u0304", "personal_name": "Muh\u0323ammad al-Sayyid Da\u0304wu\u0304di\u0304", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T00:40:25.751495"}, "key": "/authors/OL1067089A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10671098A 1 2022-09-18T08:52:07.777928 {"type": {"key": "/type/author"}, "name": "T. R. BRYAN", "key": "/authors/OL10671098A", "source_records": ["bwb:9781077406315"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T08:52:07.777928"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T08:52:07.777928"}}
+/type/author /authors/OL10671453A 1 2022-09-18T09:27:33.169046 {"type": {"key": "/type/author"}, "name": "James C. Brau", "key": "/authors/OL10671453A", "source_records": ["bwb:9781952023491"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T09:27:33.169046"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T09:27:33.169046"}}
+/type/author /authors/OL10671661A 1 2022-09-18T09:56:27.547059 {"type": {"key": "/type/author"}, "name": "Lars Wolfram", "key": "/authors/OL10671661A", "source_records": ["bwb:9783506704429"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T09:56:27.547059"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T09:56:27.547059"}}
+/type/author /authors/OL10672089A 1 2022-09-18T10:47:53.534102 {"type": {"key": "/type/author"}, "name": "Lucia Falchini", "key": "/authors/OL10672089A", "source_records": ["bwb:9781089882312"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T10:47:53.534102"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T10:47:53.534102"}}
+/type/author /authors/OL10672489A 1 2022-09-18T11:42:55.419255 {"type": {"key": "/type/author"}, "name": "Ferrary J.-L.", "key": "/authors/OL10672489A", "source_records": ["bwb:9782877543071"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T11:42:55.419255"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T11:42:55.419255"}}
+/type/author /authors/OL10673195A 1 2022-09-18T12:41:20.541417 {"type": {"key": "/type/author"}, "name": "Enchanted BOOKS", "key": "/authors/OL10673195A", "source_records": ["bwb:9798839151505"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T12:41:20.541417"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T12:41:20.541417"}}
+/type/author /authors/OL10673333A 1 2022-09-18T12:43:58.113457 {"type": {"key": "/type/author"}, "name": "Amilia Studio", "key": "/authors/OL10673333A", "source_records": ["bwb:9798652780562"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T12:43:58.113457"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T12:43:58.113457"}}
+/type/author /authors/OL10673446A 1 2022-09-18T12:47:37.490212 {"type": {"key": "/type/author"}, "name": "Steve Kortz", "key": "/authors/OL10673446A", "source_records": ["bwb:9781536448047"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T12:47:37.490212"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T12:47:37.490212"}}
+/type/author /authors/OL1067346A 2 2008-08-20T00:41:12.886425 {"name": "\u02bbAbd Alla\u0304h al-Sayyid \u02bbAbd al-Jawwa\u0304d", "personal_name": "\u02bbAbd Alla\u0304h al-Sayyid \u02bbAbd al-Jawwa\u0304d", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T00:41:12.886425"}, "key": "/authors/OL1067346A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10673470A 1 2022-09-18T12:51:35.411111 {"type": {"key": "/type/author"}, "name": "Aziz Budri", "key": "/authors/OL10673470A", "source_records": ["bwb:9798985728705"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T12:51:35.411111"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T12:51:35.411111"}}
+/type/author /authors/OL10673759A 1 2022-09-18T13:02:18.481545 {"type": {"key": "/type/author"}, "name": "Steen, Paul, Sr.", "key": "/authors/OL10673759A", "source_records": ["bwb:9798218050603"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T13:02:18.481545"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T13:02:18.481545"}}
+/type/author /authors/OL1067384A 2 2008-08-20T00:41:18.993286 {"name": "Muh\u0323ammad ibn Yah\u0323ya\u0301 Ibn al-Jay\u02bba\u0304n", "personal_name": "Muh\u0323ammad ibn Yah\u0323ya\u0301 Ibn al-Jay\u02bba\u0304n", "death_date": "1496", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T00:41:18.993286"}, "key": "/authors/OL1067384A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10673898A 1 2022-09-18T13:05:17.917779 {"type": {"key": "/type/author"}, "name": "Conson Nsorom", "key": "/authors/OL10673898A", "source_records": ["bwb:9798839578265"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T13:05:17.917779"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T13:05:17.917779"}}
+/type/author /authors/OL1067397A 2 2008-08-20T00:41:20.213187 {"name": "Mi\u0304kha\u0304\u02bci\u0304l Na\u0304ku\u0304zi\u0304", "personal_name": "Mi\u0304kha\u0304\u02bci\u0304l Na\u0304ku\u0304zi\u0304", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T00:41:20.213187"}, "key": "/authors/OL1067397A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10674104A 1 2022-09-18T13:19:33.077195 {"type": {"key": "/type/author"}, "name": "Gioacchino Da Fiore", "key": "/authors/OL10674104A", "source_records": ["bwb:9788833138961"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T13:19:33.077195"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T13:19:33.077195"}}
+/type/author /authors/OL10674120A 1 2022-09-18T13:20:11.263417 {"type": {"key": "/type/author"}, "name": "Jan-Hinrick Pesch", "key": "/authors/OL10674120A", "source_records": ["bwb:9783848787982"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T13:20:11.263417"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T13:20:11.263417"}}
+/type/author /authors/OL10674152A 1 2022-09-18T13:21:25.777663 {"type": {"key": "/type/author"}, "name": "Ashley B. Davis", "key": "/authors/OL10674152A", "source_records": ["bwb:9798986708713"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T13:21:25.777663"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T13:21:25.777663"}}
+/type/author /authors/OL10674634A 1 2022-09-18T13:42:21.229389 {"type": {"key": "/type/author"}, "name": "Johann Ante", "key": "/authors/OL10674634A", "source_records": ["bwb:9783161617140"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T13:42:21.229389"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T13:42:21.229389"}}
+/type/author /authors/OL10674645A 1 2022-09-18T13:42:49.732849 {"type": {"key": "/type/author"}, "name": "Carol A. Holmgren", "key": "/authors/OL10674645A", "source_records": ["bwb:9781637640814"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T13:42:49.732849"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T13:42:49.732849"}}
+/type/author /authors/OL10675578A 1 2022-09-18T14:29:31.903307 {"type": {"key": "/type/author"}, "name": "Alma Andreu", "key": "/authors/OL10675578A", "source_records": ["bwb:9788466672559"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T14:29:31.903307"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T14:29:31.903307"}}
+/type/author /authors/OL10675907A 1 2022-09-18T14:41:08.754128 {"type": {"key": "/type/author"}, "name": "Gayle Garcia", "key": "/authors/OL10675907A", "source_records": ["bwb:9781637695517"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T14:41:08.754128"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T14:41:08.754128"}}
+/type/author /authors/OL10675928A 1 2022-09-18T14:44:36.527317 {"type": {"key": "/type/author"}, "name": "gary cassie", "key": "/authors/OL10675928A", "source_records": ["bwb:9798535108339"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T14:44:36.527317"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T14:44:36.527317"}}
+/type/author /authors/OL10675936A 1 2022-09-18T14:44:57.387127 {"type": {"key": "/type/author"}, "name": "Mauro SANCHEZ IBARRA", "key": "/authors/OL10675936A", "source_records": ["bwb:9798480572353"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T14:44:57.387127"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T14:44:57.387127"}}
+/type/author /authors/OL10676745A 1 2022-09-18T16:31:29.575584 {"type": {"key": "/type/author"}, "name": "akram squalemix", "key": "/authors/OL10676745A", "source_records": ["bwb:9798533781367"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T16:31:29.575584"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T16:31:29.575584"}}
+/type/author /authors/OL1067676A 2 2008-08-20T00:42:11.548585 {"name": "Muh\u0323ammad Mut\u0323i\u0304\u02bb H\u0323a\u0304fiz\u0323", "personal_name": "Muh\u0323ammad Mut\u0323i\u0304\u02bb H\u0323a\u0304fiz\u0323", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T00:42:11.548585"}, "key": "/authors/OL1067676A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL1067728A 2 2008-08-20T00:42:18.631998 {"name": "Farh\u0323a\u0304n Bulbul", "personal_name": "Farh\u0323a\u0304n Bulbul", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T00:42:18.631998"}, "key": "/authors/OL1067728A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10677568A 1 2022-09-18T16:54:26.943583 {"type": {"key": "/type/author"}, "name": "Stacy Daugherty", "key": "/authors/OL10677568A", "source_records": ["bwb:9798832306759"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T16:54:26.943583"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T16:54:26.943583"}}
+/type/author /authors/OL10677850A 1 2022-09-18T17:01:48.373555 {"type": {"key": "/type/author"}, "name": "The Nina Buelow Health Press", "key": "/authors/OL10677850A", "source_records": ["bwb:9798773926764"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T17:01:48.373555"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T17:01:48.373555"}}
+/type/author /authors/OL10677946A 1 2022-09-18T17:04:16.545129 {"type": {"key": "/type/author"}, "name": "Mervyn Roger", "key": "/authors/OL10677946A", "source_records": ["bwb:9798432955487"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T17:04:16.545129"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T17:04:16.545129"}}
+/type/author /authors/OL10677985A 1 2022-09-18T17:05:47.721456 {"type": {"key": "/type/author"}, "name": "Suzanne Jarvis", "key": "/authors/OL10677985A", "source_records": ["bwb:9798576476442"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T17:05:47.721456"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T17:05:47.721456"}}
+/type/author /authors/OL10677997A 1 2022-09-18T17:06:12.257741 {"type": {"key": "/type/author"}, "name": "Jamye R", "key": "/authors/OL10677997A", "source_records": ["bwb:9781953046147"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T17:06:12.257741"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T17:06:12.257741"}}
+/type/author /authors/OL10678255A 1 2022-09-18T17:12:44.722570 {"type": {"key": "/type/author"}, "name": "Professional Research Group", "key": "/authors/OL10678255A", "source_records": ["bwb:9781684890552"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T17:12:44.722570"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T17:12:44.722570"}}
+/type/author /authors/OL10678805A 1 2022-09-18T17:26:23.723212 {"type": {"key": "/type/author"}, "name": "Emile Runquist", "key": "/authors/OL10678805A", "source_records": ["bwb:9798470191496"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T17:26:23.723212"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T17:26:23.723212"}}
+/type/author /authors/OL10679131A 1 2022-09-18T17:34:34.303377 {"type": {"key": "/type/author"}, "name": "Garant Cosey", "key": "/authors/OL10679131A", "source_records": ["bwb:9781622777051"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T17:34:34.303377"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T17:34:34.303377"}}
+/type/author /authors/OL10679252A 1 2022-09-18T17:38:08.738024 {"type": {"key": "/type/author"}, "name": "Eugene C. Tidball", "key": "/authors/OL10679252A", "source_records": ["bwb:9780816551071"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T17:38:08.738024"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T17:38:08.738024"}}
+/type/author /authors/OL10679265A 1 2022-09-18T17:38:35.366171 {"type": {"key": "/type/author"}, "name": "Rosalinda Zubiate Ch\u00e1vez", "key": "/authors/OL10679265A", "source_records": ["bwb:9798887966632"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T17:38:35.366171"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T17:38:35.366171"}}
+/type/author /authors/OL10679283A 1 2022-09-18T17:38:47.855545 {"type": {"key": "/type/author"}, "name": "Gabriela Fuentes-Garc\u00eda", "key": "/authors/OL10679283A", "source_records": ["bwb:9781642700398"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T17:38:47.855545"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T17:38:47.855545"}}
+/type/author /authors/OL10679297A 1 2022-09-18T17:39:01.958309 {"type": {"key": "/type/author"}, "name": "YunDong Zhao", "key": "/authors/OL10679297A", "source_records": ["bwb:9798885681605"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T17:39:01.958309"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T17:39:01.958309"}}
+/type/author /authors/OL10679456A 1 2022-09-18T17:42:09.330612 {"type": {"key": "/type/author"}, "name": "Nature Lover Editions", "key": "/authors/OL10679456A", "source_records": ["bwb:9798709800670"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T17:42:09.330612"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T17:42:09.330612"}}
+/type/author /authors/OL10679552A 1 2022-09-18T17:43:52.827556 {"type": {"key": "/type/author"}, "name": "Celine Candiard", "key": "/authors/OL10679552A", "source_records": ["bwb:9782406086819"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T17:43:52.827556"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T17:43:52.827556"}}
+/type/author /authors/OL10679764A 1 2022-09-18T17:48:23.047287 {"type": {"key": "/type/author"}, "name": "Aztec Scribe", "key": "/authors/OL10679764A", "source_records": ["bwb:9798825646152"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T17:48:23.047287"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T17:48:23.047287"}}
+/type/author /authors/OL10680146A 1 2022-09-18T17:57:41.615709 {"type": {"key": "/type/author"}, "name": "Nelson Aspern", "key": "/authors/OL10680146A", "source_records": ["bwb:9781941015575"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T17:57:41.615709"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T17:57:41.615709"}}
+/type/author /authors/OL10680453A 1 2022-09-18T18:04:31.666053 {"type": {"key": "/type/author"}, "name": "M\u00fcnchen Forschungsin Kulturmorphologie", "key": "/authors/OL10680453A", "source_records": ["bwb:9780274710133"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T18:04:31.666053"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T18:04:31.666053"}}
+/type/author /authors/OL10680891A 1 2022-09-18T19:03:29.178177 {"type": {"key": "/type/author"}, "name": "Grant Diaz", "key": "/authors/OL10680891A", "source_records": ["bwb:9781387867073"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T19:03:29.178177"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T19:03:29.178177"}}
+/type/author /authors/OL10681404A 1 2022-09-18T19:16:07.065370 {"type": {"key": "/type/author"}, "name": "Raashid Hamid", "key": "/authors/OL10681404A", "source_records": ["bwb:9781642702316"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T19:16:07.065370"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T19:16:07.065370"}}
+/type/author /authors/OL10681540A 1 2022-09-18T19:18:38.000057 {"type": {"key": "/type/author"}, "name": "Merendia publisher", "key": "/authors/OL10681540A", "source_records": ["bwb:9798844362897"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T19:18:38.000057"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T19:18:38.000057"}}
+/type/author /authors/OL10681593A 1 2022-09-18T19:20:17.606439 {"type": {"key": "/type/author"}, "name": "Martin Ntonjira", "key": "/authors/OL10681593A", "source_records": ["bwb:9798812386559"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T19:20:17.606439"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T19:20:17.606439"}}
+/type/author /authors/OL1068160A 2 2008-08-20T00:43:13.682391 {"name": "\u02bbAbd al-\u02bbAziz Maqa\u0304lih\u0323", "personal_name": "\u02bbAbd al-\u02bbAziz Maqa\u0304lih\u0323", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T00:43:13.682391"}, "key": "/authors/OL1068160A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10681738A 1 2022-09-18T19:23:53.347129 {"type": {"key": "/type/author"}, "name": "Elizabeth Lujwangana", "key": "/authors/OL10681738A", "source_records": ["bwb:9798534069068"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T19:23:53.347129"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T19:23:53.347129"}}
+/type/author /authors/OL10682162A 1 2022-09-18T19:33:19.145617 {"type": {"key": "/type/author"}, "name": "Adnaan Haq", "key": "/authors/OL10682162A", "source_records": ["bwb:9781642703535"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T19:33:19.145617"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T19:33:19.145617"}}
+/type/author /authors/OL10682534A 1 2022-09-18T19:40:47.399367 {"type": {"key": "/type/author"}, "name": "Tatiana CASTRO", "key": "/authors/OL10682534A", "source_records": ["bwb:9798841681397"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T19:40:47.399367"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T19:40:47.399367"}}
+/type/author /authors/OL1068253A 3 2020-09-30T15:44:57.790200 {"personal_name": "Ibn \u02bbA\u0304shu\u0304r, Muh\u0323ammad al-T\u0323a\u0304hir", "last_modified": {"type": "/type/datetime", "value": "2020-09-30T15:44:57.790200"}, "latest_revision": 3, "key": "/authors/OL1068253A", "remote_ids": {"viaf": "822691", "wikidata": "Q3318841", "isni": "0000000123196972"}, "name": "Ibn \u02bbA\u0304shu\u0304r, Muh\u0323ammad al-T\u0323a\u0304hir", "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "death_date": "1973", "birth_date": "1879", "type": {"key": "/type/author"}, "revision": 3}
+/type/author /authors/OL10682799A 1 2022-09-18T19:48:44.042584 {"type": {"key": "/type/author"}, "name": "Raja Al-Gurg", "key": "/authors/OL10682799A", "source_records": ["bwb:9781911487753"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T19:48:44.042584"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T19:48:44.042584"}}
+/type/author /authors/OL10682992A 1 2022-09-18T19:56:24.090774 {"type": {"key": "/type/author"}, "name": "Anita Flemyng", "key": "/authors/OL10682992A", "source_records": ["bwb:9798808086708"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T19:56:24.090774"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T19:56:24.090774"}}
+/type/author /authors/OL10683470A 1 2022-09-18T20:08:53.109201 {"type": {"key": "/type/author"}, "name": "Alae EDITION", "key": "/authors/OL10683470A", "source_records": ["bwb:9798424029486"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T20:08:53.109201"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T20:08:53.109201"}}
+/type/author /authors/OL10683675A 1 2022-09-18T20:15:49.446085 {"type": {"key": "/type/author"}, "name": "Fisher Lloyd", "key": "/authors/OL10683675A", "source_records": ["bwb:9781639872831"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T20:15:49.446085"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T20:15:49.446085"}}
+/type/author /authors/OL1068381A 2 2008-08-20T00:43:44.31294 {"name": "Omar Mounir", "personal_name": "Omar Mounir", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T00:43:44.31294"}, "key": "/authors/OL1068381A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10684041A 1 2022-09-18T20:25:39.565524 {"type": {"key": "/type/author"}, "name": "Kayode Valentine", "key": "/authors/OL10684041A", "source_records": ["bwb:9798761437807"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T20:25:39.565524"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T20:25:39.565524"}}
+/type/author /authors/OL10684149A 1 2022-09-18T20:28:50.576500 {"type": {"key": "/type/author"}, "name": "Jake Birchwood", "key": "/authors/OL10684149A", "source_records": ["bwb:9798729108541"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T20:28:50.576500"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T20:28:50.576500"}}
+/type/author /authors/OL10684778A 1 2022-09-18T20:46:55.012935 {"type": {"key": "/type/author"}, "name": "Natalie Renganeschi", "key": "/authors/OL10684778A", "source_records": ["bwb:9781943039173"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T20:46:55.012935"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T20:46:55.012935"}}
+/type/author /authors/OL10684876A 1 2022-09-18T20:49:14.489346 {"type": {"key": "/type/author"}, "name": "Fran\u00e7oise Touzan", "key": "/authors/OL10684876A", "source_records": ["bwb:9782812418396"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T20:49:14.489346"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T20:49:14.489346"}}
+/type/author /authors/OL10684954A 1 2022-09-18T20:51:17.630573 {"type": {"key": "/type/author"}, "name": "Yara FAitana", "key": "/authors/OL10684954A", "source_records": ["bwb:9798818867458"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T20:51:17.630573"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T20:51:17.630573"}}
+/type/author /authors/OL10685114A 1 2022-09-18T20:55:01.224482 {"type": {"key": "/type/author"}, "name": "Felix Pawlak", "key": "/authors/OL10685114A", "source_records": ["bwb:9783832555085"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T20:55:01.224482"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T20:55:01.224482"}}
+/type/author /authors/OL10685396A 1 2022-09-18T21:02:49.219876 {"type": {"key": "/type/author"}, "name": "Megan M. Teraberry", "key": "/authors/OL10685396A", "source_records": ["bwb:9798885909594"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T21:02:49.219876"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T21:02:49.219876"}}
+/type/author /authors/OL10685624A 1 2022-09-18T21:09:17.459346 {"type": {"key": "/type/author"}, "name": "G. Beaulavon", "key": "/authors/OL10685624A", "source_records": ["bwb:9780274676125"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T21:09:17.459346"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T21:09:17.459346"}}
+/type/author /authors/OL1068570A 2 2008-08-20T00:44:12.62447 {"name": "Muh\u0323ammad \u02bbAbd al-\u02bbAzi\u0304z Abu\u0304 Sukhaylah", "personal_name": "Muh\u0323ammad \u02bbAbd al-\u02bbAzi\u0304z Abu\u0304 Sukhaylah", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T00:44:12.62447"}, "key": "/authors/OL1068570A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10686313A 1 2022-09-18T21:59:32.309279 {"type": {"key": "/type/author"}, "name": "Pamela Sue Kronenberger", "key": "/authors/OL10686313A", "source_records": ["bwb:9781662849664"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T21:59:32.309279"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T21:59:32.309279"}}
+/type/author /authors/OL10686413A 1 2022-09-18T22:03:47.022540 {"type": {"key": "/type/author"}, "name": "Brian D. Ball", "key": "/authors/OL10686413A", "source_records": ["bwb:9781803810447"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T22:03:47.022540"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T22:03:47.022540"}}
+/type/author /authors/OL10686547A 1 2022-09-18T22:07:33.883723 {"type": {"key": "/type/author"}, "name": "P\u00e9ter N\u00e9meth", "key": "/authors/OL10686547A", "source_records": ["bwb:9781642702170"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T22:07:33.883723"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T22:07:33.883723"}}
+/type/author /authors/OL10686563A 1 2022-09-18T22:07:45.391392 {"type": {"key": "/type/author"}, "name": "Aida Dabreo", "key": "/authors/OL10686563A", "source_records": ["bwb:9798986094779"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T22:07:45.391392"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T22:07:45.391392"}}
+/type/author /authors/OL10686818A 1 2022-09-18T22:14:03.031277 {"type": {"key": "/type/author"}, "name": "Arby RICHTER", "key": "/authors/OL10686818A", "source_records": ["bwb:9798408921270"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T22:14:03.031277"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T22:14:03.031277"}}
+/type/author /authors/OL10687337A 1 2022-09-18T22:25:52.231087 {"type": {"key": "/type/author"}, "name": "E. T. Chan", "key": "/authors/OL10687337A", "source_records": ["bwb:9781543770537"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T22:25:52.231087"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T22:25:52.231087"}}
+/type/author /authors/OL10688076A 1 2022-09-18T22:48:10.972443 {"type": {"key": "/type/author"}, "name": "Andrea Smith xs", "key": "/authors/OL10688076A", "source_records": ["bwb:9798843850937"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T22:48:10.972443"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T22:48:10.972443"}}
+/type/author /authors/OL10688551A 1 2022-09-18T23:01:09.747304 {"type": {"key": "/type/author"}, "name": "Pharmacy Astronomy Observation Book", "key": "/authors/OL10688551A", "source_records": ["bwb:9798442135626"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T23:01:09.747304"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T23:01:09.747304"}}
+/type/author /authors/OL10689079A 1 2022-09-18T23:17:09.082905 {"type": {"key": "/type/author"}, "name": "Redwissy Publishing", "key": "/authors/OL10689079A", "source_records": ["bwb:9798420266564"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T23:17:09.082905"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T23:17:09.082905"}}
+/type/author /authors/OL10689688A 1 2022-09-18T23:35:22.063830 {"type": {"key": "/type/author"}, "name": "Blanca C\u00e1rdaba", "key": "/authors/OL10689688A", "source_records": ["bwb:9781642700800"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T23:35:22.063830"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T23:35:22.063830"}}
+/type/author /authors/OL10690113A 1 2022-09-18T23:45:40.634467 {"type": {"key": "/type/author"}, "name": "Nolan Knights", "key": "/authors/OL10690113A", "source_records": ["bwb:9798846442818"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T23:45:40.634467"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T23:45:40.634467"}}
+/type/author /authors/OL10690515A 1 2022-09-18T23:58:12.266516 {"type": {"key": "/type/author"}, "name": "Jean 1849-1926 La Sulamite Richepin", "key": "/authors/OL10690515A", "source_records": ["bwb:9780274738564"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-18T23:58:12.266516"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T23:58:12.266516"}}
+/type/author /authors/OL10690607A 1 2022-09-19T00:16:42.168664 {"type": {"key": "/type/author"}, "name": "J. p. 1811-1884 Benjamin", "key": "/authors/OL10690607A", "source_records": ["bwb:9780342566570"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T00:16:42.168664"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T00:16:42.168664"}}
+/type/author /authors/OL10690643A 1 2022-09-19T00:27:42.988873 {"type": {"key": "/type/author"}, "name": "S. G. sgn Wood", "key": "/authors/OL10690643A", "source_records": ["bwb:9780342949212"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T00:27:42.988873"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T00:27:42.988873"}}
+/type/author /authors/OL10690723A 1 2022-09-19T00:39:36.026792 {"type": {"key": "/type/author"}, "name": "Edmund J. Dormann", "key": "/authors/OL10690723A", "source_records": ["bwb:9780353662261"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T00:39:36.026792"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T00:39:36.026792"}}
+/type/author /authors/OL10690767A 1 2022-09-19T00:40:47.268621 {"type": {"key": "/type/author"}, "name": "Romanus Teller", "key": "/authors/OL10690767A", "source_records": ["bwb:9780353804418"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T00:40:47.268621"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T00:40:47.268621"}}
+/type/author /authors/OL10691001A 1 2022-09-19T00:48:11.472335 {"type": {"key": "/type/author"}, "name": "Kian- Chung Ong", "key": "/authors/OL10691001A", "source_records": ["bwb:9781642701814"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T00:48:11.472335"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T00:48:11.472335"}}
+/type/author /authors/OL10691291A 1 2022-09-19T00:55:36.927810 {"type": {"key": "/type/author"}, "name": "Adam Jamie Hussein", "key": "/authors/OL10691291A", "source_records": ["bwb:9781914498596"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T00:55:36.927810"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T00:55:36.927810"}}
+/type/author /authors/OL10691321A 1 2022-09-19T00:56:25.372071 {"type": {"key": "/type/author"}, "name": "Evan Giddings", "key": "/authors/OL10691321A", "source_records": ["bwb:9781954682337"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T00:56:25.372071"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T00:56:25.372071"}}
+/type/author /authors/OL10691686A 1 2022-09-19T01:04:37.483585 {"type": {"key": "/type/author"}, "name": "Azalea Colorare", "key": "/authors/OL10691686A", "source_records": ["bwb:9798838903204"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T01:04:37.483585"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T01:04:37.483585"}}
+/type/author /authors/OL10692000A 1 2022-09-19T01:12:41.540429 {"type": {"key": "/type/author"}, "name": "Susan Buescher", "key": "/authors/OL10692000A", "source_records": ["bwb:9781684620685"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T01:12:41.540429"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T01:12:41.540429"}}
+/type/author /authors/OL10692326A 1 2022-09-19T01:20:54.237817 {"type": {"key": "/type/author"}, "name": "recipe notebook", "key": "/authors/OL10692326A", "source_records": ["bwb:9798607467210"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T01:20:54.237817"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T01:20:54.237817"}}
+/type/author /authors/OL10692418A 1 2022-09-19T01:23:42.577147 {"type": {"key": "/type/author"}, "name": "Norah Bentley", "key": "/authors/OL10692418A", "source_records": ["bwb:9798829691950"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T01:23:42.577147"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T01:23:42.577147"}}
+/type/author /authors/OL10692506A 1 2022-09-19T01:26:44.247499 {"type": {"key": "/type/author"}, "name": "Shuuh lumina", "key": "/authors/OL10692506A", "source_records": ["bwb:9798837401251"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T01:26:44.247499"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T01:26:44.247499"}}
+/type/author /authors/OL10692683A 1 2022-09-19T01:34:15.854692 {"type": {"key": "/type/author"}, "name": "Kacper Rękawek", "key": "/authors/OL10692683A", "source_records": ["bwb:9781003192992"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T01:34:15.854692"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T01:34:15.854692"}}
+/type/author /authors/OL10693050A 1 2022-09-19T01:45:13.193442 {"type": {"key": "/type/author"}, "name": "Chesca Deans", "key": "/authors/OL10693050A", "source_records": ["bwb:9798814500373"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T01:45:13.193442"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T01:45:13.193442"}}
+/type/author /authors/OL10693078A 1 2022-09-19T01:46:13.540905 {"type": {"key": "/type/author"}, "name": "S. B EDITION", "key": "/authors/OL10693078A", "source_records": ["bwb:9798843899448"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T01:46:13.540905"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T01:46:13.540905"}}
+/type/author /authors/OL10693140A 1 2022-09-19T01:47:57.844758 {"type": {"key": "/type/author"}, "name": "Giovanni Faggioli", "key": "/authors/OL10693140A", "source_records": ["bwb:9798842296736"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T01:47:57.844758"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T01:47:57.844758"}}
+/type/author /authors/OL10693155A 1 2022-09-19T01:48:17.019812 {"type": {"key": "/type/author"}, "name": "Mimi and Grace Editions", "key": "/authors/OL10693155A", "source_records": ["bwb:9798842478965"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T01:48:17.019812"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T01:48:17.019812"}}
+/type/author /authors/OL10693401A 1 2022-09-19T01:55:26.349604 {"type": {"key": "/type/author"}, "name": "Paul G. Andersen", "key": "/authors/OL10693401A", "source_records": ["bwb:9781569908631"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T01:55:26.349604"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T01:55:26.349604"}}
+/type/author /authors/OL10693600A 1 2022-09-19T02:02:56.780080 {"type": {"key": "/type/author"}, "name": "monica home art world artist", "key": "/authors/OL10693600A", "source_records": ["bwb:9798825378640"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T02:02:56.780080"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T02:02:56.780080"}}
+/type/author /authors/OL10694170A 1 2022-09-19T02:22:59.419043 {"type": {"key": "/type/author"}, "name": "Madeline Bach", "key": "/authors/OL10694170A", "source_records": ["bwb:9798218055547"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T02:22:59.419043"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T02:22:59.419043"}}
+/type/author /authors/OL10694569A 1 2022-09-19T02:35:43.675515 {"type": {"key": "/type/author"}, "name": "Endino AVA", "key": "/authors/OL10694569A", "source_records": ["bwb:9798806346118"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T02:35:43.675515"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T02:35:43.675515"}}
+/type/author /authors/OL1069497A 1 2008-04-01T03:28:50.625462 {"name": "International Congress on Therapeutic, Psychological, and Research Aspects of Amyotrophic Lateral Sclerosis (1985 Varese, Italy)", "last_modified": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "key": "/authors/OL1069497A", "type": {"key": "/type/author"}, "revision": 1}
+/type/author /authors/OL10695260A 1 2022-09-19T03:13:31.692765 {"type": {"key": "/type/author"}, "name": "United Typewriter Company Underwood Sch", "key": "/authors/OL10695260A", "source_records": ["bwb:9780342720644"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T03:13:31.692765"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T03:13:31.692765"}}
+/type/author /authors/OL10695332A 1 2022-09-19T03:22:43.006890 {"type": {"key": "/type/author"}, "name": "A. H. 1793-1881 Dunlevy", "key": "/authors/OL10695332A", "source_records": ["bwb:9780343195052"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T03:22:43.006890"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T03:22:43.006890"}}
+/type/author /authors/OL10695415A 1 2022-09-19T03:30:57.064788 {"type": {"key": "/type/author"}, "name": "God Dieux", "key": "/authors/OL10695415A", "source_records": ["bwb:9780359857685"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T03:30:57.064788"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T03:30:57.064788"}}
+/type/author /authors/OL10696115A 1 2022-09-19T03:51:45.125445 {"type": {"key": "/type/author"}, "name": "Wilson Sarria", "key": "/authors/OL10696115A", "source_records": ["bwb:9798843937621"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T03:51:45.125445"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T03:51:45.125445"}}
+/type/author /authors/OL10696207A 1 2022-09-19T03:54:37.563421 {"type": {"key": "/type/author"}, "name": "Entretenidamente", "key": "/authors/OL10696207A", "source_records": ["bwb:9798844639340"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T03:54:37.563421"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T03:54:37.563421"}}
+/type/author /authors/OL10696434A 1 2022-09-19T04:00:51.107920 {"type": {"key": "/type/author"}, "name": "Fausto Carcano", "key": "/authors/OL10696434A", "source_records": ["bwb:9798501391697"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T04:00:51.107920"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T04:00:51.107920"}}
+/type/author /authors/OL10696492A 1 2022-09-19T04:02:15.644701 {"type": {"key": "/type/author"}, "name": "Darron Courtwright", "key": "/authors/OL10696492A", "source_records": ["bwb:9798536906606"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T04:02:15.644701"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T04:02:15.644701"}}
+/type/author /authors/OL10696549A 1 2022-09-19T04:03:09.850407 {"type": {"key": "/type/author"}, "name": "Wofis", "key": "/authors/OL10696549A", "source_records": ["bwb:9781956276275"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T04:03:09.850407"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T04:03:09.850407"}}
+/type/author /authors/OL10696809A 1 2022-09-19T04:10:54.306142 {"type": {"key": "/type/author"}, "name": "Caravane Press", "key": "/authors/OL10696809A", "source_records": ["bwb:9798833005125"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T04:10:54.306142"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T04:10:54.306142"}}
+/type/author /authors/OL1069685A 2 2008-08-20T00:50:37.450416 {"name": "Harley F. Hieb", "personal_name": "Harley F. Hieb", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T00:50:37.450416"}, "key": "/authors/OL1069685A", "birth_date": "1914", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10696954A 1 2022-09-19T04:15:56.315146 {"type": {"key": "/type/author"}, "name": "Business GUIDE", "key": "/authors/OL10696954A", "source_records": ["bwb:9798841411024"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T04:15:56.315146"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T04:15:56.315146"}}
+/type/author /authors/OL10697114A 1 2022-09-19T04:24:31.700870 {"type": {"key": "/type/author"}, "name": "Lisa Habelt", "key": "/authors/OL10697114A", "source_records": ["bwb:9783847418153"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T04:24:31.700870"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T04:24:31.700870"}}
+/type/author /authors/OL10697243A 1 2022-09-19T04:28:51.064487 {"type": {"key": "/type/author"}, "name": "Marganet Helen", "key": "/authors/OL10697243A", "source_records": ["bwb:9798821334015"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T04:28:51.064487"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T04:28:51.064487"}}
+/type/author /authors/OL10697411A 1 2022-09-19T04:33:52.280958 {"type": {"key": "/type/author"}, "name": "Annalee Stred", "key": "/authors/OL10697411A", "source_records": ["bwb:9798458524537"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T04:33:52.280958"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T04:33:52.280958"}}
+/type/author /authors/OL10697784A 1 2022-09-19T04:47:00.439433 {"type": {"key": "/type/author"}, "name": "Vinicius Seidel", "key": "/authors/OL10697784A", "source_records": ["bwb:9781737770237"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T04:47:00.439433"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T04:47:00.439433"}}
+/type/author /authors/OL10697982A 1 2022-09-19T04:53:18.718057 {"type": {"key": "/type/author"}, "name": "Alex P. Alex P. Press", "key": "/authors/OL10697982A", "source_records": ["bwb:9798427807579"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T04:53:18.718057"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T04:53:18.718057"}}
+/type/author /authors/OL10698029A 1 2022-09-19T04:54:43.138847 {"type": {"key": "/type/author"}, "name": "Musa Gianni", "key": "/authors/OL10698029A", "source_records": ["bwb:9798844213366"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T04:54:43.138847"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T04:54:43.138847"}}
+/type/author /authors/OL10698177A 1 2022-09-19T04:58:38.353047 {"type": {"key": "/type/author"}, "name": "Aubrie Schatz", "key": "/authors/OL10698177A", "source_records": ["bwb:9798805461249"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T04:58:38.353047"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T04:58:38.353047"}}
+/type/author /authors/OL10698217A 1 2022-09-19T05:00:27.344979 {"type": {"key": "/type/author"}, "name": "Cynthia McNees", "key": "/authors/OL10698217A", "source_records": ["bwb:9798837138379"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T05:00:27.344979"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T05:00:27.344979"}}
+/type/author /authors/OL10698395A 1 2022-09-19T05:06:42.916328 {"type": {"key": "/type/author"}, "name": "Southside Interprise", "key": "/authors/OL10698395A", "source_records": ["bwb:9798986820606"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T05:06:42.916328"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T05:06:42.916328"}}
+/type/author /authors/OL10698564A 1 2022-09-19T05:13:56.139475 {"type": {"key": "/type/author"}, "name": "Ken Czarnowski", "key": "/authors/OL10698564A", "source_records": ["bwb:9781737339861"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T05:13:56.139475"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T05:13:56.139475"}}
+/type/author /authors/OL10698631A 1 2022-09-19T05:18:22.269399 {"type": {"key": "/type/author"}, "name": "Chadwick Borgia", "key": "/authors/OL10698631A", "source_records": ["bwb:9798816985031"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T05:18:22.269399"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T05:18:22.269399"}}
+/type/author /authors/OL10698920A 1 2022-09-19T05:27:26.581105 {"type": {"key": "/type/author"}, "name": "Christina Heyworth", "key": "/authors/OL10698920A", "source_records": ["bwb:9798846512450"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T05:27:26.581105"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T05:27:26.581105"}}
+/type/author /authors/OL10699169A 1 2022-09-19T05:36:34.916385 {"type": {"key": "/type/author"}, "name": "Mother Mother Goose", "key": "/authors/OL10699169A", "source_records": ["bwb:9781646433971"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T05:36:34.916385"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T05:36:34.916385"}}
+/type/author /authors/OL10699345A 1 2022-09-19T05:41:06.370385 {"type": {"key": "/type/author"}, "name": "Collier Ada Langworthy", "key": "/authors/OL10699345A", "source_records": ["bwb:9780341680147"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T05:41:06.370385"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T05:41:06.370385"}}
+/type/author /authors/OL10699401A 1 2022-09-19T05:59:38.345655 {"type": {"key": "/type/author"}, "name": "W. J. 1850-1925 Dibdin", "key": "/authors/OL10699401A", "source_records": ["bwb:9780342686261"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T05:59:38.345655"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T05:59:38.345655"}}
+/type/author /authors/OL10699822A 1 2022-09-19T06:31:05.766254 {"type": {"key": "/type/author"}, "name": "Nandani Sinha-Matas", "key": "/authors/OL10699822A", "source_records": ["bwb:9781662439698"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T06:31:05.766254"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T06:31:05.766254"}}
+/type/author /authors/OL10699987A 1 2022-09-19T06:36:57.730756 {"type": {"key": "/type/author"}, "name": "Britta Winkels", "key": "/authors/OL10699987A", "source_records": ["bwb:9781950063154"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T06:36:57.730756"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T06:36:57.730756"}}
+/type/author /authors/OL10700371A 1 2022-09-19T06:48:07.097944 {"type": {"key": "/type/author"}, "name": "V. Gаcha Life", "key": "/authors/OL10700371A", "source_records": ["bwb:9798448409172"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T06:48:07.097944"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T06:48:07.097944"}}
+/type/author /authors/OL10700380A 1 2022-09-19T06:48:16.665085 {"type": {"key": "/type/author"}, "name": "Jan Sramek", "key": "/authors/OL10700380A", "source_records": ["bwb:9788000068435"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T06:48:16.665085"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T06:48:16.665085"}}
+/type/author /authors/OL10700585A 1 2022-09-19T06:55:15.115475 {"type": {"key": "/type/author"}, "name": "Lovely Pk Gatlin", "key": "/authors/OL10700585A", "source_records": ["bwb:9798986910307"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T06:55:15.115475"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T06:55:15.115475"}}
+/type/author /authors/OL10701690A 1 2022-09-19T07:30:18.372942 {"type": {"key": "/type/author"}, "name": "49 year old Birthday Gifts for Women", "key": "/authors/OL10701690A", "source_records": ["bwb:9798805736576"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T07:30:18.372942"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T07:30:18.372942"}}
+/type/author /authors/OL10701767A 1 2022-09-19T07:32:24.786835 {"type": {"key": "/type/author"}, "name": "videlle videlle MM", "key": "/authors/OL10701767A", "source_records": ["bwb:9798531221384"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T07:32:24.786835"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T07:32:24.786835"}}
+/type/author /authors/OL10701967A 1 2022-09-19T07:41:27.067637 {"type": {"key": "/type/author"}, "name": "D. J. Bershaw", "key": "/authors/OL10701967A", "source_records": ["bwb:9798887968858"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T07:41:27.067637"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T07:41:27.067637"}}
+/type/author /authors/OL10702416A 1 2022-09-19T07:58:52.388811 {"type": {"key": "/type/author"}, "name": "Alessandro D'Ercole", "key": "/authors/OL10702416A", "source_records": ["bwb:9798787886412"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T07:58:52.388811"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T07:58:52.388811"}}
+/type/author /authors/OL10702607A 1 2022-09-19T08:07:19.398127 {"type": {"key": "/type/author"}, "name": "Viggo E. Sorensen", "key": "/authors/OL10702607A", "source_records": ["bwb:9781639375301"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T08:07:19.398127"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T08:07:19.398127"}}
+/type/author /authors/OL10702851A 1 2022-09-19T08:16:27.298967 {"type": {"key": "/type/author"}, "name": "Felisa Felisa Hong", "key": "/authors/OL10702851A", "source_records": ["bwb:9798835161232"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T08:16:27.298967"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T08:16:27.298967"}}
+/type/author /authors/OL10702864A 1 2022-09-19T08:16:53.899348 {"type": {"key": "/type/author"}, "name": "Caligola Mariani", "key": "/authors/OL10702864A", "source_records": ["bwb:9798405792866"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T08:16:53.899348"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T08:16:53.899348"}}
+/type/author /authors/OL10703005A 1 2022-09-19T08:21:48.623292 {"type": {"key": "/type/author"}, "name": "Stephen Rigg", "key": "/authors/OL10703005A", "source_records": ["bwb:9798840356807"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T08:21:48.623292"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T08:21:48.623292"}}
+/type/author /authors/OL10703649A 1 2022-09-19T09:16:37.506348 {"type": {"key": "/type/author"}, "name": "Frank A Mason", "key": "/authors/OL10703649A", "source_records": ["bwb:9781088036181"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T09:16:37.506348"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T09:16:37.506348"}}
+/type/author /authors/OL10704048A 1 2022-09-19T09:29:10.843709 {"type": {"key": "/type/author"}, "name": "Chulan Sampathge", "key": "/authors/OL10704048A", "source_records": ["bwb:9781665598200"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T09:29:10.843709"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T09:29:10.843709"}}
+/type/author /authors/OL107040A 2 2008-09-09T04:24:02.496607 {"name": "Vasantara\u0304vu Ve\u0304n\u0307kat\u0323ara\u0304vu", "personal_name": "Vasantara\u0304vu Ve\u0304n\u0307kat\u0323ara\u0304vu", "last_modified": {"type": "/type/datetime", "value": "2008-09-09T04:24:02.496607"}, "key": "/authors/OL107040A", "birth_date": "1909", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10704412A 1 2022-09-19T09:41:01.299649 {"type": {"key": "/type/author"}, "name": "Daniel Mello", "key": "/authors/OL10704412A", "source_records": ["bwb:9798467679044"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T09:41:01.299649"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T09:41:01.299649"}}
+/type/author /authors/OL10704719A 1 2022-09-19T09:49:25.702224 {"type": {"key": "/type/author"}, "name": "Kellie Anton", "key": "/authors/OL10704719A", "source_records": ["bwb:9798986835341"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T09:49:25.702224"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T09:49:25.702224"}}
+/type/author /authors/OL10704971A 1 2022-09-19T09:56:59.746749 {"type": {"key": "/type/author"}, "name": "Giuseppe Brera", "key": "/authors/OL10704971A", "source_records": ["bwb:9798806932250"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T09:56:59.746749"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T09:56:59.746749"}}
+/type/author /authors/OL10705336A 1 2022-09-19T10:15:00.114052 {"type": {"key": "/type/author"}, "name": "C\u00e9line Landry", "key": "/authors/OL10705336A", "source_records": ["bwb:9798713826628"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T10:15:00.114052"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T10:15:00.114052"}}
+/type/author /authors/OL10705496A 1 2022-09-19T10:20:04.917743 {"type": {"key": "/type/author"}, "name": "Amelia Cates", "key": "/authors/OL10705496A", "source_records": ["bwb:9781070955766"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T10:20:04.917743"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T10:20:04.917743"}}
+/type/author /authors/OL10705511A 1 2022-09-19T10:20:28.501410 {"type": {"key": "/type/author"}, "name": "Abhilasha Bhatt", "key": "/authors/OL10705511A", "source_records": ["bwb:9798775516260"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T10:20:28.501410"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T10:20:28.501410"}}
+/type/author /authors/OL10705696A 1 2022-09-19T10:27:26.978083 {"type": {"key": "/type/author"}, "name": "Anne Ashford", "key": "/authors/OL10705696A", "source_records": ["bwb:9780964383678"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T10:27:26.978083"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T10:27:26.978083"}}
+/type/author /authors/OL10705793A 1 2022-09-19T10:32:37.142721 {"type": {"key": "/type/author"}, "name": "Victoria Alonso", "key": "/authors/OL10705793A", "source_records": ["bwb:9781368090087"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T10:32:37.142721"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T10:32:37.142721"}}
+/type/author /authors/OL10705806A 1 2022-09-19T10:33:09.534786 {"type": {"key": "/type/author"}, "name": "Shannon Toomey", "key": "/authors/OL10705806A", "source_records": ["bwb:9798885270526"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T10:33:09.534786"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T10:33:09.534786"}}
+/type/author /authors/OL1070597A 2 2008-08-20T00:57:38.273892 {"name": "S. Steven Powell", "personal_name": "S. Steven Powell", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T00:57:38.273892"}, "key": "/authors/OL1070597A", "birth_date": "1951", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10706178A 1 2022-09-19T10:46:29.529268 {"type": {"key": "/type/author"}, "name": "Kez Kenshi", "key": "/authors/OL10706178A", "source_records": ["bwb:9798837281969"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T10:46:29.529268"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T10:46:29.529268"}}
+/type/author /authors/OL10706566A 1 2022-09-19T11:01:36.081784 {"type": {"key": "/type/author"}, "name": "Monica Pasero", "key": "/authors/OL10706566A", "source_records": ["bwb:9798842531707"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T11:01:36.081784"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T11:01:36.081784"}}
+/type/author /authors/OL10707386A 1 2022-09-19T12:03:43.211744 {"type": {"key": "/type/author"}, "name": "Duveen Alchemy and Chemistry Collection", "key": "/authors/OL10707386A", "source_records": ["bwb:9780353816398"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T12:03:43.211744"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T12:03:43.211744"}}
+/type/author /authors/OL10707508A 1 2022-09-19T12:11:22.562820 {"type": {"key": "/type/author"}, "name": "Diana Riviera", "key": "/authors/OL10707508A", "source_records": ["bwb:9781957840024"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T12:11:22.562820"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T12:11:22.562820"}}
+/type/author /authors/OL10707727A 1 2022-09-19T12:19:33.637452 {"type": {"key": "/type/author"}, "name": "Jared Siemes", "key": "/authors/OL10707727A", "source_records": ["bwb:9781791147907"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T12:19:33.637452"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T12:19:33.637452"}}
+/type/author /authors/OL10707761A 1 2022-09-19T12:23:42.561099 {"type": {"key": "/type/author"}, "name": "Jennifer Flint", "key": "/authors/OL10707761A", "source_records": ["bwb:9781913590567"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T12:23:42.561099"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T12:23:42.561099"}}
+/type/author /authors/OL10707884A 1 2022-09-19T12:29:33.939486 {"type": {"key": "/type/author"}, "name": "Danielle O'Malley", "key": "/authors/OL10707884A", "source_records": ["bwb:9798848008609"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T12:29:33.939486"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T12:29:33.939486"}}
+/type/author /authors/OL10707968A 1 2022-09-19T12:32:14.601011 {"type": {"key": "/type/author"}, "name": "chopsuey", "key": "/authors/OL10707968A", "source_records": ["bwb:9798847266017"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T12:32:14.601011"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T12:32:14.601011"}}
+/type/author /authors/OL10708219A 1 2022-09-19T12:40:14.871190 {"type": {"key": "/type/author"}, "name": "Michelle Amador", "key": "/authors/OL10708219A", "source_records": ["bwb:9798804424955"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T12:40:14.871190"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T12:40:14.871190"}}
+/type/author /authors/OL10708272A 1 2022-09-19T12:42:02.810457 {"type": {"key": "/type/author"}, "name": "Oliver Zack", "key": "/authors/OL10708272A", "source_records": ["bwb:9798846416406"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T12:42:02.810457"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T12:42:02.810457"}}
+/type/author /authors/OL10708276A 1 2022-09-19T12:42:14.303683 {"type": {"key": "/type/author"}, "name": "M. M. Wakeford", "key": "/authors/OL10708276A", "source_records": ["bwb:9798843444013"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T12:42:14.303683"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T12:42:14.303683"}}
+/type/author /authors/OL10708360A 1 2022-09-19T12:45:05.190442 {"type": {"key": "/type/author"}, "name": "Thanuja Gopal Pradeep", "key": "/authors/OL10708360A", "source_records": ["bwb:9781642703573"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T12:45:05.190442"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T12:45:05.190442"}}
+/type/author /authors/OL10708882A 1 2022-09-19T13:07:06.548419 {"type": {"key": "/type/author"}, "name": "Alyssa Daum", "key": "/authors/OL10708882A", "source_records": ["bwb:9798885043144"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T13:07:06.548419"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T13:07:06.548419"}}
+/type/author /authors/OL10709475A 1 2022-09-19T13:32:15.183225 {"type": {"key": "/type/author"}, "name": "Sinclair Jenkins", "key": "/authors/OL10709475A", "source_records": ["bwb:9781956887365"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T13:32:15.183225"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T13:32:15.183225"}}
+/type/author /authors/OL10710449A 1 2022-09-19T14:14:05.698113 {"type": {"key": "/type/author"}, "name": "burn book mandala", "key": "/authors/OL10710449A", "source_records": ["bwb:9798824630244"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T14:14:05.698113"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T14:14:05.698113"}}
+/type/author /authors/OL10710539A 1 2022-09-19T14:17:55.675539 {"type": {"key": "/type/author"}, "name": "Emly book", "key": "/authors/OL10710539A", "source_records": ["bwb:9798742677406"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T14:17:55.675539"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T14:17:55.675539"}}
+/type/author /authors/OL10711000A 1 2022-09-19T15:08:15.909943 {"type": {"key": "/type/author"}, "name": "Hundred New Acrostics", "key": "/authors/OL10711000A", "source_records": ["bwb:9780343220891"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T15:08:15.909943"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T15:08:15.909943"}}
+/type/author /authors/OL10711016A 1 2022-09-19T15:10:46.206673 {"type": {"key": "/type/author"}, "name": "Irenaeus (Lugdunensis)", "key": "/authors/OL10711016A", "source_records": ["bwb:9780343363666"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T15:10:46.206673"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T15:10:46.206673"}}
+/type/author /authors/OL10711067A 1 2022-09-19T15:17:03.067478 {"type": {"key": "/type/author"}, "name": "Martin Stanislas 1875-1951 Gillet", "key": "/authors/OL10711067A", "source_records": ["bwb:9780353755697"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T15:17:03.067478"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T15:17:03.067478"}}
+/type/author /authors/OL10711158A 1 2022-09-19T15:23:07.436595 {"type": {"key": "/type/author"}, "name": "Ebony M. Smith", "key": "/authors/OL10711158A", "source_records": ["bwb:9781387863624"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T15:23:07.436595"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T15:23:07.436595"}}
+/type/author /authors/OL10711244A 1 2022-09-19T15:27:47.013635 {"type": {"key": "/type/author"}, "name": "Betty Arnett", "key": "/authors/OL10711244A", "source_records": ["bwb:9781594336959"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T15:27:47.013635"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T15:27:47.013635"}}
+/type/author /authors/OL10711455A 1 2022-09-19T15:35:24.832196 {"type": {"key": "/type/author"}, "name": "Marcella Visch", "key": "/authors/OL10711455A", "source_records": ["bwb:9781914337154"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T15:35:24.832196"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T15:35:24.832196"}}
+/type/author /authors/OL10711479A 1 2022-09-19T15:36:41.788163 {"type": {"key": "/type/author"}, "name": "N. Nichelle", "key": "/authors/OL10711479A", "source_records": ["bwb:9781953156464"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T15:36:41.788163"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T15:36:41.788163"}}
+/type/author /authors/OL10711557A 1 2022-09-19T15:39:33.436666 {"type": {"key": "/type/author"}, "name": "Ramesh Abichandani", "key": "/authors/OL10711557A", "source_records": ["bwb:9798986897608"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T15:39:33.436666"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T15:39:33.436666"}}
+/type/author /authors/OL107115A 2 2012-06-07T06:42:55.297061 {"created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "latest_revision": 2, "name": "Damodara", "key": "/authors/OL107115A", "personal_name": "Damodara", "birth_date": "1486", "death_date": "1568", "type": {"key": "/type/author"}, "last_modified": {"type": "/type/datetime", "value": "2012-06-07T06:42:55.297061"}, "revision": 2}
+/type/author /authors/OL10712126A 1 2022-09-19T16:06:51.520976 {"type": {"key": "/type/author"}, "name": "Pa fu luo", "personal_name": "Pa fu luo", "key": "/authors/OL10712126A", "source_records": ["ia:lunhuimima0000unse"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-19T16:06:51.520976"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-19T16:06:51.520976"}}
+/type/author /authors/OL10712498A 1 2022-09-20T11:07:31.319846 {"type": {"key": "/type/author"}, "name": "Raven R Worthington", "key": "/authors/OL10712498A", "source_records": ["amazon:1493531735"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-20T11:07:31.319846"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-20T11:07:31.319846"}}
+/type/author /authors/OL10712588A 1 2022-09-21T04:32:24.758596 {"type": {"key": "/type/author"}, "name": "Feng xiao yue", "personal_name": "Feng xiao yue", "key": "/authors/OL10712588A", "source_records": ["ia:liehuotianshi0000unse"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-21T04:32:24.758596"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-21T04:32:24.758596"}}
+/type/author /authors/OL10712653A 1 2022-09-21T05:00:55.450638 {"type": {"key": "/type/author"}, "name": "Kathy Testa", "personal_name": "Kathy Testa", "key": "/authors/OL10712653A", "source_records": ["ia:timelessisland0000test"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-21T05:00:55.450638"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-21T05:00:55.450638"}}
+/type/author /authors/OL10712740A 1 2022-09-21T05:46:54.714102 {"type": {"key": "/type/author"}, "name": "Roger Kirk", "personal_name": "Roger Kirk", "key": "/authors/OL10712740A", "source_records": ["ia:shootingmarmalad0000kirk"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-21T05:46:54.714102"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-21T05:46:54.714102"}}
+/type/author /authors/OL10712851A 1 2022-09-22T04:36:38.085517 {"type": {"key": "/type/author"}, "name": "Du yang", "personal_name": "Du yang", "key": "/authors/OL10712851A", "source_records": ["ia:baoguanyubaojian0000unse"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-22T04:36:38.085517"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-22T04:36:38.085517"}}
+/type/author /authors/OL10713271A 1 2022-09-23T05:50:58.095693 {"type": {"key": "/type/author"}, "name": "Selim \u0130leri", "personal_name": "Selim \u0130leri", "birth_date": "1949", "key": "/authors/OL10713271A", "source_records": ["ia:pastrmayaz0000iler"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-23T05:50:58.095693"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-23T05:50:58.095693"}}
+/type/author /authors/OL10713725A 1 2022-09-25T04:57:01.423939 {"type": {"key": "/type/author"}, "name": "Xiaoyumo", "personal_name": "Xiaoyumo", "key": "/authors/OL10713725A", "source_records": ["ia:shuaixiaozidekex0000xiao"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-25T04:57:01.423939"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-25T04:57:01.423939"}}
+/type/author /authors/OL10713845A 2 2022-09-25T12:04:06.762740 {"name": "Mian Waqar ul Islam", "key": "/authors/OL10713845A", "type": {"key": "/type/author"}, "photos": [12916676], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2022-09-25T11:55:45.670865"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-25T12:04:06.762740"}}
+/type/author /authors/OL10713935A 1 2022-09-25T22:19:05.936019 {"type": {"key": "/type/author"}, "name": "Douglas Nancy", "key": "/authors/OL10713935A", "source_records": ["amazon:1421708302"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-25T22:19:05.936019"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-25T22:19:05.936019"}}
+/type/author /authors/OL10714252A 1 2022-09-27T04:31:57.143709 {"type": {"key": "/type/author"}, "name": "Jin chang wei", "personal_name": "Jin chang wei", "key": "/authors/OL10714252A", "source_records": ["ia:lubinsunpiaoliuj0000unse_i0b1"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-27T04:31:57.143709"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-27T04:31:57.143709"}}
+/type/author /authors/OL10714308A 1 2022-09-27T05:08:14.216755 {"type": {"key": "/type/author"}, "name": "Robb Mulberger", "personal_name": "Robb Mulberger", "key": "/authors/OL10714308A", "source_records": ["ia:ultimatejobseeke0000mulb"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-27T05:08:14.216755"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-27T05:08:14.216755"}}
+/type/author /authors/OL10714341A 1 2022-09-27T05:19:21.743081 {"type": {"key": "/type/author"}, "name": "-shahaer Ben", "personal_name": "-shahaer Ben", "key": "/authors/OL10714341A", "source_records": ["ia:xingfuchaoyuewan0000unse"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-27T05:19:21.743081"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-27T05:19:21.743081"}}
+/type/author /authors/OL10714642A 1 2022-09-27T17:56:10.240851 {"type": {"key": "/type/author"}, "name": "Betty Neels", "key": "/authors/OL10714642A", "source_records": ["amazon:133500792X"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-27T17:56:10.240851"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-27T17:56:10.240851"}}
+/type/author /authors/OL10714812A 1 2022-09-28T05:40:04.485351 {"type": {"key": "/type/author"}, "name": "Josette Rivallain", "personal_name": "Josette Rivallain", "birth_date": "1945", "key": "/authors/OL10714812A", "source_records": ["ia:lestextilescolle0000riva"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-28T05:40:04.485351"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-28T05:40:04.485351"}}
+/type/author /authors/OL1071493A 2 2008-08-20T01:03:46.580536 {"name": "P. Jay Fetner", "personal_name": "P. Jay Fetner", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T01:03:46.580536"}, "key": "/authors/OL1071493A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL1071513A 2 2008-08-20T01:03:52.082673 {"name": "Tullio Valent", "personal_name": "Tullio Valent", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T01:03:52.082673"}, "key": "/authors/OL1071513A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10715176A 1 2022-09-29T04:11:47.071497 {"type": {"key": "/type/author"}, "name": "Eugene L Bryan PhD", "key": "/authors/OL10715176A", "source_records": ["amazon:1662800797"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-29T04:11:47.071497"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-29T04:11:47.071497"}}
+/type/author /authors/OL10715211A 1 2022-09-29T04:22:03.327312 {"type": {"key": "/type/author"}, "name": "BETTINA; BLANCH TYROLLER", "key": "/authors/OL10715211A", "source_records": ["amazon:8483466775"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-29T04:22:03.327312"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-29T04:22:03.327312"}}
+/type/author /authors/OL10715729A 1 2022-09-30T06:07:00.109161 {"type": {"key": "/type/author"}, "name": "Garrett Unclebach", "key": "/authors/OL10715729A", "source_records": ["amazon:1977251455"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-09-30T06:07:00.109161"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-30T06:07:00.109161"}}
+/type/author /authors/OL1071595A 1 2008-04-01T03:28:50.625462 {"name": "Caldwell, John H.", "personal_name": "Caldwell, John H.", "last_modified": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "key": "/authors/OL1071595A", "birth_date": "1928", "type": {"key": "/type/author"}, "revision": 1}
+/type/author /authors/OL10716127A 1 2022-10-02T05:17:28.066260 {"type": {"key": "/type/author"}, "name": "Aleksandr Efremovich She\u012dkin", "personal_name": "Aleksandr Efremovich She\u012dkin", "key": "/authors/OL10716127A", "source_records": ["ia:CAT10736271"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-02T05:17:28.066260"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-02T05:17:28.066260"}}
+/type/author /authors/OL10716424A 1 2022-10-03T23:57:44.305178 {"type": {"key": "/type/author"}, "name": "Dennis Coon; John Mitterer; Tanya Martini", "key": "/authors/OL10716424A", "source_records": ["amazon:1337565733"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-03T23:57:44.305178"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-03T23:57:44.305178"}}
+/type/author /authors/OL10716512A 2 2022-10-07T17:46:11.288287 {"type": {"key": "/type/author"}, "name": "Vincenzo Benestante", "key": "/authors/OL10716512A", "source_records": ["amazon:9123926031"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2022-10-04T08:15:23.859146"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-07T17:46:11.288287"}}
+/type/author /authors/OL10716755A 1 2022-10-05T06:03:37.795977 {"type": {"key": "/type/author"}, "name": "Cho Sun-geun", "key": "/authors/OL10716755A", "source_records": ["amazon:8927427130"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-05T06:03:37.795977"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-05T06:03:37.795977"}}
+/type/author /authors/OL10716776A 1 2022-10-05T06:15:37.471315 {"type": {"key": "/type/author"}, "name": "Yukon Territory. Department of Tourism & Information", "key": "/authors/OL10716776A", "source_records": ["ia:adventureyukonyu00yuko_0"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-05T06:15:37.471315"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-05T06:15:37.471315"}}
+/type/author /authors/OL10716818A 1 2022-10-05T08:18:30.130748 {"type": {"key": "/type/author"}, "name": "Francisco Javier Pastor Vita", "key": "/authors/OL10716818A", "source_records": ["amazon:8430983015"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-05T08:18:30.130748"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-05T08:18:30.130748"}}
+/type/author /authors/OL10717383A 1 2022-10-07T06:08:32.743908 {"type": {"key": "/type/author"}, "name": "Jianping Xue", "personal_name": "Jianping Xue", "birth_date": "1957", "key": "/authors/OL10717383A", "source_records": ["ia:35haomizidongtia0000unse"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-07T06:08:32.743908"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-07T06:08:32.743908"}}
+/type/author /authors/OL1071900A 2 2008-08-20T01:06:46.309154 {"name": "Catherine R. Harland", "personal_name": "Catherine R. Harland", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T01:06:46.309154"}, "key": "/authors/OL1071900A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL1071941A 2 2008-08-20T01:06:59.140751 {"name": "Reinhold Friedrich Hille", "personal_name": "Reinhold Friedrich Hille", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T01:06:59.140751"}, "key": "/authors/OL1071941A", "birth_date": "1938", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10720014A 1 2022-10-14T05:18:28.958390 {"type": {"key": "/type/author"}, "name": "Yunfeng Kong", "personal_name": "Yunfeng Kong", "key": "/authors/OL10720014A", "source_records": ["ia:wenmingguguodexi0000unse"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-14T05:18:28.958390"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-14T05:18:28.958390"}}
+/type/author /authors/OL10720061A 1 2022-10-14T05:26:33.029668 {"type": {"key": "/type/author"}, "name": "Gustavo E. Jamut", "personal_name": "Gustavo E. Jamut", "key": "/authors/OL10720061A", "source_records": ["ia:365oracionesdepo0000jamu"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-14T05:26:33.029668"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-14T05:26:33.029668"}}
+/type/author /authors/OL1072020A 2 2008-08-20T01:07:29.875856 {"name": "Joseph G. Kozlowski", "personal_name": "Joseph G. Kozlowski", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T01:07:29.875856"}, "key": "/authors/OL1072020A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10720571A 1 2022-10-15T06:09:45.699189 {"type": {"key": "/type/author"}, "name": "Xi en", "personal_name": "Xi en", "key": "/authors/OL10720571A", "source_records": ["ia:meilinurendongde0000unse"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-15T06:09:45.699189"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-15T06:09:45.699189"}}
+/type/author /authors/OL10720733A 1 2022-10-15T13:34:15.610584 {"type": {"key": "/type/author"}, "name": "Guiseppe Cristiano", "key": "/authors/OL10720733A", "source_records": ["amazon:0500286906"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-15T13:34:15.610584"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-15T13:34:15.610584"}}
+/type/author /authors/OL10720856A 1 2022-10-16T04:19:58.673726 {"type": {"key": "/type/author"}, "name": "M E Rodman", "key": "/authors/OL10720856A", "source_records": ["amazon:1913387615"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-16T04:19:58.673726"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-16T04:19:58.673726"}}
+/type/author /authors/OL10721173A 1 2022-10-16T21:26:26.891856 {"type": {"key": "/type/author"}, "name": "2012 editor: To\u00cc\u201ekyo\u00cc\u201e : Hakusuisha", "key": "/authors/OL10721173A", "source_records": ["amazon:4560082162"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-16T21:26:26.891856"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-16T21:26:26.891856"}}
+/type/author /authors/OL10721249A 1 2022-10-17T01:55:18.401900 {"type": {"key": "/type/author"}, "name": "Drew Westen", "key": "/authors/OL10721249A", "source_records": ["bwb:9780471322016"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T01:55:18.401900"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T01:55:18.401900"}}
+/type/author /authors/OL10721280A 1 2022-10-17T02:09:05.126721 {"type": {"key": "/type/author"}, "name": "Augusta National Golf Club Staff", "key": "/authors/OL10721280A", "source_records": ["bwb:9780471690108"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T02:09:05.126721"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T02:09:05.126721"}}
+/type/author /authors/OL10721674A 1 2022-10-17T05:11:53.194439 {"type": {"key": "/type/author"}, "name": "Clay Blair", "key": "/authors/OL10721674A", "source_records": ["bwb:9780708817513"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T05:11:53.194439"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T05:11:53.194439"}}
+/type/author /authors/OL10721813A 1 2022-10-17T05:24:13.183142 {"type": {"key": "/type/author"}, "name": "Kirsten Dahlen", "key": "/authors/OL10721813A", "source_records": ["bwb:9781435712737"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T05:24:13.183142"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T05:24:13.183142"}}
+/type/author /authors/OL1072197A 5 2020-09-27T03:47:58.100883 {"personal_name": "Bette Davis", "last_modified": {"type": "/type/datetime", "value": "2020-09-27T03:47:58.100883"}, "latest_revision": 5, "key": "/authors/OL1072197A", "remote_ids": {"viaf": "73883840", "wikidata": "Q71206", "isni": "0000000121394262"}, "name": "Bette Davis", "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "death_date": "1989", "birth_date": "1908", "type": {"key": "/type/author"}, "revision": 5}
+/type/author /authors/OL10722821A 1 2022-10-17T05:41:34.329097 {"type": {"key": "/type/author"}, "name": "James W. Goodfellow", "key": "/authors/OL10722821A", "source_records": ["bwb:9780442235871"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T05:41:34.329097"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T05:41:34.329097"}}
+/type/author /authors/OL10722842A 1 2022-10-17T05:42:38.047225 {"type": {"key": "/type/author"}, "name": "Michael Capella", "key": "/authors/OL10722842A", "source_records": ["bwb:9780471819103"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T05:42:38.047225"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T05:42:38.047225"}}
+/type/author /authors/OL1072307A 2 2008-08-20T01:10:36.914923 {"name": "William G. Mulligan", "personal_name": "William G. Mulligan", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T01:10:36.914923"}, "key": "/authors/OL1072307A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10723196A 1 2022-10-17T05:57:51.062684 {"type": {"key": "/type/author"}, "name": "Manuel Marqu\u00e9s Alfocea", "key": "/authors/OL10723196A", "source_records": ["bwb:9781409246732"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T05:57:51.062684"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T05:57:51.062684"}}
+/type/author /authors/OL10723229A 1 2022-10-17T05:58:43.957615 {"type": {"key": "/type/author"}, "name": "Vanesa Del R\u00edo R\u00edos", "key": "/authors/OL10723229A", "source_records": ["bwb:9781409245728"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T05:58:43.957615"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T05:58:43.957615"}}
+/type/author /authors/OL10723896A 1 2022-10-17T06:30:37.232860 {"type": {"key": "/type/author"}, "name": "Michael Gemballa", "key": "/authors/OL10723896A", "source_records": ["bwb:9781435710887"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T06:30:37.232860"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T06:30:37.232860"}}
+/type/author /authors/OL10724108A 1 2022-10-17T06:37:14.011912 {"type": {"key": "/type/author"}, "name": "Sandrine Colas", "key": "/authors/OL10724108A", "source_records": ["bwb:9781409229995"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T06:37:14.011912"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T06:37:14.011912"}}
+/type/author /authors/OL10724181A 1 2022-10-17T06:40:37.399184 {"type": {"key": "/type/author"}, "name": "Ana Maria Agudo", "key": "/authors/OL10724181A", "source_records": ["bwb:9781409245940"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T06:40:37.399184"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T06:40:37.399184"}}
+/type/author /authors/OL10724375A 1 2022-10-17T06:44:57.291342 {"type": {"key": "/type/author"}, "name": "James Tarpinian", "key": "/authors/OL10724375A", "source_records": ["bwb:9780557064205"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T06:44:57.291342"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T06:44:57.291342"}}
+/type/author /authors/OL10724392A 1 2022-10-17T06:45:14.377781 {"type": {"key": "/type/author"}, "name": "Jennifer Hampton", "key": "/authors/OL10724392A", "source_records": ["bwb:9780557045044"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T06:45:14.377781"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T06:45:14.377781"}}
+/type/author /authors/OL10724784A 1 2022-10-17T07:04:51.791801 {"type": {"key": "/type/author"}, "name": "Bruno Cotini", "key": "/authors/OL10724784A", "source_records": ["bwb:9781847538604"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T07:04:51.791801"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T07:04:51.791801"}}
+/type/author /authors/OL10724881A 1 2022-10-17T07:06:52.814838 {"type": {"key": "/type/author"}, "name": "James E. Padgett (recorder)", "key": "/authors/OL10724881A", "source_records": ["bwb:9781435729001"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T07:06:52.814838"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T07:06:52.814838"}}
+/type/author /authors/OL10725385A 1 2022-10-17T07:19:43.554275 {"type": {"key": "/type/author"}, "name": "Ram\u00f3n P\u00e9rez Cabrera. Ar\u00edstides", "key": "/authors/OL10725385A", "source_records": ["bwb:9780557086733"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T07:19:43.554275"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T07:19:43.554275"}}
+/type/author /authors/OL10725609A 1 2022-10-17T07:34:11.864090 {"type": {"key": "/type/author"}, "name": "Bernd Gems", "key": "/authors/OL10725609A", "source_records": ["bwb:9781847530929"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T07:34:11.864090"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T07:34:11.864090"}}
+/type/author /authors/OL10725620A 1 2022-10-17T07:34:24.302925 {"type": {"key": "/type/author"}, "name": "Robert Kennon", "key": "/authors/OL10725620A", "source_records": ["bwb:9781435707320"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T07:34:24.302925"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T07:34:24.302925"}}
+/type/author /authors/OL10725776A 1 2022-10-17T07:38:55.039629 {"type": {"key": "/type/author"}, "name": "Gennaro Olona", "key": "/authors/OL10725776A", "source_records": ["bwb:9781409216346"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T07:38:55.039629"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T07:38:55.039629"}}
+/type/author /authors/OL10725860A 1 2022-10-17T07:40:43.929658 {"type": {"key": "/type/author"}, "name": "Olalla Mart\u00ednez Ferrer", "key": "/authors/OL10725860A", "source_records": ["bwb:9781409243021"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T07:40:43.929658"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T07:40:43.929658"}}
+/type/author /authors/OL1072595A 1 2008-04-01T03:28:50.625462 {"name": "Buchanan, William", "personal_name": "Buchanan, William", "last_modified": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "key": "/authors/OL1072595A", "birth_date": "1918", "type": {"key": "/type/author"}, "revision": 1}
+/type/author /authors/OL10725969A 1 2022-10-17T07:43:59.559521 {"type": {"key": "/type/author"}, "name": "DooLee Doo", "key": "/authors/OL10725969A", "source_records": ["bwb:9780557046928"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T07:43:59.559521"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T07:43:59.559521"}}
+/type/author /authors/OL107261A 2 2008-09-09T04:25:31.190731 {"name": "S\u0301ivasim\u0323ha Saroja", "personal_name": "S\u0301ivasim\u0323ha Saroja", "last_modified": {"type": "/type/datetime", "value": "2008-09-09T04:25:31.190731"}, "key": "/authors/OL107261A", "birth_date": "1917", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10726304A 1 2022-10-17T07:52:34.546406 {"type": {"key": "/type/author"}, "name": "Howard Chapman", "key": "/authors/OL10726304A", "source_records": ["bwb:9780442209261"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T07:52:34.546406"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T07:52:34.546406"}}
+/type/author /authors/OL10726468A 1 2022-10-17T08:05:41.697263 {"type": {"key": "/type/author"}, "name": "Mark Carvalho", "key": "/authors/OL10726468A", "source_records": ["bwb:9781435716544"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T08:05:41.697263"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T08:05:41.697263"}}
+/type/author /authors/OL10726561A 1 2022-10-17T08:09:08.078963 {"type": {"key": "/type/author"}, "name": "P. A. Shaw", "key": "/authors/OL10726561A", "source_records": ["bwb:9780470743683"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T08:09:08.078963"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T08:09:08.078963"}}
+/type/author /authors/OL10726777A 1 2022-10-17T08:15:16.530176 {"type": {"key": "/type/author"}, "name": "Stefano Cunego", "key": "/authors/OL10726777A", "source_records": ["bwb:9781409260660"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T08:15:16.530176"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T08:15:16.530176"}}
+/type/author /authors/OL10726780A 1 2022-10-17T08:15:20.619915 {"type": {"key": "/type/author"}, "name": "Cherese Schoombee", "key": "/authors/OL10726780A", "source_records": ["bwb:9781847994356"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T08:15:20.619915"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T08:15:20.619915"}}
+/type/author /authors/OL10726894A 1 2022-10-17T08:18:32.960083 {"type": {"key": "/type/author"}, "name": "Kirk & Cara Sheppard", "key": "/authors/OL10726894A", "source_records": ["bwb:9780557074921"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T08:18:32.960083"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T08:18:32.960083"}}
+/type/author /authors/OL10727171A 1 2022-10-17T08:36:37.917577 {"type": {"key": "/type/author"}, "name": "E. T. FLOUT", "key": "/authors/OL10727171A", "source_records": ["bwb:9781409213291"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T08:36:37.917577"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T08:36:37.917577"}}
+/type/author /authors/OL10727336A 1 2022-10-17T08:41:14.413159 {"type": {"key": "/type/author"}, "name": "Aprille Janes", "key": "/authors/OL10727336A", "source_records": ["bwb:9781435719774"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T08:41:14.413159"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T08:41:14.413159"}}
+/type/author /authors/OL10727608A 1 2022-10-17T08:49:35.003716 {"type": {"key": "/type/author"}, "name": "kiko king", "key": "/authors/OL10727608A", "source_records": ["bwb:9780557070220"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T08:49:35.003716"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T08:49:35.003716"}}
+/type/author /authors/OL1072770A 2 2008-08-20T01:13:50.623365 {"name": "J. C. Stewart", "personal_name": "J. C. Stewart", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T01:13:50.623365"}, "key": "/authors/OL1072770A", "birth_date": "1949", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10727836A 1 2022-10-17T09:05:37.153993 {"type": {"key": "/type/author"}, "name": "Uncommon Market", "key": "/authors/OL10727836A", "source_records": ["bwb:9781435727687"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T09:05:37.153993"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T09:05:37.153993"}}
+/type/author /authors/OL10727952A 1 2022-10-17T09:09:10.019012 {"type": {"key": "/type/author"}, "name": "Fabrice Decooninck", "key": "/authors/OL10727952A", "source_records": ["bwb:9781409236238"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T09:09:10.019012"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T09:09:10.019012"}}
+/type/author /authors/OL10728334A 1 2022-10-17T09:22:06.345425 {"type": {"key": "/type/author"}, "name": "Gunsa Werner Institute Staff", "key": "/authors/OL10728334A", "source_records": ["bwb:9783866493117"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T09:22:06.345425"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T09:22:06.345425"}}
+/type/author /authors/OL10728684A 1 2022-10-17T09:28:26.900722 {"type": {"key": "/type/author"}, "name": "Jay Lowndes", "key": "/authors/OL10728684A", "source_records": ["bwb:9780557324484"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T09:28:26.900722"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T09:28:26.900722"}}
+/type/author /authors/OL10728939A 1 2022-10-17T09:33:35.481978 {"type": {"key": "/type/author"}, "name": "Jalil SAAB H.", "key": "/authors/OL10728939A", "source_records": ["bwb:9780557523245"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T09:33:35.481978"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T09:33:35.481978"}}
+/type/author /authors/OL10729489A 1 2022-10-17T09:46:26.838357 {"type": {"key": "/type/author"}, "name": "GeniusPort Team", "key": "/authors/OL10729489A", "source_records": ["bwb:9780557865147"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T09:46:26.838357"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T09:46:26.838357"}}
+/type/author /authors/OL10729707A 1 2022-10-17T09:56:30.481653 {"type": {"key": "/type/author"}, "name": "Mark W. Christy", "key": "/authors/OL10729707A", "source_records": ["bwb:9781105279294"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T09:56:30.481653"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T09:56:30.481653"}}
+/type/author /authors/OL10729842A 1 2022-10-17T09:59:44.312929 {"type": {"key": "/type/author"}, "name": "John Torelli", "key": "/authors/OL10729842A", "source_records": ["bwb:9780557100781"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T09:59:44.312929"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T09:59:44.312929"}}
+/type/author /authors/OL10730312A 1 2022-10-17T10:12:10.341424 {"type": {"key": "/type/author"}, "name": "Rob O'Hara", "key": "/authors/OL10730312A", "source_records": ["bwb:9780557401512"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T10:12:10.341424"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T10:12:10.341424"}}
+/type/author /authors/OL1073135A 3 2011-01-05T05:02:17.216998 {"name": "David E. Corbin", "personal_name": "David E. Corbin", "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "photos": [6677283], "last_modified": {"type": "/type/datetime", "value": "2011-01-05T05:02:17.216998"}, "latest_revision": 3, "key": "/authors/OL1073135A", "type": {"key": "/type/author"}, "revision": 3}
+/type/author /authors/OL10731801A 1 2022-10-17T10:53:15.268716 {"type": {"key": "/type/author"}, "name": "Brian Angevine", "key": "/authors/OL10731801A", "source_records": ["bwb:9780557733323"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T10:53:15.268716"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T10:53:15.268716"}}
+/type/author /authors/OL1073181A 2 2008-08-20T01:17:02.736785 {"name": "William G. Rapp", "personal_name": "William G. Rapp", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T01:17:02.736785"}, "key": "/authors/OL1073181A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10732193A 1 2022-10-17T11:08:09.111318 {"type": {"key": "/type/author"}, "name": "Seamus McCormack", "key": "/authors/OL10732193A", "source_records": ["bwb:9781907020162"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T11:08:09.111318"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T11:08:09.111318"}}
+/type/author /authors/OL10732200A 1 2022-10-17T11:08:19.286863 {"type": {"key": "/type/author"}, "name": "pascal BAZIN", "key": "/authors/OL10732200A", "source_records": ["bwb:9781409275114"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T11:08:19.286863"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T11:08:19.286863"}}
+/type/author /authors/OL10732442A 1 2022-10-17T11:14:35.617832 {"type": {"key": "/type/author"}, "name": "jack hardy", "key": "/authors/OL10732442A", "source_records": ["bwb:9780557315383"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T11:14:35.617832"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T11:14:35.617832"}}
+/type/author /authors/OL10732453A 1 2022-10-17T11:14:58.824689 {"type": {"key": "/type/author"}, "name": "Phiem Nguyen", "key": "/authors/OL10732453A", "source_records": ["bwb:9780557377800"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T11:14:58.824689"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T11:14:58.824689"}}
+/type/author /authors/OL10733063A 1 2022-10-17T11:33:39.781362 {"type": {"key": "/type/author"}, "name": "In\u00e8s Charles-Lavauzelle", "key": "/authors/OL10733063A", "source_records": ["bwb:9781446717929"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T11:33:39.781362"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T11:33:39.781362"}}
+/type/author /authors/OL10733105A 1 2022-10-17T11:34:52.345095 {"type": {"key": "/type/author"}, "name": "7Wonderlicious", "key": "/authors/OL10733105A", "source_records": ["bwb:9781446695678"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T11:34:52.345095"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T11:34:52.345095"}}
+/type/author /authors/OL10733282A 1 2022-10-17T11:42:36.348348 {"type": {"key": "/type/author"}, "name": "James Mickey Girvan", "key": "/authors/OL10733282A", "source_records": ["bwb:9781257860029"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T11:42:36.348348"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T11:42:36.348348"}}
+/type/author /authors/OL10733283A 1 2022-10-17T11:42:40.567816 {"type": {"key": "/type/author"}, "name": "Paul Avon", "key": "/authors/OL10733283A", "source_records": ["bwb:9781471622502"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T11:42:40.567816"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T11:42:40.567816"}}
+/type/author /authors/OL10733497A 1 2022-10-17T11:48:54.363907 {"type": {"key": "/type/author"}, "name": "Revered Sylvain Chamberlain-Nyudo", "key": "/authors/OL10733497A", "source_records": ["bwb:9780557122981"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T11:48:54.363907"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T11:48:54.363907"}}
+/type/author /authors/OL10733572A 1 2022-10-17T11:50:53.582238 {"type": {"key": "/type/author"}, "name": "Von Meck", "key": "/authors/OL10733572A", "source_records": ["bwb:9780624046585"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T11:50:53.582238"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T11:50:53.582238"}}
+/type/author /authors/OL10733772A 1 2022-10-17T11:56:02.229200 {"type": {"key": "/type/author"}, "name": "Tomas Deckert", "key": "/authors/OL10733772A", "source_records": ["bwb:9780557511983"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T11:56:02.229200"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T11:56:02.229200"}}
+/type/author /authors/OL10733889A 1 2022-10-17T11:59:16.067073 {"type": {"key": "/type/author"}, "name": "Lenhardt Stevens", "key": "/authors/OL10733889A", "source_records": ["bwb:9780557618255"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T11:59:16.067073"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T11:59:16.067073"}}
+/type/author /authors/OL10734037A 1 2022-10-17T12:03:38.853201 {"type": {"key": "/type/author"}, "name": "Giovanni Alestra", "key": "/authors/OL10734037A", "source_records": ["bwb:9781446637197"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T12:03:38.853201"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T12:03:38.853201"}}
+/type/author /authors/OL10735246A 1 2022-10-17T12:55:49.835631 {"type": {"key": "/type/author"}, "name": "Carlos Emilio Castro Baz\u00e1n", "key": "/authors/OL10735246A", "source_records": ["bwb:9780557921195"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T12:55:49.835631"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T12:55:49.835631"}}
+/type/author /authors/OL10735387A 1 2022-10-17T13:00:32.491694 {"type": {"key": "/type/author"}, "name": "Fredrik Lange", "key": "/authors/OL10735387A", "source_records": ["bwb:9781119958710"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T13:00:32.491694"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T13:00:32.491694"}}
+/type/author /authors/OL10735441A 1 2022-10-17T13:04:49.177651 {"type": {"key": "/type/author"}, "name": "Joanne Galliher", "key": "/authors/OL10735441A", "source_records": ["bwb:9781447785057"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T13:04:49.177651"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T13:04:49.177651"}}
+/type/author /authors/OL1073550A 2 2008-08-20T01:19:19.239414 {"name": "Howard G. Garner", "personal_name": "Howard G. Garner", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T01:19:19.239414"}, "key": "/authors/OL1073550A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10735652A 1 2022-10-17T13:11:27.239436 {"type": {"key": "/type/author"}, "name": "John Kinstler", "key": "/authors/OL10735652A", "source_records": ["bwb:9780557137541"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T13:11:27.239436"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T13:11:27.239436"}}
+/type/author /authors/OL10735894A 1 2022-10-17T13:18:43.415001 {"type": {"key": "/type/author"}, "name": "Laura Emanuel", "key": "/authors/OL10735894A", "source_records": ["bwb:9781445759647"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T13:18:43.415001"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T13:18:43.415001"}}
+/type/author /authors/OL10736012A 1 2022-10-17T13:22:31.867441 {"type": {"key": "/type/author"}, "name": "Marcello De Filippis", "key": "/authors/OL10736012A", "source_records": ["bwb:9780557633456"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T13:22:31.867441"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T13:22:31.867441"}}
+/type/author /authors/OL10736029A 1 2022-10-17T13:22:51.041134 {"type": {"key": "/type/author"}, "name": "Rosemary Staggs", "key": "/authors/OL10736029A", "source_records": ["bwb:9780557409662"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T13:22:51.041134"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T13:22:51.041134"}}
+/type/author /authors/OL10736300A 1 2022-10-17T13:32:49.673328 {"type": {"key": "/type/author"}, "name": "Help me! Travel Guides", "key": "/authors/OL10736300A", "source_records": ["bwb:9780557824908"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T13:32:49.673328"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T13:32:49.673328"}}
+/type/author /authors/OL1073632A 2 2008-08-20T01:19:53.097679 {"name": "William S. Newman", "personal_name": "William S. Newman", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T01:19:53.097679"}, "key": "/authors/OL1073632A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL1073656A 2 2008-08-20T01:19:58.114993 {"name": "Robert W. Christie", "personal_name": "Robert W. Christie", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T01:19:58.114993"}, "key": "/authors/OL1073656A", "birth_date": "1923", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10736801A 1 2022-10-17T13:52:00.341246 {"type": {"key": "/type/author"}, "name": "Pedro HERN\u00c1N PORTILLA SALAS", "key": "/authors/OL10736801A", "source_records": ["bwb:9780557328130"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T13:52:00.341246"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T13:52:00.341246"}}
+/type/author /authors/OL1073691A 2 2008-08-20T01:20:30.147934 {"name": "Jocelyn Davey", "personal_name": "Jocelyn Davey", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T01:20:30.147934"}, "key": "/authors/OL1073691A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10737195A 1 2022-10-17T14:07:22.124864 {"type": {"key": "/type/author"}, "name": "Regino Martin", "key": "/authors/OL10737195A", "source_records": ["bwb:9781446664087"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T14:07:22.124864"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T14:07:22.124864"}}
+/type/author /authors/OL10737665A 1 2022-10-17T14:34:15.704828 {"type": {"key": "/type/author"}, "name": "J. H. Zhao", "key": "/authors/OL10737665A", "source_records": ["bwb:9781280556258"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T14:34:15.704828"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T14:34:15.704828"}}
+/type/author /authors/OL10737958A 1 2022-10-17T14:50:58.971444 {"type": {"key": "/type/author"}, "name": "H. Y. Erbil", "key": "/authors/OL10737958A", "source_records": ["bwb:9781281214690"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T14:50:58.971444"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T14:50:58.971444"}}
+/type/author /authors/OL10738226A 1 2022-10-17T15:15:57.656011 {"type": {"key": "/type/author"}, "name": "Teri Reuter", "key": "/authors/OL10738226A", "source_records": ["bwb:9781452213255"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T15:15:57.656011"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T15:15:57.656011"}}
+/type/author /authors/OL10738306A 1 2022-10-17T15:18:26.618843 {"type": {"key": "/type/author"}, "name": "A. M. Martincich", "key": "/authors/OL10738306A", "source_records": ["bwb:9781483404608"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T15:18:26.618843"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T15:18:26.618843"}}
+/type/author /authors/OL10738307A 1 2022-10-17T15:18:27.097254 {"type": {"key": "/type/author"}, "name": "Rebecca Klenk", "key": "/authors/OL10738307A", "source_records": ["bwb:9781283163385"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T15:18:27.097254"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T15:18:27.097254"}}
+/type/author /authors/OL10738521A 1 2022-10-17T15:29:30.795850 {"type": {"key": "/type/author"}, "name": "L. Eo Nollet", "key": "/authors/OL10738521A", "source_records": ["bwb:9781282686168"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T15:29:30.795850"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T15:29:30.795850"}}
+/type/author /authors/OL1073852A 2 2008-08-20T01:21:33.226354 {"name": "Josef Janc\u030ca", "personal_name": "Josef Janc\u030ca", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T01:21:33.226354"}, "key": "/authors/OL1073852A", "birth_date": "1944", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10738600A 1 2022-10-17T15:36:52.791021 {"type": {"key": "/type/author"}, "name": "Carlen LaVigne", "key": "/authors/OL10738600A", "source_records": ["bwb:9781283599467"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T15:36:52.791021"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T15:36:52.791021"}}
+/type/author /authors/OL10738792A 1 2022-10-17T15:57:03.750852 {"type": {"key": "/type/author"}, "name": "Eric C. Geary", "key": "/authors/OL10738792A", "source_records": ["bwb:9781105310515"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T15:57:03.750852"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T15:57:03.750852"}}
+/type/author /authors/OL10739091A 1 2022-10-17T16:13:23.934941 {"type": {"key": "/type/author"}, "name": "Steven Sinofsky", "key": "/authors/OL10739091A", "source_records": ["bwb:9781282384897"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T16:13:23.934941"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T16:13:23.934941"}}
+/type/author /authors/OL10739107A 1 2022-10-17T16:14:50.530454 {"type": {"key": "/type/author"}, "name": "Leonard Hummel", "key": "/authors/OL10739107A", "source_records": ["bwb:9781282713178"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T16:14:50.530454"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T16:14:50.530454"}}
+/type/author /authors/OL10739197A 1 2022-10-17T16:21:48.914788 {"type": {"key": "/type/author"}, "name": "Vicki Briault Manus", "key": "/authors/OL10739197A", "source_records": ["bwb:9781283599566"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T16:21:48.914788"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T16:21:48.914788"}}
+/type/author /authors/OL10739536A 1 2022-10-17T16:48:34.124002 {"type": {"key": "/type/author"}, "name": "Georg Eβer", "key": "/authors/OL10739536A", "source_records": ["bwb:9783433030295"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T16:48:34.124002"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T16:48:34.124002"}}
+/type/author /authors/OL1073978A 2 2008-08-20T01:22:32.570093 {"name": "Rose Oliver", "personal_name": "Rose Oliver", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T01:22:32.570093"}, "key": "/authors/OL1073978A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10739921A 1 2022-10-17T17:16:10.687274 {"type": {"key": "/type/author"}, "name": "Sockloff", "key": "/authors/OL10739921A", "source_records": ["bwb:9780471325277"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T17:16:10.687274"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T17:16:10.687274"}}
+/type/author /authors/OL10740231A 1 2022-10-17T17:36:10.731903 {"type": {"key": "/type/author"}, "name": "F. Barker Scott", "key": "/authors/OL10740231A", "source_records": ["bwb:9781280253454"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T17:36:10.731903"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T17:36:10.731903"}}
+/type/author /authors/OL10740510A 1 2022-10-17T17:53:28.414640 {"type": {"key": "/type/author"}, "name": "Pietro MacRa\u00ac", "key": "/authors/OL10740510A", "source_records": ["bwb:9781470903350"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T17:53:28.414640"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T17:53:28.414640"}}
+/type/author /authors/OL10740666A 1 2022-10-17T18:13:24.102744 {"type": {"key": "/type/author"}, "name": "Jean-Yves Buffi\u00bfre", "key": "/authors/OL10740666A", "source_records": ["bwb:9781118827086"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T18:13:24.102744"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T18:13:24.102744"}}
+/type/author /authors/OL10740751A 1 2022-10-17T18:18:43.157337 {"type": {"key": "/type/author"}, "name": "R. Goldscheider", "key": "/authors/OL10740751A", "source_records": ["bwb:9781280362897"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T18:18:43.157337"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T18:18:43.157337"}}
+/type/author /authors/OL10740839A 1 2022-10-17T18:26:59.951977 {"type": {"key": "/type/author"}, "name": "M. Mesilaakso", "key": "/authors/OL10740839A", "source_records": ["bwb:9781280287749"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T18:26:59.951977"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T18:26:59.951977"}}
+/type/author /authors/OL10740942A 1 2022-10-17T18:34:50.169175 {"type": {"key": "/type/author"}, "name": "Ms Roberson", "key": "/authors/OL10740942A", "source_records": ["bwb:9781483404585"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T18:34:50.169175"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T18:34:50.169175"}}
+/type/author /authors/OL10741609A 1 2022-10-17T19:30:48.123872 {"type": {"key": "/type/author"}, "name": "Giorgio Paganucci", "key": "/authors/OL10741609A", "source_records": ["bwb:9781291027303"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T19:30:48.123872"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T19:30:48.123872"}}
+/type/author /authors/OL10741656A 1 2022-10-17T19:35:37.413819 {"type": {"key": "/type/author"}, "name": "J. Y. Liew", "key": "/authors/OL10741656A", "source_records": ["bwb:9780471152149"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T19:35:37.413819"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T19:35:37.413819"}}
+/type/author /authors/OL10741728A 1 2022-10-17T19:48:37.310382 {"type": {"key": "/type/author"}, "name": "Patti Matterson", "key": "/authors/OL10741728A", "source_records": ["bwb:9781300044413"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T19:48:37.310382"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T19:48:37.310382"}}
+/type/author /authors/OL10742090A 1 2022-10-17T20:12:14.427844 {"type": {"key": "/type/author"}, "name": "A. K. Murshed", "key": "/authors/OL10742090A", "source_records": ["bwb:9781299188365"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T20:12:14.427844"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T20:12:14.427844"}}
+/type/author /authors/OL10742190A 1 2022-10-17T20:19:34.159168 {"type": {"key": "/type/author"}, "name": "Bruce E. Mapes", "key": "/authors/OL10742190A", "source_records": ["bwb:9780471161974"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T20:19:34.159168"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T20:19:34.159168"}}
+/type/author /authors/OL10742533A 1 2022-10-17T20:39:21.309821 {"type": {"key": "/type/author"}, "name": "Jennifer Hallak", "key": "/authors/OL10742533A", "source_records": ["bwb:9781304757494"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T20:39:21.309821"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T20:39:21.309821"}}
+/type/author /authors/OL10742995A 1 2022-10-17T20:54:47.842330 {"type": {"key": "/type/author"}, "name": "A. A. Schilt", "key": "/authors/OL10742995A", "source_records": ["bwb:9781322259826"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T20:54:47.842330"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T20:54:47.842330"}}
+/type/author /authors/OL10743059A 1 2022-10-17T20:58:00.423433 {"type": {"key": "/type/author"}, "name": "D. K\u00fcchemann", "key": "/authors/OL10743059A", "source_records": ["bwb:9781483149424"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T20:58:00.423433"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T20:58:00.423433"}}
+/type/author /authors/OL10743432A 1 2022-10-17T21:10:27.223436 {"type": {"key": "/type/author"}, "name": "Jimmy Boom Semtex", "key": "/authors/OL10743432A", "source_records": ["bwb:9781291753554"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T21:10:27.223436"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T21:10:27.223436"}}
+/type/author /authors/OL10743765A 1 2022-10-17T21:21:43.830575 {"type": {"key": "/type/author"}, "name": "National Epis Historians and Archivists", "key": "/authors/OL10743765A", "source_records": ["bwb:9781329111134"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T21:21:43.830575"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T21:21:43.830575"}}
+/type/author /authors/OL10743850A 1 2022-10-17T21:24:52.105760 {"type": {"key": "/type/author"}, "name": "Rafael Art a Javier", "key": "/authors/OL10743850A", "source_records": ["bwb:9781322305707"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T21:24:52.105760"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T21:24:52.105760"}}
+/type/author /authors/OL10743882A 1 2022-10-17T21:27:42.594595 {"type": {"key": "/type/author"}, "name": "Adelaide R. Doyle-Nichols", "key": "/authors/OL10743882A", "source_records": ["bwb:9781322420882"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T21:27:42.594595"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T21:27:42.594595"}}
+/type/author /authors/OL1074430A 4 2020-09-30T19:20:29.809435 {"personal_name": "George C. Kenney", "last_modified": {"type": "/type/datetime", "value": "2020-09-30T19:20:29.809435"}, "latest_revision": 4, "key": "/authors/OL1074430A", "remote_ids": {"viaf": "94917441", "wikidata": "Q9267262", "isni": "0000000082831545"}, "name": "George C. Kenney", "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "death_date": "1977", "birth_date": "1889", "type": {"key": "/type/author"}, "revision": 4}
+/type/author /authors/OL10745023A 1 2022-10-17T22:09:59.123495 {"type": {"key": "/type/author"}, "name": "Barbara Villa", "key": "/authors/OL10745023A", "source_records": ["bwb:9781291715590"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T22:09:59.123495"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T22:09:59.123495"}}
+/type/author /authors/OL10745579A 1 2022-10-17T22:31:51.772269 {"type": {"key": "/type/author"}, "name": "Mehdi Elmoukhliss", "key": "/authors/OL10745579A", "source_records": ["bwb:9781786300560"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T22:31:51.772269"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T22:31:51.772269"}}
+/type/author /authors/OL10746112A 1 2022-10-17T23:05:18.632308 {"type": {"key": "/type/author"}, "name": "Traduction Par Celine Pomes", "key": "/authors/OL10746112A", "source_records": ["bwb:9781312554467"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T23:05:18.632308"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T23:05:18.632308"}}
+/type/author /authors/OL10746320A 1 2022-10-17T23:20:53.314076 {"type": {"key": "/type/author"}, "name": "Marisha McAuliffe", "key": "/authors/OL10746320A", "source_records": ["bwb:9781329707238"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T23:20:53.314076"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T23:20:53.314076"}}
+/type/author /authors/OL10746342A 1 2022-10-17T23:21:46.076360 {"type": {"key": "/type/author"}, "name": "Ellen Glatstein", "key": "/authors/OL10746342A", "source_records": ["bwb:9781329980150"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T23:21:46.076360"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T23:21:46.076360"}}
+/type/author /authors/OL1074640A 3 2008-08-29T03:08:21.245047 {"name": "Diana Frank", "personal_name": "Diana Frank", "last_modified": {"type": "/type/datetime", "value": "2008-08-29T03:08:21.245047"}, "key": "/authors/OL1074640A", "birth_date": "1942", "type": {"key": "/type/author"}, "revision": 3}
+/type/author /authors/OL10746525A 1 2022-10-17T23:27:28.078990 {"type": {"key": "/type/author"}, "name": "MeCael Baez", "key": "/authors/OL10746525A", "source_records": ["bwb:9781304782397"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-17T23:27:28.078990"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T23:27:28.078990"}}
+/type/author /authors/OL10747387A 1 2022-10-18T00:03:17.554116 {"type": {"key": "/type/author"}, "name": "Blake Leland", "key": "/authors/OL10747387A", "source_records": ["bwb:9781304881267"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-18T00:03:17.554116"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T00:03:17.554116"}}
+/type/author /authors/OL10747394A 1 2022-10-18T00:03:27.461306 {"type": {"key": "/type/author"}, "name": "TC Powell", "key": "/authors/OL10747394A", "source_records": ["amazon:1541135474"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-18T00:03:27.461306"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T00:03:27.461306"}}
+/type/author /authors/OL10747668A 1 2022-10-18T00:19:36.737434 {"type": {"key": "/type/author"}, "name": "Katherine O'Neil", "key": "/authors/OL10747668A", "source_records": ["bwb:9781452251097"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-18T00:19:36.737434"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T00:19:36.737434"}}
+/type/author /authors/OL10747778A 1 2022-10-18T00:28:35.724573 {"type": {"key": "/type/author"}, "name": "Samuel Geathers", "key": "/authors/OL10747778A", "source_records": ["bwb:9781329726369"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-18T00:28:35.724573"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T00:28:35.724573"}}
+/type/author /authors/OL10748115A 1 2022-10-18T00:44:37.689759 {"type": {"key": "/type/author"}, "name": "Decool Patrick", "key": "/authors/OL10748115A", "source_records": ["bwb:9781326120665"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-18T00:44:37.689759"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T00:44:37.689759"}}
+/type/author /authors/OL10748190A 1 2022-10-18T00:46:44.742137 {"type": {"key": "/type/author"}, "name": "Casey Burch", "key": "/authors/OL10748190A", "source_records": ["bwb:9781312122826"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-18T00:46:44.742137"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T00:46:44.742137"}}
+/type/author /authors/OL10748427A 1 2022-10-18T00:59:10.126657 {"type": {"key": "/type/author"}, "name": "Sancista Brujo Luis", "key": "/authors/OL10748427A", "source_records": ["bwb:9781312970182"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-18T00:59:10.126657"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T00:59:10.126657"}}
+/type/author /authors/OL10748654A 1 2022-10-18T01:12:03.266284 {"type": {"key": "/type/author"}, "name": "Shelley Carter", "key": "/authors/OL10748654A", "source_records": ["bwb:9781387573974"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-18T01:12:03.266284"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T01:12:03.266284"}}
+/type/author /authors/OL10748661A 1 2022-10-18T01:12:08.753230 {"type": {"key": "/type/author"}, "name": "Benjamin Easterday", "key": "/authors/OL10748661A", "source_records": ["bwb:9781387717224"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-18T01:12:08.753230"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T01:12:08.753230"}}
+/type/author /authors/OL10748799A 1 2022-10-18T01:19:58.371612 {"type": {"key": "/type/author"}, "name": "Pa Tactical Training Center", "key": "/authors/OL10748799A", "source_records": ["bwb:9781312411760"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-18T01:19:58.371612"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T01:19:58.371612"}}
+/type/author /authors/OL10748851A 1 2022-10-18T01:22:10.136745 {"type": {"key": "/type/author"}, "name": "Jon A. Frederick", "key": "/authors/OL10748851A", "source_records": ["bwb:9781317623076"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-18T01:22:10.136745"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T01:22:10.136745"}}
+/type/author /authors/OL10748861A 1 2022-10-18T01:23:07.822123 {"type": {"key": "/type/author"}, "name": "Valentina Meloni", "key": "/authors/OL10748861A", "source_records": ["bwb:9781387262106"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-18T01:23:07.822123"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T01:23:07.822123"}}
+/type/author /authors/OL10749533A 1 2022-10-18T01:57:42.279061 {"type": {"key": "/type/author"}, "name": "Philippe Kerampran", "key": "/authors/OL10749533A", "source_records": ["bwb:9781326948344"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-18T01:57:42.279061"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T01:57:42.279061"}}
+/type/author /authors/OL10749654A 1 2022-10-18T02:03:11.891576 {"type": {"key": "/type/author"}, "name": "Eibon", "key": "/authors/OL10749654A", "source_records": ["bwb:9781329781283"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-18T02:03:11.891576"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T02:03:11.891576"}}
+/type/author /authors/OL10749870A 1 2022-10-18T02:16:23.433289 {"type": {"key": "/type/author"}, "name": "Patricia Jordan Rea", "key": "/authors/OL10749870A", "source_records": ["bwb:9781329975187"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-18T02:16:23.433289"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T02:16:23.433289"}}
+/type/author /authors/OL10749872A 1 2022-10-18T02:16:26.665350 {"type": {"key": "/type/author"}, "name": "Robert Macgowan", "key": "/authors/OL10749872A", "source_records": ["bwb:9781326619633"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-18T02:16:26.665350"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T02:16:26.665350"}}
+/type/author /authors/OL10749913A 1 2022-10-18T02:18:59.802309 {"type": {"key": "/type/author"}, "name": "November St Michael", "key": "/authors/OL10749913A", "source_records": ["bwb:9781365375095"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-18T02:18:59.802309"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T02:18:59.802309"}}
+/type/author /authors/OL10750443A 1 2022-10-18T02:46:29.251226 {"type": {"key": "/type/author"}, "name": "Darell E. McCloud", "key": "/authors/OL10750443A", "source_records": ["bwb:9780891182887"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-18T02:46:29.251226"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T02:46:29.251226"}}
+/type/author /authors/OL10750545A 1 2022-10-18T02:50:52.436032 {"type": {"key": "/type/author"}, "name": "Alex Freuman", "key": "/authors/OL10750545A", "source_records": ["bwb:9781387940127"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-18T02:50:52.436032"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T02:50:52.436032"}}
+/type/author /authors/OL10750584A 1 2022-10-18T02:53:29.098551 {"type": {"key": "/type/author"}, "name": "Emi Jean", "key": "/authors/OL10750584A", "source_records": ["bwb:9780359250509"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-18T02:53:29.098551"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T02:53:29.098551"}}
+/type/author /authors/OL10750872A 1 2022-10-18T03:07:26.802400 {"type": {"key": "/type/author"}, "name": "Y. Cleomili Harris", "key": "/authors/OL10750872A", "source_records": ["bwb:9781312053892"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-18T03:07:26.802400"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T03:07:26.802400"}}
+/type/author /authors/OL10751007A 1 2022-10-18T03:13:58.875656 {"type": {"key": "/type/author"}, "name": "Sukumar Chakraborty", "key": "/authors/OL10751007A", "source_records": ["bwb:9780891182566"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-18T03:13:58.875656"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T03:13:58.875656"}}
+/type/author /authors/OL1075153A 2 2008-08-20T01:30:00.064479 {"name": "John A. Streby", "personal_name": "John A. Streby", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T01:30:00.064479"}, "key": "/authors/OL1075153A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10751696A 1 2022-10-18T03:51:59.316946 {"type": {"key": "/type/author"}, "name": "Gerald O. Mott", "key": "/authors/OL10751696A", "source_records": ["bwb:9780891182900"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-18T03:51:59.316946"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T03:51:59.316946"}}
+/type/author /authors/OL10751790A 1 2022-10-18T03:56:17.459485 {"type": {"key": "/type/author"}, "name": "Rishi Maheshwari", "key": "/authors/OL10751790A", "source_records": ["bwb:9781300038313"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-18T03:56:17.459485"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T03:56:17.459485"}}
+/type/author /authors/OL10752867A 1 2022-10-18T04:21:34.338197 {"type": {"key": "/type/author"}, "name": "Josh Shepperd", "key": "/authors/OL10752867A", "source_records": ["bwb:9780252087257"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-18T04:21:34.338197"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T04:21:34.338197"}}
+/type/author /authors/OL10752882A 1 2022-10-18T04:22:15.899749 {"type": {"key": "/type/author"}, "name": "Clair Allbright", "key": "/authors/OL10752882A", "source_records": ["bwb:9781925566093"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-18T04:22:15.899749"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T04:22:15.899749"}}
+/type/author /authors/OL10753149A 1 2022-10-18T04:29:43.327415 {"type": {"key": "/type/author"}, "name": "David Coldwell", "key": "/authors/OL10753149A", "source_records": ["bwb:9781913508043"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-18T04:29:43.327415"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T04:29:43.327415"}}
+/type/author /authors/OL10753153A 1 2022-10-18T04:29:48.122076 {"type": {"key": "/type/author"}, "name": "Monica A. Hershberger", "key": "/authors/OL10753153A", "source_records": ["bwb:9781648250613"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-18T04:29:48.122076"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T04:29:48.122076"}}
+/type/author /authors/OL10754323A 1 2022-10-18T04:59:54.959056 {"type": {"key": "/type/author"}, "name": "Bizzie Frost", "key": "/authors/OL10754323A", "source_records": ["bwb:9781915352620"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-18T04:59:54.959056"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T04:59:54.959056"}}
+/type/author /authors/OL10754766A 1 2022-10-18T05:12:23.133563 {"type": {"key": "/type/author"}, "name": "Dina Arce", "key": "/authors/OL10754766A", "source_records": ["bwb:9781387908691"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-18T05:12:23.133563"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T05:12:23.133563"}}
+/type/author /authors/OL10754904A 1 2022-10-18T05:15:05.986752 {"type": {"key": "/type/author"}, "name": "Madeleine Graham", "key": "/authors/OL10754904A", "source_records": ["bwb:9781105647901"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-18T05:15:05.986752"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T05:15:05.986752"}}
+/type/author /authors/OL10755767A 1 2022-10-18T05:38:53.246482 {"type": {"key": "/type/author"}, "name": "Afrodesia McCannon", "key": "/authors/OL10755767A", "source_records": ["bwb:9783031185076"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-18T05:38:53.246482"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T05:38:53.246482"}}
+/type/author /authors/OL10756254A 1 2022-10-18T05:51:07.860504 {"type": {"key": "/type/author"}, "name": "Rebecca McPipe", "key": "/authors/OL10756254A", "source_records": ["bwb:9781387946044"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-18T05:51:07.860504"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T05:51:07.860504"}}
+/type/author /authors/OL10756331A 1 2022-10-18T05:53:18.022620 {"type": {"key": "/type/author"}, "name": "Francesco Panna", "key": "/authors/OL10756331A", "source_records": ["bwb:9781291503869"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-18T05:53:18.022620"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T05:53:18.022620"}}
+/type/author /authors/OL10756565A 1 2022-10-18T06:01:07.446339 {"type": {"key": "/type/author"}, "name": "Ralf Deutlmoser", "key": "/authors/OL10756565A", "source_records": ["bwb:9783662663004"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-18T06:01:07.446339"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T06:01:07.446339"}}
+/type/author /authors/OL10756832A 1 2022-10-18T06:09:44.579087 {"type": {"key": "/type/author"}, "name": "R\u00f3is\u00edn Jenkinson", "key": "/authors/OL10756832A", "source_records": ["bwb:9781387389001"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-18T06:09:44.579087"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T06:09:44.579087"}}
+/type/author /authors/OL10757017A 1 2022-10-18T06:14:07.529253 {"type": {"key": "/type/author"}, "name": "Waverly J. Hanson", "key": "/authors/OL10757017A", "source_records": ["bwb:9780359012268"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-18T06:14:07.529253"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T06:14:07.529253"}}
+/type/author /authors/OL10757187A 1 2022-10-18T06:20:52.503195 {"type": {"key": "/type/author"}, "name": "Simone Secchi", "key": "/authors/OL10757187A", "source_records": ["bwb:9783031197376"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-18T06:20:52.503195"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T06:20:52.503195"}}
+/type/author /authors/OL10757254A 1 2022-10-18T06:23:58.297507 {"type": {"key": "/type/author"}, "name": "Alfredo Ronchi", "key": "/authors/OL10757254A", "source_records": ["bwb:9783031202520"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-18T06:23:58.297507"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T06:23:58.297507"}}
+/type/author /authors/OL10757868A 1 2022-10-18T08:00:11.454828 {"type": {"key": "/type/author"}, "name": "Erik Sanchez", "key": "/authors/OL10757868A", "source_records": ["bwb:9781411612945"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-18T08:00:11.454828"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T08:00:11.454828"}}
+/type/author /authors/OL10758096A 1 2022-10-18T08:48:25.720324 {"type": {"key": "/type/author"}, "name": "Lynn C. Maas", "key": "/authors/OL10758096A", "source_records": ["bwb:9781411616455"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-18T08:48:25.720324"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T08:48:25.720324"}}
+/type/author /authors/OL10758433A 1 2022-10-18T10:09:06.915772 {"type": {"key": "/type/author"}, "name": "QuantBiz Staff", "key": "/authors/OL10758433A", "source_records": ["bwb:9780471207122"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-18T10:09:06.915772"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T10:09:06.915772"}}
+/type/author /authors/OL10758459A 1 2022-10-18T10:16:13.202023 {"type": {"key": "/type/author"}, "name": "C. D. Moulton", "key": "/authors/OL10758459A", "source_records": ["bwb:9781411602069"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-18T10:16:13.202023"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T10:16:13.202023"}}
+/type/author /authors/OL10759075A 1 2022-10-18T12:59:32.467186 {"type": {"key": "/type/author"}, "name": "J. E. Jacobson", "key": "/authors/OL10759075A", "source_records": ["bwb:9781411663299"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-18T12:59:32.467186"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T12:59:32.467186"}}
+/type/author /authors/OL10759126A 1 2022-10-18T13:06:57.744784 {"type": {"key": "/type/author"}, "name": "Warren Norgaard", "key": "/authors/OL10759126A", "source_records": ["bwb:9780615175645"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-18T13:06:57.744784"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T13:06:57.744784"}}
+/type/author /authors/OL10759306A 1 2022-10-18T13:29:12.432829 {"type": {"key": "/type/author"}, "name": "Stanley M. Howard", "key": "/authors/OL10759306A", "source_records": ["bwb:9780873397155"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-18T13:29:12.432829"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T13:29:12.432829"}}
+/type/author /authors/OL10759598A 1 2022-10-18T14:05:46.763973 {"type": {"key": "/type/author"}, "name": "G. W. Keasler", "key": "/authors/OL10759598A", "source_records": ["bwb:9780615177106"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-18T14:05:46.763973"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T14:05:46.763973"}}
+/type/author /authors/OL10759900A 1 2022-10-18T14:45:59.887199 {"type": {"key": "/type/author"}, "name": "Hans Br\u00fcckner", "key": "/authors/OL10759900A", "source_records": ["bwb:9783906390529"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-18T14:45:59.887199"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T14:45:59.887199"}}
+/type/author /authors/OL10760626A 1 2022-10-18T16:23:22.122536 {"type": {"key": "/type/author"}, "name": "Maria Emilia Masci", "key": "/authors/OL10760626A", "source_records": ["bwb:9788882654313"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-18T16:23:22.122536"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T16:23:22.122536"}}
+/type/author /authors/OL10760821A 1 2022-10-18T16:50:53.852894 {"type": {"key": "/type/author"}, "name": "Mcentire", "key": "/authors/OL10760821A", "source_records": ["bwb:9780470284131"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-18T16:50:53.852894"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T16:50:53.852894"}}
+/type/author /authors/OL10760928A 1 2022-10-18T17:07:09.443163 {"type": {"key": "/type/author"}, "name": "Alireza Sayadi", "key": "/authors/OL10760928A", "source_records": ["bwb:9780470901663"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-18T17:07:09.443163"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T17:07:09.443163"}}
+/type/author /authors/OL10761362A 1 2022-10-18T18:10:18.397603 {"type": {"key": "/type/author"}, "name": "John P. Teevan", "key": "/authors/OL10761362A", "source_records": ["bwb:9781312675315"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-18T18:10:18.397603"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T18:10:18.397603"}}
+/type/author /authors/OL10761422A 1 2022-10-18T18:12:37.471790 {"type": {"key": "/type/author"}, "name": "Melissa Malooley", "key": "/authors/OL10761422A", "source_records": ["bwb:9781483422855"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-18T18:12:37.471790"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T18:12:37.471790"}}
+/type/author /authors/OL10761426A 1 2022-10-18T18:12:47.700083 {"type": {"key": "/type/author"}, "name": "Educ@ U. Creations", "key": "/authors/OL10761426A", "source_records": ["bwb:9781312330054"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-18T18:12:47.700083"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T18:12:47.700083"}}
+/type/author /authors/OL10761614A 1 2022-10-18T18:29:41.134286 {"type": {"key": "/type/author"}, "name": "Christopher Henningsen", "key": "/authors/OL10761614A", "source_records": ["bwb:9781329057074"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-18T18:29:41.134286"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T18:29:41.134286"}}
+/type/author /authors/OL10762029A 1 2022-10-18T18:47:38.699648 {"type": {"key": "/type/author"}, "name": "Catherine Chadwick", "key": "/authors/OL10762029A", "source_records": ["bwb:9781329320840"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-18T18:47:38.699648"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T18:47:38.699648"}}
+/type/author /authors/OL1076237A 2 2008-08-20T01:38:16.555127 {"name": "Michael C. Fairhurst", "personal_name": "Michael C. Fairhurst", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T01:38:16.555127"}, "key": "/authors/OL1076237A", "birth_date": "1948", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10762742A 1 2022-10-18T19:21:38.556211 {"type": {"key": "/type/author"}, "name": "Patrick Cordonier", "key": "/authors/OL10762742A", "source_records": ["bwb:9781326111533"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-18T19:21:38.556211"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T19:21:38.556211"}}
+/type/author /authors/OL1076284A 2 2008-08-20T01:38:49.069445 {"name": "Ilse Lehiste", "personal_name": "Ilse Lehiste", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T01:38:49.069445"}, "key": "/authors/OL1076284A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10763002A 1 2022-10-18T19:40:03.487174 {"type": {"key": "/type/author"}, "name": "Jean S. Willing", "key": "/authors/OL10763002A", "source_records": ["bwb:9780471877608"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-18T19:40:03.487174"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T19:40:03.487174"}}
+/type/author /authors/OL10763086A 1 2022-10-18T19:51:05.192467 {"type": {"key": "/type/author"}, "name": "Jeremy Ryan", "key": "/authors/OL10763086A", "source_records": ["bwb:9781312663688"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-18T19:51:05.192467"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T19:51:05.192467"}}
+/type/author /authors/OL10763758A 1 2022-10-18T20:17:09.675972 {"type": {"key": "/type/author"}, "name": "R. Necker", "key": "/authors/OL10763758A", "source_records": ["bwb:9783527277094"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-18T20:17:09.675972"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T20:17:09.675972"}}
+/type/author /authors/OL10764258A 1 2022-10-18T20:44:08.863773 {"type": {"key": "/type/author"}, "name": "Jeffrey O'Connor", "key": "/authors/OL10764258A", "source_records": ["bwb:9781329211278"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-18T20:44:08.863773"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T20:44:08.863773"}}
+/type/author /authors/OL10764407A 1 2022-10-18T20:49:56.033313 {"type": {"key": "/type/author"}, "name": "Harry Feeney", "key": "/authors/OL10764407A", "source_records": ["bwb:9781326281519"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-18T20:49:56.033313"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T20:49:56.033313"}}
+/type/author /authors/OL10764464A 1 2022-10-18T20:54:01.908976 {"type": {"key": "/type/author"}, "name": "Kenneth Jongsma", "key": "/authors/OL10764464A", "source_records": ["bwb:9780471146810"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-18T20:54:01.908976"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T20:54:01.908976"}}
+/type/author /authors/OL10764742A 1 2022-10-18T21:12:52.585745 {"type": {"key": "/type/author"}, "name": "Matt Caruso", "key": "/authors/OL10764742A", "source_records": ["bwb:9781329055902"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-18T21:12:52.585745"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T21:12:52.585745"}}
+/type/author /authors/OL10764799A 1 2022-10-18T21:14:38.423128 {"type": {"key": "/type/author"}, "name": "Francis M. Debritz", "key": "/authors/OL10764799A", "source_records": ["bwb:9781312462328"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-18T21:14:38.423128"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T21:14:38.423128"}}
+/type/author /authors/OL10765220A 1 2022-10-18T21:37:42.373498 {"type": {"key": "/type/author"}, "name": "Daryl D. Wyckoff", "key": "/authors/OL10765220A", "source_records": ["bwb:9780669032482"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-18T21:37:42.373498"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T21:37:42.373498"}}
+/type/author /authors/OL10765310A 1 2022-10-18T21:45:34.791724 {"type": {"key": "/type/author"}, "name": "Tyler Voll", "key": "/authors/OL10765310A", "source_records": ["bwb:9781312777828"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-18T21:45:34.791724"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T21:45:34.791724"}}
+/type/author /authors/OL10765315A 1 2022-10-18T21:45:40.076410 {"type": {"key": "/type/author"}, "name": "Simonie Love", "key": "/authors/OL10765315A", "source_records": ["bwb:9781312790452"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-18T21:45:40.076410"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T21:45:40.076410"}}
+/type/author /authors/OL10765838A 1 2022-10-18T22:10:08.427699 {"type": {"key": "/type/author"}, "name": "Eta Berner", "key": "/authors/OL10765838A", "source_records": ["bwb:9780412130212"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-18T22:10:08.427699"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T22:10:08.427699"}}
+/type/author /authors/OL10766292A 1 2022-10-18T22:37:41.077909 {"type": {"key": "/type/author"}, "name": "Dale Trigg", "key": "/authors/OL10766292A", "source_records": ["bwb:9781326299989"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-18T22:37:41.077909"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T22:37:41.077909"}}
+/type/author /authors/OL10766627A 1 2022-10-18T23:02:04.411375 {"type": {"key": "/type/author"}, "name": "Ronny Stackhouse", "key": "/authors/OL10766627A", "source_records": ["bwb:9781312912670"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-18T23:02:04.411375"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T23:02:04.411375"}}
+/type/author /authors/OL10766795A 1 2022-10-18T23:08:46.933332 {"type": {"key": "/type/author"}, "name": "Amol Padwad", "key": "/authors/OL10766795A", "source_records": ["bwb:9781312416840"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-18T23:08:46.933332"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T23:08:46.933332"}}
+/type/author /authors/OL1076694A 2 2008-08-20T01:41:38.13473 {"name": "Inger Gottfridsson", "personal_name": "Inger Gottfridsson", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T01:41:38.13473"}, "key": "/authors/OL1076694A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10767146A 1 2022-10-18T23:24:31.603172 {"type": {"key": "/type/author"}, "name": "Hayle U3a Writing Group", "key": "/authors/OL10767146A", "source_records": ["bwb:9781326113537"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-18T23:24:31.603172"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T23:24:31.603172"}}
+/type/author /authors/OL10767158A 1 2022-10-18T23:24:41.396380 {"type": {"key": "/type/author"}, "name": "Brian Gadsen", "key": "/authors/OL10767158A", "source_records": ["bwb:9781329538511"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-18T23:24:41.396380"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T23:24:41.396380"}}
+/type/author /authors/OL10767601A 1 2022-10-18T23:37:22.360426 {"type": {"key": "/type/author"}, "name": "Mba Ladonna Bracy", "key": "/authors/OL10767601A", "source_records": ["bwb:9781312834408"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-18T23:37:22.360426"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T23:37:22.360426"}}
+/type/author /authors/OL1076779A 2 2008-08-20T01:42:18.111662 {"name": "Fred Percival", "personal_name": "Fred Percival", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T01:42:18.111662"}, "key": "/authors/OL1076779A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10767911A 1 2022-10-18T23:47:30.475638 {"type": {"key": "/type/author"}, "name": "Andrea Massucco", "key": "/authors/OL10767911A", "source_records": ["bwb:9781291450606"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-18T23:47:30.475638"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T23:47:30.475638"}}
+/type/author /authors/OL10767968A 1 2022-10-18T23:49:21.085609 {"type": {"key": "/type/author"}, "name": "Ahmet Urfali", "key": "/authors/OL10767968A", "source_records": ["bwb:9781365344282"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-18T23:49:21.085609"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T23:49:21.085609"}}
+/type/author /authors/OL1076818A 2 2008-08-20T01:42:37.90061 {"name": "Robert W. Melvold", "personal_name": "Robert W. Melvold", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T01:42:37.90061"}, "key": "/authors/OL1076818A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10768334A 1 2022-10-19T00:01:05.143538 {"type": {"key": "/type/author"}, "name": "Michel Veron", "key": "/authors/OL10768334A", "source_records": ["bwb:9780244921385"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T00:01:05.143538"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T00:01:05.143538"}}
+/type/author /authors/OL10768904A 1 2022-10-19T00:29:50.326582 {"type": {"key": "/type/author"}, "name": "Traditional Irish Hymn", "key": "/authors/OL10768904A", "source_records": ["bwb:9781329814073"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T00:29:50.326582"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T00:29:50.326582"}}
+/type/author /authors/OL10768969A 1 2022-10-19T00:32:09.890494 {"type": {"key": "/type/author"}, "name": "Mirko Antonello", "key": "/authors/OL10768969A", "source_records": ["bwb:9781326520106"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T00:32:09.890494"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T00:32:09.890494"}}
+/type/author /authors/OL1076903A 2 2008-08-20T01:43:13.620989 {"name": "Ted L. Edwards", "personal_name": "Ted L. Edwards", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T01:43:13.620989"}, "key": "/authors/OL1076903A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10769051A 1 2022-10-19T00:35:13.398909 {"type": {"key": "/type/author"}, "name": "Opare Daniel Nana Kwame", "key": "/authors/OL10769051A", "source_records": ["bwb:9781329107977"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T00:35:13.398909"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T00:35:13.398909"}}
+/type/author /authors/OL1076907A 2 2008-08-20T01:43:15.502953 {"name": "Mildred Krentel", "personal_name": "Mildred Krentel", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T01:43:15.502953"}, "key": "/authors/OL1076907A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10769569A 1 2022-10-19T00:52:48.392914 {"type": {"key": "/type/author"}, "name": "Kareem McArthur", "key": "/authors/OL10769569A", "source_records": ["bwb:9781365813078"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T00:52:48.392914"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T00:52:48.392914"}}
+/type/author /authors/OL10769632A 1 2022-10-19T00:54:39.884594 {"type": {"key": "/type/author"}, "name": "Patricia Laster", "key": "/authors/OL10769632A", "source_records": ["bwb:9781365878039"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T00:54:39.884594"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T00:54:39.884594"}}
+/type/author /authors/OL1076989A 2 2008-08-20T01:43:56.891872 {"name": "Samuel Edison", "personal_name": "Samuel Edison", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T01:43:56.891872"}, "key": "/authors/OL1076989A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10769921A 1 2022-10-19T01:07:15.751454 {"type": {"key": "/type/author"}, "name": "Victoria Nikitina Chala", "key": "/authors/OL10769921A", "source_records": ["bwb:9781329447691"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T01:07:15.751454"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T01:07:15.751454"}}
+/type/author /authors/OL10770104A 1 2022-10-19T01:13:04.559042 {"type": {"key": "/type/author"}, "name": "Robyn Gardiner", "key": "/authors/OL10770104A", "source_records": ["bwb:9781326481858"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T01:13:04.559042"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T01:13:04.559042"}}
+/type/author /authors/OL10770233A 1 2022-10-19T01:17:47.239941 {"type": {"key": "/type/author"}, "name": "Hannah Lozano", "key": "/authors/OL10770233A", "source_records": ["bwb:9781329823617"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T01:17:47.239941"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T01:17:47.239941"}}
+/type/author /authors/OL10770377A 1 2022-10-19T01:22:43.888829 {"type": {"key": "/type/author"}, "name": "Juan Jose Bande", "key": "/authors/OL10770377A", "source_records": ["bwb:9781291800500"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T01:22:43.888829"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T01:22:43.888829"}}
+/type/author /authors/OL10770563A 1 2022-10-19T01:29:37.235925 {"type": {"key": "/type/author"}, "name": "U. C. Davis UC Davis MIND Institute", "key": "/authors/OL10770563A", "source_records": ["bwb:9780470584859"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T01:29:37.235925"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T01:29:37.235925"}}
+/type/author /authors/OL10770565A 1 2022-10-19T01:29:41.435060 {"type": {"key": "/type/author"}, "name": "Clair :Lumin", "key": "/authors/OL10770565A", "source_records": ["bwb:9781925566048"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T01:29:41.435060"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T01:29:41.435060"}}
+/type/author /authors/OL10771176A 1 2022-10-19T01:54:24.323657 {"type": {"key": "/type/author"}, "name": "N. Andre Cossette", "key": "/authors/OL10771176A", "source_records": ["bwb:9781329497238"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T01:54:24.323657"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T01:54:24.323657"}}
+/type/author /authors/OL10771196A 1 2022-10-19T01:54:59.305910 {"type": {"key": "/type/author"}, "name": "Charles Humble", "key": "/authors/OL10771196A", "source_records": ["bwb:9781329312388"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T01:54:59.305910"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T01:54:59.305910"}}
+/type/author /authors/OL1077123A 2 2008-08-20T01:45:03.222116 {"name": "Michele Gallatin", "personal_name": "Michele Gallatin", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T01:45:03.222116"}, "key": "/authors/OL1077123A", "birth_date": "1954", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL1077124A 2 2008-08-20T01:45:03.8416 {"name": "Arnold B. Grobman", "personal_name": "Arnold B. Grobman", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T01:45:03.8416"}, "key": "/authors/OL1077124A", "birth_date": "1918", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL1077145A 2 2008-08-20T01:45:08.60495 {"name": "Jack R. Porter", "personal_name": "Jack R. Porter", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T01:45:08.60495"}, "key": "/authors/OL1077145A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10772481A 1 2022-10-19T02:45:37.703048 {"type": {"key": "/type/author"}, "name": "United States Department", "key": "/authors/OL10772481A", "source_records": ["bwb:9781329613393"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T02:45:37.703048"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T02:45:37.703048"}}
+/type/author /authors/OL10772744A 1 2022-10-19T02:56:02.793326 {"type": {"key": "/type/author"}, "name": "Olivier Crouzier", "key": "/authors/OL10772744A", "source_records": ["bwb:9781326583859"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T02:56:02.793326"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T02:56:02.793326"}}
+/type/author /authors/OL10773173A 1 2022-10-19T03:12:43.108873 {"type": {"key": "/type/author"}, "name": "Pole Education LLC", "key": "/authors/OL10773173A", "source_records": ["bwb:9781365653162"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T03:12:43.108873"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T03:12:43.108873"}}
+/type/author /authors/OL1077345A 2 2008-08-20T01:46:36.155706 {"name": "M. Donald McGavin", "personal_name": "M. Donald McGavin", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T01:46:36.155706"}, "key": "/authors/OL1077345A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10773834A 1 2022-10-19T03:43:27.411864 {"type": {"key": "/type/author"}, "name": "Li H. Erikson", "key": "/authors/OL10773834A", "source_records": ["bwb:9781329629936"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T03:43:27.411864"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T03:43:27.411864"}}
+/type/author /authors/OL10774009A 1 2022-10-19T03:51:04.070323 {"type": {"key": "/type/author"}, "name": "Michal Hershkovitz", "key": "/authors/OL10774009A", "source_records": ["bwb:9781119163879"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T03:51:04.070323"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T03:51:04.070323"}}
+/type/author /authors/OL10774071A 1 2022-10-19T03:53:43.574978 {"type": {"key": "/type/author"}, "name": "Emily Kzany", "key": "/authors/OL10774071A", "source_records": ["bwb:9781365196133"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T03:53:43.574978"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T03:53:43.574978"}}
+/type/author /authors/OL10774357A 1 2022-10-19T04:05:21.869424 {"type": {"key": "/type/author"}, "name": "Michael T. Cook", "key": "/authors/OL10774357A", "source_records": ["bwb:9781326986599"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T04:05:21.869424"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T04:05:21.869424"}}
+/type/author /authors/OL10774418A 1 2022-10-19T04:07:37.291679 {"type": {"key": "/type/author"}, "name": "T. O. Fiddament", "key": "/authors/OL10774418A", "source_records": ["bwb:9781326758424"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T04:07:37.291679"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T04:07:37.291679"}}
+/type/author /authors/OL1077465A 2 2008-08-20T01:47:11.331675 {"name": "Joyce B. Lohse", "personal_name": "Joyce B. Lohse", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T01:47:11.331675"}, "key": "/authors/OL1077465A", "birth_date": "1950", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10774873A 1 2022-10-19T04:30:36.512686 {"type": {"key": "/type/author"}, "name": "Amir Jaffery", "key": "/authors/OL10774873A", "source_records": ["bwb:9781329934115"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T04:30:36.512686"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T04:30:36.512686"}}
+/type/author /authors/OL10775056A 1 2022-10-19T04:38:37.833488 {"type": {"key": "/type/author"}, "name": "Cody Kahulamu", "key": "/authors/OL10775056A", "source_records": ["bwb:9781365187995"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T04:38:37.833488"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T04:38:37.833488"}}
+/type/author /authors/OL10775063A 1 2022-10-19T04:38:46.781866 {"type": {"key": "/type/author"}, "name": "Jared Laskey", "key": "/authors/OL10775063A", "source_records": ["bwb:9781483451398"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T04:38:46.781866"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T04:38:46.781866"}}
+/type/author /authors/OL10775283A 1 2022-10-19T04:48:00.516167 {"type": {"key": "/type/author"}, "name": "Audrey Pettit", "key": "/authors/OL10775283A", "source_records": ["bwb:9781326871987"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T04:48:00.516167"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T04:48:00.516167"}}
+/type/author /authors/OL1077530A 2 2008-08-20T01:47:32.81259 {"name": "Anne M. Boylan", "personal_name": "Anne M. Boylan", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T01:47:32.81259"}, "key": "/authors/OL1077530A", "birth_date": "1947", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10775468A 1 2022-10-19T04:55:55.853260 {"type": {"key": "/type/author"}, "name": "Arizona Department of State", "key": "/authors/OL10775468A", "source_records": ["bwb:9781387131488"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T04:55:55.853260"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T04:55:55.853260"}}
+/type/author /authors/OL10775615A 1 2022-10-19T05:04:26.113630 {"type": {"key": "/type/author"}, "name": "Steven Cline", "key": "/authors/OL10775615A", "source_records": ["bwb:9781329481954"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T05:04:26.113630"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T05:04:26.113630"}}
+/type/author /authors/OL10776238A 1 2022-10-19T05:32:08.292740 {"type": {"key": "/type/author"}, "name": "Morgan Mudway", "key": "/authors/OL10776238A", "source_records": ["bwb:9781365499999"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T05:32:08.292740"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T05:32:08.292740"}}
+/type/author /authors/OL10776579A 1 2022-10-19T05:51:03.175813 {"type": {"key": "/type/author"}, "name": "Aunidan Christi", "key": "/authors/OL10776579A", "source_records": ["bwb:9780244648916"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T05:51:03.175813"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T05:51:03.175813"}}
+/type/author /authors/OL10776596A 1 2022-10-19T05:51:36.374738 {"type": {"key": "/type/author"}, "name": "Osbaldo Aragon Banderas", "key": "/authors/OL10776596A", "source_records": ["bwb:9781387391837"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T05:51:36.374738"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T05:51:36.374738"}}
+/type/author /authors/OL10776952A 1 2022-10-19T06:14:35.105379 {"type": {"key": "/type/author"}, "name": "Massimo Ossanna", "key": "/authors/OL10776952A", "source_records": ["bwb:9788891317711"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T06:14:35.105379"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T06:14:35.105379"}}
+/type/author /authors/OL10778300A 1 2022-10-19T07:44:00.855495 {"type": {"key": "/type/author"}, "name": "Vox Clamat in Deserto", "key": "/authors/OL10778300A", "source_records": ["bwb:9780244730871"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T07:44:00.855495"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T07:44:00.855495"}}
+/type/author /authors/OL10778510A 1 2022-10-19T08:02:00.819666 {"type": {"key": "/type/author"}, "name": "Cristina Rilo Arango", "key": "/authors/OL10778510A", "source_records": ["bwb:9780244212773"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T08:02:00.819666"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T08:02:00.819666"}}
+/type/author /authors/OL10778551A 1 2022-10-19T08:04:48.138283 {"type": {"key": "/type/author"}, "name": "Deborah Ackerman", "key": "/authors/OL10778551A", "source_records": ["bwb:9781684707676"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T08:04:48.138283"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T08:04:48.138283"}}
+/type/author /authors/OL10778671A 1 2022-10-19T08:11:03.841392 {"type": {"key": "/type/author"}, "name": "Maria Antonia Martines", "key": "/authors/OL10778671A", "source_records": ["bwb:9780244432348"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T08:11:03.841392"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T08:11:03.841392"}}
+/type/author /authors/OL10778724A 1 2022-10-19T08:13:02.918281 {"type": {"key": "/type/author"}, "name": "Patricia Christine Hagstrom", "key": "/authors/OL10778724A", "source_records": ["bwb:9781678183806"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T08:13:02.918281"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T08:13:02.918281"}}
+/type/author /authors/OL10779053A 1 2022-10-19T08:36:55.898094 {"type": {"key": "/type/author"}, "name": "McKenzie Davenport", "key": "/authors/OL10779053A", "source_records": ["bwb:9780359401543"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T08:36:55.898094"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T08:36:55.898094"}}
+/type/author /authors/OL10779151A 1 2022-10-19T08:43:23.258014 {"type": {"key": "/type/author"}, "name": "Jessica Petty", "key": "/authors/OL10779151A", "source_records": ["bwb:9780359681075"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T08:43:23.258014"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T08:43:23.258014"}}
+/type/author /authors/OL10779217A 1 2022-10-19T08:49:49.980668 {"type": {"key": "/type/author"}, "name": "David T Sharp", "key": "/authors/OL10779217A", "source_records": ["bwb:9780359870653"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T08:49:49.980668"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T08:49:49.980668"}}
+/type/author /authors/OL1077922A 2 2008-08-20T01:50:25.410058 {"name": "Rod Manis", "personal_name": "Rod Manis", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T01:50:25.410058"}, "key": "/authors/OL1077922A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10779546A 1 2022-10-19T09:08:55.394210 {"type": {"key": "/type/author"}, "name": "Oficina de Defensor\u00eda de los Derechos de la Infancia (Mexico) Staff", "key": "/authors/OL10779546A", "source_records": ["bwb:9786078447169"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T09:08:55.394210"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T09:08:55.394210"}}
+/type/author /authors/OL10780055A 1 2022-10-19T09:45:32.804965 {"type": {"key": "/type/author"}, "name": "Clint Van Iseghem", "key": "/authors/OL10780055A", "source_records": ["bwb:9781678126414"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T09:45:32.804965"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T09:45:32.804965"}}
+/type/author /authors/OL10780059A 1 2022-10-19T09:45:38.998162 {"type": {"key": "/type/author"}, "name": "Robert Lavoie", "key": "/authors/OL10780059A", "source_records": ["bwb:9781678139964"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T09:45:38.998162"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T09:45:38.998162"}}
+/type/author /authors/OL10780063A 1 2022-10-19T09:45:46.427200 {"type": {"key": "/type/author"}, "name": "D. C. Steve Troyanovich", "key": "/authors/OL10780063A", "source_records": ["bwb:9781678160296"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T09:45:46.427200"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T09:45:46.427200"}}
+/type/author /authors/OL10780070A 1 2022-10-19T09:45:59.376585 {"type": {"key": "/type/author"}, "name": "Moli�re", "key": "/authors/OL10780070A", "source_records": ["bwb:9781678199494"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T09:45:59.376585"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T09:45:59.376585"}}
+/type/author /authors/OL10780429A 1 2022-10-19T10:15:46.113342 {"type": {"key": "/type/author"}, "name": "Rick Gould Cpa M S J D", "key": "/authors/OL10780429A", "source_records": ["bwb:9781684702008"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T10:15:46.113342"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T10:15:46.113342"}}
+/type/author /authors/OL10780532A 1 2022-10-19T10:25:46.213422 {"type": {"key": "/type/author"}, "name": "Anastacia Elizabeth Walden", "key": "/authors/OL10780532A", "source_records": ["bwb:9781706417071"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T10:25:46.213422"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T10:25:46.213422"}}
+/type/author /authors/OL10780630A 1 2022-10-19T10:31:35.188930 {"type": {"key": "/type/author"}, "name": "Kitt Taylor", "key": "/authors/OL10780630A", "source_records": ["bwb:9781794847828"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T10:31:35.188930"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T10:31:35.188930"}}
+/type/author /authors/OL10780747A 1 2022-10-19T10:40:40.912296 {"type": {"key": "/type/author"}, "name": "Michell G. Clark", "key": "/authors/OL10780747A", "source_records": ["bwb:9781387469864"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T10:40:40.912296"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T10:40:40.912296"}}
+/type/author /authors/OL107807A 1 2008-04-01T03:28:50.625462 {"name": "Mak\u0332h\u0332mu\u0304r Ja\u0304landhari\u0304", "personal_name": "Mak\u0332h\u0332mu\u0304r Ja\u0304landhari\u0304", "death_date": "1979", "last_modified": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "key": "/authors/OL107807A", "type": {"key": "/type/author"}, "revision": 1}
+/type/author /authors/OL10780929A 1 2022-10-19T10:57:20.319218 {"type": {"key": "/type/author"}, "name": "O. P. Bl Henry Suso", "key": "/authors/OL10780929A", "source_records": ["bwb:9780359375172"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T10:57:20.319218"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T10:57:20.319218"}}
+/type/author /authors/OL10781052A 1 2022-10-19T11:06:30.135507 {"type": {"key": "/type/author"}, "name": "David Rose City Books - Classic Reprint", "key": "/authors/OL10781052A", "source_records": ["bwb:9780359673629"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T11:06:30.135507"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T11:06:30.135507"}}
+/type/author /authors/OL10781565A 1 2022-10-19T11:49:37.318163 {"type": {"key": "/type/author"}, "name": "Jeanne Elizabeth Whyte", "key": "/authors/OL10781565A", "source_records": ["bwb:9781684705078"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T11:49:37.318163"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T11:49:37.318163"}}
+/type/author /authors/OL10781586A 1 2022-10-19T11:50:23.366543 {"type": {"key": "/type/author"}, "name": "David Connor SE", "key": "/authors/OL10781586A", "source_records": ["amazon:1535055308"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T11:50:23.366543"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T11:50:23.366543"}}
+/type/author /authors/OL10781591A 1 2022-10-19T11:50:57.488581 {"type": {"key": "/type/author"}, "name": "I. Z. Hearns", "key": "/authors/OL10781591A", "source_records": ["bwb:9780359764983"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T11:50:57.488581"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T11:50:57.488581"}}
+/type/author /authors/OL1078174A 2 2008-08-20T01:52:14.652769 {"name": "Anne Osborne", "personal_name": "Anne Osborne", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T01:52:14.652769"}, "key": "/authors/OL1078174A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10781794A 1 2022-10-19T12:04:13.908091 {"type": {"key": "/type/author"}, "name": "Shelia Kovette Cook", "key": "/authors/OL10781794A", "source_records": ["bwb:9781794862005"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T12:04:13.908091"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T12:04:13.908091"}}
+/type/author /authors/OL10781803A 1 2022-10-19T12:05:05.331335 {"type": {"key": "/type/author"}, "name": "Ralph Di Stasio", "key": "/authors/OL10781803A", "source_records": ["bwb:9781678020842"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T12:05:05.331335"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T12:05:05.331335"}}
+/type/author /authors/OL10781839A 1 2022-10-19T12:08:04.868387 {"type": {"key": "/type/author"}, "name": "Annetta T. Swift", "key": "/authors/OL10781839A", "source_records": ["bwb:9781365864544"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T12:08:04.868387"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T12:08:04.868387"}}
+/type/author /authors/OL10781960A 1 2022-10-19T12:13:13.779636 {"type": {"key": "/type/author"}, "name": "Ruby Frears", "key": "/authors/OL10781960A", "source_records": ["bwb:9781716583247"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T12:13:13.779636"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T12:13:13.779636"}}
+/type/author /authors/OL1078202A 2 2008-08-20T01:52:23.579661 {"name": "Dileep Divekar", "personal_name": "Dileep Divekar", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T01:52:23.579661"}, "key": "/authors/OL1078202A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10782101A 1 2022-10-19T12:16:53.093603 {"type": {"key": "/type/author"}, "name": "Jimmy Crimmins", "key": "/authors/OL10782101A", "source_records": ["bwb:9781716888328"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T12:16:53.093603"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T12:16:53.093603"}}
+/type/author /authors/OL10782117A 1 2022-10-19T12:17:14.566596 {"type": {"key": "/type/author"}, "name": "Marty Carmitchel", "key": "/authors/OL10782117A", "source_records": ["bwb:9781716919640"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T12:17:14.566596"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T12:17:14.566596"}}
+/type/author /authors/OL10783517A 1 2022-10-19T13:27:53.080042 {"type": {"key": "/type/author"}, "name": "Stasia R", "key": "/authors/OL10783517A", "source_records": ["bwb:9781716159206"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T13:27:53.080042"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T13:27:53.080042"}}
+/type/author /authors/OL10783887A 1 2022-10-19T13:39:22.368045 {"type": {"key": "/type/author"}, "name": "Josh Lopez", "key": "/authors/OL10783887A", "source_records": ["bwb:9781716794469"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T13:39:22.368045"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T13:39:22.368045"}}
+/type/author /authors/OL10784066A 1 2022-10-19T13:44:32.233658 {"type": {"key": "/type/author"}, "name": "Kim Show", "key": "/authors/OL10784066A", "source_records": ["bwb:9781716462306"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T13:44:32.233658"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T13:44:32.233658"}}
+/type/author /authors/OL10784380A 1 2022-10-19T14:04:15.208072 {"type": {"key": "/type/author"}, "name": "Ezio Porto", "key": "/authors/OL10784380A", "source_records": ["bwb:9781716957239"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T14:04:15.208072"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T14:04:15.208072"}}
+/type/author /authors/OL10784995A 1 2022-10-19T14:31:47.017749 {"type": {"key": "/type/author"}, "name": "Michael Timothy McGuire", "key": "/authors/OL10784995A", "source_records": ["bwb:9781716193934"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T14:31:47.017749"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T14:31:47.017749"}}
+/type/author /authors/OL1078516A 2 2008-08-20T01:54:48.554958 {"name": "Gerald Sullivan", "personal_name": "Gerald Sullivan", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T01:54:48.554958"}, "key": "/authors/OL1078516A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10785394A 1 2022-10-19T14:50:32.915024 {"type": {"key": "/type/author"}, "name": "Marosi Katalin", "key": "/authors/OL10785394A", "source_records": ["bwb:9781716568831"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T14:50:32.915024"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T14:50:32.915024"}}
+/type/author /authors/OL10785700A 1 2022-10-19T14:58:05.882934 {"type": {"key": "/type/author"}, "name": "Viii Fighter Command", "key": "/authors/OL10785700A", "source_records": ["bwb:9781716458989"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T14:58:05.882934"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T14:58:05.882934"}}
+/type/author /authors/OL10786046A 1 2022-10-19T15:21:22.545454 {"type": {"key": "/type/author"}, "name": "Juan C. Luna", "key": "/authors/OL10786046A", "source_records": ["bwb:9798886275438"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T15:21:22.545454"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T15:21:22.545454"}}
+/type/author /authors/OL10786181A 1 2022-10-19T15:29:03.321243 {"type": {"key": "/type/author"}, "name": "Jeanleshea Ellis", "key": "/authors/OL10786181A", "source_records": ["bwb:9781716614200"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T15:29:03.321243"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T15:29:03.321243"}}
+/type/author /authors/OL10786198A 1 2022-10-19T15:29:28.547412 {"type": {"key": "/type/author"}, "name": "Brittni Grant", "key": "/authors/OL10786198A", "source_records": ["bwb:9781716654688"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T15:29:28.547412"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T15:29:28.547412"}}
+/type/author /authors/OL10786231A 1 2022-10-19T15:30:24.327455 {"type": {"key": "/type/author"}, "name": "Pat Pro", "key": "/authors/OL10786231A", "source_records": ["bwb:9781716746826"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T15:30:24.327455"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T15:30:24.327455"}}
+/type/author /authors/OL10786938A 1 2022-10-19T16:06:16.709191 {"type": {"key": "/type/author"}, "name": "Kniova Metcalfe", "key": "/authors/OL10786938A", "source_records": ["bwb:9781716575754"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T16:06:16.709191"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T16:06:16.709191"}}
+/type/author /authors/OL10786970A 1 2022-10-19T16:06:55.225115 {"type": {"key": "/type/author"}, "name": "Dragomir Sokolov", "key": "/authors/OL10786970A", "source_records": ["bwb:9781716632747"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T16:06:55.225115"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T16:06:55.225115"}}
+/type/author /authors/OL10787110A 1 2022-10-19T16:11:33.587106 {"type": {"key": "/type/author"}, "name": "Michael Louis Bordino", "key": "/authors/OL10787110A", "source_records": ["bwb:9781648042973"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T16:11:33.587106"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T16:11:33.587106"}}
+/type/author /authors/OL10787292A 1 2022-10-19T16:24:52.243812 {"type": {"key": "/type/author"}, "name": "Tielly Contrera", "key": "/authors/OL10787292A", "source_records": ["bwb:9781716172595"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T16:24:52.243812"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T16:24:52.243812"}}
+/type/author /authors/OL10787637A 1 2022-10-19T16:45:56.261081 {"type": {"key": "/type/author"}, "name": "James Poslusny", "key": "/authors/OL10787637A", "source_records": ["bwb:9781716598913"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T16:45:56.261081"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T16:45:56.261081"}}
+/type/author /authors/OL10787817A 1 2022-10-19T16:50:53.780388 {"type": {"key": "/type/author"}, "name": "Ana Arellano", "key": "/authors/OL10787817A", "source_records": ["bwb:9781678034016"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T16:50:53.780388"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T16:50:53.780388"}}
+/type/author /authors/OL10787856A 1 2022-10-19T16:52:07.744430 {"type": {"key": "/type/author"}, "name": "C. W. H. Pauli", "key": "/authors/OL10787856A", "source_records": ["bwb:9781716395741"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T16:52:07.744430"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T16:52:07.744430"}}
+/type/author /authors/OL10787965A 1 2022-10-19T17:00:35.713960 {"type": {"key": "/type/author"}, "name": "Phoebe Minson", "key": "/authors/OL10787965A", "source_records": ["bwb:9781008995574"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T17:00:35.713960"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T17:00:35.713960"}}
+/type/author /authors/OL10788355A 1 2022-10-19T17:22:46.176825 {"type": {"key": "/type/author"}, "name": "Didem Havlioğlu", "key": "/authors/OL10788355A", "source_records": ["bwb:9780429279270"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T17:22:46.176825"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T17:22:46.176825"}}
+/type/author /authors/OL10788409A 1 2022-10-19T17:23:49.324548 {"type": {"key": "/type/author"}, "name": "Laura Marie Casey", "key": "/authors/OL10788409A", "source_records": ["bwb:9781958868058"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T17:23:49.324548"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T17:23:49.324548"}}
+/type/author /authors/OL10788838A 1 2022-10-19T17:32:49.351180 {"type": {"key": "/type/author"}, "name": "Nappy Gates", "key": "/authors/OL10788838A", "source_records": ["bwb:9798840842539"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T17:32:49.351180"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T17:32:49.351180"}}
+/type/author /authors/OL10789086A 1 2022-10-19T17:38:05.503957 {"type": {"key": "/type/author"}, "name": "No\u00e9mie Blanchette", "key": "/authors/OL10789086A", "source_records": ["bwb:9781697800876"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T17:38:05.503957"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T17:38:05.503957"}}
+/type/author /authors/OL10789457A 1 2022-10-19T17:47:01.435966 {"type": {"key": "/type/author"}, "name": "Sandi Baete", "key": "/authors/OL10789457A", "source_records": ["bwb:9798986839301"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T17:47:01.435966"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T17:47:01.435966"}}
+/type/author /authors/OL1078973A 3 2009-04-20T04:05:42.266830 {"name": "Ronald L. Terrel", "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "personal_name": "Ronald L. Terrel", "last_modified": {"type": "/type/datetime", "value": "2009-04-20T04:05:42.266830"}, "latest_revision": 3, "key": "/authors/OL1078973A", "type": {"key": "/type/author"}, "revision": 3}
+/type/author /authors/OL10789743A 1 2022-10-19T17:54:01.306769 {"type": {"key": "/type/author"}, "name": "Maria Trusa", "key": "/authors/OL10789743A", "source_records": ["bwb:9798620823772"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T17:54:01.306769"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T17:54:01.306769"}}
+/type/author /authors/OL10789853A 1 2022-10-19T17:56:26.887425 {"type": {"key": "/type/author"}, "name": "Donald Russo", "key": "/authors/OL10789853A", "source_records": ["bwb:9798810766032"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T17:56:26.887425"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T17:56:26.887425"}}
+/type/author /authors/OL10789945A 1 2022-10-19T17:58:24.346200 {"type": {"key": "/type/author"}, "name": "Liudmila Quincoses Clavelo", "key": "/authors/OL10789945A", "source_records": ["bwb:9798351877181"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T17:58:24.346200"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T17:58:24.346200"}}
+/type/author /authors/OL10790325A 1 2022-10-19T18:09:10.463096 {"type": {"key": "/type/author"}, "name": "The Gourmand", "key": "/authors/OL10790325A", "source_records": ["bwb:9783836585897"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T18:09:10.463096"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T18:09:10.463096"}}
+/type/author /authors/OL10790389A 1 2022-10-19T18:10:56.343749 {"type": {"key": "/type/author"}, "name": "Victoria V\u00e1zquez Rozas", "key": "/authors/OL10790389A", "source_records": ["bwb:9781000832990"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T18:10:56.343749"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T18:10:56.343749"}}
+/type/author /authors/OL10790765A 1 2022-10-19T18:30:38.487035 {"type": {"key": "/type/author"}, "name": "Hossamox PUX", "key": "/authors/OL10790765A", "source_records": ["bwb:9798847745253"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T18:30:38.487035"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T18:30:38.487035"}}
+/type/author /authors/OL10790827A 1 2022-10-19T18:32:01.287912 {"type": {"key": "/type/author"}, "name": "Elisabeth Davidson", "key": "/authors/OL10790827A", "source_records": ["bwb:9798352159736"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T18:32:01.287912"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T18:32:01.287912"}}
+/type/author /authors/OL10791211A 1 2022-10-19T18:46:37.719727 {"type": {"key": "/type/author"}, "name": "Janet Wood-Turner", "key": "/authors/OL10791211A", "source_records": ["bwb:9798987028902"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T18:46:37.719727"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T18:46:37.719727"}}
+/type/author /authors/OL10791749A 1 2022-10-19T19:02:03.123053 {"type": {"key": "/type/author"}, "name": "Reyes Publishers", "key": "/authors/OL10791749A", "source_records": ["bwb:9798840349731"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T19:02:03.123053"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T19:02:03.123053"}}
+/type/author /authors/OL10791782A 1 2022-10-19T19:02:42.927977 {"type": {"key": "/type/author"}, "name": "Kanise Marshall", "key": "/authors/OL10791782A", "source_records": ["bwb:9798352559536"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T19:02:42.927977"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T19:02:42.927977"}}
+/type/author /authors/OL10792148A 1 2022-10-19T19:11:49.668077 {"type": {"key": "/type/author"}, "name": "HaiSheng Liu", "key": "/authors/OL10792148A", "source_records": ["bwb:9798885682039"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T19:11:49.668077"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T19:11:49.668077"}}
+/type/author /authors/OL10792633A 1 2022-10-19T19:24:27.826569 {"type": {"key": "/type/author"}, "name": "Gala C\u00f3rdoba", "key": "/authors/OL10792633A", "source_records": ["bwb:9781696195270"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T19:24:27.826569"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T19:24:27.826569"}}
+/type/author /authors/OL10792794A 1 2022-10-19T19:28:43.796580 {"type": {"key": "/type/author"}, "name": "Nemesia Solorio Cadena", "key": "/authors/OL10792794A", "source_records": ["bwb:9798825307008"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T19:28:43.796580"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T19:28:43.796580"}}
+/type/author /authors/OL10792870A 1 2022-10-19T19:30:11.656769 {"type": {"key": "/type/author"}, "name": "Llalis RAMOS", "key": "/authors/OL10792870A", "source_records": ["bwb:9798501762268"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T19:30:11.656769"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T19:30:11.656769"}}
+/type/author /authors/OL10792997A 1 2022-10-19T19:33:11.921339 {"type": {"key": "/type/author"}, "name": "Bibi Hayworth", "key": "/authors/OL10792997A", "source_records": ["bwb:9798837477133"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T19:33:11.921339"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T19:33:11.921339"}}
+/type/author /authors/OL10793105A 1 2022-10-19T19:37:13.574900 {"type": {"key": "/type/author"}, "name": "Clarence Graham White", "key": "/authors/OL10793105A", "source_records": ["bwb:9781948609722"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T19:37:13.574900"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T19:37:13.574900"}}
+/type/author /authors/OL10793548A 1 2022-10-19T19:52:58.552631 {"type": {"key": "/type/author"}, "name": "Digna Hanken", "key": "/authors/OL10793548A", "source_records": ["bwb:9798351681528"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T19:52:58.552631"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T19:52:58.552631"}}
+/type/author /authors/OL10793661A 1 2022-10-19T19:56:42.434946 {"type": {"key": "/type/author"}, "name": "Michael Olimphat", "key": "/authors/OL10793661A", "source_records": ["bwb:9798351910222"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T19:56:42.434946"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T19:56:42.434946"}}
+/type/author /authors/OL10793714A 1 2022-10-19T19:58:28.493710 {"type": {"key": "/type/author"}, "name": "Virginia Baltay", "key": "/authors/OL10793714A", "source_records": ["bwb:9780578502946"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T19:58:28.493710"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T19:58:28.493710"}}
+/type/author /authors/OL1079398A 2 2008-08-20T02:00:30.0455 {"name": "Rafael Fernandez", "personal_name": "Rafael Fernandez", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T02:00:30.0455"}, "key": "/authors/OL1079398A", "birth_date": "1927", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10794176A 1 2022-10-19T20:10:32.976086 {"type": {"key": "/type/author"}, "name": "Charles S. Sliger", "key": "/authors/OL10794176A", "source_records": ["bwb:9798408623167"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T20:10:32.976086"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T20:10:32.976086"}}
+/type/author /authors/OL10794225A 1 2022-10-19T20:11:55.635899 {"type": {"key": "/type/author"}, "name": "Creature Book", "key": "/authors/OL10794225A", "source_records": ["bwb:9798825840826"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T20:11:55.635899"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T20:11:55.635899"}}
+/type/author /authors/OL10794574A 1 2022-10-19T20:21:34.591229 {"type": {"key": "/type/author"}, "name": "Lu\u00eds Vendramel", "key": "/authors/OL10794574A", "source_records": ["bwb:9781667435633"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T20:21:34.591229"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T20:21:34.591229"}}
+/type/author /authors/OL10794825A 1 2022-10-19T20:28:06.473346 {"type": {"key": "/type/author"}, "name": "Diana Laverdure", "key": "/authors/OL10794825A", "source_records": ["bwb:9781617813306"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T20:28:06.473346"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T20:28:06.473346"}}
+/type/author /authors/OL10795144A 1 2022-10-19T20:36:34.077803 {"type": {"key": "/type/author"}, "name": "Manmatha Nath SHASTRI", "key": "/authors/OL10795144A", "source_records": ["bwb:9798474993478"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T20:36:34.077803"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T20:36:34.077803"}}
+/type/author /authors/OL10795288A 1 2022-10-19T20:40:27.279659 {"type": {"key": "/type/author"}, "name": "E. J. Rey", "key": "/authors/OL10795288A", "source_records": ["bwb:9798794841480"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T20:40:27.279659"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T20:40:27.279659"}}
+/type/author /authors/OL1079574A 2 2008-08-20T02:01:27.249307 {"name": "Beryl F. Manthorp", "personal_name": "Beryl F. Manthorp", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T02:01:27.249307"}, "key": "/authors/OL1079574A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10795908A 1 2022-10-19T20:58:50.261626 {"type": {"key": "/type/author"}, "name": "Ouractkids Zac", "key": "/authors/OL10795908A", "source_records": ["bwb:9798570859128"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T20:58:50.261626"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T20:58:50.261626"}}
+/type/author /authors/OL10796007A 1 2022-10-19T21:01:45.937503 {"type": {"key": "/type/author"}, "name": "Petra Studer", "key": "/authors/OL10796007A", "source_records": ["bwb:9798806252679"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T21:01:45.937503"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T21:01:45.937503"}}
+/type/author /authors/OL10796482A 1 2022-10-19T21:17:51.417815 {"type": {"key": "/type/author"}, "name": "Mary Ann DeLong", "key": "/authors/OL10796482A", "source_records": ["bwb:9781665728812"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T21:17:51.417815"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T21:17:51.417815"}}
+/type/author /authors/OL10797261A 1 2022-10-19T21:43:45.555937 {"type": {"key": "/type/author"}, "name": "Allahu Book Haush", "key": "/authors/OL10797261A", "source_records": ["bwb:9798482379295"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T21:43:45.555937"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T21:43:45.555937"}}
+/type/author /authors/OL10797325A 1 2022-10-19T21:45:32.421159 {"type": {"key": "/type/author"}, "name": "Jo Mira", "key": "/authors/OL10797325A", "source_records": ["bwb:9798844478994"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T21:45:32.421159"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T21:45:32.421159"}}
+/type/author /authors/OL10797405A 1 2022-10-19T21:47:35.122628 {"type": {"key": "/type/author"}, "name": "Simone Jensen", "key": "/authors/OL10797405A", "source_records": ["bwb:9798841292760"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T21:47:35.122628"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T21:47:35.122628"}}
+/type/author /authors/OL1079749A 2 2008-08-20T02:02:24.213218 {"name": "Simon R. H. Spicer", "personal_name": "Simon R. H. Spicer", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T02:02:24.213218"}, "key": "/authors/OL1079749A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10797805A 1 2022-10-19T21:59:53.092018 {"type": {"key": "/type/author"}, "name": "Humphrey Okereke", "key": "/authors/OL10797805A", "source_records": ["bwb:9780960117727"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T21:59:53.092018"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T21:59:53.092018"}}
+/type/author /authors/OL1079782A 2 2008-08-20T02:02:43.436229 {"name": "Gerhart Egger", "personal_name": "Gerhart Egger", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T02:02:43.436229"}, "key": "/authors/OL1079782A", "birth_date": "1916", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10797922A 1 2022-10-19T22:02:39.564853 {"type": {"key": "/type/author"}, "name": "E. M. Cily Tabane", "key": "/authors/OL10797922A", "source_records": ["bwb:9781668469996"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T22:02:39.564853"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T22:02:39.564853"}}
+/type/author /authors/OL10798363A 1 2022-10-19T22:13:38.827856 {"type": {"key": "/type/author"}, "name": "S. K. Babla Book", "key": "/authors/OL10798363A", "source_records": ["bwb:9798421803614"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T22:13:38.827856"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T22:13:38.827856"}}
+/type/author /authors/OL10798552A 1 2022-10-19T22:20:02.743085 {"type": {"key": "/type/author"}, "name": "Angela Mari Braida", "key": "/authors/OL10798552A", "source_records": ["bwb:9788891325839"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T22:20:02.743085"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T22:20:02.743085"}}
+/type/author /authors/OL10799207A 1 2022-10-19T22:41:19.226111 {"type": {"key": "/type/author"}, "name": "Gou Campo", "key": "/authors/OL10799207A", "source_records": ["bwb:9798709777149"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T22:41:19.226111"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T22:41:19.226111"}}
+/type/author /authors/OL10799419A 1 2022-10-19T22:46:52.349713 {"type": {"key": "/type/author"}, "name": "Brendan Shay Basham", "key": "/authors/OL10799419A", "source_records": ["bwb:9780063241084"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T22:46:52.349713"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T22:46:52.349713"}}
+/type/author /authors/OL10799555A 1 2022-10-19T22:52:22.152988 {"type": {"key": "/type/author"}, "name": "Jeffrey Michael Smith", "key": "/authors/OL10799555A", "source_records": ["bwb:9798986852010"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T22:52:22.152988"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T22:52:22.152988"}}
+/type/author /authors/OL10799648A 1 2022-10-19T22:55:38.301459 {"type": {"key": "/type/author"}, "name": "Alberto Cecchetti", "key": "/authors/OL10799648A", "source_records": ["bwb:9798351379456"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T22:55:38.301459"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T22:55:38.301459"}}
+/type/author /authors/OL10800452A 1 2022-10-19T23:22:55.868971 {"type": {"key": "/type/author"}, "name": "Mekita Pierce", "key": "/authors/OL10800452A", "source_records": ["bwb:9798844205606"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T23:22:55.868971"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T23:22:55.868971"}}
+/type/author /authors/OL1080049A 2 2008-08-20T02:04:13.626856 {"name": "Harry L. Shniderman", "personal_name": "Harry L. Shniderman", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T02:04:13.626856"}, "key": "/authors/OL1080049A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10800698A 1 2022-10-19T23:31:43.452231 {"type": {"key": "/type/author"}, "name": "Brian Gaull", "key": "/authors/OL10800698A", "source_records": ["bwb:9781638124535"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T23:31:43.452231"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T23:31:43.452231"}}
+/type/author /authors/OL10800960A 1 2022-10-19T23:38:42.641836 {"type": {"key": "/type/author"}, "name": "Vicky Fox", "key": "/authors/OL10800960A", "source_records": ["bwb:9781781612408"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T23:38:42.641836"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T23:38:42.641836"}}
+/type/author /authors/OL10801110A 1 2022-10-19T23:43:09.643158 {"type": {"key": "/type/author"}, "name": "Sharon PARKES", "key": "/authors/OL10801110A", "source_records": ["bwb:9798603490045"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T23:43:09.643158"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T23:43:09.643158"}}
+/type/author /authors/OL10801239A 1 2022-10-19T23:46:36.381023 {"type": {"key": "/type/author"}, "name": "Mika Rayne", "key": "/authors/OL10801239A", "source_records": ["bwb:9798417342097"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T23:46:36.381023"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T23:46:36.381023"}}
+/type/author /authors/OL10801277A 1 2022-10-19T23:47:20.205518 {"type": {"key": "/type/author"}, "name": "A. M. Decker", "key": "/authors/OL10801277A", "source_records": ["bwb:9798352387436"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T23:47:20.205518"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T23:47:20.205518"}}
+/type/author /authors/OL10801329A 1 2022-10-19T23:48:27.892457 {"type": {"key": "/type/author"}, "name": "Color RADD", "key": "/authors/OL10801329A", "source_records": ["bwb:9798835237852"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-19T23:48:27.892457"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-19T23:48:27.892457"}}
+/type/author /authors/OL1080293A 2 2008-08-20T02:05:28.928937 {"name": "Petro R. Sodol", "personal_name": "Petro R. Sodol", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T02:05:28.928937"}, "key": "/authors/OL1080293A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL1080301A 2 2008-08-20T02:05:30.164115 {"name": "Gabriel Bannerman-Richter", "personal_name": "Gabriel Bannerman-Richter", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T02:05:30.164115"}, "key": "/authors/OL1080301A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10803023A 1 2022-10-20T01:03:43.751189 {"type": {"key": "/type/author"}, "name": "burks Publishing", "key": "/authors/OL10803023A", "source_records": ["bwb:9798430335779"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-20T01:03:43.751189"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-20T01:03:43.751189"}}
+/type/author /authors/OL10803109A 1 2022-10-20T01:05:36.895118 {"type": {"key": "/type/author"}, "name": "Mary McColy", "key": "/authors/OL10803109A", "source_records": ["bwb:9798352815908"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-20T01:05:36.895118"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-20T01:05:36.895118"}}
+/type/author /authors/OL10803168A 1 2022-10-20T01:07:23.908125 {"type": {"key": "/type/author"}, "name": "Julie Burks", "key": "/authors/OL10803168A", "source_records": ["bwb:9798840733271"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-20T01:07:23.908125"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-20T01:07:23.908125"}}
+/type/author /authors/OL10803452A 1 2022-10-20T01:18:08.817735 {"type": {"key": "/type/author"}, "name": "Grant Delgatty", "key": "/authors/OL10803452A", "source_records": ["bwb:9798986915913"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-20T01:18:08.817735"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-20T01:18:08.817735"}}
+/type/author /authors/OL10803586A 1 2022-10-20T01:22:20.931563 {"type": {"key": "/type/author"}, "name": "Stephanie Noel", "key": "/authors/OL10803586A", "source_records": ["bwb:9798887591896"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-20T01:22:20.931563"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-20T01:22:20.931563"}}
+/type/author /authors/OL10804360A 1 2022-10-20T01:47:52.093155 {"type": {"key": "/type/author"}, "name": "Christina Hall3's Christina Hall3's Book", "key": "/authors/OL10804360A", "source_records": ["bwb:9798788663128"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-20T01:47:52.093155"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-20T01:47:52.093155"}}
+/type/author /authors/OL10804519A 1 2022-10-20T01:52:04.786450 {"type": {"key": "/type/author"}, "name": "Brigitte Mayer", "key": "/authors/OL10804519A", "source_records": ["bwb:9798809010627"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-20T01:52:04.786450"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-20T01:52:04.786450"}}
+/type/author /authors/OL10804637A 1 2022-10-20T01:55:44.126651 {"type": {"key": "/type/author"}, "name": "Verlag Publishing", "key": "/authors/OL10804637A", "source_records": ["bwb:9798707855924"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-20T01:55:44.126651"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-20T01:55:44.126651"}}
+/type/author /authors/OL10804787A 1 2022-10-20T01:59:20.927894 {"type": {"key": "/type/author"}, "name": "Son Albini", "key": "/authors/OL10804787A", "source_records": ["bwb:9798848093902"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-20T01:59:20.927894"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-20T01:59:20.927894"}}
+/type/author /authors/OL10804808A 1 2022-10-20T01:59:48.872319 {"type": {"key": "/type/author"}, "name": "Agatha Count", "key": "/authors/OL10804808A", "source_records": ["bwb:9798842708444"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-20T01:59:48.872319"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-20T01:59:48.872319"}}
+/type/author /authors/OL10804925A 1 2022-10-20T02:03:51.079073 {"type": {"key": "/type/author"}, "name": "L. Keating", "key": "/authors/OL10804925A", "source_records": ["bwb:9798885906029"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-20T02:03:51.079073"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-20T02:03:51.079073"}}
+/type/author /authors/OL10805074A 1 2022-10-20T02:10:14.089457 {"type": {"key": "/type/author"}, "name": "Daniel Fulford", "key": "/authors/OL10805074A", "source_records": ["bwb:9798218075170"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-20T02:10:14.089457"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-20T02:10:14.089457"}}
+/type/author /authors/OL10805097A 1 2022-10-20T02:11:23.858914 {"type": {"key": "/type/author"}, "name": "Rachel Heise Bolten", "key": "/authors/OL10805097A", "source_records": ["bwb:9798218075248"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-20T02:11:23.858914"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-20T02:11:23.858914"}}
+/type/author /authors/OL10805407A 1 2022-10-20T02:23:01.881463 {"type": {"key": "/type/author"}, "name": "Ernest Hemingwa", "key": "/authors/OL10805407A", "source_records": ["bwb:9798675861408"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-20T02:23:01.881463"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-20T02:23:01.881463"}}
+/type/author /authors/OL10805514A 1 2022-10-20T02:27:49.768193 {"type": {"key": "/type/author"}, "name": "Tribal Publishing", "key": "/authors/OL10805514A", "source_records": ["bwb:9798986873602"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-20T02:27:49.768193"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-20T02:27:49.768193"}}
+/type/author /authors/OL10806183A 1 2022-10-20T02:52:20.805873 {"type": {"key": "/type/author"}, "name": "ZhaoXiu Teng", "key": "/authors/OL10806183A", "source_records": ["bwb:9798885686570"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-20T02:52:20.805873"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-20T02:52:20.805873"}}
+/type/author /authors/OL10806272A 1 2022-10-20T02:54:37.725350 {"type": {"key": "/type/author"}, "name": "Leonora Peto", "key": "/authors/OL10806272A", "source_records": ["bwb:9798532838611"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-20T02:54:37.725350"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-20T02:54:37.725350"}}
+/type/author /authors/OL10806453A 1 2022-10-20T02:58:56.622873 {"type": {"key": "/type/author"}, "name": "Spιdey Clarke", "key": "/authors/OL10806453A", "source_records": ["bwb:9798843269777"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-20T02:58:56.622873"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-20T02:58:56.622873"}}
+/type/author /authors/OL10806936A 1 2022-10-20T03:15:48.030095 {"type": {"key": "/type/author"}, "name": "Millie Blanche", "key": "/authors/OL10806936A", "source_records": ["bwb:9798524277473"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-20T03:15:48.030095"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-20T03:15:48.030095"}}
+/type/author /authors/OL10807188A 1 2022-10-20T03:23:18.917372 {"type": {"key": "/type/author"}, "name": "Britni Burr", "key": "/authors/OL10807188A", "source_records": ["bwb:9798848145465"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-20T03:23:18.917372"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-20T03:23:18.917372"}}
+/type/author /authors/OL1080752A 2 2008-08-20T02:08:17.239009 {"name": "Peter J. McGuire", "personal_name": "Peter J. McGuire", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T02:08:17.239009"}, "key": "/authors/OL1080752A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10807645A 1 2022-10-20T03:41:37.155791 {"type": {"key": "/type/author"}, "name": "C. J. Patel", "key": "/authors/OL10807645A", "source_records": ["bwb:9798823941426"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-20T03:41:37.155791"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-20T03:41:37.155791"}}
+/type/author /authors/OL10808043A 1 2022-10-20T03:58:54.779257 {"type": {"key": "/type/author"}, "name": "Monika Kaname", "key": "/authors/OL10808043A", "source_records": ["bwb:9781975352318"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-20T03:58:54.779257"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-20T03:58:54.779257"}}
+/type/author /authors/OL10808046A 1 2022-10-20T03:58:57.867144 {"type": {"key": "/type/author"}, "name": "Brandon Bovia", "key": "/authors/OL10808046A", "source_records": ["bwb:9781975361310"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-20T03:58:57.867144"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-20T03:58:57.867144"}}
+/type/author /authors/OL10808486A 1 2022-10-20T04:14:42.692289 {"type": {"key": "/type/author"}, "name": "Avery LaPlante", "key": "/authors/OL10808486A", "source_records": ["bwb:9798841406310"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-20T04:14:42.692289"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-20T04:14:42.692289"}}
+/type/author /authors/OL10808515A 1 2022-10-20T04:16:56.752551 {"type": {"key": "/type/author"}, "name": "Trace Richards", "key": "/authors/OL10808515A", "source_records": ["bwb:9780982821831"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-20T04:16:56.752551"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-20T04:16:56.752551"}}
+/type/author /authors/OL10808786A 1 2022-10-20T04:26:45.332561 {"type": {"key": "/type/author"}, "name": "Doom Gallery", "key": "/authors/OL10808786A", "source_records": ["bwb:9798848117080"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-20T04:26:45.332561"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-20T04:26:45.332561"}}
+/type/author /authors/OL10808953A 1 2022-10-20T04:30:58.158629 {"type": {"key": "/type/author"}, "name": "25th Birthday", "key": "/authors/OL10808953A", "source_records": ["bwb:9798721116247"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-20T04:30:58.158629"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-20T04:30:58.158629"}}
+/type/author /authors/OL10808995A 1 2022-10-20T04:32:10.881448 {"type": {"key": "/type/author"}, "name": "Kaviyaraj R", "key": "/authors/OL10808995A", "source_records": ["bwb:9798847191791"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-20T04:32:10.881448"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-20T04:32:10.881448"}}
+/type/author /authors/OL10809034A 1 2022-10-20T04:33:15.086741 {"type": {"key": "/type/author"}, "name": "Jurado Jurado Viernes", "key": "/authors/OL10809034A", "source_records": ["bwb:9798840187395"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-20T04:33:15.086741"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-20T04:33:15.086741"}}
+/type/author /authors/OL10809047A 1 2022-10-20T04:33:32.158758 {"type": {"key": "/type/author"}, "name": "Linda Spry", "key": "/authors/OL10809047A", "source_records": ["bwb:9798351110592"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-20T04:33:32.158758"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-20T04:33:32.158758"}}
+/type/author /authors/OL10809081A 1 2022-10-20T04:34:24.633973 {"type": {"key": "/type/author"}, "name": "Fernanda Nilson", "key": "/authors/OL10809081A", "source_records": ["bwb:9798761548534"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-20T04:34:24.633973"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-20T04:34:24.633973"}}
+/type/author /authors/OL10809268A 1 2022-10-20T04:40:41.501915 {"type": {"key": "/type/author"}, "name": "Stephan Thijssen", "key": "/authors/OL10809268A", "source_records": ["bwb:9781642705324"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-20T04:40:41.501915"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-20T04:40:41.501915"}}
+/type/author /authors/OL10809304A 1 2022-10-20T04:41:24.804980 {"type": {"key": "/type/author"}, "name": "the Book Camel", "key": "/authors/OL10809304A", "source_records": ["bwb:9798986922805"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-20T04:41:24.804980"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-20T04:41:24.804980"}}
+/type/author /authors/OL10810046A 1 2022-10-20T05:08:02.637851 {"type": {"key": "/type/author"}, "name": "Klara Benesovska", "key": "/authors/OL10810046A", "source_records": ["bwb:9788028000233"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-20T05:08:02.637851"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-20T05:08:02.637851"}}
+/type/author /authors/OL10810111A 1 2022-10-20T05:11:11.613935 {"type": {"key": "/type/author"}, "name": "Philip Stroud", "key": "/authors/OL10810111A", "source_records": ["bwb:9798351294568"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-20T05:11:11.613935"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-20T05:11:11.613935"}}
+/type/author /authors/OL10810762A 1 2022-10-20T05:36:27.032083 {"type": {"key": "/type/author"}, "name": "Sharon Mokebolt", "key": "/authors/OL10810762A", "source_records": ["bwb:9798443378602"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-20T05:36:27.032083"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-20T05:36:27.032083"}}
+/type/author /authors/OL10810773A 1 2022-10-20T05:37:16.998088 {"type": {"key": "/type/author"}, "name": "Albert Bigelow Paine", "key": "/authors/OL10810773A", "source_records": ["bwb:9798848210118"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-20T05:37:16.998088"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-20T05:37:16.998088"}}
+/type/author /authors/OL10811119A 1 2022-10-20T05:49:47.627343 {"type": {"key": "/type/author"}, "name": "Christine Gust", "key": "/authors/OL10811119A", "source_records": ["bwb:9781646481101"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-20T05:49:47.627343"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-20T05:49:47.627343"}}
+/type/author /authors/OL10811341A 1 2022-10-20T05:56:19.171046 {"type": {"key": "/type/author"}, "name": "Jonathon C. James", "key": "/authors/OL10811341A", "source_records": ["bwb:9798756941401"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-20T05:56:19.171046"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-20T05:56:19.171046"}}
+/type/author /authors/OL1081161A 2 2008-08-20T02:10:35.757307 {"name": "Diana L. Stone", "personal_name": "Diana L. Stone", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T02:10:35.757307"}, "key": "/authors/OL1081161A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10811997A 1 2022-10-20T08:23:39.631654 {"type": {"key": "/type/author"}, "name": "G\u00fcl Y\u0131lmaz", "personal_name": "G\u00fcl Y\u0131lmaz", "key": "/authors/OL10811997A", "source_records": ["ia:cocukisimlerisoz0000unse"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-20T08:23:39.631654"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-20T08:23:39.631654"}}
+/type/author /authors/OL10812085A 1 2022-10-20T09:04:05.751942 {"type": {"key": "/type/author"}, "name": "Jean-Fran\u00e7ois Herdoin", "personal_name": "Jean-Fran\u00e7ois Herdoin", "key": "/authors/OL10812085A", "source_records": ["ia:decouvrirletaich0000herd"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-20T09:04:05.751942"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-20T09:04:05.751942"}}
+/type/author /authors/OL10812154A 1 2022-10-20T09:17:57.789771 {"type": {"key": "/type/author"}, "name": "Ulrich Ruoff", "personal_name": "Ulrich Ruoff", "birth_date": "1940", "key": "/authors/OL10812154A", "source_records": ["ia:lebenimpfahlbaub0000ruof"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-20T09:17:57.789771"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-20T09:17:57.789771"}}
+/type/author /authors/OL10812382A 1 2022-10-20T11:04:16.770864 {"type": {"key": "/type/author"}, "name": "Samuel Minier", "key": "/authors/OL10812382A", "source_records": ["amazon:1478387807"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-20T11:04:16.770864"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-20T11:04:16.770864"}}
+/type/author /authors/OL10812820A 1 2022-10-21T00:04:36.537184 {"type": {"key": "/type/author"}, "name": "Cate Pitterle", "key": "/authors/OL10812820A", "source_records": ["amazon:1947960008"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-21T00:04:36.537184"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-21T00:04:36.537184"}}
+/type/author /authors/OL10812899A 1 2022-10-21T04:33:46.873793 {"type": {"key": "/type/author"}, "name": "Qingxiang", "personal_name": "Qingxiang", "key": "/authors/OL10812899A", "source_records": ["ia:yujieci0001qing"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-21T04:33:46.873793"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-21T04:33:46.873793"}}
+/type/author /authors/OL1081325A 2 2008-08-20T02:11:35.143743 {"name": "Hans Diehl", "personal_name": "Hans Diehl", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T02:11:35.143743"}, "key": "/authors/OL1081325A", "birth_date": "1946", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL1081335A 2 2008-08-20T02:11:37.160831 {"name": "Tom Fallon", "personal_name": "Tom Fallon", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T02:11:37.160831"}, "key": "/authors/OL1081335A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10813399A 1 2022-10-22T02:44:20.233620 {"type": {"key": "/type/author"}, "name": "NYU Stern Department of Economics", "key": "/authors/OL10813399A", "source_records": ["amazon:1536930997"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-22T02:44:20.233620"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-22T02:44:20.233620"}}
+/type/author /authors/OL10813626A 1 2022-10-22T05:57:54.897595 {"type": {"key": "/type/author"}, "name": "Geoffrey David West", "personal_name": "Geoffrey David West", "key": "/authors/OL10813626A", "source_records": ["ia:architecturalsal0000west"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-22T05:57:54.897595"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-22T05:57:54.897595"}}
+/type/author /authors/OL10813943A 1 2022-10-23T04:40:47.087351 {"type": {"key": "/type/author"}, "name": "Bowen Tian", "personal_name": "Bowen Tian", "key": "/authors/OL10813943A", "source_records": ["ia:conglingkaishidr0000tian"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-23T04:40:47.087351"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-23T04:40:47.087351"}}
+/type/author /authors/OL1081410A 2 2008-08-20T02:12:07.151468 {"name": "Nick Stone", "personal_name": "Nick Stone", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T02:12:07.151468"}, "key": "/authors/OL1081410A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10814130A 1 2022-10-23T06:01:48.489459 {"type": {"key": "/type/author"}, "name": "Kyle O'Connell", "personal_name": "Kyle O'Connell", "key": "/authors/OL10814130A", "source_records": ["ia:cycles0000ocon"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-23T06:01:48.489459"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-23T06:01:48.489459"}}
+/type/author /authors/OL10814363A 1 2022-10-24T04:55:49.015397 {"type": {"key": "/type/author"}, "name": "Petra Hesse", "personal_name": "Petra Hesse", "birth_date": "1966", "key": "/authors/OL10814363A", "source_records": ["ia:partyforwilleine0000unse"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-24T04:55:49.015397"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-24T04:55:49.015397"}}
+/type/author /authors/OL10814418A 1 2022-10-24T13:21:32.645209 {"type": {"key": "/type/author"}, "name": "Pascal-Alexandre Tissot", "key": "/authors/OL10814418A", "source_records": ["amazon:027480428X"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-24T13:21:32.645209"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-24T13:21:32.645209"}}
+/type/author /authors/OL10814528A 1 2022-10-25T04:31:00.655225 {"type": {"key": "/type/author"}, "name": "Marcel Ravin", "personal_name": "Marcel Ravin", "birth_date": "1970", "key": "/authors/OL10814528A", "source_records": ["ia:dunrocheralautre0000ravi"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-25T04:31:00.655225"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-25T04:31:00.655225"}}
+/type/author /authors/OL10815829A 1 2022-10-27T14:01:30.290701 {"type": {"key": "/type/author"}, "name": "Strzalkowska", "key": "/authors/OL10815829A", "source_records": ["amazon:8447111911"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-27T14:01:30.290701"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-27T14:01:30.290701"}}
+/type/author /authors/OL10816031A 1 2022-10-28T01:30:34.476590 {"type": {"key": "/type/author"}, "name": "Ram Hari Har", "key": "/authors/OL10816031A", "source_records": ["amazon:8189422650"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-28T01:30:34.476590"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-28T01:30:34.476590"}}
+/type/author /authors/OL10816115A 1 2022-10-28T04:41:55.589901 {"type": {"key": "/type/author"}, "name": "Jin heng zi", "personal_name": "Jin heng zi", "key": "/authors/OL10816115A", "source_records": ["ia:darendoubuzhidao0000unse"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-28T04:41:55.589901"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-28T04:41:55.589901"}}
+/type/author /authors/OL10816161A 1 2022-10-28T04:55:19.159917 {"type": {"key": "/type/author"}, "name": "Ritie Toelanie", "personal_name": "Ritie Toelanie", "key": "/authors/OL10816161A", "source_records": ["ia:vanzwerfkeitotsi0000toel"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-28T04:55:19.159917"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-28T04:55:19.159917"}}
+/type/author /authors/OL10816449A 1 2022-10-28T07:23:30.753804 {"type": {"key": "/type/author"}, "name": "SAKUISHI-H", "key": "/authors/OL10816449A", "source_records": ["amazon:2756016888"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-28T07:23:30.753804"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-28T07:23:30.753804"}}
+/type/author /authors/OL1081664A 2 2008-08-20T02:13:58.266085 {"name": "Petras Vasinauskas", "personal_name": "Petras Vasinauskas", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T02:13:58.266085"}, "key": "/authors/OL1081664A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10816759A 1 2022-10-28T20:53:48.367826 {"type": {"key": "/type/author"}, "name": "Mads Mikkelsen", "key": "/authors/OL10816759A", "source_records": ["amazon:6317599300"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-28T20:53:48.367826"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-28T20:53:48.367826"}}
+/type/author /authors/OL10816837A 1 2022-10-28T23:48:46.216194 {"type": {"key": "/type/author"}, "name": "Weygandt, J., Kimmel, P., & Kieso, D.", "key": "/authors/OL10816837A", "source_records": ["amazon:1118751752"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-28T23:48:46.216194"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-28T23:48:46.216194"}}
+/type/author /authors/OL10817066A 1 2022-10-29T05:37:16.484840 {"type": {"key": "/type/author"}, "name": "Re Miu", "personal_name": "Re Miu", "key": "/authors/OL10817066A", "source_records": ["ia:yuanlaideshijie30000unse"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-29T05:37:16.484840"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-29T05:37:16.484840"}}
+/type/author /authors/OL10817517A 1 2022-10-29T22:47:40.370283 {"type": {"key": "/type/author"}, "name": "HENRIK FEXEUS", "key": "/authors/OL10817517A", "source_records": ["amazon:8546501300"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-29T22:47:40.370283"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-29T22:47:40.370283"}}
+/type/author /authors/OL10817823A 1 2022-10-30T08:24:10.643843 {"type": {"key": "/type/author"}, "name": "urban Trosch", "key": "/authors/OL10817823A", "source_records": ["amazon:157281778X"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-30T08:24:10.643843"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-30T08:24:10.643843"}}
+/type/author /authors/OL10818228A 1 2022-10-31T04:51:39.655724 {"type": {"key": "/type/author"}, "name": "Karen Saiki", "personal_name": "Karen Saiki", "birth_date": "1955", "key": "/authors/OL10818228A", "source_records": ["ia:baibianxiaolimao0000saik"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-31T04:51:39.655724"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-31T04:51:39.655724"}}
+/type/author /authors/OL10818627A 1 2022-10-31T17:41:16.919020 {"type": {"key": "/type/author"}, "name": "Zakary skiver", "key": "/authors/OL10818627A", "source_records": ["amazon:0578957035"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-10-31T17:41:16.919020"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-31T17:41:16.919020"}}
+/type/author /authors/OL10818884A 1 2022-11-01T04:36:11.644914 {"type": {"key": "/type/author"}, "name": "Xu shuang min", "personal_name": "Xu shuang min", "birth_date": "(1954.7", "death_date": ")", "key": "/authors/OL10818884A", "source_records": ["ia:dianzizhengwugai0000unse"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-01T04:36:11.644914"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-01T04:36:11.644914"}}
+/type/author /authors/OL10818953A 1 2022-11-01T05:57:41.363985 {"type": {"key": "/type/author"}, "name": "Savitskii E M", "key": "/authors/OL10818953A", "source_records": ["amazon:0804700540"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-01T05:57:41.363985"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-01T05:57:41.363985"}}
+/type/author /authors/OL10819034A 1 2022-11-01T09:09:35.133100 {"type": {"key": "/type/author"}, "name": "Alastair Haynesbridge Yvonne Syn", "key": "/authors/OL10819034A", "source_records": ["amazon:1543657451"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-01T09:09:35.133100"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-01T09:09:35.133100"}}
+/type/author /authors/OL10819134A 1 2022-11-01T14:00:48.396690 {"type": {"key": "/type/author"}, "name": "Beatriz Anson Echevarr\u00eda", "key": "/authors/OL10819134A", "source_records": ["amazon:8417553223"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-01T14:00:48.396690"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-01T14:00:48.396690"}}
+/type/author /authors/OL10819330A 1 2022-11-01T21:55:40.388085 {"type": {"key": "/type/author"}, "name": "Dani Julian", "key": "/authors/OL10819330A", "source_records": ["amazon:179430973X"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-01T21:55:40.388085"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-01T21:55:40.388085"}}
+/type/author /authors/OL10819362A 1 2022-11-02T00:13:35.890322 {"type": {"key": "/type/author"}, "name": "George C Harnett", "key": "/authors/OL10819362A", "source_records": ["amazon:1531620760"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-02T00:13:35.890322"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-02T00:13:35.890322"}}
+/type/author /authors/OL10819803A 1 2022-11-05T04:42:38.189488 {"type": {"key": "/type/author"}, "name": "William F. Krekelberg", "personal_name": "William F. Krekelberg", "key": "/authors/OL10819803A", "source_records": ["ia:sanjuancapistran0000krek"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-05T04:42:38.189488"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-05T04:42:38.189488"}}
+/type/author /authors/OL10820449A 1 2022-11-07T09:47:19.169493 {"name": "The Shift Project", "key": "/authors/OL10820449A", "type": {"key": "/type/author"}, "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-07T09:47:19.169493"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-07T09:47:19.169493"}}
+/type/author /authors/OL10820458A 1 2022-11-07T16:44:00.860070 {"name": "Aline Francielle dos Santos Oliveira", "key": "/authors/OL10820458A", "type": {"key": "/type/author"}, "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-07T16:44:00.860070"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-07T16:44:00.860070"}}
+/type/author /authors/OL10820605A 1 2022-11-08T12:24:02.546993 {"type": {"key": "/type/author"}, "name": "Antonio Scarponi", "key": "/authors/OL10820605A", "source_records": ["amazon:3952413283"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-08T12:24:02.546993"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-08T12:24:02.546993"}}
+/type/author /authors/OL10820682A 1 2022-11-08T15:03:54.400494 {"type": {"key": "/type/author"}, "name": "John Frady", "key": "/authors/OL10820682A", "source_records": ["amazon:151279581X"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-08T15:03:54.400494"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-08T15:03:54.400494"}}
+/type/author /authors/OL10820756A 1 2022-11-08T20:10:18.332208 {"type": {"key": "/type/author"}, "name": "konfuzius", "key": "/authors/OL10820756A", "source_records": ["amazon:3379000043"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-08T20:10:18.332208"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-08T20:10:18.332208"}}
+/type/author /authors/OL1082178A 1 2008-04-01T03:28:50.625462 {"name": "Colorado International Invitational Poster Exhibition (3rd 1983 Colorado State University)", "last_modified": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "key": "/authors/OL1082178A", "type": {"key": "/type/author"}, "revision": 1}
+/type/author /authors/OL10821901A 1 2022-11-11T01:13:04.586207 {"type": {"key": "/type/author"}, "name": "James L. Ryan", "personal_name": "James L. Ryan", "key": "/authors/OL10821901A", "source_records": ["marc:marc_scms/20220805_ADAM_MARC_records.mrc:22813517:1660"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-11T01:13:04.586207"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-11T01:13:04.586207"}}
+/type/author /authors/OL10822393A 1 2022-11-11T02:02:01.122106 {"type": {"key": "/type/author"}, "name": "Chantal Spleiss", "key": "/authors/OL10822393A", "source_records": ["amazon:3952505102"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-11T02:02:01.122106"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-11T02:02:01.122106"}}
+/type/author /authors/OL10822553A 1 2022-11-11T02:23:03.874292 {"type": {"key": "/type/author"}, "name": "Mika Pikazo", "key": "/authors/OL10822553A", "source_records": ["amazon:4802511183"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-11T02:23:03.874292"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-11T02:23:03.874292"}}
+/type/author /authors/OL10823205A 1 2022-11-11T03:47:24.681844 {"type": {"key": "/type/author"}, "name": "Bruce Barry And David M Saunders Roy J Lewicki", "key": "/authors/OL10823205A", "source_records": ["amazon:9352602110"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-11T03:47:24.681844"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-11T03:47:24.681844"}}
+/type/author /authors/OL10823246A 1 2022-11-11T03:50:34.031954 {"type": {"key": "/type/author"}, "name": "Jan Godowski", "personal_name": "Jan Godowski", "key": "/authors/OL10823246A", "source_records": ["marc:marc_scms/20220805_ADAM_MARC_records.mrc:52875374:1277"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-11T03:50:34.031954"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-11T03:50:34.031954"}}
+/type/author /authors/OL10823319A 1 2022-11-11T03:55:49.341879 {"type": {"key": "/type/author"}, "name": "Jan Huskowski", "personal_name": "Jan Huskowski", "key": "/authors/OL10823319A", "source_records": ["marc:marc_scms/20220805_ADAM_MARC_records.mrc:53797879:1136"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-11T03:55:49.341879"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-11T03:55:49.341879"}}
+/type/author /authors/OL10823723A 1 2022-11-11T04:39:21.147918 {"type": {"key": "/type/author"}, "name": "Caroline Hitchcock", "personal_name": "Caroline Hitchcock", "birth_date": "1863", "key": "/authors/OL10823723A", "source_records": ["marc:marc_scms/20220805_ADAM_MARC_records.mrc:62122820:1288"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-11T04:39:21.147918"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-11T04:39:21.147918"}}
+/type/author /authors/OL10824074A 1 2022-11-11T05:19:46.317194 {"type": {"key": "/type/author"}, "name": "Adrian Wac\u0142aw Brz\u00f3zka", "personal_name": "Adrian Wac\u0142aw Brz\u00f3zka", "birth_date": "1963", "key": "/authors/OL10824074A", "source_records": ["marc:marc_scms/20220805_ADAM_MARC_records.mrc:70292759:1544"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-11T05:19:46.317194"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-11T05:19:46.317194"}}
+/type/author /authors/OL10824129A 1 2022-11-11T05:29:25.782237 {"type": {"key": "/type/author"}, "name": "O'Brien, Isidore father", "title": "father", "personal_name": "O'Brien, Isidore", "birth_date": "1895", "death_date": "1953", "key": "/authors/OL10824129A", "source_records": ["marc:marc_scms/20220805_ADAM_MARC_records.mrc:72481953:1484"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-11T05:29:25.782237"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-11T05:29:25.782237"}}
+/type/author /authors/OL10824172A 1 2022-11-11T05:34:50.167512 {"type": {"key": "/type/author"}, "name": "Polish American Publishing Company (Chicago)", "key": "/authors/OL10824172A", "source_records": ["marc:marc_scms/20220805_ADAM_MARC_records.mrc:73595206:1537"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-11T05:34:50.167512"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-11T05:34:50.167512"}}
+/type/author /authors/OL10824396A 1 2022-11-11T05:59:06.771846 {"type": {"key": "/type/author"}, "name": "Shen jing hu", "personal_name": "Shen jing hu", "key": "/authors/OL10824396A", "source_records": ["ia:xuediannaoyuyan0006unse"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-11T05:59:06.771846"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-11T05:59:06.771846"}}
+/type/author /authors/OL10824758A 1 2022-11-11T06:46:24.209432 {"type": {"key": "/type/author"}, "name": "Richards, Irene of Atlanta, Ga", "title": "of Atlanta, Ga", "personal_name": "Richards, Irene", "key": "/authors/OL10824758A", "source_records": ["marc:marc_scms/20220805_ADAM_MARC_records.mrc:88697334:1653"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-11T06:46:24.209432"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-11T06:46:24.209432"}}
+/type/author /authors/OL10824874A 1 2022-11-11T06:54:13.284969 {"type": {"key": "/type/author"}, "name": "Frederick Benedict De Berteuil", "personal_name": "Frederick Benedict De Berteuil", "key": "/authors/OL10824874A", "source_records": ["marc:marc_scms/20220805_ADAM_MARC_records.mrc:90539681:1172"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-11T06:54:13.284969"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-11T06:54:13.284969"}}
+/type/author /authors/OL10825145A 1 2022-11-11T07:36:06.394864 {"type": {"key": "/type/author"}, "name": "S. W\u0142oszczewski", "personal_name": "S. W\u0142oszczewski", "key": "/authors/OL10825145A", "source_records": ["marc:marc_scms/20220805_ADAM_MARC_records.mrc:99255847:1258"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-11T07:36:06.394864"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-11T07:36:06.394864"}}
+/type/author /authors/OL10825468A 1 2022-11-11T08:09:36.103406 {"type": {"key": "/type/author"}, "name": "Piotr Ga\u0142ecki", "personal_name": "Piotr Ga\u0142ecki", "key": "/authors/OL10825468A", "source_records": ["marc:marc_scms/20220805_ADAM_MARC_records.mrc:106781904:1988"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-11T08:09:36.103406"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-11T08:09:36.103406"}}
+/type/author /authors/OL10826119A 1 2022-11-11T09:33:37.167878 {"type": {"key": "/type/author"}, "name": "Eug\u00e8ne Joly", "personal_name": "Eug\u00e8ne Joly", "birth_date": "1901", "death_date": "1987", "key": "/authors/OL10826119A", "source_records": ["marc:marc_scms/20220805_ADAM_MARC_records.mrc:124921973:1979"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-11T09:33:37.167878"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-11T09:33:37.167878"}}
+/type/author /authors/OL10826306A 1 2022-11-11T09:54:49.539087 {"type": {"key": "/type/author"}, "name": "Plat", "personal_name": "Plat", "key": "/authors/OL10826306A", "source_records": ["marc:marc_scms/20220805_ADAM_MARC_records.mrc:129480951:1654"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-11T09:54:49.539087"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-11T09:54:49.539087"}}
+/type/author /authors/OL10826551A 1 2022-11-11T15:38:26.892064 {"type": {"key": "/type/author"}, "name": "PHILIPS JEAN-PAUL", "key": "/authors/OL10826551A", "source_records": ["amazon:2876926989"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-11T15:38:26.892064"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-11T15:38:26.892064"}}
+/type/author /authors/OL10826688A 1 2022-11-11T18:53:39.587191 {"type": {"key": "/type/author"}, "name": "roland koberg", "key": "/authors/OL10826688A", "source_records": ["promise:bwb_daily_pallets_2022-10-20"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-11T18:53:39.587191"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-11T18:53:39.587191"}}
+/type/author /authors/OL10827064A 1 2022-11-11T20:01:21.318401 {"type": {"key": "/type/author"}, "name": "Isabella Beeton", "key": "/authors/OL10827064A", "source_records": ["promise:bwb_daily_pallets_2022-11-03"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-11T20:01:21.318401"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-11T20:01:21.318401"}}
+/type/author /authors/OL10828239A 1 2022-11-11T23:42:26.707767 {"type": {"key": "/type/author"}, "name": "Peter Mabie", "key": "/authors/OL10828239A", "source_records": ["promise:bwb_daily_pallets_2022-10-25"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-11T23:42:26.707767"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-11T23:42:26.707767"}}
+/type/author /authors/OL10828379A 1 2022-11-12T00:11:34.126814 {"type": {"key": "/type/author"}, "name": "A. G Macdonell", "key": "/authors/OL10828379A", "source_records": ["promise:bwb_daily_pallets_2022-10-24"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-12T00:11:34.126814"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-12T00:11:34.126814"}}
+/type/author /authors/OL10828610A 1 2022-11-12T00:47:40.261334 {"type": {"key": "/type/author"}, "name": "Paul Dodgson", "key": "/authors/OL10828610A", "source_records": ["promise:bwb_daily_pallets_2022-10-20"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-12T00:47:40.261334"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-12T00:47:40.261334"}}
+/type/author /authors/OL10828958A 1 2022-11-12T01:40:26.705382 {"type": {"key": "/type/author"}, "name": "G\u00f3rska Renata L.", "key": "/authors/OL10828958A", "source_records": ["promise:bwb_daily_pallets_2022-10-18"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-12T01:40:26.705382"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-12T01:40:26.705382"}}
+/type/author /authors/OL10828959A 1 2022-11-12T01:40:27.108982 {"type": {"key": "/type/author"}, "name": "Szymkiewicz Jacek", "key": "/authors/OL10828959A", "source_records": ["promise:bwb_daily_pallets_2022-10-18"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-12T01:40:27.108982"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-12T01:40:27.108982"}}
+/type/author /authors/OL10829365A 1 2022-11-12T02:35:46.035905 {"type": {"key": "/type/author"}, "name": "Edward S. LUCE", "key": "/authors/OL10829365A", "source_records": ["promise:bwb_daily_pallets_2022-10-17"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-12T02:35:46.035905"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-12T02:35:46.035905"}}
+/type/author /authors/OL10829400A 1 2022-11-12T02:44:09.766568 {"type": {"key": "/type/author"}, "name": "Donathan P Heimbecker", "key": "/authors/OL10829400A", "source_records": ["promise:bwb_daily_pallets_2022-10-17"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-12T02:44:09.766568"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-12T02:44:09.766568"}}
+/type/author /authors/OL10829441A 1 2022-11-12T02:50:18.122030 {"type": {"key": "/type/author"}, "name": "edin brenes", "key": "/authors/OL10829441A", "source_records": ["promise:bwb_daily_pallets_2022-10-17"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-12T02:50:18.122030"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-12T02:50:18.122030"}}
+/type/author /authors/OL10829545A 1 2022-11-12T03:08:20.165060 {"type": {"key": "/type/author"}, "name": "Christine Contini", "key": "/authors/OL10829545A", "source_records": ["promise:bwb_daily_pallets_2022-10-17"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-12T03:08:20.165060"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-12T03:08:20.165060"}}
+/type/author /authors/OL10829609A 1 2022-11-12T03:17:21.708864 {"type": {"key": "/type/author"}, "name": "Phyllis Whitney", "key": "/authors/OL10829609A", "source_records": ["promise:bwb_daily_pallets_2022-10-17"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-12T03:17:21.708864"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-12T03:17:21.708864"}}
+/type/author /authors/OL10829688A 1 2022-11-12T03:33:34.210312 {"type": {"key": "/type/author"}, "name": "Elzbieta Safarzynska", "key": "/authors/OL10829688A", "source_records": ["promise:bwb_daily_pallets_2022-10-17"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-12T03:33:34.210312"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-12T03:33:34.210312"}}
+/type/author /authors/OL1082976A 2 2008-08-20T02:20:31.30174 {"name": "Christiane Berthelot", "personal_name": "Christiane Berthelot", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T02:20:31.30174"}, "key": "/authors/OL1082976A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10829911A 1 2022-11-12T04:09:07.469982 {"type": {"key": "/type/author"}, "name": "Howard C Rice", "key": "/authors/OL10829911A", "source_records": ["promise:bwb_daily_pallets_2022-10-17"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-12T04:09:07.469982"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-12T04:09:07.469982"}}
+/type/author /authors/OL1083020A 2 2008-08-20T02:20:39.482193 {"name": "Lennart Ba\u0308ck", "personal_name": "Lennart Ba\u0308ck", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T02:20:39.482193"}, "key": "/authors/OL1083020A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10830234A 1 2022-11-12T04:51:34.584108 {"type": {"key": "/type/author"}, "name": "Morrison, Laura, Dean, Michael, Makhlouf-Carter, Claire, Kingstone, Peter, Kholeif, Omar, Harrison, Sarah M., Wood, Jason, Daniels, Chris Paul, Black,", "key": "/authors/OL10830234A", "source_records": ["promise:bwb_daily_pallets_2022-10-13"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-12T04:51:34.584108"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-12T04:51:34.584108"}}
+/type/author /authors/OL10830779A 1 2022-11-13T20:13:39.325288 {"type": {"key": "/type/author"}, "name": "cecil howard", "key": "/authors/OL10830779A", "source_records": ["amazon:0060201312"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-13T20:13:39.325288"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-13T20:13:39.325288"}}
+/type/author /authors/OL10831322A 1 2022-11-14T18:24:49.049266 {"type": {"key": "/type/author"}, "name": "Simpson, Leslie O., Blake, Nancy", "key": "/authors/OL10831322A", "source_records": ["promise:bwb_daily_pallets_2022-10-10"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-14T18:24:49.049266"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-14T18:24:49.049266"}}
+/type/author /authors/OL10832125A 1 2022-11-14T21:06:49.273554 {"type": {"key": "/type/author"}, "name": "Xiao hong ci", "key": "/authors/OL10832125A", "source_records": ["promise:bwb_daily_pallets_2022-10-03"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-14T21:06:49.273554"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-14T21:06:49.273554"}}
+/type/author /authors/OL10832823A 1 2022-11-15T05:30:45.538906 {"type": {"key": "/type/author"}, "name": "Terri Brashear", "key": "/authors/OL10832823A", "source_records": ["amazon:1508528667"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-15T05:30:45.538906"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-15T05:30:45.538906"}}
+/type/author /authors/OL10833292A 1 2022-11-15T09:54:10.203878 {"type": {"key": "/type/author"}, "name": "Valerie J.", "key": "/authors/OL10833292A", "source_records": ["amazon:1584265329"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-15T09:54:10.203878"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-15T09:54:10.203878"}}
+/type/author /authors/OL10833431A 1 2022-11-15T11:11:42.576920 {"type": {"key": "/type/author"}, "name": "Joseph L. Allen", "key": "/authors/OL10833431A", "source_records": ["amazon:6877470591"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-15T11:11:42.576920"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-15T11:11:42.576920"}}
+/type/author /authors/OL10833600A 1 2022-11-15T12:30:10.543266 {"type": {"key": "/type/author"}, "name": "Ry\u00f4ko Kui", "key": "/authors/OL10833600A", "source_records": ["amazon:8419195243"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-15T12:30:10.543266"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-15T12:30:10.543266"}}
+/type/author /authors/OL10833660A 1 2022-11-15T12:59:13.613363 {"type": {"key": "/type/author"}, "name": "Elihu Van Groeneveld", "key": "/authors/OL10833660A", "source_records": ["amazon:9464050543"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-15T12:59:13.613363"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-15T12:59:13.613363"}}
+/type/author /authors/OL10833721A 1 2022-11-15T13:27:33.286898 {"type": {"key": "/type/author"}, "name": "DE CRAENE ANN", "key": "/authors/OL10833721A", "source_records": ["amazon:9464450304"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-15T13:27:33.286898"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-15T13:27:33.286898"}}
+/type/author /authors/OL10833939A 1 2022-11-15T15:32:41.159080 {"type": {"key": "/type/author"}, "name": "Calista Flockhart", "key": "/authors/OL10833939A", "source_records": ["amazon:6305622876"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-15T15:32:41.159080"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-15T15:32:41.159080"}}
+/type/author /authors/OL10834505A 1 2022-11-16T02:29:28.296593 {"type": {"key": "/type/author"}, "name": "Samuel Carlos Araya", "key": "/authors/OL10834505A", "source_records": ["amazon:8494466895"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-16T02:29:28.296593"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-16T02:29:28.296593"}}
+/type/author /authors/OL10834537A 1 2022-11-16T03:39:20.180918 {"type": {"key": "/type/author"}, "name": "Virginia-West Virginia Shorthorn Breeders' Association", "key": "/authors/OL10834537A", "source_records": ["ia:CAT31450608"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-16T03:39:20.180918"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-16T03:39:20.180918"}}
+/type/author /authors/OL10834737A 1 2022-11-16T07:43:39.743653 {"type": {"key": "/type/author"}, "name": "Li sheng yue", "personal_name": "Li sheng yue", "key": "/authors/OL10834737A", "source_records": ["ia:xuexiwangdechaoq0000unse"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-16T07:43:39.743653"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-16T07:43:39.743653"}}
+/type/author /authors/OL10834824A 1 2022-11-16T09:26:02.873917 {"type": {"key": "/type/author"}, "name": "Dave McCroskey", "personal_name": "Dave McCroskey", "key": "/authors/OL10834824A", "source_records": ["ia:bestdayofyourlif0000dave"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-16T09:26:02.873917"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-16T09:26:02.873917"}}
+/type/author /authors/OL10834867A 1 2022-11-16T10:44:06.160640 {"type": {"key": "/type/author"}, "name": "Luan guo jun", "personal_name": "Luan guo jun", "key": "/authors/OL10834867A", "source_records": ["ia:miaoyurensheng0000unse"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-16T10:44:06.160640"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-16T10:44:06.160640"}}
+/type/author /authors/OL10835623A 1 2022-11-17T02:38:47.266346 {"type": {"key": "/type/author"}, "name": "Virgilia Corsinovi", "key": "/authors/OL10835623A", "source_records": ["bwb:9781644615867"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-17T02:38:47.266346"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T02:38:47.266346"}}
+/type/author /authors/OL10835673A 1 2022-11-17T02:42:21.743332 {"type": {"key": "/type/author"}, "name": "Selena Cobb-Flowers", "key": "/authors/OL10835673A", "source_records": ["bwb:9781788480017"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-17T02:42:21.743332"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T02:42:21.743332"}}
+/type/author /authors/OL10836431A 1 2022-11-17T03:43:54.640603 {"type": {"key": "/type/author"}, "name": "Constantin Gheorghe Opran", "key": "/authors/OL10836431A", "source_records": ["bwb:9783035735499"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-17T03:43:54.640603"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T03:43:54.640603"}}
+/type/author /authors/OL10836540A 1 2022-11-17T03:55:51.632769 {"type": {"key": "/type/author"}, "name": "Liz Harker", "key": "/authors/OL10836540A", "source_records": ["bwb:9781786123640"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-17T03:55:51.632769"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T03:55:51.632769"}}
+/type/author /authors/OL10836868A 1 2022-11-17T04:33:43.618498 {"type": {"key": "/type/author"}, "name": "Roger Felber", "key": "/authors/OL10836868A", "source_records": ["bwb:9781786233790"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-17T04:33:43.618498"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T04:33:43.618498"}}
+/type/author /authors/OL10836900A 1 2022-11-17T04:35:58.377159 {"type": {"key": "/type/author"}, "name": "C. N. Naylor", "key": "/authors/OL10836900A", "source_records": ["bwb:9781528925983"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-17T04:35:58.377159"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T04:35:58.377159"}}
+/type/author /authors/OL10837054A 1 2022-11-17T04:44:08.843374 {"type": {"key": "/type/author"}, "name": "Geraldine Sakall", "key": "/authors/OL10837054A", "source_records": ["bwb:9781643780672"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-17T04:44:08.843374"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T04:44:08.843374"}}
+/type/author /authors/OL10837231A 1 2022-11-17T04:50:36.657463 {"type": {"key": "/type/author"}, "name": "Dena Kinney", "key": "/authors/OL10837231A", "source_records": ["bwb:9781645758037"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-17T04:50:36.657463"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T04:50:36.657463"}}
+/type/author /authors/OL1083723A 2 2008-08-20T02:23:47.707857 {"name": "Pascaline Mourier-Casile", "personal_name": "Pascaline Mourier-Casile", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T02:23:47.707857"}, "key": "/authors/OL1083723A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10837503A 1 2022-11-17T05:02:56.572079 {"type": {"key": "/type/author"}, "name": "Penelope Murch", "key": "/authors/OL10837503A", "source_records": ["bwb:9781528985314"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-17T05:02:56.572079"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T05:02:56.572079"}}
+/type/author /authors/OL10837596A 1 2022-11-17T05:07:44.061517 {"type": {"key": "/type/author"}, "name": "Ren\u00e9 Goscinny; Albert Uderzo; Raghnaid", "key": "/authors/OL10837596A", "source_records": ["bwb:9781913573072"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-17T05:07:44.061517"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T05:07:44.061517"}}
+/type/author /authors/OL10837897A 1 2022-11-17T05:22:24.382860 {"type": {"key": "/type/author"}, "name": "Muhammad Yudhistira Azis", "key": "/authors/OL10837897A", "source_records": ["bwb:9783035737639"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-17T05:22:24.382860"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T05:22:24.382860"}}
+/type/author /authors/OL1083792A 1 2008-04-01T03:28:50.625462 {"name": "St. Clair, Dianne Warren.", "personal_name": "St. Clair, Dianne Warren.", "last_modified": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "key": "/authors/OL1083792A", "type": {"key": "/type/author"}, "revision": 1}
+/type/author /authors/OL10838111A 1 2022-11-17T05:33:29.959691 {"type": {"key": "/type/author"}, "name": "Melvyn Miller", "key": "/authors/OL10838111A", "source_records": ["bwb:9781736576342"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-17T05:33:29.959691"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T05:33:29.959691"}}
+/type/author /authors/OL10838344A 1 2022-11-17T05:40:34.867701 {"type": {"key": "/type/author"}, "name": "Greg K. Bathgate", "key": "/authors/OL10838344A", "source_records": ["bwb:9781922792259"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-17T05:40:34.867701"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T05:40:34.867701"}}
+/type/author /authors/OL10838497A 1 2022-11-17T05:45:15.050092 {"type": {"key": "/type/author"}, "name": "Tanja Ineichen", "key": "/authors/OL10838497A", "source_records": ["bwb:9783527511549"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-17T05:45:15.050092"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T05:45:15.050092"}}
+/type/author /authors/OL10838946A 1 2022-11-17T06:00:21.037075 {"type": {"key": "/type/author"}, "name": "Theo Gordon", "key": "/authors/OL10838946A", "source_records": ["bwb:9781781578698"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-17T06:00:21.037075"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T06:00:21.037075"}}
+/type/author /authors/OL10838991A 1 2022-11-17T06:01:30.718939 {"type": {"key": "/type/author"}, "name": "Catherine Wendeler", "key": "/authors/OL10838991A", "source_records": ["bwb:9781839988318"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-17T06:01:30.718939"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T06:01:30.718939"}}
+/type/author /authors/OL1083911A 1 2008-04-01T03:28:50.625462 {"name": "Wilaiwan Wannitikul.", "personal_name": "Wilaiwan Wannitikul.", "last_modified": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "key": "/authors/OL1083911A", "type": {"key": "/type/author"}, "revision": 1}
+/type/author /authors/OL10839137A 1 2022-11-17T06:06:28.067134 {"type": {"key": "/type/author"}, "name": "Honneth", "key": "/authors/OL10839137A", "source_records": ["bwb:9781509556335"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-17T06:06:28.067134"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T06:06:28.067134"}}
+/type/author /authors/OL10839265A 1 2022-11-17T06:12:00.064622 {"type": {"key": "/type/author"}, "name": "Template", "key": "/authors/OL10839265A", "source_records": ["bwb:9781638400820"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-17T06:12:00.064622"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T06:12:00.064622"}}
+/type/author /authors/OL10839503A 1 2022-11-17T06:21:00.702473 {"type": {"key": "/type/author"}, "name": "Swapna N. Williamson", "key": "/authors/OL10839503A", "source_records": ["bwb:9783031217272"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-17T06:21:00.702473"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T06:21:00.702473"}}
+/type/author /authors/OL1083968A 3 2017-11-29T19:30:58.644950 {"name": "G. M. Tovmasi\u0361an", "personal_name": "G. M. Tovmasi\u0361an", "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2017-11-29T19:30:58.644950"}, "latest_revision": 3, "key": "/authors/OL1083968A", "type": {"key": "/type/author"}, "revision": 3}
+/type/author /authors/OL10839753A 1 2022-11-17T06:31:55.438776 {"type": {"key": "/type/author"}, "name": "Francisco Mendon\u00e7a", "key": "/authors/OL10839753A", "source_records": ["bwb:9783031208973"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-17T06:31:55.438776"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T06:31:55.438776"}}
+/type/author /authors/OL10839863A 1 2022-11-17T06:36:12.388441 {"type": {"key": "/type/author"}, "name": "Rafael Rachel Neis", "key": "/authors/OL10839863A", "source_records": ["bwb:9780520391192"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-17T06:36:12.388441"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T06:36:12.388441"}}
+/type/author /authors/OL10839884A 1 2022-11-17T06:36:56.909908 {"type": {"key": "/type/author"}, "name": "Tim Schlippe", "key": "/authors/OL10839884A", "source_records": ["bwb:9789811980398"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-17T06:36:56.909908"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T06:36:56.909908"}}
+/type/author /authors/OL10839981A 1 2022-11-17T06:39:55.435494 {"type": {"key": "/type/author"}, "name": "Brooke Fridley", "key": "/authors/OL10839981A", "source_records": ["bwb:9781071629857"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-17T06:39:55.435494"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T06:39:55.435494"}}
+/type/author /authors/OL10840152A 1 2022-11-17T06:46:38.564935 {"type": {"key": "/type/author"}, "name": "Kimberly B. Marshall", "key": "/authors/OL10840152A", "source_records": ["bwb:9781648895111"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-17T06:46:38.564935"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T06:46:38.564935"}}
+/type/author /authors/OL10840621A 1 2022-11-17T07:06:30.998569 {"type": {"key": "/type/author"}, "name": "Anne Julia", "key": "/authors/OL10840621A", "source_records": ["bwb:9781649796394"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-17T07:06:30.998569"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T07:06:30.998569"}}
+/type/author /authors/OL10840768A 1 2022-11-17T07:14:11.762724 {"type": {"key": "/type/author"}, "name": "HORSFALL TURNER", "key": "/authors/OL10840768A", "source_records": ["bwb:9781848226012"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-17T07:14:11.762724"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T07:14:11.762724"}}
+/type/author /authors/OL10840882A 1 2022-11-17T07:18:13.773371 {"type": {"key": "/type/author"}, "name": "ENSIGN", "key": "/authors/OL10840882A", "source_records": ["bwb:9781266212789"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-17T07:18:13.773371"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T07:18:13.773371"}}
+/type/author /authors/OL10840971A 1 2022-11-17T07:22:14.722061 {"type": {"key": "/type/author"}, "name": "Gianclaudio Malgieri", "key": "/authors/OL10840971A", "source_records": ["bwb:9780192870339"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-17T07:22:14.722061"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T07:22:14.722061"}}
+/type/author /authors/OL10841038A 1 2022-11-17T07:24:46.282451 {"type": {"key": "/type/author"}, "name": "Andrea Virk", "key": "/authors/OL10841038A", "source_records": ["bwb:9781398412941"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-17T07:24:46.282451"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T07:24:46.282451"}}
+/type/author /authors/OL10841047A 1 2022-11-17T07:25:01.417738 {"type": {"key": "/type/author"}, "name": "Ning Sawangjaeng", "key": "/authors/OL10841047A", "source_records": ["bwb:9781647505950"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-17T07:25:01.417738"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T07:25:01.417738"}}
+/type/author /authors/OL10841415A 1 2022-11-17T07:40:34.791816 {"type": {"key": "/type/author"}, "name": "Judy Theo Lehner", "key": "/authors/OL10841415A", "source_records": ["bwb:9781977253583"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-17T07:40:34.791816"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T07:40:34.791816"}}
+/type/author /authors/OL10841514A 1 2022-11-17T07:44:53.162368 {"type": {"key": "/type/author"}, "name": "Laurel \"Yoyo\" Scheel", "key": "/authors/OL10841514A", "source_records": ["bwb:9781324020691"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-17T07:44:53.162368"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T07:44:53.162368"}}
+/type/author /authors/OL10841544A 1 2022-11-17T07:45:59.200175 {"type": {"key": "/type/author"}, "name": "Clemente J. Navarro Y\u00e1\u00f1ez", "key": "/authors/OL10841544A", "source_records": ["bwb:9783031208843"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-17T07:45:59.200175"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T07:45:59.200175"}}
+/type/author /authors/OL10841580A 1 2022-11-17T07:48:53.802184 {"type": {"key": "/type/author"}, "name": "Paolozzi Foundation Staff", "key": "/authors/OL10841580A", "source_records": ["bwb:9780956912893"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-17T07:48:53.802184"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T07:48:53.802184"}}
+/type/author /authors/OL10841939A 1 2022-11-17T09:03:00.340950 {"type": {"key": "/type/author"}, "name": "Teresa Cardona", "key": "/authors/OL10841939A", "source_records": ["amazon:8419419125"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-17T09:03:00.340950"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T09:03:00.340950"}}
+/type/author /authors/OL10842130A 1 2022-11-17T11:06:02.074597 {"type": {"key": "/type/author"}, "name": "Diana Capriotti", "key": "/authors/OL10842130A", "source_records": ["bwb:9780440414452"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-17T11:06:02.074597"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T11:06:02.074597"}}
+/type/author /authors/OL10842407A 1 2022-11-17T13:32:52.358745 {"type": {"key": "/type/author"}, "name": "SCHOFELD", "key": "/authors/OL10842407A", "source_records": ["bwb:9780201877328"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-17T13:32:52.358745"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T13:32:52.358745"}}
+/type/author /authors/OL10842417A 1 2022-11-17T13:33:33.463332 {"type": {"key": "/type/author"}, "name": "Zdravko Zupan", "key": "/authors/OL10842417A", "source_records": ["amazon:8687071035"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-17T13:33:33.463332"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T13:33:33.463332"}}
+/type/author /authors/OL10842672A 1 2022-11-17T14:46:07.120522 {"type": {"key": "/type/author"}, "name": "National Curriculum", "key": "/authors/OL10842672A", "source_records": ["bwb:9780582066304"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-17T14:46:07.120522"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T14:46:07.120522"}}
+/type/author /authors/OL10842719A 1 2022-11-17T14:53:07.266732 {"type": {"key": "/type/author"}, "name": "Tamara S Gilbert", "key": "/authors/OL10842719A", "source_records": ["amazon:1498444385"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-17T14:53:07.266732"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T14:53:07.266732"}}
+/type/author /authors/OL10842893A 1 2022-11-17T15:34:17.610659 {"type": {"key": "/type/author"}, "name": "Edgar D", "key": "/authors/OL10842893A", "source_records": ["bwb:9780571203574"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-17T15:34:17.610659"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T15:34:17.610659"}}
+/type/author /authors/OL10843000A 1 2022-11-17T15:57:35.849432 {"type": {"key": "/type/author"}, "name": "Mark Ashcraft", "key": "/authors/OL10843000A", "source_records": ["bwb:9781405817875"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-17T15:57:35.849432"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T15:57:35.849432"}}
+/type/author /authors/OL10843156A 1 2022-11-17T16:39:42.906724 {"type": {"key": "/type/author"}, "name": "Cooter, Robert B., Jr.", "key": "/authors/OL10843156A", "source_records": ["bwb:9780131480124"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-17T16:39:42.906724"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T16:39:42.906724"}}
+/type/author /authors/OL1084315A 2 2008-08-20T02:26:35.771984 {"name": "Amadeo Petitbo\u0301 Juan", "personal_name": "Amadeo Petitbo\u0301 Juan", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T02:26:35.771984"}, "key": "/authors/OL1084315A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10843334A 1 2022-11-17T17:46:27.994142 {"type": {"key": "/type/author"}, "name": "Ricardo J. Elia", "key": "/authors/OL10843334A", "source_records": ["bwb:9780759101838"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-17T17:46:27.994142"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T17:46:27.994142"}}
+/type/author /authors/OL10843401A 1 2022-11-17T18:06:51.155263 {"type": {"key": "/type/author"}, "name": "R McLiam-Wilson", "key": "/authors/OL10843401A", "source_records": ["bwb:9780436202865"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-17T18:06:51.155263"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T18:06:51.155263"}}
+/type/author /authors/OL10843647A 1 2022-11-17T19:24:17.536827 {"type": {"key": "/type/author"}, "name": "Wells Fargo & Company", "key": "/authors/OL10843647A", "source_records": ["amazon:1115598368"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-17T19:24:17.536827"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T19:24:17.536827"}}
+/type/author /authors/OL10843847A 1 2022-11-17T19:46:48.039599 {"type": {"key": "/type/author"}, "name": "Xingang Zhou", "key": "/authors/OL10843847A", "source_records": ["amazon:3640803086"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-17T19:46:48.039599"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T19:46:48.039599"}}
+/type/author /authors/OL10843874A 1 2022-11-17T19:50:58.365040 {"type": {"key": "/type/author"}, "name": "Geol Cat Staff", "key": "/authors/OL10843874A", "source_records": ["bwb:9780632005260"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-17T19:50:58.365040"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T19:50:58.365040"}}
+/type/author /authors/OL10843888A 1 2022-11-17T19:52:10.708637 {"type": {"key": "/type/author"}, "name": "Florian Kurtz", "key": "/authors/OL10843888A", "source_records": ["amazon:3656318573"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-17T19:52:10.708637"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T19:52:10.708637"}}
+/type/author /authors/OL10844212A 1 2022-11-17T20:40:24.872424 {"type": {"key": "/type/author"}, "name": "David Rossmaur", "key": "/authors/OL10844212A", "source_records": ["bwb:9780754107026"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-17T20:40:24.872424"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T20:40:24.872424"}}
+/type/author /authors/OL10844645A 1 2022-11-17T21:39:15.721487 {"type": {"key": "/type/author"}, "name": "De Nir Staff", "key": "/authors/OL10844645A", "source_records": ["bwb:9780091900724"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-17T21:39:15.721487"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T21:39:15.721487"}}
+/type/author /authors/OL1084490A 2 2008-08-20T02:27:16.81795 {"name": "A. M. Hidro\u0304menou", "personal_name": "A. M. Hidro\u0304menou", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T02:27:16.81795"}, "key": "/authors/OL1084490A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10845043A 1 2022-11-17T22:44:50.635552 {"type": {"key": "/type/author"}, "name": "My EconLab", "key": "/authors/OL10845043A", "source_records": ["bwb:9780321129963"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-17T22:44:50.635552"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T22:44:50.635552"}}
+/type/author /authors/OL10845067A 1 2022-11-17T22:54:08.301339 {"type": {"key": "/type/author"}, "name": "Anthony William Finlay Taylerson", "key": "/authors/OL10845067A", "source_records": ["bwb:9780214200892"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-17T22:54:08.301339"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T22:54:08.301339"}}
+/type/author /authors/OL10845255A 1 2022-11-17T23:26:46.364013 {"type": {"key": "/type/author"}, "name": "Hanfling", "key": "/authors/OL10845255A", "source_records": ["bwb:9780631127239"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-17T23:26:46.364013"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T23:26:46.364013"}}
+/type/author /authors/OL10845819A 1 2022-11-18T01:26:03.776640 {"type": {"key": "/type/author"}, "name": "Oor", "key": "/authors/OL10845819A", "source_records": ["bwb:9780214204630"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-18T01:26:03.776640"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-18T01:26:03.776640"}}
+/type/author /authors/OL10845941A 1 2022-11-18T01:55:00.918445 {"type": {"key": "/type/author"}, "name": "Jones Werner Staff", "key": "/authors/OL10845941A", "source_records": ["bwb:9780130125491"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-18T01:55:00.918445"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-18T01:55:00.918445"}}
+/type/author /authors/OL10846075A 1 2022-11-18T02:15:58.418980 {"type": {"key": "/type/author"}, "name": "Skyvington", "key": "/authors/OL10846075A", "source_records": ["bwb:9780214205972"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-18T02:15:58.418980"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-18T02:15:58.418980"}}
+/type/author /authors/OL10846287A 1 2022-11-18T02:52:05.365506 {"type": {"key": "/type/author"}, "name": "Mandy Mittelbach", "key": "/authors/OL10846287A", "source_records": ["bwb:9783640154746"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-18T02:52:05.365506"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-18T02:52:05.365506"}}
+/type/author /authors/OL10846512A 1 2022-11-18T03:30:17.272235 {"type": {"key": "/type/author"}, "name": "Francesc Mosto", "key": "/authors/OL10846512A", "source_records": ["bwb:9780091935917"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-18T03:30:17.272235"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-18T03:30:17.272235"}}
+/type/author /authors/OL10846703A 1 2022-11-18T04:06:48.273109 {"type": {"key": "/type/author"}, "name": "John E. Freund", "key": "/authors/OL10846703A", "source_records": ["bwb:9780132078047"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-18T04:06:48.273109"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-18T04:06:48.273109"}}
+/type/author /authors/OL10846781A 1 2022-11-18T04:19:35.414915 {"type": {"key": "/type/author"}, "name": "Pascal Curin", "key": "/authors/OL10846781A", "source_records": ["amazon:2845039379"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-18T04:19:35.414915"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-18T04:19:35.414915"}}
+/type/author /authors/OL10847205A 1 2022-11-18T05:59:00.252999 {"type": {"key": "/type/author"}, "name": "Committee on Evaluation of USAID Democracy Assistance Programs", "key": "/authors/OL10847205A", "source_records": ["bwb:9780309117371"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-18T05:59:00.252999"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-18T05:59:00.252999"}}
+/type/author /authors/OL10847502A 1 2022-11-18T06:51:45.278312 {"type": {"key": "/type/author"}, "name": "San Francisco Paramedic Association Staff", "key": "/authors/OL10847502A", "source_records": ["bwb:9780132835879"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-18T06:51:45.278312"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-18T06:51:45.278312"}}
+/type/author /authors/OL1084800A 2 2008-08-20T02:29:01.811407 {"name": "J. L. Garci\u0301a Abejo\u0301n", "personal_name": "J. L. Garci\u0301a Abejo\u0301n", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T02:29:01.811407"}, "key": "/authors/OL1084800A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10848056A 1 2022-11-18T07:59:21.991506 {"type": {"key": "/type/author"}, "name": "Gerald A. Grau", "key": "/authors/OL10848056A", "source_records": ["bwb:9780815517313"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-18T07:59:21.991506"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-18T07:59:21.991506"}}
+/type/author /authors/OL10848090A 1 2022-11-18T08:03:08.355838 {"type": {"key": "/type/author"}, "name": "Kenneth R. Stephens", "key": "/authors/OL10848090A", "source_records": ["bwb:9781456732301"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-18T08:03:08.355838"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-18T08:03:08.355838"}}
+/type/author /authors/OL10848282A 1 2022-11-18T08:27:29.628176 {"type": {"key": "/type/author"}, "name": "Committee on the Impact of Biotechnology on Farm-Level Economics and Sustainability", "key": "/authors/OL10848282A", "source_records": ["bwb:9780309147095"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-18T08:27:29.628176"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-18T08:27:29.628176"}}
+/type/author /authors/OL10848509A 1 2022-11-18T08:52:09.934226 {"type": {"key": "/type/author"}, "name": "Charles Onselen", "key": "/authors/OL10848509A", "source_records": ["bwb:9781446433379"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-18T08:52:09.934226"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-18T08:52:09.934226"}}
+/type/author /authors/OL10848602A 1 2022-11-18T09:06:36.029232 {"type": {"key": "/type/author"}, "name": "Petrucci & Harwood", "key": "/authors/OL10848602A", "source_records": ["bwb:9780131525801"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-18T09:06:36.029232"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-18T09:06:36.029232"}}
+/type/author /authors/OL10849025A 1 2022-11-18T09:39:00.373050 {"type": {"key": "/type/author"}, "name": "Geraint W. Jones", "key": "/authors/OL10849025A", "source_records": ["bwb:9781909666146"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-18T09:39:00.373050"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-18T09:39:00.373050"}}
+/type/author /authors/OL10849494A 1 2022-11-18T10:08:19.474329 {"type": {"key": "/type/author"}, "name": "Judith L. Van Hoorn", "key": "/authors/OL10849494A", "source_records": ["bwb:9781447965473"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-18T10:08:19.474329"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-18T10:08:19.474329"}}
+/type/author /authors/OL10849967A 1 2022-11-18T10:38:48.187745 {"type": {"key": "/type/author"}, "name": "Zhen Yu Du", "key": "/authors/OL10849967A", "source_records": ["bwb:9783038260080"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-18T10:38:48.187745"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-18T10:38:48.187745"}}
+/type/author /authors/OL10850262A 1 2022-11-18T10:55:17.029444 {"type": {"key": "/type/author"}, "name": "Beth Berret", "key": "/authors/OL10850262A", "source_records": ["bwb:9781282975507"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-18T10:55:17.029444"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-18T10:55:17.029444"}}
+/type/author /authors/OL10850346A 1 2022-11-18T11:03:09.201787 {"type": {"key": "/type/author"}, "name": "Joachim H\u00f6flich", "key": "/authors/OL10850346A", "source_records": ["bwb:9783653014600"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-18T11:03:09.201787"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-18T11:03:09.201787"}}
+/type/author /authors/OL1085048A 2 2008-08-20T02:30:19.72866 {"name": "Norberto Herrera", "personal_name": "Norberto Herrera", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T02:30:19.72866"}, "key": "/authors/OL1085048A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL1085119A 2 2008-08-20T02:30:32.712905 {"name": "V. Bychkov", "personal_name": "V. Bychkov", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T02:30:32.712905"}, "key": "/authors/OL1085119A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10851200A 1 2022-11-18T12:03:05.432378 {"type": {"key": "/type/author"}, "name": "Helen Par Jones", "key": "/authors/OL10851200A", "source_records": ["bwb:9780099569084"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-18T12:03:05.432378"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-18T12:03:05.432378"}}
+/type/author /authors/OL10851477A 1 2022-11-18T12:25:25.274255 {"type": {"key": "/type/author"}, "name": "Leon Chernyak", "key": "/authors/OL10851477A", "source_records": ["bwb:9781280524998"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-18T12:25:25.274255"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-18T12:25:25.274255"}}
+/type/author /authors/OL10852052A 1 2022-11-18T13:05:19.871337 {"type": {"key": "/type/author"}, "name": "Suad Khalid Al-Bahar", "key": "/authors/OL10852052A", "source_records": ["bwb:9783038262961"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-18T13:05:19.871337"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-18T13:05:19.871337"}}
+/type/author /authors/OL10853044A 1 2022-11-18T14:13:36.540417 {"type": {"key": "/type/author"}, "name": "S. J. William Harmless", "key": "/authors/OL10853044A", "source_records": ["bwb:9781282235229"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-18T14:13:36.540417"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-18T14:13:36.540417"}}
+/type/author /authors/OL10853133A 1 2022-11-18T14:27:08.874962 {"type": {"key": "/type/author"}, "name": "J. L. Petersen", "key": "/authors/OL10853133A", "source_records": ["bwb:9780444598394"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-18T14:27:08.874962"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-18T14:27:08.874962"}}
+/type/author /authors/OL10853442A 1 2022-11-18T14:42:09.481261 {"type": {"key": "/type/author"}, "name": "James P. Wind", "key": "/authors/OL10853442A", "source_records": ["bwb:9781299666221"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-18T14:42:09.481261"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-18T14:42:09.481261"}}
+/type/author /authors/OL10853609A 1 2022-11-18T14:57:17.231568 {"type": {"key": "/type/author"}, "name": "Tie Lin Shi", "key": "/authors/OL10853609A", "source_records": ["bwb:9783038133926"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-18T14:57:17.231568"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-18T14:57:17.231568"}}
+/type/author /authors/OL10853650A 1 2022-11-18T14:59:02.082076 {"type": {"key": "/type/author"}, "name": "An All-of-Government Approach to Increase Resilience for International Chemical, Biological, Radiological, Nuclear, and Explosive (CBRNE) Events Steering Committee ", "key": "/authors/OL10853650A", "source_records": ["bwb:9780309306065"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-18T14:59:02.082076"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-18T14:59:02.082076"}}
+/type/author /authors/OL1085411A 2 2008-08-20T02:31:54.766736 {"name": "Laurene Morley", "personal_name": "Laurene Morley", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T02:31:54.766736"}, "key": "/authors/OL1085411A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10854313A 1 2022-11-18T15:53:39.660012 {"type": {"key": "/type/author"}, "name": "Matthias Militzer", "key": "/authors/OL10854313A", "source_records": ["bwb:9783038131540"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-18T15:53:39.660012"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-18T15:53:39.660012"}}
+/type/author /authors/OL10855860A 1 2022-11-18T17:46:35.694605 {"type": {"key": "/type/author"}, "name": "Andrew J. Rexstraw", "key": "/authors/OL10855860A", "source_records": ["bwb:9781785544064"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-18T17:46:35.694605"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-18T17:46:35.694605"}}
+/type/author /authors/OL10856008A 1 2022-11-18T17:53:40.284917 {"type": {"key": "/type/author"}, "name": "Mark I. Halpern", "key": "/authors/OL10856008A", "source_records": ["bwb:9781483153285"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-18T17:53:40.284917"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-18T17:53:40.284917"}}
+/type/author /authors/OL10856494A 1 2022-11-18T18:14:03.337303 {"type": {"key": "/type/author"}, "name": "Gwen Saunders Jones", "key": "/authors/OL10856494A", "source_records": ["bwb:9781907424670"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-18T18:14:03.337303"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-18T18:14:03.337303"}}
+/type/author /authors/OL10856692A 1 2022-11-18T18:21:52.638520 {"type": {"key": "/type/author"}, "name": "B. R. Craven", "key": "/authors/OL10856692A", "source_records": ["bwb:9781483146157"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-18T18:21:52.638520"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-18T18:21:52.638520"}}
+/type/author /authors/OL10856760A 1 2022-11-18T18:24:42.646183 {"type": {"key": "/type/author"}, "name": "G. D. Kersley", "key": "/authors/OL10856760A", "source_records": ["bwb:9781483282589"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-18T18:24:42.646183"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-18T18:24:42.646183"}}
+/type/author /authors/OL10856823A 1 2022-11-18T18:26:39.791800 {"type": {"key": "/type/author"}, "name": "M. Abecasis", "key": "/authors/OL10856823A", "source_records": ["bwb:9781483136271"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-18T18:26:39.791800"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-18T18:26:39.791800"}}
+/type/author /authors/OL10857249A 1 2022-11-18T18:45:51.664564 {"type": {"key": "/type/author"}, "name": "Mary E. Clutter", "key": "/authors/OL10857249A", "source_records": ["bwb:9781483276427"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-18T18:45:51.664564"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-18T18:45:51.664564"}}
+/type/author /authors/OL10857884A 1 2022-11-18T19:11:58.838220 {"type": {"key": "/type/author"}, "name": "Enzo Valenzi", "key": "/authors/OL10857884A", "source_records": ["bwb:9781483215945"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-18T19:11:58.838220"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-18T19:11:58.838220"}}
+/type/author /authors/OL10858240A 1 2022-11-18T19:29:40.874217 {"type": {"key": "/type/author"}, "name": "B. Sklarz", "key": "/authors/OL10858240A", "source_records": ["bwb:9781483158747"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-18T19:29:40.874217"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-18T19:29:40.874217"}}
+/type/author /authors/OL10858392A 1 2022-11-18T19:33:48.518802 {"type": {"key": "/type/author"}, "name": "G. R. Wilkinson", "key": "/authors/OL10858392A", "source_records": ["bwb:9781483196138"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-18T19:33:48.518802"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-18T19:33:48.518802"}}
+/type/author /authors/OL10858412A 1 2022-11-18T19:34:52.273935 {"type": {"key": "/type/author"}, "name": "Alexandra Kovalč\u00edkov\u00e1", "key": "/authors/OL10858412A", "source_records": ["bwb:9783035700268"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-18T19:34:52.273935"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-18T19:34:52.273935"}}
+/type/author /authors/OL10858701A 1 2022-11-18T19:48:18.463247 {"type": {"key": "/type/author"}, "name": "M. Ziermann", "key": "/authors/OL10858701A", "source_records": ["bwb:9781483298122"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-18T19:48:18.463247"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-18T19:48:18.463247"}}
+/type/author /authors/OL10859141A 1 2022-11-18T20:07:07.635312 {"type": {"key": "/type/author"}, "name": "Zsolt Komaromy", "key": "/authors/OL10859141A", "source_records": ["bwb:9781322064871"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-18T20:07:07.635312"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-18T20:07:07.635312"}}
+/type/author /authors/OL10859319A 1 2022-11-18T20:14:20.932994 {"type": {"key": "/type/author"}, "name": "S. R. Mikulinsky", "key": "/authors/OL10859319A", "source_records": ["bwb:9781483147024"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-18T20:14:20.932994"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-18T20:14:20.932994"}}
+/type/author /authors/OL10859351A 1 2022-11-18T20:15:28.154243 {"type": {"key": "/type/author"}, "name": "G. M. B. Dobson", "key": "/authors/OL10859351A", "source_records": ["bwb:9781483226354"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-18T20:15:28.154243"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-18T20:15:28.154243"}}
+/type/author /authors/OL10859616A 1 2022-11-18T20:29:29.460027 {"type": {"key": "/type/author"}, "name": "Tabea Jenny", "key": "/authors/OL10859616A", "source_records": ["bwb:9783653982695"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-18T20:29:29.460027"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-18T20:29:29.460027"}}
+/type/author /authors/OL10859861A 1 2022-11-18T20:41:32.314391 {"type": {"key": "/type/author"}, "name": "Kayla M. H. Alexander", "key": "/authors/OL10859861A", "source_records": ["bwb:9781786121295"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-18T20:41:32.314391"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-18T20:41:32.314391"}}
+/type/author /authors/OL1086025A 2 2008-08-20T02:34:39.272745 {"name": "Holger E. Eklund", "personal_name": "Holger E. Eklund", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T02:34:39.272745"}, "key": "/authors/OL1086025A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10860277A 1 2022-11-18T21:05:22.639064 {"type": {"key": "/type/author"}, "name": "Daryl Boyd", "key": "/authors/OL10860277A", "source_records": ["bwb:9781788231763"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-18T21:05:22.639064"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-18T21:05:22.639064"}}
+/type/author /authors/OL10860363A 1 2022-11-18T21:15:04.680802 {"type": {"key": "/type/author"}, "name": "Caro Mattogno", "key": "/authors/OL10860363A", "source_records": ["bwb:9781591481560"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-18T21:15:04.680802"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-18T21:15:04.680802"}}
+/type/author /authors/OL10860467A 1 2022-11-18T21:22:54.185562 {"type": {"key": "/type/author"}, "name": "Rosalia Zizzo", "key": "/authors/OL10860467A", "source_records": ["bwb:9781975684099"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-18T21:22:54.185562"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-18T21:22:54.185562"}}
+/type/author /authors/OL10860548A 1 2022-11-18T21:29:21.500684 {"type": {"key": "/type/author"}, "name": "Jing Jing He", "key": "/authors/OL10860548A", "source_records": ["bwb:9783038137542"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-18T21:29:21.500684"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-18T21:29:21.500684"}}
+/type/author /authors/OL10860669A 1 2022-11-18T21:40:42.202208 {"type": {"key": "/type/author"}, "name": "Karl Deeter", "key": "/authors/OL10860669A", "source_records": ["bwb:9780717175635"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-18T21:40:42.202208"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-18T21:40:42.202208"}}
+/type/author /authors/OL1086119A 2 2008-08-20T02:35:01.38264 {"name": "Gilbert Zabern", "personal_name": "Gilbert Zabern", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T02:35:01.38264"}, "key": "/authors/OL1086119A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10861237A 1 2022-11-18T22:30:41.628312 {"type": {"key": "/type/author"}, "name": "Christina Y. H. Lim", "key": "/authors/OL10861237A", "source_records": ["bwb:9783038130390"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-18T22:30:41.628312"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-18T22:30:41.628312"}}
+/type/author /authors/OL10861410A 1 2022-11-18T22:50:22.536993 {"type": {"key": "/type/author"}, "name": "Mamoun Abu-Ayyad", "key": "/authors/OL10861410A", "source_records": ["bwb:9783035730463"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-18T22:50:22.536993"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-18T22:50:22.536993"}}
+/type/author /authors/OL10861566A 1 2022-11-18T23:08:31.697450 {"type": {"key": "/type/author"}, "name": "Aurel Valentin B\u00eerdeanu", "key": "/authors/OL10861566A", "source_records": ["bwb:9783035732771"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-18T23:08:31.697450"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-18T23:08:31.697450"}}
+/type/author /authors/OL10862109A 1 2022-11-19T00:49:51.371180 {"type": {"key": "/type/author"}, "name": "Lowell J. Parkinson", "key": "/authors/OL10862109A", "source_records": ["bwb:9781467132206"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T00:49:51.371180"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T00:49:51.371180"}}
+/type/author /authors/OL10862110A 1 2022-11-19T00:49:51.371180 {"type": {"key": "/type/author"}, "name": "Mardi J. Parkinson", "key": "/authors/OL10862110A", "source_records": ["bwb:9781467132206"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T00:49:51.371180"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T00:49:51.371180"}}
+/type/author /authors/OL10862212A 1 2022-11-19T01:22:01.836228 {"type": {"key": "/type/author"}, "name": "P. D. Nasel'skii?", "key": "/authors/OL10862212A", "source_records": ["bwb:9780511242205"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T01:22:01.836228"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T01:22:01.836228"}}
+/type/author /authors/OL10862572A 1 2022-11-19T02:21:50.376915 {"type": {"key": "/type/author"}, "name": "Juan Jos\u00e9 Lahuerta Alsina", "key": "/authors/OL10862572A", "source_records": ["bwb:9788484780526"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T02:21:50.376915"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T02:21:50.376915"}}
+/type/author /authors/OL10863005A 1 2022-11-19T03:49:01.630430 {"type": {"key": "/type/author"}, "name": "Milan Hromadka", "key": "/authors/OL10863005A", "source_records": ["bwb:9789231008535"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T03:49:01.630430"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T03:49:01.630430"}}
+/type/author /authors/OL10863309A 1 2022-11-19T05:04:13.532644 {"type": {"key": "/type/author"}, "name": "Bernadette J. Palombo", "key": "/authors/OL10863309A", "source_records": ["bwb:9781614233664"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T05:04:13.532644"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T05:04:13.532644"}}
+/type/author /authors/OL10863314A 1 2022-11-19T05:05:10.073811 {"type": {"key": "/type/author"}, "name": "Sieferd Schultz", "key": "/authors/OL10863314A", "source_records": ["bwb:9781439619940"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T05:05:10.073811"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T05:05:10.073811"}}
+/type/author /authors/OL10863661A 1 2022-11-19T06:28:39.433610 {"type": {"key": "/type/author"}, "name": "GIRARD REJEAN (DIR.)", "key": "/authors/OL10863661A", "source_records": ["amazon:2763795811"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T06:28:39.433610"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T06:28:39.433610"}}
+/type/author /authors/OL10863814A 1 2022-11-19T07:11:04.045495 {"type": {"key": "/type/author"}, "name": "LaTia McNeely-Sandiford MSW", "key": "/authors/OL10863814A", "source_records": ["bwb:9781477296073"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T07:11:04.045495"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T07:11:04.045495"}}
+/type/author /authors/OL108638A 1 2008-04-01T03:28:50.625462 {"name": "Jain, S. K. ethnobotanist.", "title": "ethnobotanist.", "personal_name": "Jain, S. K.", "last_modified": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "key": "/authors/OL108638A", "type": {"key": "/type/author"}, "revision": 1}
+/type/author /authors/OL10863929A 1 2022-11-19T07:27:45.398974 {"type": {"key": "/type/author"}, "name": "Robert Alan Hatch", "key": "/authors/OL10863929A", "source_records": ["bwb:9781625850447"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T07:27:45.398974"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T07:27:45.398974"}}
+/type/author /authors/OL10864060A 1 2022-11-19T08:06:06.557233 {"type": {"key": "/type/author"}, "name": "Patrick L. Cote", "key": "/authors/OL10864060A", "source_records": ["bwb:9781425120696"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T08:06:06.557233"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T08:06:06.557233"}}
+/type/author /authors/OL10864225A 1 2022-11-19T08:45:33.668492 {"type": {"key": "/type/author"}, "name": "Graeme G. Baker", "key": "/authors/OL10864225A", "source_records": ["bwb:9780643100763"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T08:45:33.668492"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T08:45:33.668492"}}
+/type/author /authors/OL10864850A 1 2022-11-19T10:40:03.313542 {"type": {"key": "/type/author"}, "name": "W. H. Terrell", "key": "/authors/OL10864850A", "source_records": ["bwb:9780253370143"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T10:40:03.313542"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T10:40:03.313542"}}
+/type/author /authors/OL10865141A 1 2022-11-19T11:43:38.439963 {"type": {"key": "/type/author"}, "name": "Paul D. Rheingold", "key": "/authors/OL10865141A", "source_records": ["bwb:9781439638385"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T11:43:38.439963"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T11:43:38.439963"}}
+/type/author /authors/OL10865303A 1 2022-11-19T12:03:30.885526 {"type": {"key": "/type/author"}, "name": "Sheila E. Murphy", "key": "/authors/OL10865303A", "source_records": ["bwb:9781938521126"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T12:03:30.885526"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T12:03:30.885526"}}
+/type/author /authors/OL10865428A 1 2022-11-19T12:23:29.216950 {"type": {"key": "/type/author"}, "name": "Tim Gleisner", "key": "/authors/OL10865428A", "source_records": ["bwb:9781467114233"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T12:23:29.216950"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T12:23:29.216950"}}
+/type/author /authors/OL10865937A 1 2022-11-19T12:50:47.420228 {"type": {"key": "/type/author"}, "name": "The Key Foundation Inc", "key": "/authors/OL10865937A", "source_records": ["bwb:9781531630935"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T12:50:47.420228"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T12:50:47.420228"}}
+/type/author /authors/OL10865961A 1 2022-11-19T12:51:10.037972 {"type": {"key": "/type/author"}, "name": "Heitor Pergher", "key": "/authors/OL10865961A", "source_records": ["bwb:9781519017802"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T12:51:10.037972"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T12:51:10.037972"}}
+/type/author /authors/OL10866007A 1 2022-11-19T12:52:25.367387 {"type": {"key": "/type/author"}, "name": "Scott Hand", "key": "/authors/OL10866007A", "source_records": ["bwb:9781531650964"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T12:52:25.367387"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T12:52:25.367387"}}
+/type/author /authors/OL1086652A 2 2008-08-20T02:37:22.401116 {"name": "Barbara Krzemien\u0301ska\u0301", "personal_name": "Barbara Krzemien\u0301ska\u0301", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T02:37:22.401116"}, "key": "/authors/OL1086652A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10867049A 1 2022-11-19T13:10:14.577943 {"type": {"key": "/type/author"}, "name": "\u00c1ngel Mario Fern\u00e1ndez", "key": "/authors/OL10867049A", "source_records": ["bwb:9781520216515"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T13:10:14.577943"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T13:10:14.577943"}}
+/type/author /authors/OL10867116A 1 2022-11-19T13:11:21.638878 {"type": {"key": "/type/author"}, "name": "Toby Hazlewood", "key": "/authors/OL10867116A", "source_records": ["bwb:9781520357812"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T13:11:21.638878"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T13:11:21.638878"}}
+/type/author /authors/OL10867301A 1 2022-11-19T13:15:41.234782 {"type": {"key": "/type/author"}, "name": "Hugo Wolf Wolf", "key": "/authors/OL10867301A", "source_records": ["amazon:3743699826"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T13:15:41.234782"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T13:15:41.234782"}}
+/type/author /authors/OL10867503A 1 2022-11-19T13:19:11.151287 {"type": {"key": "/type/author"}, "name": "Tiziana Cuttano", "key": "/authors/OL10867503A", "source_records": ["bwb:9781520409894"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T13:19:11.151287"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T13:19:11.151287"}}
+/type/author /authors/OL10867602A 1 2022-11-19T13:20:40.334767 {"type": {"key": "/type/author"}, "name": "Vincent Tobia", "key": "/authors/OL10867602A", "source_records": ["bwb:9781520497228"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T13:20:40.334767"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T13:20:40.334767"}}
+/type/author /authors/OL10867974A 1 2022-11-19T13:27:07.910694 {"type": {"key": "/type/author"}, "name": "Stephen Hargraves", "key": "/authors/OL10867974A", "source_records": ["bwb:9781520598000"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T13:27:07.910694"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T13:27:07.910694"}}
+/type/author /authors/OL10868413A 1 2022-11-19T13:35:30.344495 {"type": {"key": "/type/author"}, "name": "vignesh karthikeyan", "key": "/authors/OL10868413A", "source_records": ["bwb:9781520707136"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T13:35:30.344495"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T13:35:30.344495"}}
+/type/author /authors/OL10868456A 1 2022-11-19T13:36:19.047585 {"type": {"key": "/type/author"}, "name": "Rebecca Kinsella", "key": "/authors/OL10868456A", "source_records": ["bwb:9781520702827"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T13:36:19.047585"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T13:36:19.047585"}}
+/type/author /authors/OL10868822A 1 2022-11-19T13:43:52.494440 {"type": {"key": "/type/author"}, "name": "Di Kay", "key": "/authors/OL10868822A", "source_records": ["bwb:9781520835488"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T13:43:52.494440"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T13:43:52.494440"}}
+/type/author /authors/OL10868919A 1 2022-11-19T13:45:56.884597 {"type": {"key": "/type/author"}, "name": "C\u00e9line Herv\u00e9-Bazin", "key": "/authors/OL10868919A", "source_records": ["bwb:9781520874760"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T13:45:56.884597"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T13:45:56.884597"}}
+/type/author /authors/OL10869101A 1 2022-11-19T13:49:46.037781 {"type": {"key": "/type/author"}, "name": "Jackson R. L. AGUIAR", "key": "/authors/OL10869101A", "source_records": ["bwb:9781519061393"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T13:49:46.037781"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T13:49:46.037781"}}
+/type/author /authors/OL10869212A 1 2022-11-19T13:52:07.193752 {"type": {"key": "/type/author"}, "name": "D. H. Knight", "key": "/authors/OL10869212A", "source_records": ["bwb:9781520907567"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T13:52:07.193752"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T13:52:07.193752"}}
+/type/author /authors/OL10869490A 1 2022-11-19T13:56:30.325187 {"type": {"key": "/type/author"}, "name": "Harold Salinas Dur\u00e1n", "key": "/authors/OL10869490A", "source_records": ["bwb:9781521027813"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T13:56:30.325187"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T13:56:30.325187"}}
+/type/author /authors/OL10870427A 1 2022-11-19T14:14:15.186604 {"type": {"key": "/type/author"}, "name": "Neil Webb", "key": "/authors/OL10870427A", "source_records": ["bwb:9781521281048"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T14:14:15.186604"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T14:14:15.186604"}}
+/type/author /authors/OL10870449A 1 2022-11-19T14:15:25.421034 {"type": {"key": "/type/author"}, "name": "E. Sims", "key": "/authors/OL10870449A", "source_records": ["bwb:9781521261118"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T14:15:25.421034"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T14:15:25.421034"}}
+/type/author /authors/OL10870474A 1 2022-11-19T14:15:44.627989 {"type": {"key": "/type/author"}, "name": "John Peter GREEN", "key": "/authors/OL10870474A", "source_records": ["bwb:9781521239957"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T14:15:44.627989"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T14:15:44.627989"}}
+/type/author /authors/OL10870558A 1 2022-11-19T14:17:47.262671 {"type": {"key": "/type/author"}, "name": "Heidi Oehlmann", "key": "/authors/OL10870558A", "source_records": ["bwb:9781521308110"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T14:17:47.262671"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T14:17:47.262671"}}
+/type/author /authors/OL1087058A 2 2008-08-20T02:39:15.474522 {"name": "Oskar Ku\u0308hn", "personal_name": "Oskar Ku\u0308hn", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T02:39:15.474522"}, "key": "/authors/OL1087058A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10870875A 1 2022-11-19T14:25:09.152590 {"type": {"key": "/type/author"}, "name": "Dora Diamantino", "key": "/authors/OL10870875A", "source_records": ["bwb:9781521430484"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T14:25:09.152590"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T14:25:09.152590"}}
+/type/author /authors/OL10870942A 1 2022-11-19T14:26:31.394625 {"type": {"key": "/type/author"}, "name": "U. S. Cyber Command", "key": "/authors/OL10870942A", "source_records": ["bwb:9781521409855"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T14:26:31.394625"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T14:26:31.394625"}}
+/type/author /authors/OL1087123A 2 2008-08-20T02:39:28.046177 {"name": "Konstantin S\u030cirinis z\u0307e Lomia", "personal_name": "Konstantin S\u030cirinis z\u0307e Lomia", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T02:39:28.046177"}, "key": "/authors/OL1087123A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10871528A 1 2022-11-19T14:37:28.552842 {"type": {"key": "/type/author"}, "name": "E. G. LEGERE", "key": "/authors/OL10871528A", "source_records": ["bwb:9781521534281"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T14:37:28.552842"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T14:37:28.552842"}}
+/type/author /authors/OL10871563A 1 2022-11-19T14:37:57.489254 {"type": {"key": "/type/author"}, "name": "Scarlet Scarlet Atkinson", "key": "/authors/OL10871563A", "source_records": ["bwb:9781521571682"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T14:37:57.489254"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T14:37:57.489254"}}
+/type/author /authors/OL10871610A 1 2022-11-19T14:38:45.766769 {"type": {"key": "/type/author"}, "name": "Tori Lucas", "key": "/authors/OL10871610A", "source_records": ["bwb:9781521574355"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T14:38:45.766769"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T14:38:45.766769"}}
+/type/author /authors/OL10871781A 1 2022-11-19T14:42:20.016236 {"type": {"key": "/type/author"}, "name": "Dona Tomić", "key": "/authors/OL10871781A", "source_records": ["bwb:9781521210024"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T14:42:20.016236"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T14:42:20.016236"}}
+/type/author /authors/OL10871A 2 2008-09-10T10:42:16.038347 {"name": "Dasarathi Krishnamacharyulu", "personal_name": "Dasarathi Krishnamacharyulu", "last_modified": {"type": "/type/datetime", "value": "2008-09-10T10:42:16.038347"}, "key": "/authors/OL10871A", "birth_date": "1927", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10872118A 1 2022-11-19T14:48:25.839059 {"type": {"key": "/type/author"}, "name": "Daniela Afonso", "key": "/authors/OL10872118A", "source_records": ["bwb:9781521857250"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T14:48:25.839059"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T14:48:25.839059"}}
+/type/author /authors/OL10872159A 1 2022-11-19T14:49:27.807220 {"type": {"key": "/type/author"}, "name": "MyCreativeWorld", "key": "/authors/OL10872159A", "source_records": ["bwb:9781521845752"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T14:49:27.807220"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T14:49:27.807220"}}
+/type/author /authors/OL10872170A 1 2022-11-19T14:49:46.852839 {"type": {"key": "/type/author"}, "name": "Boss INDIANA", "key": "/authors/OL10872170A", "source_records": ["bwb:9781521843727"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T14:49:46.852839"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T14:49:46.852839"}}
+/type/author /authors/OL10872257A 1 2022-11-19T14:51:21.363534 {"type": {"key": "/type/author"}, "name": "Luis J. Quintana", "key": "/authors/OL10872257A", "source_records": ["bwb:9781521916865"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T14:51:21.363534"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T14:51:21.363534"}}
+/type/author /authors/OL10872335A 1 2022-11-19T14:53:06.026897 {"type": {"key": "/type/author"}, "name": "Renate van Klev", "key": "/authors/OL10872335A", "source_records": ["bwb:9781521897881"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T14:53:06.026897"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T14:53:06.026897"}}
+/type/author /authors/OL10872946A 1 2022-11-19T15:06:12.924487 {"type": {"key": "/type/author"}, "name": "Rodolfo Cifuentes Palacio", "key": "/authors/OL10872946A", "source_records": ["bwb:9781522086000"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T15:06:12.924487"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T15:06:12.924487"}}
+/type/author /authors/OL1087297A 2 2008-08-20T02:40:13.341466 {"name": "H. (Hermann) Von Holst", "personal_name": "H. (Hermann) Von Holst", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T02:40:13.341466"}, "key": "/authors/OL1087297A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10873293A 1 2022-11-19T15:13:53.167793 {"type": {"key": "/type/author"}, "name": "Ann Sheridan", "key": "/authors/OL10873293A", "source_records": ["bwb:9781549608650"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T15:13:53.167793"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T15:13:53.167793"}}
+/type/author /authors/OL10873338A 1 2022-11-19T15:14:36.823764 {"type": {"key": "/type/author"}, "name": "J. J. Buttler", "key": "/authors/OL10873338A", "source_records": ["bwb:9781522067405"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T15:14:36.823764"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T15:14:36.823764"}}
+/type/author /authors/OL10873683A 1 2022-11-19T15:22:11.406553 {"type": {"key": "/type/author"}, "name": "Galeazzo Bentivoglio", "key": "/authors/OL10873683A", "source_records": ["bwb:9781549639449"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T15:22:11.406553"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T15:22:11.406553"}}
+/type/author /authors/OL10873A 1 2008-04-01T03:28:50.625462 {"name": "Ranga Kavi", "personal_name": "Ranga Kavi", "last_modified": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "key": "/authors/OL10873A", "birth_date": "1930", "type": {"key": "/type/author"}, "revision": 1}
+/type/author /authors/OL10874346A 1 2022-11-19T15:37:47.564829 {"type": {"key": "/type/author"}, "name": "Reyaz NADEEM", "key": "/authors/OL10874346A", "source_records": ["bwb:9781549881671"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T15:37:47.564829"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T15:37:47.564829"}}
+/type/author /authors/OL1087454A 2 2008-08-20T02:40:58.548325 {"name": "Stefan Pikusa", "personal_name": "Stefan Pikusa", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T02:40:58.548325"}, "key": "/authors/OL1087454A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10874923A 1 2022-11-19T15:49:59.511080 {"type": {"key": "/type/author"}, "name": "Olo Took", "key": "/authors/OL10874923A", "source_records": ["bwb:9781973107552"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T15:49:59.511080"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T15:49:59.511080"}}
+/type/author /authors/OL10875462A 1 2022-11-19T16:00:11.109815 {"type": {"key": "/type/author"}, "name": "Okenwa ENYERIBE", "key": "/authors/OL10875462A", "source_records": ["bwb:9781973244202"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T16:00:11.109815"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T16:00:11.109815"}}
+/type/author /authors/OL10875692A 1 2022-11-19T16:04:57.767775 {"type": {"key": "/type/author"}, "name": "James Rendel Harris", "key": "/authors/OL10875692A", "source_records": ["bwb:9781973326601"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T16:04:57.767775"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T16:04:57.767775"}}
+/type/author /authors/OL10875858A 1 2022-11-19T16:08:00.023395 {"type": {"key": "/type/author"}, "name": "Mirna Rivalta", "key": "/authors/OL10875858A", "source_records": ["bwb:9781973379447"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T16:08:00.023395"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T16:08:00.023395"}}
+/type/author /authors/OL10876242A 1 2022-11-19T16:15:49.288137 {"type": {"key": "/type/author"}, "name": "Pamela A. Stephenson", "key": "/authors/OL10876242A", "source_records": ["bwb:9781467128292"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T16:15:49.288137"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T16:15:49.288137"}}
+/type/author /authors/OL10876415A 1 2022-11-19T16:18:43.527667 {"type": {"key": "/type/author"}, "name": "H\u00e9ctor Gonz\u00e1lez Ram\u00edrez", "key": "/authors/OL10876415A", "source_records": ["bwb:9781976704338"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T16:18:43.527667"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T16:18:43.527667"}}
+/type/author /authors/OL10876447A 1 2022-11-19T16:19:00.961049 {"type": {"key": "/type/author"}, "name": "Virginie Berling", "key": "/authors/OL10876447A", "source_records": ["bwb:9781973498063"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T16:19:00.961049"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T16:19:00.961049"}}
+/type/author /authors/OL10877663A 1 2022-11-19T16:40:19.021792 {"type": {"key": "/type/author"}, "name": "Leasy Leasy Books", "key": "/authors/OL10877663A", "source_records": ["bwb:9781976874635"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T16:40:19.021792"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T16:40:19.021792"}}
+/type/author /authors/OL10877906A 1 2022-11-19T16:44:56.593466 {"type": {"key": "/type/author"}, "name": "Fran\u00e7oise Terret", "key": "/authors/OL10877906A", "source_records": ["amazon:2342007760"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T16:44:56.593466"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T16:44:56.593466"}}
+/type/author /authors/OL10878247A 1 2022-11-19T16:51:08.594382 {"type": {"key": "/type/author"}, "name": "Blue-eyed Ghost", "key": "/authors/OL10878247A", "source_records": ["bwb:9781980820406"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T16:51:08.594382"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T16:51:08.594382"}}
+/type/author /authors/OL10878725A 1 2022-11-19T16:59:53.719564 {"type": {"key": "/type/author"}, "name": "Michel Croste", "key": "/authors/OL10878725A", "source_records": ["bwb:9781980916253"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T16:59:53.719564"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T16:59:53.719564"}}
+/type/author /authors/OL10878897A 1 2022-11-19T17:03:07.614908 {"type": {"key": "/type/author"}, "name": "V. E. D. from VICTORIA INSTITUTIONS", "key": "/authors/OL10878897A", "source_records": ["bwb:9781980597025"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T17:03:07.614908"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T17:03:07.614908"}}
+/type/author /authors/OL10878917A 1 2022-11-19T17:03:29.351009 {"type": {"key": "/type/author"}, "name": "Edition des livres culinaires pour la Sant\u00e9", "key": "/authors/OL10878917A", "source_records": ["bwb:9781976969980"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T17:03:29.351009"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T17:03:29.351009"}}
+/type/author /authors/OL10878974A 1 2022-11-19T17:04:36.138335 {"type": {"key": "/type/author"}, "name": "Sophie von Flemming", "key": "/authors/OL10878974A", "source_records": ["bwb:9781980809807"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T17:04:36.138335"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T17:04:36.138335"}}
+/type/author /authors/OL10879032A 1 2022-11-19T17:05:31.672924 {"type": {"key": "/type/author"}, "name": "Ray Calabrese", "key": "/authors/OL10879032A", "source_records": ["bwb:9781976885747"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T17:05:31.672924"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T17:05:31.672924"}}
+/type/author /authors/OL10879056A 1 2022-11-19T17:05:50.931726 {"type": {"key": "/type/author"}, "name": "Michael Slankard", "key": "/authors/OL10879056A", "source_records": ["bwb:9781973508977"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T17:05:50.931726"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T17:05:50.931726"}}
+/type/author /authors/OL10879246A 1 2022-11-19T17:09:58.894223 {"type": {"key": "/type/author"}, "name": "Robert Caporetto", "key": "/authors/OL10879246A", "source_records": ["bwb:9781977073549"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T17:09:58.894223"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T17:09:58.894223"}}
+/type/author /authors/OL1087981A 2 2008-08-20T02:44:04.541695 {"name": "Ghaleb H. Jarrar", "personal_name": "Ghaleb H. Jarrar", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T02:44:04.541695"}, "key": "/authors/OL1087981A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10879889A 1 2022-11-19T17:22:44.429472 {"type": {"key": "/type/author"}, "name": "Catch Wrestling", "key": "/authors/OL10879889A", "source_records": ["bwb:9781980704041"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T17:22:44.429472"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T17:22:44.429472"}}
+/type/author /authors/OL10880637A 1 2022-11-19T17:38:12.005915 {"type": {"key": "/type/author"}, "name": "Babet van der Schot", "key": "/authors/OL10880637A", "source_records": ["bwb:9781982967826"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T17:38:12.005915"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T17:38:12.005915"}}
+/type/author /authors/OL10880676A 1 2022-11-19T17:38:43.152918 {"type": {"key": "/type/author"}, "name": "Dalton Roque", "key": "/authors/OL10880676A", "source_records": ["bwb:9781980800682"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T17:38:43.152918"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T17:38:43.152918"}}
+/type/author /authors/OL10880721A 1 2022-11-19T17:39:22.397024 {"type": {"key": "/type/author"}, "name": "Olaya Garc\u00eda Platas", "key": "/authors/OL10880721A", "source_records": ["bwb:9781980967842"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T17:39:22.397024"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T17:39:22.397024"}}
+/type/author /authors/OL10881014A 1 2022-11-19T17:44:48.982751 {"type": {"key": "/type/author"}, "name": "Win Blevins", "key": "/authors/OL10881014A", "source_records": ["bwb:9781980844709"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T17:44:48.982751"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T17:44:48.982751"}}
+/type/author /authors/OL10881075A 1 2022-11-19T17:46:05.791453 {"type": {"key": "/type/author"}, "name": "Maxine Patterson", "key": "/authors/OL10881075A", "source_records": ["bwb:9781982923105"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T17:46:05.791453"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T17:46:05.791453"}}
+/type/author /authors/OL10881449A 1 2022-11-19T17:53:26.409873 {"type": {"key": "/type/author"}, "name": "Michel Michel Ettewiller", "key": "/authors/OL10881449A", "source_records": ["bwb:9781983237027"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T17:53:26.409873"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T17:53:26.409873"}}
+/type/author /authors/OL10881513A 1 2022-11-19T17:54:22.821592 {"type": {"key": "/type/author"}, "name": "Gabriel Cannon", "key": "/authors/OL10881513A", "source_records": ["bwb:9781982932619"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T17:54:22.821592"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T17:54:22.821592"}}
+/type/author /authors/OL10881655A 1 2022-11-19T17:57:07.264866 {"type": {"key": "/type/author"}, "name": "Christopher Adri\u00e1n", "key": "/authors/OL10881655A", "source_records": ["bwb:9781980775140"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T17:57:07.264866"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T17:57:07.264866"}}
+/type/author /authors/OL10882006A 1 2022-11-19T18:03:45.689790 {"type": {"key": "/type/author"}, "name": "Abi Begho", "key": "/authors/OL10882006A", "source_records": ["bwb:9781717849106"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T18:03:45.689790"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T18:03:45.689790"}}
+/type/author /authors/OL10882031A 1 2022-11-19T18:04:10.371539 {"type": {"key": "/type/author"}, "name": "Felipe Baz\u00e1n", "key": "/authors/OL10882031A", "source_records": ["bwb:9781717851789"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T18:04:10.371539"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T18:04:10.371539"}}
+/type/author /authors/OL10882164A 1 2022-11-19T18:05:55.018530 {"type": {"key": "/type/author"}, "name": "Fabrizio Fiordellisi", "key": "/authors/OL10882164A", "source_records": ["bwb:9781983250729"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T18:05:55.018530"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T18:05:55.018530"}}
+/type/author /authors/OL10882353A 1 2022-11-19T18:09:10.106480 {"type": {"key": "/type/author"}, "name": "David WAITHERA", "key": "/authors/OL10882353A", "source_records": ["bwb:9781717791283"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T18:09:10.106480"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T18:09:10.106480"}}
+/type/author /authors/OL10882360A 1 2022-11-19T18:09:17.382750 {"type": {"key": "/type/author"}, "name": "Himanshu Sheokand", "key": "/authors/OL10882360A", "source_records": ["bwb:9781983250637"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T18:09:17.382750"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T18:09:17.382750"}}
+/type/author /authors/OL10882403A 1 2022-11-19T18:10:04.263283 {"type": {"key": "/type/author"}, "name": "Victor Camus", "key": "/authors/OL10882403A", "source_records": ["bwb:9781980934530"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T18:10:04.263283"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T18:10:04.263283"}}
+/type/author /authors/OL10882495A 1 2022-11-19T18:11:31.368444 {"type": {"key": "/type/author"}, "name": "Rasarani Szarka", "key": "/authors/OL10882495A", "source_records": ["bwb:9781718162662"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T18:11:31.368444"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T18:11:31.368444"}}
+/type/author /authors/OL10882582A 1 2022-11-19T18:12:55.688450 {"type": {"key": "/type/author"}, "name": "Jatin Gupta", "key": "/authors/OL10882582A", "source_records": ["bwb:9781718146259"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T18:12:55.688450"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T18:12:55.688450"}}
+/type/author /authors/OL10883070A 1 2022-11-19T18:22:47.508601 {"type": {"key": "/type/author"}, "name": "Armelle GUILCHER", "key": "/authors/OL10883070A", "source_records": ["bwb:9781719986885"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T18:22:47.508601"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T18:22:47.508601"}}
+/type/author /authors/OL10883210A 1 2022-11-19T18:25:32.986933 {"type": {"key": "/type/author"}, "name": "Karen Rosario", "key": "/authors/OL10883210A", "source_records": ["bwb:9781718088108"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T18:25:32.986933"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T18:25:32.986933"}}
+/type/author /authors/OL10883533A 1 2022-11-19T18:31:43.959247 {"type": {"key": "/type/author"}, "name": "Benjamin Sajed", "key": "/authors/OL10883533A", "source_records": ["bwb:9781720294894"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T18:31:43.959247"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T18:31:43.959247"}}
+/type/author /authors/OL10884394A 1 2022-11-19T18:49:11.013854 {"type": {"key": "/type/author"}, "name": "J. L. e. Word", "key": "/authors/OL10884394A", "source_records": ["bwb:9781731071644"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T18:49:11.013854"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T18:49:11.013854"}}
+/type/author /authors/OL1088439A 2 2008-08-20T02:46:14.439846 {"name": "Michael Geare", "personal_name": "Michael Geare", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T02:46:14.439846"}, "key": "/authors/OL1088439A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10884451A 1 2022-11-19T18:50:34.622634 {"type": {"key": "/type/author"}, "name": "Barbara Petta", "key": "/authors/OL10884451A", "source_records": ["bwb:9781728890012"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T18:50:34.622634"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T18:50:34.622634"}}
+/type/author /authors/OL10884922A 1 2022-11-19T19:03:49.633575 {"type": {"key": "/type/author"}, "name": "Cynical J", "key": "/authors/OL10884922A", "source_records": ["bwb:9781731585455"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T19:03:49.633575"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T19:03:49.633575"}}
+/type/author /authors/OL10885263A 1 2022-11-19T19:11:21.991315 {"type": {"key": "/type/author"}, "name": "David Kwon", "key": "/authors/OL10885263A", "source_records": ["bwb:9781790542628"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T19:11:21.991315"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T19:11:21.991315"}}
+/type/author /authors/OL10885426A 1 2022-11-19T19:16:29.095246 {"type": {"key": "/type/author"}, "name": "Hameeda Lakho en Magda van der Rijst", "key": "/authors/OL10885426A", "source_records": ["amazon:9085192846"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T19:16:29.095246"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T19:16:29.095246"}}
+/type/author /authors/OL10885545A 1 2022-11-19T19:21:30.002904 {"type": {"key": "/type/author"}, "name": "Bj\u00f6rnstjerne Bj\u00f6rnson", "key": "/authors/OL10885545A", "source_records": ["bwb:9781731108340"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T19:21:30.002904"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T19:21:30.002904"}}
+/type/author /authors/OL10885694A 1 2022-11-19T19:24:54.191283 {"type": {"key": "/type/author"}, "name": "Cipper Wyss", "key": "/authors/OL10885694A", "source_records": ["bwb:9781720145370"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T19:24:54.191283"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T19:24:54.191283"}}
+/type/author /authors/OL10885771A 1 2022-11-19T19:26:12.911725 {"type": {"key": "/type/author"}, "name": "Angela Jeanne ROSE HEART", "key": "/authors/OL10885771A", "source_records": ["bwb:9781792008146"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T19:26:12.911725"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T19:26:12.911725"}}
+/type/author /authors/OL10886228A 1 2022-11-19T19:34:55.387397 {"type": {"key": "/type/author"}, "name": "Douglas Mayberry", "key": "/authors/OL10886228A", "source_records": ["bwb:9781718036178"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T19:34:55.387397"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T19:34:55.387397"}}
+/type/author /authors/OL10886317A 1 2022-11-19T19:37:39.175637 {"type": {"key": "/type/author"}, "name": "Joao Paulo Avila", "key": "/authors/OL10886317A", "source_records": ["bwb:9781719879972"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T19:37:39.175637"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T19:37:39.175637"}}
+/type/author /authors/OL10887040A 1 2022-11-19T19:51:54.395546 {"type": {"key": "/type/author"}, "name": "Ellen Hildebrand", "key": "/authors/OL10887040A", "source_records": ["bwb:9781791539429"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T19:51:54.395546"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T19:51:54.395546"}}
+/type/author /authors/OL10887100A 1 2022-11-19T19:53:16.821882 {"type": {"key": "/type/author"}, "name": "Victoria Moala", "key": "/authors/OL10887100A", "source_records": ["bwb:9781795304856"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T19:53:16.821882"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T19:53:16.821882"}}
+/type/author /authors/OL10887990A 1 2022-11-19T20:12:35.599422 {"type": {"key": "/type/author"}, "name": "Lena Lind", "key": "/authors/OL10887990A", "source_records": ["bwb:9781720118893"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T20:12:35.599422"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T20:12:35.599422"}}
+/type/author /authors/OL10888426A 1 2022-11-19T20:24:30.304813 {"type": {"key": "/type/author"}, "name": "Clelia OLIVEIRA", "key": "/authors/OL10888426A", "source_records": ["bwb:9781799223139"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T20:24:30.304813"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T20:24:30.304813"}}
+/type/author /authors/OL10888643A 1 2022-11-19T20:29:33.731115 {"type": {"key": "/type/author"}, "name": "Rajnikant Puranik", "key": "/authors/OL10888643A", "source_records": ["bwb:9781718196537"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T20:29:33.731115"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T20:29:33.731115"}}
+/type/author /authors/OL1088871A 2 2008-08-20T02:48:17.904723 {"name": "R. Jeffrey Gurvine", "personal_name": "R. Jeffrey Gurvine", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T02:48:17.904723"}, "key": "/authors/OL1088871A", "birth_date": "1944", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10889484A 1 2022-11-19T21:21:32.579519 {"type": {"key": "/type/author"}, "name": "Donald H. Price", "key": "/authors/OL10889484A", "source_records": ["bwb:9781531621261"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T21:21:32.579519"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T21:21:32.579519"}}
+/type/author /authors/OL10889724A 1 2022-11-19T21:28:05.788981 {"type": {"key": "/type/author"}, "name": "Michele Hansford", "key": "/authors/OL10889724A", "source_records": ["bwb:9781531668020"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T21:28:05.788981"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T21:28:05.788981"}}
+/type/author /authors/OL10890050A 1 2022-11-19T21:35:21.476868 {"type": {"key": "/type/author"}, "name": "Robbie F. Taylor", "key": "/authors/OL10890050A", "source_records": ["bwb:9781520141848"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T21:35:21.476868"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T21:35:21.476868"}}
+/type/author /authors/OL1089029A 2 2008-08-20T02:48:59.794042 {"name": "Elisabeth Delaygue", "personal_name": "Elisabeth Delaygue", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T02:48:59.794042"}, "key": "/authors/OL1089029A", "birth_date": "1958", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10890542A 1 2022-11-19T21:45:29.483048 {"type": {"key": "/type/author"}, "name": "Miriam Kocher", "key": "/authors/OL10890542A", "source_records": ["bwb:9781520344836"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T21:45:29.483048"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T21:45:29.483048"}}
+/type/author /authors/OL10890715A 1 2022-11-19T21:49:58.310466 {"type": {"key": "/type/author"}, "name": "Ignacio S\u00e1nchez de Oca\u00f1a", "key": "/authors/OL10890715A", "source_records": ["bwb:9781520301129"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T21:49:58.310466"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T21:49:58.310466"}}
+/type/author /authors/OL1089116A 2 2008-08-20T02:49:23.265583 {"name": "Jeanne-Marie Dureau", "personal_name": "Jeanne-Marie Dureau", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T02:49:23.265583"}, "key": "/authors/OL1089116A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10891214A 1 2022-11-19T21:59:58.926200 {"type": {"key": "/type/author"}, "name": "Tammy Stuart", "key": "/authors/OL10891214A", "source_records": ["bwb:9781520574370"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T21:59:58.926200"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T21:59:58.926200"}}
+/type/author /authors/OL10892663A 1 2022-11-19T22:33:49.220874 {"type": {"key": "/type/author"}, "name": "JAff", "key": "/authors/OL10892663A", "source_records": ["bwb:9781521121757"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T22:33:49.220874"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T22:33:49.220874"}}
+/type/author /authors/OL10892735A 1 2022-11-19T22:35:51.055747 {"type": {"key": "/type/author"}, "name": "T. O. M. WEIGHTMAN", "key": "/authors/OL10892735A", "source_records": ["bwb:9781521089972"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T22:35:51.055747"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T22:35:51.055747"}}
+/type/author /authors/OL10892750A 1 2022-11-19T22:36:03.228479 {"type": {"key": "/type/author"}, "name": "Jess Franken", "key": "/authors/OL10892750A", "source_records": ["bwb:9781521148402"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T22:36:03.228479"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T22:36:03.228479"}}
+/type/author /authors/OL10892777A 1 2022-11-19T22:36:54.807607 {"type": {"key": "/type/author"}, "name": "Mike Zotos", "key": "/authors/OL10892777A", "source_records": ["bwb:9781521175323"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T22:36:54.807607"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T22:36:54.807607"}}
+/type/author /authors/OL10893060A 1 2022-11-19T22:43:54.811395 {"type": {"key": "/type/author"}, "name": "dami\u00e1n alvarez", "key": "/authors/OL10893060A", "source_records": ["bwb:9781521294451"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T22:43:54.811395"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T22:43:54.811395"}}
+/type/author /authors/OL10893609A 1 2022-11-19T22:57:19.048928 {"type": {"key": "/type/author"}, "name": "Doug Tattershall", "key": "/authors/OL10893609A", "source_records": ["bwb:9781521430538"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T22:57:19.048928"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T22:57:19.048928"}}
+/type/author /authors/OL10893709A 1 2022-11-19T22:59:27.162022 {"type": {"key": "/type/author"}, "name": "Kripa Sharma", "key": "/authors/OL10893709A", "source_records": ["bwb:9781521330289"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T22:59:27.162022"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T22:59:27.162022"}}
+/type/author /authors/OL1089403A 2 2008-08-20T02:50:35.389578 {"name": "Rolf Verleger", "personal_name": "Rolf Verleger", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T02:50:35.389578"}, "key": "/authors/OL1089403A", "birth_date": "1951", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10894102A 1 2022-11-19T23:07:41.395675 {"type": {"key": "/type/author"}, "name": "Prasanna TG", "key": "/authors/OL10894102A", "source_records": ["bwb:9781521590799"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T23:07:41.395675"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T23:07:41.395675"}}
+/type/author /authors/OL10894408A 1 2022-11-19T23:16:00.921625 {"type": {"key": "/type/author"}, "name": "Brian Wilds", "key": "/authors/OL10894408A", "source_records": ["bwb:9781521582589"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T23:16:00.921625"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T23:16:00.921625"}}
+/type/author /authors/OL10894687A 1 2022-11-19T23:23:37.457460 {"type": {"key": "/type/author"}, "name": "Marianna Rachid", "key": "/authors/OL10894687A", "source_records": ["bwb:9781521855416"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T23:23:37.457460"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T23:23:37.457460"}}
+/type/author /authors/OL10895402A 1 2022-11-19T23:43:17.643173 {"type": {"key": "/type/author"}, "name": "Donna Birchell", "key": "/authors/OL10895402A", "source_records": ["bwb:9781540213099"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T23:43:17.643173"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T23:43:17.643173"}}
+/type/author /authors/OL10895536A 1 2022-11-19T23:46:28.418963 {"type": {"key": "/type/author"}, "name": "M. C Queen", "key": "/authors/OL10895536A", "source_records": ["bwb:9781519014191"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T23:46:28.418963"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T23:46:28.418963"}}
+/type/author /authors/OL10895769A 1 2022-11-19T23:51:51.963558 {"type": {"key": "/type/author"}, "name": "Fiona Styles", "key": "/authors/OL10895769A", "source_records": ["bwb:9781549517600"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T23:51:51.963558"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T23:51:51.963558"}}
+/type/author /authors/OL10895884A 1 2022-11-19T23:54:41.490224 {"type": {"key": "/type/author"}, "name": "James Pickrell", "key": "/authors/OL10895884A", "source_records": ["bwb:9781521760376"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-19T23:54:41.490224"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T23:54:41.490224"}}
+/type/author /authors/OL10896423A 1 2022-11-20T00:07:19.861311 {"type": {"key": "/type/author"}, "name": "kiwi opa", "key": "/authors/OL10896423A", "source_records": ["bwb:9781549909559"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T00:07:19.861311"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T00:07:19.861311"}}
+/type/author /authors/OL10896455A 1 2022-11-20T00:08:11.971358 {"type": {"key": "/type/author"}, "name": "Selina Kesper", "key": "/authors/OL10896455A", "source_records": ["bwb:9781521251621"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T00:08:11.971358"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T00:08:11.971358"}}
+/type/author /authors/OL10896516A 1 2022-11-20T00:09:58.078996 {"type": {"key": "/type/author"}, "name": "Eug\u00e8ne Emmanuel Lemercier", "key": "/authors/OL10896516A", "source_records": ["bwb:9781549891823"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T00:09:58.078996"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T00:09:58.078996"}}
+/type/author /authors/OL10896522A 1 2022-11-20T00:10:11.152086 {"type": {"key": "/type/author"}, "name": "U. S. US CONGRESS", "key": "/authors/OL10896522A", "source_records": ["bwb:9781549878602"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T00:10:11.152086"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T00:10:11.152086"}}
+/type/author /authors/OL10896628A 1 2022-11-20T00:12:49.178249 {"type": {"key": "/type/author"}, "name": "Jessie Rister", "key": "/authors/OL10896628A", "source_records": ["bwb:9781549992032"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T00:12:49.178249"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T00:12:49.178249"}}
+/type/author /authors/OL10896992A 1 2022-11-20T00:22:14.590291 {"type": {"key": "/type/author"}, "name": "Paul A. Reid", "key": "/authors/OL10896992A", "source_records": ["bwb:9781973154136"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T00:22:14.590291"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T00:22:14.590291"}}
+/type/author /authors/OL1089712A 3 2017-11-28T22:12:53.657871 {"name": "V. V. Troit\u0361ski\u012d", "personal_name": "V. V. Troit\u0361ski\u012d", "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2017-11-28T22:12:53.657871"}, "latest_revision": 3, "key": "/authors/OL1089712A", "type": {"key": "/type/author"}, "revision": 3}
+/type/author /authors/OL10897666A 1 2022-11-20T00:38:16.692597 {"type": {"key": "/type/author"}, "name": "Ron Beardwood", "key": "/authors/OL10897666A", "source_records": ["bwb:9781973282273"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T00:38:16.692597"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T00:38:16.692597"}}
+/type/author /authors/OL10898305A 1 2022-11-20T00:51:13.576760 {"type": {"key": "/type/author"}, "name": "iris Becker-Zahn", "key": "/authors/OL10898305A", "source_records": ["bwb:9781976809880"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T00:51:13.576760"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T00:51:13.576760"}}
+/type/author /authors/OL1089842A 2 2008-08-20T02:52:42.251275 {"name": "Sheriazdan Eleukenov", "personal_name": "Sheriazdan Eleukenov", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T02:52:42.251275"}, "key": "/authors/OL1089842A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL1089870A 2 2008-08-20T02:52:57.209818 {"name": "Gui Viala", "personal_name": "Gui Viala", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T02:52:57.209818"}, "key": "/authors/OL1089870A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10898855A 1 2022-11-20T01:02:18.752952 {"type": {"key": "/type/author"}, "name": "Bradley Vining", "key": "/authors/OL10898855A", "source_records": ["bwb:9781976814525"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T01:02:18.752952"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T01:02:18.752952"}}
+/type/author /authors/OL10898914A 1 2022-11-20T01:03:24.089829 {"type": {"key": "/type/author"}, "name": "Luisa Ju\u00e1nez", "key": "/authors/OL10898914A", "source_records": ["bwb:9781980264545"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T01:03:24.089829"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T01:03:24.089829"}}
+/type/author /authors/OL10898948A 1 2022-11-20T01:04:27.594475 {"type": {"key": "/type/author"}, "name": "Angelique Long", "key": "/authors/OL10898948A", "source_records": ["bwb:9781980253662"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T01:04:27.594475"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T01:04:27.594475"}}
+/type/author /authors/OL10899290A 1 2022-11-20T01:13:14.533458 {"type": {"key": "/type/author"}, "name": "M. Elizabeth Frye", "key": "/authors/OL10899290A", "source_records": ["bwb:9781976708640"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T01:13:14.533458"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T01:13:14.533458"}}
+/type/author /authors/OL10899599A 1 2022-11-20T01:18:28.145419 {"type": {"key": "/type/author"}, "name": "Shiv Prakash TELI", "key": "/authors/OL10899599A", "source_records": ["bwb:9781980580966"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T01:18:28.145419"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T01:18:28.145419"}}
+/type/author /authors/OL10899632A 1 2022-11-20T01:18:59.661364 {"type": {"key": "/type/author"}, "name": "MAR\u00cdA IRIARTE", "key": "/authors/OL10899632A", "source_records": ["bwb:9781980842842"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T01:18:59.661364"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T01:18:59.661364"}}
+/type/author /authors/OL10899930A 1 2022-11-20T01:25:57.928209 {"type": {"key": "/type/author"}, "name": "Celedonio Miranda", "key": "/authors/OL10899930A", "source_records": ["bwb:9781980775881"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T01:25:57.928209"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T01:25:57.928209"}}
+/type/author /authors/OL10900447A 1 2022-11-20T01:38:05.085128 {"type": {"key": "/type/author"}, "name": "dave vignon", "key": "/authors/OL10900447A", "source_records": ["bwb:9781980419723"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T01:38:05.085128"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T01:38:05.085128"}}
+/type/author /authors/OL10900553A 1 2022-11-20T01:40:16.064133 {"type": {"key": "/type/author"}, "name": "Christina Wagner-Meisterburg Meisterburg", "key": "/authors/OL10900553A", "source_records": ["bwb:9781980999591"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T01:40:16.064133"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T01:40:16.064133"}}
+/type/author /authors/OL10900694A 1 2022-11-20T01:43:16.449016 {"type": {"key": "/type/author"}, "name": "William TURNER", "key": "/authors/OL10900694A", "source_records": ["bwb:9781980314929"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T01:43:16.449016"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T01:43:16.449016"}}
+/type/author /authors/OL10901028A 1 2022-11-20T01:49:55.155596 {"type": {"key": "/type/author"}, "name": "amamus", "key": "/authors/OL10901028A", "source_records": ["bwb:9781980366416"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T01:49:55.155596"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T01:49:55.155596"}}
+/type/author /authors/OL10901080A 1 2022-11-20T01:51:04.117925 {"type": {"key": "/type/author"}, "name": "Pacific Ocean", "key": "/authors/OL10901080A", "source_records": ["bwb:9781980494805"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T01:51:04.117925"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T01:51:04.117925"}}
+/type/author /authors/OL10901098A 1 2022-11-20T01:51:27.959737 {"type": {"key": "/type/author"}, "name": "Victoria M.", "key": "/authors/OL10901098A", "source_records": ["bwb:9781980705369"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T01:51:27.959737"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T01:51:27.959737"}}
+/type/author /authors/OL10901488A 1 2022-11-20T01:59:46.693695 {"type": {"key": "/type/author"}, "name": "Tshiamo Oagile Leeme", "key": "/authors/OL10901488A", "source_records": ["bwb:9781982961503"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T01:59:46.693695"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T01:59:46.693695"}}
+/type/author /authors/OL1090186A 2 2008-08-20T02:54:22.39379 {"name": "Horst No\u0308cker", "personal_name": "Horst No\u0308cker", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T02:54:22.39379"}, "key": "/authors/OL1090186A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10901963A 1 2022-11-20T02:08:35.501583 {"type": {"key": "/type/author"}, "name": "Bristo Eldhose", "key": "/authors/OL10901963A", "source_records": ["bwb:9781980955047"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T02:08:35.501583"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T02:08:35.501583"}}
+/type/author /authors/OL10902035A 1 2022-11-20T02:10:59.383499 {"type": {"key": "/type/author"}, "name": "H. R. Malkiel", "key": "/authors/OL10902035A", "source_records": ["bwb:9781982948207"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T02:10:59.383499"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T02:10:59.383499"}}
+/type/author /authors/OL1090209A 2 2008-08-20T02:54:30.0261 {"name": "V. Z. Vasil\u02b9ev", "personal_name": "V. Z. Vasil\u02b9ev", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T02:54:30.0261"}, "key": "/authors/OL1090209A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10902317A 1 2022-11-20T02:16:39.878974 {"type": {"key": "/type/author"}, "name": "Rebecca Eras", "key": "/authors/OL10902317A", "source_records": ["bwb:9781980560616"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T02:16:39.878974"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T02:16:39.878974"}}
+/type/author /authors/OL10902534A 1 2022-11-20T02:21:26.525145 {"type": {"key": "/type/author"}, "name": "Victoria Cerd\u00e1 Coca", "key": "/authors/OL10902534A", "source_records": ["bwb:9781982950095"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T02:21:26.525145"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T02:21:26.525145"}}
+/type/author /authors/OL10902923A 1 2022-11-20T02:28:37.072480 {"type": {"key": "/type/author"}, "name": "Z. C. Etka", "key": "/authors/OL10902923A", "source_records": ["bwb:9781717927200"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T02:28:37.072480"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T02:28:37.072480"}}
+/type/author /authors/OL10903473A 1 2022-11-20T02:38:05.372719 {"type": {"key": "/type/author"}, "name": "Francise Dupe", "key": "/authors/OL10903473A", "source_records": ["bwb:9781720147633"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T02:38:05.372719"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T02:38:05.372719"}}
+/type/author /authors/OL10903565A 1 2022-11-20T02:39:49.711438 {"type": {"key": "/type/author"}, "name": "May Kramer", "key": "/authors/OL10903565A", "source_records": ["bwb:9781788780919"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T02:39:49.711438"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T02:39:49.711438"}}
+/type/author /authors/OL10903986A 1 2022-11-20T02:47:45.757326 {"type": {"key": "/type/author"}, "name": "L. J DECZKA", "key": "/authors/OL10903986A", "source_records": ["bwb:9781726721660"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T02:47:45.757326"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T02:47:45.757326"}}
+/type/author /authors/OL10904024A 1 2022-11-20T02:48:21.754872 {"type": {"key": "/type/author"}, "name": "Brandon Alejandro FLORES SOLIS", "key": "/authors/OL10904024A", "source_records": ["bwb:9781726809832"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T02:48:21.754872"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T02:48:21.754872"}}
+/type/author /authors/OL10904158A 1 2022-11-20T02:50:57.212866 {"type": {"key": "/type/author"}, "name": "James L. Burk", "key": "/authors/OL10904158A", "source_records": ["bwb:9781983253522"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T02:50:57.212866"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T02:50:57.212866"}}
+/type/author /authors/OL1090418A 2 2008-08-20T02:55:31.60545 {"name": "Sagynaly Subanaliev", "personal_name": "Sagynaly Subanaliev", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T02:55:31.60545"}, "key": "/authors/OL1090418A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL1090428A 1 2008-04-01T03:28:50.625462 {"name": "\"Agitplakat\" (Art studio)", "last_modified": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "key": "/authors/OL1090428A", "type": {"key": "/type/author"}, "revision": 1}
+/type/author /authors/OL10904771A 1 2022-11-20T03:03:49.898810 {"type": {"key": "/type/author"}, "name": "Jonathan Dubbert", "key": "/authors/OL10904771A", "source_records": ["bwb:9781730983696"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T03:03:49.898810"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T03:03:49.898810"}}
+/type/author /authors/OL10904789A 1 2022-11-20T03:04:15.409655 {"type": {"key": "/type/author"}, "name": "Paila Sankar", "key": "/authors/OL10904789A", "source_records": ["bwb:9781730913617"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T03:04:15.409655"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T03:04:15.409655"}}
+/type/author /authors/OL10904944A 1 2022-11-20T03:07:51.765201 {"type": {"key": "/type/author"}, "name": "U. R. I. NORWICH", "key": "/authors/OL10904944A", "source_records": ["bwb:9781729383049"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T03:07:51.765201"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T03:07:51.765201"}}
+/type/author /authors/OL10904959A 1 2022-11-20T03:08:10.943686 {"type": {"key": "/type/author"}, "name": "Johannes Unnewehr", "key": "/authors/OL10904959A", "source_records": ["bwb:9781723781063"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T03:08:10.943686"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T03:08:10.943686"}}
+/type/author /authors/OL10905046A 1 2022-11-20T03:09:52.813515 {"type": {"key": "/type/author"}, "name": "Erich Steffens", "key": "/authors/OL10905046A", "source_records": ["bwb:9781717750631"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T03:09:52.813515"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T03:09:52.813515"}}
+/type/author /authors/OL10905063A 1 2022-11-20T03:10:11.873625 {"type": {"key": "/type/author"}, "name": "Jason a Muckley", "key": "/authors/OL10905063A", "source_records": ["bwb:9781717805836"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T03:10:11.873625"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T03:10:11.873625"}}
+/type/author /authors/OL10905324A 1 2022-11-20T03:14:34.925358 {"type": {"key": "/type/author"}, "name": "Timothy Ung", "key": "/authors/OL10905324A", "source_records": ["bwb:9781790608331"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T03:14:34.925358"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T03:14:34.925358"}}
+/type/author /authors/OL10905628A 1 2022-11-20T03:20:48.963551 {"type": {"key": "/type/author"}, "name": "Martyn Starkey", "key": "/authors/OL10905628A", "source_records": ["bwb:9781717987884"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T03:20:48.963551"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T03:20:48.963551"}}
+/type/author /authors/OL10905837A 1 2022-11-20T03:28:04.126807 {"type": {"key": "/type/author"}, "name": "Vijay Ram", "key": "/authors/OL10905837A", "source_records": ["bwb:9781790381500"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T03:28:04.126807"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T03:28:04.126807"}}
+/type/author /authors/OL10905845A 1 2022-11-20T03:28:25.325089 {"type": {"key": "/type/author"}, "name": "Family Coloring Press", "key": "/authors/OL10905845A", "source_records": ["bwb:9781731552396"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T03:28:25.325089"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T03:28:25.325089"}}
+/type/author /authors/OL10906213A 1 2022-11-20T03:38:22.349839 {"type": {"key": "/type/author"}, "name": "Melanie Kilian Thelen", "key": "/authors/OL10906213A", "source_records": ["bwb:9781790692095"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T03:38:22.349839"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T03:38:22.349839"}}
+/type/author /authors/OL10906295A 1 2022-11-20T03:40:00.439016 {"type": {"key": "/type/author"}, "name": "Judy Stinson", "key": "/authors/OL10906295A", "source_records": ["bwb:9781793152220"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T03:40:00.439016"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T03:40:00.439016"}}
+/type/author /authors/OL10906402A 1 2022-11-20T03:42:16.340451 {"type": {"key": "/type/author"}, "name": "Ivan Stepancic", "key": "/authors/OL10906402A", "source_records": ["bwb:9781792117329"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T03:42:16.340451"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T03:42:16.340451"}}
+/type/author /authors/OL10906638A 1 2022-11-20T03:47:01.191124 {"type": {"key": "/type/author"}, "name": "Abhi Golhar", "key": "/authors/OL10906638A", "source_records": ["bwb:9781792649875"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T03:47:01.191124"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T03:47:01.191124"}}
+/type/author /authors/OL10906901A 1 2022-11-20T03:52:07.040681 {"type": {"key": "/type/author"}, "name": "N. Nineell", "key": "/authors/OL10906901A", "source_records": ["bwb:9781793888846"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T03:52:07.040681"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T03:52:07.040681"}}
+/type/author /authors/OL10907033A 1 2022-11-20T03:55:15.609879 {"type": {"key": "/type/author"}, "name": "Charles Elm\u00e9 Francatelli", "key": "/authors/OL10907033A", "source_records": ["bwb:9781793051967"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T03:55:15.609879"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T03:55:15.609879"}}
+/type/author /authors/OL10907177A 1 2022-11-20T03:58:36.283811 {"type": {"key": "/type/author"}, "name": "Steve nenninger", "key": "/authors/OL10907177A", "source_records": ["bwb:9781795601948"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T03:58:36.283811"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T03:58:36.283811"}}
+/type/author /authors/OL10907468A 1 2022-11-20T04:04:09.020197 {"type": {"key": "/type/author"}, "name": "Joel Kremer", "key": "/authors/OL10907468A", "source_records": ["bwb:9781796330106"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T04:04:09.020197"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T04:04:09.020197"}}
+/type/author /authors/OL10907498A 1 2022-11-20T04:05:07.060320 {"type": {"key": "/type/author"}, "name": "Gert Volpp", "key": "/authors/OL10907498A", "source_records": ["bwb:9781718002982"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T04:05:07.060320"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T04:05:07.060320"}}
+/type/author /authors/OL10907530A 1 2022-11-20T04:05:33.121027 {"type": {"key": "/type/author"}, "name": "I. BUSH", "key": "/authors/OL10907530A", "source_records": ["bwb:9781796979923"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T04:05:33.121027"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T04:05:33.121027"}}
+/type/author /authors/OL10907536A 1 2022-11-20T04:05:38.046242 {"type": {"key": "/type/author"}, "name": "Nikolas Lake", "key": "/authors/OL10907536A", "source_records": ["bwb:9781796471731"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T04:05:38.046242"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T04:05:38.046242"}}
+/type/author /authors/OL10907557A 1 2022-11-20T04:06:07.885649 {"type": {"key": "/type/author"}, "name": "Liam Dillon", "key": "/authors/OL10907557A", "source_records": ["bwb:9781796952605"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T04:06:07.885649"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T04:06:07.885649"}}
+/type/author /authors/OL10907683A 1 2022-11-20T04:08:31.382082 {"type": {"key": "/type/author"}, "name": "Heavenly-Treasure Norman", "key": "/authors/OL10907683A", "source_records": ["bwb:9781796772227"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T04:08:31.382082"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T04:08:31.382082"}}
+/type/author /authors/OL10908149A 1 2022-11-20T04:22:35.068896 {"type": {"key": "/type/author"}, "name": "Georgia Legislations", "key": "/authors/OL10908149A", "source_records": ["bwb:9781723937811"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T04:22:35.068896"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T04:22:35.068896"}}
+/type/author /authors/OL10908758A 1 2022-11-20T04:36:49.801092 {"type": {"key": "/type/author"}, "name": "Joyce Maia", "key": "/authors/OL10908758A", "source_records": ["bwb:9781724076311"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T04:36:49.801092"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T04:36:49.801092"}}
+/type/author /authors/OL10909080A 1 2022-11-20T05:00:28.556499 {"type": {"key": "/type/author"}, "name": "Beate Sjåfjell", "key": "/authors/OL10909080A", "source_records": ["bwb:9781316309049"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T05:00:28.556499"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T05:00:28.556499"}}
+/type/author /authors/OL10909198A 1 2022-11-20T05:09:13.392313 {"type": {"key": "/type/author"}, "name": "Improving Policies and Practices Committee Levees and the National Flood Insurance Program", "key": "/authors/OL10909198A", "source_records": ["bwb:9780309282949"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T05:09:13.392313"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T05:09:13.392313"}}
+/type/author /authors/OL10909368A 1 2022-11-20T05:22:35.081376 {"type": {"key": "/type/author"}, "name": "Marshall County Historical Society", "key": "/authors/OL10909368A", "source_records": ["bwb:9781531670429"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T05:22:35.081376"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T05:22:35.081376"}}
+/type/author /authors/OL10909673A 1 2022-11-20T05:31:59.721438 {"type": {"key": "/type/author"}, "name": "Albert O. Marshall", "key": "/authors/OL10909673A", "source_records": ["bwb:9781519064400"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T05:31:59.721438"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T05:31:59.721438"}}
+/type/author /authors/OL1090997A 2 2008-08-20T02:58:18.183073 {"name": "M. P. Chukichev", "personal_name": "M. P. Chukichev", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T02:58:18.183073"}, "key": "/authors/OL1090997A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10910077A 1 2022-11-20T05:40:53.309001 {"type": {"key": "/type/author"}, "name": "Sourabh", "key": "/authors/OL10910077A", "source_records": ["bwb:9781520246147"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T05:40:53.309001"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T05:40:53.309001"}}
+/type/author /authors/OL10910097A 1 2022-11-20T05:41:20.909449 {"type": {"key": "/type/author"}, "name": "Tyler Din", "key": "/authors/OL10910097A", "source_records": ["bwb:9781520182186"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T05:41:20.909449"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T05:41:20.909449"}}
+/type/author /authors/OL1091010A 2 2008-08-20T02:58:20.471908 {"name": "Ovidi Montllor", "personal_name": "Ovidi Montllor", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T02:58:20.471908"}, "key": "/authors/OL1091010A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10910371A 1 2022-11-20T05:47:19.766287 {"type": {"key": "/type/author"}, "name": "Matthew Metcalf", "key": "/authors/OL10910371A", "source_records": ["bwb:9781520380070"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T05:47:19.766287"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T05:47:19.766287"}}
+/type/author /authors/OL10910533A 1 2022-11-20T05:51:06.545014 {"type": {"key": "/type/author"}, "name": "Gene Motal", "key": "/authors/OL10910533A", "source_records": ["bwb:9781520421742"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T05:51:06.545014"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T05:51:06.545014"}}
+/type/author /authors/OL10910703A 1 2022-11-20T05:54:45.382753 {"type": {"key": "/type/author"}, "name": "Hadbaa Elfatemi", "key": "/authors/OL10910703A", "source_records": ["bwb:9781520529783"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T05:54:45.382753"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T05:54:45.382753"}}
+/type/author /authors/OL10910734A 1 2022-11-20T05:55:26.277443 {"type": {"key": "/type/author"}, "name": "Roy Stroup", "key": "/authors/OL10910734A", "source_records": ["bwb:9781520509488"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T05:55:26.277443"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T05:55:26.277443"}}
+/type/author /authors/OL10910782A 1 2022-11-20T05:56:25.234554 {"type": {"key": "/type/author"}, "name": "The Side", "key": "/authors/OL10910782A", "source_records": ["bwb:9781520532127"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T05:56:25.234554"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T05:56:25.234554"}}
+/type/author /authors/OL10911040A 1 2022-11-20T06:03:18.845498 {"type": {"key": "/type/author"}, "name": "ALBORAN", "key": "/authors/OL10911040A", "source_records": ["bwb:9781520584003"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T06:03:18.845498"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T06:03:18.845498"}}
+/type/author /authors/OL10911403A 1 2022-11-20T06:12:20.159891 {"type": {"key": "/type/author"}, "name": "Sydney Turrieta", "key": "/authors/OL10911403A", "source_records": ["bwb:9781520810096"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T06:12:20.159891"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T06:12:20.159891"}}
+/type/author /authors/OL10911494A 1 2022-11-20T06:14:26.189613 {"type": {"key": "/type/author"}, "name": "Niel Potgieter", "key": "/authors/OL10911494A", "source_records": ["bwb:9781520887296"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T06:14:26.189613"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T06:14:26.189613"}}
+/type/author /authors/OL10911616A 1 2022-11-20T06:18:05.255966 {"type": {"key": "/type/author"}, "name": "Carly C", "key": "/authors/OL10911616A", "source_records": ["bwb:9781520736822"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T06:18:05.255966"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T06:18:05.255966"}}
+/type/author /authors/OL1091165A 2 2008-08-20T02:58:55.042424 {"name": "M. J. Adan", "personal_name": "M. J. Adan", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T02:58:55.042424"}, "key": "/authors/OL1091165A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL1091183A 1 2008-04-01T03:28:50.625462 {"name": "Bassa, Endre.", "personal_name": "Bassa, Endre.", "last_modified": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "key": "/authors/OL1091183A", "type": {"key": "/type/author"}, "revision": 1}
+/type/author /authors/OL10912007A 1 2022-11-20T06:40:18.756780 {"type": {"key": "/type/author"}, "name": "Kahyia Parris", "key": "/authors/OL10912007A", "source_records": ["bwb:9781521015261"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T06:40:18.756780"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T06:40:18.756780"}}
+/type/author /authors/OL10912010A 1 2022-11-20T06:40:32.325223 {"type": {"key": "/type/author"}, "name": "K. L. Hira", "key": "/authors/OL10912010A", "source_records": ["bwb:9781520899671"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T06:40:32.325223"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T06:40:32.325223"}}
+/type/author /authors/OL10912204A 1 2022-11-20T06:49:06.892850 {"type": {"key": "/type/author"}, "name": "T. V. Williams", "key": "/authors/OL10912204A", "source_records": ["bwb:9781521083444"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T06:49:06.892850"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T06:49:06.892850"}}
+/type/author /authors/OL10912311A 1 2022-11-20T06:52:56.130986 {"type": {"key": "/type/author"}, "name": "Aasher", "key": "/authors/OL10912311A", "source_records": ["bwb:9781521136751"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T06:52:56.130986"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T06:52:56.130986"}}
+/type/author /authors/OL10912393A 1 2022-11-20T06:54:36.282412 {"type": {"key": "/type/author"}, "name": "Cynthia J. Leo", "key": "/authors/OL10912393A", "source_records": ["bwb:9781521154274"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T06:54:36.282412"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T06:54:36.282412"}}
+/type/author /authors/OL10913131A 1 2022-11-20T07:14:17.444356 {"type": {"key": "/type/author"}, "name": "Selfpubbookcovers/petal65 petal65", "key": "/authors/OL10913131A", "source_records": ["bwb:9781521378366"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T07:14:17.444356"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T07:14:17.444356"}}
+/type/author /authors/OL10913168A 1 2022-11-20T07:16:25.256085 {"type": {"key": "/type/author"}, "name": "Robert Hare Bell", "key": "/authors/OL10913168A", "source_records": ["bwb:9781521477564"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T07:16:25.256085"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T07:16:25.256085"}}
+/type/author /authors/OL10913438A 1 2022-11-20T07:21:52.243386 {"type": {"key": "/type/author"}, "name": "Kaitlyn Kaitlyn Decker", "key": "/authors/OL10913438A", "source_records": ["bwb:9781521545331"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T07:21:52.243386"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T07:21:52.243386"}}
+/type/author /authors/OL10913702A 1 2022-11-20T07:27:51.477816 {"type": {"key": "/type/author"}, "name": "Silvia G. Argente", "key": "/authors/OL10913702A", "source_records": ["bwb:9781521753040"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T07:27:51.477816"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T07:27:51.477816"}}
+/type/author /authors/OL10913728A 1 2022-11-20T07:28:27.259598 {"type": {"key": "/type/author"}, "name": "Lotti Tomke", "key": "/authors/OL10913728A", "source_records": ["bwb:9781521732915"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T07:28:27.259598"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T07:28:27.259598"}}
+/type/author /authors/OL10914131A 1 2022-11-20T07:39:42.142908 {"type": {"key": "/type/author"}, "name": "Agust\u00edn Ferro", "key": "/authors/OL10914131A", "source_records": ["bwb:9781521468586"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T07:39:42.142908"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T07:39:42.142908"}}
+/type/author /authors/OL10914822A 1 2022-11-20T08:00:41.548321 {"type": {"key": "/type/author"}, "name": "Barbara Repa", "key": "/authors/OL10914822A", "source_records": ["bwb:9781549557576"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T08:00:41.548321"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T08:00:41.548321"}}
+/type/author /authors/OL10914925A 1 2022-11-20T08:03:05.344614 {"type": {"key": "/type/author"}, "name": "F. Portela", "key": "/authors/OL10914925A", "source_records": ["bwb:9781549609541"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T08:03:05.344614"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T08:03:05.344614"}}
+/type/author /authors/OL10914954A 1 2022-11-20T08:03:48.270242 {"type": {"key": "/type/author"}, "name": "kerron Andrews", "key": "/authors/OL10914954A", "source_records": ["bwb:9781549616419"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T08:03:48.270242"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T08:03:48.270242"}}
+/type/author /authors/OL10915234A 1 2022-11-20T08:11:08.250321 {"type": {"key": "/type/author"}, "name": "Margaret Ingram", "key": "/authors/OL10915234A", "source_records": ["bwb:9781549702181"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T08:11:08.250321"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T08:11:08.250321"}}
+/type/author /authors/OL10915292A 1 2022-11-20T08:12:37.686108 {"type": {"key": "/type/author"}, "name": "T. J. Dell", "key": "/authors/OL10915292A", "source_records": ["bwb:9781549735707"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T08:12:37.686108"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T08:12:37.686108"}}
+/type/author /authors/OL10915343A 1 2022-11-20T08:14:51.697898 {"type": {"key": "/type/author"}, "name": "Christine Deviers Joncour", "key": "/authors/OL10915343A", "source_records": ["bwb:9781549738234"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T08:14:51.697898"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T08:14:51.697898"}}
+/type/author /authors/OL1091637A 1 2008-04-01T03:28:50.625462 {"name": "Andersen, H. E.", "personal_name": "Andersen, H. E.", "last_modified": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "key": "/authors/OL1091637A", "type": {"key": "/type/author"}, "revision": 1}
+/type/author /authors/OL10917219A 1 2022-11-20T09:03:18.861978 {"type": {"key": "/type/author"}, "name": "Anarchist Anarchist Kitchen", "key": "/authors/OL10917219A", "source_records": ["bwb:9781976855856"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T09:03:18.861978"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T09:03:18.861978"}}
+/type/author /authors/OL10917999A 1 2022-11-20T09:23:38.972583 {"type": {"key": "/type/author"}, "name": "P. MAHE", "key": "/authors/OL10917999A", "source_records": ["bwb:9781976759581"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T09:23:38.972583"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T09:23:38.972583"}}
+/type/author /authors/OL10918158A 1 2022-11-20T09:26:41.628531 {"type": {"key": "/type/author"}, "name": "R\u00e9mi Granville", "key": "/authors/OL10918158A", "source_records": ["bwb:9781980645313"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T09:26:41.628531"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T09:26:41.628531"}}
+/type/author /authors/OL10918365A 1 2022-11-20T09:31:24.468842 {"type": {"key": "/type/author"}, "name": "Gregory Marco", "key": "/authors/OL10918365A", "source_records": ["bwb:9781980838050"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T09:31:24.468842"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T09:31:24.468842"}}
+/type/author /authors/OL10918630A 1 2022-11-20T09:37:11.142533 {"type": {"key": "/type/author"}, "name": "Mark Lundbek", "key": "/authors/OL10918630A", "source_records": ["bwb:9781973469216"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T09:37:11.142533"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T09:37:11.142533"}}
+/type/author /authors/OL10918713A 1 2022-11-20T09:39:49.794802 {"type": {"key": "/type/author"}, "name": "Michael Ensle", "key": "/authors/OL10918713A", "source_records": ["bwb:9781980486084"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T09:39:49.794802"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T09:39:49.794802"}}
+/type/author /authors/OL10919249A 1 2022-11-20T09:52:08.452393 {"type": {"key": "/type/author"}, "name": "Julius Nicoladec", "key": "/authors/OL10919249A", "source_records": ["bwb:9781980288558"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T09:52:08.452393"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T09:52:08.452393"}}
+/type/author /authors/OL1091924A 2 2008-08-20T03:02:08.432982 {"name": "Ladislav S\u030coms\u030ca\u0301k", "personal_name": "Ladislav S\u030coms\u030ca\u0301k", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T03:02:08.432982"}, "key": "/authors/OL1091924A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10919668A 1 2022-11-20T10:03:07.851906 {"type": {"key": "/type/author"}, "name": "Monroe Blake", "key": "/authors/OL10919668A", "source_records": ["bwb:9781980236900"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T10:03:07.851906"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T10:03:07.851906"}}
+/type/author /authors/OL10919695A 1 2022-11-20T10:03:53.914774 {"type": {"key": "/type/author"}, "name": "Robert Reeves III", "key": "/authors/OL10919695A", "source_records": ["bwb:9781980250920"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T10:03:53.914774"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T10:03:53.914774"}}
+/type/author /authors/OL10920208A 1 2022-11-20T10:15:52.457118 {"type": {"key": "/type/author"}, "name": "Edward Patrick-Clack IV", "key": "/authors/OL10920208A", "source_records": ["bwb:9781982964368"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T10:15:52.457118"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T10:15:52.457118"}}
+/type/author /authors/OL10920826A 1 2022-11-20T10:30:41.086360 {"type": {"key": "/type/author"}, "name": "Aquiles Balle", "key": "/authors/OL10920826A", "source_records": ["bwb:9781981011872"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T10:30:41.086360"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T10:30:41.086360"}}
+/type/author /authors/OL10920966A 1 2022-11-20T10:33:53.428550 {"type": {"key": "/type/author"}, "name": "wanda glenn", "key": "/authors/OL10920966A", "source_records": ["bwb:9781982965815"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T10:33:53.428550"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T10:33:53.428550"}}
+/type/author /authors/OL10921209A 1 2022-11-20T10:39:57.372018 {"type": {"key": "/type/author"}, "name": "Enky Enky", "key": "/authors/OL10921209A", "source_records": ["bwb:9781983358968"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T10:39:57.372018"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T10:39:57.372018"}}
+/type/author /authors/OL10921348A 1 2022-11-20T10:43:07.066865 {"type": {"key": "/type/author"}, "name": "Angela Sutton", "key": "/authors/OL10921348A", "source_records": ["bwb:9781718016293"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T10:43:07.066865"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T10:43:07.066865"}}
+/type/author /authors/OL10921808A 1 2022-11-20T10:51:24.696528 {"type": {"key": "/type/author"}, "name": "Think Think difference", "key": "/authors/OL10921808A", "source_records": ["bwb:9781720023470"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T10:51:24.696528"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T10:51:24.696528"}}
+/type/author /authors/OL10922048A 1 2022-11-20T10:57:14.536211 {"type": {"key": "/type/author"}, "name": "Taylor Enjoy", "key": "/authors/OL10922048A", "source_records": ["bwb:9781720100577"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T10:57:14.536211"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T10:57:14.536211"}}
+/type/author /authors/OL10922864A 1 2022-11-20T11:15:43.202789 {"type": {"key": "/type/author"}, "name": "D. Gaviola Feck", "key": "/authors/OL10922864A", "source_records": ["bwb:9781726694391"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T11:15:43.202789"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T11:15:43.202789"}}
+/type/author /authors/OL10923209A 1 2022-11-20T11:23:54.087573 {"type": {"key": "/type/author"}, "name": "Roosevelt Dumornay", "key": "/authors/OL10923209A", "source_records": ["bwb:9781729429709"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T11:23:54.087573"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T11:23:54.087573"}}
+/type/author /authors/OL10923212A 1 2022-11-20T11:23:55.855298 {"type": {"key": "/type/author"}, "name": "Michelle Majors", "key": "/authors/OL10923212A", "source_records": ["bwb:9781730853968"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T11:23:55.855298"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T11:23:55.855298"}}
+/type/author /authors/OL10923371A 1 2022-11-20T11:27:46.988453 {"type": {"key": "/type/author"}, "name": "Tiago Ramos", "key": "/authors/OL10923371A", "source_records": ["bwb:9781983380372"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T11:27:46.988453"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T11:27:46.988453"}}
+/type/author /authors/OL10923798A 1 2022-11-20T11:37:16.082644 {"type": {"key": "/type/author"}, "name": "Paul Rux", "key": "/authors/OL10923798A", "source_records": ["bwb:9781790588794"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T11:37:16.082644"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T11:37:16.082644"}}
+/type/author /authors/OL10923838A 1 2022-11-20T11:38:09.327367 {"type": {"key": "/type/author"}, "name": "Jean Guillory", "key": "/authors/OL10923838A", "source_records": ["bwb:9781790613366"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T11:38:09.327367"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T11:38:09.327367"}}
+/type/author /authors/OL10924070A 1 2022-11-20T11:47:05.383126 {"type": {"key": "/type/author"}, "name": "Dell Valle Dal\u00ed", "key": "/authors/OL10924070A", "source_records": ["bwb:9781719830973"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T11:47:05.383126"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T11:47:05.383126"}}
+/type/author /authors/OL10924222A 1 2022-11-20T11:50:54.069025 {"type": {"key": "/type/author"}, "name": "Angie Maus", "key": "/authors/OL10924222A", "source_records": ["bwb:9781790976966"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T11:50:54.069025"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T11:50:54.069025"}}
+/type/author /authors/OL10924305A 1 2022-11-20T11:52:45.637787 {"type": {"key": "/type/author"}, "name": "Franklin Xavier Moyano Barragan", "key": "/authors/OL10924305A", "source_records": ["bwb:9781792779237"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T11:52:45.637787"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T11:52:45.637787"}}
+/type/author /authors/OL10924310A 1 2022-11-20T11:52:51.014222 {"type": {"key": "/type/author"}, "name": "Saugata Chakraborty", "key": "/authors/OL10924310A", "source_records": ["bwb:9781791915490"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T11:52:51.014222"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T11:52:51.014222"}}
+/type/author /authors/OL10924522A 1 2022-11-20T11:56:50.734498 {"type": {"key": "/type/author"}, "name": "Edward Varga", "key": "/authors/OL10924522A", "source_records": ["bwb:9781790925520"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T11:56:50.734498"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T11:56:50.734498"}}
+/type/author /authors/OL10925888A 1 2022-11-20T12:31:06.592965 {"type": {"key": "/type/author"}, "name": "Jennifer J. Grimm", "key": "/authors/OL10925888A", "source_records": ["bwb:9781790578559"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T12:31:06.592965"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T12:31:06.592965"}}
+/type/author /authors/OL10926039A 1 2022-11-20T12:34:49.307779 {"type": {"key": "/type/author"}, "name": "Barbara Figueredo", "key": "/authors/OL10926039A", "source_records": ["bwb:9781794574861"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T12:34:49.307779"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T12:34:49.307779"}}
+/type/author /authors/OL10926060A 1 2022-11-20T12:35:20.402221 {"type": {"key": "/type/author"}, "name": "Marlys Feder", "key": "/authors/OL10926060A", "source_records": ["bwb:9781797820132"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T12:35:20.402221"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T12:35:20.402221"}}
+/type/author /authors/OL10926189A 1 2022-11-20T12:39:34.904330 {"type": {"key": "/type/author"}, "name": "Bryce Hicks", "key": "/authors/OL10926189A", "source_records": ["bwb:9781720040170"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T12:39:34.904330"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T12:39:34.904330"}}
+/type/author /authors/OL10926483A 1 2022-11-20T12:50:09.464479 {"type": {"key": "/type/author"}, "name": "Eevee VS Ho-Oh", "key": "/authors/OL10926483A", "source_records": ["bwb:9781797633855"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T12:50:09.464479"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T12:50:09.464479"}}
+/type/author /authors/OL10927093A 1 2022-11-20T13:16:52.571751 {"type": {"key": "/type/author"}, "name": "W. D. S. Mclay", "key": "/authors/OL10927093A", "source_records": ["bwb:9780511507137"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T13:16:52.571751"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T13:16:52.571751"}}
+/type/author /authors/OL10927123A 1 2022-11-20T13:23:04.006860 {"type": {"key": "/type/author"}, "name": "Ed LaVale", "key": "/authors/OL10927123A", "source_records": ["bwb:9781439642498"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T13:23:04.006860"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T13:23:04.006860"}}
+/type/author /authors/OL10927130A 1 2022-11-20T13:23:50.261266 {"type": {"key": "/type/author"}, "name": "Veronica McKinnon", "key": "/authors/OL10927130A", "source_records": ["bwb:9781493192601"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T13:23:50.261266"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T13:23:50.261266"}}
+/type/author /authors/OL1092739A 1 2008-04-01T03:28:50.625462 {"name": "Christian-Jewish Meeting (1st 1984 Ottobeuren, Germany)", "last_modified": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "key": "/authors/OL1092739A", "type": {"key": "/type/author"}, "revision": 1}
+/type/author /authors/OL1092752A 2 2008-08-20T03:06:08.940587 {"name": "Joel B. Itzkowitz", "personal_name": "Joel B. Itzkowitz", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T03:06:08.940587"}, "key": "/authors/OL1092752A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10927713A 1 2022-11-20T13:55:54.055876 {"type": {"key": "/type/author"}, "name": "Kittie Mayfield", "key": "/authors/OL10927713A", "source_records": ["bwb:9781531663773"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T13:55:54.055876"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T13:55:54.055876"}}
+/type/author /authors/OL10927838A 1 2022-11-20T13:59:26.521398 {"type": {"key": "/type/author"}, "name": "William McDow", "key": "/authors/OL10927838A", "source_records": ["bwb:9781520105758"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T13:59:26.521398"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T13:59:26.521398"}}
+/type/author /authors/OL10928111A 1 2022-11-20T14:06:19.712111 {"type": {"key": "/type/author"}, "name": "Muriel SALMONA", "key": "/authors/OL10928111A", "source_records": ["bwb:9781520214221"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T14:06:19.712111"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T14:06:19.712111"}}
+/type/author /authors/OL10928139A 1 2022-11-20T14:06:52.878769 {"type": {"key": "/type/author"}, "name": "Joe Appel", "key": "/authors/OL10928139A", "source_records": ["bwb:9781520230771"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T14:06:52.878769"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T14:06:52.878769"}}
+/type/author /authors/OL10928573A 1 2022-11-20T14:18:57.602576 {"type": {"key": "/type/author"}, "name": "Saguaro Media", "key": "/authors/OL10928573A", "source_records": ["bwb:9781520440866"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T14:18:57.602576"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T14:18:57.602576"}}
+/type/author /authors/OL1092862A 2 2008-08-20T03:06:39.732639 {"name": "Irmgard Lerch", "personal_name": "Irmgard Lerch", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T03:06:39.732639"}, "key": "/authors/OL1092862A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10928852A 1 2022-11-20T14:25:48.973324 {"type": {"key": "/type/author"}, "name": "The Biggest Lie Ever Told", "key": "/authors/OL10928852A", "source_records": ["bwb:9781520262420"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T14:25:48.973324"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T14:25:48.973324"}}
+/type/author /authors/OL10928918A 1 2022-11-20T14:28:31.502235 {"type": {"key": "/type/author"}, "name": "Matthew Savino B.A. LL.B. C.H.R.E", "key": "/authors/OL10928918A", "source_records": ["bwb:9781520610108"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T14:28:31.502235"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T14:28:31.502235"}}
+/type/author /authors/OL10929124A 1 2022-11-20T14:33:46.678127 {"type": {"key": "/type/author"}, "name": "Laurel Diaz", "key": "/authors/OL10929124A", "source_records": ["bwb:9781520706603"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T14:33:46.678127"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T14:33:46.678127"}}
+/type/author /authors/OL10929137A 1 2022-11-20T14:34:03.416349 {"type": {"key": "/type/author"}, "name": "Volker Bernhardt", "key": "/authors/OL10929137A", "source_records": ["bwb:9781520651736"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T14:34:03.416349"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T14:34:03.416349"}}
+/type/author /authors/OL10929299A 1 2022-11-20T14:39:00.929809 {"type": {"key": "/type/author"}, "name": "Milovan Topic", "key": "/authors/OL10929299A", "source_records": ["bwb:9781520681634"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T14:39:00.929809"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T14:39:00.929809"}}
+/type/author /authors/OL10929482A 1 2022-11-20T14:43:29.787987 {"type": {"key": "/type/author"}, "name": "Antonio Jes\u00fas Fuentes Garcia", "key": "/authors/OL10929482A", "source_records": ["bwb:9781520830254"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T14:43:29.787987"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T14:43:29.787987"}}
+/type/author /authors/OL109296A 1 2008-04-01T03:28:50.625462 {"name": "Moine d'Occident.", "personal_name": "Moine d'Occident.", "last_modified": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "key": "/authors/OL109296A", "type": {"key": "/type/author"}, "revision": 1}
+/type/author /authors/OL10929835A 1 2022-11-20T14:53:18.591199 {"type": {"key": "/type/author"}, "name": "Rebecca Maxwell", "key": "/authors/OL10929835A", "source_records": ["bwb:9781520744179"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T14:53:18.591199"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T14:53:18.591199"}}
+/type/author /authors/OL10929A 2 2008-09-10T10:45:24.334023 {"name": "Guranditta Khanna", "personal_name": "Guranditta Khanna", "last_modified": {"type": "/type/datetime", "value": "2008-09-10T10:45:24.334023"}, "key": "/authors/OL10929A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10930705A 1 2022-11-20T15:19:23.215199 {"type": {"key": "/type/author"}, "name": "Jean WYSOCK", "key": "/authors/OL10930705A", "source_records": ["bwb:9781521368282"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T15:19:23.215199"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T15:19:23.215199"}}
+/type/author /authors/OL10930718A 1 2022-11-20T15:19:53.335181 {"type": {"key": "/type/author"}, "name": "Lisa Michelle Odgaard", "key": "/authors/OL10930718A", "source_records": ["bwb:9781521363218"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T15:19:53.335181"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T15:19:53.335181"}}
+/type/author /authors/OL10931090A 1 2022-11-20T15:31:17.112013 {"type": {"key": "/type/author"}, "name": "Tiffiny Tiffiny Simpson", "key": "/authors/OL10931090A", "source_records": ["bwb:9781521527665"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T15:31:17.112013"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T15:31:17.112013"}}
+/type/author /authors/OL1093153A 2 2008-08-20T03:08:07.272564 {"name": "Betty Morton", "personal_name": "Betty Morton", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T03:08:07.272564"}, "key": "/authors/OL1093153A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10931559A 1 2022-11-20T15:44:37.511612 {"type": {"key": "/type/author"}, "name": "Valentina Contessi", "key": "/authors/OL10931559A", "source_records": ["bwb:9781521464182"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T15:44:37.511612"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T15:44:37.511612"}}
+/type/author /authors/OL10931757A 1 2022-11-20T15:49:36.741813 {"type": {"key": "/type/author"}, "name": "M\u00e1rio Sebasti\u00e3o Labegalini", "key": "/authors/OL10931757A", "source_records": ["bwb:9781521874714"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T15:49:36.741813"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T15:49:36.741813"}}
+/type/author /authors/OL10931826A 1 2022-11-20T15:52:38.492382 {"type": {"key": "/type/author"}, "name": "Ajahn Santikaro", "key": "/authors/OL10931826A", "source_records": ["bwb:9781521930151"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T15:52:38.492382"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T15:52:38.492382"}}
+/type/author /authors/OL10932026A 1 2022-11-20T15:59:35.535023 {"type": {"key": "/type/author"}, "name": "Maurie Chan'nel", "key": "/authors/OL10932026A", "source_records": ["bwb:9781521934944"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T15:59:35.535023"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T15:59:35.535023"}}
+/type/author /authors/OL10932194A 1 2022-11-20T16:05:45.374820 {"type": {"key": "/type/author"}, "name": "Claude Cendr\u00e9e", "key": "/authors/OL10932194A", "source_records": ["bwb:9781522077220"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T16:05:45.374820"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T16:05:45.374820"}}
+/type/author /authors/OL10932707A 1 2022-11-20T16:21:23.408118 {"type": {"key": "/type/author"}, "name": "Mack, Joseph, 3rd", "key": "/authors/OL10932707A", "source_records": ["bwb:9781947308671"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T16:21:23.408118"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T16:21:23.408118"}}
+/type/author /authors/OL10932740A 1 2022-11-20T16:22:22.401878 {"type": {"key": "/type/author"}, "name": "Cl\u00e1udio Gon\u00e7alves", "key": "/authors/OL10932740A", "source_records": ["bwb:9781549697661"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T16:22:22.401878"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T16:22:22.401878"}}
+/type/author /authors/OL10932944A 1 2022-11-20T16:29:02.159909 {"type": {"key": "/type/author"}, "name": "Dnea Mcm", "key": "/authors/OL10932944A", "source_records": ["bwb:9781549742606"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T16:29:02.159909"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T16:29:02.159909"}}
+/type/author /authors/OL10933045A 1 2022-11-20T16:32:17.443038 {"type": {"key": "/type/author"}, "name": "Tamsin O'Shea", "key": "/authors/OL10933045A", "source_records": ["bwb:9781549791314"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T16:32:17.443038"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T16:32:17.443038"}}
+/type/author /authors/OL10933134A 1 2022-11-20T16:35:11.862410 {"type": {"key": "/type/author"}, "name": "Raik Sabeel", "key": "/authors/OL10933134A", "source_records": ["bwb:9781549918070"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T16:35:11.862410"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T16:35:11.862410"}}
+/type/author /authors/OL10933368A 1 2022-11-20T16:41:12.118131 {"type": {"key": "/type/author"}, "name": "Guillermo Lanchares", "key": "/authors/OL10933368A", "source_records": ["bwb:9781549906237"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T16:41:12.118131"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T16:41:12.118131"}}
+/type/author /authors/OL10933413A 1 2022-11-20T16:42:25.727428 {"type": {"key": "/type/author"}, "name": "Pavel Ikonomov", "key": "/authors/OL10933413A", "source_records": ["bwb:9781549985171"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T16:42:25.727428"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T16:42:25.727428"}}
+/type/author /authors/OL10933422A 1 2022-11-20T16:42:31.559467 {"type": {"key": "/type/author"}, "name": "Roger Distill", "key": "/authors/OL10933422A", "source_records": ["bwb:9781549955532"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T16:42:31.559467"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T16:42:31.559467"}}
+/type/author /authors/OL10933820A 1 2022-11-20T16:51:48.419838 {"type": {"key": "/type/author"}, "name": "Fergus FERGUSON", "key": "/authors/OL10933820A", "source_records": ["bwb:9781973238294"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T16:51:48.419838"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T16:51:48.419838"}}
+/type/author /authors/OL10934161A 1 2022-11-20T17:00:39.044714 {"type": {"key": "/type/author"}, "name": "Hubert Norton", "key": "/authors/OL10934161A", "source_records": ["bwb:9781973310846"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T17:00:39.044714"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T17:00:39.044714"}}
+/type/author /authors/OL10934166A 1 2022-11-20T17:00:43.720789 {"type": {"key": "/type/author"}, "name": "[TRANSLATED] MATTHEW LYNCH", "key": "/authors/OL10934166A", "source_records": ["bwb:9781973320012"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T17:00:43.720789"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T17:00:43.720789"}}
+/type/author /authors/OL10934569A 1 2022-11-20T17:10:52.213993 {"type": {"key": "/type/author"}, "name": "Chad Griffiths", "key": "/authors/OL10934569A", "source_records": ["bwb:9781973484592"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T17:10:52.213993"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T17:10:52.213993"}}
+/type/author /authors/OL10934733A 1 2022-11-20T17:14:17.112773 {"type": {"key": "/type/author"}, "name": "Michele Carosella", "key": "/authors/OL10934733A", "source_records": ["bwb:9781973570387"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T17:14:17.112773"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T17:14:17.112773"}}
+/type/author /authors/OL10935556A 1 2022-11-20T17:37:27.723609 {"type": {"key": "/type/author"}, "name": "Paul Francois HUSSON", "key": "/authors/OL10935556A", "source_records": ["bwb:9781980538936"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T17:37:27.723609"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T17:37:27.723609"}}
+/type/author /authors/OL10935690A 1 2022-11-20T17:40:27.372432 {"type": {"key": "/type/author"}, "name": "Jos\u00e9 Luis Puertas", "key": "/authors/OL10935690A", "source_records": ["bwb:9781976918926"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T17:40:27.372432"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T17:40:27.372432"}}
+/type/author /authors/OL10936914A 1 2022-11-20T18:13:00.363011 {"type": {"key": "/type/author"}, "name": "Barry Obama", "key": "/authors/OL10936914A", "source_records": ["bwb:9781980692324"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T18:13:00.363011"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T18:13:00.363011"}}
+/type/author /authors/OL10936941A 1 2022-11-20T18:14:23.989659 {"type": {"key": "/type/author"}, "name": "Pasteur Besson", "key": "/authors/OL10936941A", "source_records": ["bwb:9781976708312"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T18:14:23.989659"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T18:14:23.989659"}}
+/type/author /authors/OL10936944A 1 2022-11-20T18:14:35.152779 {"type": {"key": "/type/author"}, "name": "Joshua Pruner", "key": "/authors/OL10936944A", "source_records": ["bwb:9781980284383"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T18:14:35.152779"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T18:14:35.152779"}}
+/type/author /authors/OL10937344A 1 2022-11-20T18:30:15.885541 {"type": {"key": "/type/author"}, "name": "Anthony C. Robinson", "key": "/authors/OL10937344A", "source_records": ["bwb:9781981085316"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T18:30:15.885541"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T18:30:15.885541"}}
+/type/author /authors/OL10937738A 1 2022-11-20T18:44:35.642410 {"type": {"key": "/type/author"}, "name": "Raymond Posch", "key": "/authors/OL10937738A", "source_records": ["bwb:9781980613756"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T18:44:35.642410"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T18:44:35.642410"}}
+/type/author /authors/OL10938202A 1 2022-11-20T18:57:11.325082 {"type": {"key": "/type/author"}, "name": "Yoo Ata", "key": "/authors/OL10938202A", "source_records": ["bwb:9781717715333"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T18:57:11.325082"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T18:57:11.325082"}}
+/type/author /authors/OL10938286A 1 2022-11-20T18:58:55.003188 {"type": {"key": "/type/author"}, "name": "Diane Frachon", "key": "/authors/OL10938286A", "source_records": ["bwb:9781982923631"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T18:58:55.003188"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T18:58:55.003188"}}
+/type/author /authors/OL10938938A 1 2022-11-20T19:14:31.917427 {"type": {"key": "/type/author"}, "name": "Alexandru Raduta", "key": "/authors/OL10938938A", "source_records": ["bwb:9781983098307"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T19:14:31.917427"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T19:14:31.917427"}}
+/type/author /authors/OL10938985A 1 2022-11-20T19:15:23.831914 {"type": {"key": "/type/author"}, "name": "Dominique Mockly", "key": "/authors/OL10938985A", "source_records": ["bwb:9781717882349"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T19:15:23.831914"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T19:15:23.831914"}}
+/type/author /authors/OL10939573A 1 2022-11-20T19:29:30.750761 {"type": {"key": "/type/author"}, "name": "Muscle Experts", "key": "/authors/OL10939573A", "source_records": ["bwb:9781726863278"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T19:29:30.750761"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T19:29:30.750761"}}
+/type/author /authors/OL10939947A 1 2022-11-20T19:40:21.102383 {"type": {"key": "/type/author"}, "name": "Luciana Ruas", "key": "/authors/OL10939947A", "source_records": ["bwb:9781723871924"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T19:40:21.102383"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T19:40:21.102383"}}
+/type/author /authors/OL10940043A 1 2022-11-20T19:42:16.120386 {"type": {"key": "/type/author"}, "name": "Sri Yukteswar", "key": "/authors/OL10940043A", "source_records": ["bwb:9781724109156"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T19:42:16.120386"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T19:42:16.120386"}}
+/type/author /authors/OL10940081A 1 2022-11-20T19:43:17.705095 {"type": {"key": "/type/author"}, "name": "Lark Vilray", "key": "/authors/OL10940081A", "source_records": ["bwb:9781718033351"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T19:43:17.705095"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T19:43:17.705095"}}
+/type/author /authors/OL10940496A 1 2022-11-20T19:55:59.527164 {"type": {"key": "/type/author"}, "name": "Bea Ribeiro", "key": "/authors/OL10940496A", "source_records": ["bwb:9781790394937"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T19:55:59.527164"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T19:55:59.527164"}}
+/type/author /authors/OL10941386A 1 2022-11-20T20:25:13.465573 {"type": {"key": "/type/author"}, "name": "Shauna Davis", "key": "/authors/OL10941386A", "source_records": ["bwb:9781718133914"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T20:25:13.465573"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T20:25:13.465573"}}
+/type/author /authors/OL1094139A 2 2008-08-20T03:12:50.913149 {"name": "Stoil Sotirov", "personal_name": "Stoil Sotirov", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T03:12:50.913149"}, "key": "/authors/OL1094139A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL1094217A 5 2020-09-30T13:36:39.994292 {"personal_name": "Joannes Ravisius Textor", "last_modified": {"type": "/type/datetime", "value": "2020-09-30T13:36:39.994292"}, "latest_revision": 5, "key": "/authors/OL1094217A", "remote_ids": {"viaf": "64103354", "wikidata": "Q1239570", "isni": "0000000109091154"}, "name": "Joannes Ravisius Textor", "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "death_date": "1524", "birth_date": "ca. 1480", "type": {"key": "/type/author"}, "revision": 5}
+/type/author /authors/OL10942270A 1 2022-11-20T20:50:47.273509 {"type": {"key": "/type/author"}, "name": "Jade Saoirse", "key": "/authors/OL10942270A", "source_records": ["bwb:9781792905551"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T20:50:47.273509"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T20:50:47.273509"}}
+/type/author /authors/OL109426A 1 2008-04-01T03:28:50.625462 {"name": "\u02bcOn\u0307\u02bb Cui\u02ba Tiraccha\u0304n\u02bb che\u02ba ku cha ra\u0304 van\u02bb.", "title": "Tiraccha\u0304n\u02bb che\u02ba ku cha ra\u0304 van\u02bb.", "personal_name": "\u02bcOn\u0307\u02bb Cui\u02ba", "last_modified": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "key": "/authors/OL109426A", "type": {"key": "/type/author"}, "revision": 1}
+/type/author /authors/OL10943273A 1 2022-11-20T21:20:38.484167 {"type": {"key": "/type/author"}, "name": "Gema BARCOS", "key": "/authors/OL10943273A", "source_records": ["bwb:9781793820235"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T21:20:38.484167"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T21:20:38.484167"}}
+/type/author /authors/OL10943345A 1 2022-11-20T21:22:37.257552 {"type": {"key": "/type/author"}, "name": "Fanar Islamische Kulturzentrum Katars", "key": "/authors/OL10943345A", "source_records": ["bwb:9781797859330"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T21:22:37.257552"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T21:22:37.257552"}}
+/type/author /authors/OL10944006A 1 2022-11-20T22:17:25.830352 {"type": {"key": "/type/author"}, "name": "Gwen Simmons", "key": "/authors/OL10944006A", "source_records": ["bwb:9781507150689"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T22:17:25.830352"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T22:17:25.830352"}}
+/type/author /authors/OL10944386A 1 2022-11-20T22:29:14.834821 {"type": {"key": "/type/author"}, "name": "Nathan Rawlins", "key": "/authors/OL10944386A", "source_records": ["bwb:9781519068156"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T22:29:14.834821"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T22:29:14.834821"}}
+/type/author /authors/OL10944815A 1 2022-11-20T22:41:23.761488 {"type": {"key": "/type/author"}, "name": "Brody Murphy", "key": "/authors/OL10944815A", "source_records": ["bwb:9781520326887"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T22:41:23.761488"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T22:41:23.761488"}}
+/type/author /authors/OL10944892A 1 2022-11-20T22:43:23.176967 {"type": {"key": "/type/author"}, "name": "Isai Salabarria", "key": "/authors/OL10944892A", "source_records": ["bwb:9781520373799"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T22:43:23.176967"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T22:43:23.176967"}}
+/type/author /authors/OL10944946A 1 2022-11-20T22:44:39.381397 {"type": {"key": "/type/author"}, "name": "Leonidas Milas", "key": "/authors/OL10944946A", "source_records": ["bwb:9781520377834"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T22:44:39.381397"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T22:44:39.381397"}}
+/type/author /authors/OL1094496A 2 2008-08-20T03:14:40.637376 {"name": "Betty Lou Mefford", "personal_name": "Betty Lou Mefford", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T03:14:40.637376"}, "key": "/authors/OL1094496A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10945326A 1 2022-11-20T22:54:51.760132 {"type": {"key": "/type/author"}, "name": "Parker N. Salty", "key": "/authors/OL10945326A", "source_records": ["bwb:9781520587592"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T22:54:51.760132"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T22:54:51.760132"}}
+/type/author /authors/OL1094539A 2 2008-08-20T03:14:50.219885 {"name": "Jacqueline Billant", "personal_name": "Jacqueline Billant", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T03:14:50.219885"}, "key": "/authors/OL1094539A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10945845A 1 2022-11-20T23:09:28.105634 {"type": {"key": "/type/author"}, "name": "Miss Jade Ramcharan", "key": "/authors/OL10945845A", "source_records": ["bwb:9781520799759"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T23:09:28.105634"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T23:09:28.105634"}}
+/type/author /authors/OL10945922A 1 2022-11-20T23:11:59.405544 {"type": {"key": "/type/author"}, "name": "Karoly CSIBI", "key": "/authors/OL10945922A", "source_records": ["bwb:9781520803890"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T23:11:59.405544"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T23:11:59.405544"}}
+/type/author /authors/OL10946200A 1 2022-11-20T23:20:58.762759 {"type": {"key": "/type/author"}, "name": "Mershach Apenkro", "key": "/authors/OL10946200A", "source_records": ["bwb:9781520958996"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T23:20:58.762759"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T23:20:58.762759"}}
+/type/author /authors/OL10946713A 1 2022-11-20T23:37:03.534796 {"type": {"key": "/type/author"}, "name": "Patty Gauhar", "key": "/authors/OL10946713A", "source_records": ["bwb:9781521176306"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T23:37:03.534796"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T23:37:03.534796"}}
+/type/author /authors/OL10946899A 1 2022-11-20T23:42:33.663079 {"type": {"key": "/type/author"}, "name": "Sukarma Thareja", "key": "/authors/OL10946899A", "source_records": ["bwb:9781521260067"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T23:42:33.663079"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T23:42:33.663079"}}
+/type/author /authors/OL10947018A 1 2022-11-20T23:46:27.946958 {"type": {"key": "/type/author"}, "name": "Grail Palgue", "key": "/authors/OL10947018A", "source_records": ["bwb:9781521322093"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T23:46:27.946958"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T23:46:27.946958"}}
+/type/author /authors/OL10947211A 1 2022-11-20T23:52:45.235255 {"type": {"key": "/type/author"}, "name": "with staff of the US National Library of Medicine", "key": "/authors/OL10947211A", "source_records": ["bwb:9781439661314"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-20T23:52:45.235255"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-20T23:52:45.235255"}}
+/type/author /authors/OL10947539A 1 2022-11-21T00:02:52.806907 {"type": {"key": "/type/author"}, "name": "Frances Frances White", "key": "/authors/OL10947539A", "source_records": ["bwb:9781521525616"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T00:02:52.806907"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T00:02:52.806907"}}
+/type/author /authors/OL10947594A 1 2022-11-21T00:04:12.186534 {"type": {"key": "/type/author"}, "name": "Michael Channing", "key": "/authors/OL10947594A", "source_records": ["bwb:9781521484104"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T00:04:12.186534"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T00:04:12.186534"}}
+/type/author /authors/OL1094819A 2 2008-08-20T03:15:56.112239 {"name": "F. Walbert", "personal_name": "F. Walbert", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T03:15:56.112239"}, "key": "/authors/OL1094819A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10948733A 1 2022-11-21T00:46:20.941097 {"type": {"key": "/type/author"}, "name": "A'ishah & Kimberly D. Muhammad", "key": "/authors/OL10948733A", "source_records": ["bwb:9781521964552"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T00:46:20.941097"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T00:46:20.941097"}}
+/type/author /authors/OL1094920A 6 2020-09-30T12:16:56.562052 {"name": "Joseph Bertrand", "personal_name": "Joseph Bertrand", "death_date": "1900", "alternate_names": ["Joseph Louis Fran\u00e7ois Bertrand"], "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2020-09-30T12:16:56.562052"}, "latest_revision": 6, "key": "/authors/OL1094920A", "birth_date": "1822", "revision": 6, "type": {"key": "/type/author"}, "remote_ids": {"viaf": "93028", "wikidata": "Q315436", "isni": "0000000108613336"}}
+/type/author /authors/OL10949530A 1 2022-11-21T01:12:34.354806 {"type": {"key": "/type/author"}, "name": "Aspiring Poets", "key": "/authors/OL10949530A", "source_records": ["bwb:9781549834455"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T01:12:34.354806"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T01:12:34.354806"}}
+/type/author /authors/OL109497A 2 2008-09-09T04:58:30.467388 {"name": "Ca Ra\u0304jana\u0304yakam", "personal_name": "Ca Ra\u0304jana\u0304yakam", "last_modified": {"type": "/type/datetime", "value": "2008-09-09T04:58:30.467388"}, "key": "/authors/OL109497A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10949839A 1 2022-11-21T01:22:06.168404 {"type": {"key": "/type/author"}, "name": "Collin Greenwood", "key": "/authors/OL10949839A", "source_records": ["bwb:9781973109983"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T01:22:06.168404"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T01:22:06.168404"}}
+/type/author /authors/OL10949915A 1 2022-11-21T01:23:46.582808 {"type": {"key": "/type/author"}, "name": "Dik A. Daso", "key": "/authors/OL10949915A", "source_records": ["bwb:9781973191742"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T01:23:46.582808"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T01:23:46.582808"}}
+/type/author /authors/OL10949926A 1 2022-11-21T01:24:06.855354 {"type": {"key": "/type/author"}, "name": "Marcos Mesquita de Souza", "key": "/authors/OL10949926A", "source_records": ["bwb:9781549868092"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T01:24:06.855354"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T01:24:06.855354"}}
+/type/author /authors/OL10949950A 1 2022-11-21T01:25:27.101123 {"type": {"key": "/type/author"}, "name": "Joshua Kuffour", "key": "/authors/OL10949950A", "source_records": ["bwb:9781973175315"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T01:25:27.101123"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T01:25:27.101123"}}
+/type/author /authors/OL10950599A 1 2022-11-21T01:43:24.319318 {"type": {"key": "/type/author"}, "name": "M. M. McNutt", "key": "/authors/OL10950599A", "source_records": ["bwb:9781973201335"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T01:43:24.319318"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T01:43:24.319318"}}
+/type/author /authors/OL1095068A 2 2008-08-20T03:17:05.931957 {"name": "Samuel Ram", "personal_name": "Samuel Ram", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T03:17:05.931957"}, "key": "/authors/OL1095068A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10951355A 1 2022-11-21T02:02:22.724964 {"type": {"key": "/type/author"}, "name": "Lysa DIAMANTAMES", "key": "/authors/OL10951355A", "source_records": ["bwb:9781980456100"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T02:02:22.724964"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T02:02:22.724964"}}
+/type/author /authors/OL10951663A 1 2022-11-21T02:12:20.312331 {"type": {"key": "/type/author"}, "name": "M. L. Figueroa", "key": "/authors/OL10951663A", "source_records": ["bwb:9781976976049"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T02:12:20.312331"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T02:12:20.312331"}}
+/type/author /authors/OL10951718A 1 2022-11-21T02:14:29.819138 {"type": {"key": "/type/author"}, "name": "Princess Borrego", "key": "/authors/OL10951718A", "source_records": ["bwb:9781980571308"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T02:14:29.819138"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T02:14:29.819138"}}
+/type/author /authors/OL10951895A 1 2022-11-21T02:19:00.626698 {"type": {"key": "/type/author"}, "name": "Katherine G", "key": "/authors/OL10951895A", "source_records": ["bwb:9781976988561"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T02:19:00.626698"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T02:19:00.626698"}}
+/type/author /authors/OL10952015A 1 2022-11-21T02:22:08.053366 {"type": {"key": "/type/author"}, "name": "Brooke Bednarke", "key": "/authors/OL10952015A", "source_records": ["bwb:9781980580171"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T02:22:08.053366"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T02:22:08.053366"}}
+/type/author /authors/OL1095210A 2 2008-08-20T03:18:02.481945 {"name": "Ja\u0304nis Langins", "personal_name": "Ja\u0304nis Langins", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T03:18:02.481945"}, "key": "/authors/OL1095210A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10952119A 1 2022-11-21T02:25:43.082826 {"type": {"key": "/type/author"}, "name": "JParker Griffin", "key": "/authors/OL10952119A", "source_records": ["bwb:9781980400134"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T02:25:43.082826"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T02:25:43.082826"}}
+/type/author /authors/OL10952253A 1 2022-11-21T02:29:41.905371 {"type": {"key": "/type/author"}, "name": "Carlos D\u00edaz Dom\u00ednguez", "key": "/authors/OL10952253A", "source_records": ["bwb:9781976713675"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T02:29:41.905371"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T02:29:41.905371"}}
+/type/author /authors/OL10952352A 1 2022-11-21T02:33:10.990693 {"type": {"key": "/type/author"}, "name": "Norberto GONZALEZ VILLARREAL", "key": "/authors/OL10952352A", "source_records": ["bwb:9781980216919"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T02:33:10.990693"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T02:33:10.990693"}}
+/type/author /authors/OL10952384A 1 2022-11-21T02:33:59.020017 {"type": {"key": "/type/author"}, "name": "Kala Ravi", "key": "/authors/OL10952384A", "source_records": ["bwb:9781521084861"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T02:33:59.020017"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T02:33:59.020017"}}
+/type/author /authors/OL10952531A 1 2022-11-21T02:38:28.822513 {"type": {"key": "/type/author"}, "name": "Rosa MART\u00cdN COTILLA", "key": "/authors/OL10952531A", "source_records": ["bwb:9781980820321"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T02:38:28.822513"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T02:38:28.822513"}}
+/type/author /authors/OL1095257A 2 2008-08-20T03:18:17.964427 {"name": "James Cribb", "personal_name": "James Cribb", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T03:18:17.964427"}, "key": "/authors/OL1095257A", "birth_date": "1956", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10953044A 1 2022-11-21T02:53:25.442321 {"type": {"key": "/type/author"}, "name": "Mayur and Akshay Pawar", "key": "/authors/OL10953044A", "source_records": ["bwb:9781980927709"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T02:53:25.442321"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T02:53:25.442321"}}
+/type/author /authors/OL1095304A 2 2008-08-20T03:18:33.89908 {"name": "George Walter Goodley", "personal_name": "George Walter Goodley", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T03:18:33.89908"}, "key": "/authors/OL1095304A", "birth_date": "1912", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10953176A 1 2022-11-21T02:56:14.691181 {"type": {"key": "/type/author"}, "name": "Tylee Tidmore", "key": "/authors/OL10953176A", "source_records": ["bwb:9781981076871"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T02:56:14.691181"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T02:56:14.691181"}}
+/type/author /authors/OL1095337A 2 2008-08-20T03:18:43.640892 {"name": "S. P. Zubrilov", "personal_name": "S. P. Zubrilov", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T03:18:43.640892"}, "key": "/authors/OL1095337A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10953501A 1 2022-11-21T03:03:37.503533 {"type": {"key": "/type/author"}, "name": "Timo Kreuter", "key": "/authors/OL10953501A", "source_records": ["bwb:9781983018053"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T03:03:37.503533"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T03:03:37.503533"}}
+/type/author /authors/OL10953649A 1 2022-11-21T03:07:50.268561 {"type": {"key": "/type/author"}, "name": "Honey Butter", "key": "/authors/OL10953649A", "source_records": ["bwb:9781980896586"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T03:07:50.268561"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T03:07:50.268561"}}
+/type/author /authors/OL10953841A 1 2022-11-21T03:14:26.081950 {"type": {"key": "/type/author"}, "name": "Mar\u00eda Dom\u00ednguez Guill\u00e9n", "key": "/authors/OL10953841A", "source_records": ["bwb:9781980875635"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T03:14:26.081950"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T03:14:26.081950"}}
+/type/author /authors/OL10953911A 1 2022-11-21T03:15:57.497619 {"type": {"key": "/type/author"}, "name": "eissef", "key": "/authors/OL10953911A", "source_records": ["bwb:9781983273643"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T03:15:57.497619"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T03:15:57.497619"}}
+/type/author /authors/OL10954039A 1 2022-11-21T03:19:49.002033 {"type": {"key": "/type/author"}, "name": "Felix Mars", "key": "/authors/OL10954039A", "source_records": ["bwb:9781983136597"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T03:19:49.002033"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T03:19:49.002033"}}
+/type/author /authors/OL10954108A 1 2022-11-21T03:21:27.832075 {"type": {"key": "/type/author"}, "name": "Andre' Gw Hagestedt", "key": "/authors/OL10954108A", "source_records": ["bwb:9781983241444"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T03:21:27.832075"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T03:21:27.832075"}}
+/type/author /authors/OL10954378A 1 2022-11-21T03:28:29.977280 {"type": {"key": "/type/author"}, "name": "S. L. Jabanag", "key": "/authors/OL10954378A", "source_records": ["bwb:9781983121289"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T03:28:29.977280"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T03:28:29.977280"}}
+/type/author /authors/OL10954395A 1 2022-11-21T03:28:51.035796 {"type": {"key": "/type/author"}, "name": "Oconee County Historical Society", "key": "/authors/OL10954395A", "source_records": ["bwb:9781467129220"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T03:28:51.035796"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T03:28:51.035796"}}
+/type/author /authors/OL10955025A 1 2022-11-21T03:44:23.166617 {"type": {"key": "/type/author"}, "name": "Kamil Youcef", "key": "/authors/OL10955025A", "source_records": ["bwb:9781724019295"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T03:44:23.166617"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T03:44:23.166617"}}
+/type/author /authors/OL10955030A 1 2022-11-21T03:44:29.031446 {"type": {"key": "/type/author"}, "name": "Fanny Gupta", "key": "/authors/OL10955030A", "source_records": ["bwb:9781723949623"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T03:44:29.031446"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T03:44:29.031446"}}
+/type/author /authors/OL10955363A 1 2022-11-21T03:52:24.133736 {"type": {"key": "/type/author"}, "name": "Antonio Mej\u00eda Ortiz", "key": "/authors/OL10955363A", "source_records": ["bwb:9781728656977"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T03:52:24.133736"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T03:52:24.133736"}}
+/type/author /authors/OL1095562A 2 2008-08-20T03:19:54.411251 {"name": "Joan Ibuje", "personal_name": "Joan Ibuje", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T03:19:54.411251"}, "key": "/authors/OL1095562A", "birth_date": "1941", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10955675A 1 2022-11-21T04:00:39.899263 {"type": {"key": "/type/author"}, "name": "Johanna Luis", "key": "/authors/OL10955675A", "source_records": ["bwb:9781983281211"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T04:00:39.899263"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T04:00:39.899263"}}
+/type/author /authors/OL10955901A 1 2022-11-21T04:07:00.750964 {"type": {"key": "/type/author"}, "name": "Clifford Clayton", "key": "/authors/OL10955901A", "source_records": ["bwb:9781729171707"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T04:07:00.750964"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T04:07:00.750964"}}
+/type/author /authors/OL10956154A 1 2022-11-21T04:13:39.755648 {"type": {"key": "/type/author"}, "name": "Giorgio Gibertini", "key": "/authors/OL10956154A", "source_records": ["bwb:9781729291696"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T04:13:39.755648"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T04:13:39.755648"}}
+/type/author /authors/OL10956419A 1 2022-11-21T04:21:34.160930 {"type": {"key": "/type/author"}, "name": "Walter Kottmann", "key": "/authors/OL10956419A", "source_records": ["bwb:9781728857077"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T04:21:34.160930"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T04:21:34.160930"}}
+/type/author /authors/OL10956551A 1 2022-11-21T04:27:00.409228 {"type": {"key": "/type/author"}, "name": "Vanessa Sangue", "key": "/authors/OL10956551A", "source_records": ["bwb:9781791757014"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T04:27:00.409228"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T04:27:00.409228"}}
+/type/author /authors/OL10956873A 1 2022-11-21T04:37:20.727633 {"type": {"key": "/type/author"}, "name": "Nico Mckenzie", "key": "/authors/OL10956873A", "source_records": ["bwb:9781728669199"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T04:37:20.727633"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T04:37:20.727633"}}
+/type/author /authors/OL10956936A 1 2022-11-21T04:39:16.424321 {"type": {"key": "/type/author"}, "name": "Micky Williamson", "key": "/authors/OL10956936A", "source_records": ["bwb:9781791902315"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T04:39:16.424321"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T04:39:16.424321"}}
+/type/author /authors/OL10957091A 1 2022-11-21T04:42:46.121249 {"type": {"key": "/type/author"}, "name": "Ayanna Chanel Fultz", "key": "/authors/OL10957091A", "source_records": ["bwb:9781717933874"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T04:42:46.121249"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T04:42:46.121249"}}
+/type/author /authors/OL10958332A 1 2022-11-21T05:17:11.176829 {"type": {"key": "/type/author"}, "name": "Jane Crazydiamondediting", "key": "/authors/OL10958332A", "source_records": ["bwb:9781719973984"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T05:17:11.176829"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T05:17:11.176829"}}
+/type/author /authors/OL10958333A 1 2022-11-21T05:17:11.176829 {"type": {"key": "/type/author"}, "name": "Debra Stang", "key": "/authors/OL10958333A", "source_records": ["bwb:9781719973984"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T05:17:11.176829"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T05:17:11.176829"}}
+/type/author /authors/OL10958356A 1 2022-11-21T05:18:38.717943 {"type": {"key": "/type/author"}, "name": "Ben Davis Jr", "key": "/authors/OL10958356A", "source_records": ["bwb:9781720029359"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T05:18:38.717943"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T05:18:38.717943"}}
+/type/author /authors/OL10959198A 1 2022-11-21T06:03:34.244214 {"type": {"key": "/type/author"}, "name": "John Mcginness", "key": "/authors/OL10959198A", "source_records": ["bwb:9781316153871"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T06:03:34.244214"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T06:03:34.244214"}}
+/type/author /authors/OL10959301A 1 2022-11-21T06:20:00.969935 {"type": {"key": "/type/author"}, "name": "Charles K. Mullins", "key": "/authors/OL10959301A", "source_records": ["bwb:9781614237679"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T06:20:00.969935"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T06:20:00.969935"}}
+/type/author /authors/OL10959324A 1 2022-11-21T06:28:49.865561 {"type": {"key": "/type/author"}, "name": "The Historical Society of South Fayette", "key": "/authors/OL10959324A", "source_records": ["bwb:9781531674366"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T06:28:49.865561"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T06:28:49.865561"}}
+/type/author /authors/OL1095975A 2 2017-12-04T06:18:34.404573 {"name": "Konferent\u0361sii\u0361a \"XXVII s\u02baezd KPSS i aktual\u02b9nye problemy bor\u02b9by dvukh mirovozzreni\u012d\" (1986 Moscow, R.S.F.S.R.)", "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2017-12-04T06:18:34.404573"}, "latest_revision": 2, "key": "/authors/OL1095975A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10960395A 1 2022-11-21T07:05:14.993004 {"type": {"key": "/type/author"}, "name": "PettieS Girls", "key": "/authors/OL10960395A", "source_records": ["bwb:9781520419701"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T07:05:14.993004"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T07:05:14.993004"}}
+/type/author /authors/OL10960535A 1 2022-11-21T07:09:43.338703 {"type": {"key": "/type/author"}, "name": "Matthew Roemer", "key": "/authors/OL10960535A", "source_records": ["bwb:9781520509587"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T07:09:43.338703"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T07:09:43.338703"}}
+/type/author /authors/OL10960752A 1 2022-11-21T07:16:53.901936 {"type": {"key": "/type/author"}, "name": "Ned Land", "key": "/authors/OL10960752A", "source_records": ["bwb:9781520201979"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T07:16:53.901936"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T07:16:53.901936"}}
+/type/author /authors/OL10960921A 1 2022-11-21T07:22:49.960387 {"type": {"key": "/type/author"}, "name": "Lewis Christopher Lewis Christopher Edward Baumer", "key": "/authors/OL10960921A", "source_records": ["bwb:9781520730806"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T07:22:49.960387"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T07:22:49.960387"}}
+/type/author /authors/OL10961138A 1 2022-11-21T07:30:20.298846 {"type": {"key": "/type/author"}, "name": "Brittany Basham", "key": "/authors/OL10961138A", "source_records": ["bwb:9781520888781"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T07:30:20.298846"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T07:30:20.298846"}}
+/type/author /authors/OL10961519A 1 2022-11-21T07:41:47.450447 {"type": {"key": "/type/author"}, "name": "marian james", "key": "/authors/OL10961519A", "source_records": ["bwb:9781520731865"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T07:41:47.450447"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T07:41:47.450447"}}
+/type/author /authors/OL10961726A 1 2022-11-21T07:47:56.750197 {"type": {"key": "/type/author"}, "name": "Judith Judith Phillips", "key": "/authors/OL10961726A", "source_records": ["bwb:9781521139875"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T07:47:56.750197"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T07:47:56.750197"}}
+/type/author /authors/OL10961887A 1 2022-11-21T07:53:52.297016 {"type": {"key": "/type/author"}, "name": "Advanced Professional Education and News Service", "key": "/authors/OL10961887A", "source_records": ["bwb:9781521195987"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T07:53:52.297016"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T07:53:52.297016"}}
+/type/author /authors/OL10962072A 1 2022-11-21T08:01:14.468113 {"type": {"key": "/type/author"}, "name": "Hunter Wolf", "key": "/authors/OL10962072A", "source_records": ["bwb:9781521307403"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T08:01:14.468113"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T08:01:14.468113"}}
+/type/author /authors/OL10962153A 1 2022-11-21T08:04:17.052867 {"type": {"key": "/type/author"}, "name": "Miciana Hutcherson", "key": "/authors/OL10962153A", "source_records": ["bwb:9781521337585"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T08:04:17.052867"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T08:04:17.052867"}}
+/type/author /authors/OL10962802A 1 2022-11-21T08:25:08.091998 {"type": {"key": "/type/author"}, "name": "PorTroyal Smith", "key": "/authors/OL10962802A", "source_records": ["bwb:9781521324059"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T08:25:08.091998"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T08:25:08.091998"}}
+/type/author /authors/OL10963332A 1 2022-11-21T08:42:41.270960 {"type": {"key": "/type/author"}, "name": "Natalie Solonenko", "key": "/authors/OL10963332A", "source_records": ["bwb:9781521949375"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T08:42:41.270960"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T08:42:41.270960"}}
+/type/author /authors/OL10963521A 1 2022-11-21T08:49:36.955318 {"type": {"key": "/type/author"}, "name": "Olutoke AKANDE", "key": "/authors/OL10963521A", "source_records": ["bwb:9781522073208"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T08:49:36.955318"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T08:49:36.955318"}}
+/type/author /authors/OL10963582A 1 2022-11-21T08:51:43.424785 {"type": {"key": "/type/author"}, "name": "Gregory PRIOR", "key": "/authors/OL10963582A", "source_records": ["bwb:9781521060162"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T08:51:43.424785"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T08:51:43.424785"}}
+/type/author /authors/OL10964307A 1 2022-11-21T09:16:43.380218 {"type": {"key": "/type/author"}, "name": "Th\u00e9ophile Th\u00e9ophile Schuler", "key": "/authors/OL10964307A", "source_records": ["bwb:9781549785986"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T09:16:43.380218"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T09:16:43.380218"}}
+/type/author /authors/OL10964351A 1 2022-11-21T09:18:52.862861 {"type": {"key": "/type/author"}, "name": "Fran\u00e7oise MIQUEL", "key": "/authors/OL10964351A", "source_records": ["bwb:9781549924750"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T09:18:52.862861"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T09:18:52.862861"}}
+/type/author /authors/OL10964531A 1 2022-11-21T09:24:30.387383 {"type": {"key": "/type/author"}, "name": "Lukas Hellwig", "key": "/authors/OL10964531A", "source_records": ["bwb:9781549860645"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T09:24:30.387383"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T09:24:30.387383"}}
+/type/author /authors/OL10964740A 1 2022-11-21T09:30:24.422592 {"type": {"key": "/type/author"}, "name": "Lory Cocconcelli", "key": "/authors/OL10964740A", "source_records": ["bwb:9781973112754"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T09:30:24.422592"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T09:30:24.422592"}}
+/type/author /authors/OL10964857A 1 2022-11-21T09:34:30.514506 {"type": {"key": "/type/author"}, "name": "Mauro Barbosa", "key": "/authors/OL10964857A", "source_records": ["bwb:9781973149736"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T09:34:30.514506"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T09:34:30.514506"}}
+/type/author /authors/OL10965270A 1 2022-11-21T09:45:55.283066 {"type": {"key": "/type/author"}, "name": "Debora Azevedo", "key": "/authors/OL10965270A", "source_records": ["bwb:9781973325185"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T09:45:55.283066"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T09:45:55.283066"}}
+/type/author /authors/OL10965386A 1 2022-11-21T09:48:40.402999 {"type": {"key": "/type/author"}, "name": "Lilly d'Angery", "key": "/authors/OL10965386A", "source_records": ["bwb:9781973255680"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T09:48:40.402999"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T09:48:40.402999"}}
+/type/author /authors/OL10965449A 1 2022-11-21T09:50:27.776084 {"type": {"key": "/type/author"}, "name": "Oscar Rico", "key": "/authors/OL10965449A", "source_records": ["bwb:9781973382447"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T09:50:27.776084"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T09:50:27.776084"}}
+/type/author /authors/OL10965896A 1 2022-11-21T10:03:31.528938 {"type": {"key": "/type/author"}, "name": "Marco Faustini", "key": "/authors/OL10965896A", "source_records": ["bwb:9781976787836"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T10:03:31.528938"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T10:03:31.528938"}}
+/type/author /authors/OL10965906A 1 2022-11-21T10:03:58.275899 {"type": {"key": "/type/author"}, "name": "Zyllyn Grace Pacheco", "key": "/authors/OL10965906A", "source_records": ["bwb:9781973448631"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T10:03:58.275899"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T10:03:58.275899"}}
+/type/author /authors/OL10966059A 1 2022-11-21T10:08:07.917348 {"type": {"key": "/type/author"}, "name": "Raleigh Lee", "key": "/authors/OL10966059A", "source_records": ["bwb:9781977004826"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T10:08:07.917348"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T10:08:07.917348"}}
+/type/author /authors/OL1096613A 2 2008-08-20T03:24:23.752896 {"name": "K. T. Gizatov", "personal_name": "K. T. Gizatov", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T03:24:23.752896"}, "key": "/authors/OL1096613A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10967019A 1 2022-11-21T10:37:06.823899 {"type": {"key": "/type/author"}, "name": "neda moumen", "key": "/authors/OL10967019A", "source_records": ["bwb:9781973566304"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T10:37:06.823899"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T10:37:06.823899"}}
+/type/author /authors/OL10967115A 1 2022-11-21T10:39:39.378583 {"type": {"key": "/type/author"}, "name": "Fabio Augusto Silva", "key": "/authors/OL10967115A", "source_records": ["bwb:9781980206224"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T10:39:39.378583"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T10:39:39.378583"}}
+/type/author /authors/OL10967510A 1 2022-11-21T10:52:48.122538 {"type": {"key": "/type/author"}, "name": "P. Tonlorenzi", "key": "/authors/OL10967510A", "source_records": ["bwb:9781980630142"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T10:52:48.122538"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T10:52:48.122538"}}
+/type/author /authors/OL10967720A 1 2022-11-21T10:58:57.158441 {"type": {"key": "/type/author"}, "name": "K. Galonedi", "key": "/authors/OL10967720A", "source_records": ["bwb:9781976994500"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T10:58:57.158441"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T10:58:57.158441"}}
+/type/author /authors/OL10967766A 1 2022-11-21T11:00:10.081322 {"type": {"key": "/type/author"}, "name": "Bo Magnus", "key": "/authors/OL10967766A", "source_records": ["bwb:9781977063847"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T11:00:10.081322"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T11:00:10.081322"}}
+/type/author /authors/OL1096776A 3 2017-11-22T17:11:08.821295 {"name": "Lev I\u0361Akovlevich Kantor", "personal_name": "Lev I\u0361Akovlevich Kantor", "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2017-11-22T17:11:08.821295"}, "latest_revision": 3, "key": "/authors/OL1096776A", "type": {"key": "/type/author"}, "revision": 3}
+/type/author /authors/OL10967774A 1 2022-11-21T11:00:32.112575 {"type": {"key": "/type/author"}, "name": "Tim Wimer", "key": "/authors/OL10967774A", "source_records": ["bwb:9781980754244"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T11:00:32.112575"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T11:00:32.112575"}}
+/type/author /authors/OL1096779A 2 2008-08-20T03:24:55.182543 {"name": "V. M. Kibakin", "personal_name": "V. M. Kibakin", "last_modified": {"type": "/type/datetime", "value": "2008-08-20T03:24:55.182543"}, "key": "/authors/OL1096779A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10968171A 1 2022-11-21T11:11:27.725587 {"type": {"key": "/type/author"}, "name": "Chip Byers", "key": "/authors/OL10968171A", "source_records": ["bwb:9781982947231"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T11:11:27.725587"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T11:11:27.725587"}}
+/type/author /authors/OL1096845A 1 2008-04-01T03:28:50.625462 {"name": "Conference on Artificial Insemination and Embryo Transfer in Beef Cattle (1986 Denver, Colo.)", "last_modified": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "key": "/authors/OL1096845A", "type": {"key": "/type/author"}, "revision": 1}
+/type/author /authors/OL10968848A 1 2022-11-21T11:33:23.510634 {"type": {"key": "/type/author"}, "name": "Diana Ridaura", "key": "/authors/OL10968848A", "source_records": ["bwb:9781983350078"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T11:33:23.510634"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T11:33:23.510634"}}
+/type/author /authors/OL10969138A 1 2022-11-21T11:41:51.926763 {"type": {"key": "/type/author"}, "name": "Escritor - Poeta: Alirio Jos\u00e9 Angulo", "key": "/authors/OL10969138A", "source_records": ["bwb:9781718021068"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T11:41:51.926763"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T11:41:51.926763"}}
+/type/author /authors/OL10969150A 1 2022-11-21T11:42:08.604479 {"type": {"key": "/type/author"}, "name": "Ariadna Serna", "key": "/authors/OL10969150A", "source_records": ["bwb:9781718020795"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T11:42:08.604479"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T11:42:08.604479"}}
+/type/author /authors/OL10969771A 1 2022-11-21T11:58:29.618070 {"type": {"key": "/type/author"}, "name": "Luis Garay Salamanca", "key": "/authors/OL10969771A", "source_records": ["bwb:9781983215742"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T11:58:29.618070"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T11:58:29.618070"}}
+/type/author /authors/OL10970034A 1 2022-11-21T12:04:52.111985 {"type": {"key": "/type/author"}, "name": "Heather Rugile", "key": "/authors/OL10970034A", "source_records": ["bwb:9781726892421"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T12:04:52.111985"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T12:04:52.111985"}}
+/type/author /authors/OL10970167A 1 2022-11-21T12:08:42.114722 {"type": {"key": "/type/author"}, "name": "Johan Noldus", "key": "/authors/OL10970167A", "source_records": ["bwb:9781718016088"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T12:08:42.114722"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T12:08:42.114722"}}
+/type/author /authors/OL10970760A 1 2022-11-21T12:29:36.523919 {"type": {"key": "/type/author"}, "name": "D. A. Hal", "key": "/authors/OL10970760A", "source_records": ["bwb:9781728697635"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T12:29:36.523919"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T12:29:36.523919"}}
+/type/author /authors/OL10970786A 1 2022-11-21T12:30:32.944212 {"type": {"key": "/type/author"}, "name": "Greg Macon", "key": "/authors/OL10970786A", "source_records": ["bwb:9781973455103"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T12:30:32.944212"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T12:30:32.944212"}}
+/type/author /authors/OL10970789A 1 2022-11-21T12:30:39.548081 {"type": {"key": "/type/author"}, "name": "Vesta Buyers", "key": "/authors/OL10970789A", "source_records": ["bwb:9781729352595"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T12:30:39.548081"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T12:30:39.548081"}}
+/type/author /authors/OL10971126A 1 2022-11-21T12:49:46.565466 {"type": {"key": "/type/author"}, "name": "Tabeitha Pollard", "key": "/authors/OL10971126A", "source_records": ["bwb:9781790539444"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T12:49:46.565466"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T12:49:46.565466"}}
+/type/author /authors/OL10971920A 1 2022-11-21T13:16:40.126239 {"type": {"key": "/type/author"}, "name": "Audry Cece", "key": "/authors/OL10971920A", "source_records": ["bwb:9781793116659"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T13:16:40.126239"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T13:16:40.126239"}}
+/type/author /authors/OL10971958A 1 2022-11-21T13:18:31.708324 {"type": {"key": "/type/author"}, "name": "Fanatic Publishing", "key": "/authors/OL10971958A", "source_records": ["bwb:9781729192320"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T13:18:31.708324"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T13:18:31.708324"}}
+/type/author /authors/OL10972113A 1 2022-11-21T13:22:30.749699 {"type": {"key": "/type/author"}, "name": "Larissa Schustkamp", "key": "/authors/OL10972113A", "source_records": ["bwb:9781790470020"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T13:22:30.749699"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T13:22:30.749699"}}
+/type/author /authors/OL109722A 1 2008-04-01T03:28:50.625462 {"name": "Dge-\u02bcdun-bstan-\u02bcdzin.", "personal_name": "Dge-\u02bcdun-bstan-\u02bcdzin.", "last_modified": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "key": "/authors/OL109722A", "type": {"key": "/type/author"}, "revision": 1}
+/type/author /authors/OL10972395A 1 2022-11-21T13:30:30.403000 {"type": {"key": "/type/author"}, "name": "Kristina Barthel", "key": "/authors/OL10972395A", "source_records": ["bwb:9781790925810"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T13:30:30.403000"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T13:30:30.403000"}}
+/type/author /authors/OL10972489A 1 2022-11-21T13:32:56.136058 {"type": {"key": "/type/author"}, "name": "Farida Mughal", "key": "/authors/OL10972489A", "source_records": ["bwb:9781795099288"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T13:32:56.136058"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T13:32:56.136058"}}
+/type/author /authors/OL10972845A 1 2022-11-21T13:42:24.485940 {"type": {"key": "/type/author"}, "name": "R. Calca", "key": "/authors/OL10972845A", "source_records": ["bwb:9781724183583"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T13:42:24.485940"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T13:42:24.485940"}}
+/type/author /authors/OL1097287A 2 2008-08-19T13:39:12.699349 {"name": "Patricia Liddle Haslam", "personal_name": "Patricia Liddle Haslam", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T13:39:12.699349"}, "key": "/authors/OL1097287A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10973342A 1 2022-11-21T14:00:08.801929 {"type": {"key": "/type/author"}, "name": "Melinda Addison", "key": "/authors/OL10973342A", "source_records": ["bwb:9781796398854"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T14:00:08.801929"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T14:00:08.801929"}}
+/type/author /authors/OL10973485A 1 2022-11-21T14:04:16.989042 {"type": {"key": "/type/author"}, "name": "Tom\u00e1s Gismera", "key": "/authors/OL10973485A", "source_records": ["bwb:9781798939390"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T14:04:16.989042"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T14:04:16.989042"}}
+/type/author /authors/OL10973526A 1 2022-11-21T14:05:23.724157 {"type": {"key": "/type/author"}, "name": "Lesbazeilles Souvestre", "key": "/authors/OL10973526A", "source_records": ["bwb:9781719836876"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T14:05:23.724157"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T14:05:23.724157"}}
+/type/author /authors/OL10973554A 1 2022-11-21T14:06:05.321922 {"type": {"key": "/type/author"}, "name": "P. Z. Walker", "key": "/authors/OL10973554A", "source_records": ["bwb:9781723890697"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T14:06:05.321922"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T14:06:05.321922"}}
+/type/author /authors/OL10973699A 1 2022-11-21T14:13:51.940751 {"type": {"key": "/type/author"}, "name": "Johnkeats Arthur", "key": "/authors/OL10973699A", "source_records": ["bwb:9781728647319"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T14:13:51.940751"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T14:13:51.940751"}}
+/type/author /authors/OL10973717A 1 2022-11-21T14:15:22.212704 {"type": {"key": "/type/author"}, "name": "Sk Virtue", "key": "/authors/OL10973717A", "source_records": ["bwb:9781728758602"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T14:15:22.212704"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T14:15:22.212704"}}
+/type/author /authors/OL10973866A 1 2022-11-21T14:36:25.818371 {"type": {"key": "/type/author"}, "name": "Christine Jones-D\u00edaz", "key": "/authors/OL10973866A", "source_records": ["bwb:9781316334928"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T14:36:25.818371"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T14:36:25.818371"}}
+/type/author /authors/OL10973922A 1 2022-11-21T14:41:54.602081 {"type": {"key": "/type/author"}, "name": "Science Frontiers Panels", "key": "/authors/OL10973922A", "source_records": ["bwb:9780309215862"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T14:41:54.602081"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T14:41:54.602081"}}
+/type/author /authors/OL10974165A 1 2022-11-21T14:59:46.094615 {"type": {"key": "/type/author"}, "name": "Barbara Sokol", "key": "/authors/OL10974165A", "source_records": ["bwb:9781531602598"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T14:59:46.094615"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T14:59:46.094615"}}
+/type/author /authors/OL10974422A 1 2022-11-21T15:08:52.315907 {"type": {"key": "/type/author"}, "name": "Steffi Hege", "key": "/authors/OL10974422A", "source_records": ["bwb:9781520108674"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T15:08:52.315907"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T15:08:52.315907"}}
+/type/author /authors/OL10974646A 1 2022-11-21T15:15:48.876664 {"type": {"key": "/type/author"}, "name": "Garc\u00eda Garc\u00eda Fornet", "key": "/authors/OL10974646A", "source_records": ["bwb:9781520248097"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T15:15:48.876664"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T15:15:48.876664"}}
+/type/author /authors/OL10974687A 1 2022-11-21T15:16:47.517671 {"type": {"key": "/type/author"}, "name": "Evan Herdeman", "key": "/authors/OL10974687A", "source_records": ["bwb:9781520246215"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T15:16:47.517671"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T15:16:47.517671"}}
+/type/author /authors/OL10974740A 1 2022-11-21T15:18:34.811620 {"type": {"key": "/type/author"}, "name": "Bernadette La Corte", "key": "/authors/OL10974740A", "source_records": ["bwb:9781520290799"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T15:18:34.811620"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T15:18:34.811620"}}
+/type/author /authors/OL10974826A 1 2022-11-21T15:21:31.449123 {"type": {"key": "/type/author"}, "name": "Nicole Dior", "key": "/authors/OL10974826A", "source_records": ["bwb:9781520312361"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T15:21:31.449123"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T15:21:31.449123"}}
+/type/author /authors/OL10974915A 1 2022-11-21T15:24:05.718276 {"type": {"key": "/type/author"}, "name": "Sir Peter Gluckman", "key": "/authors/OL10974915A", "source_records": ["bwb:9781520372426"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T15:24:05.718276"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T15:24:05.718276"}}
+/type/author /authors/OL10975979A 1 2022-11-21T16:16:41.450125 {"type": {"key": "/type/author"}, "name": "Tracer Orndorff", "key": "/authors/OL10975979A", "source_records": ["bwb:9781520931616"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T16:16:41.450125"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T16:16:41.450125"}}
+/type/author /authors/OL10976317A 1 2022-11-21T16:28:40.418470 {"type": {"key": "/type/author"}, "name": "Actio", "key": "/authors/OL10976317A", "source_records": ["bwb:9781521062203"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T16:28:40.418470"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T16:28:40.418470"}}
+/type/author /authors/OL10976633A 1 2022-11-21T16:41:48.347023 {"type": {"key": "/type/author"}, "name": "Valentina Cavalieri", "key": "/authors/OL10976633A", "source_records": ["bwb:9781521256381"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T16:41:48.347023"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T16:41:48.347023"}}
+/type/author /authors/OL10976904A 1 2022-11-21T16:51:06.773242 {"type": {"key": "/type/author"}, "name": "Bruce Fleck", "key": "/authors/OL10976904A", "source_records": ["bwb:9781521377413"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T16:51:06.773242"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T16:51:06.773242"}}
+/type/author /authors/OL10976975A 1 2022-11-21T16:54:18.399386 {"type": {"key": "/type/author"}, "name": "Elijah Villanueva", "key": "/authors/OL10976975A", "source_records": ["bwb:9781521415528"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T16:54:18.399386"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T16:54:18.399386"}}
+/type/author /authors/OL10977091A 1 2022-11-21T16:58:21.550056 {"type": {"key": "/type/author"}, "name": "Ronda Salda\u00f1a", "key": "/authors/OL10977091A", "source_records": ["bwb:9781521419397"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T16:58:21.550056"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T16:58:21.550056"}}
+/type/author /authors/OL10977258A 1 2022-11-21T17:02:46.724561 {"type": {"key": "/type/author"}, "name": "Matthias Grau", "key": "/authors/OL10977258A", "source_records": ["bwb:9781521517536"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T17:02:46.724561"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T17:02:46.724561"}}
+/type/author /authors/OL10977861A 1 2022-11-21T17:23:30.206711 {"type": {"key": "/type/author"}, "name": "Tom Cartwright", "key": "/authors/OL10977861A", "source_records": ["bwb:9781521895382"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T17:23:30.206711"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T17:23:30.206711"}}
+/type/author /authors/OL10977992A 1 2022-11-21T17:28:40.047569 {"type": {"key": "/type/author"}, "name": "Paul Jiang", "key": "/authors/OL10977992A", "source_records": ["bwb:9781521969915"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T17:28:40.047569"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T17:28:40.047569"}}
+/type/author /authors/OL10978204A 1 2022-11-21T17:38:15.252283 {"type": {"key": "/type/author"}, "name": "Fernando L\u00f3pez Aguar\u00f3n", "key": "/authors/OL10978204A", "source_records": ["bwb:9781522092001"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T17:38:15.252283"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T17:38:15.252283"}}
+/type/author /authors/OL10978231A 1 2022-11-21T17:39:25.865216 {"type": {"key": "/type/author"}, "name": "Pendleton PARRISH", "key": "/authors/OL10978231A", "source_records": ["bwb:9781549517778"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T17:39:25.865216"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T17:39:25.865216"}}
+/type/author /authors/OL10978534A 1 2022-11-21T17:52:28.365787 {"type": {"key": "/type/author"}, "name": "Nicol\u00e1s Ponta", "key": "/authors/OL10978534A", "source_records": ["bwb:9781549633805"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T17:52:28.365787"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T17:52:28.365787"}}
+/type/author /authors/OL10978647A 1 2022-11-21T17:56:50.445639 {"type": {"key": "/type/author"}, "name": "Francis-Ray Jinks", "key": "/authors/OL10978647A", "source_records": ["bwb:9781549721489"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T17:56:50.445639"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T17:56:50.445639"}}
+/type/author /authors/OL10978665A 1 2022-11-21T17:57:56.373218 {"type": {"key": "/type/author"}, "name": "Valentina Sanna", "key": "/authors/OL10978665A", "source_records": ["bwb:9781549685620"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T17:57:56.373218"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T17:57:56.373218"}}
+/type/author /authors/OL10978838A 1 2022-11-21T18:05:30.123598 {"type": {"key": "/type/author"}, "name": "Geon George", "key": "/authors/OL10978838A", "source_records": ["bwb:9781549814105"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T18:05:30.123598"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T18:05:30.123598"}}
+/type/author /authors/OL10979021A 1 2022-11-21T18:13:04.646250 {"type": {"key": "/type/author"}, "name": "Don & Craig", "key": "/authors/OL10979021A", "source_records": ["bwb:9781549730276"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T18:13:04.646250"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T18:13:04.646250"}}
+/type/author /authors/OL10979199A 1 2022-11-21T18:19:14.364306 {"type": {"key": "/type/author"}, "name": "camilo parrado", "key": "/authors/OL10979199A", "source_records": ["bwb:9781549933981"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T18:19:14.364306"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T18:19:14.364306"}}
+/type/author /authors/OL10979321A 1 2022-11-21T18:28:41.210765 {"type": {"key": "/type/author"}, "name": "Francisco JES\u00daS CALVO FALCE", "key": "/authors/OL10979321A", "source_records": ["bwb:9781520927084"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T18:28:41.210765"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T18:28:41.210765"}}
+/type/author /authors/OL10979424A 1 2022-11-21T18:32:48.367881 {"type": {"key": "/type/author"}, "name": "Ramyambika Burramukku", "key": "/authors/OL10979424A", "source_records": ["bwb:9781520992716"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T18:32:48.367881"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T18:32:48.367881"}}
+/type/author /authors/OL1097970A 2 2008-08-19T13:42:46.560629 {"name": "Blanka Zilynska\u0301", "personal_name": "Blanka Zilynska\u0301", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T13:42:46.560629"}, "key": "/authors/OL1097970A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10979962A 1 2022-11-21T18:52:33.684013 {"type": {"key": "/type/author"}, "name": "Lierne Soleil", "key": "/authors/OL10979962A", "source_records": ["bwb:9781973174080"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T18:52:33.684013"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T18:52:33.684013"}}
+/type/author /authors/OL10979981A 1 2022-11-21T18:53:10.266206 {"type": {"key": "/type/author"}, "name": "Orson Carrara", "key": "/authors/OL10979981A", "source_records": ["bwb:9781973421498"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T18:53:10.266206"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T18:53:10.266206"}}
+/type/author /authors/OL10980189A 1 2022-11-21T18:59:13.522360 {"type": {"key": "/type/author"}, "name": "S. Maschmann", "key": "/authors/OL10980189A", "source_records": ["bwb:9781973438533"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T18:59:13.522360"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T18:59:13.522360"}}
+/type/author /authors/OL1098037A 2 2008-08-19T13:43:26.444329 {"name": "Hans Molnar", "personal_name": "Hans Molnar", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T13:43:26.444329"}, "key": "/authors/OL1098037A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10980790A 1 2022-11-21T19:18:52.522446 {"type": {"key": "/type/author"}, "name": "J. A. KIRBY", "key": "/authors/OL10980790A", "source_records": ["bwb:9781980253907"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T19:18:52.522446"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T19:18:52.522446"}}
+/type/author /authors/OL10981172A 1 2022-11-21T19:31:23.806706 {"type": {"key": "/type/author"}, "name": "Mihai Dimancescu", "key": "/authors/OL10981172A", "source_records": ["bwb:9781980413691"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T19:31:23.806706"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T19:31:23.806706"}}
+/type/author /authors/OL10981623A 1 2022-11-21T19:46:26.836136 {"type": {"key": "/type/author"}, "name": "Aitor Hern\u00e1ndez", "key": "/authors/OL10981623A", "source_records": ["bwb:9781980362951"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T19:46:26.836136"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T19:46:26.836136"}}
+/type/author /authors/OL1098165A 2 2008-08-19T13:44:09.383267 {"name": "Clifton Earl Ryan", "personal_name": "Clifton Earl Ryan", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T13:44:09.383267"}, "key": "/authors/OL1098165A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10981717A 1 2022-11-21T19:49:08.314905 {"type": {"key": "/type/author"}, "name": "Martin Meller", "key": "/authors/OL10981717A", "source_records": ["bwb:9781980985655"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T19:49:08.314905"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T19:49:08.314905"}}
+/type/author /authors/OL10981841A 1 2022-11-21T19:54:18.721969 {"type": {"key": "/type/author"}, "name": "Sarah Molder", "key": "/authors/OL10981841A", "source_records": ["bwb:9781976991967"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T19:54:18.721969"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T19:54:18.721969"}}
+/type/author /authors/OL10982034A 1 2022-11-21T20:01:42.284244 {"type": {"key": "/type/author"}, "name": "Gustavo V\u00e9gas", "key": "/authors/OL10982034A", "source_records": ["bwb:9781980333470"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T20:01:42.284244"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T20:01:42.284244"}}
+/type/author /authors/OL1098211A 2 2008-08-19T13:44:18.752875 {"name": "Jean-Franc\u0327ois Dejonghe", "personal_name": "Jean-Franc\u0327ois Dejonghe", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T13:44:18.752875"}, "key": "/authors/OL1098211A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10982662A 1 2022-11-21T20:23:02.742744 {"type": {"key": "/type/author"}, "name": "Mary Jo Langford", "key": "/authors/OL10982662A", "source_records": ["bwb:9781981055760"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T20:23:02.742744"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T20:23:02.742744"}}
+/type/author /authors/OL10982878A 1 2022-11-21T20:29:03.535132 {"type": {"key": "/type/author"}, "name": "Simone Griesmayr", "key": "/authors/OL10982878A", "source_records": ["bwb:9781982952198"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T20:29:03.535132"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T20:29:03.535132"}}
+/type/author /authors/OL10983500A 1 2022-11-21T20:49:36.846637 {"type": {"key": "/type/author"}, "name": "Charlie Corisepa", "key": "/authors/OL10983500A", "source_records": ["bwb:9781717866486"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T20:49:36.846637"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T20:49:36.846637"}}
+/type/author /authors/OL10983600A 1 2022-11-21T20:52:29.659025 {"type": {"key": "/type/author"}, "name": "Pablo Francisco Hern\u00e1ndez S\u00e1nchez", "key": "/authors/OL10983600A", "source_records": ["bwb:9781717828170"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T20:52:29.659025"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T20:52:29.659025"}}
+/type/author /authors/OL10983602A 1 2022-11-21T20:52:31.109461 {"type": {"key": "/type/author"}, "name": "Fabrizio Siracusa", "key": "/authors/OL10983602A", "source_records": ["bwb:9781973120315"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T20:52:31.109461"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T20:52:31.109461"}}
+/type/author /authors/OL10983682A 1 2022-11-21T20:55:05.960110 {"type": {"key": "/type/author"}, "name": "Alberto Aguilera", "key": "/authors/OL10983682A", "source_records": ["bwb:9781719800174"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T20:55:05.960110"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T20:55:05.960110"}}
+/type/author /authors/OL10983706A 1 2022-11-21T20:55:42.566947 {"type": {"key": "/type/author"}, "name": "Marco Vukic", "key": "/authors/OL10983706A", "source_records": ["bwb:9781718171381"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T20:55:42.566947"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T20:55:42.566947"}}
+/type/author /authors/OL10983941A 1 2022-11-21T21:01:32.930364 {"type": {"key": "/type/author"}, "name": "Bruno Hernandez", "key": "/authors/OL10983941A", "source_records": ["bwb:9781717861566"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T21:01:32.930364"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T21:01:32.930364"}}
+/type/author /authors/OL10983963A 1 2022-11-21T21:02:55.681512 {"type": {"key": "/type/author"}, "name": "Anne Levi", "key": "/authors/OL10983963A", "source_records": ["bwb:9781720102946"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T21:02:55.681512"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T21:02:55.681512"}}
+/type/author /authors/OL10984072A 1 2022-11-21T21:06:38.662167 {"type": {"key": "/type/author"}, "name": "Christian Mosnier", "key": "/authors/OL10984072A", "source_records": ["bwb:9781720291589"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T21:06:38.662167"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T21:06:38.662167"}}
+/type/author /authors/OL10984149A 1 2022-11-21T21:09:04.222806 {"type": {"key": "/type/author"}, "name": "Nora Noland", "key": "/authors/OL10984149A", "source_records": ["bwb:9781724040725"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T21:09:04.222806"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T21:09:04.222806"}}
+/type/author /authors/OL10984388A 1 2022-11-21T21:17:03.039084 {"type": {"key": "/type/author"}, "name": "Stanley Greenlane", "key": "/authors/OL10984388A", "source_records": ["bwb:9781726616546"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T21:17:03.039084"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T21:17:03.039084"}}
+/type/author /authors/OL10984462A 1 2022-11-21T21:19:04.984427 {"type": {"key": "/type/author"}, "name": "Emilio PAPPINI", "key": "/authors/OL10984462A", "source_records": ["bwb:9781728812106"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T21:19:04.984427"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T21:19:04.984427"}}
+/type/author /authors/OL10984574A 1 2022-11-21T21:24:25.550149 {"type": {"key": "/type/author"}, "name": "Markus Eggert", "key": "/authors/OL10984574A", "source_records": ["bwb:9781729186190"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T21:24:25.550149"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T21:24:25.550149"}}
+/type/author /authors/OL10984647A 1 2022-11-21T21:27:50.707052 {"type": {"key": "/type/author"}, "name": "Alexandria Rose", "key": "/authors/OL10984647A", "source_records": ["bwb:9781726843515"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T21:27:50.707052"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T21:27:50.707052"}}
+/type/author /authors/OL10984719A 1 2022-11-21T21:29:54.326588 {"type": {"key": "/type/author"}, "name": "Anabel Samani", "key": "/authors/OL10984719A", "source_records": ["bwb:9781724164629"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T21:29:54.326588"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T21:29:54.326588"}}
+/type/author /authors/OL10984767A 1 2022-11-21T21:31:05.525291 {"type": {"key": "/type/author"}, "name": "Anne Brachter", "key": "/authors/OL10984767A", "source_records": ["bwb:9781731126504"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T21:31:05.525291"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T21:31:05.525291"}}
+/type/author /authors/OL10985227A 1 2022-11-21T21:46:51.086931 {"type": {"key": "/type/author"}, "name": "Vika Zeldin", "key": "/authors/OL10985227A", "source_records": ["bwb:9781730923456"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T21:46:51.086931"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T21:46:51.086931"}}
+/type/author /authors/OL10985672A 1 2022-11-21T22:07:05.307664 {"type": {"key": "/type/author"}, "name": "Elyane C.", "key": "/authors/OL10985672A", "source_records": ["bwb:9781791948726"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T22:07:05.307664"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T22:07:05.307664"}}
+/type/author /authors/OL1098654A 2 2017-11-29T04:03:11.674822 {"name": "Vsesoi\u0361uznoe soveshchanie zavedui\u0361ushchikh kafedrami obshchestvennykh nauk vysshikh uchebnykh zavedeni\u012d (1986 Moscow, R.S.F.S.R.)", "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2017-11-29T04:03:11.674822"}, "latest_revision": 2, "key": "/authors/OL1098654A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10986655A 1 2022-11-21T22:42:32.011841 {"type": {"key": "/type/author"}, "name": "Durga PRASAD", "key": "/authors/OL10986655A", "source_records": ["bwb:9781795285872"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T22:42:32.011841"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T22:42:32.011841"}}
+/type/author /authors/OL10986718A 1 2022-11-21T22:44:23.635286 {"type": {"key": "/type/author"}, "name": "Kate Grimes", "key": "/authors/OL10986718A", "source_records": ["bwb:9781791769338"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T22:44:23.635286"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T22:44:23.635286"}}
+/type/author /authors/OL1098689A 2 2008-08-19T13:46:24.036609 {"name": "V. A. Merimskii\u0306", "personal_name": "V. A. Merimskii\u0306", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T13:46:24.036609"}, "key": "/authors/OL1098689A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10986969A 1 2022-11-21T22:51:27.559401 {"type": {"key": "/type/author"}, "name": "D. G. Sam", "key": "/authors/OL10986969A", "source_records": ["bwb:9781728771564"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T22:51:27.559401"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T22:51:27.559401"}}
+/type/author /authors/OL10987095A 1 2022-11-21T22:54:45.348935 {"type": {"key": "/type/author"}, "name": "Rex Elardo", "key": "/authors/OL10987095A", "source_records": ["bwb:9781791954482"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T22:54:45.348935"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T22:54:45.348935"}}
+/type/author /authors/OL10987258A 1 2022-11-21T23:00:43.163613 {"type": {"key": "/type/author"}, "name": "Selene Riley", "key": "/authors/OL10987258A", "source_records": ["bwb:9781720182344"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T23:00:43.163613"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T23:00:43.163613"}}
+/type/author /authors/OL10987382A 1 2022-11-21T23:07:03.863770 {"type": {"key": "/type/author"}, "name": "BabyBright BabyBright Press", "key": "/authors/OL10987382A", "source_records": ["bwb:9781797941677"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T23:07:03.863770"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T23:07:03.863770"}}
+/type/author /authors/OL10987860A 1 2022-11-21T23:26:45.593549 {"type": {"key": "/type/author"}, "name": "Kayresia Bass", "key": "/authors/OL10987860A", "source_records": ["bwb:9781726888677"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T23:26:45.593549"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T23:26:45.593549"}}
+/type/author /authors/OL10987907A 1 2022-11-21T23:28:31.712943 {"type": {"key": "/type/author"}, "name": "Elfwerks Editing", "key": "/authors/OL10987907A", "source_records": ["bwb:9781728726366"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-21T23:28:31.712943"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-21T23:28:31.712943"}}
+/type/author /authors/OL10988185A 1 2022-11-22T00:10:48.277032 {"type": {"key": "/type/author"}, "name": "John W. Boyd M D", "key": "/authors/OL10988185A", "source_records": ["bwb:9781531678142"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T00:10:48.277032"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T00:10:48.277032"}}
+/type/author /authors/OL10988389A 1 2022-11-22T00:20:51.778689 {"type": {"key": "/type/author"}, "name": "Kevin John Kaegy", "key": "/authors/OL10988389A", "source_records": ["bwb:9781531614607"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T00:20:51.778689"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T00:20:51.778689"}}
+/type/author /authors/OL10988913A 1 2022-11-22T00:42:30.754639 {"type": {"key": "/type/author"}, "name": "Jason Quill", "key": "/authors/OL10988913A", "source_records": ["bwb:9781520358024"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T00:42:30.754639"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T00:42:30.754639"}}
+/type/author /authors/OL10989074A 1 2022-11-22T00:48:33.143383 {"type": {"key": "/type/author"}, "name": "A. J. Novua", "key": "/authors/OL10989074A", "source_records": ["bwb:9781520385785"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T00:48:33.143383"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T00:48:33.143383"}}
+/type/author /authors/OL10989183A 1 2022-11-22T00:52:46.810100 {"type": {"key": "/type/author"}, "name": "Tim Wemple", "key": "/authors/OL10989183A", "source_records": ["bwb:9781520499888"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T00:52:46.810100"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T00:52:46.810100"}}
+/type/author /authors/OL1098922A 2 2008-08-19T13:47:24.954656 {"name": "Stasa Strouza-Margarite\u0304", "personal_name": "Stasa Strouza-Margarite\u0304", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T13:47:24.954656"}, "key": "/authors/OL1098922A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10989562A 1 2022-11-22T01:08:18.562447 {"type": {"key": "/type/author"}, "name": "Nathaniel Johns", "key": "/authors/OL10989562A", "source_records": ["bwb:9781520686028"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T01:08:18.562447"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T01:08:18.562447"}}
+/type/author /authors/OL10989759A 1 2022-11-22T01:16:25.085070 {"type": {"key": "/type/author"}, "name": "Lisa Fort", "key": "/authors/OL10989759A", "source_records": ["bwb:9781520836119"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T01:16:25.085070"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T01:16:25.085070"}}
+/type/author /authors/OL10990100A 1 2022-11-22T01:29:29.942375 {"type": {"key": "/type/author"}, "name": "Christy Seal Cdt Abcdt", "key": "/authors/OL10990100A", "source_records": ["bwb:9781520957326"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T01:29:29.942375"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T01:29:29.942375"}}
+/type/author /authors/OL109903A 2 2008-09-09T05:03:24.541281 {"name": "Chitrotpala Mukherjee", "personal_name": "Chitrotpala Mukherjee", "last_modified": {"type": "/type/datetime", "value": "2008-09-09T05:03:24.541281"}, "key": "/authors/OL109903A", "birth_date": "1940", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10990803A 1 2022-11-22T01:56:20.360216 {"type": {"key": "/type/author"}, "name": "Daya Rao", "key": "/authors/OL10990803A", "source_records": ["bwb:9781521295786"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T01:56:20.360216"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T01:56:20.360216"}}
+/type/author /authors/OL10990852A 1 2022-11-22T01:58:47.755349 {"type": {"key": "/type/author"}, "name": "Emily Borcicky", "key": "/authors/OL10990852A", "source_records": ["bwb:9781521370131"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T01:58:47.755349"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T01:58:47.755349"}}
+/type/author /authors/OL10990948A 1 2022-11-22T02:03:43.635310 {"type": {"key": "/type/author"}, "name": "Jacqueline Davison", "key": "/authors/OL10990948A", "source_records": ["bwb:9781521235287"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T02:03:43.635310"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T02:03:43.635310"}}
+/type/author /authors/OL1099096A 2 2008-08-19T13:48:16.043714 {"name": "S. G. Shul\u02b9man", "personal_name": "S. G. Shul\u02b9man", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T13:48:16.043714"}, "key": "/authors/OL1099096A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL1099098A 2 2008-08-19T13:48:17.359398 {"name": "Cyril A. Clarke", "personal_name": "Cyril A. Clarke", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T13:48:17.359398"}, "key": "/authors/OL1099098A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL1099107A 1 2008-04-01T03:28:50.625462 {"name": "Roux, Jean accountant.", "title": "accountant.", "personal_name": "Roux, Jean", "last_modified": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "key": "/authors/OL1099107A", "type": {"key": "/type/author"}, "revision": 1}
+/type/author /authors/OL10991175A 1 2022-11-22T02:11:28.511834 {"type": {"key": "/type/author"}, "name": "Chanel Chanel Hartman", "key": "/authors/OL10991175A", "source_records": ["bwb:9781521526118"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T02:11:28.511834"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T02:11:28.511834"}}
+/type/author /authors/OL10991271A 1 2022-11-22T02:13:31.309375 {"type": {"key": "/type/author"}, "name": "Harald Bl\u00f6cker", "key": "/authors/OL10991271A", "source_records": ["bwb:9781521386132"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T02:13:31.309375"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T02:13:31.309375"}}
+/type/author /authors/OL10991339A 1 2022-11-22T02:16:31.436617 {"type": {"key": "/type/author"}, "name": "Jorge Objio", "key": "/authors/OL10991339A", "source_records": ["bwb:9781521583142"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T02:16:31.436617"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T02:16:31.436617"}}
+/type/author /authors/OL10991494A 1 2022-11-22T02:22:08.809684 {"type": {"key": "/type/author"}, "name": "Agust\u00edn G. Calder\u00f3n", "key": "/authors/OL10991494A", "source_records": ["bwb:9781521703281"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T02:22:08.809684"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T02:22:08.809684"}}
+/type/author /authors/OL10991541A 1 2022-11-22T02:23:41.346197 {"type": {"key": "/type/author"}, "name": "Brigitte VERON", "key": "/authors/OL10991541A", "source_records": ["bwb:9781521795101"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T02:23:41.346197"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T02:23:41.346197"}}
+/type/author /authors/OL10991608A 1 2022-11-22T02:26:50.687708 {"type": {"key": "/type/author"}, "name": "Rafael Sol\u00eds", "key": "/authors/OL10991608A", "source_records": ["bwb:9781521838358"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T02:26:50.687708"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T02:26:50.687708"}}
+/type/author /authors/OL10991790A 1 2022-11-22T02:34:20.580223 {"type": {"key": "/type/author"}, "name": "Jos\u00e9 Vidal Sanjurjo", "key": "/authors/OL10991790A", "source_records": ["bwb:9781521840047"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T02:34:20.580223"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T02:34:20.580223"}}
+/type/author /authors/OL10991995A 1 2022-11-22T02:43:19.312449 {"type": {"key": "/type/author"}, "name": "Carali Cardenas", "key": "/authors/OL10991995A", "source_records": ["bwb:9781521986851"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T02:43:19.312449"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T02:43:19.312449"}}
+/type/author /authors/OL10992007A 1 2022-11-22T02:43:43.173207 {"type": {"key": "/type/author"}, "name": "Candy Jankowski", "key": "/authors/OL10992007A", "source_records": ["bwb:9781520941929"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T02:43:43.173207"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T02:43:43.173207"}}
+/type/author /authors/OL10992103A 1 2022-11-22T02:47:40.699885 {"type": {"key": "/type/author"}, "name": "Michael Gentilcore", "key": "/authors/OL10992103A", "source_records": ["bwb:9781522035503"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T02:47:40.699885"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T02:47:40.699885"}}
+/type/author /authors/OL10992154A 1 2022-11-22T02:49:12.872898 {"type": {"key": "/type/author"}, "name": "Yann Reno\u00eet", "key": "/authors/OL10992154A", "source_records": ["bwb:9781549503009"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T02:49:12.872898"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T02:49:12.872898"}}
+/type/author /authors/OL10992198A 1 2022-11-22T02:50:58.247524 {"type": {"key": "/type/author"}, "name": "Javier Bono", "key": "/authors/OL10992198A", "source_records": ["bwb:9781549554353"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T02:50:58.247524"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T02:50:58.247524"}}
+/type/author /authors/OL10992584A 1 2022-11-22T03:06:03.997635 {"type": {"key": "/type/author"}, "name": "Antho Guidam", "key": "/authors/OL10992584A", "source_records": ["bwb:9781549637452"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T03:06:03.997635"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T03:06:03.997635"}}
+/type/author /authors/OL10992765A 1 2022-11-22T03:14:14.383150 {"type": {"key": "/type/author"}, "name": "Jennifer Kaster", "key": "/authors/OL10992765A", "source_records": ["bwb:9781520800493"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T03:14:14.383150"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T03:14:14.383150"}}
+/type/author /authors/OL10992909A 1 2022-11-22T03:20:44.195826 {"type": {"key": "/type/author"}, "name": "E. G. Lund", "key": "/authors/OL10992909A", "source_records": ["bwb:9781549851995"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T03:20:44.195826"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T03:20:44.195826"}}
+/type/author /authors/OL10993293A 1 2022-11-22T03:36:01.262377 {"type": {"key": "/type/author"}, "name": "Jack H.X", "key": "/authors/OL10993293A", "source_records": ["bwb:9781973210375"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T03:36:01.262377"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T03:36:01.262377"}}
+/type/author /authors/OL10993392A 1 2022-11-22T03:39:41.468884 {"type": {"key": "/type/author"}, "name": "Oscar Hugo", "key": "/authors/OL10993392A", "source_records": ["bwb:9781973273387"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T03:39:41.468884"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T03:39:41.468884"}}
+/type/author /authors/OL10993597A 1 2022-11-22T03:46:17.127377 {"type": {"key": "/type/author"}, "name": "Pramod singh", "key": "/authors/OL10993597A", "source_records": ["bwb:9781973362852"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T03:46:17.127377"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T03:46:17.127377"}}
+/type/author /authors/OL10993832A 1 2022-11-22T03:54:20.082937 {"type": {"key": "/type/author"}, "name": "Elena Frangini", "key": "/authors/OL10993832A", "source_records": ["bwb:9781973202622"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T03:54:20.082937"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T03:54:20.082937"}}
+/type/author /authors/OL10993847A 1 2022-11-22T03:55:09.187467 {"type": {"key": "/type/author"}, "name": "Barbara Harbula", "key": "/authors/OL10993847A", "source_records": ["bwb:9781973218906"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T03:55:09.187467"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T03:55:09.187467"}}
+/type/author /authors/OL10994015A 1 2022-11-22T04:00:10.391929 {"type": {"key": "/type/author"}, "name": "Ricardo Alvira Baeza", "key": "/authors/OL10994015A", "source_records": ["bwb:9781976816727"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T04:00:10.391929"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T04:00:10.391929"}}
+/type/author /authors/OL10994025A 1 2022-11-22T04:00:21.738981 {"type": {"key": "/type/author"}, "name": "Selma Sim\u00e3o", "key": "/authors/OL10994025A", "source_records": ["bwb:9781973591825"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T04:00:21.738981"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T04:00:21.738981"}}
+/type/author /authors/OL10994064A 1 2022-11-22T04:01:19.604024 {"type": {"key": "/type/author"}, "name": "David (Estudio Rojo Carm\u00edn)", "key": "/authors/OL10994064A", "source_records": ["bwb:9781973495239"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T04:01:19.604024"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T04:01:19.604024"}}
+/type/author /authors/OL10994170A 1 2022-11-22T04:05:09.969552 {"type": {"key": "/type/author"}, "name": "Dario Gaz Schreiber", "key": "/authors/OL10994170A", "source_records": ["bwb:9781976863332"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T04:05:09.969552"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T04:05:09.969552"}}
+/type/author /authors/OL1099430A 2 2008-08-19T13:49:46.863053 {"name": "Steffen Juul", "personal_name": "Steffen Juul", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T13:49:46.863053"}, "key": "/authors/OL1099430A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10994448A 1 2022-11-22T04:14:30.542214 {"type": {"key": "/type/author"}, "name": "D. Desira", "key": "/authors/OL10994448A", "source_records": ["bwb:9781980287728"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T04:14:30.542214"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T04:14:30.542214"}}
+/type/author /authors/OL10994536A 1 2022-11-22T04:17:41.801420 {"type": {"key": "/type/author"}, "name": "Shankar Upadhyay", "key": "/authors/OL10994536A", "source_records": ["bwb:9781980211044"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T04:17:41.801420"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T04:17:41.801420"}}
+/type/author /authors/OL109946A 3 2009-05-21T19:27:42.758638 {"name": "A. R\u0101 Kulakar\u1e47\u012b", "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "personal_name": "A. R\u0101 Kulakar\u1e47\u012b", "last_modified": {"type": "/type/datetime", "value": "2009-05-21T19:27:42.758638"}, "latest_revision": 3, "key": "/authors/OL109946A", "birth_date": "1925", "type": {"key": "/type/author"}, "revision": 3}
+/type/author /authors/OL10995051A 1 2022-11-22T04:35:36.174345 {"type": {"key": "/type/author"}, "name": "Maria Zenaida Rivera Lagares", "key": "/authors/OL10995051A", "source_records": ["bwb:9781973549864"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T04:35:36.174345"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T04:35:36.174345"}}
+/type/author /authors/OL10996109A 1 2022-11-22T05:14:03.883925 {"type": {"key": "/type/author"}, "name": "Morgane Soulier", "key": "/authors/OL10996109A", "source_records": ["bwb:9781982906955"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T05:14:03.883925"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T05:14:03.883925"}}
+/type/author /authors/OL10996230A 1 2022-11-22T05:18:06.489410 {"type": {"key": "/type/author"}, "name": "Debbie Terman", "key": "/authors/OL10996230A", "source_records": ["bwb:9781980883715"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T05:18:06.489410"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T05:18:06.489410"}}
+/type/author /authors/OL10996635A 1 2022-11-22T05:32:07.297397 {"type": {"key": "/type/author"}, "name": "Pello Etxaniz", "key": "/authors/OL10996635A", "source_records": ["bwb:9781980935094"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T05:32:07.297397"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T05:32:07.297397"}}
+/type/author /authors/OL10996710A 1 2022-11-22T05:35:42.609641 {"type": {"key": "/type/author"}, "name": "Jenny Renner", "key": "/authors/OL10996710A", "source_records": ["bwb:9781983349508"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T05:35:42.609641"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T05:35:42.609641"}}
+/type/author /authors/OL10996816A 1 2022-11-22T05:39:18.853183 {"type": {"key": "/type/author"}, "name": "Maria Hartrud", "key": "/authors/OL10996816A", "source_records": ["bwb:9781717802439"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T05:39:18.853183"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T05:39:18.853183"}}
+/type/author /authors/OL10997365A 1 2022-11-22T05:55:30.535621 {"type": {"key": "/type/author"}, "name": "J\u00f3n \u00d3skarsson", "key": "/authors/OL10997365A", "source_records": ["bwb:9781983330810"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T05:55:30.535621"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T05:55:30.535621"}}
+/type/author /authors/OL10997742A 1 2022-11-22T06:09:04.767965 {"type": {"key": "/type/author"}, "name": "Isidoro fern\u00e1ndez", "key": "/authors/OL10997742A", "source_records": ["bwb:9781719896948"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T06:09:04.767965"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T06:09:04.767965"}}
+/type/author /authors/OL10997878A 1 2022-11-22T06:13:24.766877 {"type": {"key": "/type/author"}, "name": "Ton Kroon", "key": "/authors/OL10997878A", "source_records": ["bwb:9781521464083"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T06:13:24.766877"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T06:13:24.766877"}}
+/type/author /authors/OL10997935A 1 2022-11-22T06:16:19.295076 {"type": {"key": "/type/author"}, "name": "Lacey Young", "key": "/authors/OL10997935A", "source_records": ["bwb:9781724193926"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T06:16:19.295076"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T06:16:19.295076"}}
+/type/author /authors/OL10998275A 1 2022-11-22T06:30:13.210995 {"type": {"key": "/type/author"}, "name": "Gorko", "key": "/authors/OL10998275A", "source_records": ["bwb:9781731266392"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T06:30:13.210995"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T06:30:13.210995"}}
+/type/author /authors/OL10998711A 1 2022-11-22T06:43:20.995900 {"type": {"key": "/type/author"}, "name": "J. S. Anthony", "key": "/authors/OL10998711A", "source_records": ["bwb:9781790628469"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T06:43:20.995900"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T06:43:20.995900"}}
+/type/author /authors/OL10998725A 1 2022-11-22T06:43:44.434579 {"type": {"key": "/type/author"}, "name": "H. B. Jasick", "key": "/authors/OL10998725A", "source_records": ["bwb:9781731358127"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T06:43:44.434579"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T06:43:44.434579"}}
+/type/author /authors/OL1099884A 2 2008-08-19T13:51:57.98604 {"name": "Angel Bachiller Baeza", "personal_name": "Angel Bachiller Baeza", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T13:51:57.98604"}, "key": "/authors/OL1099884A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL10998868A 1 2022-11-22T06:53:07.283058 {"type": {"key": "/type/author"}, "name": "Phyllis CHESTANG", "key": "/authors/OL10998868A", "source_records": ["bwb:9781791395988"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T06:53:07.283058"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T06:53:07.283058"}}
+/type/author /authors/OL10999775A 1 2022-11-22T07:22:12.369583 {"type": {"key": "/type/author"}, "name": "Patricia Bednersh", "key": "/authors/OL10999775A", "source_records": ["bwb:9781795114370"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T07:22:12.369583"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T07:22:12.369583"}}
+/type/author /authors/OL11000075A 1 2022-11-22T07:32:47.911888 {"type": {"key": "/type/author"}, "name": "Rico Lane", "key": "/authors/OL11000075A", "source_records": ["bwb:9781790168774"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T07:32:47.911888"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T07:32:47.911888"}}
+/type/author /authors/OL11000116A 1 2022-11-22T07:33:59.574826 {"type": {"key": "/type/author"}, "name": "Jan Weise", "key": "/authors/OL11000116A", "source_records": ["bwb:9781795832694"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T07:33:59.574826"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T07:33:59.574826"}}
+/type/author /authors/OL11000121A 1 2022-11-22T07:34:04.991673 {"type": {"key": "/type/author"}, "name": "Jacqueline Agweh", "key": "/authors/OL11000121A", "source_records": ["bwb:9781796651126"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T07:34:04.991673"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T07:34:04.991673"}}
+/type/author /authors/OL11000169A 1 2022-11-22T07:35:22.087076 {"type": {"key": "/type/author"}, "name": "Sally Hopson", "key": "/authors/OL11000169A", "source_records": ["bwb:9781791333836"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T07:35:22.087076"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T07:35:22.087076"}}
+/type/author /authors/OL11000213A 1 2022-11-22T07:36:51.700808 {"type": {"key": "/type/author"}, "name": "Joseph and Marita Fox", "key": "/authors/OL11000213A", "source_records": ["bwb:9781795686716"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T07:36:51.700808"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T07:36:51.700808"}}
+/type/author /authors/OL11000500A 1 2022-11-22T07:48:20.218715 {"type": {"key": "/type/author"}, "name": "Grants Publishing", "key": "/authors/OL11000500A", "source_records": ["bwb:9781723720345"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T07:48:20.218715"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T07:48:20.218715"}}
+/type/author /authors/OL11000831A 1 2022-11-22T08:02:29.352170 {"type": {"key": "/type/author"}, "name": "Rick Grischow", "key": "/authors/OL11000831A", "source_records": ["bwb:9781793434296"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T08:02:29.352170"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T08:02:29.352170"}}
+/type/author /authors/OL11001565A 1 2022-11-22T08:41:31.112661 {"type": {"key": "/type/author"}, "name": "Yokasta De German Casimiro", "key": "/authors/OL11001565A", "source_records": ["bwb:9781798851883"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T08:41:31.112661"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T08:41:31.112661"}}
+/type/author /authors/OL1100158A 2 2008-08-19T13:53:08.554192 {"name": "Asta Vilbaste", "personal_name": "Asta Vilbaste", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T13:53:08.554192"}, "key": "/authors/OL1100158A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL11001638A 1 2022-11-22T08:43:08.808448 {"type": {"key": "/type/author"}, "name": "Alessio Franni", "key": "/authors/OL11001638A", "source_records": ["bwb:9781796839326"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T08:43:08.808448"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T08:43:08.808448"}}
+/type/author /authors/OL11001880A 1 2022-11-22T08:48:36.812526 {"type": {"key": "/type/author"}, "name": "Valdirlei Massola", "key": "/authors/OL11001880A", "source_records": ["bwb:9781091641389"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T08:48:36.812526"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T08:48:36.812526"}}
+/type/author /authors/OL11002172A 1 2022-11-22T08:56:19.599632 {"type": {"key": "/type/author"}, "name": "None Label", "key": "/authors/OL11002172A", "source_records": ["bwb:9781091646308"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T08:56:19.599632"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T08:56:19.599632"}}
+/type/author /authors/OL11002364A 1 2022-11-22T09:02:41.066713 {"type": {"key": "/type/author"}, "name": "Der Weg zum Erfolg", "key": "/authors/OL11002364A", "source_records": ["bwb:9781798671429"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T09:02:41.066713"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T09:02:41.066713"}}
+/type/author /authors/OL11002511A 1 2022-11-22T09:05:48.233549 {"type": {"key": "/type/author"}, "name": "Coleman Thompson", "key": "/authors/OL11002511A", "source_records": ["bwb:9781724118301"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T09:05:48.233549"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T09:05:48.233549"}}
+/type/author /authors/OL11002740A 1 2022-11-22T09:15:12.386247 {"type": {"key": "/type/author"}, "name": "Aida Jacobs", "key": "/authors/OL11002740A", "source_records": ["bwb:9781790834129"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T09:15:12.386247"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T09:15:12.386247"}}
+/type/author /authors/OL11002871A 1 2022-11-22T09:24:11.210785 {"type": {"key": "/type/author"}, "name": "Jennifer Marie Lane", "key": "/authors/OL11002871A", "source_records": ["bwb:9781791814496"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T09:24:11.210785"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T09:24:11.210785"}}
+/type/author /authors/OL11003218A 1 2022-11-22T09:46:44.665887 {"type": {"key": "/type/author"}, "name": "Walter Parlins III", "key": "/authors/OL11003218A", "source_records": ["bwb:9781794199194"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T09:46:44.665887"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T09:46:44.665887"}}
+/type/author /authors/OL1100321A 2 2008-08-19T13:54:07.270164 {"name": "Wolfgang Hautumm", "personal_name": "Wolfgang Hautumm", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T13:54:07.270164"}, "key": "/authors/OL1100321A", "birth_date": "1953", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL11004051A 1 2022-11-22T10:19:51.631012 {"type": {"key": "/type/author"}, "name": "Emily B\u00e4hr", "key": "/authors/OL11004051A", "source_records": ["bwb:9781096513902"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T10:19:51.631012"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T10:19:51.631012"}}
+/type/author /authors/OL11004375A 1 2022-11-22T10:30:57.555000 {"type": {"key": "/type/author"}, "name": "Jean-Baptiste PICY", "key": "/authors/OL11004375A", "source_records": ["bwb:9781718172104"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T10:30:57.555000"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T10:30:57.555000"}}
+/type/author /authors/OL11004677A 1 2022-11-22T10:42:53.357703 {"type": {"key": "/type/author"}, "name": "Meastro William Mozart Simpki McCaughey", "key": "/authors/OL11004677A", "source_records": ["bwb:9781090698537"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T10:42:53.357703"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T10:42:53.357703"}}
+/type/author /authors/OL11005270A 1 2022-11-22T11:18:13.393895 {"type": {"key": "/type/author"}, "name": "Apoorv Joshi", "key": "/authors/OL11005270A", "source_records": ["bwb:9781798982129"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T11:18:13.393895"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T11:18:13.393895"}}
+/type/author /authors/OL11005322A 1 2022-11-22T11:21:31.970662 {"type": {"key": "/type/author"}, "name": "Jos\u00e9 Saravia Vargas", "key": "/authors/OL11005322A", "source_records": ["bwb:9781093793727"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T11:21:31.970662"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T11:21:31.970662"}}
+/type/author /authors/OL1100540A 2 2008-08-19T13:55:08.967524 {"name": "Wilfrid E. Oulton", "personal_name": "Wilfrid E. Oulton", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T13:55:08.967524"}, "key": "/authors/OL1100540A", "birth_date": "1911", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL11005421A 1 2022-11-22T11:25:26.352768 {"type": {"key": "/type/author"}, "name": "Josh Iranpour", "key": "/authors/OL11005421A", "source_records": ["bwb:9781795282383"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T11:25:26.352768"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T11:25:26.352768"}}
+/type/author /authors/OL11005852A 1 2022-11-22T11:45:37.363754 {"type": {"key": "/type/author"}, "name": "Lemendia Hokvans", "key": "/authors/OL11005852A", "source_records": ["bwb:9781093193275"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T11:45:37.363754"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T11:45:37.363754"}}
+/type/author /authors/OL11006021A 1 2022-11-22T11:51:50.202049 {"type": {"key": "/type/author"}, "name": "Titus C. WRIGHT", "key": "/authors/OL11006021A", "source_records": ["bwb:9781097722419"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T11:51:50.202049"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T11:51:50.202049"}}
+/type/author /authors/OL11006119A 1 2022-11-22T11:54:25.911549 {"type": {"key": "/type/author"}, "name": "Mae Mary Jane West", "key": "/authors/OL11006119A", "source_records": ["bwb:9781096596684"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T11:54:25.911549"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T11:54:25.911549"}}
+/type/author /authors/OL1100629A 2 2008-08-19T13:55:47.91844 {"name": "B. V. Sychev", "personal_name": "B. V. Sychev", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T13:55:47.91844"}, "key": "/authors/OL1100629A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL11006404A 1 2022-11-22T12:03:59.311660 {"type": {"key": "/type/author"}, "name": "Santiago Arencibia Aleman", "key": "/authors/OL11006404A", "source_records": ["bwb:9781098975180"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T12:03:59.311660"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T12:03:59.311660"}}
+/type/author /authors/OL11006516A 1 2022-11-22T12:13:48.434873 {"type": {"key": "/type/author"}, "name": "Willian Mejia", "key": "/authors/OL11006516A", "source_records": ["bwb:9781791351700"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T12:13:48.434873"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T12:13:48.434873"}}
+/type/author /authors/OL11006947A 1 2022-11-22T12:28:32.567604 {"type": {"key": "/type/author"}, "name": "Holger Brandt", "key": "/authors/OL11006947A", "source_records": ["bwb:9781076955067"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T12:28:32.567604"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T12:28:32.567604"}}
+/type/author /authors/OL11007039A 1 2022-11-22T12:32:01.659993 {"type": {"key": "/type/author"}, "name": "Estas Aqui", "key": "/authors/OL11007039A", "source_records": ["bwb:9781070169484"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T12:32:01.659993"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T12:32:01.659993"}}
+/type/author /authors/OL11007093A 1 2022-11-22T12:34:29.469345 {"type": {"key": "/type/author"}, "name": "Ravindra Puri", "key": "/authors/OL11007093A", "source_records": ["bwb:9781090900562"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T12:34:29.469345"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T12:34:29.469345"}}
+/type/author /authors/OL1100709A 2 2008-08-19T13:56:05.831155 {"name": "E. B. Khilazhev", "personal_name": "E. B. Khilazhev", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T13:56:05.831155"}, "key": "/authors/OL1100709A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL11007440A 1 2022-11-22T13:00:12.914648 {"type": {"key": "/type/author"}, "name": "Joy Kingsbury-Aitken", "key": "/authors/OL11007440A", "source_records": ["bwb:9781095952924"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T13:00:12.914648"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T13:00:12.914648"}}
+/type/author /authors/OL11008228A 1 2022-11-22T13:58:33.329794 {"type": {"key": "/type/author"}, "name": "Julila Guill\u00e9n", "key": "/authors/OL11008228A", "source_records": ["bwb:9781090158970"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T13:58:33.329794"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T13:58:33.329794"}}
+/type/author /authors/OL11008273A 1 2022-11-22T13:59:43.195535 {"type": {"key": "/type/author"}, "name": "Rachel Rush", "key": "/authors/OL11008273A", "source_records": ["bwb:9781091233188"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T13:59:43.195535"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T13:59:43.195535"}}
+/type/author /authors/OL11008315A 1 2022-11-22T14:00:38.355588 {"type": {"key": "/type/author"}, "name": "Antony M", "key": "/authors/OL11008315A", "source_records": ["bwb:9781091059900"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T14:00:38.355588"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T14:00:38.355588"}}
+/type/author /authors/OL11008966A 1 2022-11-22T14:21:36.124507 {"type": {"key": "/type/author"}, "name": "H. E. Olsoe", "key": "/authors/OL11008966A", "source_records": ["bwb:9781718146136"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T14:21:36.124507"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T14:21:36.124507"}}
+/type/author /authors/OL1100905A 2 2008-08-19T13:56:56.773599 {"name": "Olga Ortiz Menocal", "personal_name": "Olga Ortiz Menocal", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T13:56:56.773599"}, "key": "/authors/OL1100905A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL11010177A 1 2022-11-22T15:38:58.204777 {"type": {"key": "/type/author"}, "name": "Maryah Well", "key": "/authors/OL11010177A", "source_records": ["bwb:9781091063082"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T15:38:58.204777"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T15:38:58.204777"}}
+/type/author /authors/OL11010256A 1 2022-11-22T15:41:36.366569 {"type": {"key": "/type/author"}, "name": "Tyrone Livingston", "key": "/authors/OL11010256A", "source_records": ["bwb:9781090303646"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T15:41:36.366569"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T15:41:36.366569"}}
+/type/author /authors/OL1101038A 2 2008-08-19T13:57:30.812804 {"name": "Willa Marguerite Boyd", "personal_name": "Willa Marguerite Boyd", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T13:57:30.812804"}, "key": "/authors/OL1101038A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL11010465A 1 2022-11-22T15:49:35.562205 {"type": {"key": "/type/author"}, "name": "Devion Glass", "key": "/authors/OL11010465A", "source_records": ["bwb:9781091057241"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T15:49:35.562205"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T15:49:35.562205"}}
+/type/author /authors/OL11010485A 1 2022-11-22T15:50:24.952293 {"type": {"key": "/type/author"}, "name": "K. and K. Publishing", "key": "/authors/OL11010485A", "source_records": ["bwb:9781095058626"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T15:50:24.952293"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T15:50:24.952293"}}
+/type/author /authors/OL11010494A 1 2022-11-22T15:50:38.623095 {"type": {"key": "/type/author"}, "name": "Eduardo Fonseca Bola\u00f1os", "key": "/authors/OL11010494A", "source_records": ["bwb:9781092945110"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T15:50:38.623095"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T15:50:38.623095"}}
+/type/author /authors/OL11010582A 1 2022-11-22T15:53:04.980801 {"type": {"key": "/type/author"}, "name": "jose sozzani", "key": "/authors/OL11010582A", "source_records": ["bwb:9781097618736"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T15:53:04.980801"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T15:53:04.980801"}}
+/type/author /authors/OL11010648A 1 2022-11-22T15:55:12.206036 {"type": {"key": "/type/author"}, "name": "John Mcgregor", "key": "/authors/OL11010648A", "source_records": ["bwb:9781097136094"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T15:55:12.206036"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T15:55:12.206036"}}
+/type/author /authors/OL11010944A 1 2022-11-22T16:12:14.616819 {"type": {"key": "/type/author"}, "name": "Elke Braunling", "key": "/authors/OL11010944A", "source_records": ["bwb:9781790385751"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T16:12:14.616819"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T16:12:14.616819"}}
+/type/author /authors/OL11011017A 1 2022-11-22T16:14:00.298512 {"type": {"key": "/type/author"}, "name": "Hal Brunson Ph D", "key": "/authors/OL11011017A", "source_records": ["bwb:9781794681019"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T16:14:00.298512"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T16:14:00.298512"}}
+/type/author /authors/OL11011705A 1 2022-11-22T17:01:21.495087 {"type": {"key": "/type/author"}, "name": "S\u00e9rgio Alves", "key": "/authors/OL11011705A", "source_records": ["bwb:9781070405513"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T17:01:21.495087"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T17:01:21.495087"}}
+/type/author /authors/OL11012176A 1 2022-11-22T17:23:36.487862 {"type": {"key": "/type/author"}, "name": "Chacledium", "key": "/authors/OL11012176A", "source_records": ["bwb:9781790805617"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T17:23:36.487862"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T17:23:36.487862"}}
+/type/author /authors/OL11012227A 1 2022-11-22T17:25:08.087816 {"type": {"key": "/type/author"}, "name": "Ingo Heinscher", "key": "/authors/OL11012227A", "source_records": ["bwb:9781070210926"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T17:25:08.087816"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T17:25:08.087816"}}
+/type/author /authors/OL11012411A 1 2022-11-22T17:31:39.021221 {"type": {"key": "/type/author"}, "name": "Brian Rich", "key": "/authors/OL11012411A", "source_records": ["bwb:9781072859604"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T17:31:39.021221"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T17:31:39.021221"}}
+/type/author /authors/OL11012507A 1 2022-11-22T17:34:58.468813 {"type": {"key": "/type/author"}, "name": "Moakada Moakada", "key": "/authors/OL11012507A", "source_records": ["bwb:9781070508818"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T17:34:58.468813"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T17:34:58.468813"}}
+/type/author /authors/OL11012724A 1 2022-11-22T17:42:37.959484 {"type": {"key": "/type/author"}, "name": "Denis GOUT", "key": "/authors/OL11012724A", "source_records": ["bwb:9781074922085"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T17:42:37.959484"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T17:42:37.959484"}}
+/type/author /authors/OL11013306A 1 2022-11-22T18:17:30.927585 {"type": {"key": "/type/author"}, "name": "Mj Blehart", "key": "/authors/OL11013306A", "source_records": ["bwb:9781095181522"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T18:17:30.927585"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T18:17:30.927585"}}
+/type/author /authors/OL11013935A 1 2022-11-22T19:21:38.823577 {"type": {"key": "/type/author"}, "name": "Leanne Rathbone", "key": "/authors/OL11013935A", "source_records": ["bwb:9781799253396"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T19:21:38.823577"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T19:21:38.823577"}}
+/type/author /authors/OL11014052A 1 2022-11-22T19:25:47.780989 {"type": {"key": "/type/author"}, "name": "Project Management Publishing", "key": "/authors/OL11014052A", "source_records": ["bwb:9781798923283"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T19:25:47.780989"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T19:25:47.780989"}}
+/type/author /authors/OL11014621A 1 2022-11-22T19:43:03.226695 {"type": {"key": "/type/author"}, "name": "Mo3kidz JOURNALS", "key": "/authors/OL11014621A", "source_records": ["bwb:9781796310580"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T19:43:03.226695"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T19:43:03.226695"}}
+/type/author /authors/OL11014998A 1 2022-11-22T19:54:21.676062 {"type": {"key": "/type/author"}, "name": "Isabel Castro", "key": "/authors/OL11014998A", "source_records": ["bwb:9781790548033"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T19:54:21.676062"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T19:54:21.676062"}}
+/type/author /authors/OL11015719A 1 2022-11-22T20:47:01.402981 {"type": {"key": "/type/author"}, "name": "Sky Whitehorse", "key": "/authors/OL11015719A", "source_records": ["bwb:9781092990875"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T20:47:01.402981"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T20:47:01.402981"}}
+/type/author /authors/OL11015962A 1 2022-11-22T20:57:20.673461 {"type": {"key": "/type/author"}, "name": "Pamela Gallear", "key": "/authors/OL11015962A", "source_records": ["bwb:9781090434791"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T20:57:20.673461"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T20:57:20.673461"}}
+/type/author /authors/OL11016200A 1 2022-11-22T21:07:42.205350 {"type": {"key": "/type/author"}, "name": "Maddalena Taormina", "key": "/authors/OL11016200A", "source_records": ["bwb:9781096280057"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T21:07:42.205350"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T21:07:42.205350"}}
+/type/author /authors/OL11016431A 1 2022-11-22T21:15:07.169907 {"type": {"key": "/type/author"}, "name": "Sumit SAXENA", "key": "/authors/OL11016431A", "source_records": ["bwb:9781097402205"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T21:15:07.169907"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T21:15:07.169907"}}
+/type/author /authors/OL11016556A 1 2022-11-22T21:19:15.138556 {"type": {"key": "/type/author"}, "name": "Leneve Leatham", "key": "/authors/OL11016556A", "source_records": ["bwb:9781097445912"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T21:19:15.138556"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T21:19:15.138556"}}
+/type/author /authors/OL11016799A 1 2022-11-22T21:34:18.647123 {"type": {"key": "/type/author"}, "name": "Ralph Nelson Willett", "key": "/authors/OL11016799A", "source_records": ["bwb:9781794191761"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T21:34:18.647123"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T21:34:18.647123"}}
+/type/author /authors/OL11016847A 1 2022-11-22T21:37:47.926813 {"type": {"key": "/type/author"}, "name": "Dina Lima", "key": "/authors/OL11016847A", "source_records": ["bwb:9781795304726"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T21:37:47.926813"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T21:37:47.926813"}}
+/type/author /authors/OL11016993A 1 2022-11-22T21:50:56.989027 {"type": {"key": "/type/author"}, "name": "Alex Melkonian", "key": "/authors/OL11016993A", "source_records": ["bwb:9781796663082"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T21:50:56.989027"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T21:50:56.989027"}}
+/type/author /authors/OL11017266A 1 2022-11-22T22:07:16.630961 {"type": {"key": "/type/author"}, "name": "Aaron Posey", "key": "/authors/OL11017266A", "source_records": ["bwb:9781731119759"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T22:07:16.630961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T22:07:16.630961"}}
+/type/author /authors/OL11017397A 1 2022-11-22T22:14:47.628891 {"type": {"key": "/type/author"}, "name": "Tim Nyakang'o", "key": "/authors/OL11017397A", "source_records": ["bwb:9781796340631"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T22:14:47.628891"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T22:14:47.628891"}}
+/type/author /authors/OL11017504A 1 2022-11-22T22:21:06.159155 {"type": {"key": "/type/author"}, "name": "Yah Hughes", "key": "/authors/OL11017504A", "source_records": ["bwb:9781099521713"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T22:21:06.159155"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T22:21:06.159155"}}
+/type/author /authors/OL11017535A 1 2022-11-22T22:22:53.355921 {"type": {"key": "/type/author"}, "name": "F. E. UNIVERSE", "key": "/authors/OL11017535A", "source_records": ["bwb:9781099469312"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T22:22:53.355921"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T22:22:53.355921"}}
+/type/author /authors/OL11018160A 1 2022-11-22T22:48:54.896506 {"type": {"key": "/type/author"}, "name": "The Bible Press", "key": "/authors/OL11018160A", "source_records": ["bwb:9781073615551"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T22:48:54.896506"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T22:48:54.896506"}}
+/type/author /authors/OL11019127A 1 2022-11-22T23:59:31.504595 {"type": {"key": "/type/author"}, "name": "Albert Kroger", "key": "/authors/OL11019127A", "source_records": ["bwb:9781098555924"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-22T23:59:31.504595"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-22T23:59:31.504595"}}
+/type/author /authors/OL11019610A 1 2022-11-23T00:34:25.101293 {"type": {"key": "/type/author"}, "name": "Sylvain H\u00e9quet", "key": "/authors/OL11019610A", "source_records": ["bwb:9781723800955"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T00:34:25.101293"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T00:34:25.101293"}}
+/type/author /authors/OL11020091A 1 2022-11-23T00:49:54.991679 {"type": {"key": "/type/author"}, "name": "Carolyn Whitbeck", "key": "/authors/OL11020091A", "source_records": ["bwb:9781790632572"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T00:49:54.991679"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T00:49:54.991679"}}
+/type/author /authors/OL11020126A 1 2022-11-23T00:50:57.096091 {"type": {"key": "/type/author"}, "name": "Venus Sunshine", "key": "/authors/OL11020126A", "source_records": ["bwb:9781093381665"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T00:50:57.096091"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T00:50:57.096091"}}
+/type/author /authors/OL11020363A 1 2022-11-23T00:57:13.194424 {"type": {"key": "/type/author"}, "name": "Andres Mejia Casallas", "key": "/authors/OL11020363A", "source_records": ["bwb:9781731094711"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T00:57:13.194424"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T00:57:13.194424"}}
+/type/author /authors/OL1102038A 2 2008-08-19T14:02:32.4035 {"name": "Carl-Johan O\u0308sterberg", "personal_name": "Carl-Johan O\u0308sterberg", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T14:02:32.4035"}, "key": "/authors/OL1102038A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL11020776A 1 2022-11-23T01:24:48.270887 {"type": {"key": "/type/author"}, "name": "Naima Bead", "key": "/authors/OL11020776A", "source_records": ["bwb:9781793012579"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T01:24:48.270887"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T01:24:48.270887"}}
+/type/author /authors/OL11021011A 1 2022-11-23T01:45:29.183033 {"type": {"key": "/type/author"}, "name": "Brenda Crimi", "key": "/authors/OL11021011A", "source_records": ["bwb:9781718086135"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T01:45:29.183033"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T01:45:29.183033"}}
+/type/author /authors/OL11021035A 1 2022-11-23T01:46:40.292229 {"type": {"key": "/type/author"}, "name": "Eric Will", "key": "/authors/OL11021035A", "source_records": ["bwb:9781093169089"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T01:46:40.292229"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T01:46:40.292229"}}
+/type/author /authors/OL11021226A 1 2022-11-23T01:54:29.356404 {"type": {"key": "/type/author"}, "name": "Amelia Liyana", "key": "/authors/OL11021226A", "source_records": ["bwb:9781095132333"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T01:54:29.356404"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T01:54:29.356404"}}
+/type/author /authors/OL1102199A 2 2008-08-19T14:03:57.175358 {"name": "Philip C. Bantin", "personal_name": "Philip C. Bantin", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T14:03:57.175358"}, "key": "/authors/OL1102199A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL11022026A 1 2022-11-23T02:31:06.648613 {"type": {"key": "/type/author"}, "name": "Brenda I. Navarro L", "key": "/authors/OL11022026A", "source_records": ["bwb:9781090809070"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T02:31:06.648613"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T02:31:06.648613"}}
+/type/author /authors/OL1102242A 2 2008-08-19T14:04:06.957585 {"name": "Patrick Tanghe", "personal_name": "Patrick Tanghe", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T14:04:06.957585"}, "key": "/authors/OL1102242A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL11023202A 1 2022-11-23T03:36:17.218631 {"type": {"key": "/type/author"}, "name": "Shirley Turgeon", "key": "/authors/OL11023202A", "source_records": ["bwb:9781098731373"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T03:36:17.218631"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T03:36:17.218631"}}
+/type/author /authors/OL11023257A 1 2022-11-23T03:38:52.677587 {"type": {"key": "/type/author"}, "name": "Jonaly Hiranor", "key": "/authors/OL11023257A", "source_records": ["bwb:9781070764511"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T03:38:52.677587"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T03:38:52.677587"}}
+/type/author /authors/OL1102355A 2 2008-08-19T14:04:45.766798 {"name": "Rolf Petzoldt", "personal_name": "Rolf Petzoldt", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T14:04:45.766798"}, "key": "/authors/OL1102355A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL11023924A 1 2022-11-23T04:05:13.409684 {"type": {"key": "/type/author"}, "name": "Joseph Bruchac", "key": "/authors/OL11023924A", "source_records": ["amazon:0804566984"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T04:05:13.409684"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T04:05:13.409684"}}
+/type/author /authors/OL11024177A 1 2022-11-23T04:23:26.033013 {"type": {"key": "/type/author"}, "name": "Shevon Johnson", "key": "/authors/OL11024177A", "source_records": ["bwb:9781095223642"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T04:23:26.033013"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T04:23:26.033013"}}
+/type/author /authors/OL11024204A 1 2022-11-23T04:26:27.884017 {"type": {"key": "/type/author"}, "name": "I. Love Sudoku", "key": "/authors/OL11024204A", "source_records": ["bwb:9781095712429"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T04:26:27.884017"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T04:26:27.884017"}}
+/type/author /authors/OL11024823A 1 2022-11-23T05:24:17.929585 {"type": {"key": "/type/author"}, "name": "Diamond Diva Princess", "key": "/authors/OL11024823A", "source_records": ["bwb:9781090728494"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T05:24:17.929585"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T05:24:17.929585"}}
+/type/author /authors/OL1102484A 2 2008-08-19T14:05:19.606995 {"name": "Alberto Cairoli", "personal_name": "Alberto Cairoli", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T14:05:19.606995"}, "key": "/authors/OL1102484A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL11024883A 1 2022-11-23T05:26:16.086471 {"type": {"key": "/type/author"}, "name": "Enrique Costa Vercher", "key": "/authors/OL11024883A", "source_records": ["bwb:9781796538304"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T05:26:16.086471"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T05:26:16.086471"}}
+/type/author /authors/OL11024927A 1 2022-11-23T05:27:04.865480 {"type": {"key": "/type/author"}, "name": "Fernando Jim\u00e9nez Latorre", "key": "/authors/OL11024927A", "source_records": ["bwb:9781795703727"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T05:27:04.865480"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T05:27:04.865480"}}
+/type/author /authors/OL11025102A 1 2022-11-23T05:31:39.355375 {"type": {"key": "/type/author"}, "name": "Peter D'Souza", "key": "/authors/OL11025102A", "source_records": ["bwb:9781798702895"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T05:31:39.355375"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T05:31:39.355375"}}
+/type/author /authors/OL11025483A 1 2022-11-23T05:47:01.715633 {"type": {"key": "/type/author"}, "name": "Shelby Renae Decorte", "key": "/authors/OL11025483A", "source_records": ["bwb:9781730802362"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T05:47:01.715633"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T05:47:01.715633"}}
+/type/author /authors/OL11025838A 1 2022-11-23T06:12:06.497839 {"type": {"key": "/type/author"}, "name": "The Rudder Magazine", "key": "/authors/OL11025838A", "source_records": ["bwb:9781792804809"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T06:12:06.497839"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T06:12:06.497839"}}
+/type/author /authors/OL1102615A 5 2020-09-30T19:49:37.632323 {"personal_name": "Victor Papilian", "last_modified": {"type": "/type/datetime", "value": "2020-09-30T19:49:37.632323"}, "latest_revision": 5, "key": "/authors/OL1102615A", "remote_ids": {"viaf": "122272585", "wikidata": "Q12743396", "isni": "0000000117811721"}, "name": "Victor Papilian", "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "death_date": "1958", "birth_date": "1888", "type": {"key": "/type/author"}, "revision": 5}
+/type/author /authors/OL11026188A 1 2022-11-23T06:39:34.175908 {"type": {"key": "/type/author"}, "name": "Alios Johnson", "key": "/authors/OL11026188A", "source_records": ["bwb:9781093701128"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T06:39:34.175908"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T06:39:34.175908"}}
+/type/author /authors/OL11026725A 1 2022-11-23T07:02:31.437812 {"type": {"key": "/type/author"}, "name": "Sisk Works", "key": "/authors/OL11026725A", "source_records": ["bwb:9781723943492"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T07:02:31.437812"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T07:02:31.437812"}}
+/type/author /authors/OL11026902A 1 2022-11-23T07:09:04.417610 {"type": {"key": "/type/author"}, "name": "Oriol Ferran", "key": "/authors/OL11026902A", "source_records": ["bwb:9781096388975"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T07:09:04.417610"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T07:09:04.417610"}}
+/type/author /authors/OL11026978A 1 2022-11-23T07:11:19.601374 {"type": {"key": "/type/author"}, "name": "Estelle Huskins", "key": "/authors/OL11026978A", "source_records": ["bwb:9781095369845"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T07:11:19.601374"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T07:11:19.601374"}}
+/type/author /authors/OL11027414A 1 2022-11-23T07:44:13.075426 {"type": {"key": "/type/author"}, "name": "J. C. Valencia", "key": "/authors/OL11027414A", "source_records": ["bwb:9781797039138"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T07:44:13.075426"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T07:44:13.075426"}}
+/type/author /authors/OL11027430A 1 2022-11-23T07:44:48.307910 {"type": {"key": "/type/author"}, "name": "Gb MacRae", "key": "/authors/OL11027430A", "source_records": ["bwb:9781797891132"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T07:44:48.307910"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T07:44:48.307910"}}
+/type/author /authors/OL11027493A 1 2022-11-23T07:48:03.873836 {"type": {"key": "/type/author"}, "name": "Caitlin Baughmann", "key": "/authors/OL11027493A", "source_records": ["bwb:9781798729250"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T07:48:03.873836"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T07:48:03.873836"}}
+/type/author /authors/OL1102768A 2 2008-08-19T14:06:46.91739 {"name": "Masashi Haneda", "personal_name": "Masashi Haneda", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T14:06:46.91739"}, "key": "/authors/OL1102768A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL11027807A 1 2022-11-23T08:07:31.578586 {"type": {"key": "/type/author"}, "name": "Arianna M. Aguilar", "key": "/authors/OL11027807A", "source_records": ["bwb:9781798567180"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T08:07:31.578586"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T08:07:31.578586"}}
+/type/author /authors/OL11028041A 1 2022-11-23T08:19:33.923404 {"type": {"key": "/type/author"}, "name": "Jammy Designs", "key": "/authors/OL11028041A", "source_records": ["bwb:9781790832866"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T08:19:33.923404"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T08:19:33.923404"}}
+/type/author /authors/OL11028160A 1 2022-11-23T08:23:58.993059 {"type": {"key": "/type/author"}, "name": "Jacob Rasmussen", "key": "/authors/OL11028160A", "source_records": ["bwb:9781097340606"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T08:23:58.993059"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T08:23:58.993059"}}
+/type/author /authors/OL11028220A 1 2022-11-23T08:26:31.218970 {"type": {"key": "/type/author"}, "name": "International Advocacy", "key": "/authors/OL11028220A", "source_records": ["bwb:9781070510828"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T08:26:31.218970"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T08:26:31.218970"}}
+/type/author /authors/OL11028623A 1 2022-11-23T08:39:56.277239 {"type": {"key": "/type/author"}, "name": "S. B. Sturdevant", "key": "/authors/OL11028623A", "source_records": ["bwb:9781795185257"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T08:39:56.277239"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T08:39:56.277239"}}
+/type/author /authors/OL11028744A 1 2022-11-23T08:43:58.772372 {"type": {"key": "/type/author"}, "name": "Jennifer Petrus", "key": "/authors/OL11028744A", "source_records": ["bwb:9781072814931"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T08:43:58.772372"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T08:43:58.772372"}}
+/type/author /authors/OL11028853A 1 2022-11-23T08:47:48.150983 {"type": {"key": "/type/author"}, "name": "Leigheaux Longuet", "key": "/authors/OL11028853A", "source_records": ["bwb:9781098625795"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T08:47:48.150983"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T08:47:48.150983"}}
+/type/author /authors/OL11029868A 1 2022-11-23T10:15:00.828082 {"type": {"key": "/type/author"}, "name": "J. Amore", "key": "/authors/OL11029868A", "source_records": ["bwb:9781793884763"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T10:15:00.828082"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T10:15:00.828082"}}
+/type/author /authors/OL11030111A 1 2022-11-23T10:21:47.403308 {"type": {"key": "/type/author"}, "name": "Eliot Tennant", "key": "/authors/OL11030111A", "source_records": ["bwb:9781793921437"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T10:21:47.403308"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T10:21:47.403308"}}
+/type/author /authors/OL11030273A 1 2022-11-23T10:27:46.887085 {"type": {"key": "/type/author"}, "name": "Shanetta LaSIMS", "key": "/authors/OL11030273A", "source_records": ["bwb:9781091004801"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T10:27:46.887085"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T10:27:46.887085"}}
+/type/author /authors/OL11030658A 1 2022-11-23T10:40:30.190082 {"type": {"key": "/type/author"}, "name": "Kratryna W. Varnes", "key": "/authors/OL11030658A", "source_records": ["bwb:9781790372775"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T10:40:30.190082"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T10:40:30.190082"}}
+/type/author /authors/OL11031058A 1 2022-11-23T11:10:49.937681 {"type": {"key": "/type/author"}, "name": "Brenda Faye Brown", "key": "/authors/OL11031058A", "source_records": ["bwb:9781793827913"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T11:10:49.937681"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T11:10:49.937681"}}
+/type/author /authors/OL11031219A 1 2022-11-23T11:27:59.585405 {"type": {"key": "/type/author"}, "name": "Tracey Blick", "key": "/authors/OL11031219A", "source_records": ["bwb:9781092249959"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T11:27:59.585405"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T11:27:59.585405"}}
+/type/author /authors/OL11031241A 1 2022-11-23T11:28:33.499592 {"type": {"key": "/type/author"}, "name": "Kaia Rau", "key": "/authors/OL11031241A", "source_records": ["bwb:9781093658101"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T11:28:33.499592"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T11:28:33.499592"}}
+/type/author /authors/OL11031411A 1 2022-11-23T11:37:41.973211 {"type": {"key": "/type/author"}, "name": "Lilith Addams", "key": "/authors/OL11031411A", "source_records": ["bwb:9781094989860"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T11:37:41.973211"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T11:37:41.973211"}}
+/type/author /authors/OL11031555A 1 2022-11-23T11:45:37.477212 {"type": {"key": "/type/author"}, "name": "Susan JONES", "key": "/authors/OL11031555A", "source_records": ["bwb:9781092861649"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T11:45:37.477212"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T11:45:37.477212"}}
+/type/author /authors/OL11031619A 1 2022-11-23T11:48:23.247405 {"type": {"key": "/type/author"}, "name": "Susan Cuddy", "key": "/authors/OL11031619A", "source_records": ["bwb:9781092240116"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T11:48:23.247405"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T11:48:23.247405"}}
+/type/author /authors/OL11031793A 1 2022-11-23T11:56:49.923793 {"type": {"key": "/type/author"}, "name": "Bernice Jones", "key": "/authors/OL11031793A", "source_records": ["bwb:9781095006832"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T11:56:49.923793"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T11:56:49.923793"}}
+/type/author /authors/OL11032215A 1 2022-11-23T12:21:37.425385 {"type": {"key": "/type/author"}, "name": "Nicholas Wolex Publishing Wolex", "key": "/authors/OL11032215A", "source_records": ["bwb:9781792837814"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T12:21:37.425385"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T12:21:37.425385"}}
+/type/author /authors/OL11032589A 1 2022-11-23T12:51:33.986675 {"type": {"key": "/type/author"}, "name": "Dolly R Nunez", "key": "/authors/OL11032589A", "source_records": ["bwb:9781799028857"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T12:51:33.986675"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T12:51:33.986675"}}
+/type/author /authors/OL11032614A 1 2022-11-23T12:53:12.937279 {"type": {"key": "/type/author"}, "name": "T. D. Vaxton", "key": "/authors/OL11032614A", "source_records": ["bwb:9781799250401"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T12:53:12.937279"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T12:53:12.937279"}}
+/type/author /authors/OL11032722A 1 2022-11-23T12:59:02.289714 {"type": {"key": "/type/author"}, "name": "Kenny Erickson", "key": "/authors/OL11032722A", "source_records": ["bwb:9781095389676"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T12:59:02.289714"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T12:59:02.289714"}}
+/type/author /authors/OL11032750A 1 2022-11-23T13:00:25.616770 {"type": {"key": "/type/author"}, "name": "J. Mamoun", "key": "/authors/OL11032750A", "source_records": ["bwb:9781096863786"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T13:00:25.616770"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T13:00:25.616770"}}
+/type/author /authors/OL11032955A 1 2022-11-23T13:14:35.620766 {"type": {"key": "/type/author"}, "name": "M. c. agust", "key": "/authors/OL11032955A", "source_records": ["bwb:9781092982948"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T13:14:35.620766"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T13:14:35.620766"}}
+/type/author /authors/OL1103304A 3 2017-11-22T20:53:34.558767 {"name": "Ti\u012du Mi\u0361arss", "personal_name": "Ti\u012du Mi\u0361arss", "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2017-11-22T20:53:34.558767"}, "latest_revision": 3, "key": "/authors/OL1103304A", "type": {"key": "/type/author"}, "revision": 3}
+/type/author /authors/OL11033257A 1 2022-11-23T13:28:36.267204 {"type": {"key": "/type/author"}, "name": "@originalGraphicStella", "key": "/authors/OL11033257A", "source_records": ["bwb:9781099351198"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T13:28:36.267204"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T13:28:36.267204"}}
+/type/author /authors/OL11033389A 1 2022-11-23T13:35:20.271294 {"type": {"key": "/type/author"}, "name": "Kelly Wadden", "key": "/authors/OL11033389A", "source_records": ["bwb:9781099210174"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T13:35:20.271294"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T13:35:20.271294"}}
+/type/author /authors/OL11033470A 1 2022-11-23T13:38:53.494172 {"type": {"key": "/type/author"}, "name": "Paul Loong", "key": "/authors/OL11033470A", "source_records": ["bwb:9781999417321"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T13:38:53.494172"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T13:38:53.494172"}}
+/type/author /authors/OL11033561A 1 2022-11-23T13:43:22.354266 {"type": {"key": "/type/author"}, "name": "Kyle Callahan", "key": "/authors/OL11033561A", "source_records": ["bwb:9781095004791"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T13:43:22.354266"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T13:43:22.354266"}}
+/type/author /authors/OL11033958A 1 2022-11-23T14:01:24.003258 {"type": {"key": "/type/author"}, "name": "Arthur L. Jenkins Bishop", "key": "/authors/OL11033958A", "source_records": ["bwb:9781091204140"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T14:01:24.003258"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T14:01:24.003258"}}
+/type/author /authors/OL11034200A 1 2022-11-23T14:22:33.133745 {"type": {"key": "/type/author"}, "name": "Dale Arthur Massey", "key": "/authors/OL11034200A", "source_records": ["bwb:9781095602751"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T14:22:33.133745"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T14:22:33.133745"}}
+/type/author /authors/OL11034215A 1 2022-11-23T14:25:01.528006 {"type": {"key": "/type/author"}, "name": "Alessandra del Basso", "key": "/authors/OL11034215A", "source_records": ["bwb:9781095863473"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T14:25:01.528006"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T14:25:01.528006"}}
+/type/author /authors/OL1103432A 1 2008-04-01T03:28:50.625462 {"name": "International Conference on Automotive Electronics (6th 1987 London, England)", "last_modified": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "key": "/authors/OL1103432A", "type": {"key": "/type/author"}, "revision": 1}
+/type/author /authors/OL11034361A 1 2022-11-23T14:46:03.844983 {"type": {"key": "/type/author"}, "name": "Samantha K. Jones", "key": "/authors/OL11034361A", "source_records": ["bwb:9781097728022"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T14:46:03.844983"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T14:46:03.844983"}}
+/type/author /authors/OL11034816A 1 2022-11-23T15:23:31.848125 {"type": {"key": "/type/author"}, "name": "J. M. Meadows", "key": "/authors/OL11034816A", "source_records": ["bwb:9781090712929"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T15:23:31.848125"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T15:23:31.848125"}}
+/type/author /authors/OL11034951A 1 2022-11-23T15:28:30.314221 {"type": {"key": "/type/author"}, "name": "Rahul Jha", "key": "/authors/OL11034951A", "source_records": ["bwb:9781091573871"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T15:28:30.314221"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T15:28:30.314221"}}
+/type/author /authors/OL11035149A 1 2022-11-23T15:34:54.526180 {"type": {"key": "/type/author"}, "name": "Ben Cardone", "key": "/authors/OL11035149A", "source_records": ["bwb:9781090893499"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T15:34:54.526180"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T15:34:54.526180"}}
+/type/author /authors/OL11035276A 1 2022-11-23T15:40:54.130039 {"type": {"key": "/type/author"}, "name": "Mario Jos\u00e9 Artcadia Panet", "key": "/authors/OL11035276A", "source_records": ["bwb:9781090723437"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T15:40:54.130039"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T15:40:54.130039"}}
+/type/author /authors/OL11035295A 1 2022-11-23T15:41:51.514484 {"type": {"key": "/type/author"}, "name": "Jenny Jessop Larson", "key": "/authors/OL11035295A", "source_records": ["bwb:9781976712852"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T15:41:51.514484"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T15:41:51.514484"}}
+/type/author /authors/OL11035607A 1 2022-11-23T15:52:19.038884 {"type": {"key": "/type/author"}, "name": "D. Shane Shelton", "key": "/authors/OL11035607A", "source_records": ["bwb:9781790571673"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T15:52:19.038884"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T15:52:19.038884"}}
+/type/author /authors/OL11035858A 1 2022-11-23T16:16:51.755620 {"type": {"key": "/type/author"}, "name": "Tessa Mason", "key": "/authors/OL11035858A", "source_records": ["bwb:9781792869907"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T16:16:51.755620"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T16:16:51.755620"}}
+/type/author /authors/OL11036035A 1 2022-11-23T16:30:46.471981 {"type": {"key": "/type/author"}, "name": "Samantha Ondyak", "key": "/authors/OL11036035A", "source_records": ["bwb:9781794241596"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T16:30:46.471981"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T16:30:46.471981"}}
+/type/author /authors/OL11036201A 1 2022-11-23T16:44:12.793840 {"type": {"key": "/type/author"}, "name": "Corene Rowling", "key": "/authors/OL11036201A", "source_records": ["bwb:9781090941336"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T16:44:12.793840"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T16:44:12.793840"}}
+/type/author /authors/OL11036406A 1 2022-11-23T16:54:39.229466 {"type": {"key": "/type/author"}, "name": "Jack Hess", "key": "/authors/OL11036406A", "source_records": ["bwb:9781095439012"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T16:54:39.229466"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T16:54:39.229466"}}
+/type/author /authors/OL11036421A 1 2022-11-23T16:55:12.065315 {"type": {"key": "/type/author"}, "name": "A. Hoeg", "key": "/authors/OL11036421A", "source_records": ["bwb:9781096299677"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T16:55:12.065315"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T16:55:12.065315"}}
+/type/author /authors/OL11037194A 1 2022-11-23T17:34:41.509201 {"type": {"key": "/type/author"}, "name": "Matthew Osgood", "key": "/authors/OL11037194A", "source_records": ["bwb:9781794599871"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T17:34:41.509201"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T17:34:41.509201"}}
+/type/author /authors/OL11037338A 1 2022-11-23T17:50:33.015321 {"type": {"key": "/type/author"}, "name": "Canvas Imagenes Stock", "key": "/authors/OL11037338A", "source_records": ["bwb:9781796653700"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T17:50:33.015321"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T17:50:33.015321"}}
+/type/author /authors/OL11037610A 1 2022-11-23T18:10:56.405269 {"type": {"key": "/type/author"}, "name": "Tina-Desiree Berg", "key": "/authors/OL11037610A", "source_records": ["bwb:9781098925482"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T18:10:56.405269"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T18:10:56.405269"}}
+/type/author /authors/OL11037777A 1 2022-11-23T18:26:23.567888 {"type": {"key": "/type/author"}, "name": "Juss Mann", "key": "/authors/OL11037777A", "source_records": ["bwb:9781090946348"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T18:26:23.567888"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T18:26:23.567888"}}
+/type/author /authors/OL11038035A 1 2022-11-23T18:38:45.528563 {"type": {"key": "/type/author"}, "name": "B. Y. Stuart DRS LCPC", "key": "/authors/OL11038035A", "source_records": ["bwb:9781790298907"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T18:38:45.528563"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T18:38:45.528563"}}
+/type/author /authors/OL11038073A 1 2022-11-23T18:40:44.894440 {"type": {"key": "/type/author"}, "name": "Nikki Pava", "key": "/authors/OL11038073A", "source_records": ["bwb:9781091582088"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T18:40:44.894440"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T18:40:44.894440"}}
+/type/author /authors/OL1103813A 2 2008-08-19T14:12:48.316046 {"name": "Grace Darlene Skogstad", "personal_name": "Grace Darlene Skogstad", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T14:12:48.316046"}, "key": "/authors/OL1103813A", "birth_date": "1948", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL11038273A 1 2022-11-23T18:49:46.330155 {"type": {"key": "/type/author"}, "name": "Joanne ELIZABETH", "key": "/authors/OL11038273A", "source_records": ["bwb:9781073133536"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T18:49:46.330155"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T18:49:46.330155"}}
+/type/author /authors/OL11038969A 1 2022-11-23T19:32:14.765578 {"type": {"key": "/type/author"}, "name": "Lssgb Exam Experts", "key": "/authors/OL11038969A", "source_records": ["bwb:9781093586305"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T19:32:14.765578"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T19:32:14.765578"}}
+/type/author /authors/OL11039198A 1 2022-11-23T20:06:40.502529 {"type": {"key": "/type/author"}, "name": "Corinne Caratti", "key": "/authors/OL11039198A", "source_records": ["bwb:9781098528508"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T20:06:40.502529"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T20:06:40.502529"}}
+/type/author /authors/OL1103920A 2 2008-08-19T14:13:18.228811 {"name": "Alex Tyrrell", "personal_name": "Alex Tyrrell", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T14:13:18.228811"}, "key": "/authors/OL1103920A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL11039350A 1 2022-11-23T20:25:08.066900 {"type": {"key": "/type/author"}, "name": "Rachel L. Philips Mfa", "key": "/authors/OL11039350A", "source_records": ["bwb:9781731059970"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T20:25:08.066900"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T20:25:08.066900"}}
+/type/author /authors/OL11040133A 1 2022-11-23T20:59:22.174496 {"type": {"key": "/type/author"}, "name": "Quentin Gazay", "key": "/authors/OL11040133A", "source_records": ["bwb:9781093941616"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T20:59:22.174496"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T20:59:22.174496"}}
+/type/author /authors/OL11040149A 1 2022-11-23T20:59:42.679398 {"type": {"key": "/type/author"}, "name": "Barbara Shabazz", "key": "/authors/OL11040149A", "source_records": ["bwb:9781795780681"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T20:59:42.679398"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T20:59:42.679398"}}
+/type/author /authors/OL1104015A 2 2008-08-19T14:13:51.882387 {"name": "Maria Pozowska", "personal_name": "Maria Pozowska", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T14:13:51.882387"}, "key": "/authors/OL1104015A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL11040225A 1 2022-11-23T21:02:41.254052 {"type": {"key": "/type/author"}, "name": "Jose' Angel Galea", "key": "/authors/OL11040225A", "source_records": ["bwb:9781730796500"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T21:02:41.254052"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T21:02:41.254052"}}
+/type/author /authors/OL11040433A 1 2022-11-23T21:15:34.332489 {"type": {"key": "/type/author"}, "name": "Silas Montford", "key": "/authors/OL11040433A", "source_records": ["bwb:9781791577421"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T21:15:34.332489"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T21:15:34.332489"}}
+/type/author /authors/OL11040662A 1 2022-11-23T21:38:09.459336 {"type": {"key": "/type/author"}, "name": "Maria Clara Rojas B-R", "key": "/authors/OL11040662A", "source_records": ["bwb:9781793961709"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T21:38:09.459336"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T21:38:09.459336"}}
+/type/author /authors/OL1104075A 2 2017-11-26T10:48:24.610762 {"name": "Vsesoi\u0361uznai\u0361a konferent\u0361sii\u0361a po fizike nizkotemperaturno\u012d plazmy (7th 1987 Tashkent, Uzbek S.S.R.)", "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2017-11-26T10:48:24.610762"}, "latest_revision": 2, "key": "/authors/OL1104075A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL11040943A 1 2022-11-23T22:00:10.735484 {"type": {"key": "/type/author"}, "name": "M. A. Mukosi", "key": "/authors/OL11040943A", "source_records": ["bwb:9781092559850"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T22:00:10.735484"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T22:00:10.735484"}}
+/type/author /authors/OL11041021A 1 2022-11-23T22:03:11.781561 {"type": {"key": "/type/author"}, "name": "Timothy Petrov", "key": "/authors/OL11041021A", "source_records": ["bwb:9781093744422"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T22:03:11.781561"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T22:03:11.781561"}}
+/type/author /authors/OL11041235A 1 2022-11-23T22:13:56.496283 {"type": {"key": "/type/author"}, "name": "Hieufox", "key": "/authors/OL11041235A", "source_records": ["bwb:9781093911725"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T22:13:56.496283"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T22:13:56.496283"}}
+/type/author /authors/OL11041473A 1 2022-11-23T22:23:35.451147 {"type": {"key": "/type/author"}, "name": "Lakeview Times", "key": "/authors/OL11041473A", "source_records": ["bwb:9781096801818"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T22:23:35.451147"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T22:23:35.451147"}}
+/type/author /authors/OL11041496A 1 2022-11-23T22:24:19.816632 {"type": {"key": "/type/author"}, "name": "Gail Tilton", "key": "/authors/OL11041496A", "source_records": ["bwb:9781096115267"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T22:24:19.816632"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T22:24:19.816632"}}
+/type/author /authors/OL11042346A 1 2022-11-23T23:23:52.653442 {"type": {"key": "/type/author"}, "name": "Diarios Productividad", "key": "/authors/OL11042346A", "source_records": ["bwb:9781796955699"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T23:23:52.653442"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T23:23:52.653442"}}
+/type/author /authors/OL1104272A 3 2017-12-01T04:09:16.882817 {"name": "I\u0361Uri\u012d Pavlenko", "personal_name": "I\u0361Uri\u012d Pavlenko", "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2017-12-01T04:09:16.882817"}, "latest_revision": 3, "key": "/authors/OL1104272A", "type": {"key": "/type/author"}, "revision": 3}
+/type/author /authors/OL11042800A 1 2022-11-23T23:50:07.353706 {"type": {"key": "/type/author"}, "name": "Odile Bertagnolio", "key": "/authors/OL11042800A", "source_records": ["bwb:9781092745581"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T23:50:07.353706"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T23:50:07.353706"}}
+/type/author /authors/OL11042846A 1 2022-11-23T23:51:48.605204 {"type": {"key": "/type/author"}, "name": "Carles Ruiz i Gil", "key": "/authors/OL11042846A", "source_records": ["bwb:9781070699417"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T23:51:48.605204"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T23:51:48.605204"}}
+/type/author /authors/OL11042875A 1 2022-11-23T23:52:59.718310 {"type": {"key": "/type/author"}, "name": "Nehemias Herrera Borjas", "key": "/authors/OL11042875A", "source_records": ["bwb:9781099502651"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T23:52:59.718310"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T23:52:59.718310"}}
+/type/author /authors/OL11042897A 1 2022-11-23T23:54:14.462615 {"type": {"key": "/type/author"}, "name": "Shay'vantae Hale", "key": "/authors/OL11042897A", "source_records": ["bwb:9781093412857"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-23T23:54:14.462615"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-23T23:54:14.462615"}}
+/type/author /authors/OL11043368A 1 2022-11-24T00:16:48.917568 {"type": {"key": "/type/author"}, "name": "Mario Woodward", "key": "/authors/OL11043368A", "source_records": ["bwb:9781070289496"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T00:16:48.917568"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T00:16:48.917568"}}
+/type/author /authors/OL11043721A 1 2022-11-24T00:59:19.604003 {"type": {"key": "/type/author"}, "name": "Mjsb Music Journals", "key": "/authors/OL11043721A", "source_records": ["bwb:9781097546794"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T00:59:19.604003"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T00:59:19.604003"}}
+/type/author /authors/OL11044071A 1 2022-11-24T01:25:54.278724 {"type": {"key": "/type/author"}, "name": "Omar Lombardo", "key": "/authors/OL11044071A", "source_records": ["bwb:9781075595707"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T01:25:54.278724"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T01:25:54.278724"}}
+/type/author /authors/OL11044162A 1 2022-11-24T01:27:49.668919 {"type": {"key": "/type/author"}, "name": "Say What You Really Mean (SWYRM)", "key": "/authors/OL11044162A", "source_records": ["bwb:9781076960658"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T01:27:49.668919"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T01:27:49.668919"}}
+/type/author /authors/OL11044217A 1 2022-11-24T01:28:55.536277 {"type": {"key": "/type/author"}, "name": "Carlos FERN\u00c1NDEZ TAPIA", "key": "/authors/OL11044217A", "source_records": ["bwb:9781796815566"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T01:28:55.536277"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T01:28:55.536277"}}
+/type/author /authors/OL11045604A 1 2022-11-24T02:19:34.141856 {"type": {"key": "/type/author"}, "name": "Sweets Publisher", "key": "/authors/OL11045604A", "source_records": ["bwb:9781073446452"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T02:19:34.141856"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T02:19:34.141856"}}
+/type/author /authors/OL11045712A 1 2022-11-24T02:27:42.487589 {"type": {"key": "/type/author"}, "name": "Trauer Hilfe Verlag", "key": "/authors/OL11045712A", "source_records": ["bwb:9781074506643"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T02:27:42.487589"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T02:27:42.487589"}}
+/type/author /authors/OL11045721A 1 2022-11-24T02:28:16.417192 {"type": {"key": "/type/author"}, "name": "Kreative Geschenkbucher", "key": "/authors/OL11045721A", "source_records": ["bwb:9781074574604"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T02:28:16.417192"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T02:28:16.417192"}}
+/type/author /authors/OL11046190A 1 2022-11-24T03:09:33.241123 {"type": {"key": "/type/author"}, "name": "John Puppy", "key": "/authors/OL11046190A", "source_records": ["bwb:9781079873757"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T03:09:33.241123"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T03:09:33.241123"}}
+/type/author /authors/OL11046241A 1 2022-11-24T03:12:46.402233 {"type": {"key": "/type/author"}, "name": "Angelo RICCA", "key": "/authors/OL11046241A", "source_records": ["bwb:9781982950552"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T03:12:46.402233"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T03:12:46.402233"}}
+/type/author /authors/OL1104654A 2 2008-08-19T14:16:19.182958 {"name": "Walery Eljasz", "personal_name": "Walery Eljasz", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T14:16:19.182958"}, "key": "/authors/OL1104654A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL110468A 1 2008-04-01T03:28:50.625462 {"name": "S\u0301ivakuma\u0304r, Ke. Vai.", "personal_name": "S\u0301ivakuma\u0304r, Ke. Vai.", "last_modified": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "key": "/authors/OL110468A", "type": {"key": "/type/author"}, "revision": 1}
+/type/author /authors/OL11046953A 1 2022-11-24T03:49:26.377085 {"type": {"key": "/type/author"}, "name": "Victoria Verdy", "key": "/authors/OL11046953A", "source_records": ["bwb:9781096155324"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T03:49:26.377085"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T03:49:26.377085"}}
+/type/author /authors/OL11047235A 1 2022-11-24T03:58:08.249607 {"type": {"key": "/type/author"}, "name": "Hannah Elisa Hogeboom", "key": "/authors/OL11047235A", "source_records": ["bwb:9781983163678"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T03:58:08.249607"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T03:58:08.249607"}}
+/type/author /authors/OL11047465A 1 2022-11-24T04:06:00.028426 {"type": {"key": "/type/author"}, "name": "Collectif agenda", "key": "/authors/OL11047465A", "source_records": ["bwb:9781686964350"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T04:06:00.028426"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T04:06:00.028426"}}
+/type/author /authors/OL11047795A 1 2022-11-24T04:16:16.385657 {"type": {"key": "/type/author"}, "name": "Daniel FONKEM", "key": "/authors/OL11047795A", "source_records": ["bwb:9781792955921"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T04:16:16.385657"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T04:16:16.385657"}}
+/type/author /authors/OL11047973A 1 2022-11-24T04:20:56.441933 {"type": {"key": "/type/author"}, "name": "Artemisia Xene", "key": "/authors/OL11047973A", "source_records": ["bwb:9781790176090"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T04:20:56.441933"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T04:20:56.441933"}}
+/type/author /authors/OL11049066A 1 2022-11-24T04:53:35.082745 {"type": {"key": "/type/author"}, "name": "Keianna Jones", "key": "/authors/OL11049066A", "source_records": ["bwb:9781793017918"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T04:53:35.082745"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T04:53:35.082745"}}
+/type/author /authors/OL11049360A 1 2022-11-24T05:01:39.690620 {"type": {"key": "/type/author"}, "name": "Ana-Marcela Lopez", "key": "/authors/OL11049360A", "source_records": ["bwb:9781696724685"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T05:01:39.690620"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T05:01:39.690620"}}
+/type/author /authors/OL110493A 2 2008-09-09T05:06:54.082128 {"name": "Ira\u0304ma Cuntaram", "personal_name": "Ira\u0304ma Cuntaram", "last_modified": {"type": "/type/datetime", "value": "2008-09-09T05:06:54.082128"}, "key": "/authors/OL110493A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL11049460A 1 2022-11-24T05:03:42.550230 {"type": {"key": "/type/author"}, "name": "Catherine Zeillinger-Vannier", "key": "/authors/OL11049460A", "source_records": ["bwb:9781695854277"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T05:03:42.550230"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T05:03:42.550230"}}
+/type/author /authors/OL11049799A 1 2022-11-24T05:13:28.005931 {"type": {"key": "/type/author"}, "name": "Resia Thompson", "key": "/authors/OL11049799A", "source_records": ["bwb:9781693091896"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T05:13:28.005931"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T05:13:28.005931"}}
+/type/author /authors/OL11050223A 1 2022-11-24T05:36:52.427193 {"type": {"key": "/type/author"}, "name": "Wander Notizb\u00fccher", "key": "/authors/OL11050223A", "source_records": ["bwb:9781073555031"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T05:36:52.427193"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T05:36:52.427193"}}
+/type/author /authors/OL11050246A 1 2022-11-24T05:37:41.073072 {"type": {"key": "/type/author"}, "name": "Katy Round", "key": "/authors/OL11050246A", "source_records": ["bwb:9781095476215"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T05:37:41.073072"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T05:37:41.073072"}}
+/type/author /authors/OL11050490A 1 2022-11-24T05:44:20.166587 {"type": {"key": "/type/author"}, "name": "Leonardo Rivero", "key": "/authors/OL11050490A", "source_records": ["bwb:9781076635310"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T05:44:20.166587"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T05:44:20.166587"}}
+/type/author /authors/OL11050641A 1 2022-11-24T05:47:46.670775 {"type": {"key": "/type/author"}, "name": "bykai", "key": "/authors/OL11050641A", "source_records": ["bwb:9781075799532"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T05:47:46.670775"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T05:47:46.670775"}}
+/type/author /authors/OL11051236A 1 2022-11-24T06:07:00.075305 {"type": {"key": "/type/author"}, "name": "Valentina Vinotti", "key": "/authors/OL11051236A", "source_records": ["bwb:9781794248472"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T06:07:00.075305"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T06:07:00.075305"}}
+/type/author /authors/OL11051496A 1 2022-11-24T06:29:07.019418 {"type": {"key": "/type/author"}, "name": "L. V. Perez Jr", "key": "/authors/OL11051496A", "source_records": ["bwb:9781072564737"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T06:29:07.019418"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T06:29:07.019418"}}
+/type/author /authors/OL11051581A 1 2022-11-24T06:37:52.047126 {"type": {"key": "/type/author"}, "name": "Desiri M. Morrissey", "key": "/authors/OL11051581A", "source_records": ["bwb:9781073620289"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T06:37:52.047126"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T06:37:52.047126"}}
+/type/author /authors/OL11051681A 1 2022-11-24T06:50:41.957620 {"type": {"key": "/type/author"}, "name": "Ellen Stockton", "key": "/authors/OL11051681A", "source_records": ["bwb:9781075090530"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T06:50:41.957620"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T06:50:41.957620"}}
+/type/author /authors/OL11051724A 1 2022-11-24T06:55:04.570339 {"type": {"key": "/type/author"}, "name": "Ebuka Ndukwe", "key": "/authors/OL11051724A", "source_records": ["bwb:9781075627088"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T06:55:04.570339"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T06:55:04.570339"}}
+/type/author /authors/OL11051798A 1 2022-11-24T07:01:51.876054 {"type": {"key": "/type/author"}, "name": "Juha Pyykonen", "key": "/authors/OL11051798A", "source_records": ["bwb:9781076539960"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T07:01:51.876054"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T07:01:51.876054"}}
+/type/author /authors/OL11052103A 1 2022-11-24T07:34:50.968394 {"type": {"key": "/type/author"}, "name": "Ela Timofanovici", "key": "/authors/OL11052103A", "source_records": ["bwb:9781980465492"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T07:34:50.968394"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T07:34:50.968394"}}
+/type/author /authors/OL11052580A 1 2022-11-24T08:03:35.686505 {"type": {"key": "/type/author"}, "name": "Anna Gimenez", "key": "/authors/OL11052580A", "source_records": ["bwb:9781082510359"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T08:03:35.686505"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T08:03:35.686505"}}
+/type/author /authors/OL11053173A 1 2022-11-24T08:26:55.309095 {"type": {"key": "/type/author"}, "name": "Rebecca Noonan-Heale", "key": "/authors/OL11053173A", "source_records": ["bwb:9781792868689"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T08:26:55.309095"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T08:26:55.309095"}}
+/type/author /authors/OL11053252A 1 2022-11-24T08:30:12.080529 {"type": {"key": "/type/author"}, "name": "M. P. WARD", "key": "/authors/OL11053252A", "source_records": ["bwb:9781082064890"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T08:30:12.080529"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T08:30:12.080529"}}
+/type/author /authors/OL11053622A 1 2022-11-24T08:41:57.287757 {"type": {"key": "/type/author"}, "name": "John ELAM", "key": "/authors/OL11053622A", "source_records": ["bwb:9781092215503"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T08:41:57.287757"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T08:41:57.287757"}}
+/type/author /authors/OL11053744A 1 2022-11-24T08:45:09.824424 {"type": {"key": "/type/author"}, "name": "Vala Rogers", "key": "/authors/OL11053744A", "source_records": ["bwb:9781983291241"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T08:45:09.824424"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T08:45:09.824424"}}
+/type/author /authors/OL11053898A 1 2022-11-24T08:50:22.444184 {"type": {"key": "/type/author"}, "name": "James Ellerston", "key": "/authors/OL11053898A", "source_records": ["bwb:9781793959614"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T08:50:22.444184"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T08:50:22.444184"}}
+/type/author /authors/OL11053917A 1 2022-11-24T08:50:52.826371 {"type": {"key": "/type/author"}, "name": "Scott Wallick", "key": "/authors/OL11053917A", "source_records": ["bwb:9781092140331"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T08:50:52.826371"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T08:50:52.826371"}}
+/type/author /authors/OL11054517A 1 2022-11-24T09:09:12.920722 {"type": {"key": "/type/author"}, "name": "Jamillah Ballatt", "key": "/authors/OL11054517A", "source_records": ["bwb:9781791594763"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T09:09:12.920722"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T09:09:12.920722"}}
+/type/author /authors/OL11054523A 1 2022-11-24T09:09:20.154837 {"type": {"key": "/type/author"}, "name": "Anurag SARKAR", "key": "/authors/OL11054523A", "source_records": ["bwb:9781694799753"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T09:09:20.154837"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T09:09:20.154837"}}
+/type/author /authors/OL11054573A 1 2022-11-24T09:10:34.091416 {"type": {"key": "/type/author"}, "name": "La Bible", "key": "/authors/OL11054573A", "source_records": ["bwb:9781729217887"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T09:10:34.091416"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T09:10:34.091416"}}
+/type/author /authors/OL11054927A 1 2022-11-24T09:21:24.451202 {"type": {"key": "/type/author"}, "name": "Saccheen Laing", "key": "/authors/OL11054927A", "source_records": ["bwb:9781095193778"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T09:21:24.451202"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T09:21:24.451202"}}
+/type/author /authors/OL1105492A 2 2008-08-19T14:19:49.725431 {"name": "Stephen U. Lester", "personal_name": "Stephen U. Lester", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T14:19:49.725431"}, "key": "/authors/OL1105492A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL1105495A 2 2008-08-19T14:19:50.298331 {"name": "O. D. Cresswell", "personal_name": "O. D. Cresswell", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T14:19:50.298331"}, "key": "/authors/OL1105495A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL11055194A 1 2022-11-24T09:30:13.335985 {"type": {"key": "/type/author"}, "name": "Olivia Notebooks", "key": "/authors/OL11055194A", "source_records": ["bwb:9781693882579"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T09:30:13.335985"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T09:30:13.335985"}}
+/type/author /authors/OL11055279A 1 2022-11-24T09:33:15.016742 {"type": {"key": "/type/author"}, "name": "Latrice Doston", "key": "/authors/OL11055279A", "source_records": ["bwb:9781730761386"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T09:33:15.016742"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T09:33:15.016742"}}
+/type/author /authors/OL11055393A 1 2022-11-24T09:36:39.965688 {"type": {"key": "/type/author"}, "name": "Regina S. Gulley", "key": "/authors/OL11055393A", "source_records": ["bwb:9781082844324"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T09:36:39.965688"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T09:36:39.965688"}}
+/type/author /authors/OL1105545A 2 2008-08-19T14:20:09.362474 {"name": "Remberto Burgos Puche", "personal_name": "Remberto Burgos Puche", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T14:20:09.362474"}, "key": "/authors/OL1105545A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL1105548A 2 2008-08-19T14:20:09.986735 {"name": "Eli\u0301as Santana", "personal_name": "Eli\u0301as Santana", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T14:20:09.986735"}, "key": "/authors/OL1105548A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL11055596A 1 2022-11-24T09:54:33.344230 {"type": {"key": "/type/author"}, "name": "Rev Louis O'Donovan", "key": "/authors/OL11055596A", "source_records": ["bwb:9781795448994"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T09:54:33.344230"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T09:54:33.344230"}}
+/type/author /authors/OL11056535A 1 2022-11-24T10:20:00.647356 {"type": {"key": "/type/author"}, "name": "Hilary Pangan", "key": "/authors/OL11056535A", "source_records": ["bwb:9781098944094"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T10:20:00.647356"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T10:20:00.647356"}}
+/type/author /authors/OL11056602A 1 2022-11-24T10:22:09.816183 {"type": {"key": "/type/author"}, "name": "Wiraiwari Jirayu", "key": "/authors/OL11056602A", "source_records": ["bwb:9781093328165"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T10:22:09.816183"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T10:22:09.816183"}}
+/type/author /authors/OL11056920A 1 2022-11-24T10:43:07.361723 {"type": {"key": "/type/author"}, "name": "Harvard R H", "key": "/authors/OL11056920A", "source_records": ["bwb:9781071360989"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T10:43:07.361723"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T10:43:07.361723"}}
+/type/author /authors/OL11057006A 1 2022-11-24T10:50:06.324872 {"type": {"key": "/type/author"}, "name": "Chino Garnett", "key": "/authors/OL11057006A", "source_records": ["bwb:9781072709084"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T10:50:06.324872"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T10:50:06.324872"}}
+/type/author /authors/OL11057082A 1 2022-11-24T10:57:56.371441 {"type": {"key": "/type/author"}, "name": "Savita Tyagi", "key": "/authors/OL11057082A", "source_records": ["bwb:9781073712731"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T10:57:56.371441"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T10:57:56.371441"}}
+/type/author /authors/OL11057262A 1 2022-11-24T11:18:24.170888 {"type": {"key": "/type/author"}, "name": "Air Force Research Laboratory", "key": "/authors/OL11057262A", "source_records": ["bwb:9781076150127"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T11:18:24.170888"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T11:18:24.170888"}}
+/type/author /authors/OL11057330A 1 2022-11-24T11:25:13.055205 {"type": {"key": "/type/author"}, "name": "Saiyam Sharma", "key": "/authors/OL11057330A", "source_records": ["bwb:9781077312227"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T11:25:13.055205"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T11:25:13.055205"}}
+/type/author /authors/OL11057422A 1 2022-11-24T11:40:21.850415 {"type": {"key": "/type/author"}, "name": "Japheth John", "key": "/authors/OL11057422A", "source_records": ["bwb:9781078363266"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T11:40:21.850415"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T11:40:21.850415"}}
+/type/author /authors/OL11058031A 1 2022-11-24T12:23:52.945187 {"type": {"key": "/type/author"}, "name": "Arti Int", "key": "/authors/OL11058031A", "source_records": ["bwb:9781082266386"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T12:23:52.945187"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T12:23:52.945187"}}
+/type/author /authors/OL11058487A 1 2022-11-24T12:45:47.322263 {"type": {"key": "/type/author"}, "name": "Enes BABA", "key": "/authors/OL11058487A", "source_records": ["bwb:9781731513977"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T12:45:47.322263"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T12:45:47.322263"}}
+/type/author /authors/OL11058571A 1 2022-11-24T12:49:09.000661 {"type": {"key": "/type/author"}, "name": "Rupert BROOKE", "key": "/authors/OL11058571A", "source_records": ["bwb:9781720004998"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T12:49:09.000661"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T12:49:09.000661"}}
+/type/author /authors/OL11058727A 1 2022-11-24T12:54:48.337987 {"type": {"key": "/type/author"}, "name": "Carnivore Journal", "key": "/authors/OL11058727A", "source_records": ["bwb:9781723748417"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T12:54:48.337987"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T12:54:48.337987"}}
+/type/author /authors/OL11058776A 1 2022-11-24T12:56:01.226471 {"type": {"key": "/type/author"}, "name": "Judy Tucker", "key": "/authors/OL11058776A", "source_records": ["bwb:9781791555139"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T12:56:01.226471"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T12:56:01.226471"}}
+/type/author /authors/OL11058817A 1 2022-11-24T12:57:07.385767 {"type": {"key": "/type/author"}, "name": "Arts & Technology Academy of Pontiac", "key": "/authors/OL11058817A", "source_records": ["bwb:9781794250048"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T12:57:07.385767"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T12:57:07.385767"}}
+/type/author /authors/OL1105901A 2 2008-08-19T14:21:27.906862 {"name": "Carlos Garci\u0301a Bauer", "personal_name": "Carlos Garci\u0301a Bauer", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T14:21:27.906862"}, "key": "/authors/OL1105901A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL11059061A 1 2022-11-24T13:05:55.244938 {"type": {"key": "/type/author"}, "name": "Christine H. Liebholz", "key": "/authors/OL11059061A", "source_records": ["bwb:9781983247880"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T13:05:55.244938"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T13:05:55.244938"}}
+/type/author /authors/OL1105954A 1 2008-04-01T03:28:50.625462 {"name": "Fundac\u0327a\u0303o Getu\u0301lio Vargas.", "last_modified": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "key": "/authors/OL1105954A", "type": {"key": "/type/author"}, "revision": 1}
+/type/author /authors/OL11060045A 1 2022-11-24T13:40:09.870618 {"type": {"key": "/type/author"}, "name": "Carlisle Driggers", "key": "/authors/OL11060045A", "source_records": ["bwb:9781686788888"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T13:40:09.870618"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T13:40:09.870618"}}
+/type/author /authors/OL1106050A 2 2008-08-19T14:22:04.708413 {"name": "Barbara L. Barros", "personal_name": "Barbara L. Barros", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T14:22:04.708413"}, "key": "/authors/OL1106050A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL11060884A 1 2022-11-24T14:18:11.904035 {"type": {"key": "/type/author"}, "name": "Frances Hodgson Frances Hodgson", "key": "/authors/OL11060884A", "source_records": ["bwb:9781099796180"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T14:18:11.904035"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T14:18:11.904035"}}
+/type/author /authors/OL11061278A 1 2022-11-24T14:31:31.448518 {"type": {"key": "/type/author"}, "name": "Evelyn SMITH", "key": "/authors/OL11061278A", "source_records": ["bwb:9781080007691"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T14:31:31.448518"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T14:31:31.448518"}}
+/type/author /authors/OL11061595A 1 2022-11-24T14:41:16.341979 {"type": {"key": "/type/author"}, "name": "Josep \u00c0ngel Colom\u00e9s i Serra", "key": "/authors/OL11061595A", "source_records": ["bwb:9781081328054"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T14:41:16.341979"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T14:41:16.341979"}}
+/type/author /authors/OL11061809A 1 2022-11-24T14:48:11.733876 {"type": {"key": "/type/author"}, "name": "Martin Schroth", "key": "/authors/OL11061809A", "source_records": ["bwb:9781796434620"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T14:48:11.733876"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T14:48:11.733876"}}
+/type/author /authors/OL11062584A 1 2022-11-24T16:06:38.526483 {"type": {"key": "/type/author"}, "name": "Carla Tracy", "key": "/authors/OL11062584A", "source_records": ["bwb:9781078141192"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T16:06:38.526483"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T16:06:38.526483"}}
+/type/author /authors/OL1106283A 2 2008-08-19T14:22:51.055814 {"name": "Alhaji M. Abdurrahman", "personal_name": "Alhaji M. Abdurrahman", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T14:22:51.055814"}, "key": "/authors/OL1106283A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL11062899A 1 2022-11-24T16:35:42.525793 {"type": {"key": "/type/author"}, "name": "Naomi Nuels", "key": "/authors/OL11062899A", "source_records": ["bwb:9781983234590"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T16:35:42.525793"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T16:35:42.525793"}}
+/type/author /authors/OL11063157A 1 2022-11-24T16:54:20.156505 {"type": {"key": "/type/author"}, "name": "Pat Burton", "key": "/authors/OL11063157A", "source_records": ["bwb:9781081926915"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T16:54:20.156505"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T16:54:20.156505"}}
+/type/author /authors/OL11063411A 1 2022-11-24T17:13:48.058444 {"type": {"key": "/type/author"}, "name": "F. S\u00e1enz de Urturi", "key": "/authors/OL11063411A", "source_records": ["bwb:9781686872815"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T17:13:48.058444"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T17:13:48.058444"}}
+/type/author /authors/OL11064059A 1 2022-11-24T17:42:31.667134 {"type": {"key": "/type/author"}, "name": "Teacher Teacher Gift", "key": "/authors/OL11064059A", "source_records": ["bwb:9781688467187"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T17:42:31.667134"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T17:42:31.667134"}}
+/type/author /authors/OL11064481A 1 2022-11-24T18:00:17.187339 {"type": {"key": "/type/author"}, "name": "Amaury Betton", "key": "/authors/OL11064481A", "source_records": ["bwb:9781796678222"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T18:00:17.187339"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T18:00:17.187339"}}
+/type/author /authors/OL11064498A 1 2022-11-24T18:00:41.873510 {"type": {"key": "/type/author"}, "name": "Janice Doherty", "key": "/authors/OL11064498A", "source_records": ["bwb:9781692100636"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T18:00:41.873510"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T18:00:41.873510"}}
+/type/author /authors/OL11064608A 1 2022-11-24T18:05:45.970885 {"type": {"key": "/type/author"}, "name": "Andrea de Milato", "key": "/authors/OL11064608A", "source_records": ["bwb:9781692493950"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T18:05:45.970885"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T18:05:45.970885"}}
+/type/author /authors/OL11064788A 1 2022-11-24T18:13:14.256461 {"type": {"key": "/type/author"}, "name": "Jessica Raouch", "key": "/authors/OL11064788A", "source_records": ["bwb:9781686019548"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T18:13:14.256461"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T18:13:14.256461"}}
+/type/author /authors/OL11064897A 1 2022-11-24T18:18:33.890549 {"type": {"key": "/type/author"}, "name": "Jennifer Tuggle", "key": "/authors/OL11064897A", "source_records": ["bwb:9781693050169"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T18:18:33.890549"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T18:18:33.890549"}}
+/type/author /authors/OL11064987A 1 2022-11-24T18:21:40.639487 {"type": {"key": "/type/author"}, "name": "Sterling Wright", "key": "/authors/OL11064987A", "source_records": ["bwb:9781694195654"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T18:21:40.639487"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T18:21:40.639487"}}
+/type/author /authors/OL1106520A 2 2008-08-19T14:23:47.794599 {"name": "Jose\u0301 Luis Chan Castan\u0303eda", "personal_name": "Jose\u0301 Luis Chan Castan\u0303eda", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T14:23:47.794599"}, "key": "/authors/OL1106520A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL11065220A 1 2022-11-24T18:30:45.316951 {"type": {"key": "/type/author"}, "name": "China Reisebuch", "key": "/authors/OL11065220A", "source_records": ["bwb:9781086532845"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T18:30:45.316951"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T18:30:45.316951"}}
+/type/author /authors/OL11065249A 1 2022-11-24T18:31:30.231180 {"type": {"key": "/type/author"}, "name": "Alexandre Simonetti", "key": "/authors/OL11065249A", "source_records": ["bwb:9781695999640"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T18:31:30.231180"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T18:31:30.231180"}}
+/type/author /authors/OL1106524A 3 2012-06-06T11:01:14.402049 {"created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "latest_revision": 3, "name": "Olof Nilson", "key": "/authors/OL1106524A", "personal_name": "Olof Nilson", "birth_date": "1824", "death_date": "1904", "type": {"key": "/type/author"}, "last_modified": {"type": "/type/datetime", "value": "2012-06-06T11:01:14.402049"}, "revision": 3}
+/type/author /authors/OL11065260A 1 2022-11-24T18:31:48.165297 {"type": {"key": "/type/author"}, "name": "Louise Vacca Dawe", "key": "/authors/OL11065260A", "source_records": ["bwb:9781798213322"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T18:31:48.165297"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T18:31:48.165297"}}
+/type/author /authors/OL1106570A 1 2008-04-01T03:28:50.625462 {"name": "Brazil. Ministe\u0301rio da Indu\u0301stria e do Come\u0301rcio.", "last_modified": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "key": "/authors/OL1106570A", "type": {"key": "/type/author"}, "revision": 1}
+/type/author /authors/OL11066032A 1 2022-11-24T19:13:30.476230 {"type": {"key": "/type/author"}, "name": "Lakiesha Foster Devero", "key": "/authors/OL11066032A", "source_records": ["bwb:9781799034919"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T19:13:30.476230"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T19:13:30.476230"}}
+/type/author /authors/OL11066168A 1 2022-11-24T19:18:20.029823 {"type": {"key": "/type/author"}, "name": "Ahmad Kenan", "key": "/authors/OL11066168A", "source_records": ["bwb:9781793182722"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T19:18:20.029823"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T19:18:20.029823"}}
+/type/author /authors/OL11066212A 1 2022-11-24T19:19:18.646608 {"type": {"key": "/type/author"}, "name": "Jugendweiher Fest", "key": "/authors/OL11066212A", "source_records": ["bwb:9781070686561"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T19:19:18.646608"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T19:19:18.646608"}}
+/type/author /authors/OL11066585A 1 2022-11-24T19:33:13.354355 {"type": {"key": "/type/author"}, "name": "Mathilde Ollier", "key": "/authors/OL11066585A", "source_records": ["bwb:9781081364618"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T19:33:13.354355"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T19:33:13.354355"}}
+/type/author /authors/OL11066663A 1 2022-11-24T19:36:02.814505 {"type": {"key": "/type/author"}, "name": "Mickey Mickey Amos", "key": "/authors/OL11066663A", "source_records": ["bwb:9781072093510"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T19:36:02.814505"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T19:36:02.814505"}}
+/type/author /authors/OL11066680A 1 2022-11-24T19:36:25.921846 {"type": {"key": "/type/author"}, "name": "Aage M\u00d8LLER", "key": "/authors/OL11066680A", "source_records": ["bwb:9781081392192"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T19:36:25.921846"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T19:36:25.921846"}}
+/type/author /authors/OL11067040A 1 2022-11-24T19:51:41.475404 {"type": {"key": "/type/author"}, "name": "monika mayasuresh", "key": "/authors/OL11067040A", "source_records": ["bwb:9781086368949"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T19:51:41.475404"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T19:51:41.475404"}}
+/type/author /authors/OL11067523A 1 2022-11-24T20:56:45.694171 {"type": {"key": "/type/author"}, "name": "Bridgett McGill", "key": "/authors/OL11067523A", "source_records": ["bwb:9781077484887"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T20:56:45.694171"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T20:56:45.694171"}}
+/type/author /authors/OL11068039A 1 2022-11-24T21:44:38.770179 {"type": {"key": "/type/author"}, "name": "Anukrit Agarwal", "key": "/authors/OL11068039A", "source_records": ["bwb:9781717805621"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T21:44:38.770179"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T21:44:38.770179"}}
+/type/author /authors/OL11068145A 1 2022-11-24T21:53:58.668970 {"type": {"key": "/type/author"}, "name": "Marcos Mingra", "key": "/authors/OL11068145A", "source_records": ["bwb:9781082052149"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T21:53:58.668970"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T21:53:58.668970"}}
+/type/author /authors/OL11068415A 1 2022-11-24T22:13:20.053725 {"type": {"key": "/type/author"}, "name": "Kent Rosenberger", "key": "/authors/OL11068415A", "source_records": ["bwb:9781791774844"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T22:13:20.053725"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T22:13:20.053725"}}
+/type/author /authors/OL11068514A 1 2022-11-24T22:17:24.458911 {"type": {"key": "/type/author"}, "name": "Nell Forman", "key": "/authors/OL11068514A", "source_records": ["bwb:9781793121721"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T22:17:24.458911"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T22:17:24.458911"}}
+/type/author /authors/OL11068925A 1 2022-11-24T22:35:38.463792 {"type": {"key": "/type/author"}, "name": "Zoe Wyatt", "key": "/authors/OL11068925A", "source_records": ["bwb:9781729162255"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T22:35:38.463792"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T22:35:38.463792"}}
+/type/author /authors/OL11069281A 1 2022-11-24T22:49:24.936451 {"type": {"key": "/type/author"}, "name": "Fitness Akademie", "key": "/authors/OL11069281A", "source_records": ["bwb:9781689587389"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T22:49:24.936451"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T22:49:24.936451"}}
+/type/author /authors/OL1107031A 2 2008-08-19T14:26:01.827313 {"name": "Ethel French Phillips", "personal_name": "Ethel French Phillips", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T14:26:01.827313"}, "key": "/authors/OL1107031A", "birth_date": "1929", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL11070609A 1 2022-11-24T23:40:42.578848 {"type": {"key": "/type/author"}, "name": "Morgana Brunner", "key": "/authors/OL11070609A", "source_records": ["bwb:9781729208410"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T23:40:42.578848"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T23:40:42.578848"}}
+/type/author /authors/OL1107062A 2 2008-08-19T14:26:07.757031 {"name": "Violet Gallagher", "personal_name": "Violet Gallagher", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T14:26:07.757031"}, "key": "/authors/OL1107062A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL11070749A 1 2022-11-24T23:46:35.069618 {"type": {"key": "/type/author"}, "name": "Acmed Von Duben Cruz", "key": "/authors/OL11070749A", "source_records": ["bwb:9781086037050"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T23:46:35.069618"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T23:46:35.069618"}}
+/type/author /authors/OL11070755A 1 2022-11-24T23:47:37.488159 {"type": {"key": "/type/author"}, "name": "Sheila Keyes Rhodes", "key": "/authors/OL11070755A", "source_records": ["bwb:9781086137897"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-24T23:47:37.488159"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-24T23:47:37.488159"}}
+/type/author /authors/OL11070848A 1 2022-11-25T00:00:35.769669 {"type": {"key": "/type/author"}, "name": "Empti Art Recipe Books", "key": "/authors/OL11070848A", "source_records": ["bwb:9781099763403"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-25T00:00:35.769669"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-25T00:00:35.769669"}}
+/type/author /authors/OL11071635A 1 2022-11-25T00:33:50.220599 {"type": {"key": "/type/author"}, "name": "Jasmin Raif", "key": "/authors/OL11071635A", "source_records": ["bwb:9781080511747"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-25T00:33:50.220599"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-25T00:33:50.220599"}}
+/type/author /authors/OL11071652A 1 2022-11-25T00:34:26.874556 {"type": {"key": "/type/author"}, "name": "Jenna Dickson", "key": "/authors/OL11071652A", "source_records": ["bwb:9781080802302"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-25T00:34:26.874556"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-25T00:34:26.874556"}}
+/type/author /authors/OL11072361A 1 2022-11-25T01:57:58.783367 {"type": {"key": "/type/author"}, "name": "Carlos Celdran", "key": "/authors/OL11072361A", "source_records": ["bwb:9781078010788"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-25T01:57:58.783367"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-25T01:57:58.783367"}}
+/type/author /authors/OL11072392A 1 2022-11-25T02:06:00.676847 {"type": {"key": "/type/author"}, "name": "Jeffrey Bowers", "key": "/authors/OL11072392A", "source_records": ["bwb:9781078445016"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-25T02:06:00.676847"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-25T02:06:00.676847"}}
+/type/author /authors/OL11072937A 1 2022-11-25T02:50:15.311897 {"type": {"key": "/type/author"}, "name": "Connor Donovan May", "key": "/authors/OL11072937A", "source_records": ["bwb:9781082389825"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-25T02:50:15.311897"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-25T02:50:15.311897"}}
+/type/author /authors/OL11072969A 1 2022-11-25T02:55:26.723303 {"type": {"key": "/type/author"}, "name": "S. Rouch", "key": "/authors/OL11072969A", "source_records": ["bwb:9781083064356"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-25T02:55:26.723303"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-25T02:55:26.723303"}}
+/type/author /authors/OL11073318A 1 2022-11-25T03:11:28.750779 {"type": {"key": "/type/author"}, "name": "Diana Bebby", "key": "/authors/OL11073318A", "source_records": ["bwb:9781731442437"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-25T03:11:28.750779"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-25T03:11:28.750779"}}
+/type/author /authors/OL11073793A 1 2022-11-25T03:32:33.614759 {"type": {"key": "/type/author"}, "name": "Shivam SINGH", "key": "/authors/OL11073793A", "source_records": ["bwb:9781798117972"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-25T03:32:33.614759"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-25T03:32:33.614759"}}
+/type/author /authors/OL11074365A 1 2022-11-25T03:55:31.746975 {"type": {"key": "/type/author"}, "name": "YOGR\u00c9S YAM\u00cdN YAM\u00cdN", "key": "/authors/OL11074365A", "source_records": ["bwb:9781719934619"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-25T03:55:31.746975"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-25T03:55:31.746975"}}
+/type/author /authors/OL11074424A 1 2022-11-25T03:58:51.491436 {"type": {"key": "/type/author"}, "name": "Lim Fook", "key": "/authors/OL11074424A", "source_records": ["bwb:9781691793037"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-25T03:58:51.491436"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-25T03:58:51.491436"}}
+/type/author /authors/OL1107487A 2 2008-08-19T14:27:23.430157 {"name": "Gebhard Blank", "personal_name": "Gebhard Blank", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T14:27:23.430157"}, "key": "/authors/OL1107487A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL11076052A 1 2022-11-25T05:13:08.765900 {"type": {"key": "/type/author"}, "name": "Hugh Wiliams", "key": "/authors/OL11076052A", "source_records": ["bwb:9781081823078"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-25T05:13:08.765900"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-25T05:13:08.765900"}}
+/type/author /authors/OL11076058A 1 2022-11-25T05:13:25.636626 {"type": {"key": "/type/author"}, "name": "Allie Doherty", "key": "/authors/OL11076058A", "source_records": ["bwb:9781073894796"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-25T05:13:25.636626"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-25T05:13:25.636626"}}
+/type/author /authors/OL11076090A 1 2022-11-25T05:15:35.366511 {"type": {"key": "/type/author"}, "name": "May-Anne Chew", "key": "/authors/OL11076090A", "source_records": ["bwb:9781083174406"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-25T05:15:35.366511"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-25T05:15:35.366511"}}
+/type/author /authors/OL11076526A 1 2022-11-25T05:32:47.666555 {"type": {"key": "/type/author"}, "name": "tim severin", "key": "/authors/OL11076526A", "source_records": ["bwb:9781092729710"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-25T05:32:47.666555"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-25T05:32:47.666555"}}
+/type/author /authors/OL11076753A 1 2022-11-25T05:55:22.733418 {"type": {"key": "/type/author"}, "name": "Cahiers D'Entraineur de Football", "key": "/authors/OL11076753A", "source_records": ["bwb:9781072131298"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-25T05:55:22.733418"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-25T05:55:22.733418"}}
+/type/author /authors/OL11077039A 1 2022-11-25T06:41:30.998009 {"type": {"key": "/type/author"}, "name": "Jewish Defense Organization Inc Jdo", "key": "/authors/OL11077039A", "source_records": ["bwb:9781077035270"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-25T06:41:30.998009"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-25T06:41:30.998009"}}
+/type/author /authors/OL11077108A 1 2022-11-25T06:55:45.895368 {"type": {"key": "/type/author"}, "name": "Francis Corey", "key": "/authors/OL11077108A", "source_records": ["bwb:9781078207157"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-25T06:55:45.895368"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-25T06:55:45.895368"}}
+/type/author /authors/OL1107730A 2 2008-08-19T14:28:16.699524 {"name": "Tord Riemann", "personal_name": "Tord Riemann", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T14:28:16.699524"}, "key": "/authors/OL1107730A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL11077606A 1 2022-11-25T07:35:10.142570 {"type": {"key": "/type/author"}, "name": "Daniel Mall", "key": "/authors/OL11077606A", "source_records": ["bwb:9781081429065"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-25T07:35:10.142570"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-25T07:35:10.142570"}}
+/type/author /authors/OL1107766A 2 2008-08-19T14:28:28.672224 {"name": "Frank Schwertfeger", "personal_name": "Frank Schwertfeger", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T14:28:28.672224"}, "key": "/authors/OL1107766A", "birth_date": "1956", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL11077676A 1 2022-11-25T07:47:37.819742 {"type": {"key": "/type/author"}, "name": "Zoe Walters", "key": "/authors/OL11077676A", "source_records": ["bwb:9781082838750"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-25T07:47:37.819742"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-25T07:47:37.819742"}}
+/type/author /authors/OL11077709A 1 2022-11-25T07:50:33.030998 {"type": {"key": "/type/author"}, "name": "Joanne Valeriani", "key": "/authors/OL11077709A", "source_records": ["bwb:9781095076552"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-25T07:50:33.030998"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-25T07:50:33.030998"}}
+/type/author /authors/OL11078081A 1 2022-11-25T08:04:23.534411 {"type": {"key": "/type/author"}, "name": "AURorA Muller", "key": "/authors/OL11078081A", "source_records": ["bwb:9781731131010"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-25T08:04:23.534411"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-25T08:04:23.534411"}}
+/type/author /authors/OL11078242A 1 2022-11-25T08:10:41.588607 {"type": {"key": "/type/author"}, "name": "Helga Veterin\u00e4rmedizin", "key": "/authors/OL11078242A", "source_records": ["bwb:9781793945860"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-25T08:10:41.588607"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-25T08:10:41.588607"}}
+/type/author /authors/OL11078330A 1 2022-11-25T08:14:46.015108 {"type": {"key": "/type/author"}, "name": "Kaiden Emerald", "key": "/authors/OL11078330A", "source_records": ["bwb:9781719969901"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-25T08:14:46.015108"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-25T08:14:46.015108"}}
+/type/author /authors/OL11078795A 1 2022-11-25T08:33:40.590238 {"type": {"key": "/type/author"}, "name": "Gnk Rrw", "key": "/authors/OL11078795A", "source_records": ["bwb:9781686581366"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-25T08:33:40.590238"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-25T08:33:40.590238"}}
+/type/author /authors/OL11078974A 1 2022-11-25T08:40:19.283125 {"type": {"key": "/type/author"}, "name": "Magdlen Gerhards", "key": "/authors/OL11078974A", "source_records": ["bwb:9781718172920"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-25T08:40:19.283125"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-25T08:40:19.283125"}}
+/type/author /authors/OL11079451A 1 2022-11-25T08:57:49.512271 {"type": {"key": "/type/author"}, "name": "Ball Bags", "key": "/authors/OL11079451A", "source_records": ["bwb:9781696317320"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-25T08:57:49.512271"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-25T08:57:49.512271"}}
+/type/author /authors/OL11079536A 1 2022-11-25T09:01:12.028514 {"type": {"key": "/type/author"}, "name": "Freedom Gowon", "key": "/authors/OL11079536A", "source_records": ["bwb:9781092471459"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-25T09:01:12.028514"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-25T09:01:12.028514"}}
+/type/author /authors/OL11079874A 1 2022-11-25T09:12:21.113482 {"type": {"key": "/type/author"}, "name": "Nicolaus Josika", "key": "/authors/OL11079874A", "source_records": ["bwb:9781089747680"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-25T09:12:21.113482"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-25T09:12:21.113482"}}
+/type/author /authors/OL11080172A 1 2022-11-25T09:30:44.843828 {"type": {"key": "/type/author"}, "name": "F. Garlaschelli", "key": "/authors/OL11080172A", "source_records": ["amazon:8851142351"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-25T09:30:44.843828"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-25T09:30:44.843828"}}
+/type/author /authors/OL11080469A 1 2022-11-25T09:46:07.223166 {"type": {"key": "/type/author"}, "name": "Sophie Kr\u00e4mer", "key": "/authors/OL11080469A", "source_records": ["bwb:9781099779428"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-25T09:46:07.223166"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-25T09:46:07.223166"}}
+/type/author /authors/OL11080471A 1 2022-11-25T09:46:11.553717 {"type": {"key": "/type/author"}, "name": "Maria Fish", "key": "/authors/OL11080471A", "source_records": ["bwb:9781075829475"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-25T09:46:11.553717"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-25T09:46:11.553717"}}
+/type/author /authors/OL11080934A 1 2022-11-25T10:01:36.203800 {"type": {"key": "/type/author"}, "name": "Justin Honer", "key": "/authors/OL11080934A", "source_records": ["bwb:9781077415546"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-25T10:01:36.203800"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-25T10:01:36.203800"}}
+/type/author /authors/OL11081643A 1 2022-11-25T11:14:41.426304 {"type": {"key": "/type/author"}, "name": "Pmp Emmanuel Dorleku", "key": "/authors/OL11081643A", "source_records": ["bwb:9781077619951"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-25T11:14:41.426304"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-25T11:14:41.426304"}}
+/type/author /authors/OL11081721A 1 2022-11-25T11:30:58.535242 {"type": {"key": "/type/author"}, "name": "Hangout Camp Press", "key": "/authors/OL11081721A", "source_records": ["bwb:9781079196924"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-25T11:30:58.535242"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-25T11:30:58.535242"}}
+/type/author /authors/OL11081853A 1 2022-11-25T11:43:56.306084 {"type": {"key": "/type/author"}, "name": "Christian Church in the Wildwood", "key": "/authors/OL11081853A", "source_records": ["bwb:9781730710070"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-25T11:43:56.306084"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-25T11:43:56.306084"}}
+/type/author /authors/OL11081917A 1 2022-11-25T11:46:40.785898 {"type": {"key": "/type/author"}, "name": "Kambodscha Reisebuch", "key": "/authors/OL11081917A", "source_records": ["bwb:9781086530162"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-25T11:46:40.785898"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-25T11:46:40.785898"}}
+/type/author /authors/OL11081939A 1 2022-11-25T11:48:05.991731 {"type": {"key": "/type/author"}, "name": "T. O. T. Publishing", "key": "/authors/OL11081939A", "source_records": ["bwb:9781731208910"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-25T11:48:05.991731"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-25T11:48:05.991731"}}
+/type/author /authors/OL1108213A 2 2008-08-19T14:29:43.722182 {"name": "Luis Dorantes Tamayo", "personal_name": "Luis Dorantes Tamayo", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T14:29:43.722182"}, "key": "/authors/OL1108213A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL11082241A 1 2022-11-25T12:17:02.395667 {"type": {"key": "/type/author"}, "name": "Eva Romero", "key": "/authors/OL11082241A", "source_records": ["bwb:9781082841521"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-25T12:17:02.395667"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-25T12:17:02.395667"}}
+/type/author /authors/OL11083366A 1 2022-11-25T13:05:24.153324 {"type": {"key": "/type/author"}, "name": "SJ Kincaid", "key": "/authors/OL11083366A", "source_records": ["amazon:2747067513"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-25T13:05:24.153324"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-25T13:05:24.153324"}}
+/type/author /authors/OL11083553A 1 2022-11-25T13:12:24.834601 {"type": {"key": "/type/author"}, "name": "Alan Derulo", "key": "/authors/OL11083553A", "source_records": ["bwb:9781691057382"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-25T13:12:24.834601"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-25T13:12:24.834601"}}
+/type/author /authors/OL11083890A 1 2022-11-25T13:25:41.041428 {"type": {"key": "/type/author"}, "name": "Florian H\u00f6ltgen", "key": "/authors/OL11083890A", "source_records": ["bwb:9781092752657"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-25T13:25:41.041428"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-25T13:25:41.041428"}}
+/type/author /authors/OL11085044A 1 2022-11-25T14:29:25.987900 {"type": {"key": "/type/author"}, "name": "Account Book Column Book", "key": "/authors/OL11085044A", "source_records": ["bwb:9781089263814"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-25T14:29:25.987900"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-25T14:29:25.987900"}}
+/type/author /authors/OL11085182A 1 2022-11-25T14:35:28.300073 {"type": {"key": "/type/author"}, "name": "raja sekar", "key": "/authors/OL11085182A", "source_records": ["bwb:9781983103308"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-25T14:35:28.300073"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-25T14:35:28.300073"}}
+/type/author /authors/OL1108550A 2 2008-08-19T14:31:09.487546 {"name": "Eduard Mu\u0308ller", "personal_name": "Eduard Mu\u0308ller", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T14:31:09.487546"}, "key": "/authors/OL1108550A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL11085539A 1 2022-11-25T14:54:53.565283 {"type": {"key": "/type/author"}, "name": "Vf Lord", "key": "/authors/OL11085539A", "source_records": ["bwb:9781687126962"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-25T14:54:53.565283"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-25T14:54:53.565283"}}
+/type/author /authors/OL11085598A 1 2022-11-25T14:58:06.892728 {"type": {"key": "/type/author"}, "name": "Amsterdam Publicacion", "key": "/authors/OL11085598A", "source_records": ["bwb:9781687496867"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-25T14:58:06.892728"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-25T14:58:06.892728"}}
+/type/author /authors/OL11085777A 1 2022-11-25T15:07:43.296069 {"type": {"key": "/type/author"}, "name": "Cristiana Vidal Accioly", "key": "/authors/OL11085777A", "source_records": ["bwb:9781973235866"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-25T15:07:43.296069"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-25T15:07:43.296069"}}
+/type/author /authors/OL11086119A 1 2022-11-25T15:21:14.858826 {"type": {"key": "/type/author"}, "name": "Asante Shabazz", "key": "/authors/OL11086119A", "source_records": ["bwb:9781701610446"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-25T15:21:14.858826"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-25T15:21:14.858826"}}
+/type/author /authors/OL11086273A 1 2022-11-25T15:26:12.074597 {"type": {"key": "/type/author"}, "name": "Cutie Pie Cutie Pie Press", "key": "/authors/OL11086273A", "source_records": ["bwb:9781088711316"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-25T15:26:12.074597"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-25T15:26:12.074597"}}
+/type/author /authors/OL11087218A 1 2022-11-25T16:01:34.609158 {"type": {"key": "/type/author"}, "name": "Jose Luis Vias Garcia", "key": "/authors/OL11087218A", "source_records": ["bwb:9781689144308"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-25T16:01:34.609158"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-25T16:01:34.609158"}}
+/type/author /authors/OL11087690A 1 2022-11-25T16:32:27.431439 {"type": {"key": "/type/author"}, "name": "Vortex K. Publishing", "key": "/authors/OL11087690A", "source_records": ["bwb:9781692964085"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-25T16:32:27.431439"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-25T16:32:27.431439"}}
+/type/author /authors/OL11088287A 1 2022-11-25T17:08:48.296654 {"type": {"key": "/type/author"}, "name": "Kenny Snyder", "key": "/authors/OL11088287A", "source_records": ["bwb:9781688449954"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-25T17:08:48.296654"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-25T17:08:48.296654"}}
+/type/author /authors/OL11088300A 1 2022-11-25T17:08:59.370988 {"type": {"key": "/type/author"}, "name": "Justice Lee", "key": "/authors/OL11088300A", "source_records": ["bwb:9781706808299"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-25T17:08:59.370988"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-25T17:08:59.370988"}}
+/type/author /authors/OL11088370A 1 2022-11-25T17:12:58.726439 {"type": {"key": "/type/author"}, "name": "Gerrie Beebe", "key": "/authors/OL11088370A", "source_records": ["bwb:9781980851745"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-25T17:12:58.726439"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-25T17:12:58.726439"}}
+/type/author /authors/OL1108852A 2 2008-08-19T14:31:54.00715 {"name": "Dietmar Felden", "personal_name": "Dietmar Felden", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T14:31:54.00715"}, "key": "/authors/OL1108852A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL11088586A 1 2022-11-25T17:22:19.056973 {"type": {"key": "/type/author"}, "name": "Patty Jane Patty Jane Press", "key": "/authors/OL11088586A", "source_records": ["bwb:9781703783490"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-25T17:22:19.056973"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-25T17:22:19.056973"}}
+/type/author /authors/OL11088820A 1 2022-11-25T17:38:23.371243 {"type": {"key": "/type/author"}, "name": "Lisa Phifer M a", "key": "/authors/OL11088820A", "source_records": ["bwb:9781699426951"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-25T17:38:23.371243"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-25T17:38:23.371243"}}
+/type/author /authors/OL11089428A 1 2022-11-25T18:11:22.267074 {"type": {"key": "/type/author"}, "name": "Sol\u00e8ne Bauch\u00e9", "key": "/authors/OL11089428A", "source_records": ["bwb:9781700048981"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-25T18:11:22.267074"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-25T18:11:22.267074"}}
+/type/author /authors/OL11089599A 1 2022-11-25T18:17:42.384389 {"type": {"key": "/type/author"}, "name": "Jolly Jolly Press", "key": "/authors/OL11089599A", "source_records": ["bwb:9781713117346"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-25T18:17:42.384389"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-25T18:17:42.384389"}}
+/type/author /authors/OL11089777A 1 2022-11-25T18:27:35.465637 {"type": {"key": "/type/author"}, "name": "Anthony Matturro", "key": "/authors/OL11089777A", "source_records": ["bwb:9781087283753"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-25T18:27:35.465637"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-25T18:27:35.465637"}}
+/type/author /authors/OL11089867A 1 2022-11-25T18:35:27.825677 {"type": {"key": "/type/author"}, "name": "Rita Dorn", "key": "/authors/OL11089867A", "source_records": ["bwb:9781072562030"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-25T18:35:27.825677"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-25T18:35:27.825677"}}
+/type/author /authors/OL11090004A 1 2022-11-25T18:44:20.823415 {"type": {"key": "/type/author"}, "name": "Bonner Boyle", "key": "/authors/OL11090004A", "source_records": ["bwb:9781090719430"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-25T18:44:20.823415"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-25T18:44:20.823415"}}
+/type/author /authors/OL11090052A 1 2022-11-25T18:46:03.742616 {"type": {"key": "/type/author"}, "name": "Tatiana Romanwoa", "key": "/authors/OL11090052A", "source_records": ["bwb:9781699488140"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-25T18:46:03.742616"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-25T18:46:03.742616"}}
+/type/author /authors/OL11090155A 1 2022-11-25T18:51:55.062086 {"type": {"key": "/type/author"}, "name": "Eliza K.", "key": "/authors/OL11090155A", "source_records": ["bwb:9781694744715"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-25T18:51:55.062086"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-25T18:51:55.062086"}}
+/type/author /authors/OL11090199A 1 2022-11-25T18:54:14.167921 {"type": {"key": "/type/author"}, "name": "Kim Michael", "key": "/authors/OL11090199A", "source_records": ["bwb:9781089644514"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-25T18:54:14.167921"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-25T18:54:14.167921"}}
+/type/author /authors/OL11090512A 1 2022-11-25T19:16:17.516374 {"type": {"key": "/type/author"}, "name": "Republica Dominicana Publicacion", "key": "/authors/OL11090512A", "source_records": ["bwb:9781687868695"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-25T19:16:17.516374"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-25T19:16:17.516374"}}
+/type/author /authors/OL1109070A 2 2008-08-19T14:32:43.76862 {"name": "M. J. Miller", "personal_name": "M. J. Miller", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T14:32:43.76862"}, "key": "/authors/OL1109070A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL11091082A 1 2022-11-25T19:41:23.537219 {"type": {"key": "/type/author"}, "name": "Bradley Poole", "key": "/authors/OL11091082A", "source_records": ["bwb:9781082224997"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-25T19:41:23.537219"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-25T19:41:23.537219"}}
+/type/author /authors/OL11091172A 1 2022-11-25T19:45:03.790937 {"type": {"key": "/type/author"}, "name": "Lucia Meloni Cinelli", "key": "/authors/OL11091172A", "source_records": ["bwb:9781791812171"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-25T19:45:03.790937"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-25T19:45:03.790937"}}
+/type/author /authors/OL11091314A 1 2022-11-25T19:49:13.686565 {"type": {"key": "/type/author"}, "name": "Brianna Sabrina", "key": "/authors/OL11091314A", "source_records": ["bwb:9781720076766"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-25T19:49:13.686565"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-25T19:49:13.686565"}}
+/type/author /authors/OL11091415A 1 2022-11-25T19:52:02.195959 {"type": {"key": "/type/author"}, "name": "Margret Siefer", "key": "/authors/OL11091415A", "source_records": ["bwb:9781703887372"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-25T19:52:02.195959"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-25T19:52:02.195959"}}
+/type/author /authors/OL11091746A 1 2022-11-25T20:03:32.111903 {"type": {"key": "/type/author"}, "name": "Ra Moses Ravenwolf Rmr", "key": "/authors/OL11091746A", "source_records": ["bwb:9781687454164"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-25T20:03:32.111903"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-25T20:03:32.111903"}}
+/type/author /authors/OL11091926A 1 2022-11-25T20:17:40.735446 {"type": {"key": "/type/author"}, "name": "A. Dog", "key": "/authors/OL11091926A", "source_records": ["bwb:9781689538961"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-25T20:17:40.735446"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-25T20:17:40.735446"}}
+/type/author /authors/OL11092000A 1 2022-11-25T20:26:26.430660 {"type": {"key": "/type/author"}, "name": "Daniel Benjamin Moscoso Gutierrez", "key": "/authors/OL11092000A", "source_records": ["bwb:9781690803782"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-25T20:26:26.430660"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-25T20:26:26.430660"}}
+/type/author /authors/OL1109265A 2 2008-08-19T14:33:26.066428 {"name": "John S. Cotton", "personal_name": "John S. Cotton", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T14:33:26.066428"}, "key": "/authors/OL1109265A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL11092951A 1 2022-11-25T21:32:19.442346 {"type": {"key": "/type/author"}, "name": "Homero \u00c9gida", "key": "/authors/OL11092951A", "source_records": ["bwb:9781706766445"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-25T21:32:19.442346"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-25T21:32:19.442346"}}
+/type/author /authors/OL11093286A 1 2022-11-25T22:01:03.674121 {"type": {"key": "/type/author"}, "name": "Jared Carter", "key": "/authors/OL11093286A", "source_records": ["bwb:9781701333482"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-25T22:01:03.674121"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-25T22:01:03.674121"}}
+/type/author /authors/OL11093734A 1 2022-11-25T22:25:55.396094 {"type": {"key": "/type/author"}, "name": "Art Therapy Art Therapy Press", "key": "/authors/OL11093734A", "source_records": ["bwb:9781711998817"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-25T22:25:55.396094"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-25T22:25:55.396094"}}
+/type/author /authors/OL11093780A 1 2022-11-25T22:27:11.101419 {"type": {"key": "/type/author"}, "name": "Joy Kids", "key": "/authors/OL11093780A", "source_records": ["bwb:9781712737712"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-25T22:27:11.101419"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-25T22:27:11.101419"}}
+/type/author /authors/OL11094058A 1 2022-11-25T22:46:09.108586 {"type": {"key": "/type/author"}, "name": "State of State of Connecticut Department of Motor Vehicles", "key": "/authors/OL11094058A", "source_records": ["bwb:9781086059830"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-25T22:46:09.108586"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-25T22:46:09.108586"}}
+/type/author /authors/OL11094210A 1 2022-11-25T22:55:06.167281 {"type": {"key": "/type/author"}, "name": "Petra Massey", "key": "/authors/OL11094210A", "source_records": ["bwb:9781790311101"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-25T22:55:06.167281"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-25T22:55:06.167281"}}
+/type/author /authors/OL11094216A 1 2022-11-25T22:55:36.004476 {"type": {"key": "/type/author"}, "name": "U. S. - China Economic Review Commission", "key": "/authors/OL11094216A", "source_records": ["bwb:9781089589464"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-25T22:55:36.004476"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-25T22:55:36.004476"}}
+/type/author /authors/OL11094230A 1 2022-11-25T22:56:13.593628 {"type": {"key": "/type/author"}, "name": "Connie Glass-Enczmann", "key": "/authors/OL11094230A", "source_records": ["bwb:9781698059433"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-25T22:56:13.593628"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-25T22:56:13.593628"}}
+/type/author /authors/OL11094681A 1 2022-11-25T23:30:59.194174 {"type": {"key": "/type/author"}, "name": "Alessia Biancini", "key": "/authors/OL11094681A", "source_records": ["bwb:9781701145696"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-25T23:30:59.194174"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-25T23:30:59.194174"}}
+/type/author /authors/OL11094687A 1 2022-11-25T23:31:07.922698 {"type": {"key": "/type/author"}, "name": "Sheryl Tate", "key": "/authors/OL11094687A", "source_records": ["bwb:9781695032262"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-25T23:31:07.922698"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-25T23:31:07.922698"}}
+/type/author /authors/OL11095120A 1 2022-11-25T23:45:35.697555 {"type": {"key": "/type/author"}, "name": "Ormezinda Ribeiro", "key": "/authors/OL11095120A", "source_records": ["bwb:9781688740259"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-25T23:45:35.697555"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-25T23:45:35.697555"}}
+/type/author /authors/OL11095376A 1 2022-11-25T23:55:02.096201 {"type": {"key": "/type/author"}, "name": "C. Wiersum", "key": "/authors/OL11095376A", "source_records": ["bwb:9781704398624"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-25T23:55:02.096201"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-25T23:55:02.096201"}}
+/type/author /authors/OL11095903A 1 2022-11-26T00:30:50.341156 {"type": {"key": "/type/author"}, "name": "Brittany Moore", "key": "/authors/OL11095903A", "source_records": ["bwb:9781691116607"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-26T00:30:50.341156"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-26T00:30:50.341156"}}
+/type/author /authors/OL11095957A 1 2022-11-26T00:36:19.277129 {"type": {"key": "/type/author"}, "name": "Emma G. Brown", "key": "/authors/OL11095957A", "source_records": ["bwb:9781691716555"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-26T00:36:19.277129"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-26T00:36:19.277129"}}
+/type/author /authors/OL11096007A 1 2022-11-26T00:40:02.319158 {"type": {"key": "/type/author"}, "name": "John D. Hart", "key": "/authors/OL11096007A", "source_records": ["bwb:9781692250867"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-26T00:40:02.319158"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-26T00:40:02.319158"}}
+/type/author /authors/OL1109668A 2 2008-08-19T14:35:04.372939 {"name": "Paul Mo\u0308rn", "personal_name": "Paul Mo\u0308rn", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T14:35:04.372939"}, "key": "/authors/OL1109668A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL11096775A 1 2022-11-26T01:32:49.208305 {"type": {"key": "/type/author"}, "name": "Sara Alexis Armistead", "key": "/authors/OL11096775A", "source_records": ["bwb:9781697828597"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-26T01:32:49.208305"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-26T01:32:49.208305"}}
+/type/author /authors/OL11096834A 1 2022-11-26T01:39:48.659685 {"type": {"key": "/type/author"}, "name": "Vernita L. Council-Howard", "key": "/authors/OL11096834A", "source_records": ["bwb:9781698682938"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-26T01:39:48.659685"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-26T01:39:48.659685"}}
+/type/author /authors/OL1109688A 2 2008-08-19T14:35:11.268587 {"name": "A. G. Course", "personal_name": "A. G. Course", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T14:35:11.268587"}, "key": "/authors/OL1109688A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL11096925A 1 2022-11-26T01:47:49.256371 {"type": {"key": "/type/author"}, "name": "Bielorussia Pubblicazione", "key": "/authors/OL11096925A", "source_records": ["bwb:9781699814734"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-26T01:47:49.256371"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-26T01:47:49.256371"}}
+/type/author /authors/OL11096983A 1 2022-11-26T01:52:39.514104 {"type": {"key": "/type/author"}, "name": "Omi Geschenk Print", "key": "/authors/OL11096983A", "source_records": ["bwb:9781700499486"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-26T01:52:39.514104"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-26T01:52:39.514104"}}
+/type/author /authors/OL11097160A 1 2022-11-26T02:11:25.053925 {"type": {"key": "/type/author"}, "name": "Dorris Ames", "key": "/authors/OL11097160A", "source_records": ["bwb:9781710273205"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-26T02:11:25.053925"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-26T02:11:25.053925"}}
+/type/author /authors/OL11097325A 1 2022-11-26T02:17:12.522774 {"type": {"key": "/type/author"}, "name": "Lovelt Sudoku Publishing", "key": "/authors/OL11097325A", "source_records": ["bwb:9781699097175"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-26T02:17:12.522774"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-26T02:17:12.522774"}}
+/type/author /authors/OL11097338A 1 2022-11-26T02:18:19.956818 {"type": {"key": "/type/author"}, "name": "Jos\u00e9 Manuel Cruz", "key": "/authors/OL11097338A", "source_records": ["bwb:9781790207589"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-26T02:18:19.956818"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-26T02:18:19.956818"}}
+/type/author /authors/OL11097443A 1 2022-11-26T02:21:02.373175 {"type": {"key": "/type/author"}, "name": "Sara Bulla", "key": "/authors/OL11097443A", "source_records": ["bwb:9781703964608"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-26T02:21:02.373175"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-26T02:21:02.373175"}}
+/type/author /authors/OL11097546A 1 2022-11-26T02:23:33.589279 {"type": {"key": "/type/author"}, "name": "Troy Cady", "key": "/authors/OL11097546A", "source_records": ["bwb:9781704773414"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-26T02:23:33.589279"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-26T02:23:33.589279"}}
+/type/author /authors/OL11097927A 1 2022-11-26T02:48:57.361367 {"type": {"key": "/type/author"}, "name": "Alice Tong", "key": "/authors/OL11097927A", "source_records": ["bwb:9781696156936"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-26T02:48:57.361367"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-26T02:48:57.361367"}}
+/type/author /authors/OL11097976A 1 2022-11-26T02:51:30.147605 {"type": {"key": "/type/author"}, "name": "Dylan Cameron", "key": "/authors/OL11097976A", "source_records": ["bwb:9781686024900"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-26T02:51:30.147605"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-26T02:51:30.147605"}}
+/type/author /authors/OL11098083A 1 2022-11-26T02:56:16.737735 {"type": {"key": "/type/author"}, "name": "Lisa D. Caldwell", "key": "/authors/OL11098083A", "source_records": ["bwb:9781095572269"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-26T02:56:16.737735"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-26T02:56:16.737735"}}
+/type/author /authors/OL11098286A 1 2022-11-26T03:15:41.664628 {"type": {"key": "/type/author"}, "name": "Gerard Stoimenov", "key": "/authors/OL11098286A", "source_records": ["bwb:9781687893642"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-26T03:15:41.664628"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-26T03:15:41.664628"}}
+/type/author /authors/OL11098394A 1 2022-11-26T03:24:40.715406 {"type": {"key": "/type/author"}, "name": "Dan Roz", "key": "/authors/OL11098394A", "source_records": ["bwb:9781700166050"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-26T03:24:40.715406"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-26T03:24:40.715406"}}
+/type/author /authors/OL1109983A 2 2008-08-19T14:36:30.39337 {"name": "Catherine J. Whitaker", "personal_name": "Catherine J. Whitaker", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T14:36:30.39337"}, "key": "/authors/OL1109983A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL11100059A 1 2022-11-26T05:08:28.065559 {"type": {"key": "/type/author"}, "name": "Leandro Rolim", "key": "/authors/OL11100059A", "source_records": ["bwb:9781705902202"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-26T05:08:28.065559"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-26T05:08:28.065559"}}
+/type/author /authors/OL11100483A 1 2022-11-26T05:38:14.770911 {"type": {"key": "/type/author"}, "name": "Adventur Kids Coloring & Activity Books", "key": "/authors/OL11100483A", "source_records": ["bwb:9781699232248"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-26T05:38:14.770911"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-26T05:38:14.770911"}}
+/type/author /authors/OL11100617A 1 2022-11-26T05:48:45.751396 {"type": {"key": "/type/author"}, "name": "Bored But Bright", "key": "/authors/OL11100617A", "source_records": ["bwb:9781700988072"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-26T05:48:45.751396"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-26T05:48:45.751396"}}
+/type/author /authors/OL11100758A 1 2022-11-26T06:04:49.573612 {"type": {"key": "/type/author"}, "name": "Filomena Galoppo", "key": "/authors/OL11100758A", "source_records": ["bwb:9781701121225"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-26T06:04:49.573612"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-26T06:04:49.573612"}}
+/type/author /authors/OL11101283A 1 2022-11-26T06:32:46.580964 {"type": {"key": "/type/author"}, "name": "philip challis", "key": "/authors/OL11101283A", "source_records": ["bwb:9781688852655"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-26T06:32:46.580964"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-26T06:32:46.580964"}}
+/type/author /authors/OL11101516A 1 2022-11-26T06:47:27.414526 {"type": {"key": "/type/author"}, "name": "Bradley Norman", "key": "/authors/OL11101516A", "source_records": ["bwb:9781698200897"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-26T06:47:27.414526"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-26T06:47:27.414526"}}
+/type/author /authors/OL11101682A 1 2022-11-26T07:01:05.932051 {"type": {"key": "/type/author"}, "name": "Bryan Wings", "key": "/authors/OL11101682A", "source_records": ["bwb:9781686740770"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-26T07:01:05.932051"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-26T07:01:05.932051"}}
+/type/author /authors/OL11101737A 1 2022-11-26T07:07:46.730235 {"type": {"key": "/type/author"}, "name": "Berlina Publicacion", "key": "/authors/OL11101737A", "source_records": ["bwb:9781687491015"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-26T07:07:46.730235"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-26T07:07:46.730235"}}
+/type/author /authors/OL11102082A 1 2022-11-26T07:29:14.314777 {"type": {"key": "/type/author"}, "name": "Ayanna Bright Eagle Florian", "key": "/authors/OL11102082A", "source_records": ["bwb:9781698965468"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-26T07:29:14.314777"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-26T07:29:14.314777"}}
+/type/author /authors/OL11102107A 1 2022-11-26T07:29:58.585787 {"type": {"key": "/type/author"}, "name": "Camilo Aguedelo", "key": "/authors/OL11102107A", "source_records": ["bwb:9781700449740"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-26T07:29:58.585787"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-26T07:29:58.585787"}}
+/type/author /authors/OL11103235A 1 2022-11-26T08:36:24.732777 {"type": {"key": "/type/author"}, "name": "Kimberly Cregan", "key": "/authors/OL11103235A", "source_records": ["bwb:9781692816438"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-26T08:36:24.732777"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-26T08:36:24.732777"}}
+/type/author /authors/OL11103515A 1 2022-11-26T09:06:25.300113 {"type": {"key": "/type/author"}, "name": "Michael PETERS", "key": "/authors/OL11103515A", "source_records": ["bwb:9781706415695"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-26T09:06:25.300113"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-26T09:06:25.300113"}}
+/type/author /authors/OL11104160A 1 2022-11-26T10:03:34.995526 {"type": {"key": "/type/author"}, "name": "Rohit Pandit", "key": "/authors/OL11104160A", "source_records": ["bwb:9781796847161"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-26T10:03:34.995526"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-26T10:03:34.995526"}}
+/type/author /authors/OL11104189A 1 2022-11-26T10:04:33.933467 {"type": {"key": "/type/author"}, "name": "AnnieP Kalender", "key": "/authors/OL11104189A", "source_records": ["bwb:9781691043859"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-26T10:04:33.933467"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-26T10:04:33.933467"}}
+/type/author /authors/OL11104383A 1 2022-11-26T10:11:58.698950 {"type": {"key": "/type/author"}, "name": "stefano picarelli", "key": "/authors/OL11104383A", "source_records": ["bwb:9781093199055"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-26T10:11:58.698950"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-26T10:11:58.698950"}}
+/type/author /authors/OL11104394A 1 2022-11-26T10:12:16.313796 {"type": {"key": "/type/author"}, "name": "Kreative K\u00f6pfe", "key": "/authors/OL11104394A", "source_records": ["bwb:9781688224568"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-26T10:12:16.313796"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-26T10:12:16.313796"}}
+/type/author /authors/OL11104463A 1 2022-11-26T10:14:08.871988 {"type": {"key": "/type/author"}, "name": "Carmen Aponte - Rodr\u00edguez", "key": "/authors/OL11104463A", "source_records": ["bwb:9781724114419"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-26T10:14:08.871988"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-26T10:14:08.871988"}}
+/type/author /authors/OL11104791A 1 2022-11-26T10:34:38.805083 {"type": {"key": "/type/author"}, "name": "Dale Waller", "key": "/authors/OL11104791A", "source_records": ["bwb:9781730708169"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-26T10:34:38.805083"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-26T10:34:38.805083"}}
+/type/author /authors/OL11104941A 1 2022-11-26T10:43:36.855780 {"type": {"key": "/type/author"}, "name": "Angelique Blake", "key": "/authors/OL11104941A", "source_records": ["bwb:9781691528950"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-26T10:43:36.855780"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-26T10:43:36.855780"}}
+/type/author /authors/OL11105097A 1 2022-11-26T10:55:43.950949 {"type": {"key": "/type/author"}, "name": "Stuart J. McNaught", "key": "/authors/OL11105097A", "source_records": ["bwb:9781686490453"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-26T10:55:43.950949"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-26T10:55:43.950949"}}
+/type/author /authors/OL11105148A 1 2022-11-26T10:58:53.485205 {"type": {"key": "/type/author"}, "name": "Tish King", "key": "/authors/OL11105148A", "source_records": ["bwb:9781686888168"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-26T10:58:53.485205"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-26T10:58:53.485205"}}
+/type/author /authors/OL11105491A 1 2022-11-26T11:24:48.878030 {"type": {"key": "/type/author"}, "name": "Scott Cuyler", "key": "/authors/OL11105491A", "source_records": ["bwb:9781797676326"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-26T11:24:48.878030"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-26T11:24:48.878030"}}
+/type/author /authors/OL11106458A 1 2022-11-26T12:08:33.490415 {"type": {"key": "/type/author"}, "name": "Udomkhen Lueangwitchacharoen", "key": "/authors/OL11106458A", "source_records": ["bwb:9781689317092"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-26T12:08:33.490415"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-26T12:08:33.490415"}}
+/type/author /authors/OL11106878A 1 2022-11-26T13:00:37.364483 {"type": {"key": "/type/author"}, "name": "Johnny Bullard", "key": "/authors/OL11106878A", "source_records": ["bwb:9781695645523"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-26T13:00:37.364483"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-26T13:00:37.364483"}}
+/type/author /authors/OL11107460A 1 2022-11-26T13:41:35.327161 {"type": {"key": "/type/author"}, "name": "Sweende Press", "key": "/authors/OL11107460A", "source_records": ["bwb:9781699437698"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-26T13:41:35.327161"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-26T13:41:35.327161"}}
+/type/author /authors/OL11107617A 1 2022-11-26T14:02:43.411901 {"type": {"key": "/type/author"}, "name": "Ruby Lane", "key": "/authors/OL11107617A", "source_records": ["bwb:9781702297899"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-26T14:02:43.411901"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-26T14:02:43.411901"}}
+/type/author /authors/OL11107738A 1 2022-11-26T14:10:45.183442 {"type": {"key": "/type/author"}, "name": "Rene' Leister With Edgar Allan Poe", "key": "/authors/OL11107738A", "source_records": ["bwb:9781710991291"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-26T14:10:45.183442"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-26T14:10:45.183442"}}
+/type/author /authors/OL11107987A 1 2022-11-26T14:20:19.782909 {"type": {"key": "/type/author"}, "name": "Cindy Lou Barlow", "key": "/authors/OL11107987A", "source_records": ["bwb:9781711035673"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-26T14:20:19.782909"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-26T14:20:19.782909"}}
+/type/author /authors/OL11108122A 1 2022-11-26T14:32:27.244513 {"type": {"key": "/type/author"}, "name": "Keto Diet Printing Nw", "key": "/authors/OL11108122A", "source_records": ["bwb:9781088824931"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-26T14:32:27.244513"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-26T14:32:27.244513"}}
+/type/author /authors/OL11108258A 1 2022-11-26T14:42:09.749786 {"type": {"key": "/type/author"}, "name": "Juan Diego Alvarez", "key": "/authors/OL11108258A", "source_records": ["bwb:9781695679559"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-26T14:42:09.749786"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-26T14:42:09.749786"}}
+/type/author /authors/OL11108284A 1 2022-11-26T14:44:15.420089 {"type": {"key": "/type/author"}, "name": "Raquel Guely", "key": "/authors/OL11108284A", "source_records": ["bwb:9781982945411"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-26T14:44:15.420089"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-26T14:44:15.420089"}}
+/type/author /authors/OL11108294A 1 2022-11-26T14:44:42.617163 {"type": {"key": "/type/author"}, "name": "Fiona Caulker", "key": "/authors/OL11108294A", "source_records": ["bwb:9781790977307"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-26T14:44:42.617163"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-26T14:44:42.617163"}}
+/type/author /authors/OL1110837A 1 2008-04-01T03:28:50.625462 {"name": "New Jersey. Legislature. General Assembly. Select Committee on Solid Waste Disposal.", "last_modified": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "key": "/authors/OL1110837A", "type": {"key": "/type/author"}, "revision": 1}
+/type/author /authors/OL1110851A 1 2008-04-01T03:28:50.625462 {"name": "Texas. Legislature. Senate. Office of the Secretary.", "last_modified": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "key": "/authors/OL1110851A", "type": {"key": "/type/author"}, "revision": 1}
+/type/author /authors/OL11108861A 1 2022-11-26T15:32:25.722685 {"type": {"key": "/type/author"}, "name": "JeanP Ash", "key": "/authors/OL11108861A", "source_records": ["bwb:9781700453730"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-26T15:32:25.722685"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-26T15:32:25.722685"}}
+/type/author /authors/OL11109016A 1 2022-11-26T15:38:03.873484 {"type": {"key": "/type/author"}, "name": "T2 Halloween Publication Co", "key": "/authors/OL11109016A", "source_records": ["bwb:9781087465647"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-26T15:38:03.873484"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-26T15:38:03.873484"}}
+/type/author /authors/OL11109539A 1 2022-11-26T15:57:57.204051 {"type": {"key": "/type/author"}, "name": "Oskar Richter", "key": "/authors/OL11109539A", "source_records": ["bwb:9781699259399"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-26T15:57:57.204051"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-26T15:57:57.204051"}}
+/type/author /authors/OL1110957A 2 2008-08-19T14:38:51.672735 {"name": "Kent Ruth", "personal_name": "Kent Ruth", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T14:38:51.672735"}, "key": "/authors/OL1110957A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL11109760A 1 2022-11-26T16:07:19.902620 {"type": {"key": "/type/author"}, "name": "Asp Frtman", "key": "/authors/OL11109760A", "source_records": ["bwb:9781688715677"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-26T16:07:19.902620"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-26T16:07:19.902620"}}
+/type/author /authors/OL1110984A 1 2008-04-01T03:28:50.625462 {"name": "Mizuno, Ko\u0304gen", "personal_name": "Mizuno, Ko\u0304gen", "last_modified": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "key": "/authors/OL1110984A", "birth_date": "1901", "type": {"key": "/type/author"}, "revision": 1}
+/type/author /authors/OL11109889A 1 2022-11-26T16:27:31.988381 {"type": {"key": "/type/author"}, "name": "Sussie Jordan", "key": "/authors/OL11109889A", "source_records": ["bwb:9781690812975"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-26T16:27:31.988381"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-26T16:27:31.988381"}}
+/type/author /authors/OL111098A 2 2008-09-09T05:11:18.438975 {"name": "Apurba Chandra Barthakuria", "personal_name": "Apurba Chandra Barthakuria", "last_modified": {"type": "/type/datetime", "value": "2008-09-09T05:11:18.438975"}, "key": "/authors/OL111098A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL11109920A 1 2022-11-26T16:31:16.846378 {"type": {"key": "/type/author"}, "name": "Sabrina Iturbide", "key": "/authors/OL11109920A", "source_records": ["bwb:9781691223077"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-26T16:31:16.846378"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-26T16:31:16.846378"}}
+/type/author /authors/OL11110227A 1 2022-11-26T17:11:18.806772 {"type": {"key": "/type/author"}, "name": "Mary K. Morgan", "key": "/authors/OL11110227A", "source_records": ["bwb:9781696170413"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-26T17:11:18.806772"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-26T17:11:18.806772"}}
+/type/author /authors/OL11110254A 1 2022-11-26T17:14:51.256105 {"type": {"key": "/type/author"}, "name": "Yehuda Payten", "key": "/authors/OL11110254A", "source_records": ["bwb:9781703231021"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-26T17:14:51.256105"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-26T17:14:51.256105"}}
+/type/author /authors/OL11110432A 1 2022-11-26T17:25:53.573827 {"type": {"key": "/type/author"}, "name": "Livre d'or de ma naissance v2 Editions", "key": "/authors/OL11110432A", "source_records": ["bwb:9781702414593"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-26T17:25:53.573827"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-26T17:25:53.573827"}}
+/type/author /authors/OL11110632A 1 2022-11-26T17:37:51.374398 {"type": {"key": "/type/author"}, "name": "J. a Cintron", "key": "/authors/OL11110632A", "source_records": ["bwb:9781697910018"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-26T17:37:51.374398"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-26T17:37:51.374398"}}
+/type/author /authors/OL11110678A 1 2022-11-26T17:45:16.125253 {"type": {"key": "/type/author"}, "name": "Rex \"mick\" Lentz", "key": "/authors/OL11110678A", "source_records": ["bwb:9781698810195"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-26T17:45:16.125253"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-26T17:45:16.125253"}}
+/type/author /authors/OL11111002A 1 2022-11-26T18:24:51.497033 {"type": {"key": "/type/author"}, "name": "Heyes Vorschulb\u00fccher", "key": "/authors/OL11111002A", "source_records": ["bwb:9781710800289"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-26T18:24:51.497033"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-26T18:24:51.497033"}}
+/type/author /authors/OL11111338A 1 2022-11-26T18:46:23.323322 {"type": {"key": "/type/author"}, "name": "Eber Rocha Cervantes", "key": "/authors/OL11111338A", "source_records": ["bwb:9781088542460"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-26T18:46:23.323322"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-26T18:46:23.323322"}}
+/type/author /authors/OL11111666A 1 2022-11-26T19:06:19.258880 {"type": {"key": "/type/author"}, "name": "H. A. N. S E L", "key": "/authors/OL11111666A", "source_records": ["bwb:9781693853135"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-26T19:06:19.258880"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-26T19:06:19.258880"}}
+/type/author /authors/OL11111697A 1 2022-11-26T19:08:50.228164 {"type": {"key": "/type/author"}, "name": "Pastor Peter Omene", "key": "/authors/OL11111697A", "source_records": ["bwb:9781092582698"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-26T19:08:50.228164"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-26T19:08:50.228164"}}
+/type/author /authors/OL1111183A 3 2009-05-21T18:19:03.715602 {"name": "Joaquim-Francisco Co\u00ealho", "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "personal_name": "Joaquim-Francisco Co\u00ealho", "last_modified": {"type": "/type/datetime", "value": "2009-05-21T18:19:03.715602"}, "latest_revision": 3, "key": "/authors/OL1111183A", "birth_date": "1938", "type": {"key": "/type/author"}, "revision": 3}
+/type/author /authors/OL11112229A 1 2022-11-26T19:49:46.232134 {"type": {"key": "/type/author"}, "name": "A. L. Gates", "key": "/authors/OL11112229A", "source_records": ["bwb:9781698859309"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-26T19:49:46.232134"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-26T19:49:46.232134"}}
+/type/author /authors/OL11112244A 1 2022-11-26T19:50:36.344494 {"type": {"key": "/type/author"}, "name": "Carlos Ferreira dos Santos", "key": "/authors/OL11112244A", "source_records": ["bwb:9781702169905"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-26T19:50:36.344494"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-26T19:50:36.344494"}}
+/type/author /authors/OL11112446A 1 2022-11-26T19:57:51.074970 {"type": {"key": "/type/author"}, "name": "Ethan Rocklin", "key": "/authors/OL11112446A", "source_records": ["bwb:9781705361085"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-26T19:57:51.074970"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-26T19:57:51.074970"}}
+/type/author /authors/OL11112687A 1 2022-11-26T20:07:11.779881 {"type": {"key": "/type/author"}, "name": "Faye Wilson Walton", "key": "/authors/OL11112687A", "source_records": ["bwb:9781726804868"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-26T20:07:11.779881"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-26T20:07:11.779881"}}
+/type/author /authors/OL11112886A 1 2022-11-26T20:14:53.542757 {"type": {"key": "/type/author"}, "name": "D. Davis-Jackson", "key": "/authors/OL11112886A", "source_records": ["bwb:9781686320644"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-26T20:14:53.542757"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-26T20:14:53.542757"}}
+/type/author /authors/OL1111315A 3 2020-09-30T18:34:03.945091 {"name": "Rumbold, Horace Sir", "personal_name": "Rumbold, Horace", "death_date": "1913", "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2020-09-30T18:34:03.945091"}, "latest_revision": 3, "key": "/authors/OL1111315A", "birth_date": "1829", "title": "Sir", "revision": 3, "type": {"key": "/type/author"}, "remote_ids": {"viaf": "5726421", "wikidata": "Q7527276", "isni": "000000002798336X"}}
+/type/author /authors/OL11113170A 1 2022-11-26T20:51:17.697368 {"type": {"key": "/type/author"}, "name": "Janet C. Bernstein", "key": "/authors/OL11113170A", "source_records": ["bwb:9781692339487"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-26T20:51:17.697368"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-26T20:51:17.697368"}}
+/type/author /authors/OL11113577A 1 2022-11-26T21:32:37.786731 {"type": {"key": "/type/author"}, "name": "Vijayakanth R", "key": "/authors/OL11113577A", "source_records": ["bwb:9781697028843"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-26T21:32:37.786731"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-26T21:32:37.786731"}}
+/type/author /authors/OL11113777A 1 2022-11-26T21:43:56.822358 {"type": {"key": "/type/author"}, "name": "Paulius Biveinis", "key": "/authors/OL11113777A", "source_records": ["bwb:9781697568578"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-26T21:43:56.822358"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-26T21:43:56.822358"}}
+/type/author /authors/OL11114046A 1 2022-11-26T22:23:51.027588 {"type": {"key": "/type/author"}, "name": "Jim Dippold", "key": "/authors/OL11114046A", "source_records": ["bwb:9781729258378"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-26T22:23:51.027588"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-26T22:23:51.027588"}}
+/type/author /authors/OL11114338A 1 2022-11-26T22:36:04.849649 {"type": {"key": "/type/author"}, "name": "Megan Jessie", "key": "/authors/OL11114338A", "source_records": ["bwb:9781711332222"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-26T22:36:04.849649"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-26T22:36:04.849649"}}
+/type/author /authors/OL11114432A 1 2022-11-26T22:38:38.783322 {"type": {"key": "/type/author"}, "name": "Mateus Folha", "key": "/authors/OL11114432A", "source_records": ["bwb:9781711783123"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-26T22:38:38.783322"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-26T22:38:38.783322"}}
+/type/author /authors/OL1111476A 2 2008-08-19T14:42:25.856008 {"name": "Heinrich Kalbfuss", "personal_name": "Heinrich Kalbfuss", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T14:42:25.856008"}, "key": "/authors/OL1111476A", "birth_date": "1927", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL1111490A 5 2020-09-27T03:49:53.803346 {"bio": {"type": "/type/text", "value": "German dramaturge (1956\u20132006)"}, "name": "Angelika Machinek", "links": [{"url": "https://de.wikipedia.org/wiki/Angelika_Machinek", "type": {"key": "/type/link"}, "title": "Wikipedia (german)"}, {"url": "https://www.wikidata.org/wiki/Q123696", "type": {"key": "/type/link"}, "title": "Wikidata"}, {"url": "https://viaf.org/viaf/39997129/", "type": {"key": "/type/link"}, "title": "VIAF: 39997129"}], "personal_name": "Angelika Machinek", "death_date": "12 October 2006", "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "photos": [8055540], "last_modified": {"type": "/type/datetime", "value": "2020-09-27T03:49:53.803346"}, "latest_revision": 5, "key": "/authors/OL1111490A", "birth_date": "17 November 1956", "revision": 5, "type": {"key": "/type/author"}, "remote_ids": {"viaf": "39997129", "wikidata": "Q123696", "isni": "0000000117594499"}}
+/type/author /authors/OL11114938A 1 2022-11-26T22:54:21.907185 {"type": {"key": "/type/author"}, "name": "Manzana Marisela Herrera Fern\u00e1ndez", "key": "/authors/OL11114938A", "source_records": ["bwb:9781085853637"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-26T22:54:21.907185"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-26T22:54:21.907185"}}
+/type/author /authors/OL1111505A 4 2020-09-30T13:27:05.786890 {"personal_name": "Francisco Va\u0301zquez Go\u0301mez", "last_modified": {"type": "/type/datetime", "value": "2020-09-30T13:27:05.786890"}, "latest_revision": 4, "key": "/authors/OL1111505A", "remote_ids": {"viaf": "23650823", "wikidata": "Q1030763", "isni": "0000000030621271"}, "name": "Francisco Va\u0301zquez Go\u0301mez", "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "death_date": "1933", "birth_date": "1860", "type": {"key": "/type/author"}, "revision": 4}
+/type/author /authors/OL11115686A 1 2022-11-26T23:15:18.791946 {"type": {"key": "/type/author"}, "name": "Independent Woman", "key": "/authors/OL11115686A", "source_records": ["bwb:9781672627597"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-26T23:15:18.791946"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-26T23:15:18.791946"}}
+/type/author /authors/OL11116153A 1 2022-11-26T23:35:29.277690 {"type": {"key": "/type/author"}, "name": "A. M A.M Bella", "key": "/authors/OL11116153A", "source_records": ["bwb:9781677670222"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-26T23:35:29.277690"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-26T23:35:29.277690"}}
+/type/author /authors/OL11116169A 1 2022-11-26T23:35:58.970910 {"type": {"key": "/type/author"}, "name": "P. D. DesJardins", "key": "/authors/OL11116169A", "source_records": ["bwb:9781672957908"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-26T23:35:58.970910"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-26T23:35:58.970910"}}
+/type/author /authors/OL11116235A 1 2022-11-26T23:37:36.965177 {"type": {"key": "/type/author"}, "name": "Louis Lane", "key": "/authors/OL11116235A", "source_records": ["bwb:9781657420892"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-26T23:37:36.965177"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-26T23:37:36.965177"}}
+/type/author /authors/OL11116690A 1 2022-11-26T23:48:52.646224 {"type": {"key": "/type/author"}, "name": "Naide Roceittre", "key": "/authors/OL11116690A", "source_records": ["bwb:9781661760908"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-26T23:48:52.646224"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-26T23:48:52.646224"}}
+/type/author /authors/OL1111669A 2 2008-08-19T14:43:44.431508 {"name": "Olga Gurvic", "personal_name": "Olga Gurvic", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T14:43:44.431508"}, "key": "/authors/OL1111669A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL111166A 2 2008-09-09T05:12:33.678887 {"name": "S. V. Shirol", "personal_name": "S. V. Shirol", "last_modified": {"type": "/type/datetime", "value": "2008-09-09T05:12:33.678887"}, "key": "/authors/OL111166A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL11116854A 1 2022-11-26T23:53:59.764047 {"type": {"key": "/type/author"}, "name": "\u00c9ditions France Cahier Calligraphe", "key": "/authors/OL11116854A", "source_records": ["bwb:9798601905909"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-26T23:53:59.764047"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-26T23:53:59.764047"}}
+/type/author /authors/OL11117361A 1 2022-11-27T00:19:26.834129 {"type": {"key": "/type/author"}, "name": "Internet Memes Geschenkideen", "key": "/authors/OL11117361A", "source_records": ["bwb:9781671684560"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T00:19:26.834129"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T00:19:26.834129"}}
+/type/author /authors/OL11117419A 1 2022-11-27T00:22:13.590069 {"type": {"key": "/type/author"}, "name": "Texas Gold Books", "key": "/authors/OL11117419A", "source_records": ["bwb:9781671990388"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T00:22:13.590069"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T00:22:13.590069"}}
+/type/author /authors/OL11117651A 1 2022-11-27T00:38:18.396636 {"type": {"key": "/type/author"}, "name": "Soulful Living Journals", "key": "/authors/OL11117651A", "source_records": ["bwb:9781673873955"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T00:38:18.396636"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T00:38:18.396636"}}
+/type/author /authors/OL11117653A 1 2022-11-27T00:38:54.020806 {"type": {"key": "/type/author"}, "name": "Bobby Chapman", "key": "/authors/OL11117653A", "source_records": ["bwb:9781673929119"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T00:38:54.020806"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T00:38:54.020806"}}
+/type/author /authors/OL11117732A 1 2022-11-27T00:44:40.365074 {"type": {"key": "/type/author"}, "name": "Tagesplaner 2020 Biene Tageskalender", "key": "/authors/OL11117732A", "source_records": ["bwb:9781674555423"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T00:44:40.365074"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T00:44:40.365074"}}
+/type/author /authors/OL11117812A 1 2022-11-27T00:48:34.851568 {"type": {"key": "/type/author"}, "name": "Blanca Colora State of Mind Collection", "key": "/authors/OL11117812A", "source_records": ["bwb:9781674953878"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T00:48:34.851568"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T00:48:34.851568"}}
+/type/author /authors/OL11118100A 1 2022-11-27T00:59:23.329085 {"type": {"key": "/type/author"}, "name": "Angeln de Kalender 2020", "key": "/authors/OL11118100A", "source_records": ["bwb:9781675243893"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T00:59:23.329085"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T00:59:23.329085"}}
+/type/author /authors/OL11118398A 1 2022-11-27T01:17:32.455869 {"type": {"key": "/type/author"}, "name": "Karen Kullen", "key": "/authors/OL11118398A", "source_records": ["bwb:9781677715381"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T01:17:32.455869"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T01:17:32.455869"}}
+/type/author /authors/OL11118669A 1 2022-11-27T01:32:27.194164 {"type": {"key": "/type/author"}, "name": "James Brian Mulligan", "key": "/authors/OL11118669A", "source_records": ["bwb:9781698670201"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T01:32:27.194164"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T01:32:27.194164"}}
+/type/author /authors/OL11118718A 1 2022-11-27T01:33:37.370299 {"type": {"key": "/type/author"}, "name": "Kate Mary Hall", "key": "/authors/OL11118718A", "source_records": ["bwb:9781702132930"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T01:33:37.370299"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T01:33:37.370299"}}
+/type/author /authors/OL11118834A 1 2022-11-27T01:44:02.414527 {"type": {"key": "/type/author"}, "name": "Lucia Juliao", "key": "/authors/OL11118834A", "source_records": ["bwb:9781704192352"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T01:44:02.414527"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T01:44:02.414527"}}
+/type/author /authors/OL11119167A 1 2022-11-27T02:03:07.497549 {"type": {"key": "/type/author"}, "name": "Happy New Year", "key": "/authors/OL11119167A", "source_records": ["bwb:9781707029198"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T02:03:07.497549"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T02:03:07.497549"}}
+/type/author /authors/OL11119493A 1 2022-11-27T02:18:02.486604 {"type": {"key": "/type/author"}, "name": "Victors Kalendarium", "key": "/authors/OL11119493A", "source_records": ["bwb:9781708480073"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T02:18:02.486604"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T02:18:02.486604"}}
+/type/author /authors/OL11119540A 1 2022-11-27T02:19:36.405854 {"type": {"key": "/type/author"}, "name": "35th Birthday Guest Book", "key": "/authors/OL11119540A", "source_records": ["bwb:9798601814713"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T02:19:36.405854"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T02:19:36.405854"}}
+/type/author /authors/OL11119793A 1 2022-11-27T02:31:02.046267 {"type": {"key": "/type/author"}, "name": "Imma Pretty Books", "key": "/authors/OL11119793A", "source_records": ["bwb:9781709463495"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T02:31:02.046267"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T02:31:02.046267"}}
+/type/author /authors/OL11119864A 1 2022-11-27T02:35:18.277697 {"type": {"key": "/type/author"}, "name": "kpublisher kpublisher", "key": "/authors/OL11119864A", "source_records": ["bwb:9781709395949"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T02:35:18.277697"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T02:35:18.277697"}}
+/type/author /authors/OL11119896A 1 2022-11-27T02:36:03.559516 {"type": {"key": "/type/author"}, "name": "T. K. C. AND ILLUSTRATIONS", "key": "/authors/OL11119896A", "source_records": ["bwb:9781702434171"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T02:36:03.559516"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T02:36:03.559516"}}
+/type/author /authors/OL11119949A 1 2022-11-27T02:38:40.730076 {"type": {"key": "/type/author"}, "name": "Luisa Bolleri", "key": "/authors/OL11119949A", "source_records": ["bwb:9781707597338"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T02:38:40.730076"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T02:38:40.730076"}}
+/type/author /authors/OL11120262A 1 2022-11-27T02:49:25.060936 {"type": {"key": "/type/author"}, "name": "Michelle Nadine", "key": "/authors/OL11120262A", "source_records": ["bwb:9781795520232"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T02:49:25.060936"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T02:49:25.060936"}}
+/type/author /authors/OL11120366A 1 2022-11-27T02:52:16.791569 {"type": {"key": "/type/author"}, "name": "Leonardo Cortez", "key": "/authors/OL11120366A", "source_records": ["bwb:9781086062588"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T02:52:16.791569"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T02:52:16.791569"}}
+/type/author /authors/OL11120437A 1 2022-11-27T02:54:39.084793 {"type": {"key": "/type/author"}, "name": "Sarah Herrin", "key": "/authors/OL11120437A", "source_records": ["bwb:9781704860312"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T02:54:39.084793"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T02:54:39.084793"}}
+/type/author /authors/OL11120483A 1 2022-11-27T02:56:36.579371 {"type": {"key": "/type/author"}, "name": "Pioletta Notebooks", "key": "/authors/OL11120483A", "source_records": ["bwb:9781671016231"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T02:56:36.579371"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T02:56:36.579371"}}
+/type/author /authors/OL11120640A 1 2022-11-27T03:01:30.747450 {"type": {"key": "/type/author"}, "name": "Lee Elefther", "key": "/authors/OL11120640A", "source_records": ["bwb:9781712283103"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T03:01:30.747450"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T03:01:30.747450"}}
+/type/author /authors/OL11120859A 1 2022-11-27T03:08:38.024755 {"type": {"key": "/type/author"}, "name": "My Workout Logged", "key": "/authors/OL11120859A", "source_records": ["bwb:9781692839949"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T03:08:38.024755"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T03:08:38.024755"}}
+/type/author /authors/OL11121716A 1 2022-11-27T03:42:27.433271 {"type": {"key": "/type/author"}, "name": "minny funny drawing", "key": "/authors/OL11121716A", "source_records": ["bwb:9798600018914"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T03:42:27.433271"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T03:42:27.433271"}}
+/type/author /authors/OL11121954A 1 2022-11-27T03:49:57.900809 {"type": {"key": "/type/author"}, "name": "Anthony Tilton", "key": "/authors/OL11121954A", "source_records": ["bwb:9781661716653"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T03:49:57.900809"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T03:49:57.900809"}}
+/type/author /authors/OL11122028A 1 2022-11-27T03:54:15.346651 {"type": {"key": "/type/author"}, "name": "brend trenk", "key": "/authors/OL11122028A", "source_records": ["bwb:9798600874244"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T03:54:15.346651"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T03:54:15.346651"}}
+/type/author /authors/OL11122029A 1 2022-11-27T03:54:24.664673 {"type": {"key": "/type/author"}, "name": "Yolanda N. Slaughter", "key": "/authors/OL11122029A", "source_records": ["bwb:9781650211619"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T03:54:24.664673"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T03:54:24.664673"}}
+/type/author /authors/OL11122182A 1 2022-11-27T04:00:53.247842 {"type": {"key": "/type/author"}, "name": "Sophia Jaeger", "key": "/authors/OL11122182A", "source_records": ["bwb:9781670408655"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T04:00:53.247842"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T04:00:53.247842"}}
+/type/author /authors/OL11122237A 1 2022-11-27T04:02:20.983021 {"type": {"key": "/type/author"}, "name": "Art Of Designs", "key": "/authors/OL11122237A", "source_records": ["bwb:9781670577221"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T04:02:20.983021"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T04:02:20.983021"}}
+/type/author /authors/OL11122470A 1 2022-11-27T04:19:54.138652 {"type": {"key": "/type/author"}, "name": "Caballo Blanco Publishing Mh", "key": "/authors/OL11122470A", "source_records": ["bwb:9781672388337"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T04:19:54.138652"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T04:19:54.138652"}}
+/type/author /authors/OL11122620A 1 2022-11-27T04:36:23.086660 {"type": {"key": "/type/author"}, "name": "Pubis Schildkrote", "key": "/authors/OL11122620A", "source_records": ["bwb:9781674420462"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T04:36:23.086660"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T04:36:23.086660"}}
+/type/author /authors/OL11122874A 1 2022-11-27T04:49:45.985807 {"type": {"key": "/type/author"}, "name": "Emily J. Shirey School Counselor Publishing Co.", "key": "/authors/OL11122874A", "source_records": ["bwb:9798601889919"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T04:49:45.985807"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T04:49:45.985807"}}
+/type/author /authors/OL11122880A 1 2022-11-27T04:49:52.406359 {"type": {"key": "/type/author"}, "name": "Kye Rankin", "key": "/authors/OL11122880A", "source_records": ["bwb:9781705970324"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T04:49:52.406359"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T04:49:52.406359"}}
+/type/author /authors/OL1112289A 3 2009-05-22T03:23:02.783097 {"name": "Serge\u012d Mikheenkov", "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "personal_name": "Serge\u012d Mikheenkov", "last_modified": {"type": "/type/datetime", "value": "2009-05-22T03:23:02.783097"}, "latest_revision": 3, "key": "/authors/OL1112289A", "birth_date": "1955", "type": {"key": "/type/author"}, "revision": 3}
+/type/author /authors/OL11123260A 1 2022-11-27T05:22:54.467294 {"type": {"key": "/type/author"}, "name": "K Ichen", "key": "/authors/OL11123260A", "source_records": ["bwb:9781679613487"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T05:22:54.467294"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T05:22:54.467294"}}
+/type/author /authors/OL11123746A 1 2022-11-27T05:55:09.551562 {"type": {"key": "/type/author"}, "name": "Ponce Puerto State of Mind Collection", "key": "/authors/OL11123746A", "source_records": ["bwb:9781706874935"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T05:55:09.551562"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T05:55:09.551562"}}
+/type/author /authors/OL11123796A 1 2022-11-27T05:57:30.504687 {"type": {"key": "/type/author"}, "name": "Banks Alabama State of Mind Collection", "key": "/authors/OL11123796A", "source_records": ["bwb:9781707110377"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T05:57:30.504687"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T05:57:30.504687"}}
+/type/author /authors/OL1112399A 2 2008-08-19T14:47:18.761183 {"name": "Hettie Naude\u0301", "personal_name": "Hettie Naude\u0301", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T14:47:18.761183"}, "key": "/authors/OL1112399A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL1112421A 2 2008-08-19T14:47:26.789918 {"name": "Paul Stuyver", "personal_name": "Paul Stuyver", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T14:47:26.789918"}, "key": "/authors/OL1112421A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL11124527A 1 2022-11-27T06:34:43.277021 {"type": {"key": "/type/author"}, "name": "Juliette Tomlinson", "key": "/authors/OL11124527A", "source_records": ["bwb:9781709685859"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T06:34:43.277021"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T06:34:43.277021"}}
+/type/author /authors/OL11125268A 1 2022-11-27T07:00:59.646649 {"type": {"key": "/type/author"}, "name": "Ilaria Miranda", "key": "/authors/OL11125268A", "source_records": ["bwb:9781651534380"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T07:00:59.646649"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T07:00:59.646649"}}
+/type/author /authors/OL11125872A 1 2022-11-27T07:27:41.116434 {"type": {"key": "/type/author"}, "name": "Abigail Horton", "key": "/authors/OL11125872A", "source_records": ["bwb:9781655203978"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T07:27:41.116434"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T07:27:41.116434"}}
+/type/author /authors/OL11126278A 1 2022-11-27T07:42:05.245365 {"type": {"key": "/type/author"}, "name": "Naomi Alatishe", "key": "/authors/OL11126278A", "source_records": ["bwb:9781099858277"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T07:42:05.245365"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T07:42:05.245365"}}
+/type/author /authors/OL11126832A 1 2022-11-27T08:24:35.774662 {"type": {"key": "/type/author"}, "name": "Hen Ming", "key": "/authors/OL11126832A", "source_records": ["bwb:9781674012650"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T08:24:35.774662"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T08:24:35.774662"}}
+/type/author /authors/OL11126878A 1 2022-11-27T08:29:10.517219 {"type": {"key": "/type/author"}, "name": "Judy Helen Ford", "key": "/authors/OL11126878A", "source_records": ["bwb:9781674558936"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T08:29:10.517219"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T08:29:10.517219"}}
+/type/author /authors/OL11127113A 1 2022-11-27T08:41:49.164211 {"type": {"key": "/type/author"}, "name": "Valentina Ukraintseva", "key": "/authors/OL11127113A", "source_records": ["bwb:9798607840464"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T08:41:49.164211"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T08:41:49.164211"}}
+/type/author /authors/OL11127136A 1 2022-11-27T08:42:28.199326 {"type": {"key": "/type/author"}, "name": "Gitarren Tabs", "key": "/authors/OL11127136A", "source_records": ["bwb:9781674247823"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T08:42:28.199326"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T08:42:28.199326"}}
+/type/author /authors/OL11127523A 1 2022-11-27T09:17:31.462225 {"type": {"key": "/type/author"}, "name": "Sonia Greene", "key": "/authors/OL11127523A", "source_records": ["bwb:9781699901571"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T09:17:31.462225"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T09:17:31.462225"}}
+/type/author /authors/OL11127678A 1 2022-11-27T09:33:01.461954 {"type": {"key": "/type/author"}, "name": "Howard H. Morrow", "key": "/authors/OL11127678A", "source_records": ["bwb:9781704720746"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T09:33:01.461954"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T09:33:01.461954"}}
+/type/author /authors/OL11127735A 1 2022-11-27T09:38:19.610956 {"type": {"key": "/type/author"}, "name": "Jacques Dong", "key": "/authors/OL11127735A", "source_records": ["bwb:9781705924198"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T09:38:19.610956"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T09:38:19.610956"}}
+/type/author /authors/OL11128169A 1 2022-11-27T10:05:29.322952 {"type": {"key": "/type/author"}, "name": "Britney Myers", "key": "/authors/OL11128169A", "source_records": ["bwb:9781708732875"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T10:05:29.322952"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T10:05:29.322952"}}
+/type/author /authors/OL11128626A 1 2022-11-27T10:27:47.690765 {"type": {"key": "/type/author"}, "name": "Zahoor Hussain", "key": "/authors/OL11128626A", "source_records": ["bwb:9781079883121"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T10:27:47.690765"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T10:27:47.690765"}}
+/type/author /authors/OL11128966A 1 2022-11-27T10:38:45.641776 {"type": {"key": "/type/author"}, "name": "Isabella Vinci", "key": "/authors/OL11128966A", "source_records": ["bwb:9781707280353"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T10:38:45.641776"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T10:38:45.641776"}}
+/type/author /authors/OL11129442A 1 2022-11-27T10:56:19.301196 {"type": {"key": "/type/author"}, "name": "Catherine Zeillinger Vannier", "key": "/authors/OL11129442A", "source_records": ["bwb:9781651051566"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T10:56:19.301196"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T10:56:19.301196"}}
+/type/author /authors/OL11129611A 1 2022-11-27T11:05:08.268572 {"type": {"key": "/type/author"}, "name": "Alex Tveit", "key": "/authors/OL11129611A", "source_records": ["bwb:9781673188141"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T11:05:08.268572"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T11:05:08.268572"}}
+/type/author /authors/OL11129653A 1 2022-11-27T11:07:22.069282 {"type": {"key": "/type/author"}, "name": "zilad youssef", "key": "/authors/OL11129653A", "source_records": ["bwb:9781653658589"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T11:07:22.069282"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T11:07:22.069282"}}
+/type/author /authors/OL11130004A 1 2022-11-27T11:21:55.257731 {"type": {"key": "/type/author"}, "name": "Ronald Porto", "key": "/authors/OL11130004A", "source_records": ["bwb:9781657404519"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T11:21:55.257731"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T11:21:55.257731"}}
+/type/author /authors/OL11130088A 1 2022-11-27T11:24:57.967565 {"type": {"key": "/type/author"}, "name": "Patrizia Duso", "key": "/authors/OL11130088A", "source_records": ["bwb:9781077086654"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T11:24:57.967565"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T11:24:57.967565"}}
+/type/author /authors/OL11130181A 1 2022-11-27T11:27:49.025740 {"type": {"key": "/type/author"}, "name": "Aaron Chesley", "key": "/authors/OL11130181A", "source_records": ["bwb:9798603167947"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T11:27:49.025740"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T11:27:49.025740"}}
+/type/author /authors/OL111310A 1 2008-04-01T03:28:50.625462 {"name": "N\u0307a\u0304\u02ba khun\u02bb Cha ra\u0304 to\u02bb Pathama.", "title": "Pathama.", "personal_name": "N\u0307a\u0304\u02ba khun\u02bb Cha ra\u0304 to\u02bb", "last_modified": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "key": "/authors/OL111310A", "type": {"key": "/type/author"}, "revision": 1}
+/type/author /authors/OL11131224A 1 2022-11-27T12:47:58.177738 {"type": {"key": "/type/author"}, "name": "Susie Vanilla", "key": "/authors/OL11131224A", "source_records": ["bwb:9781676813316"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T12:47:58.177738"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T12:47:58.177738"}}
+/type/author /authors/OL11131404A 1 2022-11-27T13:08:07.020080 {"type": {"key": "/type/author"}, "name": "Ang\u00e9lica Plaza", "key": "/authors/OL11131404A", "source_records": ["bwb:9781679488740"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T13:08:07.020080"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T13:08:07.020080"}}
+/type/author /authors/OL11131600A 1 2022-11-27T13:21:56.583817 {"type": {"key": "/type/author"}, "name": "Crafter Publishing", "key": "/authors/OL11131600A", "source_records": ["bwb:9781703747416"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T13:21:56.583817"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T13:21:56.583817"}}
+/type/author /authors/OL11131620A 1 2022-11-27T13:24:25.745416 {"type": {"key": "/type/author"}, "name": "Joseph Chotzner", "key": "/authors/OL11131620A", "source_records": ["bwb:9781704150147"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T13:24:25.745416"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T13:24:25.745416"}}
+/type/author /authors/OL11131734A 1 2022-11-27T13:35:54.868160 {"type": {"key": "/type/author"}, "name": "Donoma Monroe", "key": "/authors/OL11131734A", "source_records": ["bwb:9781706059240"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T13:35:54.868160"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T13:35:54.868160"}}
+/type/author /authors/OL11131788A 1 2022-11-27T13:39:59.148656 {"type": {"key": "/type/author"}, "name": "North Carolina State of Mind Collection", "key": "/authors/OL11131788A", "source_records": ["bwb:9781706606642"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T13:39:59.148656"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T13:39:59.148656"}}
+/type/author /authors/OL11132024A 1 2022-11-27T13:54:14.879892 {"type": {"key": "/type/author"}, "name": "88th Birthday Guest Book", "key": "/authors/OL11132024A", "source_records": ["bwb:9798605424406"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T13:54:14.879892"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T13:54:14.879892"}}
+/type/author /authors/OL11132824A 1 2022-11-27T14:35:05.473722 {"type": {"key": "/type/author"}, "name": "Lucas Chen", "key": "/authors/OL11132824A", "source_records": ["bwb:9781704547398"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T14:35:05.473722"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T14:35:05.473722"}}
+/type/author /authors/OL11132844A 1 2022-11-27T14:35:46.377573 {"type": {"key": "/type/author"}, "name": "Tierfreunde Designs", "key": "/authors/OL11132844A", "source_records": ["bwb:9781713281375"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T14:35:46.377573"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T14:35:46.377573"}}
+/type/author /authors/OL11132866A 1 2022-11-27T14:36:11.571127 {"type": {"key": "/type/author"}, "name": "Jennifer Alijewicz", "key": "/authors/OL11132866A", "source_records": ["bwb:9781696782487"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T14:36:11.571127"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T14:36:11.571127"}}
+/type/author /authors/OL11132969A 1 2022-11-27T14:40:43.641771 {"type": {"key": "/type/author"}, "name": "Luke Richards", "key": "/authors/OL11132969A", "source_records": ["bwb:9781796904925"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T14:40:43.641771"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T14:40:43.641771"}}
+/type/author /authors/OL11133552A 1 2022-11-27T15:09:21.214271 {"type": {"key": "/type/author"}, "name": "Russian NOTEBOOKS", "key": "/authors/OL11133552A", "source_records": ["bwb:9781653349142"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T15:09:21.214271"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T15:09:21.214271"}}
+/type/author /authors/OL11133612A 1 2022-11-27T15:13:43.303015 {"type": {"key": "/type/author"}, "name": "Stephen Prey", "key": "/authors/OL11133612A", "source_records": ["bwb:9781702368438"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T15:13:43.303015"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T15:13:43.303015"}}
+/type/author /authors/OL11133946A 1 2022-11-27T15:25:46.494958 {"type": {"key": "/type/author"}, "name": "Edeltraud Pichelmayer", "key": "/authors/OL11133946A", "source_records": ["bwb:9781693334849"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T15:25:46.494958"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T15:25:46.494958"}}
+/type/author /authors/OL11134009A 1 2022-11-27T15:27:14.809609 {"type": {"key": "/type/author"}, "name": "Mo Marino", "key": "/authors/OL11134009A", "source_records": ["bwb:9781080025985"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T15:27:14.809609"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T15:27:14.809609"}}
+/type/author /authors/OL11134376A 1 2022-11-27T15:45:56.954154 {"type": {"key": "/type/author"}, "name": "Lebec Califor State of Mind Collection", "key": "/authors/OL11134376A", "source_records": ["bwb:9781670476814"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T15:45:56.954154"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T15:45:56.954154"}}
+/type/author /authors/OL11134509A 1 2022-11-27T15:53:30.792338 {"type": {"key": "/type/author"}, "name": "J.T. Beelen", "key": "/authors/OL11134509A", "source_records": ["amazon:9057195496"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T15:53:30.792338"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T15:53:30.792338"}}
+/type/author /authors/OL11134967A 1 2022-11-27T16:39:57.100408 {"type": {"key": "/type/author"}, "name": "Colourful Gifts For Kids", "key": "/authors/OL11134967A", "source_records": ["bwb:9798605466437"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T16:39:57.100408"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T16:39:57.100408"}}
+/type/author /authors/OL11135744A 1 2022-11-27T17:54:52.975443 {"type": {"key": "/type/author"}, "name": "Klavierspielerin Publishing Mh", "key": "/authors/OL11135744A", "source_records": ["bwb:9781707561926"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T17:54:52.975443"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T17:54:52.975443"}}
+/type/author /authors/OL11135843A 1 2022-11-27T18:01:50.483660 {"type": {"key": "/type/author"}, "name": "38th Birthday Guest Book", "key": "/authors/OL11135843A", "source_records": ["bwb:9798601354462"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T18:01:50.483660"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T18:01:50.483660"}}
+/type/author /authors/OL11136027A 1 2022-11-27T18:11:38.364487 {"type": {"key": "/type/author"}, "name": "Saint David A. State of Mind Collection", "key": "/authors/OL11136027A", "source_records": ["bwb:9781708854386"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T18:11:38.364487"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T18:11:38.364487"}}
+/type/author /authors/OL11136570A 1 2022-11-27T18:41:31.430620 {"type": {"key": "/type/author"}, "name": "Bryn Born", "key": "/authors/OL11136570A", "source_records": ["bwb:9781671956162"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T18:41:31.430620"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T18:41:31.430620"}}
+/type/author /authors/OL11136611A 1 2022-11-27T18:42:58.665410 {"type": {"key": "/type/author"}, "name": "Enpowera Waterheart", "key": "/authors/OL11136611A", "source_records": ["bwb:9781672039918"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T18:42:58.665410"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T18:42:58.665410"}}
+/type/author /authors/OL11136731A 1 2022-11-27T18:47:30.910966 {"type": {"key": "/type/author"}, "name": "Danye Phillips", "key": "/authors/OL11136731A", "source_records": ["bwb:9781790764358"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T18:47:30.910966"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T18:47:30.910966"}}
+/type/author /authors/OL11136967A 1 2022-11-27T18:57:49.911471 {"type": {"key": "/type/author"}, "name": "Agenda J'aime Mon Papa", "key": "/authors/OL11136967A", "source_records": ["bwb:9781676329114"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T18:57:49.911471"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T18:57:49.911471"}}
+/type/author /authors/OL11137266A 1 2022-11-27T19:15:23.047567 {"type": {"key": "/type/author"}, "name": "Elmo Schaper", "key": "/authors/OL11137266A", "source_records": ["bwb:9781650293806"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T19:15:23.047567"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T19:15:23.047567"}}
+/type/author /authors/OL11137844A 1 2022-11-27T19:38:58.625973 {"type": {"key": "/type/author"}, "name": "Steven Northover", "key": "/authors/OL11137844A", "source_records": ["bwb:9781656203397"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T19:38:58.625973"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T19:38:58.625973"}}
+/type/author /authors/OL11138425A 1 2022-11-27T20:26:42.810999 {"type": {"key": "/type/author"}, "name": "Mar Serrano del Cid", "key": "/authors/OL11138425A", "source_records": ["bwb:9781673573596"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T20:26:42.810999"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T20:26:42.810999"}}
+/type/author /authors/OL11138456A 1 2022-11-27T20:32:03.235023 {"type": {"key": "/type/author"}, "name": "Kathie Phillips", "key": "/authors/OL11138456A", "source_records": ["bwb:9781674159768"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T20:32:03.235023"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T20:32:03.235023"}}
+/type/author /authors/OL11139719A 1 2022-11-27T22:17:10.478512 {"type": {"key": "/type/author"}, "name": "Noah Rich", "key": "/authors/OL11139719A", "source_records": ["bwb:9798601467049"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T22:17:10.478512"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T22:17:10.478512"}}
+/type/author /authors/OL11139913A 1 2022-11-27T22:29:53.358482 {"type": {"key": "/type/author"}, "name": "Ulrike Kinderle", "key": "/authors/OL11139913A", "source_records": ["bwb:9781712766996"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T22:29:53.358482"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T22:29:53.358482"}}
+/type/author /authors/OL11139944A 1 2022-11-27T22:30:50.459769 {"type": {"key": "/type/author"}, "name": "Barbara Kastner", "key": "/authors/OL11139944A", "source_records": ["bwb:9781706006374"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T22:30:50.459769"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T22:30:50.459769"}}
+/type/author /authors/OL11140000A 1 2022-11-27T22:33:45.351763 {"type": {"key": "/type/author"}, "name": "Cayleigh Carpenter", "key": "/authors/OL11140000A", "source_records": ["bwb:9781092646413"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T22:33:45.351763"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T22:33:45.351763"}}
+/type/author /authors/OL1114010A 2 2008-08-19T14:53:54.154961 {"name": "Edgar Mertner", "personal_name": "Edgar Mertner", "last_modified": {"type": "/type/datetime", "value": "2008-08-19T14:53:54.154961"}, "key": "/authors/OL1114010A", "type": {"key": "/type/author"}, "revision": 2}
+/type/author /authors/OL11140399A 1 2022-11-27T22:48:41.714549 {"type": {"key": "/type/author"}, "name": "Howze Korkowski", "key": "/authors/OL11140399A", "source_records": ["bwb:9781675677421"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T22:48:41.714549"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T22:48:41.714549"}}
+/type/author /authors/OL11140470A 1 2022-11-27T22:51:17.539792 {"type": {"key": "/type/author"}, "name": "Taahir Lee", "key": "/authors/OL11140470A", "source_records": ["bwb:9781670321268"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T22:51:17.539792"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T22:51:17.539792"}}
+/type/author /authors/OL11140594A 1 2022-11-27T22:55:17.806239 {"type": {"key": "/type/author"}, "name": "Cencio Savelli", "key": "/authors/OL11140594A", "source_records": ["bwb:9781706811138"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T22:55:17.806239"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T22:55:17.806239"}}
+/type/author /authors/OL11140597A 1 2022-11-27T22:55:35.447757 {"type": {"key": "/type/author"}, "name": "Kathy Schubert", "key": "/authors/OL11140597A", "source_records": ["bwb:9781686434976"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T22:55:35.447757"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T22:55:35.447757"}}
+/type/author /authors/OL11140889A 1 2022-11-27T23:07:57.921468 {"type": {"key": "/type/author"}, "name": "Brandon Halaychik", "key": "/authors/OL11140889A", "source_records": ["bwb:9781653180233"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T23:07:57.921468"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T23:07:57.921468"}}
+/type/author /authors/OL11140976A 1 2022-11-27T23:13:33.031520 {"type": {"key": "/type/author"}, "name": "Kari Radermacher", "key": "/authors/OL11140976A", "source_records": ["bwb:9781698339740"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T23:13:33.031520"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T23:13:33.031520"}}
+/type/author /authors/OL11141573A 1 2022-11-27T23:39:55.149434 {"type": {"key": "/type/author"}, "name": "Telden Menpaluzz", "key": "/authors/OL11141573A", "source_records": ["bwb:9781072791652"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T23:39:55.149434"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T23:39:55.149434"}}
+/type/author /authors/OL11141704A 1 2022-11-27T23:48:41.298094 {"type": {"key": "/type/author"}, "name": "Mark Abrahams", "key": "/authors/OL11141704A", "source_records": ["amazon:5170303564"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T23:48:41.298094"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T23:48:41.298094"}}
+/type/author /authors/OL11141713A 1 2022-11-27T23:49:25.076215 {"type": {"key": "/type/author"}, "name": "Jennie Cordner", "key": "/authors/OL11141713A", "source_records": ["bwb:9781089665113"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-27T23:49:25.076215"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T23:49:25.076215"}}
+/type/author /authors/OL11142021A 1 2022-11-28T00:14:34.214695 {"type": {"key": "/type/author"}, "name": "Paco Lopez-Hernandez", "key": "/authors/OL11142021A", "source_records": ["bwb:9781672381277"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-28T00:14:34.214695"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-28T00:14:34.214695"}}
+/type/author /authors/OL11142200A 1 2022-11-28T00:40:25.447049 {"type": {"key": "/type/author"}, "name": "Lettering Lady Books", "key": "/authors/OL11142200A", "source_records": ["bwb:9781658700047"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-28T00:40:25.447049"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-28T00:40:25.447049"}}
+/type/author /authors/OL11142316A 1 2022-11-28T00:46:28.172652 {"type": {"key": "/type/author"}, "name": "Guillermo Arias Polo", "key": "/authors/OL11142316A", "source_records": ["bwb:9798604343548"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-28T00:46:28.172652"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-28T00:46:28.172652"}}
+/type/author /authors/OL11142351A 1 2022-11-28T00:48:00.210373 {"type": {"key": "/type/author"}, "name": "Charli Townsend", "key": "/authors/OL11142351A", "source_records": ["bwb:9781675069516"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-28T00:48:00.210373"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-28T00:48:00.210373"}}
+/type/author /authors/OL11142369A 1 2022-11-28T00:50:00.997668 {"type": {"key": "/type/author"}, "name": "Megan K. Bickel", "key": "/authors/OL11142369A", "source_records": ["bwb:9781675290255"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-28T00:50:00.997668"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-28T00:50:00.997668"}}
+/type/author /authors/OL11142463A 1 2022-11-28T01:04:43.669049 {"type": {"key": "/type/author"}, "name": "Lucerne Color State of Mind Collection", "key": "/authors/OL11142463A", "source_records": ["bwb:9781677198870"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-28T01:04:43.669049"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-28T01:04:43.669049"}}
+/type/author /authors/OL11142518A 1 2022-11-28T01:08:21.611403 {"type": {"key": "/type/author"}, "name": "Swami Bodhi V. Antonio Gianfranco Gualdi", "key": "/authors/OL11142518A", "source_records": ["bwb:9781677671007"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-28T01:08:21.611403"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-28T01:08:21.611403"}}
+/type/author /authors/OL11142791A 1 2022-11-28T01:36:43.482948 {"type": {"key": "/type/author"}, "name": "Cursive Handwriting Publisher", "key": "/authors/OL11142791A", "source_records": ["bwb:9781704384689"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-28T01:36:43.482948"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-28T01:36:43.482948"}}
+/type/author /authors/OL11143004A 1 2022-11-28T01:56:07.704575 {"type": {"key": "/type/author"}, "name": "J. & N. Club", "key": "/authors/OL11143004A", "source_records": ["bwb:9781707167340"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-28T01:56:07.704575"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-28T01:56:07.704575"}}
+/type/author /authors/OL11143566A 1 2022-11-28T02:30:38.009058 {"type": {"key": "/type/author"}, "name": "Venn Oputa", "key": "/authors/OL11143566A", "source_records": ["bwb:9781671479494"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-28T02:30:38.009058"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-28T02:30:38.009058"}}
+/type/author /authors/OL11143909A 1 2022-11-28T02:43:56.544799 {"type": {"key": "/type/author"}, "name": "Isael Bola\u00f1os", "key": "/authors/OL11143909A", "source_records": ["bwb:9781720001089"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-28T02:43:56.544799"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-28T02:43:56.544799"}}
+/type/author /authors/OL11143919A 1 2022-11-28T02:44:15.416963 {"type": {"key": "/type/author"}, "name": "Fatema Books", "key": "/authors/OL11143919A", "source_records": ["bwb:9781672837101"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-28T02:44:15.416963"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-28T02:44:15.416963"}}
+/type/author /authors/OL11143964A 1 2022-11-28T02:45:49.625607 {"type": {"key": "/type/author"}, "name": "David Braeutigam", "key": "/authors/OL11143964A", "source_records": ["bwb:9781706520962"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-28T02:45:49.625607"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-28T02:45:49.625607"}}
+/type/author /authors/OL11143982A 1 2022-11-28T02:46:26.048750 {"type": {"key": "/type/author"}, "name": "Łukasz gardecki", "key": "/authors/OL11143982A", "source_records": ["bwb:9781699560198"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-28T02:46:26.048750"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-28T02:46:26.048750"}}
+/type/author /authors/OL11144181A 1 2022-11-28T02:53:29.579096 {"type": {"key": "/type/author"}, "name": "M. Lizbeth", "key": "/authors/OL11144181A", "source_records": ["bwb:9781082704864"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-28T02:53:29.579096"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-28T02:53:29.579096"}}
+/type/author /authors/OL11145119A 1 2022-11-28T03:40:01.226042 {"type": {"key": "/type/author"}, "name": "Nancy Nunez", "key": "/authors/OL11145119A", "source_records": ["bwb:9781651454961"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-28T03:40:01.226042"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-28T03:40:01.226042"}}
+/type/author /authors/OL11145192A 1 2022-11-28T03:45:47.493112 {"type": {"key": "/type/author"}, "name": "Tim Theriot", "key": "/authors/OL11145192A", "source_records": ["bwb:9781692033330"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-28T03:45:47.493112"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-28T03:45:47.493112"}}
+/type/author /authors/OL11145257A 1 2022-11-28T03:48:26.931093 {"type": {"key": "/type/author"}, "name": "Friant Califo State of Mind Collection", "key": "/authors/OL11145257A", "source_records": ["bwb:9781670175656"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-28T03:48:26.931093"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-28T03:48:26.931093"}}
+/type/author /authors/OL11145431A 1 2022-11-28T03:59:34.862427 {"type": {"key": "/type/author"}, "name": "David J. Senabre", "key": "/authors/OL11145431A", "source_records": ["bwb:9781671477865"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-28T03:59:34.862427"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-28T03:59:34.862427"}}
+/type/author /authors/OL11145542A 1 2022-11-28T04:17:45.792569 {"type": {"key": "/type/author"}, "name": "Camilo Armando Chavarria Mendoza", "key": "/authors/OL11145542A", "source_records": ["bwb:9781673563269"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-28T04:17:45.792569"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-28T04:17:45.792569"}}
+/type/author /authors/OL11145861A 1 2022-11-28T04:49:45.699352 {"type": {"key": "/type/author"}, "name": "Nancy Meek", "key": "/authors/OL11145861A", "source_records": ["bwb:9781676726777"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-28T04:49:45.699352"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-28T04:49:45.699352"}}
+/type/author /authors/OL11146095A 1 2022-11-28T05:14:31.268221 {"type": {"key": "/type/author"}, "name": "Michele Fleming", "key": "/authors/OL11146095A", "source_records": ["bwb:9781700299932"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-28T05:14:31.268221"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-28T05:14:31.268221"}}
+/type/author /authors/OL11146138A 1 2022-11-28T05:17:19.038824 {"type": {"key": "/type/author"}, "name": "Dom Nano", "key": "/authors/OL11146138A", "source_records": ["bwb:9781702842860"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-28T05:17:19.038824"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-28T05:17:19.038824"}}
+/type/author /authors/OL11146308A 1 2022-11-28T05:40:27.994639 {"type": {"key": "/type/author"}, "name": "Zimmermann Notizbucher & Geschenke", "key": "/authors/OL11146308A", "source_records": ["bwb:9781706656111"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-28T05:40:27.994639"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-28T05:40:27.994639"}}
+/type/author /authors/OL11146630A 1 2022-11-28T06:00:53.024856 {"type": {"key": "/type/author"}, "name": "Lesbia Isabel Gonzalez Ligr", "key": "/authors/OL11146630A", "source_records": ["bwb:9781708669782"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-28T06:00:53.024856"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-28T06:00:53.024856"}}
+/type/author /authors/OL11146894A 1 2022-11-28T06:20:12.600628 {"type": {"key": "/type/author"}, "name": "Celina M. Gomes", "key": "/authors/OL11146894A", "source_records": ["bwb:9781710301281"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-28T06:20:12.600628"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-28T06:20:12.600628"}}
+/type/author /authors/OL11146999A 1 2022-11-28T06:29:08.095473 {"type": {"key": "/type/author"}, "name": "Rosario Guerrero", "key": "/authors/OL11146999A", "source_records": ["bwb:9781711273471"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-28T06:29:08.095473"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-28T06:29:08.095473"}}
+/type/author /authors/OL11147027A 1 2022-11-28T06:29:45.405321 {"type": {"key": "/type/author"}, "name": "Clark Gerhart", "key": "/authors/OL11147027A", "source_records": ["bwb:9781711381664"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-28T06:29:45.405321"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-28T06:29:45.405321"}}
+/type/author /authors/OL11147471A 1 2022-11-28T06:52:40.021258 {"type": {"key": "/type/author"}, "name": "Scott McKneely Blanchard Ph D", "key": "/authors/OL11147471A", "source_records": ["bwb:9781092380096"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-28T06:52:40.021258"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-28T06:52:40.021258"}}
+/type/author /authors/OL11147649A 1 2022-11-28T07:03:06.831602 {"type": {"key": "/type/author"}, "name": "C. Stuart Lewis", "key": "/authors/OL11147649A", "source_records": ["bwb:9781651942185"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-28T07:03:06.831602"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-28T07:03:06.831602"}}
+/type/author /authors/OL11147694A 1 2022-11-28T07:05:39.596541 {"type": {"key": "/type/author"}, "name": "Lama de Kalender 2020", "key": "/authors/OL11147694A", "source_records": ["bwb:9781652359432"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-28T07:05:39.596541"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-28T07:05:39.596541"}}
+/type/author /authors/OL11147829A 1 2022-11-28T07:12:12.416743 {"type": {"key": "/type/author"}, "name": "Anya Silverthorne", "key": "/authors/OL11147829A", "source_records": ["bwb:9798612786405"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-11-28T07:12:12.416743"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-28T07:12:12.416743"}}
diff --git a/data/unprocessed/ol_dump_editions b/data/unprocessed/ol_dump_editions
new file mode 100644
index 0000000..07e81e9
--- /dev/null
+++ b/data/unprocessed/ol_dump_editions
@@ -0,0 +1,4999 @@
+/type/edition /books/OL10000259M 3 2011-04-29T18:13:09.199231 {"publishers": ["Stationery Office Books"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T18:13:09.199231"}, "title": "Pharmacists Bill [H.L.]", "number_of_pages": 2, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780108360206"], "isbn_10": ["0108360202"], "publish_date": "May 30, 1997", "key": "/books/OL10000259M", "authors": [{"key": "/authors/OL46053A"}], "latest_revision": 3, "oclc_numbers": ["314726356"], "works": [{"key": "/works/OL14893274W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10000274M 3 2011-04-29T08:48:44.702046 {"publishers": ["Stationery Office Books"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T08:48:44.702046"}, "title": "Wireless Telegraphy Bill (H.L.) (House of Lords Bills)", "number_of_pages": 12, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780108360350"], "isbn_10": ["0108360350"], "publish_date": "July 1997", "key": "/books/OL10000274M", "authors": [{"key": "/authors/OL46053A"}], "latest_revision": 3, "oclc_numbers": ["314726345"], "works": [{"key": "/works/OL14901660W"}], "type": {"key": "/type/edition"}, "subjects": ["English law: communications law"], "revision": 3}
+/type/edition /books/OL10000326M 3 2011-04-25T23:22:41.733330 {"publishers": ["Stationery Office Books"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-25T23:22:41.733330"}, "title": "Social Security Bill (House of Lords Bills)", "number_of_pages": 102, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780108360978"], "isbn_10": ["0108360970"], "publish_date": "April 1998", "key": "/books/OL10000326M", "authors": [{"key": "/authors/OL46053A"}], "latest_revision": 3, "oclc_numbers": ["314948600"], "works": [{"key": "/works/OL14902088W"}], "type": {"key": "/type/edition"}, "subjects": ["English law: social insurance"], "revision": 3}
+/type/edition /books/OL1000072M 10 2020-11-23T14:04:33.878296 {"other_titles": ["Troubadour"], "publishers": ["Runestone Press"], "identifiers": {"goodreads": ["608525"], "librarything": ["545689"]}, "description": {"type": "/type/text", "value": "Presents factual information about these lyric poets of medieval Europe as well as a fictional account of Peire Vidal, a twelfth century troubadour from Provence, France."}, "isbn_10": ["0822519151"], "covers": [7264084], "lc_classifications": ["PC3304 .P4713 1997", "PC3304.P4713 1997"], "latest_revision": 10, "key": "/books/OL1000072M", "authors": [{"key": "/authors/OL38343A"}], "ocaid": "daywithtroubadou00pern", "publish_places": ["Minneapolis"], "contributions": ["Bacchin, Giorgio, ill.", "Clift, Dominique."], "work_title": ["Trovatore."], "pagination": "48 p. :", "source_records": ["ia:daywithtroubadou00pern", "bwb:9780822519157", "marc:marc_loc_2016/BooksAll.2016.part25.utf8:103836014:1267"], "title": "A day with a troubadour", "dewey_decimal_class": ["841/.109"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 46) and index."}, "number_of_pages": 48, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["96038952"], "subjects": ["Peire Vidal, fl. 1200 -- Juvenile fiction.", "Peire Vidal, fl. 1200 -- Fiction.", "Troubadours -- Juvenile literature.", "Troubadours."], "publish_date": "1997", "publish_country": "mnu", "last_modified": {"type": "/type/datetime", "value": "2020-11-23T14:04:33.878296"}, "by_statement": "by Re\u0301gine Pernoud ; illustrations by Giorgio Bacchin ; translated by Dominique Clift.", "oclc_numbers": ["35673444"], "works": [{"key": "/works/OL540652W"}], "type": {"key": "/type/edition"}, "revision": 10}
+/type/edition /books/OL10000741M 4 2022-07-17T02:27:08.522671 {"publishers": ["Stationery Office Books"], "physical_format": "Paperback", "title": "Crime and Disorder Bill [H.L.]", "number_of_pages": 16, "isbn_13": ["9780108366512"], "isbn_10": ["0108366510"], "publish_date": "April 10, 1998", "key": "/books/OL10000741M", "authors": [{"key": "/authors/OL46053A"}], "oclc_numbers": ["314675634"], "works": [{"key": "/works/OL14903278W"}], "type": {"key": "/type/edition"}, "subjects": ["English law: criminal law"], "source_records": ["bwb:9780108366512"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T02:27:08.522671"}}
+/type/edition /books/OL10000844M 3 2011-04-27T12:29:47.213418 {"publishers": ["Stationery Office Books"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T12:29:47.213418"}, "title": "Government of Wales Bill", "number_of_pages": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780108367540"], "isbn_10": ["0108367541"], "publish_date": "June 12, 1998", "key": "/books/OL10000844M", "authors": [{"key": "/authors/OL46053A"}], "latest_revision": 3, "oclc_numbers": ["314668897"], "works": [{"key": "/works/OL14903289W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10000933M 2 2010-03-11T23:51:20.834357 {"publishers": ["Stationery Office Books"], "key": "/books/OL10000933M", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 8, "isbn_13": ["9780108368455"], "physical_format": "Paperback", "isbn_10": ["0108368459"], "publish_date": "July 22, 1998", "last_modified": {"type": "/type/datetime", "value": "2010-03-11T23:51:20.834357"}, "authors": [{"key": "/authors/OL46053A"}], "title": "Government of Wales Bill [H.L.]", "latest_revision": 2, "works": [{"key": "/works/OL14903289W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10000987M 3 2011-04-29T21:00:47.782175 {"publishers": ["Stationery Office Books"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T21:00:47.782175"}, "title": "European Parliamentary Elections Bill", "number_of_pages": 2, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780108368998"], "isbn_10": ["0108368998"], "publish_date": "October 13, 1998", "key": "/books/OL10000987M", "authors": [{"key": "/authors/OL46053A"}], "latest_revision": 3, "oclc_numbers": ["314617439"], "works": [{"key": "/works/OL14903171W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10001116M 3 2011-04-29T06:51:00.740157 {"publishers": ["Stationery Office Books"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T06:51:00.740157"}, "title": "Pollution Prevention and Control Bill [H.L.]", "number_of_pages": 14, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780108380594"], "isbn_10": ["0108380599"], "publish_date": "December 31, 1998", "key": "/books/OL10001116M", "authors": [{"key": "/authors/OL46053A"}], "latest_revision": 3, "oclc_numbers": ["315032145"], "works": [{"key": "/works/OL14903046W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10001650M 2 2010-03-12T00:04:53.200037 {"publishers": ["Stationery Office Books"], "physical_format": "Paperback", "subjects": ["Central government", "United Kingdom, Great Britain"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_10": ["0108602974"], "number_of_pages": 34, "isbn_13": ["9780108602979"], "last_modified": {"type": "/type/datetime", "value": "2010-03-12T00:04:53.200037"}, "publish_date": "November 15, 1996", "key": "/books/OL10001650M", "authors": [{"key": "/authors/OL46053A"}], "title": "House of Commons Weekly Information Bulletin", "latest_revision": 2, "works": [{"key": "/works/OL14903389W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10001877M 3 2011-04-29T18:38:58.463367 {"publishers": ["Stationery Office Books"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T18:38:58.463367"}, "title": "Private International Law (Miscellaneous Provisions) Bill [H.L.]", "number_of_pages": 10, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780108700651"], "isbn_10": ["0108700658"], "publish_date": "December 31, 1994", "key": "/books/OL10001877M", "authors": [{"key": "/authors/OL46053A"}], "latest_revision": 3, "oclc_numbers": ["316181203"], "works": [{"key": "/works/OL14902946W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10002146M 3 2011-04-30T09:43:18.566468 {"publishers": ["Stationery Office Books"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-30T09:43:18.566468"}, "title": "Licensing (Sunday Hours) Bill", "number_of_pages": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780108709654"], "isbn_10": ["0108709655"], "publish_date": "June 14, 1995", "key": "/books/OL10002146M", "authors": [{"key": "/authors/OL46053A"}], "latest_revision": 3, "oclc_numbers": ["316115382"], "works": [{"key": "/works/OL14902632W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10002672M 2 2010-03-11T23:42:38.139442 {"publishers": ["Stationery Office Books"], "key": "/books/OL10002672M", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 20, "isbn_13": ["9780108741258"], "physical_format": "Paperback", "isbn_10": ["0108741257"], "publish_date": "May 19, 1995", "last_modified": {"type": "/type/datetime", "value": "2010-03-11T23:42:38.139442"}, "authors": [{"key": "/authors/OL46053A"}], "title": "Mental Health (Patients in the Community) Bill [H.L.]", "latest_revision": 2, "works": [{"key": "/works/OL14903185W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10002718M 3 2022-07-17T02:58:47.724959 {"publishers": ["Stationery Office Books"], "key": "/books/OL10002718M", "number_of_pages": 8, "isbn_13": ["9780108742774"], "physical_format": "Paperback", "isbn_10": ["0108742776"], "publish_date": "February 27, 1997", "authors": [{"key": "/authors/OL46053A"}], "title": "Protection from Harassment Bill", "works": [{"key": "/works/OL14903005W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780108742774"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T02:58:47.724959"}}
+/type/edition /books/OL10002962M 3 2011-04-28T07:47:54.302699 {"publishers": ["Stationery Office Books"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-28T07:47:54.302699"}, "title": "Asylum and Immigration Bill", "number_of_pages": 2, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780108750366"], "isbn_10": ["0108750361"], "publish_date": "May 15, 1996", "key": "/books/OL10002962M", "authors": [{"key": "/authors/OL46053A"}], "latest_revision": 3, "oclc_numbers": ["316001388"], "works": [{"key": "/works/OL14903294W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL1000315M 11 2022-02-26T18:16:08.564849 {"publishers": ["Texas A&M University Press"], "number_of_pages": 136, "subtitle": "uncursing Pandora", "isbn_10": ["0890967466"], "series": ["Carolyn and Ernest Fay series in analytical psychology ;", "no. 6"], "covers": [688084], "lc_classifications": ["BF175.5.S52 Y68 1997", "BF175.5.S52Y68 1997"], "key": "/books/OL1000315M", "authors": [{"key": "/authors/OL382095A"}], "ocaid": "genderdesireuncu0000youn", "publish_places": ["College Station"], "pagination": "xx, 136 p. ;", "source_records": ["marc:marc_records_scriblio_net/part25.dat:198074231:890", "marc:marc_loc_updates/v37.i50.records.utf8:3280344:1006", "ia:genderdesireuncu0000youn", "ia:genderdesireuncu0000youn_w5b0", "marc:marc_loc_2016/BooksAll.2016.part25.utf8:104060973:1107", "bwb:9780890967461"], "title": "Gender and desire", "dewey_decimal_class": ["155.3"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. [117]-130) and index."}, "identifiers": {"goodreads": ["622576"], "librarything": ["1966548"]}, "languages": [{"key": "/languages/eng"}], "lccn": ["96039207"], "subjects": ["Sexism", "Desire", "Psychoanalysis and feminism", "Jungian psychology", "Feminist psychology"], "publish_date": "1997", "publish_country": "txu", "by_statement": "Polly Young-Eisendrath ; foreword by David H. Rosen.", "works": [{"key": "/works/OL18275187W"}], "type": {"key": "/type/edition"}, "latest_revision": 11, "revision": 11, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-26T18:16:08.564849"}}
+/type/edition /books/OL10003508M 6 2022-07-17T06:36:56.689182 {"publishers": ["Stationery Office Books"], "title": "Medical (Professional Performance) Bill (Parliamentary Debates: [1994-95)", "isbn_13": ["9780109026958"], "physical_format": "Paperback", "isbn_10": ["0109026950"], "publish_date": "May 19, 1995", "key": "/books/OL10003508M", "authors": [{"key": "/authors/OL3362816A"}, {"key": "/authors/OL68747A"}, {"key": "/authors/OL46053A"}], "oclc_numbers": ["316186983"], "works": [{"key": "/works/OL14902270W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780109026958"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T06:36:56.689182"}}
+/type/edition /books/OL1000424M 10 2022-12-10T14:44:43.086660 {"other_titles": ["Lyme disease"], "publishers": ["H. Holt"], "number_of_pages": 283, "subtitle": "a practical guide to dealing with diagnosis and treatment", "isbn_10": ["0805047751"], "covers": [579756], "lc_classifications": ["RC155.5 .L38 1997", "RC155.5.L38 1997"], "url": ["http://www.loc.gov/catdir/description/hol055/96039326.html"], "key": "/books/OL1000424M", "authors": [{"key": "/authors/OL540905A"}], "publish_places": ["New York"], "contributions": ["Territo, Joseph."], "uri_descriptions": ["Publisher description"], "edition_name": "2nd ed.", "pagination": "xix, 283 p. ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part25.utf8:104158104:925", "bwb:9780805047752", "promise:bwb_daily_pallets_2020-03-26"], "title": "Coping with Lyme disease", "dewey_decimal_class": ["616.9/2"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. [262]-271) and index.\n\"An Owl book.\""}, "identifiers": {"librarything": ["804151"], "goodreads": ["4200765"], "amazon": [""]}, "languages": [{"key": "/languages/eng"}], "lccn": ["96039326"], "subjects": ["Lyme disease -- Popular works."], "publish_date": "1997", "publish_country": "nyu", "by_statement": "Denise Lang, with Joseph Territo ; foreword by Jim Youngblood.", "oclc_numbers": ["35750415"], "works": [{"key": "/works/OL3337142W"}], "type": {"key": "/type/edition"}, "uris": ["http://www.loc.gov/catdir/description/hol055/96039326.html"], "local_id": ["urn:bwbsku:978-BAA-525"], "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T14:44:43.086660"}}
+/type/edition /books/OL10004568M 4 2022-07-17T05:54:43.744513 {"publishers": ["Stationery Office Books"], "title": "Roads (Transitional Powers) (Scotland) Order 1995 (Parliamentary Debates: [1994-95)", "isbn_13": ["9780109627957"], "physical_format": "Paperback", "isbn_10": ["0109627954"], "publish_date": "August 20, 1995", "key": "/books/OL10004568M", "authors": [{"key": "/authors/OL35425A"}, {"key": "/authors/OL46053A"}], "oclc_numbers": ["315844854"], "works": [{"key": "/works/OL14895431W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780109627957"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T05:54:43.744513"}}
+/type/edition /books/OL10004590M 5 2022-07-17T04:11:14.951318 {"publishers": ["Stationery Office Books"], "title": "National Health Service (Optical Charges and Payments) Amendment (No. 3) Regulations 1995, National Health Service (Optical Charges and Payments) (Scotland) ... 1995 (Parliamentary Debates: [1994-95)", "isbn_13": ["9780109640956"], "physical_format": "Paperback", "isbn_10": ["0109640950"], "publish_date": "December 17, 1995", "key": "/books/OL10004590M", "authors": [{"key": "/authors/OL1103138A"}, {"key": "/authors/OL46053A"}], "oclc_numbers": ["315931599"], "works": [{"key": "/works/OL14891841W"}], "type": {"key": "/type/edition"}, "subjects": ["English law: social"], "source_records": ["bwb:9780109640956"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T04:11:14.951318"}}
+/type/edition /books/OL10004821M 2 2010-03-11T22:52:58.377759 {"publishers": ["Stationery Office Books"], "title": "Local Government Etc. (Scotland) Bill (Parliamentary Debates: [1993-94)", "isbn_10": ["0109854942"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780109854940"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-03-11T22:52:58.377759"}, "publish_date": "December 31, 1994", "key": "/books/OL10004821M", "authors": [{"key": "/authors/OL35425A"}, {"key": "/authors/OL46053A"}], "latest_revision": 2, "works": [{"key": "/works/OL14900707W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10005550M 3 2022-07-17T02:46:36.226585 {"publishers": ["Stationery Office Books"], "physical_format": "Paperback", "subjects": ["English Law"], "isbn_10": ["0110043758"], "number_of_pages": 4, "isbn_13": ["9780110043753"], "publish_date": "December 31, 1990", "key": "/books/OL10005550M", "authors": [{"key": "/authors/OL46053A"}], "title": "The Community Health Councils (Amendment) Regulations 1990 (Statutory Instruments: 1990: 1375)", "works": [{"key": "/works/OL14882234W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780110043753"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T02:46:36.226585"}}
+/type/edition /books/OL1000560M 4 2010-04-15T14:08:30.301705 {"subject_place": ["United States.", "United States"], "lc_classifications": ["RA997 .G35 1996"], "latest_revision": 4, "contributions": ["Briggs Corporation."], "edition_name": "3rd ed.", "source_records": ["marc:marc_records_scriblio_net/part25.dat:198299956:1198", "marc:marc_loc_updates/v37.i37.records.utf8:5812229:1198"], "title": "Resident care policies and procedures for nursing facilities", "languages": [{"key": "/languages/eng"}], "subjects": ["Nursing home care -- Standards -- United States", "Long-term care of the sick -- Standards -- United States", "Nursing care plans -- United States", "Geriatric nursing -- Standards -- United States", "Skilled Nursing Facilities -- standards -- United States -- handbooks", "Long-Term Care -- standards -- United States -- handbooks", "Nursing Care -- standards -- United States -- handbooks"], "publish_country": "iau", "by_statement": "by Delores L. Galias.", "type": {"key": "/type/edition"}, "revision": 4, "publishers": ["Briggs Corp."], "last_modified": {"type": "/type/datetime", "value": "2010-04-15T14:08:30.301705"}, "key": "/books/OL1000560M", "authors": [{"key": "/authors/OL441212A"}], "publish_places": ["Des Moines, Iowa"], "pagination": "p. cm.", "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "dewey_decimal_class": ["362.1/6/021873"], "notes": {"type": "/type/text", "value": "Includes bibliographical references."}, "identifiers": {"goodreads": ["3935081"]}, "lccn": ["96039475"], "isbn_10": ["0941353354"], "publish_date": "1996", "works": [{"key": "/works/OL2899575W"}]}
+/type/edition /books/OL10005699M 2 2022-07-17T04:59:40.328060 {"physical_format": "Paperback", "publishers": ["Stationery Office Books"], "number_of_pages": 6, "isbn_13": ["9780110057163"], "isbn_10": ["0110057163"], "publish_date": "December 31, 1991", "key": "/books/OL10005699M", "title": "The Quick-Frozen Foodstuffs Regulations 1990 (Statutory Instruments: 1990: 2615)", "type": {"key": "/type/edition"}, "subjects": ["English Law"], "works": [{"key": "/works/OL28225114W"}], "source_records": ["bwb:9780110057163"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T04:59:40.328060"}}
+/type/edition /books/OL10005755M 5 2022-07-17T04:33:29.983395 {"publishers": ["Stationery Office Books"], "identifiers": {"goodreads": ["6447818"]}, "subjects": ["English Law"], "type": {"key": "/type/edition"}, "number_of_pages": 2, "isbn_13": ["9780110106656"], "isbn_10": ["0110106652"], "publish_date": "December 31, 1971", "key": "/books/OL10005755M", "authors": [{"key": "/authors/OL46053A"}], "title": "The Industrial Reorganisation Corporation Dissolution (Appointed Day) Order 1971. (Statutory Instruments: 1971: 665)", "works": [{"key": "/works/OL14888385W"}], "physical_format": "Paperback", "source_records": ["bwb:9780110106656"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T04:33:29.983395"}}
+/type/edition /books/OL10005960M 2 2022-07-17T06:29:44.032226 {"physical_format": "Paperback", "publishers": ["Stationery Office Books"], "number_of_pages": 2, "isbn_13": ["9780110142562"], "isbn_10": ["011014256X"], "publish_date": "December 31, 1991", "key": "/books/OL10005960M", "title": "The Financial Services Act 1986 (Delegation) (No. 2) Order 1991 (Statutory Instruments: 1991: 1256)", "type": {"key": "/type/edition"}, "subjects": ["English Law"], "works": [{"key": "/works/OL28228943W"}], "source_records": ["bwb:9780110142562"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T06:29:44.032226"}}
+/type/edition /books/OL10006252M 2 2022-07-17T05:33:52.112213 {"physical_format": "Paperback", "publishers": ["Stationery Office Books"], "number_of_pages": 4, "isbn_13": ["9780110154121"], "isbn_10": ["0110154126"], "publish_date": "December 31, 1991", "key": "/books/OL10006252M", "title": "The Wellhouse National Health Service Trust (Establishment) Order 1991 (Statutory Instruments: 1991: 2412)", "type": {"key": "/type/edition"}, "subjects": ["English Law"], "works": [{"key": "/works/OL28226513W"}], "source_records": ["bwb:9780110154121"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T05:33:52.112213"}}
+/type/edition /books/OL1000640M 7 2023-01-06T17:36:38.766520 {"publishers": ["Springer"], "identifiers": {"goodreads": ["3946284"]}, "subtitle": "a practical approach to diagnosis and management", "isbn_10": ["3540760253"], "covers": [3857855], "lc_classifications": ["RC925 .S95 1997"], "key": "/books/OL1000640M", "authors": [{"key": "/authors/OL540988A"}], "ocaid": "neuromusculardis0000swas", "publish_places": ["London", "New York"], "contributions": ["Schwartz, Martin S. 1941-"], "languages": [{"key": "/languages/eng"}], "pagination": "xviii, 541 p. :", "source_records": ["ia:neuromusculardis0000swas", "marc:marc_loc_2016/BooksAll.2016.part25.utf8:104361963:954", "marc:marc_columbia/Columbia-extract-20221130-009.mrc:66824432:1521"], "title": "Neuromuscular diseases", "dewey_decimal_class": ["616.7/44"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 451-527) and index.\nRev. ed. of: c1988."}, "number_of_pages": 541, "edition_name": "3rd ed.", "lccn": ["96039564"], "subjects": ["Neuromuscular diseases.", "Neuromuscular Diseases -- diagnosis.", "Neuromuscular Diseases -- therapy."], "publish_date": "1997", "publish_country": "enk", "by_statement": "Michael Swash and Martin S. Schwartz.", "works": [{"key": "/works/OL3337520W"}], "type": {"key": "/type/edition"}, "oclc_numbers": ["35878780"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2023-01-06T17:36:38.766520"}}
+/type/edition /books/OL10006589M 2 2022-07-17T03:52:42.168942 {"physical_format": "Paperback", "publishers": ["Stationery Office Books"], "number_of_pages": 4, "isbn_13": ["9780110230429"], "isbn_10": ["0110230426"], "publish_date": "December 31, 1992", "key": "/books/OL10006589M", "title": "The Taxes (Relief for Gifts) (Designated Educational Establishments) Regulations 1992 (Statutory Instruments: 1992: 42)", "type": {"key": "/type/edition"}, "subjects": ["English Law"], "works": [{"key": "/works/OL28222337W"}], "source_records": ["bwb:9780110230429"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T03:52:42.168942"}}
+/type/edition /books/OL10006797M 2 2022-07-17T05:34:47.966687 {"physical_format": "Paperback", "publishers": ["Stationery Office Books"], "number_of_pages": 2, "isbn_13": ["9780110234526"], "isbn_10": ["0110234529"], "publish_date": "December 31, 1992", "key": "/books/OL10006797M", "title": "The A4 Trunk Road (Bristol City Boundary to East of Hicks Gate Roundabout) (Detrunking) Order 1992 (Statutory Instruments: 1992: 452)", "type": {"key": "/type/edition"}, "subjects": ["English Law"], "works": [{"key": "/works/OL28226644W"}], "source_records": ["bwb:9780110234526"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T05:34:47.966687"}}
+/type/edition /books/OL10006809M 2 2022-07-17T05:16:30.330134 {"physical_format": "Paperback", "publishers": ["Stationery Office Books"], "number_of_pages": 2, "isbn_13": ["9780110234717"], "isbn_10": ["0110234715"], "publish_date": "December 31, 1992", "key": "/books/OL10006809M", "title": "The Vehicle Inspectorate Trading Fund (Variation) Order 1992 (Statutory Instruments: 1992: 471)", "type": {"key": "/type/edition"}, "subjects": ["English Law"], "works": [{"key": "/works/OL28226207W"}], "source_records": ["bwb:9780110234717"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T05:16:30.330134"}}
+/type/edition /books/OL1000723M 3 2020-11-23T14:11:45.168143 {"publishers": ["Oceana Publications"], "isbn_10": ["0379008424"], "covers": [1189388], "lc_classifications": ["K3973 .I58"], "latest_revision": 3, "key": "/books/OL1000723M", "publish_places": ["Dobbs Ferry, N.Y"], "contributions": ["Raworth, Philip Marc, 1943-"], "pagination": "v. <1 > (loose-leaf) ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part25.utf8:104432796:952"], "title": "International regulation of trade in services", "dewey_decimal_class": ["341.7/54"], "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["96039650"], "subjects": ["Service industries -- Law and legislation.", "Professions -- Law and legislation."], "publish_date": "1996", "publish_country": "nyu", "last_modified": {"type": "/type/datetime", "value": "2020-11-23T14:11:45.168143"}, "by_statement": "compiled and edited by Philip Raworth.", "works": [{"key": "/works/OL23612580W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10007519M 2 2022-07-17T04:27:14.081825 {"physical_format": "Paperback", "publishers": ["Stationery Office Books"], "number_of_pages": 4, "isbn_13": ["9780110250106"], "isbn_10": ["0110250109"], "publish_date": "December 31, 1992", "key": "/books/OL10007519M", "title": "The Road Traffic Act 1991 (Commencement No. 5 and Transitional Provisions) Order 1992 (Statutory Instruments: 1992: 2010 (C. 70))", "type": {"key": "/type/edition"}, "subjects": ["English Law"], "works": [{"key": "/works/OL28223828W"}], "source_records": ["bwb:9780110250106"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T04:27:14.081825"}}
+/type/edition /books/OL10007709M 2 2022-07-17T03:53:52.253654 {"physical_format": "Paperback", "publishers": ["Stationery Office Books"], "number_of_pages": 4, "isbn_13": ["9780110252889"], "isbn_10": ["0110252888"], "publish_date": "December 31, 1992", "key": "/books/OL10007709M", "title": "The Education Assets Board (Transfers Under the Further and Higher Education Act 1992) Regulations 1992 (Statutory Instruments: 1992: 2288)", "type": {"key": "/type/edition"}, "subjects": ["English Law"], "works": [{"key": "/works/OL28222508W"}], "source_records": ["bwb:9780110252889"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T03:53:52.253654"}}
+/type/edition /books/OL10007866M 2 2022-07-17T02:48:28.070788 {"physical_format": "Paperback", "publishers": ["Stationery Office Books"], "number_of_pages": 4, "isbn_13": ["9780110254975"], "isbn_10": ["011025497X"], "publish_date": "December 31, 1992", "key": "/books/OL10007866M", "title": "The Leeds Community and Mental Health Services Teaching National Health Service Trust (Establishment) Order 1992 (Statutory Instruments: 1992: 2497)", "type": {"key": "/type/edition"}, "subjects": ["English Law"], "works": [{"key": "/works/OL28219653W"}], "source_records": ["bwb:9780110254975"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T02:48:28.070788"}}
+/type/edition /books/OL10008258M 2 2022-07-17T08:24:50.408650 {"physical_format": "Paperback", "subtitle": "Food", "publishers": ["Stationery Office Books"], "title": "SI 1982 No 1311", "isbn_13": ["9780110273112"], "isbn_10": ["0110273117"], "key": "/books/OL10008258M", "type": {"key": "/type/edition"}, "subjects": ["English law: public health & safety law", "Food manufacturing & related industries"], "works": [{"key": "/works/OL28233025W"}], "source_records": ["bwb:9780110273112"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T08:24:50.408650"}}
+/type/edition /books/OL10008314M 2 2022-07-17T03:54:12.000354 {"physical_format": "Paperback", "publishers": ["Stationery Office Books"], "number_of_pages": 8, "isbn_13": ["9780110330082"], "isbn_10": ["0110330080"], "publish_date": "December 31, 1993", "key": "/books/OL10008314M", "title": "The Foreign Fields (Specification) (Amendment) Order 1993 (Statutory Instruments: 1991: 1982)", "type": {"key": "/type/edition"}, "subjects": ["English Law"], "works": [{"key": "/works/OL28222553W"}], "source_records": ["bwb:9780110330082"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T03:54:12.000354"}}
+/type/edition /books/OL10008628M 3 2022-07-18T06:51:19.993207 {"publishers": ["Stationery Office Books"], "title": "The Glasgow Caledonian University (Establishment) (Scotland) Order 1993 (Statutory Instruments: 1993: 423 ()", "number_of_pages": 2, "isbn_13": ["9780110334233"], "physical_format": "Paperback", "isbn_10": ["011033423X"], "publish_date": "December 31, 1993", "key": "/books/OL10008628M", "oclc_numbers": ["27875227"], "type": {"key": "/type/edition"}, "subjects": ["Scots Law"], "works": [{"key": "/works/OL28315592W"}], "source_records": ["bwb:9780110334233"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-18T06:51:19.993207"}}
+/type/edition /books/OL10008635M 3 2022-07-17T05:35:42.992071 {"publishers": ["Stationery Office Books"], "title": "The Education (Designated Institutions in Further Education) Order 1993 (Statutory Instruments: 1993: 435)", "number_of_pages": 4, "isbn_13": ["9780110334356"], "physical_format": "Paperback", "isbn_10": ["0110334353"], "publish_date": "December 31, 1993", "key": "/books/OL10008635M", "oclc_numbers": ["27864512"], "type": {"key": "/type/edition"}, "subjects": ["English Law"], "works": [{"key": "/works/OL28226767W"}], "source_records": ["bwb:9780110334356"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T05:35:42.992071"}}
+/type/edition /books/OL10008642M 3 2022-07-17T05:01:51.688946 {"publishers": ["Stationery Office Books"], "title": "The Environmental Protection (Waste Recycling Payments) (Amendment) Regulations 1993 (Statutory Instruments: 1993: 445)", "number_of_pages": 4, "isbn_13": ["9780110334455"], "physical_format": "Paperback", "isbn_10": ["0110334450"], "publish_date": "December 31, 1993", "key": "/books/OL10008642M", "oclc_numbers": ["27965308"], "type": {"key": "/type/edition"}, "subjects": ["English Law"], "works": [{"key": "/works/OL28225429W"}], "source_records": ["bwb:9780110334455"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T05:01:51.688946"}}
+/type/edition /books/OL10008784M 3 2022-07-18T06:50:39.700373 {"publishers": ["Stationery Office Books"], "title": "The Local Authorities Etc. (Allowances) (Scotland) Amendment Regulations 1993 (Statutory Instruments: 1993: 644 ()", "number_of_pages": 4, "isbn_13": ["9780110336442"], "physical_format": "Paperback", "isbn_10": ["0110336445"], "publish_date": "December 31, 1993", "key": "/books/OL10008784M", "oclc_numbers": ["27965231"], "type": {"key": "/type/edition"}, "subjects": ["Scots Law"], "works": [{"key": "/works/OL28315528W"}], "source_records": ["bwb:9780110336442"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-18T06:50:39.700373"}}
+/type/edition /books/OL1000890M 15 2022-11-15T11:11:17.011981 {"publishers": ["A. Whitman"], "identifiers": {"librarything": ["1569373"], "goodreads": ["1425020", "173811"]}, "description": {"type": "/type/text", "value": "While helping their grandfather prepare for Greenfield's Winter Festival, the Alden children uncover a mystery surrounding the statue in the town square."}, "isbn_10": ["0807554294", "0807554308"], "series": ["The Boxcar children mysteries"], "covers": [10540042], "lc_classifications": ["PZ7.W244 Mxp 1996", "PZ7.W244Mxp 1996"], "key": "/books/OL1000890M", "authors": [{"key": "/authors/OL23048A"}], "ocaid": "mysteryofsecretm0000warn", "publish_places": ["Morton Grove, Ill"], "contributions": ["Tang, Charles, ill."], "pagination": "121 p. :", "source_records": ["ia:mysteryofsecretm0000warn", "marc:marc_loc_2016/BooksAll.2016.part25.utf8:104579768:1123", "bwb:9780807554302", "bwb:9780807554296", "amazon:0807554308"], "title": "The mystery of the secret message", "dewey_decimal_class": ["[Fic]"], "number_of_pages": 121, "languages": [{"key": "/languages/eng"}], "lccn": ["96039833"], "subjects": ["Brothers and sisters -- Fiction.", "Orphans -- Fiction.", "Statues -- Fiction.", "Mystery and detective stories."], "publish_date": "1996", "publish_country": "ilu", "by_statement": "created by Gertrude Chandler Warner ; illustrated by Charles Tang.", "works": [{"key": "/works/OL8198782W"}], "type": {"key": "/type/edition"}, "latest_revision": 15, "revision": 15, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-15T11:11:17.011981"}}
+/type/edition /books/OL10009233M 3 2022-07-17T02:49:04.748911 {"publishers": ["Stationery Office Books"], "title": "The Income-Related Benefits Schemes and Social Security (Recoupment) Amendment Regulations 1993 (Statutory Instruments: 1993: 1249)", "number_of_pages": 6, "isbn_13": ["9780110342498"], "physical_format": "Paperback", "isbn_10": ["0110342496"], "publish_date": "December 31, 1993", "key": "/books/OL10009233M", "oclc_numbers": ["28254460"], "type": {"key": "/type/edition"}, "subjects": ["English Law"], "works": [{"key": "/works/OL28219738W"}], "source_records": ["bwb:9780110342498"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T02:49:04.748911"}}
+/type/edition /books/OL10009336M 3 2022-07-17T05:52:56.566881 {"publishers": ["Stationery Office Books"], "title": "The Savings Certificates (Amendment) Regulations 1993 (Statutory Instruments: 1993: 3133)", "number_of_pages": 2, "isbn_13": ["9780110344645"], "physical_format": "Paperback", "isbn_10": ["0110344642"], "publish_date": "December 31, 1994", "key": "/books/OL10009336M", "oclc_numbers": ["29838101"], "type": {"key": "/type/edition"}, "subjects": ["English Law"], "works": [{"key": "/works/OL28227635W"}], "source_records": ["bwb:9780110344645"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T05:52:56.566881"}}
+/type/edition /books/OL10009364M 3 2022-07-17T03:54:44.938324 {"publishers": ["Stationery Office Books"], "title": "The Value Added Tax (Supply of Services) Order 1993 (Statutory Instruments: 1993: 1507)", "number_of_pages": 2, "isbn_13": ["9780110345079"], "physical_format": "Paperback", "isbn_10": ["011034507X"], "publish_date": "December 31, 1993", "key": "/books/OL10009364M", "oclc_numbers": ["28520481"], "type": {"key": "/type/edition"}, "subjects": ["English law: taxation law", "Taxation"], "works": [{"key": "/works/OL28222631W"}], "source_records": ["bwb:9780110345079"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T03:54:44.938324"}}
+/type/edition /books/OL1001052M 6 2020-11-23T14:15:17.603214 {"publishers": ["McGraw-Hill"], "number_of_pages": 180, "subtitle": "a guide for municipal finance professionals, board members, and investment managers", "isbn_10": ["0786308168"], "subject_place": ["United States."], "covers": [1474858], "lc_classifications": ["HJ3833 .O76 1997"], "latest_revision": 6, "key": "/books/OL1001052M", "authors": [{"key": "/authors/OL541135A"}], "publish_places": ["New York"], "contributions": ["Syal, Ashvin."], "pagination": "x, 180 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part25.utf8:104729089:841"], "title": "Investing local government funds", "dewey_decimal_class": ["354.8/8214/0973"], "notes": {"type": "/type/text", "value": "Includes bibliographical references and index."}, "identifiers": {"goodreads": ["1643909"]}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["96040003"], "subjects": ["Investment of public funds -- United States.", "Local finance -- United States."], "publish_date": "1997", "publish_country": "nyu", "last_modified": {"type": "/type/datetime", "value": "2020-11-23T14:15:17.603214"}, "by_statement": "Christopher N. Orndorff, Ashvin Syal.", "oclc_numbers": ["36045961"], "works": [{"key": "/works/OL3338099W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL1001053M 8 2020-11-23T14:15:18.814442 {"publishers": ["McGraw-Hill"], "number_of_pages": 656, "isbn_10": ["0256171769"], "covers": [149167], "lc_classifications": ["HB172 .K37 1998"], "latest_revision": 8, "key": "/books/OL1001053M", "authors": [{"key": "/authors/OL541136A"}], "ocaid": "microeconomics00katz_0", "publish_places": ["Boston, Mass"], "contributions": ["Rosen, Harvey S."], "lccn": ["96040004"], "uri_descriptions": ["Publisher description", "Table of contents"], "edition_name": "3rd ed.", "pagination": "xxx, 656 p. :", "source_records": ["ia:microeconomics00katz_0", "marc:marc_loc_2016/BooksAll.2016.part25.utf8:104729930:892"], "title": "Microeconomics", "url": ["http://www.loc.gov/catdir/description/mh022/96040004.html", "http://www.loc.gov/catdir/toc/mh022/96040004.html"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 639-644) and index.\nIncludes one transparent overlay."}, "identifiers": {"goodreads": ["350427"], "librarything": ["301584"]}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "dewey_decimal_class": ["338.5"], "subjects": ["Microeconomics."], "publish_date": "1998", "publish_country": "mau", "last_modified": {"type": "/type/datetime", "value": "2020-11-23T14:15:18.814442"}, "by_statement": "Michael L. Katz, Harvey S. Rosen.", "works": [{"key": "/works/OL3338101W"}], "type": {"key": "/type/edition"}, "uris": ["http://www.loc.gov/catdir/description/mh022/96040004.html", "http://www.loc.gov/catdir/toc/mh022/96040004.html"], "revision": 8}
+/type/edition /books/OL10010825M 3 2022-07-18T07:24:45.612160 {"publishers": ["Stationery Office Books"], "title": "The Wireless Telegraphy (Licence Charges) (Amendment) Regulations 1994 (Statutory Instruments: 1994: 659)", "number_of_pages": 16, "isbn_13": ["9780110436593"], "physical_format": "Paperback", "isbn_10": ["0110436598"], "publish_date": "December 31, 1994", "key": "/books/OL10010825M", "oclc_numbers": ["30884672"], "type": {"key": "/type/edition"}, "subjects": ["English Law"], "works": [{"key": "/works/OL28317704W"}], "source_records": ["bwb:9780110436593"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-18T07:24:45.612160"}}
+/type/edition /books/OL10011406M 3 2022-07-17T03:22:58.511782 {"publishers": ["Stationery Office Books"], "title": "The West Lindsey National Health Service Trust (Establishment) Amendment Order 1994 (Statutory Instruments: 1994: 1534)", "number_of_pages": 2, "isbn_13": ["9780110445342"], "physical_format": "Paperback", "isbn_10": ["0110445341"], "publish_date": "December 31, 1994", "key": "/books/OL10011406M", "oclc_numbers": ["30934666"], "type": {"key": "/type/edition"}, "subjects": ["English Law"], "works": [{"key": "/works/OL28221327W"}], "source_records": ["bwb:9780110445342"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T03:22:58.511782"}}
+/type/edition /books/OL10011450M 3 2022-07-17T03:55:42.824711 {"publishers": ["Stationery Office Books"], "title": "The International Headquarters and Defence Organisations (Designation and Privileges) (Amendment) Order 1994 (Statutory Instruments: 1994: 1642)", "number_of_pages": 2, "isbn_13": ["9780110446424"], "physical_format": "Paperback", "isbn_10": ["0110446429"], "publish_date": "December 31, 1994", "key": "/books/OL10011450M", "oclc_numbers": ["30901266"], "type": {"key": "/type/edition"}, "subjects": ["English Law"], "works": [{"key": "/works/OL28222773W"}], "source_records": ["bwb:9780110446424"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T03:55:42.824711"}}
+/type/edition /books/OL1001171M 7 2020-11-23T14:16:40.521739 {"publishers": ["Lucent Books"], "number_of_pages": 112, "description": {"type": "/type/text", "value": "Examines some of the causes of conflict between ethnic groups, the impact of such conflicts, instances of violence in various countries, and efforts to prevent it."}, "isbn_10": ["1560061847"], "series": ["Lucent overview series."], "covers": [3858291], "lc_classifications": ["GN496 .H85 1997"], "latest_revision": 7, "key": "/books/OL1001171M", "authors": [{"key": "/authors/OL22560A"}], "ocaid": "overviewserieset00mary", "publish_places": ["San Diego, Calif"], "pagination": "112 p. :", "source_records": ["ia:overviewserieset00mary", "marc:marc_loc_2016/BooksAll.2016.part25.utf8:104836844:1114"], "title": "Ethnic violence", "dewey_decimal_class": ["305.8"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 102-107) and index."}, "identifiers": {"librarything": ["1789828"]}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["96040128"], "subjects": ["Ethnic relations -- Political aspects -- Juvenile literature.", "Political violence -- Juvenile literature.", "Culture conflict -- Juvenile literature.", "Ethnic relations.", "Political violence.", "Culture conflict."], "publish_date": "1997", "publish_country": "cau", "last_modified": {"type": "/type/datetime", "value": "2020-11-23T14:16:40.521739"}, "by_statement": "by Mary Hull.", "oclc_numbers": ["36065991"], "works": [{"key": "/works/OL18175077W"}], "type": {"key": "/type/edition"}, "revision": 7}
+/type/edition /books/OL10011888M 3 2022-07-17T05:03:12.387484 {"publishers": ["Stationery Office Books"], "title": "The Salmon (Fish Passes and Screens) (Scotland) Regulations 1994 (Statutory Instruments: 1994: 2524 ()", "number_of_pages": 4, "isbn_13": ["9780110455242"], "physical_format": "Paperback", "isbn_10": ["011045524X"], "publish_date": "December 31, 1994", "key": "/books/OL10011888M", "oclc_numbers": ["31363367"], "type": {"key": "/type/edition"}, "subjects": ["Scots Law"], "works": [{"key": "/works/OL28225626W"}], "source_records": ["bwb:9780110455242"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T05:03:12.387484"}}
+/type/edition /books/OL10012630M 3 2022-07-17T04:31:23.773937 {"publishers": ["Stationery Office Books"], "title": "The Local Government (Wales) Act 1994 (Commencement No. 4) Order 1995 (Statutory Instruments: 1995: 852 (C. 22))", "number_of_pages": 6, "isbn_13": ["9780110527772"], "physical_format": "Paperback", "isbn_10": ["0110527771"], "publish_date": "April 30, 1995", "key": "/books/OL10012630M", "oclc_numbers": ["32343052"], "type": {"key": "/type/edition"}, "subjects": ["English Law"], "works": [{"key": "/works/OL28224388W"}], "source_records": ["bwb:9780110527772"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T04:31:23.773937"}}
+/type/edition /books/OL10012911M 3 2022-07-17T03:58:02.373115 {"publishers": ["Stationery Office Books"], "title": "The Isles of Scilly Sea Fisheries District (Variation) Order 1995 (Statutory Instruments: 1995: 1472)", "number_of_pages": 2, "isbn_13": ["9780110530635"], "physical_format": "Paperback", "isbn_10": ["0110530632"], "publish_date": "July 23, 1995", "key": "/books/OL10012911M", "oclc_numbers": ["32763934"], "type": {"key": "/type/edition"}, "subjects": ["English Law"], "works": [{"key": "/works/OL28223014W"}], "source_records": ["bwb:9780110530635"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T03:58:02.373115"}}
+/type/edition /books/OL10013366M 3 2022-07-17T02:52:22.034102 {"publishers": ["Stationery Office Books"], "title": "The Local Government Reorganisation (Wales) (Transitional Provisions No. 4) Order 1995 (Statutory Instruments: 1995: 2563)", "number_of_pages": 4, "isbn_13": ["9780110535296"], "physical_format": "Paperback", "isbn_10": ["0110535294"], "publish_date": "November 12, 1995", "key": "/books/OL10013366M", "oclc_numbers": ["34585112"], "type": {"key": "/type/edition"}, "subjects": ["English Law"], "works": [{"key": "/works/OL28220130W"}], "source_records": ["bwb:9780110535296"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T02:52:22.034102"}}
+/type/edition /books/OL1001351M 11 2022-11-18T16:40:46.991583 {"other_titles": ["Kierkegaard in ninety minutes"], "publishers": ["I.R. Dee"], "number_of_pages": 93, "isbn_10": ["1566631513", "1566631521"], "subject_place": ["Denmark"], "covers": [807510, 807508], "lc_classifications": ["B4376 .S77 1997", "B4376.S77 1997"], "key": "/books/OL1001351M", "authors": [{"key": "/authors/OL24693A"}], "publish_places": ["Chicago"], "subject_time": ["19th century."], "pagination": "93 p. ;", "source_records": ["bwb:9781566631518", "bwb:9781566631525", "marc:marc_loc_2016/BooksAll.2016.part25.utf8:104997661:855"], "title": "Kierkegaard in 90 minutes", "dewey_decimal_class": ["198/.9"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 91) and index."}, "identifiers": {"goodreads": ["5113658", "196270"], "librarything": ["520161"]}, "languages": [{"key": "/languages/eng"}], "lccn": ["96040319"], "subjects": ["Kierkegaard, S\u00f8ren, 1813-1855.", "Philosophers -- Denmark -- Biography.", "Philosophy, Modern -- 19th century.", "Existentialism."], "publish_date": "1997", "publish_country": "ilu", "by_statement": "Paul Strathern.", "works": [{"key": "/works/OL14927598W"}], "type": {"key": "/type/edition"}, "latest_revision": 11, "revision": 11, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-18T16:40:46.991583"}}
+/type/edition /books/OL10013573M 4 2022-07-18T08:54:47.245700 {"publishers": ["Stationery Office Books"], "physical_format": "Paperback", "title": "The Rent Officers (Additional Functions) (Amendment No. 2) Order 1995 (Statutory Instruments: 1995: 3148)", "number_of_pages": 4, "isbn_13": ["9780110537412"], "isbn_10": ["0110537416"], "publish_date": "December 31, 1995", "key": "/books/OL10013573M", "authors": [{"key": "/authors/OL46053A"}], "oclc_numbers": ["34121850"], "works": [{"key": "/works/OL14894881W"}], "type": {"key": "/type/edition"}, "subjects": ["English Law"], "source_records": ["bwb:9780110537412"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-18T08:54:47.245700"}}
+/type/edition /books/OL10014708M 3 2022-07-17T03:23:30.851970 {"publishers": ["Stationery Office Books"], "title": "The Central Regional Council (Prohibition of Swimming, Bathing Etc. in Reservoirs) Byelaws Extension Order 1995 (Statutory Instruments: 1995: 538 ()", "number_of_pages": 2, "isbn_13": ["9780110548975"], "physical_format": "Paperback", "isbn_10": ["0110548973"], "publish_date": "April 30, 1995", "key": "/books/OL10014708M", "oclc_numbers": ["32282041"], "type": {"key": "/type/edition"}, "subjects": ["Scots Law"], "works": [{"key": "/works/OL28221412W"}], "source_records": ["bwb:9780110548975"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T03:23:30.851970"}}
+/type/edition /books/OL10015014M 3 2022-07-18T05:44:52.620157 {"publishers": ["Stationery Office Books"], "title": "The Social Security Benefits Up-Rating Order 1995 (Statutory Instruments: 1995: Draft)", "number_of_pages": 35, "isbn_13": ["9780110552491"], "physical_format": "Paperback", "isbn_10": ["0110552490"], "publish_date": "April 6, 1995", "key": "/books/OL10015014M", "oclc_numbers": ["32370153"], "type": {"key": "/type/edition"}, "subjects": ["English Law"], "works": [{"key": "/works/OL28312306W"}], "source_records": ["bwb:9780110552491"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-18T05:44:52.620157"}}
+/type/edition /books/OL100157M 5 2020-12-02T07:30:27.418925 {"identifiers": {"goodreads": ["7338040"]}, "subtitle": "e\u0301criture et pense\u0301e chez Montesquieu", "series": ["Ecrivains"], "covers": [2142685], "lc_classifications": ["B2093.D43 C68 1999"], "edition_name": "1re e\u0301d.", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part28.utf8:88590513:903"], "title": "Inflexions de la rationalite\u0301 dans \"L'esprit des lois\"", "languages": [{"key": "/languages/fre"}], "subjects": ["Montesquieu, Charles de Secondat, baron de, 1689-1755.", "Law -- Philosophy.", "Reason.", "Rationalism."], "publish_country": "fr ", "by_statement": "Jean-Patrice Courtois.", "oclc_numbers": ["41470359"], "type": {"key": "/type/edition"}, "publishers": ["Presses universitaires de France"], "key": "/books/OL100157M", "authors": [{"key": "/authors/OL67284A"}], "publish_places": ["Paris"], "pagination": "320 p. ;", "lccn": ["99214415"], "notes": {"type": "/type/text", "value": "Includes bibliographical references."}, "number_of_pages": 320, "isbn_10": ["2130498345"], "publish_date": "1999", "works": [{"key": "/works/OL800853W"}], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-02T07:30:27.418925"}}
+/type/edition /books/OL1001602M 5 2020-11-23T14:21:25.267075 {"publishers": ["American Society of Association Executives"], "identifiers": {"goodreads": ["3609957"]}, "isbn_10": ["0880341203"], "subject_place": ["United States."], "lc_classifications": ["HD3630.U7 H355 1997"], "latest_revision": 5, "key": "/books/OL1001602M", "authors": [{"key": "/authors/OL541348A"}], "publish_places": ["Washington, DC"], "pagination": "xi, 157 p. ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part25.utf8:105227886:735"], "title": "The fundamentals of accreditation", "dewey_decimal_class": ["331.7"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 153-155)."}, "number_of_pages": 157, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["96040865"], "subjects": ["Professions -- Certification -- United States.", "Professions -- Licenses -- United States."], "publish_date": "1997", "publish_country": "dcu", "last_modified": {"type": "/type/datetime", "value": "2020-11-23T14:21:25.267075"}, "by_statement": "Michael S. Hamm.", "oclc_numbers": ["35792238"], "works": [{"key": "/works/OL3339052W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10016364M 4 2022-07-17T03:27:24.167644 {"publishers": ["Stationery Office Books"], "physical_format": "Paperback", "title": "The Parliamentary Pensions (Amendment) Regulations 1996 (Statutory Instruments: 1996: 2406)", "number_of_pages": 4, "isbn_13": ["9780110630366"], "isbn_10": ["011063036X"], "publish_date": "October 16, 1996", "key": "/books/OL10016364M", "authors": [{"key": "/authors/OL46053A"}], "oclc_numbers": ["35999521"], "works": [{"key": "/works/OL14893023W"}], "type": {"key": "/type/edition"}, "subjects": ["English Law"], "source_records": ["bwb:9780110630366"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T03:27:24.167644"}}
+/type/edition /books/OL10016849M 4 2022-07-17T02:55:41.978775 {"publishers": ["Stationery Office Books"], "physical_format": "Paperback", "title": "The Sole (Specified Sea Areas) (Prohibition of Fishing) Order 199 (Statutory Instruments: 1996: 3235)", "number_of_pages": 4, "isbn_13": ["9780110635309"], "isbn_10": ["0110635302"], "publish_date": "January 18, 1997", "key": "/books/OL10016849M", "authors": [{"key": "/authors/OL46053A"}], "oclc_numbers": ["37648453"], "works": [{"key": "/works/OL14896914W"}], "type": {"key": "/type/edition"}, "subjects": ["English Law"], "source_records": ["bwb:9780110635309"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T02:55:41.978775"}}
+/type/edition /books/OL10016941M 4 2022-07-18T05:06:34.150500 {"publishers": ["Stationery Office Books"], "physical_format": "Paperback", "title": "The Companies Act 1985 (Directors' Report) (Statement of Payment Practice) Regulations 1997 (Statutory Instruments: 1997: Draft)", "number_of_pages": 4, "isbn_13": ["9780110636221"], "isbn_10": ["0110636228"], "publish_date": "January 31, 1997", "key": "/books/OL10016941M", "authors": [{"key": "/authors/OL46053A"}], "oclc_numbers": ["38061217"], "works": [{"key": "/works/OL14900025W"}], "type": {"key": "/type/edition"}, "subjects": ["English Law"], "source_records": ["bwb:9780110636221"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-18T05:06:34.150500"}}
+/type/edition /books/OL10017363M 3 2022-07-17T03:29:22.931368 {"publishers": ["Stationery Office Books"], "physical_format": "Paperback", "subjects": ["English Law"], "isbn_10": ["0110640470"], "number_of_pages": 4, "isbn_13": ["9780110640471"], "publish_date": "March 13, 1997", "key": "/books/OL10017363M", "authors": [{"key": "/authors/OL46053A"}], "title": "The Social Security (Contributions) (RE-Rating and National Insurance Fund Payments) Order 1997 (Statutory Instruments: 1997: 544)", "works": [{"key": "/works/OL14896711W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780110640471"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T03:29:22.931368"}}
+/type/edition /books/OL10018741M 3 2011-04-27T00:13:12.261710 {"publishers": ["Stationery Office Books"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T00:13:12.261710"}, "title": "The Mackerel (Specified Sea Areas) (Prohibition of Fishing) Order 1997 (Statutory Instruments: 1997: 2963)", "number_of_pages": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780110654935"], "isbn_10": ["0110654935"], "publish_date": "February 22, 1998", "key": "/books/OL10018741M", "authors": [{"key": "/authors/OL46053A"}], "latest_revision": 3, "oclc_numbers": ["40716930"], "works": [{"key": "/works/OL14890062W"}], "type": {"key": "/type/edition"}, "subjects": ["English Law"], "revision": 3}
+/type/edition /books/OL10018809M 4 2022-07-17T02:24:26.913811 {"publishers": ["Stationery Office Books"], "physical_format": "Paperback", "title": "The Cardiff to Glan Conwy Trunk Road (A470) (Ty Nant to North Maentwrog Road Station Improvement) Order 1998 (Statutory Instruments: 1998: 329)", "number_of_pages": 2, "isbn_13": ["9780110655628"], "isbn_10": ["0110655621"], "publish_date": "March 12, 1998", "key": "/books/OL10018809M", "authors": [{"key": "/authors/OL46053A"}], "oclc_numbers": ["40785036"], "works": [{"key": "/works/OL14881337W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780110655628"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T02:24:26.913811"}}
+/type/edition /books/OL10019049M 4 2022-07-17T06:30:20.062847 {"publishers": ["Stationery Office Books"], "physical_format": "Paperback", "title": "The South Durham Health Care National Health Service Trusts (Establishment) Order 1998 (Statutory Instruments: 1998: 832)", "number_of_pages": 4, "isbn_13": ["9780110658087"], "isbn_10": ["0110658086"], "publish_date": "April 10, 1998", "key": "/books/OL10019049M", "authors": [{"key": "/authors/OL46053A"}], "oclc_numbers": ["41575142"], "works": [{"key": "/works/OL14896942W"}], "type": {"key": "/type/edition"}, "subjects": ["English Law"], "source_records": ["bwb:9780110658087"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T06:30:20.062847"}}
+/type/edition /books/OL1001927M 9 2021-10-08T20:04:19.440048 {"publishers": ["Creative Education"], "number_of_pages": 31, "description": {"type": "/type/text", "value": "Briefly describes specific disasters throughout history, both natural, such as tornadoes and disease, and manmade, such as airplane crashes and mine explosions."}, "isbn_10": ["0886828619"], "series": ["It's a fact!"], "covers": [3858573], "lc_classifications": ["D421 .M26 1997", "D421.M26 1997"], "key": "/books/OL1001927M", "ocaid": "majordisastersit00staf", "publish_places": ["Mankato, Minn"], "subject_time": ["20th century", "19th century"], "pagination": "31 p. :", "source_records": ["ia:majordisastersit00staf", "marc:marc_loc_2016/BooksAll.2016.part25.utf8:105520637:1014", "bwb:9780886828615"], "title": "Major disasters.", "dewey_decimal_class": ["904"], "notes": {"type": "/type/text", "value": "Includes index."}, "identifiers": {"librarything": ["6247485"], "goodreads": ["4759619"]}, "languages": [{"key": "/languages/eng"}], "lccn": ["96041215"], "subjects": ["History, Modern -- 20th century -- Juvenile literature.", "History, Modern -- 19th century -- Juvenile literature.", "Disasters -- History -- 20th century -- Juvenile literature.", "Disasters -- History -- 19th century -- Juvenile literature.", "Disasters -- History."], "publish_date": "1997", "publish_country": "mnu", "oclc_numbers": ["35627578"], "works": [{"key": "/works/OL18172348W"}], "type": {"key": "/type/edition"}, "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2021-10-08T20:04:19.440048"}}
+/type/edition /books/OL10019309M 3 2022-07-18T05:07:11.723499 {"publishers": ["Stationery Office Books"], "physical_format": "Paperback", "subjects": ["English Law"], "isbn_10": ["011067166X"], "number_of_pages": 3, "isbn_13": ["9780110671666"], "publish_date": "December 31, 1986", "key": "/books/OL10019309M", "authors": [{"key": "/authors/OL46053A"}], "title": "The Judgments Enforcement (Amendment) (Northern Ireland) Order 1986 (Statutory Instruments: 1986: 1166 (N.I. 11))", "works": [{"key": "/works/OL14888786W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780110671666"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-18T05:07:11.723499"}}
+/type/edition /books/OL10019320M 3 2022-07-17T02:17:38.060047 {"publishers": ["Stationery Office Books"], "physical_format": "Paperback", "subjects": ["English Law"], "isbn_10": ["0110673565"], "number_of_pages": 3, "isbn_13": ["9780110673561"], "publish_date": "December 31, 1986", "key": "/books/OL10019320M", "authors": [{"key": "/authors/OL46053A"}], "title": "The Gas Act 1986 (Consequential Modifications of Subordinate Legislation) Order 1986 (Statutory Instruments: 1986: 1356)", "works": [{"key": "/works/OL14886858W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780110673561"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T02:17:38.060047"}}
+/type/edition /books/OL10019764M 3 2022-07-17T05:03:47.943305 {"publishers": ["Stationery Office Books"], "physical_format": "Paperback", "subjects": ["English Law"], "isbn_10": ["0110773276"], "number_of_pages": 9, "isbn_13": ["9780110773278"], "publish_date": "December 31, 1987", "key": "/books/OL10019764M", "authors": [{"key": "/authors/OL46053A"}], "title": "The Motor Vehicles (Authorisation of Special Types) (Amendment) Order 1987 (Statutory Instruments: 1987: 1327)", "works": [{"key": "/works/OL14891497W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780110773278"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T05:03:47.943305"}}
+/type/edition /books/OL10020288M 4 2022-07-17T10:40:12.374778 {"publishers": ["Stationery Office Books"], "physical_format": "Paperback", "title": "The Foreign Satellite Service Proscription Order 1998 (Statutory Instruments: 1998: 1865)", "number_of_pages": 2, "isbn_13": ["9780110794099"], "isbn_10": ["0110794095"], "publish_date": "August 20, 1998", "key": "/books/OL10020288M", "authors": [{"key": "/authors/OL46053A"}], "oclc_numbers": ["42391713"], "works": [{"key": "/works/OL14886635W"}], "type": {"key": "/type/edition"}, "subjects": ["English Law"], "source_records": ["bwb:9780110794099"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T10:40:12.374778"}}
+/type/edition /books/OL10020321M 4 2022-07-17T11:26:01.629225 {"publishers": ["Stationery Office Books"], "physical_format": "Paperback", "title": "The International Monetary Fund (Increase in Subscription) Order 1998 (Statutory Instruments: 1998: 1854)", "number_of_pages": 2, "isbn_13": ["9780110794426"], "isbn_10": ["0110794427"], "publish_date": "September 2, 1998", "key": "/books/OL10020321M", "authors": [{"key": "/authors/OL46053A"}], "oclc_numbers": ["44463752"], "works": [{"key": "/works/OL14888638W"}], "type": {"key": "/type/edition"}, "subjects": ["English Law"], "source_records": ["bwb:9780110794426"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T11:26:01.629225"}}
+/type/edition /books/OL10020452M 4 2022-07-17T08:24:57.276788 {"publishers": ["Stationery Office Books"], "physical_format": "Paperback", "title": "The Environmentally Sensitive Areas (North Kent Marshes) Designation (Amendment) (No. 2) Order 1998 (Statutory Instruments: 1998: 2176)", "number_of_pages": 2, "isbn_13": ["9780110795768"], "isbn_10": ["0110795768"], "publish_date": "September 30, 1998", "key": "/books/OL10020452M", "authors": [{"key": "/authors/OL46053A"}], "oclc_numbers": ["42370590"], "works": [{"key": "/works/OL14885204W"}], "type": {"key": "/type/edition"}, "subjects": ["English Law"], "source_records": ["bwb:9780110795768"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T08:24:57.276788"}}
+/type/edition /books/OL10020588M 4 2022-07-17T06:51:22.076496 {"publishers": ["Stationery Office Books"], "physical_format": "Paperback", "title": "The Borough of Dacorum (Electoral Changes) Order 1998 (Statutory Instruments: 1998: 2552)", "number_of_pages": 4, "isbn_13": ["9780110797120"], "isbn_10": ["0110797124"], "publish_date": "October 27, 1998", "key": "/books/OL10020588M", "authors": [{"key": "/authors/OL46053A"}], "oclc_numbers": ["42210551"], "works": [{"key": "/works/OL14880898W"}], "type": {"key": "/type/edition"}, "subjects": ["English Law"], "source_records": ["bwb:9780110797120"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T06:51:22.076496"}}
+/type/edition /books/OL10020714M 4 2022-07-17T11:26:32.978229 {"publishers": ["Stationery Office Books"], "physical_format": "Paperback", "title": "The Charges for Inspections and Controls (Amendment) Regulations 1998 (Statutory Instruments: 1998: 2860)", "number_of_pages": 4, "isbn_13": ["9780110798486"], "isbn_10": ["0110798481"], "publish_date": "December 9, 1998", "key": "/books/OL10020714M", "authors": [{"key": "/authors/OL46053A"}], "oclc_numbers": ["42434733"], "works": [{"key": "/works/OL14881524W"}], "type": {"key": "/type/edition"}, "subjects": ["English Law"], "source_records": ["bwb:9780110798486"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T11:26:32.978229"}}
+/type/edition /books/OL10021034M 3 2011-04-28T19:00:56.106667 {"publishers": ["Stationery Office Books"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-28T19:00:56.106667"}, "title": "The Greater Manchester (Light Rapid Transit System) (Airport Extension Order 1997) (Moor Road Modification) Order 1999 (Statutory Instruments: 1999: 217)", "number_of_pages": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780110804200"], "isbn_10": ["0110804201"], "publish_date": "February 17, 1999", "key": "/books/OL10021034M", "authors": [{"key": "/authors/OL46053A"}], "latest_revision": 3, "oclc_numbers": ["43191552"], "works": [{"key": "/works/OL14887249W"}], "type": {"key": "/type/edition"}, "subjects": ["English Law"], "revision": 3}
+/type/edition /books/OL10021047M 2 2011-04-29T17:12:52.879265 {"publishers": ["The Stationery Office Books (Agencies)"], "last_modified": {"type": "/type/datetime", "value": "2011-04-29T17:12:52.879265"}, "title": "The Transport of Dangerous Goods (Safety Advisors) Regulations 1999: Health and Safety (Statutory Instruments: 1999: 257)", "number_of_pages": 16, "isbn_13": ["9780110804347"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0110804341"], "publish_date": "1999", "key": "/books/OL10021047M", "latest_revision": 2, "oclc_numbers": ["43144905"], "type": {"key": "/type/edition"}, "subjects": ["Occupational / industrial health & safety", "Road transport & haulage trades"], "revision": 2}
+/type/edition /books/OL10021126M 2 2010-03-11T21:23:08.607912 {"publishers": ["Stationery Office Books"], "physical_format": "Paperback", "subjects": ["English Law"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_10": ["0110820576"], "number_of_pages": 10, "isbn_13": ["9780110820576"], "last_modified": {"type": "/type/datetime", "value": "2010-03-11T21:23:08.607912"}, "publish_date": "March 5, 1999", "key": "/books/OL10021126M", "authors": [{"key": "/authors/OL46053A"}], "title": "Northern Ireland (Modification of Enactments - No. 1) Order 1999 (Statutory Instruments: 1999: Draft)", "latest_revision": 2, "works": [{"key": "/works/OL14892377W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10021389M 2 2010-03-11T21:23:46.818220 {"publishers": ["Stationery Office Books"], "physical_format": "Paperback", "subjects": ["English Law"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_10": ["0110823281"], "number_of_pages": 2, "isbn_13": ["9780110823287"], "last_modified": {"type": "/type/datetime", "value": "2010-03-11T21:23:46.818220"}, "publish_date": "April 8, 1999", "key": "/books/OL10021389M", "authors": [{"key": "/authors/OL46053A"}], "title": "The North Sefton & West Lancashire Community National Health Service Trust (Establishment) Order 1999 (Statutory Instruments: 1999: 888)", "latest_revision": 2, "works": [{"key": "/works/OL14892450W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10021590M 4 2022-07-17T10:49:32.001325 {"publishers": ["Stationery Office Books"], "physical_format": "Paperback", "title": "The Education (Information as to Provision of Education) (England) Regulations 1999 (Statutory Instruments: 1999: 1066)", "number_of_pages": 8, "isbn_13": ["9780110825335"], "isbn_10": ["0110825330"], "publish_date": "May 6, 1999", "key": "/books/OL10021590M", "authors": [{"key": "/authors/OL46053A"}], "oclc_numbers": ["45179856"], "works": [{"key": "/works/OL14884629W"}], "type": {"key": "/type/edition"}, "subjects": ["English Law"], "source_records": ["bwb:9780110825335"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T10:49:32.001325"}}
+/type/edition /books/OL10022249M 3 2022-07-17T02:51:10.577279 {"publishers": ["Stationery Office Books"], "physical_format": "Paperback", "subjects": ["English Law"], "isbn_10": ["0110875605"], "number_of_pages": 2, "isbn_13": ["9780110875606"], "publish_date": "December 31, 1988", "key": "/books/OL10022249M", "authors": [{"key": "/authors/OL46053A"}], "title": "The Submarine Pipe-Lines (Designated Owners) (No. 26) Order 1988 (Statutory Instruments: 1988: 1560)", "works": [{"key": "/works/OL14897404W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780110875606"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T02:51:10.577279"}}
+/type/edition /books/OL1002231M 7 2022-03-14T06:06:44.680206 {"publishers": ["Garland Pub."], "identifiers": {"goodreads": ["3587568"]}, "isbn_10": ["0815325983"], "subject_place": ["United States", "United States."], "covers": [1546583], "lc_classifications": ["HD62.7 .T63 1996", "HD62.7.T63 1996"], "key": "/books/OL1002231M", "authors": [{"key": "/authors/OL541602A"}], "publish_places": ["New York"], "pagination": "xv, 121 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part25.utf8:105792513:925", "bwb:9780815325987", "ia:innovationgrowth0000todd"], "title": "Innovation and growth in an African American owned business", "dewey_decimal_class": ["658/.0089/96073"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 113-118) and index."}, "number_of_pages": 121, "languages": [{"key": "/languages/eng"}], "lccn": ["96041528"], "subjects": ["Don Todd Associates.", "African American business enterprises -- Management.", "Small business -- United States -- Management.", "Entrepreneurship -- United States."], "publish_date": "1996", "publish_country": "nyu", "series": ["Garland studies in entrepreneurship"], "by_statement": "Gwendolyn Powell Todd.", "works": [{"key": "/works/OL3340110W"}], "type": {"key": "/type/edition"}, "ocaid": "innovationgrowth0000todd", "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-14T06:06:44.680206"}}
+/type/edition /books/OL10022492M 2 2022-07-17T02:18:08.488678 {"physical_format": "Paperback", "publishers": ["Stationery Office Books"], "number_of_pages": 2, "isbn_13": ["9780110961118"], "isbn_10": ["0110961110"], "publish_date": "December 31, 1989", "key": "/books/OL10022492M", "title": "The Health and Medicines Act 1988 (Commencement No. 2) Order 1989 (Statutory Instruments: 1989: 111 (C. 4))", "type": {"key": "/type/edition"}, "subjects": ["English Law"], "works": [{"key": "/works/OL28218535W"}], "source_records": ["bwb:9780110961118"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T02:18:08.488678"}}
+/type/edition /books/OL1002252M 11 2022-12-10T06:02:54.940059 {"publishers": ["Harvest House Publishers"], "identifiers": {"librarything": ["179842"], "goodreads": ["1517911"]}, "ia_box_id": ["IA133108"], "isbn_10": ["1565075315"], "covers": [802631], "lc_classifications": ["BV4596.S5 M35 1997"], "key": "/books/OL1002252M", "authors": [{"key": "/authors/OL217945A"}], "ocaid": "whattodountillov00mcki", "publish_places": ["Eugene, Or"], "pagination": "198, [1] p. ;", "source_records": ["marc:marc_records_scriblio_net/part25.dat:199825654:851", "ia:whattodountillov00mcki", "ia:whattodountillov00mcki", "ia:whattodountillov00mcki", "marc:marc_loc_2016/BooksAll.2016.part25.utf8:105811047:851", "promise:bwb_daily_pallets_2020-07-07"], "title": "What to do until love finds you", "dewey_decimal_class": ["248.8/432"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. [199])."}, "number_of_pages": 198, "languages": [{"key": "/languages/eng"}], "lccn": ["96041550"], "subjects": ["Single women -- Religious life", "Christian women -- Religious life", "Mate selection -- Religious aspects -- Christianity", "Dating (Social customs) -- Religious aspects -- Christianity"], "publish_date": "1997", "publish_country": "oru", "by_statement": "Michelle McKinney Hammond.", "works": [{"key": "/works/OL1817707W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:P6-BWV-787"], "latest_revision": 11, "revision": 11, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T06:02:54.940059"}}
+/type/edition /books/OL10022617M 2 2022-07-18T08:25:39.209787 {"physical_format": "Paperback", "publishers": ["Stationery Office Books"], "number_of_pages": 14, "isbn_13": ["9780110968049"], "isbn_10": ["0110968042"], "publish_date": "December 31, 1989", "key": "/books/OL10022617M", "title": "The National Health Service (Superannuation) Amendment Regulations 1989 (Statutory Instruments: 1989: 804)", "type": {"key": "/type/edition"}, "subjects": ["English Law"], "works": [{"key": "/works/OL28321221W"}], "source_records": ["bwb:9780110968049"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-18T08:25:39.209787"}}
+/type/edition /books/OL10022653M 3 2022-07-18T06:24:25.361524 {"publishers": ["Stationery Office Books"], "physical_format": "Paperback", "subjects": ["English Law"], "isbn_10": ["0110969014"], "number_of_pages": 5, "isbn_13": ["9780110969015"], "publish_date": "December 31, 1989", "key": "/books/OL10022653M", "authors": [{"key": "/authors/OL46053A"}], "title": "The Education (Modification of Enactments Relating to Employment) Order 1989 (Statutory Instruments: 1989: 901)", "works": [{"key": "/works/OL14884668W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780110969015"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-18T06:24:25.361524"}}
+/type/edition /books/OL10023122M 6 2022-07-17T05:10:58.706251 {"publishers": ["Bernan Press"], "identifiers": {"goodreads": ["2345860"]}, "title": "Report of the Committee on the Ethics of Genetic Modification & Food Use", "type": {"key": "/type/edition"}, "number_of_pages": 53, "isbn_13": ["9780112429548"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0112429548"], "publish_date": "November 1993", "key": "/books/OL10023122M", "authors": [{"key": "/authors/OL46053A"}], "oclc_numbers": ["29223395"], "works": [{"key": "/works/OL14895029W"}], "physical_format": "Paperback", "subjects": ["Food & beverage technology", "Genetic engineering", "Public health & preventive medicine", "Ethics & Moral Philosophy", "Philosophy", "Business/Economics"], "source_records": ["bwb:9780112429548"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T05:10:58.706251"}}
+/type/edition /books/OL1002338M 10 2020-11-23T14:29:18.450987 {"other_titles": ["Private wealth and public life"], "publishers": ["Johns Hopkins University Press"], "number_of_pages": 349, "subtitle": "foundation philanthropy and the reshaping of American social policy from the Progressive Era to the New Deal", "isbn_10": ["0801854601"], "subject_place": ["United States"], "covers": [1508763], "lc_classifications": ["HV91 .S3 1997", "HV91.S3 1997"], "latest_revision": 10, "url": ["http://www.loc.gov/catdir/bios/jhu051/96041649.html", "http://www.loc.gov/catdir/description/jhu052/96041649.html", "http://www.h-net.org/review/hrev-a0b9q4-aa"], "key": "/books/OL1002338M", "authors": [{"key": "/authors/OL541635A"}], "ocaid": "isbn_9780801854606", "publish_places": ["Baltimore"], "uri_descriptions": ["Contributor biographical information", "Publisher description", "Book review (H-Net)"], "pagination": "xii, 349 p. :", "source_records": ["ia:isbn_9780801854606", "bwb:9780801854606", "marc:marc_loc_2016/BooksAll.2016.part25.utf8:105893349:1183"], "title": "Private wealth & public life", "dewey_decimal_class": ["361.7/0973"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. [297]-342) and index."}, "identifiers": {"goodreads": ["1729573"], "librarything": ["3732905"]}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["96041649"], "subjects": ["Endowments -- United States -- History -- 20th century.", "United States -- Social policy."], "publish_date": "1997", "publish_country": "mdu", "last_modified": {"type": "/type/datetime", "value": "2020-11-23T14:29:18.450987"}, "by_statement": "Judith Sealander.", "subject_time": ["20th century."], "works": [{"key": "/works/OL3340291W"}], "type": {"key": "/type/edition"}, "uris": ["http://www.loc.gov/catdir/bios/jhu051/96041649.html", "http://www.loc.gov/catdir/description/jhu052/96041649.html", "http://www.h-net.org/review/hrev-a0b9q4-aa"], "revision": 10}
+/type/edition /books/OL10023547M 2 2010-03-11T23:23:30.080657 {"publishers": ["Stationery Office Books"], "key": "/books/OL10023547M", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 19, "isbn_13": ["9780112709633"], "physical_format": "Paperback", "isbn_10": ["011270963X"], "publish_date": "August 15, 1996", "last_modified": {"type": "/type/datetime", "value": "2010-03-11T23:23:30.080657"}, "authors": [{"key": "/authors/OL46053A"}], "title": "Statistical Bulletin", "latest_revision": 2, "works": [{"key": "/works/OL14902764W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10024263M 4 2022-07-17T06:30:54.412402 {"publishers": ["Stationery Office Books"], "title": "Estate Maintenance and Works Operations (Health Building Note)", "number_of_pages": 60, "isbn_13": ["9780113214907"], "physical_format": "Paperback", "isbn_10": ["0113214901"], "publish_date": "December 31, 1992", "key": "/books/OL10024263M", "authors": [{"key": "/authors/OL3362635A"}], "oclc_numbers": ["26342450"], "works": [{"key": "/works/OL9314388W"}], "type": {"key": "/type/edition"}, "subjects": ["Health systems & services", "United Kingdom, Great Britain"], "source_records": ["bwb:9780113214907"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T06:30:54.412402"}}
+/type/edition /books/OL10024415M 5 2022-12-09T13:37:41.492387 {"publishers": ["Stationery Office Books"], "title": "Services to Disabled Children and Their Families", "number_of_pages": 72, "isbn_13": ["9780113217069"], "physical_format": "Paperback", "isbn_10": ["0113217064"], "publish_date": "February 1994", "key": "/books/OL10024415M", "authors": [{"key": "/authors/OL2645781A"}], "oclc_numbers": ["30784074"], "works": [{"key": "/works/OL7925346W"}], "type": {"key": "/type/edition"}, "subjects": ["Children", "Disability: social aspects", "Family welfare"], "source_records": ["bwb:9780113217069", "promise:bwb_daily_pallets_2020-11-19"], "local_id": ["urn:bwbsku:KO-029-215"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T13:37:41.492387"}}
+/type/edition /books/OL1002466M 10 2022-11-12T03:22:27.275684 {"publishers": ["Cowley Publications"], "identifiers": {"goodreads": ["759785"], "librarything": ["1266185"]}, "subtitle": "stories of Roman Catholics entering the Episcopal Church", "isbn_10": ["1561011339"], "subject_place": ["United States"], "pagination": "x, 184 p. ;", "covers": [792034], "lc_classifications": ["BX5990 .W43 1997", "BX5990.W43 1997"], "key": "/books/OL1002466M", "authors": [{"key": "/authors/OL34317A"}], "publish_places": ["Cambridge, Mass"], "genres": ["Biography."], "source_records": ["marc:marc_records_scriblio_net/part25.dat:200022910:974", "bwb:9781561011339", "marc:marc_loc_2016/BooksAll.2016.part25.utf8:106013067:974", "promise:bwb_daily_pallets_2022-10-17"], "title": "Finding home", "dewey_decimal_class": ["283/.73"], "notes": {"type": "/type/text", "value": "Includes bibliographical references."}, "number_of_pages": 184, "languages": [{"key": "/languages/eng"}], "lccn": ["96041781"], "subjects": ["Episcopal Church -- Membership.", "Catholic Church -- United States -- Membership.", "Anglican converts -- United States -- Biography.", "Episcopalians -- Biography.", "Anglican Communion -- United States -- Biography.", "Anglican Communion -- United States -- Membership."], "publish_date": "1997", "publish_country": "mau", "by_statement": "Christopher L. Webber.", "works": [{"key": "/works/OL18879818W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:W7-CGK-663"], "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-12T03:22:27.275684"}}
+/type/edition /books/OL10024874M 3 2022-07-17T15:50:47.327921 {"publishers": ["Bernan Assoc"], "subtitle": "Book 3", "weight": "2.9 ounces", "physical_format": "Hardcover", "key": "/books/OL10024874M", "authors": [{"key": "/authors/OL2645994A"}], "subjects": ["General", "Political Science", "Politics/International Relations"], "edition_name": "Supplement edition", "title": "British Approved Names 2002", "isbn_13": ["9780113226610"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0113226616"], "publish_date": "January 2004", "works": [{"key": "/works/OL7928971W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "12.4 x 8.7 x 0.2 inches", "source_records": ["bwb:9780113226610"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T15:50:47.327921"}}
+/type/edition /books/OL10024994M 6 2022-07-17T05:14:51.620592 {"publishers": ["Stationery Office Books (TSO)"], "physical_format": "Paperback", "source_records": ["marc:talis_openlibrary_contribution/talis-openlibrary-contribution.mrc:2161458661:1012", "bwb:9780113306602"], "title": "Managing Contracts for Is-It Services", "number_of_pages": 50, "isbn_13": ["9780113306602"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0113306601"], "publish_date": "October 1994", "key": "/books/OL10024994M", "authors": [{"key": "/authors/OL2646006A"}], "works": [{"key": "/works/OL7929133W"}], "type": {"key": "/type/edition"}, "subjects": ["Budgeting & financial management", "Civil service & public sector", "Computing and Information Technology", "Management decision making", "Project management", "Public Affairs & Administration", "Politics / Current Events"], "identifiers": {"goodreads": ["2192759"]}, "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T05:14:51.620592"}}
+/type/edition /books/OL10025095M 4 2022-07-17T12:41:42.431352 {"publishers": ["Stationery Office Books"], "physical_format": "Paperback", "title": "Police and Criminal Evidence Act 1984 (S. 60 (1) (A))", "number_of_pages": 11, "isbn_13": ["9780113408986"], "isbn_10": ["0113408986"], "publish_date": "December 31, 1988", "key": "/books/OL10025095M", "authors": [{"key": "/authors/OL2645814A"}], "oclc_numbers": ["18737083"], "works": [{"key": "/works/OL7926056W"}], "type": {"key": "/type/edition"}, "lc_classifications": ["HV8196.A2"], "source_records": ["bwb:9780113408986"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T12:41:42.431352"}}
+/type/edition /books/OL10025099M 5 2022-12-04T23:46:56.773990 {"physical_format": "Paperback", "publishers": ["Stationery Office Books"], "isbn_10": ["0113409125"], "number_of_pages": 136, "edition_name": "2Rev Ed edition", "isbn_13": ["9780113409129"], "publish_date": "December 1989", "key": "/books/OL10025099M", "authors": [{"key": "/authors/OL2645814A"}], "title": "Manual of Firemanship", "subjects": ["Emergency services", "Fire protection & safety"], "works": [{"key": "/works/OL7926237W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780113409129", "ia:manualoffiremans0000grea", "promise:bwb_daily_pallets_2022-07-11"], "covers": [12925012], "ocaid": "manualoffiremans0000grea", "oclc_numbers": ["53975692"], "local_id": ["urn:bwbsku:KR-073-954"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T23:46:56.773990"}}
+/type/edition /books/OL10025596M 2 2010-03-11T20:57:47.455236 {"publishers": ["Stationery Office Books"], "key": "/books/OL10025596M", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 2, "isbn_13": ["9780113905874"], "physical_format": "Paperback", "isbn_10": ["0113905874"], "publish_date": "December 31, 1977", "last_modified": {"type": "/type/datetime", "value": "2010-03-11T20:57:47.455236"}, "authors": [{"key": "/authors/OL46053A"}], "title": "Local Land Charges Rules, 1977, Schedule 1, Form C", "latest_revision": 2, "works": [{"key": "/works/OL14889862W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10026190M 2 2010-03-12T00:11:00.849338 {"publishers": ["Stationery Office Books"], "title": "UK Continental Shelf Well Records", "isbn_10": ["011410865X"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780114108656"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-03-12T00:11:00.849338"}, "publish_date": "December 31, 1980", "key": "/books/OL10026190M", "authors": [{"key": "/authors/OL46053A"}], "latest_revision": 2, "works": [{"key": "/works/OL14903435W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10026284M 2 2010-03-12T00:11:00.849338 {"publishers": ["Stationery Office Books"], "title": "UK Continental Shelf Well Records", "isbn_10": ["0114109664"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780114109660"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-03-12T00:11:00.849338"}, "publish_date": "December 31, 1981", "key": "/books/OL10026284M", "authors": [{"key": "/authors/OL46053A"}], "latest_revision": 2, "works": [{"key": "/works/OL14903435W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10026767M 2 2010-03-12T00:37:02.823075 {"publishers": ["Stationery Office Books"], "physical_format": "Paperback", "title": "UK Continental Shelf Oil Well Records", "isbn_10": ["011411482X"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "edition_name": "13th Phase edition", "isbn_13": ["9780114114824"], "last_modified": {"type": "/type/datetime", "value": "2010-03-12T00:37:02.823075"}, "publish_date": "December 31, 1984", "key": "/books/OL10026767M", "authors": [{"key": "/authors/OL46053A"}], "latest_revision": 2, "works": [{"key": "/works/OL14903691W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10027282M 2 2010-03-12T00:09:11.173819 {"publishers": ["Stationery Office Books"], "physical_format": "Paperback", "title": "UK Land Well Records", "isbn_10": ["0114120161"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "edition_name": "6th Phase edition", "isbn_13": ["9780114120160"], "last_modified": {"type": "/type/datetime", "value": "2010-03-12T00:09:11.173819"}, "publish_date": "December 31, 1985", "key": "/books/OL10027282M", "authors": [{"key": "/authors/OL46053A"}], "latest_revision": 2, "subjects": ["United Kingdom, Great Britain", "Mining technology & engineering", "Reference works"], "works": [{"key": "/works/OL14903416W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10027430M 2 2010-03-12T00:09:11.173819 {"publishers": ["Stationery Office Books"], "physical_format": "Paperback", "title": "UK Land Well Records", "isbn_10": ["0114121648"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "edition_name": "7th Phase edition", "isbn_13": ["9780114121648"], "last_modified": {"type": "/type/datetime", "value": "2010-03-12T00:09:11.173819"}, "publish_date": "December 31, 1986", "key": "/books/OL10027430M", "authors": [{"key": "/authors/OL46053A"}], "latest_revision": 2, "subjects": ["United Kingdom, Great Britain", "Mining technology & engineering", "Reference works"], "works": [{"key": "/works/OL14903416W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10027581M 2 2010-03-12T00:37:02.823075 {"publishers": ["Stationery Office Books"], "physical_format": "Paperback", "title": "UK Continental Shelf Oil Well Records", "isbn_10": ["0114123217"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "edition_name": "19th Phase edition", "isbn_13": ["9780114123215"], "last_modified": {"type": "/type/datetime", "value": "2010-03-12T00:37:02.823075"}, "publish_date": "December 31, 1986", "key": "/books/OL10027581M", "authors": [{"key": "/authors/OL46053A"}], "latest_revision": 2, "subjects": ["United Kingdom, Great Britain", "Mining technology & engineering", "Reference works"], "works": [{"key": "/works/OL14903691W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10027739M 2 2010-03-12T00:37:02.823075 {"publishers": ["Stationery Office Books"], "physical_format": "Paperback", "title": "UK Continental Shelf Oil Well Records", "isbn_10": ["0114124833"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "edition_name": "22nd Phase edition", "isbn_13": ["9780114124830"], "last_modified": {"type": "/type/datetime", "value": "2010-03-12T00:37:02.823075"}, "publish_date": "December 31, 1987", "key": "/books/OL10027739M", "authors": [{"key": "/authors/OL46053A"}], "latest_revision": 2, "subjects": ["United Kingdom, Great Britain", "Mining technology & engineering", "Reference works"], "works": [{"key": "/works/OL14903691W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10027953M 2 2010-03-11T23:59:29.663456 {"publishers": ["Stationery Office Books"], "physical_format": "Paperback", "title": "UK Land Oil Well Records", "isbn_10": ["0114126976"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "edition_name": "9th Phase edition", "isbn_13": ["9780114126971"], "last_modified": {"type": "/type/datetime", "value": "2010-03-11T23:59:29.663456"}, "publish_date": "December 31, 1987", "key": "/books/OL10027953M", "authors": [{"key": "/authors/OL46053A"}], "latest_revision": 2, "works": [{"key": "/works/OL14903335W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10027983M 2 2010-03-12T00:37:02.823075 {"publishers": ["Stationery Office Books"], "physical_format": "Paperback", "title": "UK Continental Shelf Oil Well Records", "isbn_10": ["0114127271"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "edition_name": "26th Phase edition", "isbn_13": ["9780114127275"], "last_modified": {"type": "/type/datetime", "value": "2010-03-12T00:37:02.823075"}, "publish_date": "December 31, 1988", "key": "/books/OL10027983M", "authors": [{"key": "/authors/OL46053A"}], "latest_revision": 2, "subjects": ["United Kingdom, Great Britain", "Mining technology & engineering", "Reference works"], "works": [{"key": "/works/OL14903691W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10027989M 2 2010-03-12T00:37:02.823075 {"publishers": ["Stationery Office Books"], "physical_format": "Paperback", "title": "UK Continental Shelf Oil Well Records", "isbn_10": ["0114127336"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "edition_name": "26th Phase edition", "isbn_13": ["9780114127336"], "last_modified": {"type": "/type/datetime", "value": "2010-03-12T00:37:02.823075"}, "publish_date": "December 31, 1988", "key": "/books/OL10027989M", "authors": [{"key": "/authors/OL46053A"}], "latest_revision": 2, "subjects": ["United Kingdom, Great Britain", "Mining technology & engineering", "Reference works"], "works": [{"key": "/works/OL14903691W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10028053M 6 2022-07-17T03:33:28.420779 {"publishers": ["Stationery Office Books"], "number_of_pages": 60, "title": "The Strength of Grouted Pile-Sleeve Connections for Offshore Structures", "identifiers": {"goodreads": ["6806160"]}, "isbn_13": ["9780114128524"], "physical_format": "Paperback", "isbn_10": ["0114128529"], "publish_date": "December 31, 1986", "key": "/books/OL10028053M", "authors": [{"key": "/authors/OL3363081A"}, {"key": "/authors/OL3363082A"}, {"key": "/authors/OL3363083A"}], "oclc_numbers": ["13591113"], "works": [{"key": "/works/OL13756814W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780114128524"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T03:33:28.420779"}}
+/type/edition /books/OL10028245M 4 2022-07-17T02:28:15.329219 {"publishers": ["Stationery Office Books"], "classifications": {}, "title": "United Kingdom Offshore Steels Research Project - Phase II", "notes": {"type": "/type/text", "value": "Offshore Technology Report"}, "identifiers": {}, "isbn_13": ["9780114130930"], "physical_format": "Unknown Binding", "isbn_10": ["0114130930"], "publish_date": "December 31, 1991", "key": "/books/OL10028245M", "authors": [{"key": "/authors/OL3363169A"}], "works": [{"key": "/works/OL9314815W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780114130930"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T02:28:15.329219"}}
+/type/edition /books/OL10028330M 2 2010-03-12T00:37:02.823075 {"publishers": ["Stationery Office Books"], "key": "/books/OL10028330M", "title": "UK Continental Shelf Oil Well Records", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780114131814"], "physical_format": "Paperback", "isbn_10": ["0114131813"], "publish_date": "December 31, 1989", "last_modified": {"type": "/type/datetime", "value": "2010-03-12T00:37:02.823075"}, "authors": [{"key": "/authors/OL46053A"}], "latest_revision": 2, "subjects": ["United Kingdom, Great Britain", "Mining technology & engineering", "Reference works"], "works": [{"key": "/works/OL14903691W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10028930M 2 2010-03-12T00:37:02.823075 {"publishers": ["Stationery Office Books"], "key": "/books/OL10028930M", "title": "UK Continental Shelf Oil Well Records", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780114139155"], "physical_format": "Paperback", "isbn_10": ["0114139156"], "publish_date": "December 31, 1992", "last_modified": {"type": "/type/datetime", "value": "2010-03-12T00:37:02.823075"}, "authors": [{"key": "/authors/OL46053A"}], "latest_revision": 2, "subjects": ["United Kingdom, Great Britain", "Mining technology & engineering", "Reference works"], "works": [{"key": "/works/OL14903691W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL1002921M 9 2022-12-17T19:03:32.462223 {"publishers": ["InterVarsity Press"], "number_of_pages": 158, "subtitle": "developing spiritual self-confidence", "isbn_10": ["0830819991"], "covers": [3859045], "lc_classifications": ["BV4501.2 .A473 1997", "BV4501.2.A473 1997"], "key": "/books/OL1002921M", "authors": [{"key": "/authors/OL23204A"}], "ocaid": "doesgodbelievein0000ande", "publish_places": ["Downers Grove, Ill"], "pagination": "158 p. ;", "source_records": ["ia:doesgodbelievein0000ande", "marc:marc_loc_2016/BooksAll.2016.part25.utf8:106419330:748", "bwb:9780830819997"], "title": "Does God believe in you?", "dewey_decimal_class": ["248.4"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. [157]-158)."}, "identifiers": {"librarything": ["1282949"], "goodreads": ["4724117"]}, "languages": [{"key": "/languages/eng"}], "lccn": ["96042258"], "subjects": ["David, King of Israel.", "Anderson, Keith, 1949-", "Spiritual life -- Christianity."], "publish_date": "1997", "publish_country": "ilu", "by_statement": "Keith R. Anderson.", "oclc_numbers": ["35293000"], "works": [{"key": "/works/OL14867240W"}], "type": {"key": "/type/edition"}, "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T19:03:32.462223"}}
+/type/edition /books/OL10029911M 2 2010-03-12T00:37:02.823075 {"publishers": ["Stationery Office Books"], "physical_format": "Paperback", "title": "UK Continental Shelf Oil Well Records", "isbn_10": ["0114150818"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "edition_name": "52nd Phase edition", "isbn_13": ["9780114150815"], "last_modified": {"type": "/type/datetime", "value": "2010-03-12T00:37:02.823075"}, "publish_date": "December 17, 1995", "key": "/books/OL10029911M", "authors": [{"key": "/authors/OL46053A"}], "latest_revision": 2, "subjects": ["United Kingdom, Great Britain", "Mining technology & engineering", "Reference works"], "works": [{"key": "/works/OL14903691W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10030181M 2 2010-03-12T00:37:02.823075 {"publishers": ["Stationery Office Books"], "physical_format": "Paperback", "title": "UK Continental Shelf Oil Well Records", "isbn_10": ["0114153515"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "edition_name": "55th Phase edition", "isbn_13": ["9780114153519"], "last_modified": {"type": "/type/datetime", "value": "2010-03-12T00:37:02.823075"}, "publish_date": "October 16, 1996", "key": "/books/OL10030181M", "authors": [{"key": "/authors/OL46053A"}], "latest_revision": 2, "subjects": ["United Kingdom, Great Britain", "Mining technology & engineering", "Reference works"], "works": [{"key": "/works/OL14903691W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10030393M 2 2010-03-12T00:37:02.823075 {"publishers": ["Stationery Office Books"], "physical_format": "Paperback", "title": "UK Continental Shelf Oil Well Records", "isbn_10": ["0114155631"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "edition_name": "57th Phase edition", "isbn_13": ["9780114155636"], "last_modified": {"type": "/type/datetime", "value": "2010-03-12T00:37:02.823075"}, "publish_date": "April 25, 1997", "key": "/books/OL10030393M", "authors": [{"key": "/authors/OL46053A"}], "latest_revision": 2, "subjects": ["United Kingdom, Great Britain", "Mining technology & engineering", "Reference works"], "works": [{"key": "/works/OL14903691W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10030426M 2 2010-03-12T00:37:02.823075 {"publishers": ["Stationery Office Books"], "physical_format": "Paperback", "title": "UK Continental Shelf Oil Well Records", "isbn_10": ["0114156247"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "edition_name": "58th Phase edition", "isbn_13": ["9780114156244"], "last_modified": {"type": "/type/datetime", "value": "2010-03-12T00:37:02.823075"}, "publish_date": "July 25, 1997", "key": "/books/OL10030426M", "authors": [{"key": "/authors/OL46053A"}], "latest_revision": 2, "subjects": ["United Kingdom, Great Britain", "Mining technology & engineering", "Reference works"], "works": [{"key": "/works/OL14903691W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL1003081M 9 2022-12-08T14:10:05.178612 {"publishers": ["Ventana"], "number_of_pages": 348, "ia_box_id": ["IA137713"], "isbn_10": ["1566045975"], "covers": [3859090], "ia_loaded_id": ["htmlprogrammersr00mull"], "lc_classifications": ["QA76.76.H94 M78 1997"], "key": "/books/OL1003081M", "authors": [{"key": "/authors/OL541925A"}], "publish_places": ["Durham, NC"], "languages": [{"key": "/languages/eng"}], "pagination": "xvii, 348 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part25.utf8:106561244:687", "ia:htmlprogrammersr0000mull", "promise:bwb_daily_pallets_2021-04-30"], "title": "The HTML programmer's reference", "dewey_decimal_class": ["005.7/2"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. [303]-309) and index."}, "identifiers": {"librarything": ["1170749"]}, "edition_name": "1st ed.", "lccn": ["96042421"], "subjects": ["HTML (Document markup language)"], "publish_date": "1997", "publish_country": "ncu", "by_statement": "Robert Mullen.", "oclc_numbers": ["35285511"], "works": [{"key": "/works/OL3341699W"}], "type": {"key": "/type/edition"}, "ocaid": "htmlprogrammersr0000mull", "local_id": ["urn:bwbsku:P7-AJN-237"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-08T14:10:05.178612"}}
+/type/edition /books/OL10030837M 2 2010-03-12T00:37:02.823075 {"publishers": ["Stationery Office Books"], "physical_format": "Paperback", "title": "UK Continental Shelf Oil Well Records", "isbn_10": ["0114161216"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "edition_name": "64th Phase edition", "isbn_13": ["9780114161217"], "last_modified": {"type": "/type/datetime", "value": "2010-03-12T00:37:02.823075"}, "publish_date": "July 3, 1998", "key": "/books/OL10030837M", "authors": [{"key": "/authors/OL46053A"}], "latest_revision": 2, "subjects": ["United Kingdom, Great Britain", "Mining technology & engineering", "Reference works"], "works": [{"key": "/works/OL14903691W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10030887M 2 2010-03-12T00:37:02.823075 {"publishers": ["Stationery Office Books"], "physical_format": "Paperback", "title": "UK Continental Shelf Oil Well Records", "isbn_10": ["0114161712"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "edition_name": "65th Phase edition", "isbn_13": ["9780114161712"], "last_modified": {"type": "/type/datetime", "value": "2010-03-12T00:37:02.823075"}, "publish_date": "August 5, 1998", "key": "/books/OL10030887M", "authors": [{"key": "/authors/OL46053A"}], "latest_revision": 2, "subjects": ["United Kingdom, Great Britain", "Mining technology & engineering", "Reference works"], "works": [{"key": "/works/OL14903691W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL1003093M 7 2020-11-23T14:37:00.420761 {"publishers": ["Time-Life Books"], "number_of_pages": 168, "isbn_10": ["0783547080"], "series": ["Voices of the Civil War"], "covers": [7441900, 7294331], "lc_classifications": ["E475.35 .C46 1996"], "latest_revision": 7, "key": "/books/OL1003093M", "ocaid": "chancellorsville00time", "publish_places": ["Alexandria, Va"], "contributions": ["Time-Life Books."], "pagination": "168 p. :", "source_records": ["ia:chancellorsville00time", "marc:marc_loc_2016/BooksAll.2016.part25.utf8:106570945:749"], "title": "Chancellorsville", "dewey_decimal_class": ["973.7/33"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 163-164) and index."}, "identifiers": {"goodreads": ["2636288"], "librarything": ["2038486"]}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["96042435"], "subjects": ["Chancellorsville, Battle of, Chancellorsville, Va., 1863 -- Sources."], "publish_date": "1996", "publish_country": "vau", "last_modified": {"type": "/type/datetime", "value": "2020-11-23T14:37:00.420761"}, "by_statement": "by the editors of Time-Life Books.", "oclc_numbers": ["35305189"], "works": [{"key": "/works/OL17051514W"}], "type": {"key": "/type/edition"}, "revision": 7}
+/type/edition /books/OL10031597M 2 2010-03-12T00:22:52.997425 {"publishers": ["Stationery Office Books"], "key": "/books/OL10031597M", "title": "Edinburgh Gazette", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780114940270"], "physical_format": "Paperback", "isbn_10": ["0114940274"], "publish_date": "December 31, 1989", "last_modified": {"type": "/type/datetime", "value": "2010-03-12T00:22:52.997425"}, "authors": [{"key": "/authors/OL46053A"}], "latest_revision": 2, "subjects": ["Scotland", "Serials, periodicals, abstracts, indexes"], "works": [{"key": "/works/OL14903553W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10031725M 2 2010-03-11T23:29:26.717172 {"publishers": ["Stationery Office Books"], "key": "/books/OL10031725M", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 86, "isbn_13": ["9780114941826"], "physical_format": "Paperback", "isbn_10": ["0114941823"], "publish_date": "December 31, 1991", "last_modified": {"type": "/type/datetime", "value": "2010-03-11T23:29:26.717172"}, "authors": [{"key": "/authors/OL46053A"}], "title": "Scottish Economic Bulletin", "latest_revision": 2, "works": [{"key": "/works/OL14902953W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10031740M 4 2022-07-17T02:27:58.099422 {"publishers": ["Stationery Office Books"], "physical_format": "Paperback", "title": "Accommodation at the Main Entrance of a District General Hospital (Scottish Hospital Planning Note)", "number_of_pages": 28, "isbn_13": ["9780114942038"], "isbn_10": ["011494203X"], "publish_date": "July 1992", "key": "/books/OL10031740M", "authors": [{"key": "/authors/OL2646062A"}], "oclc_numbers": ["51360138"], "works": [{"key": "/works/OL7930963W"}], "type": {"key": "/type/edition"}, "subjects": ["Health systems & services", "Public buildings: civic, commercial, industrial, etc", "Scotland"], "source_records": ["bwb:9780114942038"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T02:27:58.099422"}}
+/type/edition /books/OL10031741M 6 2022-12-08T23:23:56.097307 {"publishers": ["Stationery Office Books"], "identifiers": {"librarything": ["6505337"]}, "title": "Upper Secondary Education in Scotland", "number_of_pages": 161, "isbn_13": ["9780114942045"], "physical_format": "Paperback", "isbn_10": ["0114942048"], "publish_date": "March 1992", "key": "/books/OL10031741M", "authors": [{"key": "/authors/OL2645780A"}], "works": [{"key": "/works/OL7925183W"}], "type": {"key": "/type/edition"}, "covers": [12173240], "ocaid": "uppersecondaryed0000grea", "lc_classifications": ["J301.H7 GRE"], "source_records": ["ia:uppersecondaryed0000grea", "bwb:9780114942045", "promise:bwb_daily_pallets_2021-02-03"], "local_id": ["urn:bwbsku:ko-855-829"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-08T23:23:56.097307"}}
+/type/edition /books/OL10031768M 5 2022-07-17T03:00:33.405706 {"publishers": ["Stationery Office Books"], "physical_format": "Paperback", "source_records": ["marc:talis_openlibrary_contribution/talis-openlibrary-contribution.mrc:463574983:684", "bwb:9780114942410"], "title": "External Works for Health Buildings (Scottish Hospital Planning Note)", "isbn_13": ["9780114942410"], "isbn_10": ["0114942412"], "publish_date": "December 1992", "key": "/books/OL10031768M", "authors": [{"key": "/authors/OL3363245A"}], "oclc_numbers": ["51364210"], "works": [{"key": "/works/OL9314868W"}], "type": {"key": "/type/edition"}, "subjects": ["Building construction & materials"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T03:00:33.405706"}}
+/type/edition /books/OL1003213M 7 2020-11-23T14:38:17.708000 {"publishers": ["Barricade Books"], "identifiers": {"librarything": ["4694489"], "goodreads": ["3535438"]}, "isbn_10": ["1569800960"], "subject_place": ["Wisconsin"], "covers": [1912726], "lc_classifications": ["PS3568.I372 H4 1997"], "latest_revision": 7, "key": "/books/OL1003213M", "authors": [{"key": "/authors/OL395843A"}], "publish_places": ["New York"], "pagination": "284 p. ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part25.utf8:106677983:836"], "title": "He who waits", "dewey_decimal_class": ["813/.54"], "number_of_pages": 284, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["96042559"], "subjects": ["Ryland, Garth (Fictitious character) -- Fiction.", "Journalists -- Fiction.", "Race relations -- Fiction.", "Wisconsin -- Fiction."], "publish_date": "1997", "publish_country": "nyu", "last_modified": {"type": "/type/datetime", "value": "2020-11-23T14:38:17.708000"}, "series": ["A Garth Ryland mystery"], "by_statement": "John R. Riggs.", "oclc_numbers": ["35331383"], "works": [{"key": "/works/OL2707290W"}], "type": {"key": "/type/edition"}, "revision": 7}
+/type/edition /books/OL10032387M 2 2010-03-12T00:22:52.997425 {"publishers": ["Stationery Office Books"], "physical_format": "Paperback", "subjects": ["Serials, periodicals, abstracts, indexes", "Scotland"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_10": ["0114948879"], "number_of_pages": 4165, "isbn_13": ["9780114948870"], "last_modified": {"type": "/type/datetime", "value": "2010-03-12T00:22:52.997425"}, "publish_date": "December 31, 1992", "key": "/books/OL10032387M", "authors": [{"key": "/authors/OL46053A"}], "title": "Edinburgh Gazette", "latest_revision": 2, "works": [{"key": "/works/OL14903553W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL1003281M 8 2021-09-17T04:50:31.133484 {"publishers": ["Reader's Digest Assoc."], "identifiers": {"librarything": ["1616581"], "goodreads": ["2998845"]}, "key": "/books/OL1003281M", "authors": [{"key": "/authors/OL256444A"}], "publish_places": ["Pleasantville, N.Y"], "pagination": "128 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part25.utf8:106740042:645", "ia:samplermotifbook0000keye_c6c7"], "title": "The sampler motif book", "notes": "Includes bibliographical references (p. 125) and index.", "number_of_pages": 128, "languages": [{"key": "/languages/eng"}], "subjects": ["Cross-stitch -- Patterns.", "Samplers."], "publish_date": "1997", "publish_country": "nyu", "by_statement": "Brenda Keyes.", "works": [{"key": "/works/OL2085976W"}], "type": {"key": "/type/edition"}, "covers": [11972123, 11037348], "ocaid": "samplermotifbook0000keye_c6c7", "isbn_10": ["0895779188"], "lccn": ["96042933"], "classifications": {}, "dewey_decimal_class": ["746.44/3041"], "lc_classifications": ["TT778.C76 K496 1996"], "subtitle": "with traditional cross stitch designs and alphabets", "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2021-09-17T04:50:31.133484"}}
+/type/edition /books/OL10033131M 5 2022-07-17T04:44:40.026418 {"publishers": ["Stationery Office Books"], "physical_format": "Spiral-bound", "title": "The British Survey of Fertiliser Practice", "number_of_pages": 80, "isbn_13": ["9780114957650"], "isbn_10": ["0114957657"], "publish_date": "June 1996", "key": "/books/OL10033131M", "works": [{"key": "/works/OL7928136W"}], "type": {"key": "/type/edition"}, "subjects": ["Fertilizers & manures"], "source_records": ["bwb:9780114957650"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T04:44:40.026418"}}
+/type/edition /books/OL10033177M 5 2022-12-05T14:43:20.795547 {"publishers": ["Stationery Office Books"], "title": "Register of Basic Seed Potato Crops", "number_of_pages": 19, "isbn_13": ["9780114958428"], "physical_format": "Paperback", "isbn_10": ["0114958424"], "publish_date": "February 1997", "key": "/books/OL10033177M", "authors": [{"key": "/authors/OL3362864A"}], "oclc_numbers": ["59593406"], "works": [{"key": "/works/OL9314562W"}], "type": {"key": "/type/edition"}, "subjects": ["Agriculture & related industries"], "source_records": ["bwb:9780114958428", "promise:bwb_daily_pallets_2022-04-20"], "local_id": ["urn:bwbsku:KQ-658-541"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-05T14:43:20.795547"}}
+/type/edition /books/OL10033183M 3 2011-04-28T02:18:46.794901 {"publishers": ["Stationery Office Books"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-28T02:18:46.794901"}, "title": "The Breath Test Device (Scotland) (No. 2) Approval 1997", "number_of_pages": 1, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780114958480"], "isbn_10": ["0114958483"], "publish_date": "April 16, 1997", "key": "/books/OL10033183M", "authors": [{"key": "/authors/OL46053A"}], "latest_revision": 3, "oclc_numbers": ["81048376"], "works": [{"key": "/works/OL14880970W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10033432M 2 2010-03-12T00:22:52.997425 {"publishers": ["Stationery Office Books"], "key": "/books/OL10033432M", "title": "Edinburgh Gazette", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780114961114"], "physical_format": "Paperback", "isbn_10": ["0114961115"], "publish_date": "December 31, 1996", "last_modified": {"type": "/type/datetime", "value": "2010-03-12T00:22:52.997425"}, "authors": [{"key": "/authors/OL46053A"}], "latest_revision": 2, "subjects": ["Scotland", "Serials, periodicals, abstracts, indexes"], "works": [{"key": "/works/OL14903553W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10033584M 2 2010-03-12T00:22:52.997425 {"publishers": ["Stationery Office Books"], "key": "/books/OL10033584M", "title": "Edinburgh Gazette", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780114962715"], "physical_format": "Paperback", "isbn_10": ["0114962715"], "publish_date": "October 10, 1997", "last_modified": {"type": "/type/datetime", "value": "2010-03-12T00:22:52.997425"}, "authors": [{"key": "/authors/OL46053A"}], "latest_revision": 2, "subjects": ["Scotland", "Serials, periodicals, abstracts, indexes"], "works": [{"key": "/works/OL14903553W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10033939M 6 2022-07-17T07:49:26.706764 {"publishers": ["Stationery Office Books"], "number_of_pages": 70, "title": "Further Education in Scotland", "identifiers": {"librarything": ["3234344"]}, "isbn_13": ["9780114972325"], "covers": [2320019], "physical_format": "Paperback", "isbn_10": ["011497232X"], "publish_date": "June 1999", "key": "/books/OL10033939M", "authors": [{"key": "/authors/OL3363277A"}], "oclc_numbers": ["59444849"], "works": [{"key": "/works/OL9314918W"}], "type": {"key": "/type/edition"}, "subjects": ["Higher & further education", "Social research & statistics", "Scotland"], "source_records": ["bwb:9780114972325"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T07:49:26.706764"}}
+/type/edition /books/OL10034726M 2 2010-03-11T23:28:20.070776 {"publishers": ["Stationery Office Books"], "title": "Inorganic Chemicals (Business Monitors)", "isbn_10": ["0115265732"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780115265730"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-03-11T23:28:20.070776"}, "publish_date": "December 31, 1980", "key": "/books/OL10034726M", "authors": [{"key": "/authors/OL46053A"}], "latest_revision": 2, "works": [{"key": "/works/OL14902916W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10035177M 2 2010-03-11T23:28:07.898443 {"publishers": ["Stationery Office Books"], "title": "General Printing and Publishing (Business Monitors)", "isbn_10": ["0115270531"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780115270536"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-03-11T23:28:07.898443"}, "publish_date": "December 31, 1981", "key": "/books/OL10035177M", "authors": [{"key": "/authors/OL46053A"}], "latest_revision": 2, "works": [{"key": "/works/OL14902908W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10035498M 2 2010-03-11T23:33:26.438240 {"publishers": ["Stationery Office Books"], "title": "Textile Finishing (Business Monitors)", "isbn_10": ["0115273913"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780115273919"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-03-11T23:33:26.438240"}, "publish_date": "December 31, 1981", "key": "/books/OL10035498M", "authors": [{"key": "/authors/OL46053A"}], "latest_revision": 2, "works": [{"key": "/works/OL14903054W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10035868M 2 2010-03-11T23:30:17.119026 {"publishers": ["Stationery Office Books"], "title": "Wire and Wire Manufactures (Business Monitors)", "isbn_10": ["0115277811"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780115277818"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-03-11T23:30:17.119026"}, "publish_date": "December 31, 1981", "key": "/books/OL10035868M", "authors": [{"key": "/authors/OL46053A"}], "latest_revision": 2, "works": [{"key": "/works/OL14902976W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10036033M 2 2010-03-11T23:28:42.386708 {"publishers": ["Stationery Office Books"], "title": "Miscellaneous Chemicals (Business Monitors)", "isbn_10": ["0115279539"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780115279539"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-03-11T23:28:42.386708"}, "publish_date": "December 31, 1982", "key": "/books/OL10036033M", "authors": [{"key": "/authors/OL46053A"}], "latest_revision": 2, "works": [{"key": "/works/OL14902927W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10036369M 2 2010-03-11T23:24:58.229704 {"publishers": ["Stationery Office Books"], "title": "Valves (Business Monitors)", "isbn_10": ["011528298X"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780115282980"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-03-11T23:24:58.229704"}, "publish_date": "December 31, 1982", "key": "/books/OL10036369M", "authors": [{"key": "/authors/OL46053A"}], "latest_revision": 2, "works": [{"key": "/works/OL14902808W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL1003671M 8 2022-05-06T06:57:56.815037 {"publishers": ["Lawrence Erlbaum Associates"], "number_of_pages": 338, "subtitle": "a social history through stories", "isbn_10": ["0805826904"], "subject_place": ["United States"], "lc_classifications": ["LB1775.2 .C645 1997", "LB1775.2 .W67 1997", "LB1775.2.W67 1997"], "key": "/books/OL1003671M", "publish_places": ["Mahwah, N.J"], "contributions": ["Cohen, Rosetta Marantz.", "Scheer, Samuel."], "pagination": "xiii, 338 p. :", "source_records": ["marc:marc_records_scriblio_net/part25.dat:201098619:912", "marc:marc_loc_updates/v35.i10.records.utf8:2828039:911", "bwb:9780805826906", "marc:marc_loc_2016/BooksAll.2016.part25.utf8:107096276:1012", "ia:workofteachersin0000unse"], "title": "The work of teachers in America", "dewey_decimal_class": ["371.1/00973/09"], "notes": {"type": "/type/text", "value": "Include bibliographical references (p. 331-333) and index."}, "identifiers": {"goodreads": ["4101942"]}, "languages": [{"key": "/languages/eng"}], "lccn": ["96043350"], "subjects": ["Teachers -- United States -- History", "Teachers -- United States -- Social conditions", "Teachers -- United States -- Biography"], "publish_date": "1997", "publish_country": "nju", "by_statement": "edited by Rosetta Marantz Cohen, Samuel Scheer.", "works": [{"key": "/works/OL18252889W"}], "type": {"key": "/type/edition"}, "covers": [12732977], "ocaid": "workofteachersin0000unse", "oclc_numbers": ["35548966"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-06T06:57:56.815037"}}
+/type/edition /books/OL10036838M 2 2010-03-11T23:28:20.070776 {"publishers": ["Stationery Office Books"], "title": "Inorganic Chemicals (Business Monitors)", "isbn_10": ["0115287914"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780115287916"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-03-11T23:28:20.070776"}, "publish_date": "December 31, 1983", "key": "/books/OL10036838M", "authors": [{"key": "/authors/OL46053A"}], "latest_revision": 2, "works": [{"key": "/works/OL14902916W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10037183M 2 2010-03-11T23:08:49.185826 {"publishers": ["Stationery Office Books"], "title": "Jute and Polypropylene Yarns and Fabrics (Business Monitors)", "isbn_10": ["0115291660"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780115291661"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-03-11T23:08:49.185826"}, "publish_date": "December 31, 1983", "key": "/books/OL10037183M", "authors": [{"key": "/authors/OL46053A"}], "latest_revision": 2, "works": [{"key": "/works/OL14901918W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10037247M 2 2010-03-11T23:30:42.575788 {"publishers": ["Stationery Office Books"], "title": "Electrical Equipment for Motor Vehicles, Cycles and Aircraft (Business Monitors)", "isbn_10": ["0115292314"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780115292316"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-03-11T23:30:42.575788"}, "publish_date": "December 31, 1983", "key": "/books/OL10037247M", "authors": [{"key": "/authors/OL46053A"}], "latest_revision": 2, "works": [{"key": "/works/OL14902992W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10037270M 2 2010-03-11T22:52:22.444509 {"publishers": ["Stationery Office Books"], "title": "Leather and Fellmongery (Business Monitors)", "isbn_10": ["0115292551"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780115292552"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-03-11T22:52:22.444509"}, "publish_date": "December 31, 1983", "key": "/books/OL10037270M", "authors": [{"key": "/authors/OL46053A"}], "latest_revision": 2, "works": [{"key": "/works/OL14900666W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL100375M 24 2022-12-05T05:55:17.023053 {"number_of_pages": 284, "covers": [3708802, 130764], "local_id": ["urn:sfpl:31223058242406", "urn:bwbsku:W7-AZW-177"], "lc_classifications": ["QE721.2.E85 K46 1999", "QE721.2.E85K46 1999"], "source_records": ["marc:marc_openlibraries_sanfranciscopubliclibrary/sfpl_chq_2018_12_24_run02.mrc:230340342:1560", "bwb:9780198504245", "bwb:9780198503453", "marc:marc_loc_2016/BooksAll.2016.part28.utf8:88829721:1039", "ia:fossilsevolution0000kemp", "promise:bwb_daily_pallets_2022-05-25"], "title": "Fossils and evolution", "languages": [{"key": "/languages/eng"}], "subjects": ["Evolutionary paleobiology.", "Fossils."], "publish_country": "enk", "by_statement": "T.S. Kemp.", "oclc_numbers": ["40754708"], "type": {"key": "/type/edition"}, "other_titles": ["Fossils & evolution"], "publishers": ["Oxford University Press"], "key": "/books/OL100375M", "authors": [{"key": "/authors/OL67417A"}], "publish_places": ["Oxford [England]", "New York"], "pagination": "vi, 284 p. :", "dewey_decimal_class": ["560"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. [257]-276) and index."}, "identifiers": {"librarything": ["957325"], "goodreads": ["963504", "3922193"]}, "lccn": ["99214743"], "isbn_10": ["0198503458", "0198504241"], "publish_date": "1999", "works": [{"key": "/works/OL802172W"}], "ocaid": "fossilsevolution0000kemp", "latest_revision": 24, "revision": 24, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-05T05:55:17.023053"}}
+/type/edition /books/OL10037766M 2 2010-03-11T23:38:01.477515 {"publishers": ["Stationery Office Books"], "title": "Hosiery and Other Weft Knitted Goods", "isbn_10": ["0115337059"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780115337055"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-03-11T23:38:01.477515"}, "publish_date": "December 31, 1989", "key": "/books/OL10037766M", "authors": [{"key": "/authors/OL46053A"}], "latest_revision": 2, "works": [{"key": "/works/OL14903130W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL1003791M 7 2020-11-23T14:44:39.663171 {"publishers": ["G.K. Hall", "Prentice Hall International"], "number_of_pages": 318, "series": ["African-American women writers, 1910-1940"], "covers": [8459162], "local_id": ["urn:mgc:31927000506078"], "lc_classifications": ["G463 .H33 1996"], "latest_revision": 7, "key": "/books/OL1003791M", "authors": [{"key": "/authors/OL542212A"}], "publish_places": ["New York", "London"], "subjects": ["Harrison, Juanita -- Travel.", "Voyages and travels."], "pagination": "xxviii, xii, 318 p. ;", "source_records": ["amazon:078381433X", "marc:marc_marygrove/marygrovecollegelibrary.full.D20191108.T213022.internetarchive2nd_REPACK.mrc:125362945:2290", "marc:marc_loc_2016/BooksAll.2016.part25.utf8:107201582:722"], "title": "My great, wide, beautiful world", "dewey_decimal_class": ["910.4"], "identifiers": {"librarything": ["754513"], "goodreads": ["711127"]}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["96043473"], "isbn_10": ["078381433X"], "publish_date": "1996", "publish_country": "nyu", "last_modified": {"type": "/type/datetime", "value": "2020-11-23T14:44:39.663171"}, "by_statement": "Juanita Harrison ; introduction by Adele Logan Alexander.", "works": [{"key": "/works/OL3343005W"}], "type": {"key": "/type/edition"}, "revision": 7}
+/type/edition /books/OL10039203M 2 2010-03-11T23:56:20.879315 {"publishers": ["Stationery Office Books"], "key": "/books/OL10039203M", "title": "Retail Sales", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780115361135"], "physical_format": "Paperback", "isbn_10": ["0115361138"], "publish_date": "December 31, 1992", "last_modified": {"type": "/type/datetime", "value": "2010-03-11T23:56:20.879315"}, "authors": [{"key": "/authors/OL46053A"}], "latest_revision": 2, "subjects": ["Domestic trade & commerce", "Retail sector", "United Kingdom, Great Britain"], "works": [{"key": "/works/OL14903322W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10039478M 2 2010-03-11T23:18:34.359600 {"publishers": ["Stationery Office Books"], "key": "/books/OL10039478M", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 13, "isbn_13": ["9780115364556"], "physical_format": "Paperback", "isbn_10": ["0115364552"], "publish_date": "December 31, 1993", "last_modified": {"type": "/type/datetime", "value": "2010-03-11T23:18:34.359600"}, "authors": [{"key": "/authors/OL46053A"}], "title": "Jute and Polypropylene Yarns and Fabrics", "latest_revision": 2, "works": [{"key": "/works/OL14902554W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10039705M 2 2010-03-11T23:44:43.329701 {"publishers": ["Stationery Office Books"], "key": "/books/OL10039705M", "title": "Insurance Companies and Pension Funds' Investment", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780115367373"], "physical_format": "Paperback", "isbn_10": ["0115367373"], "publish_date": "April 20, 1994", "last_modified": {"type": "/type/datetime", "value": "2010-03-11T23:44:43.329701"}, "authors": [{"key": "/authors/OL46053A"}], "latest_revision": 2, "subjects": ["Financial services industry", "Pensions"], "works": [{"key": "/works/OL14903219W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10039719M 2 2010-03-11T23:54:22.455884 {"publishers": ["Stationery Office Books"], "key": "/books/OL10039719M", "title": "Price Index Numbers for Current Cost Accounting (Monthly Supplement)", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780115367564"], "physical_format": "Paperback", "isbn_10": ["011536756X"], "publish_date": "May 21, 1994", "last_modified": {"type": "/type/datetime", "value": "2010-03-11T23:54:22.455884"}, "authors": [{"key": "/authors/OL46053A"}], "latest_revision": 2, "subjects": ["Economic statistics", "Industry & Industrial Studies", "Reference works"], "works": [{"key": "/works/OL14903312W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10040045M 2 2010-03-11T23:14:24.864205 {"publishers": ["Stationery Office Books"], "title": "Quarterly Inquiries into Turnover of the Distribution and Services Sector", "isbn_10": ["0115371524"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780115371523"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-03-11T23:14:24.864205"}, "publish_date": "December 31, 1994", "key": "/books/OL10040045M", "authors": [{"key": "/authors/OL46053A"}], "latest_revision": 2, "works": [{"key": "/works/OL14902316W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10040111M 2 2010-03-11T22:57:53.303727 {"publishers": ["Stationery Office Books"], "physical_format": "Paperback", "subjects": ["Industry & Industrial Studies", "Reference works", "United Kingdom, Great Britain"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_10": ["0115372229"], "number_of_pages": 40, "isbn_13": ["9780115372223"], "last_modified": {"type": "/type/datetime", "value": "2010-03-11T22:57:53.303727"}, "publish_date": "April 30, 1997", "key": "/books/OL10040111M", "authors": [{"key": "/authors/OL46053A"}], "title": "Pharmaceutical Preparations (Product Sales & Trade: PRQ23)", "latest_revision": 2, "works": [{"key": "/works/OL14901033W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10040569M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "subtitle": "Quarterly Statistics", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["The Stationery Office Books (Agencies)"], "number_of_pages": 6, "isbn_13": ["9780115377259"], "isbn_10": ["0115377255"], "publish_date": "1997", "key": "/books/OL10040569M", "title": "Assets and Liabilities of Finance Houses and Other Credit Companies: Business Monitor: Quarterly Statistics: Business Monitors", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10040751M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "subtitle": "Quarterly Statistics", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["The Stationery Office Books (Agencies)"], "number_of_pages": 27, "isbn_13": ["9780115379291"], "isbn_10": ["0115379290"], "publish_date": "1998", "key": "/books/OL10040751M", "title": "Overseas Travel and Tourism: Business Monitor: Quarterly Statistics: Business Monitors", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10040756M 2 2010-03-11T23:19:39.062564 {"publishers": ["Stationery Office Books"], "physical_format": "Paperback", "subjects": ["Aerospace & air transport industries", "Economic statistics", "Reference works"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_10": ["0115379355"], "number_of_pages": 4, "isbn_13": ["9780115379352"], "last_modified": {"type": "/type/datetime", "value": "2010-03-11T23:19:39.062564"}, "publish_date": "January 18, 1999", "key": "/books/OL10040756M", "authors": [{"key": "/authors/OL46053A"}], "title": "Aerospace and Electronics Cost Indices (1995 = 100)", "latest_revision": 2, "works": [{"key": "/works/OL14902605W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL1004078M 7 2020-11-23T14:47:51.513608 {"publishers": ["Wings Books"], "number_of_pages": 253, "isbn_10": ["0517183846"], "covers": [3858731], "lc_classifications": ["TX738 .C96 1997"], "latest_revision": 7, "key": "/books/OL1004078M", "authors": [{"key": "/authors/OL230279A"}], "publish_places": ["New York"], "pagination": "xiii, 253 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part25.utf8:107466106:632"], "title": "The supper book", "dewey_decimal_class": ["641.5/3"], "notes": {"type": "/type/text", "value": "Originally published: New York : Knopf, 1992.\nIncludes index."}, "identifiers": {"goodreads": ["1143585"], "librarything": ["387806"]}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["96043780"], "subjects": ["Suppers."], "publish_date": "1997", "publish_country": "nyu", "last_modified": {"type": "/type/datetime", "value": "2020-11-23T14:47:51.513608"}, "by_statement": "Marion Cunningham ; illustrated by Donnie Cameron.", "oclc_numbers": ["35599785"], "works": [{"key": "/works/OL1921063W"}], "type": {"key": "/type/edition"}, "revision": 7}
+/type/edition /books/OL1004082M 8 2020-11-23T14:47:53.875989 {"publishers": ["Aspen Publishers"], "identifiers": {"goodreads": ["3537937"], "librarything": ["4063017"]}, "isbn_10": ["0834208814"], "series": ["Excellence in practice series"], "covers": [3859071], "lc_classifications": ["RC424.7 .H63 1997"], "latest_revision": 8, "key": "/books/OL1004082M", "authors": [{"key": "/authors/OL542321A"}], "ocaid": "perspectivesinap0000hods", "publish_places": ["Gaithersburg, Md"], "contributions": ["Edwards, Mary Louise, 1946-"], "pagination": "xvi, 256 p. :", "source_records": ["amazon:0834208814", "ia:perspectivesinap0000hods", "marc:marc_loc_2016/BooksAll.2016.part25.utf8:107469564:776"], "title": "Perspectives in applied phonology", "dewey_decimal_class": ["616.85/5"], "notes": {"type": "/type/text", "value": "Includes bibliographical references and index."}, "number_of_pages": 256, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["96043784"], "subjects": ["Articulation disorders.", "Phonetics."], "publish_date": "1997", "publish_country": "mdu", "last_modified": {"type": "/type/datetime", "value": "2020-11-23T14:47:53.875989"}, "by_statement": "Barbara Williams Hodson, Mary Louise Edwards.", "works": [{"key": "/works/OL3343462W"}], "type": {"key": "/type/edition"}, "revision": 8}
+/type/edition /books/OL10041104M 3 2011-04-28T16:15:19.102578 {"publishers": ["Stationery Office Books"], "last_modified": {"type": "/type/datetime", "value": "2011-04-28T16:15:19.102578"}, "title": "Road Lengths in Great Britain (Transport Statistics Report)", "number_of_pages": 25, "isbn_13": ["9780115511073"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0115511075"], "publish_date": "May 1992", "key": "/books/OL10041104M", "authors": [{"key": "/authors/OL2646124A"}], "latest_revision": 3, "oclc_numbers": ["82897291"], "works": [{"key": "/works/OL7931578W"}], "type": {"key": "/type/edition"}, "subjects": ["Transport industries", "United Kingdom, Great Britain"], "revision": 3}
+/type/edition /books/OL10041667M 3 2022-07-17T05:39:39.867659 {"publishers": ["Stationery Office Books"], "key": "/books/OL10041667M", "title": "The MOT Inspection Manual", "isbn_13": ["9780115517860"], "physical_format": "Paperback", "isbn_10": ["0115517863"], "publish_date": "December 31, 1995", "authors": [{"key": "/authors/OL3362598A"}], "works": [{"key": "/works/OL9314266W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780115517860"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T05:39:39.867659"}}
+/type/edition /books/OL10041673M 4 2022-07-17T04:12:15.404980 {"publishers": ["Stationery Office Books"], "title": "Design Manual for Roads and Bridges", "isbn_13": ["9780115517945"], "physical_format": "Ring-bound", "isbn_10": ["0115517944"], "publish_date": "August 15, 1996", "key": "/books/OL10041673M", "authors": [{"key": "/authors/OL46053A"}], "oclc_numbers": ["316195637"], "works": [{"key": "/works/OL14903409W"}], "type": {"key": "/type/edition"}, "subjects": ["Highway & traffic engineering"], "source_records": ["bwb:9780115517945"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T04:12:15.404980"}}
+/type/edition /books/OL10041823M 2 2022-07-17T05:47:49.366133 {"physical_format": "Ring-bound", "publishers": ["The Stationery Office Books (Agencies)"], "title": "Manual of Contract Documents for Highway Works", "isbn_13": ["9780115519642"], "isbn_10": ["0115519645"], "publish_date": "1997", "key": "/books/OL10041823M", "type": {"key": "/type/edition"}, "works": [{"key": "/works/OL28227573W"}], "source_records": ["bwb:9780115519642"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T05:47:49.366133"}}
+/type/edition /books/OL10042008M 4 2022-07-17T05:49:07.038693 {"publishers": ["The Stationery Office Books"], "key": "/books/OL10042008M", "title": "Driving Buses and Coaches (Driving Skills)", "number_of_pages": 258, "isbn_13": ["9780115522567"], "covers": [2320058], "edition_name": "Revised Ed edition", "physical_format": "Paperback", "isbn_10": ["0115522565"], "publish_date": "June 19, 2001", "authors": [{"key": "/authors/OL2646126A"}], "works": [{"key": "/works/OL7931629W"}], "type": {"key": "/type/edition"}, "subjects": ["Automotive technology", "Roadcraft, driving & the Highway Code"], "source_records": ["bwb:9780115522567"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T05:49:07.038693"}}
+/type/edition /books/OL10042505M 3 2011-04-27T17:41:13.188755 {"publishers": ["Stationery Office Books"], "last_modified": {"type": "/type/datetime", "value": "2011-04-27T17:41:13.188755"}, "title": "Labour Market Trends", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780116207821"], "physical_format": "Paperback", "isbn_10": ["0116207825"], "publish_date": "July 4, 1996", "key": "/books/OL10042505M", "authors": [{"key": "/authors/OL46053A"}], "latest_revision": 3, "oclc_numbers": ["655152653"], "works": [{"key": "/works/OL14903110W"}], "type": {"key": "/type/edition"}, "subjects": ["Labour economics"], "revision": 3}
+/type/edition /books/OL10042648M 5 2022-07-17T03:40:02.679509 {"publishers": ["Stationery Office Books"], "physical_format": "Paperback", "source_records": ["marc:talis_openlibrary_contribution/talis-openlibrary-contribution.mrc:2167255841:612", "bwb:9780116210036"], "title": "Abortion Statistics (Series AB)", "number_of_pages": 51, "isbn_13": ["9780116210036"], "isbn_10": ["0116210036"], "publish_date": "December 1997", "key": "/books/OL10042648M", "authors": [{"key": "/authors/OL2646142A"}], "oclc_numbers": ["60166665"], "works": [{"key": "/works/OL7932097W"}], "type": {"key": "/type/edition"}, "subjects": ["Epidemiology & medical statistics", "Population & demography", "United Kingdom, Great Britain"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T03:40:02.679509"}}
+/type/edition /books/OL10042742M 3 2022-07-17T07:49:33.286405 {"publishers": ["Stationery Office Books"], "isbn_10": ["0116212500"], "number_of_pages": 38, "isbn_13": ["9780116212504"], "physical_format": "Paperback", "publish_date": "December 1999", "key": "/books/OL10042742M", "authors": [{"key": "/authors/OL2646142A"}], "title": "Congenital Anomaly Statistics (Series MB3)", "subjects": ["Congenital diseases & disorders"], "works": [{"key": "/works/OL7932071W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780116212504"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T07:49:33.286405"}}
+/type/edition /books/OL10042795M 5 2022-12-05T00:20:00.957276 {"publishers": ["Stationery Office Books"], "title": "United Kingdom National Accounts", "number_of_pages": 322, "isbn_13": ["9780116214706"], "physical_format": "Paperback", "isbn_10": ["0116214708"], "publish_date": "November 5, 2001", "key": "/books/OL10042795M", "authors": [{"key": "/authors/OL2646142A"}], "oclc_numbers": ["502569663"], "works": [{"key": "/works/OL7932101W"}], "type": {"key": "/type/edition"}, "subjects": ["Domestic trade & commerce", "Economic statistics", "Public finance accounting", "United Kingdom, Great Britain", "21st century"], "source_records": ["bwb:9780116214706", "promise:bwb_daily_pallets_2022-07-11"], "local_id": ["urn:bwbsku:KR-343-019"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-05T00:20:00.957276"}}
+/type/edition /books/OL10043285M 2 2010-03-12T00:18:06.966723 {"publishers": ["Stationery Office Books"], "key": "/books/OL10043285M", "title": "London Gazette", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780116628831"], "physical_format": "Paperback", "isbn_10": ["0116628839"], "publish_date": "December 31, 1992", "last_modified": {"type": "/type/datetime", "value": "2010-03-12T00:18:06.966723"}, "authors": [{"key": "/authors/OL46053A"}], "latest_revision": 2, "subjects": ["Serials, periodicals, abstracts, indexes", "United Kingdom, Great Britain"], "works": [{"key": "/works/OL14903497W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10043290M 2 2010-03-12T00:18:06.966723 {"publishers": ["Stationery Office Books"], "key": "/books/OL10043290M", "title": "London Gazette", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780116628886"], "physical_format": "Paperback", "isbn_10": ["011662888X"], "publish_date": "December 31, 1992", "last_modified": {"type": "/type/datetime", "value": "2010-03-12T00:18:06.966723"}, "authors": [{"key": "/authors/OL46053A"}], "latest_revision": 2, "subjects": ["Serials, periodicals, abstracts, indexes", "United Kingdom, Great Britain"], "works": [{"key": "/works/OL14903497W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10043300M 4 2010-04-24T17:54:38.745723 {"publishers": ["Stationery Office Books"], "title": "London Gazette", "isbn_10": ["0116629045"], "identifiers": {"goodreads": ["2350393"]}, "isbn_13": ["9780116629043"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T17:54:38.745723"}, "publish_date": "December 31, 1992", "key": "/books/OL10043300M", "authors": [{"key": "/authors/OL46053A"}], "latest_revision": 4, "subjects": ["Serials, periodicals, abstracts, indexes", "United Kingdom, Great Britain"], "works": [{"key": "/works/OL14903497W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10043373M 4 2010-04-24T17:54:38.745723 {"publishers": ["Stationery Office Books"], "title": "London Gazette", "isbn_10": ["0116630000"], "identifiers": {"goodreads": ["2350396"]}, "isbn_13": ["9780116630001"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T17:54:38.745723"}, "publish_date": "December 31, 1992", "key": "/books/OL10043373M", "authors": [{"key": "/authors/OL46053A"}], "latest_revision": 4, "subjects": ["Serials, periodicals, abstracts, indexes", "United Kingdom, Great Britain"], "works": [{"key": "/works/OL14903497W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10044181M 2 2010-03-12T00:18:06.966723 {"publishers": ["Stationery Office Books"], "key": "/books/OL10044181M", "title": "London Gazette", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780116641557"], "physical_format": "Paperback", "isbn_10": ["011664155X"], "publish_date": "October 18, 1995", "last_modified": {"type": "/type/datetime", "value": "2010-03-12T00:18:06.966723"}, "authors": [{"key": "/authors/OL46053A"}], "latest_revision": 2, "subjects": ["Serials, periodicals, abstracts, indexes", "United Kingdom, Great Britain"], "works": [{"key": "/works/OL14903497W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10044386M 2 2010-03-12T00:18:06.966723 {"publishers": ["Stationery Office Books"], "subtitle": "Supplement, Civil and Military Awards, etc., No. 54483", "title": "London Gazette", "isbn_10": ["0116644834"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780116644831"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-03-12T00:18:06.966723"}, "publish_date": "August 15, 1996", "key": "/books/OL10044386M", "authors": [{"key": "/authors/OL46053A"}], "latest_revision": 2, "subjects": ["Serials, periodicals, abstracts, indexes", "United Kingdom, Great Britain"], "works": [{"key": "/works/OL14903497W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10045131M 2 2009-12-15T00:42:32.745842 {"publishers": ["Stationery Office Books"], "key": "/books/OL10045131M", "title": "Young People and the Labour Market", "number_of_pages": 45, "isbn_13": ["9780117019515"], "physical_format": "Paperback", "isbn_10": ["0117019518"], "publish_date": "December 31, 1988", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:42:32.745842"}, "authors": [{"key": "/authors/OL1689099A"}], "latest_revision": 2, "works": [{"key": "/works/OL6405141W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10045258M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Stationery Office Books"], "title": "English Revision Key Stage 1", "isbn_13": ["9780117022096"], "isbn_10": ["0117022098"], "publish_date": "May 17, 1999", "key": "/books/OL10045258M", "type": {"key": "/type/edition"}, "subjects": ["English language", "For National Curriculum Key Stage 1", "English"], "revision": 1}
+/type/edition /books/OL10045315M 3 2022-07-17T03:32:23.079400 {"publishers": ["The Stationery Office Books (Agencies)"], "number_of_pages": 125, "title": "GC/Works/5 (1998)", "type": {"key": "/type/edition"}, "identifiers": {"librarything": ["3683428"]}, "isbn_13": ["9780117023109"], "isbn_10": ["0117023108"], "publish_date": "September 30, 1998", "key": "/books/OL10045315M", "physical_format": "Paperback", "subjects": ["Building construction & materials", "English law: contract law"], "works": [{"key": "/works/OL28221952W"}], "lc_classifications": ["TH425"], "source_records": ["bwb:9780117023109"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T03:32:23.079400"}}
+/type/edition /books/OL10046470M 2 2010-03-11T23:40:48.736746 {"publishers": ["Stationery Office Books"], "physical_format": "Paperback", "subjects": ["Public health & preventive medicine"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_10": ["0117297119"], "number_of_pages": 32, "isbn_13": ["9780117297111"], "last_modified": {"type": "/type/datetime", "value": "2010-03-11T23:40:48.736746"}, "publish_date": "July 16, 1994", "key": "/books/OL10046470M", "authors": [{"key": "/authors/OL46053A"}], "title": "Health Trends", "latest_revision": 2, "works": [{"key": "/works/OL14903163W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10046663M 2 2010-03-11T23:49:28.168884 {"publishers": ["Stationery Office Books"], "physical_format": "Paperback", "title": "Integrated Tariff of the United Kingdom (H.M. Customs & Excise Tariff)", "isbn_10": ["011729943X"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "edition_name": "1994 Ed edition", "isbn_13": ["9780117299436"], "last_modified": {"type": "/type/datetime", "value": "2010-03-11T23:49:28.168884"}, "publish_date": "July 16, 1994", "key": "/books/OL10046663M", "authors": [{"key": "/authors/OL46053A"}], "latest_revision": 2, "works": [{"key": "/works/OL14903270W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10046835M 5 2022-07-17T08:31:40.729224 {"publishers": ["Stationery Office Books"], "physical_format": "Paperback", "source_records": ["marc:talis_openlibrary_contribution/talis-openlibrary-contribution.mrc:1071265240:1065", "bwb:9780117518377"], "title": "Energy Efficient Renovation of Houses", "number_of_pages": 38, "isbn_13": ["9780117518377"], "isbn_10": ["0117518379"], "publish_date": "February 1986", "key": "/books/OL10046835M", "authors": [{"key": "/authors/OL2645822A"}], "oclc_numbers": ["13251080"], "works": [{"key": "/works/OL7926332W"}], "type": {"key": "/type/edition"}, "subjects": ["Sanitary & municipal engineering"], "lc_classifications": ["TH4816"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T08:31:40.729224"}}
+/type/edition /books/OL10046918M 3 2022-07-18T14:10:13.011342 {"publishers": ["Stationery Office Books"], "key": "/books/OL10046918M", "number_of_pages": 41, "isbn_13": ["9780117522077"], "physical_format": "Paperback", "isbn_10": ["0117522074"], "publish_date": "December 31, 1989", "authors": [{"key": "/authors/OL46053A"}], "title": "Town and Country Planning (Control of Advertisements) Regulations 1989 (Circular)", "works": [{"key": "/works/OL14897948W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780117522077"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-18T14:10:13.011342"}}
+/type/edition /books/OL10047016M 5 2022-07-17T06:41:29.258901 {"publishers": ["Bernan Press"], "number_of_pages": 156, "subtitle": "The Hostels Experience", "title": "No Place Like Home", "type": {"key": "/type/edition"}, "identifiers": {"goodreads": ["4970944"]}, "isbn_13": ["9780117523548"], "covers": [5030114], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0117523542"], "publish_date": "December 1991", "key": "/books/OL10047016M", "authors": [{"key": "/authors/OL3363644A"}, {"key": "/authors/OL1158263A"}, {"key": "/authors/OL3363645A"}], "subjects": ["Homelessness", "Housing", "England", "General", "Sociology"], "physical_format": "Paperback", "works": [{"key": "/works/OL28229204W"}], "source_records": ["bwb:9780117523548"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T06:41:29.258901"}}
+/type/edition /books/OL10047057M 6 2022-07-17T05:14:14.312880 {"publishers": ["Stationery Office Books"], "number_of_pages": 27, "title": "Metal Industry Sector (Chief Inspector's Guidance to Inspectors)", "identifiers": {"goodreads": ["3398089"]}, "isbn_13": ["9780117524095"], "physical_format": "Paperback", "isbn_10": ["0117524093"], "publish_date": "December 31, 1991", "key": "/books/OL10047057M", "authors": [{"key": "/authors/OL3314854A"}], "oclc_numbers": ["60251662"], "works": [{"key": "/works/OL9259583W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780117524095"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T05:14:14.312880"}}
+/type/edition /books/OL10047341M 3 2011-04-29T23:21:13.741307 {"publishers": ["Stationery Office"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T23:21:13.741307"}, "title": "Her Majesty's Inspectorate of Pollution 1992/93", "number_of_pages": 60, "isbn_13": ["9780117528321"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0117528323"], "publish_date": "November 1993", "key": "/books/OL10047341M", "authors": [{"key": "/authors/OL3363660A"}], "latest_revision": 3, "oclc_numbers": ["79818187"], "works": [{"key": "/works/OL9315348W"}], "type": {"key": "/type/edition"}, "subjects": ["Pollution & threats to the environment", "United Kingdom, Great Britain", "c 1990 to c 2000", "Science/Mathematics"], "revision": 3}
+/type/edition /books/OL10047959M 2 2010-03-11T23:43:05.453856 {"publishers": ["Stationery Office Books"], "title": "Social Fund Manual", "isbn_10": ["011761615X"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780117616158"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-03-11T23:43:05.453856"}, "publish_date": "December 31, 1989", "key": "/books/OL10047959M", "authors": [{"key": "/authors/OL46053A"}], "latest_revision": 2, "works": [{"key": "/works/OL14903193W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10047M 4 2022-08-11T04:55:15.599708 {"notes": {"type": "/type/text", "value": "In Telugu."}, "title": "Evaridi ne\u0304ram\u0323?", "authors": [{"key": "/authors/OL7113A"}], "publish_date": "1965", "pagination": "94 p.", "source_records": ["marc:marc_records_scriblio_net/part29.dat:5959005:467", "marc:marc_loc_2016/BooksAll.2016.part43.utf8:13689135:469"], "lccn": ["sa66007720"], "languages": [{"key": "/languages/tel"}], "lc_classifications": ["PL4780.9.V41957 E9"], "publish_country": "ii ", "oclc_numbers": ["20306277"], "type": {"key": "/type/edition"}, "key": "/books/OL10047M", "number_of_pages": 94, "works": [{"key": "/works/OL347351W"}], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-11T04:55:15.599708"}}
+/type/edition /books/OL10048219M 2 2010-03-12T00:02:09.035274 {"publishers": ["Stationery Office Books"], "title": "Adjudication Officers' Guide", "isbn_10": ["0117619671"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780117619678"], "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2010-03-12T00:02:09.035274"}, "publish_date": "December 31, 1992", "key": "/books/OL10048219M", "authors": [{"key": "/authors/OL46053A"}], "latest_revision": 2, "works": [{"key": "/works/OL14903354W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10048647M 2 2010-03-11T19:40:24.567577 {"publishers": ["Stationery Office Books"], "key": "/books/OL10048647M", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 8, "isbn_13": ["9780117624832"], "physical_format": "Ring-bound", "isbn_10": ["0117624837"], "publish_date": "February 7, 1997", "last_modified": {"type": "/type/datetime", "value": "2010-03-11T19:40:24.567577"}, "authors": [{"key": "/authors/OL46053A"}], "title": "Commissioners Decision R (F) 1/94 (Decisions of the Commissioners: R(F) 1994/1)", "latest_revision": 2, "works": [{"key": "/works/OL14882135W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10048757M 2 2010-03-11T21:07:52.251158 {"publishers": ["Stationery Office Books"], "title": "Military Engineering", "isbn_10": ["0117721786"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780117721784"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-03-11T21:07:52.251158"}, "publish_date": "December 31, 1990", "key": "/books/OL10048757M", "authors": [{"key": "/authors/OL46053A"}], "latest_revision": 2, "works": [{"key": "/works/OL14890923W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10048945M 2 2022-07-17T10:01:04.841587 {"physical_format": "Paperback", "publishers": ["The Stationery Office Books (Agencies)"], "number_of_pages": 112, "isbn_13": ["9780117728592"], "isbn_10": ["0117728594"], "publish_date": "1998", "key": "/books/OL10048945M", "title": "Heating, Hot and Cold Water, Steam and Gas Installations for Buildings (Specification: 036) (Specification)", "type": {"key": "/type/edition"}, "subjects": ["Heating, lighting, ventilation", "Occupational / industrial health & safety"], "works": [{"key": "/works/OL28236582W"}], "source_records": ["bwb:9780117728592"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T10:01:04.841587"}}
+/type/edition /books/OL10049842M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Paperback", "subtitle": "United Kingdom Trade With the European Union and the World", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Stationery Office"], "number_of_pages": 100, "isbn_13": ["9780117831803"], "isbn_10": ["0117831808"], "publish_date": "September 30, 2006", "key": "/books/OL10049842M", "title": "Overseas Trade Statistics", "type": {"key": "/type/edition"}, "subjects": ["International - General", "International Relations - Trade & Tariffs", "Statistics", "Political Science", "Politics/International Relations"], "revision": 1}
+/type/edition /books/OL10049938M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "subtitle": "Road Traffic", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["The Stationery Office Books (Agencies)"], "title": "Statutes in Force", "isbn_13": ["9780118005043"], "isbn_10": ["0118005049"], "publish_date": "December 31, 1979", "key": "/books/OL10049938M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10050053M 2 2010-03-12T00:29:21.628405 {"publishers": ["Stationery Office Books"], "physical_format": "Ring-bound", "title": "Statutes in Force", "isbn_10": ["0118006835"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "edition_name": "Official Revised Ed edition", "isbn_13": ["9780118006835"], "last_modified": {"type": "/type/datetime", "value": "2010-03-12T00:29:21.628405"}, "publish_date": "December 31, 1977", "key": "/books/OL10050053M", "authors": [{"key": "/authors/OL46053A"}], "latest_revision": 2, "subjects": ["English law: statutes & regulations"], "works": [{"key": "/works/OL14903581W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10050092M 2 2010-03-12T00:29:21.628405 {"publishers": ["Stationery Office Books"], "physical_format": "Ring-bound", "title": "Statutes in Force", "isbn_10": ["0118007718"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "edition_name": "Official Revised Ed edition", "isbn_13": ["9780118007719"], "last_modified": {"type": "/type/datetime", "value": "2010-03-12T00:29:21.628405"}, "publish_date": "December 31, 1978", "key": "/books/OL10050092M", "authors": [{"key": "/authors/OL46053A"}], "latest_revision": 2, "subjects": ["English law: statutes & regulations"], "works": [{"key": "/works/OL14903581W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10050241M 2 2010-03-12T00:29:21.628405 {"publishers": ["Stationery Office Books"], "physical_format": "Ring-bound", "title": "Statutes in Force", "isbn_10": ["0118009850"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "edition_name": "Official Revised Ed edition", "isbn_13": ["9780118009850"], "last_modified": {"type": "/type/datetime", "value": "2010-03-12T00:29:21.628405"}, "publish_date": "December 31, 1978", "key": "/books/OL10050241M", "authors": [{"key": "/authors/OL46053A"}], "latest_revision": 2, "subjects": ["English law: statutes & regulations"], "works": [{"key": "/works/OL14903581W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL1005045M 10 2022-12-10T05:34:42.874972 {"publishers": ["Baker Books"], "identifiers": {"librarything": ["4273279"], "goodreads": ["4813170"]}, "isbn_10": ["080109027X"], "covers": [1506931], "lc_classifications": ["BV639.S5 B35 1997"], "key": "/books/OL1005045M", "publish_places": ["Grand Rapid, Mich"], "contributions": ["Fagerstrom, Douglas L."], "pagination": "362 p. ;", "source_records": ["marc:marc_records_scriblio_net/part25.dat:202348166:689", "marc:marc_loc_2016/BooksAll.2016.part25.utf8:108355575:689", "ia:bakerhandbookofs0000unse_s6x6", "promise:bwb_daily_pallets_2020-12-22", "promise:bwb_daily_pallets_2020-07-07"], "title": "Baker handbook of single adult ministry", "dewey_decimal_class": ["259/.08/652"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 357-360)."}, "number_of_pages": 362, "languages": [{"key": "/languages/eng"}], "lccn": ["96044807"], "subjects": ["Church work with single people."], "publish_date": "1997", "publish_country": "miu", "by_statement": "edited by Douglas L. Fagerstrom ; foreword by Bill Flanagan and Jim Smoke.", "oclc_numbers": ["35627722"], "works": [{"key": "/works/OL19600931W"}], "type": {"key": "/type/edition"}, "ocaid": "bakerhandbookofs0000unse_s6x6", "local_id": ["urn:bwbsku:O7-BBP-786", "urn:bwbsku:O6-BIZ-496"], "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T05:34:42.874972"}}
+/type/edition /books/OL10050476M 2 2010-03-12T00:29:21.628405 {"publishers": ["Stationery Office Books"], "physical_format": "Ring-bound", "title": "Statutes in Force", "isbn_10": ["0118013351"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "edition_name": "Official Revised Ed edition", "isbn_13": ["9780118013352"], "last_modified": {"type": "/type/datetime", "value": "2010-03-12T00:29:21.628405"}, "publish_date": "December 31, 1979", "key": "/books/OL10050476M", "authors": [{"key": "/authors/OL46053A"}], "latest_revision": 2, "subjects": ["English law: statutes & regulations"], "works": [{"key": "/works/OL14903581W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10050647M 2 2010-03-12T00:29:21.628405 {"publishers": ["Stationery Office Books"], "physical_format": "Ring-bound", "title": "Statutes in Force", "isbn_10": ["0118015451"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "edition_name": "Official Revised Ed edition", "isbn_13": ["9780118015455"], "last_modified": {"type": "/type/datetime", "value": "2010-03-12T00:29:21.628405"}, "publish_date": "December 31, 1979", "key": "/books/OL10050647M", "authors": [{"key": "/authors/OL46053A"}], "latest_revision": 2, "subjects": ["English law: statutes & regulations"], "works": [{"key": "/works/OL14903581W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10050931M 2 2010-03-12T00:29:21.628405 {"publishers": ["Stationery Office Books"], "physical_format": "Ring-bound", "title": "Statutes in Force", "isbn_10": ["0118020188"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "edition_name": "Official Revised Ed edition", "isbn_13": ["9780118020183"], "last_modified": {"type": "/type/datetime", "value": "2010-03-12T00:29:21.628405"}, "publish_date": "December 31, 1979", "key": "/books/OL10050931M", "authors": [{"key": "/authors/OL46053A"}], "latest_revision": 2, "subjects": ["English law: statutes & regulations"], "works": [{"key": "/works/OL14903581W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10050962M 2 2010-03-12T00:29:21.628405 {"publishers": ["Stationery Office Books"], "physical_format": "Ring-bound", "title": "Statutes in Force", "isbn_10": ["0118020706"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "edition_name": "Official Revised Ed edition", "isbn_13": ["9780118020701"], "last_modified": {"type": "/type/datetime", "value": "2010-03-12T00:29:21.628405"}, "publish_date": "December 31, 1979", "key": "/books/OL10050962M", "authors": [{"key": "/authors/OL46053A"}], "latest_revision": 2, "subjects": ["English law: statutes & regulations"], "works": [{"key": "/works/OL14903581W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10051243M 2 2010-03-12T00:29:21.628405 {"publishers": ["Stationery Office Books"], "physical_format": "Ring-bound", "title": "Statutes in Force", "isbn_10": ["0118029096"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "edition_name": "Official Revised Ed edition", "isbn_13": ["9780118029094"], "last_modified": {"type": "/type/datetime", "value": "2010-03-12T00:29:21.628405"}, "publish_date": "December 31, 1980", "key": "/books/OL10051243M", "authors": [{"key": "/authors/OL46053A"}], "latest_revision": 2, "subjects": ["English law: statutes & regulations"], "works": [{"key": "/works/OL14903581W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10051580M 3 2012-03-01T22:14:57.902438 {"publishers": ["Stationery Office Books"], "last_modified": {"type": "/type/datetime", "value": "2012-03-01T22:14:57.902438"}, "title": "Statutes in Force", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780118034241"], "edition_name": "Official Revised Ed edition", "physical_format": "Ring-bound", "isbn_10": ["0118034243"], "publish_date": "December 31, 1980", "key": "/books/OL10051580M", "authors": [{"key": "/authors/OL2656742A"}], "latest_revision": 3, "works": [{"key": "/works/OL14903581W"}], "type": {"key": "/type/edition"}, "subjects": ["English law: statutes & regulations"], "revision": 3}
+/type/edition /books/OL10051725M 2 2010-03-12T00:29:21.628405 {"publishers": ["Stationery Office Books"], "physical_format": "Ring-bound", "title": "Statutes in Force", "isbn_10": ["0118036246"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "edition_name": "Official Revised Ed edition", "isbn_13": ["9780118036245"], "last_modified": {"type": "/type/datetime", "value": "2010-03-12T00:29:21.628405"}, "publish_date": "December 31, 1981", "key": "/books/OL10051725M", "authors": [{"key": "/authors/OL46053A"}], "latest_revision": 2, "subjects": ["English law: statutes & regulations"], "works": [{"key": "/works/OL14903581W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL1005181M 8 2021-10-28T05:55:35.801534 {"publishers": ["Barbed Wire Press"], "identifiers": {"goodreads": ["662665"], "librarything": ["4061023"]}, "isbn_10": ["0935269231"], "subject_place": ["Southwest, New", "Southwest, New."], "covers": [3860040], "lc_classifications": ["F786.R57 J64 1996"], "key": "/books/OL1005181M", "authors": [{"key": "/authors/OL542786A"}], "publish_places": ["Stillwater, OK"], "languages": [{"key": "/languages/eng"}], "pagination": "xvi, 264 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part25.utf8:108474980:832", "ia:johnringo0000john"], "title": "John Ringo", "dewey_decimal_class": ["979/.02/092", "B"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 246-254) and index."}, "number_of_pages": 264, "edition_name": "1st ed.", "lccn": ["96044951"], "subjects": ["Ringo, John.", "Outlaws -- Southwest, New -- Biography.", "Frontier and pioneer life -- Southwest, New.", "Southwest, New -- Biography."], "publish_date": "1996", "publish_country": "oku", "by_statement": "David Johnson.", "oclc_numbers": ["35637665"], "works": [{"key": "/works/OL3345776W"}], "type": {"key": "/type/edition"}, "ocaid": "johnringo0000john", "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2021-10-28T05:55:35.801534"}}
+/type/edition /books/OL10051881M 2 2010-03-12T00:29:21.628405 {"publishers": ["Stationery Office Books"], "physical_format": "Ring-bound", "title": "Statutes in Force", "isbn_10": ["0118038486"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "edition_name": "Official Revised Ed edition", "isbn_13": ["9780118038485"], "last_modified": {"type": "/type/datetime", "value": "2010-03-12T00:29:21.628405"}, "publish_date": "December 31, 1981", "key": "/books/OL10051881M", "authors": [{"key": "/authors/OL46053A"}], "latest_revision": 2, "subjects": ["English law: statutes & regulations"], "works": [{"key": "/works/OL14903581W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10052152M 2 2010-03-12T00:29:21.628405 {"publishers": ["Stationery Office Books"], "physical_format": "Ring-bound", "title": "Statutes in Force", "isbn_10": ["011804303X"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "edition_name": "Official Revised Ed edition", "isbn_13": ["9780118043038"], "last_modified": {"type": "/type/datetime", "value": "2010-03-12T00:29:21.628405"}, "publish_date": "December 31, 1982", "key": "/books/OL10052152M", "authors": [{"key": "/authors/OL46053A"}], "latest_revision": 2, "subjects": ["English law: statutes & regulations"], "works": [{"key": "/works/OL14903581W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10052163M 4 2022-07-17T05:11:07.386939 {"publishers": ["Stationery Office Books"], "title": "Statutes in Force", "isbn_13": ["9780118043274"], "edition_name": "Official Revised Ed edition", "physical_format": "Ring-bound", "isbn_10": ["0118043277"], "publish_date": "December 31, 1982", "key": "/books/OL10052163M", "authors": [{"key": "/authors/OL46053A"}], "oclc_numbers": ["191989812"], "works": [{"key": "/works/OL14903581W"}], "type": {"key": "/type/edition"}, "subjects": ["English law: statutes & regulations"], "source_records": ["bwb:9780118043274"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T05:11:07.386939"}}
+/type/edition /books/OL10052438M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780118047852"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Stationery Office Books"], "number_of_pages": 72, "edition_name": "Official Revised Ed edition", "isbn_10": ["011804785X"], "publish_date": "December 31, 1985", "key": "/books/OL10052438M", "title": "Statutes in Force", "type": {"key": "/type/edition"}, "subjects": ["English law: statutes & regulations"], "revision": 1}
+/type/edition /books/OL10052540M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780118049214"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Stationery Office Books"], "number_of_pages": 5, "edition_name": "Official Revised Ed edition", "isbn_10": ["0118049216"], "publish_date": "December 31, 1986", "key": "/books/OL10052540M", "title": "Statutes in Force", "type": {"key": "/type/edition"}, "subjects": ["English law: statutes & regulations"], "revision": 1}
+/type/edition /books/OL10052728M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780118051644"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Stationery Office Books"], "number_of_pages": 122, "edition_name": "Official Revised Ed edition", "isbn_10": ["0118051644"], "publish_date": "December 31, 1988", "key": "/books/OL10052728M", "title": "Statutes in Force", "type": {"key": "/type/edition"}, "subjects": ["English law: statutes & regulations"], "revision": 1}
+/type/edition /books/OL10052793M 3 2012-03-01T22:14:57.902438 {"publishers": ["Stationery Office Books"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2012-03-01T22:14:57.902438"}, "title": "Statutes in Force", "number_of_pages": 5, "isbn_13": ["9780118052566"], "edition_name": "Official Revised Ed edition", "physical_format": "Paperback", "isbn_10": ["011805256X"], "publish_date": "December 31, 1989", "key": "/books/OL10052793M", "authors": [{"key": "/authors/OL2656742A"}], "latest_revision": 3, "works": [{"key": "/works/OL14903581W"}], "type": {"key": "/type/edition"}, "subjects": ["English law: statutes & regulations"], "revision": 3}
+/type/edition /books/OL10052877M 3 2011-04-26T05:54:13.372021 {"publishers": ["Stationery Office Books"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-26T05:54:13.372021"}, "title": "Statutes in Force", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 418, "edition_name": "Official Revised Ed edition", "isbn_13": ["9780118053839"], "isbn_10": ["0118053833"], "publish_date": "December 31, 1990", "key": "/books/OL10052877M", "authors": [{"key": "/authors/OL46053A"}], "latest_revision": 3, "oclc_numbers": ["650338100"], "works": [{"key": "/works/OL14903581W"}], "type": {"key": "/type/edition"}, "subjects": ["English law: statutes & regulations"], "revision": 3}
+/type/edition /books/OL1005299M 8 2020-11-23T15:00:32.702031 {"publishers": ["Springer"], "identifiers": {"goodreads": ["436793"]}, "subtitle": "OOPSLA '95 workshop proceedings,16 October 1995, Austin, Texas", "isbn_10": ["3540760962"], "covers": [2230334], "lc_classifications": ["QA76.9.A25 W669 1995", "QA76.9.U83QA76.9.H85"], "latest_revision": 8, "key": "/books/OL1005299M", "authors": [{"key": "/authors/OL542822A"}], "ocaid": "businessobjectde00pate", "publish_places": ["London", "New York"], "contributions": ["Sutherland, Jeffrey Victor."], "pagination": "viii, 165 p. :", "source_records": ["ia:businessobjectde00pate", "bwb:9783540760962", "marc:marc_loc_2016/BooksAll.2016.part25.utf8:108586405:926"], "title": "Business object design and implementation", "dewey_decimal_class": ["005.1/1"], "notes": {"type": "/type/text", "value": "Includes bibliographical references and index."}, "number_of_pages": 165, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["96045077"], "subjects": ["Computer security -- Congresses.", "Object-oriented methods (Computer science) -- Congresses.", "Business -- Data processing -- Congresses."], "publish_date": "1997", "publish_country": "enk", "last_modified": {"type": "/type/datetime", "value": "2020-11-23T15:00:32.702031"}, "by_statement": "J. Sutherland ... [et al.].", "works": [{"key": "/works/OL3346031W"}], "type": {"key": "/type/edition"}, "revision": 8}
+/type/edition /books/OL10053077M 3 2012-03-01T22:14:57.902438 {"publishers": ["Stationery Office Books"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2012-03-01T22:14:57.902438"}, "title": "Statutes in Force", "number_of_pages": 81, "isbn_13": ["9780118056212"], "edition_name": "Official Revised Ed edition", "physical_format": "Paperback", "isbn_10": ["0118056212"], "publish_date": "December 31, 1991", "key": "/books/OL10053077M", "authors": [{"key": "/authors/OL2656742A"}], "latest_revision": 3, "works": [{"key": "/works/OL14903581W"}], "type": {"key": "/type/edition"}, "subjects": ["English law: statutes & regulations"], "revision": 3}
+/type/edition /books/OL10053555M 3 2012-03-01T22:14:57.902438 {"publishers": ["Stationery Office Books"], "last_modified": {"type": "/type/datetime", "value": "2012-03-01T22:14:57.902438"}, "title": "Statutes in Force", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780118101219"], "edition_name": "Official Revised Ed edition", "physical_format": "Ring-bound", "isbn_10": ["0118101218"], "publish_date": "December 31, 1979", "key": "/books/OL10053555M", "authors": [{"key": "/authors/OL2656742A"}], "latest_revision": 3, "works": [{"key": "/works/OL14903581W"}], "type": {"key": "/type/edition"}, "subjects": ["English law: statutes & regulations"], "revision": 3}
+/type/edition /books/OL10053633M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["The Stationery Office Books (Agencies)"], "title": "Statutes in Force", "isbn_13": ["9780118102209"], "isbn_10": ["0118102206"], "publish_date": "December 31, 1980", "key": "/books/OL10053633M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10053662M 3 2012-03-01T22:14:57.902438 {"publishers": ["Stationery Office Books"], "last_modified": {"type": "/type/datetime", "value": "2012-03-01T22:14:57.902438"}, "title": "Statutes in Force", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780118102506"], "edition_name": "Official Revised Ed edition", "physical_format": "Ring-bound", "isbn_10": ["0118102508"], "publish_date": "December 31, 1980", "key": "/books/OL10053662M", "authors": [{"key": "/authors/OL2656742A"}], "latest_revision": 3, "works": [{"key": "/works/OL14903581W"}], "type": {"key": "/type/edition"}, "subjects": ["English law: statutes & regulations"], "revision": 3}
+/type/edition /books/OL10053833M 3 2022-07-17T19:49:40.541775 {"publishers": ["The Stationery Office Books (Agencies)"], "physical_format": "Unknown Binding", "source_records": ["ia:chronologicaltab0001grea", "bwb:9780118403641"], "title": "Chronological Table of the Statutes 1994", "number_of_pages": 1956, "covers": [10392792], "isbn_13": ["9780118403641"], "isbn_10": ["0118403648"], "publish_date": "1997", "key": "/books/OL10053833M", "ocaid": "chronologicaltab0001grea", "works": [{"key": "/works/OL21674124W"}], "type": {"key": "/type/edition"}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T19:49:40.541775"}}
+/type/edition /books/OL10054166M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "subtitle": "A Review by HM Nuclear Installations Inspectorate of the Pre-construction Safety Report (HAR) (Hazard Analysis Reports)", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Health and Safety Executive (HSE)"], "number_of_pages": 88, "isbn_13": ["9780118836524"], "isbn_10": ["0118836528"], "publish_date": "December 31, 1982", "key": "/books/OL10054166M", "title": "Sizewell B", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10054238M 3 2019-07-30T13:46:35.725064 {"publishers": ["Health and Safety Executive (HSE)"], "last_modified": {"type": "/type/datetime", "value": "2019-07-30T13:46:35.725064"}, "title": "1,3-Butadiene and Related Compounds (TR) (Toxicity Review)", "number_of_pages": 34, "isbn_13": ["9780118838405"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0118838407"], "publish_date": "December 31, 1985", "key": "/books/OL10054238M", "authors": [{"key": "/authors/OL3363856A"}, {"key": "/authors/OL3363862A"}], "latest_revision": 3, "oclc_numbers": ["19522138"], "works": [{"key": "/works/OL876002W"}], "type": {"key": "/type/edition"}, "subjects": ["Occupational / industrial health & safety"], "revision": 3}
+/type/edition /books/OL10054250M 2 2019-04-03T07:10:28.070046 {"publishers": ["Health and Safety Executive (HSE)"], "physical_format": "Paperback", "subtitle": "The Dangerous Substances in Harbour Areas Regulations 1987 (COP)", "source_records": ["marc:talis_openlibrary_contribution/talis-openlibrary-contribution.mrc:466094729:816"], "title": "Dangerous Substances in Harbour Areas", "number_of_pages": 20, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780118838573"], "isbn_10": ["0118838571"], "publish_date": "December 31, 1987", "key": "/books/OL10054250M", "last_modified": {"type": "/type/datetime", "value": "2019-04-03T07:10:28.070046"}, "latest_revision": 2, "works": [{"key": "/works/OL19466344W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10054255M 2 2019-07-30T13:46:37.967818 {"publishers": ["Health and Safety Executive (HSE)"], "subtitle": "A Report of the Investigation by the Health and Safety Executive into the Explosion on Nov. 29, 1985 at Kingsbridge Drive, Rutherglen, Glasgow (Investigation Reports)", "last_modified": {"type": "/type/datetime", "value": "2019-07-30T13:46:37.967818"}, "title": "The Rutherglen Explosion", "number_of_pages": 32, "isbn_13": ["9780118838702"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0118838709"], "publish_date": "December 31, 1986", "key": "/books/OL10054255M", "latest_revision": 2, "works": [{"key": "/works/OL10737465W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10054282M 2 2011-06-08T01:30:10.868896 {"publishers": ["Health and Safety Executive (HSE)"], "last_modified": {"type": "/type/datetime", "value": "2011-06-08T01:30:10.868896"}, "title": "Safe Operation of Passenger Carrying Devices - the Chair-o-plane (PM)", "number_of_pages": 5, "isbn_13": ["9780118839280"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0118839284"], "publish_date": "December 31, 1986", "key": "/books/OL10054282M", "latest_revision": 2, "oclc_numbers": ["41549646"], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10054530M 6 2022-07-17T03:00:55.252187 {"publishers": ["Stationery Office Books"], "identifiers": {"goodreads": ["6119226"]}, "classifications": {}, "title": "Geology of the Country Around Great Yarmouth", "physical_format": "Paperback", "notes": {"type": "/type/text", "value": "British Geological Survey Memoirs"}, "number_of_pages": 148, "isbn_13": ["9780118844918"], "isbn_10": ["0118844911"], "publish_date": "April 27, 1994", "key": "/books/OL10054530M", "authors": [{"key": "/authors/OL1034403A"}], "works": [{"key": "/works/OL4862937W"}], "type": {"key": "/type/edition"}, "subjects": ["Geology & the lithosphere", "England"], "source_records": ["bwb:9780118844918"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T03:00:55.252187"}}
+/type/edition /books/OL10055027M 6 2012-03-01T22:14:57.902438 {"publishers": ["Bernan Press"], "number_of_pages": 65, "subtitle": "Year Ender 31 March 1992", "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2012-03-01T22:14:57.902438"}, "latest_revision": 6, "key": "/books/OL10055027M", "authors": [{"key": "/authors/OL3364045A"}, {"key": "/authors/OL2656742A"}], "subjects": ["Economic Conditions", "Business / Economics / Finance"], "languages": [{"key": "/languages/eng"}], "title": "Audit Commission, Annual Report", "identifiers": {"goodreads": ["5242680"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780118860864"], "isbn_10": ["0118860860"], "publish_date": "December 1992", "oclc_numbers": ["78264453"], "works": [{"key": "/works/OL14880571W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL1005538M 9 2022-12-04T03:09:40.951071 {"publishers": ["Prentice Hall"], "number_of_pages": 462, "subtitle": "contexts for reading and writing", "isbn_10": ["0136689639"], "covers": [1115237], "lc_classifications": ["PE1127.L47 L59 1997", "PE1127.L47L59 1997"], "key": "/books/OL1005538M", "publish_places": ["Upper Saddle River, NJ"], "contributions": ["Buffington, Nancy.", "Diogenes, Marvin.", "Moneyhun, Clyde."], "pagination": "xvi, 462 p. ;", "source_records": ["bwb:9780136689638", "marc:marc_loc_2016/BooksAll.2016.part25.utf8:108806906:960", "ia:livinglanguagesc0000unse"], "title": "Living languages", "dewey_decimal_class": ["808/.0427"], "notes": {"type": "/type/text", "value": "\"A Blair Press book.\"\nIncludes index."}, "identifiers": {"librarything": ["3215613"], "goodreads": ["1663770"]}, "languages": [{"key": "/languages/eng"}], "lccn": ["96045326"], "subjects": ["Readers -- Language and languages.", "Language and languages -- Problems, exercises, etc.", "Report writing -- Problems, exercises, etc.", "English language -- Rhetoric.", "College readers."], "publish_date": "1997", "publish_country": "nju", "by_statement": "edited by Nancy Buffington, Marvin Diogenes, Clyde Moneyhun.", "oclc_numbers": ["35770916"], "works": [{"key": "/works/OL21539091W"}], "type": {"key": "/type/edition"}, "ocaid": "livinglanguagesc0000unse", "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T03:09:40.951071"}}
+/type/edition /books/OL10055583M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["United Nations"], "title": "Flags of the United Nations", "isbn_13": ["9780119093230"], "isbn_10": ["0119093235"], "publish_date": "December 31, 1987", "key": "/books/OL10055583M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10055719M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["United Nations"], "number_of_pages": 16, "isbn_13": ["9780119095326"], "isbn_10": ["0119095327"], "publish_date": "December 31, 1988", "key": "/books/OL10055719M", "title": "Official Records", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10055957M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["United Nations"], "number_of_pages": 7, "isbn_13": ["9780119099003"], "isbn_10": ["0119099004"], "publish_date": "December 31, 1989", "key": "/books/OL10055957M", "title": "Official Records", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10056609M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "subtitle": "Information and Notices (Official Journal of the European Communities)", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["European Communities / Union (EUR-OP/OOPEC/OPOCE)"], "number_of_pages": 19, "isbn_13": ["9780119114720"], "isbn_10": ["0119114720"], "publish_date": "December 31, 1992", "key": "/books/OL10056609M", "title": "Official Journal of the European Communities", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10056622M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "subtitle": "Legislation (Official Journal of the European Communities)", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["European Communities / Union (EUR-OP/OOPEC/OPOCE)"], "number_of_pages": 31, "isbn_13": ["9780119114867"], "isbn_10": ["0119114860"], "publish_date": "December 31, 1992", "key": "/books/OL10056622M", "title": "Official Journal of the European Communities", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10056969M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "subtitle": "Supplement (Official Journal of the European Communities)", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["European Communities / Union (EUR-OP/OOPEC/OPOCE)"], "number_of_pages": 101, "isbn_13": ["9780119118377"], "isbn_10": ["0119118378"], "publish_date": "December 31, 1993", "key": "/books/OL10056969M", "title": "Official Journal of the European Communities", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10057271M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "subtitle": "Supplement (Official Journal of the European Communities)", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["European Communities / Union (EUR-OP/OOPEC/OPOCE)"], "number_of_pages": 120, "isbn_13": ["9780119125504"], "isbn_10": ["0119125501"], "publish_date": "December 31, 1993", "key": "/books/OL10057271M", "title": "Official Journal of the European Communities", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10057361M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "subtitle": "Supplement (Official Journal of the European Communities)", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["European Communities / Union (EUR-OP/OOPEC/OPOCE)"], "number_of_pages": 137, "isbn_13": ["9780119126402"], "isbn_10": ["0119126400"], "publish_date": "December 31, 1993", "key": "/books/OL10057361M", "title": "Official Journal of the European Communities", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10058097M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "subtitle": "Legislation (Official Journal of the European Communities)", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["European Communities / Union (EUR-OP/OOPEC/OPOCE)"], "number_of_pages": 44, "isbn_13": ["9780119133967"], "isbn_10": ["0119133962"], "publish_date": "October 21, 1994", "key": "/books/OL10058097M", "title": "Official Journal of the European Communities", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10058166M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "subtitle": "Information and Notices (Official Journal of the European Communities)", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["European Communities / Union (EUR-OP/OOPEC/OPOCE)"], "number_of_pages": 12, "isbn_13": ["9780119134650"], "isbn_10": ["0119134659"], "publish_date": "December 31, 1994", "key": "/books/OL10058166M", "title": "Official Journal of the European Communities", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10058171M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "subtitle": "Legislation (Official Journal of the European Communities)", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["European Communities / Union (EUR-OP/OOPEC/OPOCE)"], "number_of_pages": 50, "isbn_13": ["9780119135039"], "isbn_10": ["0119135035"], "publish_date": "December 31, 1994", "key": "/books/OL10058171M", "title": "Official Journal of the European Communities", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10058255M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "subtitle": "Legislation (Official Journal of the European Communities)", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["European Communities / Union (EUR-OP/OOPEC/OPOCE)"], "number_of_pages": 11, "isbn_13": ["9780119136180"], "isbn_10": ["011913618X"], "publish_date": "December 31, 1994", "key": "/books/OL10058255M", "title": "Official Journal of the European Communities", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10058445M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "subtitle": "Legislation (Official Journal of the European Communities)", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["European Communities / Union (EUR-OP/OOPEC/OPOCE)"], "number_of_pages": 37, "isbn_13": ["9780119138115"], "isbn_10": ["0119138115"], "publish_date": "February 27, 1995", "key": "/books/OL10058445M", "title": "Official Journal of the European Communities", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10058832M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "subtitle": "Legislation (Official Journal of the European Communities)", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["European Communities / Union (EUR-OP/OOPEC/OPOCE)"], "number_of_pages": 27, "isbn_13": ["9780119142006"], "isbn_10": ["0119142007"], "publish_date": "July 23, 1995", "key": "/books/OL10058832M", "title": "Official Journal of the European Communities", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10059213M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "subtitle": "Supplement (Official Journal of the European Communities)", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["European Communities / Union (EUR-OP/OOPEC/OPOCE)"], "number_of_pages": 304, "isbn_13": ["9780119145816"], "isbn_10": ["0119145812"], "publish_date": "November 12, 1995", "key": "/books/OL10059213M", "title": "Official Journal of the European Communities", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10059421M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "subtitle": "Information and Notices (Official Journal of the European Communities)", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["European Communities / Union (EUR-OP/OOPEC/OPOCE)"], "number_of_pages": 12, "isbn_13": ["9780119147902"], "isbn_10": ["0119147904"], "publish_date": "1996", "key": "/books/OL10059421M", "title": "Official Journal of the European Communities", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10059447M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "subtitle": "Supplement (Official Journal of the European Communities)", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["European Communities / Union (EUR-OP/OOPEC/OPOCE)"], "number_of_pages": 244, "isbn_13": ["9780119148169"], "isbn_10": ["0119148161"], "publish_date": "February 20, 1996", "key": "/books/OL10059447M", "title": "Official Journal of the European Communities", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10059758M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "subtitle": "Legislation (Official Journal of the European Communities)", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["European Communities / Union (EUR-OP/OOPEC/OPOCE)"], "number_of_pages": 30, "isbn_13": ["9780119151343"], "isbn_10": ["0119151340"], "publish_date": "June 13, 1996", "key": "/books/OL10059758M", "title": "Official Journal of the European Communities", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10060270M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "subtitle": "Legislation (Official Journal of the European Communities)", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["European Communities / Union (EUR-OP/OOPEC/OPOCE)"], "number_of_pages": 106, "isbn_13": ["9780119156614"], "isbn_10": ["011915661X"], "publish_date": "December 31, 1996", "key": "/books/OL10060270M", "title": "Official Journal of the European Communities", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10060530M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "subtitle": "Legislation (Official Journal of the European Communities)", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["European Communities / Union (EUR-OP/OOPEC/OPOCE)"], "number_of_pages": 156, "isbn_13": ["9780119159264"], "isbn_10": ["0119159260"], "publish_date": "May 8, 1997", "key": "/books/OL10060530M", "title": "Official Journal of the European Communities", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10060881M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "subtitle": "Information and Notices (Official Journal of the European Communities)", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["European Communities / Union (EUR-OP/OOPEC/OPOCE)"], "number_of_pages": 16, "isbn_13": ["9780119163650"], "isbn_10": ["0119163659"], "publish_date": "December 31, 1997", "key": "/books/OL10060881M", "title": "Official Journal of the European Communities", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10060911M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "subtitle": "Legislation (Official Journal of the European Communities)", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["European Communities / Union (EUR-OP/OOPEC/OPOCE)"], "number_of_pages": 39, "isbn_13": ["9780119163988"], "isbn_10": ["0119163985"], "publish_date": "December 31, 1997", "key": "/books/OL10060911M", "title": "Official Journal of the European Communities", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10061879M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "subtitle": "Information and Notices", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["European Communities / Union (EUR-OP/OOPEC/OPOCE)"], "number_of_pages": 32, "isbn_13": ["9780119352535"], "isbn_10": ["0119352532"], "publish_date": "1976", "key": "/books/OL10061879M", "title": "Official Journal of the European Communities", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10061968M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["United Nations"], "number_of_pages": 176, "isbn_13": ["9780119411379"], "isbn_10": ["0119411377"], "publish_date": "December 31, 1993", "key": "/books/OL10061968M", "title": "Report of the Security Council", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10061974M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["United Nations"], "number_of_pages": 16, "isbn_13": ["9780119411966"], "isbn_10": ["0119411962"], "publish_date": "December 13, 1994", "key": "/books/OL10061974M", "title": "Report of the Committee on Relations with the Host Country", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10062113M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["United Nations"], "number_of_pages": 527, "isbn_13": ["9780119414431"], "isbn_10": ["0119414430"], "publish_date": "December 31, 1995", "key": "/books/OL10062113M", "title": "Proposed Programme Budget for the Biennium 1996-1997 (Proposed Programme Budget for the Biennium)", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10062409M 3 2011-04-29T07:52:35.432483 {"publishers": ["World Health Organization"], "last_modified": {"type": "/type/datetime", "value": "2011-04-29T07:52:35.432483"}, "source_records": ["amazon:0119514591"], "title": "AIDS Prevention (Global Planning on AIDS)", "number_of_pages": 82, "isbn_13": ["9780119514599"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0119514591"], "publish_date": "August 1993", "key": "/books/OL10062409M", "authors": [{"key": "/authors/OL2036311A"}], "latest_revision": 3, "oclc_numbers": ["154167639"], "works": [{"key": "/works/OL150072W"}], "type": {"key": "/type/edition"}, "subjects": ["Birth control, contraception, family planning", "HIV / AIDS"], "revision": 3}
+/type/edition /books/OL10062590M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["World Health Organization"], "number_of_pages": 31, "isbn_13": ["9780119518092"], "isbn_10": ["0119518090"], "publish_date": "June 17, 1998", "key": "/books/OL10062590M", "title": "World Health (World Health)", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10063110M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "subtitle": "Supplement (Official Journal of the European Communities)", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["European Communities / Union (EUR-OP/OOPEC/OPOCE)"], "number_of_pages": 68, "isbn_13": ["9780119662085"], "isbn_10": ["0119662086"], "publish_date": "December 31, 1988", "key": "/books/OL10063110M", "title": "Official Journal of the European Communities", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10063581M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "subtitle": "Legislation (Official Journal of the European Communities)", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["European Communities / Union (EUR-OP/OOPEC/OPOCE)"], "number_of_pages": 36, "isbn_13": ["9780119666854"], "isbn_10": ["0119666855"], "publish_date": "December 31, 1989", "key": "/books/OL10063581M", "title": "Official Journal of the European Communities", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10063695M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "subtitle": "Information and Notices (Official Journal of the European Communities)", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["European Communities / Union (EUR-OP/OOPEC/OPOCE)"], "number_of_pages": 8, "isbn_13": ["9780119668001"], "isbn_10": ["0119668009"], "publish_date": "December 31, 1989", "key": "/books/OL10063695M", "title": "Official Journal of the European Communities", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10064369M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "subtitle": "Information and Notices (Official Journal of the European Communities)", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["European Communities / Union (EUR-OP/OOPEC/OPOCE)"], "number_of_pages": 24, "isbn_13": ["9780119674767"], "isbn_10": ["0119674769"], "publish_date": "December 31, 1990", "key": "/books/OL10064369M", "title": "Official Journal of the European Communities", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10064985M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "subtitle": "Information and Notices (Official Journal of the European Communities)", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["European Communities / Union (EUR-OP/OOPEC/OPOCE)"], "number_of_pages": 5, "isbn_13": ["9780119681130"], "isbn_10": ["0119681137"], "publish_date": "December 31, 1990", "key": "/books/OL10064985M", "title": "Official Journal of the European Communities", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10065089M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "subtitle": "Information and Notices (Official Journal of the European Communities)", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["European Communities / Union (EUR-OP/OOPEC/OPOCE)"], "number_of_pages": 13, "isbn_13": ["9780119682175"], "isbn_10": ["0119682176"], "publish_date": "December 31, 1990", "key": "/books/OL10065089M", "title": "Official Journal of the European Communities", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10065206M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "subtitle": "Supplement (Official Journal of the European Communities)", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["European Communities / Union (EUR-OP/OOPEC/OPOCE)"], "number_of_pages": 13, "isbn_13": ["9780119683356"], "isbn_10": ["0119683350"], "publish_date": "December 31, 1990", "key": "/books/OL10065206M", "title": "Official Journal of the European Communities", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10065800M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "subtitle": "Legislation (Official Journal of the European Communities)", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["European Communities / Union (EUR-OP/OOPEC/OPOCE)"], "number_of_pages": 42, "isbn_13": ["9780119689327"], "isbn_10": ["0119689324"], "publish_date": "December 31, 1991", "key": "/books/OL10065800M", "title": "Official Journal of the European Communities", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10066089M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "subtitle": "Information and Notices (Official Journal of the European Communities)", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["European Communities / Union (EUR-OP/OOPEC/OPOCE)"], "number_of_pages": 24, "isbn_13": ["9780119692297"], "isbn_10": ["0119692295"], "publish_date": "December 31, 1991", "key": "/books/OL10066089M", "title": "Official Journal of the European Communities", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL1006642M 6 2020-11-23T16:54:40.248515 {"publishers": ["Foundation Press"], "identifiers": {"goodreads": ["1143510"], "librarything": ["2476459"]}, "isbn_10": ["1566624029"], "subject_place": ["United States"], "covers": [807287], "lc_classifications": ["KF9218 .C74 1997"], "latest_revision": 6, "key": "/books/OL1006642M", "authors": [{"key": "/authors/OL448840A"}], "publish_places": ["Westbury, N.Y"], "languages": [{"key": "/languages/eng"}], "pagination": "xxiii, 1228 p. ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part25.utf8:109840676:730"], "title": "Criminal law and its administration", "dewey_decimal_class": ["345.73", "347.305"], "notes": {"type": "/type/text", "value": "Includes index."}, "number_of_pages": 1228, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "edition_name": "6th ed.", "lccn": ["96046472"], "subjects": ["Criminal law -- United States -- Cases.", "Criminal procedure -- United States -- Cases."], "publish_date": "1997", "publish_country": "nyu", "last_modified": {"type": "/type/datetime", "value": "2020-11-23T16:54:40.248515"}, "by_statement": "by Fred E. Inbau ... [et al.].", "works": [{"key": "/works/OL2943118W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL10066727M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "subtitle": "Legislation (Official Journal of the European Communities)", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["European Communities / Union (EUR-OP/OOPEC/OPOCE)"], "number_of_pages": 26, "isbn_13": ["9780119698695"], "isbn_10": ["0119698692"], "publish_date": "December 31, 1992", "key": "/books/OL10066727M", "title": "Official Journal of the European Communities", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10067061M 2 2009-12-15T00:42:37.444428 {"publishers": ["European Communities / Union (EUR-OP/OOPEC/OPOCE)"], "key": "/books/OL10067061M", "title": "Advances in Finite Element Methods for Computational Fluid Mechanics", "number_of_pages": 30, "isbn_13": ["9780119723885"], "physical_format": "Paperback", "isbn_10": ["0119723883"], "publish_date": "December 31, 1989", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:42:37.444428"}, "authors": [{"key": "/authors/OL3364296A"}], "latest_revision": 2, "works": [{"key": "/works/OL9315928W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10067162M 3 2019-03-13T17:27:42.688461 {"publishers": ["European Communities / Union (EUR-OP/OOPEC/OPOCE)"], "physical_format": "Paperback", "source_records": ["marc:talis_openlibrary_contribution/talis-openlibrary-contribution.mrc:468527371:728"], "title": "Modelling of the Mass and Energy Balances of Sofc Modules", "number_of_pages": 125, "last_modified": {"type": "/type/datetime", "value": "2019-03-13T17:27:42.688461"}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780119727524"], "isbn_10": ["0119727528"], "publish_date": "December 31, 1991", "key": "/books/OL10067162M", "authors": [{"key": "/authors/OL3364332A"}], "latest_revision": 3, "works": [{"key": "/works/OL9315963W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL1006718M 8 2023-01-06T17:17:10.254823 {"publishers": ["Garland Pub."], "number_of_pages": 186, "subtitle": "their influence on quality of care", "isbn_10": ["0815326149"], "series": ["Garland studies on the elderly in America"], "lc_classifications": ["RT89 .S59 1997", "RT89.S59 1997", "RT89 .S59 1996"], "key": "/books/OL1006718M", "authors": [{"key": "/authors/OL543411A"}], "publish_places": ["New York"], "pagination": "xviii, 186 p. :", "source_records": ["bwb:9780815326144", "marc:marc_loc_2016/BooksAll.2016.part25.utf8:109908889:786", "marc:marc_columbia/Columbia-extract-20221130-009.mrc:61985813:2061"], "title": "Nursing home administrators", "dewey_decimal_class": ["362.1/6/0684"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 171-178) and index."}, "identifiers": {"goodreads": ["3706848"]}, "languages": [{"key": "/languages/eng"}], "lccn": ["96046551"], "subjects": ["Nursing home administrators.", "Nursing homes -- Administration."], "publish_date": "1997", "publish_country": "nyu", "by_statement": "Douglas A. Singh.", "oclc_numbers": ["35658092"], "works": [{"key": "/works/OL3348401W"}], "type": {"key": "/type/edition"}, "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2023-01-06T17:17:10.254823"}}
+/type/edition /books/OL10067252M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["European Communities / Union (EUR-OP/OOPEC/OPOCE)"], "number_of_pages": 42, "isbn_13": ["9780119728828"], "isbn_10": ["0119728826"], "publish_date": "December 31, 1991", "key": "/books/OL10067252M", "title": "Bulletin of the Economic and Social Committee (Bulletin of the Economic and Social Committee)", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10067291M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["European Communities / Union (EUR-OP/OOPEC/OPOCE)"], "number_of_pages": 193, "isbn_13": ["9780119729542"], "isbn_10": ["0119729547"], "publish_date": "December 31, 1991", "key": "/books/OL10067291M", "title": "SCAD Bulletin (SCAD Bulletin)", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10067492M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["European Communities / Union (EUR-OP/OOPEC/OPOCE)"], "number_of_pages": 76, "isbn_13": ["9780119732597"], "isbn_10": ["0119732599"], "publish_date": "December 31, 1992", "key": "/books/OL10067492M", "title": "Recent Publications on the European Communities Received by the Library (Recent Publications on the European Communities Received by the Library)", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL1006752M 7 2023-01-06T17:19:25.862034 {"publishers": ["Futura Pub. Co."], "identifiers": {"goodreads": ["3375197"]}, "isbn_10": ["0879936517"], "covers": [1634996], "lc_classifications": ["RC684.P3 P77 1997", "RC684.P3P77 1997", "RC684.P3 P77 1996"], "key": "/books/OL1006752M", "publish_places": ["Armonk, NY"], "contributions": ["Daubert, J. Claude", "Prystowsky, Eric N.", "Ripart, Alain."], "pagination": "x, 203 p. :", "source_records": ["marc:marc_records_scriblio_net/part25.dat:203915575:943", "marc:marc_loc_2016/BooksAll.2016.part25.utf8:109936344:943", "bwb:9780879936518", "marc:marc_columbia/Columbia-extract-20221130-009.mrc:62375775:3723"], "title": "Prevention of tachyarrhythmias with cardiac pacing", "dewey_decimal_class": ["617.4/120645"], "notes": {"type": "/type/text", "value": "Includes bibliographical references and index."}, "number_of_pages": 203, "languages": [{"key": "/languages/eng"}], "lccn": ["96046589"], "subjects": ["Cardiac pacing.", "Tachyarrhythmias -- Treatment.", "Tachycardia -- prevention & control.", "Cardiac Pacing, Artificial."], "publish_date": "1997", "publish_country": "nyu", "by_statement": "edited by J. Claude Daubert, Eric N. Prystowsky, Alain Ripart.", "works": [{"key": "/works/OL18931392W"}], "type": {"key": "/type/edition"}, "oclc_numbers": ["35694548"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2023-01-06T17:19:25.862034"}}
+/type/edition /books/OL10067533M 3 2022-07-17T02:46:09.306521 {"publishers": ["The Stationery Office Books (Agencies)"], "subtitle": "Strategic Analysis in Science and Technology", "isbn_10": ["0119733137"], "number_of_pages": 8, "isbn_13": ["9780119733136"], "physical_format": "Paperback", "publish_date": "December 31, 1992", "key": "/books/OL10067533M", "authors": [{"key": "/authors/OL3364469A"}], "title": "Monitor - SAST Activity", "works": [{"key": "/works/OL9316065W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780119733136"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T02:46:09.306521"}}
+/type/edition /books/OL10067576M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["European Communities / Union (EUR-OP/OOPEC/OPOCE)"], "number_of_pages": 170, "isbn_13": ["9780119733822"], "isbn_10": ["011973382X"], "publish_date": "1992", "key": "/books/OL10067576M", "title": "SCAD Bulletin (SCAD Bulletin)", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10067691M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "subtitle": "Legislation (Official Journal of the European Communities)", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["European Communities / Union (EUR-OP/OOPEC/OPOCE)"], "title": "Official Journal of the European Communities", "isbn_13": ["9780119737127"], "isbn_10": ["0119737124"], "publish_date": "1978", "key": "/books/OL10067691M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10067696M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "subtitle": "Legislation (Official Journal of the European Communities)", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["European Communities / Union (EUR-OP/OOPEC/OPOCE)"], "title": "Official Journal of the European Communities", "isbn_13": ["9780119737189"], "isbn_10": ["0119737183"], "publish_date": "1978", "key": "/books/OL10067696M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10067777M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "subtitle": "Applied Metrology", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["European Communities / Union (EUR-OP/OOPEC/OPOCE)"], "number_of_pages": 97, "isbn_13": ["9780119738964"], "isbn_10": ["0119738961"], "publish_date": "1994", "key": "/books/OL10067777M", "authors": [{"key": "/authors/OL3364510A"}, {"key": "/authors/OL3364511A"}, {"key": "/authors/OL3364512A"}], "title": "Intercomparison of Impulse Measuring Systems at 600 KV Level: BCR Information: BCR Information [series]", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL1006787M 7 2020-11-23T16:56:13.619412 {"publishers": ["Pro-Ed"], "number_of_pages": 279, "subtitle": "a team approach", "isbn_10": ["0890797137"], "subject_place": ["United States."], "covers": [1647715], "lc_classifications": ["LB2844.1.A8 S86 1997"], "latest_revision": 7, "key": "/books/OL1006787M", "ocaid": "supervisingparae0000pick", "publish_places": ["Austin, Tex"], "contributions": ["Pickett, Anna Lou.", "Gerlach, Kent."], "pagination": "xiii, 279 p. ;", "source_records": ["ia:supervisingparae0000pick", "marc:marc_loc_2016/BooksAll.2016.part25.utf8:109968895:875"], "title": "Supervising paraeducators in school settings", "dewey_decimal_class": ["371.2/02"], "notes": {"type": "/type/text", "value": "Includes bibliographical references and index."}, "identifiers": {"goodreads": ["1186415"], "librarything": ["6076999"]}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["96046625"], "subjects": ["Teachers' assistants -- Training of -- United States.", "Special education teachers -- Training of -- United States.", "Teaching teams -- United States."], "publish_date": "1997", "publish_country": "txu", "last_modified": {"type": "/type/datetime", "value": "2020-11-23T16:56:13.619412"}, "by_statement": "edited by Anna Lou Pickett and Kent Gerlach.", "oclc_numbers": ["35865449"], "works": [{"key": "/works/OL18180052W"}], "type": {"key": "/type/edition"}, "revision": 7}
+/type/edition /books/OL10068689M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["The Stationery Office Books (Agencies)"], "number_of_pages": 268, "isbn_13": ["9780119841060"], "isbn_10": ["0119841061"], "publish_date": "1995", "key": "/books/OL10068689M", "title": "Atomic and Plasma-material Interaction Data for Fusion", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10068741M 4 2011-04-29T23:50:02.027171 {"publishers": ["International Monetary Fund (IMF)"], "number_of_pages": 76, "last_modified": {"type": "/type/datetime", "value": "2011-04-29T23:50:02.027171"}, "title": "Tonga (IMF Staff Country Report: 95/67)", "identifiers": {"goodreads": ["4262678"]}, "isbn_13": ["9780119842173"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0119842173"], "publish_date": "December 31, 1995", "key": "/books/OL10068741M", "authors": [{"key": "/authors/OL3364559A"}, {"key": "/authors/OL3364560A"}, {"key": "/authors/OL3364561A"}], "latest_revision": 4, "oclc_numbers": ["639178338"], "type": {"key": "/type/edition"}, "subjects": ["Development economics"], "revision": 4}
+/type/edition /books/OL10068836M 4 2011-04-25T17:03:37.095646 {"publishers": ["International Monetary Fund (IMF)"], "number_of_pages": 45, "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-25T17:03:37.095646"}, "latest_revision": 4, "key": "/books/OL10068836M", "authors": [{"key": "/authors/OL136140A"}], "subjects": ["Economics"], "classifications": {}, "title": "Sierra Leone", "notes": {"type": "/type/text", "value": "IMF Country Report"}, "identifiers": {}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780119844030"], "isbn_10": ["0119844036"], "publish_date": "February 1996", "oclc_numbers": ["639200169"], "works": [{"key": "/works/OL1335727W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10068935M 2 2009-12-15T00:42:38.721936 {"publishers": ["International Monetary Fund (IMF)"], "isbn_10": ["0119846446"], "number_of_pages": 208, "isbn_13": ["9780119846447"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:42:38.721936"}, "publish_date": "October 1996", "latest_revision": 2, "key": "/books/OL10068935M", "authors": [{"key": "/authors/OL136140A"}], "title": "Japan (IMF Country Report)", "subjects": ["Economics"], "works": [{"key": "/works/OL1336046W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10069280M 3 2011-04-29T21:30:25.780474 {"publishers": ["International Monetary Fund (IMF)"], "last_modified": {"type": "/type/datetime", "value": "2011-04-29T21:30:25.780474"}, "title": "Republic of Kazakhstan (IMF Country Report)", "number_of_pages": 117, "isbn_13": ["9780119852103"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0119852101"], "publish_date": "August 1998", "key": "/books/OL10069280M", "authors": [{"key": "/authors/OL136140A"}], "latest_revision": 3, "oclc_numbers": ["639169397"], "works": [{"key": "/works/OL1335959W"}], "type": {"key": "/type/edition"}, "subjects": ["Development economics", "Kazakhstan"], "revision": 3}
+/type/edition /books/OL10069463M 3 2011-06-08T02:11:21.623738 {"publishers": ["World Health Organization"], "last_modified": {"type": "/type/datetime", "value": "2011-06-08T02:11:21.623738"}, "weight": "10.6 ounces", "title": "HIV and Infant Feeding Counselling", "number_of_pages": 110, "isbn_13": ["9780119878233"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0119878232"], "publish_date": "October 1, 2002", "key": "/books/OL10069463M", "authors": [{"key": "/authors/OL2036311A"}], "latest_revision": 3, "oclc_numbers": ["639173892"], "works": [{"key": "/works/OL14939461W"}], "type": {"key": "/type/edition"}, "subjects": ["AIDS: social aspects", "HIV / AIDS", "Paediatric medicine"], "physical_dimensions": "11.6 x 8.1 x 0.3 inches", "revision": 3}
+/type/edition /books/OL10069661M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "subtitle": "Legislation (Official Journal of the European Communities)", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["European Communities / Union (EUR-OP/OOPEC/OPOCE)"], "title": "Official Journal of the European Communities", "isbn_13": ["9780119974829"], "isbn_10": ["0119974827"], "publish_date": "1985", "key": "/books/OL10069661M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10069715M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "subtitle": "Legislation (Official Journal of the European Communities)", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["European Communities / Union (EUR-OP/OOPEC/OPOCE)"], "number_of_pages": 26, "isbn_13": ["9780119990034"], "isbn_10": ["0119990032"], "publish_date": "1986", "key": "/books/OL10069715M", "title": "Official Journal of the European Communities", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10069759M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "subtitle": "Legislation (Official Journal of the European Communities)", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["European Communities / Union (EUR-OP/OOPEC/OPOCE)"], "title": "Official Journal of the European Communities", "isbn_13": ["9780119998351"], "isbn_10": ["0119998351"], "publish_date": "1987", "key": "/books/OL10069759M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10070099M 2 2012-09-08T10:48:45.201221 {"publishers": ["Academic Press"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2012-09-08T10:48:45.201221"}, "title": "Advances in Computers (Advances in Computers)", "number_of_pages": 452, "isbn_13": ["9780120121908"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Library binding", "isbn_10": ["0120121905"], "publish_date": "August 1982", "key": "/books/OL10070099M", "latest_revision": 2, "type": {"key": "/type/edition"}, "subjects": ["General", "Computer Bks - General Information", "Computers"], "revision": 2}
+/type/edition /books/OL10070167M 4 2010-08-12T15:25:42.028698 {"publishers": ["Academic Press Inc.,U.S."], "number_of_pages": 418, "last_modified": {"type": "/type/datetime", "value": "2010-08-12T15:25:42.028698"}, "title": "Advances in Ecological Research", "identifiers": {"librarything": ["9349823"]}, "isbn_13": ["9780120139088"], "covers": [5030998], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Hardcover", "isbn_10": ["0120139081"], "publish_date": "December 1974", "key": "/books/OL10070167M", "authors": [{"key": "/authors/OL3364714A"}], "latest_revision": 4, "works": [{"key": "/works/OL9316261W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10070359M 7 2014-07-28T20:26:26.493332 {"publishers": ["Academic Press"], "number_of_pages": 301, "covers": [5030992], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2014-07-28T20:26:26.493332"}, "latest_revision": 7, "key": "/books/OL10070359M", "authors": [{"key": "/authors/OL1237708A"}], "ocaid": "advancesheterocy51unkn", "subjects": ["Chemistry - Organic", "Heterocyclic compounds", "Heterocyclic Chemistry", "Science", "Science/Mathematics"], "languages": [{"key": "/languages/eng"}], "source_records": ["amazon:0120207516", "ia:advancesheterocy51unkn"], "title": "Advances in Heterocyclic Chemistry", "identifiers": {"librarything": ["9348597"], "goodreads": ["6700848"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780120207510"], "isbn_10": ["0120207516"], "publish_date": "December 1990", "works": [{"key": "/works/OL120822W"}], "type": {"key": "/type/edition"}, "revision": 7}
+/type/edition /books/OL100703M 6 2020-12-02T07:37:48.429009 {"number_of_pages": 485, "subtitle": "an historical and genealogical study of over 100 years of emigration", "subject_place": ["North Carolina", "Pee Dee River Region (N.C. and S.C.)", "Pee Dee River Region (N.C and S.C.)"], "covers": [731039], "lc_classifications": ["F265.S3 K45 1998"], "contributions": ["Kelly, Caroline Switzer."], "genres": ["Genealogy."], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part28.utf8:89188470:1158"], "title": "Carolina Scots", "languages": [{"key": "/languages/eng"}], "subjects": ["Scottish Americans -- North Carolina -- Genealogy.", "Scottish Americans -- Pee Dee River Region (N.C and S.C.) -- Genealogy.", "Scottish Americans -- North Carolina -- History.", "Scottish Americans -- Pee Dee River Region (N.C. and S.C.) -- History.", "North Carolina -- Genealogy.", "Pee Dee River Region (N.C. and S.C.) -- Genealogy."], "publish_country": "scu", "by_statement": "Douglas F. Kelly, with Caroline Switzer Kelly.", "type": {"key": "/type/edition"}, "publishers": ["1739 Publications"], "key": "/books/OL100703M", "authors": [{"key": "/authors/OL67639A"}], "publish_places": ["Dillon, S.C"], "pagination": "xv, 485 p. :", "dewey_decimal_class": ["975.7/80049163"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 403-407) and index."}, "identifiers": {"goodreads": ["1226492"], "librarything": ["1570300"]}, "lccn": ["99215227"], "isbn_10": ["0966296303"], "publish_date": "1998", "works": [{"key": "/works/OL803820W"}], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-02T07:37:48.429009"}}
+/type/edition /books/OL10070796M 7 2022-10-27T21:14:14.436177 {"publishers": ["Academic Press"], "identifiers": {"goodreads": ["357090"]}, "source_records": ["marc:talis_openlibrary_contribution/talis-openlibrary-contribution.mrc:469162817:530", "amazon:0120408120"], "title": "Annual Reports in Organic Synthesis, 1981 (Annual Reports in Organic Synthesis)", "type": {"key": "/type/edition"}, "number_of_pages": 498, "isbn_13": ["9780120408122"], "isbn_10": ["0120408120"], "publish_date": "September 1982", "key": "/books/OL10070796M", "authors": [{"key": "/authors/OL8148385A"}, {"key": "/authors/OL3364816A"}], "works": [{"key": "/works/OL15057753W"}], "physical_format": "Paperback", "subjects": ["Chemistry - Organic", "Organic Synthesis", "Science"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-27T21:14:14.436177"}}
+/type/edition /books/OL10070824M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780120415533"], "physical_format": "CD-ROM", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Academic Press"], "title": "Mathematica by Example, Second Edition, ***Replacement CD-ROM***", "edition_name": "2 edition", "isbn_10": ["0120415534"], "publish_date": "February 6, 1997", "key": "/books/OL10070824M", "type": {"key": "/type/edition"}, "subjects": ["Educational Software", "Computers / Educational Software / General", "Computer Bks - Other Applications"], "revision": 1}
+/type/edition /books/OL10070986M 3 2010-04-13T02:52:51.925831 {"publishers": ["Academic Press"], "weight": "1.7 pounds", "covers": [5030732], "edition_name": "1st edition", "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T02:52:51.925831"}, "latest_revision": 3, "key": "/books/OL10070986M", "authors": [{"key": "/authors/OL3364890A"}], "contributions": ["John R. Jungck (Series Editor)", "Virginia Vaughan (Series Editor)"], "subjects": ["Applications of Computing", "Biology, Life Sciences", "Biological Research", "Computer Simulation", "Science", "Science/Mathematics", "Life Sciences - Biology - General", "Research & Methodology", "Study & Teaching", "Science / Biology", "Computer Engineering"], "isbn_13": ["9780120994731"], "title": "BioQUEST Library VI (With CD-ROM) (BioQuest Library)", "number_of_pages": 150, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0120994739"], "publish_date": "August 2000", "works": [{"key": "/works/OL9316422W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.1 x 8 x 1.5 inches", "revision": 3}
+/type/edition /books/OL10071059M 4 2022-12-14T16:00:50.641174 {"title": "Genomes, Molecular Biology and Drug Discovery", "authors": [{"key": "/authors/OL3156787A"}, {"key": "/authors/OL3364918A"}], "publish_date": "January 1996", "publishers": ["Academic Pr"], "weight": "14.9 ounces", "physical_format": "Hardcover", "subjects": ["Cellular biology", "Molecular biology", "Pharmacology", "Science/Mathematics"], "isbn_13": ["9780121377908"], "source_records": ["marc:marc_university_of_toronto/uoft.marc:2344153987:1618", "ia:genomesmolecular0000smit"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0121377903"], "type": {"key": "/type/edition"}, "physical_dimensions": "9.3 x 6.2 x 0.7 inches", "ocaid": "genomesmolecular0000smit", "key": "/books/OL10071059M", "number_of_pages": 270, "works": [{"key": "/works/OL19466293W"}], "covers": [13090361], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-14T16:00:50.641174"}}
+/type/edition /books/OL10071196M 3 2022-12-05T17:35:04.579110 {"publishers": ["Academic Press Inc.,U.S."], "title": "Essays in Biochemistry", "number_of_pages": 180, "isbn_13": ["9780121581091"], "physical_format": "Paperback", "isbn_10": ["0121581098"], "publish_date": "December 1973", "key": "/books/OL10071196M", "authors": [{"key": "/authors/OL2646855A"}, {"key": "/authors/OL2646856A"}], "oclc_numbers": ["263520538"], "type": {"key": "/type/edition"}, "first_sentence": {"type": "/type/text", "value": "Steroid hormones exert their major effects on target cells by a two-step process, the conventional view of which is illustrated in Fig. 1."}, "works": [{"key": "/works/OL31338205W"}], "local_id": ["urn:bwbsku:W7-BQI-979"], "source_records": ["promise:bwb_daily_pallets_2022-04-06"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-05T17:35:04.579110"}}
+/type/edition /books/OL10071426M 13 2022-11-11T01:35:44.820091 {"publishers": ["Academic Press, Incorporated"], "source_records": ["ia:encyclopediaofap0000unse_s6p2", "ia:encyclopediaofap0002unse", "marc:marc_ithaca_college/ic_marc.mrc:159894625:1094", "marc:talis_openlibrary_contribution/talis-openlibrary-contribution.mrc:1525831599:558", "ia:encyclopediaofap0001unse", "ia:encyclopediaofap0003unse", "ia:encyclopediaofap0004unse", "ia:encyclopediaofap0003unse_w5j6", "marc:marc_scms/20220805_ADAM_MARC_records.mrc:26868932:3261"], "title": "Encyclopedia Of Applied Ethics, Vol-3", "type": {"key": "/type/edition"}, "identifiers": {"librarything": ["4594396"]}, "covers": [5031777], "physical_format": "Hardcover", "isbn_10": ["0122270681"], "publish_date": "1997", "key": "/books/OL10071426M", "authors": [{"key": "/authors/OL2764842A"}], "ocaid": "encyclopediaofap0000unse_s6p2", "works": [{"key": "/works/OL8319985W"}], "contributions": ["1_0122270681 (Illustrator)"], "local_id": ["urn:scms:0188600024908", "urn:scms:0188600024916", "urn:scms:0188600024924", "urn:scms:0188600024932"], "lccn": ["97074395"], "lc_classifications": ["BJ63 .E44 1998"], "latest_revision": 13, "revision": 13, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-11T01:35:44.820091"}}
+/type/edition /books/OL1007201M 11 2022-12-08T02:06:35.021915 {"publishers": ["CRC Press"], "number_of_pages": 563, "isbn_10": ["1566700280"], "covers": [1904776], "lc_classifications": ["QK754 .P59 1997", "QK754.P59 1997", "QK 754 .P59 1997"], "key": "/books/OL1007201M", "publish_places": ["Boca Raton"], "contributions": ["Wang, Wun-cheng.", "Gorsuch, Joseph W., 1947-", "Hughes, Jane S., 1955-"], "pagination": "563 p. :", "source_records": ["amazon:1566700280", "bwb:9781566700283", "marc:marc_loc_2016/BooksAll.2016.part25.utf8:110341145:914", "ia:plantsforenviron0000unse", "marc:marc_scms/20220805_ADAM_MARC_records.mrc:101745674:3013", "promise:bwb_daily_pallets_2021-08-24"], "title": "Plants for environmental studies", "dewey_decimal_class": ["581.7"], "notes": {"type": "/type/text", "value": "Includes bibliographical references and index."}, "identifiers": {"librarything": ["5633795"], "goodreads": ["4295564"]}, "languages": [{"key": "/languages/eng"}], "lccn": ["96047075"], "subjects": ["Plant indicators.", "Biological monitoring.", "Environmental monitoring."], "publish_date": "1997", "publish_country": "flu", "by_statement": "edited by Wuncheng Wang, Joseph W. Gorsuch, Jane S. Hughes.", "works": [{"key": "/works/OL19638081W"}], "type": {"key": "/type/edition"}, "ocaid": "plantsforenviron0000unse", "local_id": ["urn:scms:0188600107190", "urn:bwbsku:P7-DUG-941"], "latest_revision": 11, "revision": 11, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-08T02:06:35.021915"}}
+/type/edition /books/OL10072062M 7 2020-10-09T05:37:02.107619 {"publishers": ["Academic Press"], "number_of_pages": 304, "subtitle": "A Survey of Cell Biology (International Review of Cytology)", "weight": "1.6 pounds", "isbn_10": ["0123741793"], "covers": [2320608], "physical_format": "Hardcover", "lc_classifications": [""], "latest_revision": 7, "key": "/books/OL10072062M", "authors": [{"key": "/authors/OL2030968A"}], "languages": [{"key": "/languages/eng"}], "source_records": ["bwb:9780123741790"], "title": "International Review Of Cytology, Volume 263", "identifiers": {"librarything": ["5456094"]}, "isbn_13": ["9780123741790"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "edition_name": "1 edition", "subjects": ["Cellular biology", "Science/Mathematics", "Life Sciences - Biology - Molecular Biology", "Life Sciences - Cytology", "Research & Methodology", "Science", "Science / Cytology"], "publish_date": "August 27, 2007", "last_modified": {"type": "/type/datetime", "value": "2020-10-09T05:37:02.107619"}, "oclc_numbers": ["263688282"], "works": [{"key": "/works/OL7138790W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.1 x 6 x 0.9 inches", "revision": 7}
+/type/edition /books/OL10072071M 15 2023-01-01T01:02:31.971033 {"publishers": ["Morgan Kaufmann"], "number_of_pages": 272, "subtitle": "A Pragmatic Guide for Testbench Developers (Systems on Silicon)", "weight": "1.2 pounds", "covers": [2320617], "physical_format": "Paperback", "lc_classifications": ["QA76.64.R629 2007", "QA76.64 .R629 2007"], "key": "/books/OL10072071M", "authors": [{"key": "/authors/OL1095145A"}], "ocaid": "aspectorientedpr00robi", "subjects": ["Programming languages", "Computers", "Computers - Languages / Programming", "Computer Books: General", "Programming Languages - General", "Computers & Internet", "Computers / Computer Engineering", "Computer Engineering", "Object-oriented programming (Computer science)"], "isbn_13": ["9780123742100"], "source_records": ["ia:aspectorientedpr00robi", "ia:aspectorientedpr00robi_179", "ia:aspectorientedpr00robi_203", "bwb:9780123742100", "marc:marc_loc_2016/BooksAll.2016.part34.utf8:125133217:1162", "promise:bwb_daily_pallets_2022-11-14", "marc:harvard_bibliographic_metadata/ab.bib.12.20150123.full.mrc:114072955:878"], "title": "Aspect-Oriented Programming with the e Verification Language", "identifiers": {"goodreads": ["1985914"], "librarything": ["4137609"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0123742102"], "publish_date": "August 15, 2007", "works": [{"key": "/works/OL5031607W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.1 x 7.5 x 0.7 inches", "lccn": ["2007019636"], "local_id": ["urn:bwbsku:O8-BVT-223"], "oclc_numbers": ["434023454"], "latest_revision": 15, "revision": 15, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2023-01-01T01:02:31.971033"}}
+/type/edition /books/OL1007231M 9 2022-05-26T02:20:43.128659 {"publishers": ["Texas Tech University Press"], "identifiers": {"librarything": ["8968218"], "goodreads": ["2001012"]}, "series": ["The Walt McDonald first-book poetry series"], "covers": [1656356], "lc_classifications": ["PS3552.E5365 S83 1997", "PS3552.E5365S83 1997"], "key": "/books/OL1007231M", "authors": [{"key": "/authors/OL543618A"}], "ocaid": "stalkingjoy00benb", "publish_places": ["Lubbock, Tex., USA"], "pagination": "xii, 76 p. ;", "source_records": ["ia:stalkingjoy00benb", "marc:marc_loc_2016/BooksAll.2016.part25.utf8:110369396:574", "bwb:9780896723757"], "title": "Stalking joy", "dewey_decimal_class": ["811/.54"], "number_of_pages": 76, "languages": [{"key": "/languages/eng"}], "lccn": ["96047109"], "isbn_10": ["0896723755"], "publish_date": "1997", "publish_country": "txu", "by_statement": "Margaret Benbow.", "oclc_numbers": ["35723728"], "works": [{"key": "/works/OL3349294W"}], "type": {"key": "/type/edition"}, "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-26T02:20:43.128659"}}
+/type/edition /books/OL10072406M 3 2010-04-13T02:52:51.925831 {"publishers": ["Academic Pr"], "number_of_pages": 345, "weight": "1.8 pounds", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0125053258"], "title": "Annual Reports on Nmr Spectroscopy", "isbn_13": ["9780125053259"], "covers": [5032109], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T02:52:51.925831"}, "latest_revision": 3, "key": "/books/OL10072406M", "authors": [{"key": "/authors/OL2647583A"}], "publish_date": "June 1993", "works": [{"key": "/works/OL7940424W"}], "type": {"key": "/type/edition"}, "subjects": ["Chemical spectroscopy, spectrochemistry", "Electricity, magnetism & electromagnetism", "Chemistry - Analytic", "Spectroscopy", "Nmr Spectroscopy", "Nmr Spectroscopy In Chemistry", "Science", "Science/Mathematics"], "physical_dimensions": "9.5 x 6.5 x 1.2 inches", "revision": 3}
+/type/edition /books/OL10072410M 8 2023-01-10T21:38:16.647577 {"publishers": ["Academic Press"], "identifiers": {"librarything": ["8780843"]}, "subtitle": "Volume 29 (Annual Reports on NMR Spectroscopy)", "weight": "1.6 pounds", "isbn_10": ["0125053290"], "covers": [5031692], "physical_format": "Hardcover", "key": "/books/OL10072410M", "authors": [{"key": "/authors/OL2647583A"}], "ocaid": "annualreportsonn29webb_753", "languages": [{"key": "/languages/eng"}], "classifications": {}, "source_records": ["ia:annualreportsonn29webb_753", "promise:bwb_daily_pallets_2022-12-29"], "title": "Annual Reports on NMR Spectroscopy, Volume 29", "notes": {"type": "/type/text", "value": "First Edition"}, "number_of_pages": 411, "isbn_13": ["9780125053297"], "edition_name": "First Edition", "subjects": ["Magnetic resonance", "Nmr Spectroscopy", "Nmr Spectroscopy In Chemistry", "Science", "Science/Mathematics", "Chemistry - Analytic", "Spectroscopy & Spectrum Analysis", "Science / Spectrum Analysis", "Chemistry - General"], "publish_date": "November 18, 1994", "oclc_numbers": ["32006500"], "works": [{"key": "/works/OL7940395W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.2 x 6 x 0.8 inches", "local_id": ["urn:bwbsku:W7-CTA-762"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2023-01-10T21:38:16.647577"}}
+/type/edition /books/OL10072529M 2 2022-12-07T23:52:13.542702 {"physical_format": "Hardcover", "publishers": ["Academic Press Inc.,U.S."], "number_of_pages": 216, "isbn_13": ["9780125359023"], "isbn_10": ["0125359020"], "publish_date": "June 1981", "key": "/books/OL10072529M", "authors": [{"key": "/authors/OL3365386A"}, {"key": "/authors/OL244327A"}], "title": "Progress in Biomass Conversion", "type": {"key": "/type/edition"}, "works": [{"key": "/works/OL31579103W"}], "local_id": ["urn:bwbsku:P7-DSI-896"], "source_records": ["promise:bwb_daily_pallets_2021-09-10"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-07T23:52:13.542702"}}
+/type/edition /books/OL10072738M 2 2022-12-10T12:14:47.641067 {"physical_format": "Hardcover", "publishers": ["Academic Press Inc.,U.S."], "number_of_pages": 380, "isbn_13": ["9780125718066"], "isbn_10": ["0125718063"], "publish_date": "August 1973", "key": "/books/OL10072738M", "title": "Danielli Prog Surface Membrane Sci V6", "type": {"key": "/type/edition"}, "works": [{"key": "/works/OL31989271W"}], "local_id": ["urn:bwbsku:O6-CHJ-472"], "source_records": ["promise:bwb_daily_pallets_2020-04-09"], "identifiers": {"amazon": [""]}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T12:14:47.641067"}}
+/type/edition /books/OL10072900M 2 2009-12-15T00:42:41.164309 {"publishers": ["see notes for publisher info"], "subtitle": "High Temperature Cermets.", "title": "Refractory Transition Metal Compounds", "isbn_10": ["0126175500"], "isbn_13": ["9780126175509"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:42:41.164309"}, "publish_date": "1964", "key": "/books/OL10072900M", "authors": [{"key": "/authors/OL3365458A"}], "latest_revision": 2, "works": [{"key": "/works/OL9316924W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10073705M 6 2022-05-05T04:43:48.825872 {"publishers": ["Pearson ESL"], "number_of_pages": 64, "weight": "8 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["013011619X"], "identifiers": {"goodreads": ["5442308"]}, "isbn_13": ["9780130116192"], "covers": [2320833], "edition_name": "1st edition", "physical_format": "Paperback", "key": "/books/OL10073705M", "authors": [{"key": "/authors/OL3365732A"}], "publish_date": "February 22, 2000", "title": "Listen and Hear 2", "works": [{"key": "/works/OL9317232W"}], "type": {"key": "/type/edition"}, "subjects": ["ELT: Learning Material & Coursework", "English", "Children: Grades 3-4"], "physical_dimensions": "11.2 x 8 x 0.5 inches", "ocaid": "listenhear20000unse", "lc_classifications": ["PE1129.2 .L574 1999 Bk.2"], "oclc_numbers": ["635041974"], "source_records": ["ia:listenhear20000unse"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-05T04:43:48.825872"}}
+/type/edition /books/OL10073809M 3 2020-08-19T23:39:08.388964 {"publishers": ["US Imports & PHIPEs"], "last_modified": {"type": "/type/datetime", "value": "2020-08-19T23:39:08.388964"}, "source_records": ["bwb:9780130128485"], "title": "International Business Preview Book", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780130128485"], "physical_format": "Paperback", "isbn_10": ["0130128481"], "publish_date": "April 30, 2001", "key": "/books/OL10073809M", "authors": [{"key": "/authors/OL3365755A"}], "latest_revision": 3, "works": [{"key": "/works/OL9317271W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10073884M 7 2020-08-18T21:29:18.852003 {"publishers": ["Prentice Hall"], "number_of_pages": 566, "weight": "1.9 pounds", "covers": [2320879], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2020-08-18T21:29:18.852003"}, "latest_revision": 7, "key": "/books/OL10073884M", "authors": [{"key": "/authors/OL2722808A"}], "subjects": ["Respiratory medicine", "Specific disorders & therapies", "Study & learning skills", "Medical", "Medical / Nursing", "Textbooks", "Allied Health Services - Respiratory Therapy", "Pulmonary & Thoracic Medicine", "Test Preparation & Review", "Business & Economics / Careers", "Designed / suitable for other (non-UK) curricula & examinations", "Professional - General", "Examination Questions", "Examinations, questions, etc", "Outlines, syllabi, etc", "Respiratory Therapy"], "edition_name": "4th edition", "languages": [{"key": "/languages/eng"}], "source_records": ["bwb:9780130138323"], "title": "Master Guide for Passing the Respiratory Care Credentialing Exams (4th Edition)", "identifiers": {"goodreads": ["5788309"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780130138323"], "isbn_10": ["0130138320"], "publish_date": "December 15, 2000", "oclc_numbers": ["42365732"], "works": [{"key": "/works/OL8157628W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.2 x 7 x 0.9 inches", "revision": 7}
+/type/edition /books/OL10074252M 7 2022-05-31T05:19:48.928716 {"publishers": ["Prentice Hall"], "identifiers": {"goodreads": ["76602"], "librarything": ["2724718"]}, "weight": "1 pounds", "covers": [2320956], "physical_format": "Textbook Binding", "key": "/books/OL10074252M", "authors": [{"key": "/authors/OL2634997A"}], "subjects": ["Mathematical & Statistical Software", "Probability & Statistics - General", "Statistics", "Computers - Other Applications", "Computer Books: General"], "isbn_13": ["9780130178909"], "source_records": ["bwb:9780130178909", "ia:spssadvancedmode0000unse_r6t1"], "title": "Spss Advanced Models 10.0", "number_of_pages": 333, "languages": [{"key": "/languages/eng"}], "isbn_10": ["013017890X"], "publish_date": "June 1999", "works": [{"key": "/works/OL21371250W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 7.4 x 0.5 inches", "ocaid": "spssadvancedmode0000unse_r6t1", "lc_classifications": ["HA32 .S539 1999b"], "oclc_numbers": ["42858578"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-31T05:19:48.928716"}}
+/type/edition /books/OL1007464M 13 2020-11-23T17:53:21.746359 {"publishers": ["W.W. Norton"], "identifiers": {"librarything": ["498588"], "goodreads": ["658959"]}, "subtitle": "the sorrows and joys of gay and lesbian adolescence", "ia_box_id": ["IA128307"], "isbn_10": ["0393040925"], "subject_place": ["United States"], "covers": [6725185, 247129], "lc_classifications": ["HQ75.2 .R44 1997"], "latest_revision": 13, "key": "/books/OL1007464M", "authors": [{"key": "/authors/OL543695A"}], "ocaid": "growingupgaysorr00reed", "publish_places": ["New York"], "subjects": ["Gays -- United States -- Biography"], "languages": [{"key": "/languages/eng"}], "pagination": "143 p. :", "source_records": ["marc:marc_records_scriblio_net/part25.dat:204555020:680", "ia:growingupgaysorr00reed", "marc:marc_openlibraries_sanfranciscopubliclibrary/sfpl_chq_2018_12_24_run02.mrc:159798705:1884", "bwb:9780393040920", "marc:marc_loc_2016/BooksAll.2016.part25.utf8:110572096:680"], "title": "Growing up gay", "dewey_decimal_class": ["305.9/0664"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 142-143)."}, "number_of_pages": 143, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "edition_name": "1st ed.", "lccn": ["96047379"], "local_id": ["urn:sfpl:31223047614178", "urn:sfpl:31223901659798"], "publish_date": "1997", "publish_country": "nyu", "last_modified": {"type": "/type/datetime", "value": "2020-11-23T17:53:21.746359"}, "by_statement": "Rita Reed.", "oclc_numbers": ["35750515"], "works": [{"key": "/works/OL15836765W"}], "type": {"key": "/type/edition"}, "revision": 13}
+/type/edition /books/OL1007524M 10 2022-12-08T13:54:12.470411 {"publishers": ["Pelican Pub. Co."], "description": {"type": "/type/text", "value": "Clovis and his friends are startled by a strange-looking \"water chicken\" swimming around in the bayou, but they welcome him when he helps rescue Clothilde Catfish."}, "isbn_10": ["1565541448"], "subject_place": ["Louisiana"], "covers": [1901254], "lc_classifications": ["PZ7.F73575 Clgm 1997", "PZ7.F73575Clgm 1997"], "key": "/books/OL1007524M", "authors": [{"key": "/authors/OL22610A"}], "publish_places": ["Gretna, La"], "contributions": ["Blazek, Scott R., ill."], "pagination": "1 v. (unpaged) :", "source_records": ["marc:marc_records_scriblio_net/part25.dat:204608466:985", "bwb:9781565541443", "marc:marc_loc_2016/BooksAll.2016.part25.utf8:110623284:985", "ia:cloviscrawfishpa0000font", "promise:bwb_daily_pallets_2021-05-05"], "title": "Clovis Crawfish and Paillasse poule d'eau", "dewey_decimal_class": ["[E]"], "identifiers": {"goodreads": ["3658112"], "librarything": ["5680130"]}, "languages": [{"key": "/languages/eng"}], "lccn": ["96047441"], "subjects": ["Crayfish -- Fiction.", "Common moorhen -- Fiction.", "Animals -- Fiction.", "Bayous -- Fiction.", "Louisiana -- Fiction."], "publish_date": "1997", "publish_country": "lau", "by_statement": "Mary Alice Fontenot ; illustrated by Scott R. Blazek.", "works": [{"key": "/works/OL18861981W"}], "type": {"key": "/type/edition"}, "ocaid": "cloviscrawfishpa0000font", "local_id": ["urn:bwbsku:P7-AMJ-106"], "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-08T13:54:12.470411"}}
+/type/edition /books/OL10075357M 3 2011-04-25T20:50:45.763858 {"publishers": ["Prentice Hall"], "subtitle": "Communicating With Confidence and Power", "edition_name": "2nd edition", "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-25T20:50:45.763858"}, "latest_revision": 3, "key": "/books/OL10075357M", "authors": [{"key": "/authors/OL445993A"}], "subjects": ["Business Life - General", "Women & Business", "Business Communication - General", "Business & Economics", "Business / Economics / Finance", "Business communication", "Business presentations", "Businesswomen", "Language and languages", "Self-esteem", "Business/Economics"], "isbn_13": ["9780130286727"], "title": "Woman's Guide to Language of Success", "number_of_pages": 256, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0130286729"], "publish_date": "September 2002", "oclc_numbers": ["47225577"], "works": [{"key": "/works/OL2926488W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10075604M 6 2021-07-07T05:56:44.739206 {"publishers": ["Prentice Hall"], "weight": "1.3 pounds", "covers": [2321218], "physical_format": "Paperback", "key": "/books/OL10075604M", "authors": [{"key": "/authors/OL219147A"}, {"key": "/authors/OL35149A"}], "subjects": ["First aid & paramedical services", "Health systems & services", "Health & Fitness", "Medical / Nursing", "Health/Fitness", "Allied Health Services - Emergency Medical Services", "Medical / Allied Health Services / Emergency Medical Services", "First Aid"], "edition_name": "6 edition", "languages": [{"key": "/languages/eng"}], "source_records": ["bwb:9780130324870", "ia:firstresponderwo0000berg_b8s2"], "title": "First Responder Workbook", "number_of_pages": 216, "isbn_13": ["9780130324870"], "isbn_10": ["0130324876"], "publish_date": "January 15, 2001", "oclc_numbers": ["46973438"], "works": [{"key": "/works/OL14939842W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.7 x 8.1 x 0.7 inches", "ocaid": "firstresponderwo0000berg_b8s2", "lc_classifications": ["RC86.7 .B472 2001"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-07-07T05:56:44.739206"}}
+/type/edition /books/OL1007622M 13 2020-11-23T18:45:06.293123 {"publishers": ["Princeton University Press"], "number_of_pages": 389, "isbn_10": ["0691012164", "0691012156"], "subject_place": ["Italy"], "covers": [1341039, 439956], "lc_classifications": ["S469.I8 S413 1997", "S469.I8S413 1997"], "latest_revision": 13, "key": "/books/OL1007622M", "authors": [{"key": "/authors/OL130231A"}], "publish_places": ["Princeton, N.J"], "lccn": ["96047543"], "uri_descriptions": ["Table of contents", "Publisher description"], "pagination": "xliv, 389 p. :", "source_records": ["amazon:0691012164", "bwb:9780691012162", "bwb:9780691012155", "marc:marc_loc_2016/BooksAll.2016.part25.utf8:110711621:1130"], "title": "History of the Italian agricultural landscape", "url": ["http://www.loc.gov/catdir/toc/prin031/96047543.html", "http://www.loc.gov/catdir/description/prin021/96047543.html"], "notes": {"type": "/type/text", "value": "Includes bibliographical references and index."}, "identifiers": {"goodreads": ["7142067", "3201403"], "librarything": ["2850294"]}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "dewey_decimal_class": ["630/.945"], "subjects": ["Agriculture -- Italy -- History."], "publish_date": "1997", "publish_country": "nju", "last_modified": {"type": "/type/datetime", "value": "2020-11-23T18:45:06.293123"}, "series": ["Giovanni Agnelli Foundation series in Italian history"], "by_statement": "Emilio Sereni ; translated with an introduction by R. Burr Litchfield.", "work_title": ["Storia del paesaggio agrario italiano."], "works": [{"key": "/works/OL1285488W"}], "type": {"key": "/type/edition"}, "uris": ["http://www.loc.gov/catdir/toc/prin031/96047543.html", "http://www.loc.gov/catdir/description/prin021/96047543.html"], "revision": 13}
+/type/edition /books/OL10076277M 2 2022-12-04T10:45:14.028649 {"physical_format": "Paperback", "publishers": ["Prentice Hall"], "title": "Pre-algebra Teaching Aids and Teacher's Letters", "isbn_13": ["9780130438263"], "isbn_10": ["013043826X"], "publish_date": "2000", "key": "/books/OL10076277M", "type": {"key": "/type/edition"}, "works": [{"key": "/works/OL31234614W"}], "local_id": ["urn:bwbsku:O8-DEQ-601"], "source_records": ["promise:bwb_daily_pallets_2022-09-12"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T10:45:14.028649"}}
+/type/edition /books/OL10076310M 2 2022-12-09T11:02:09.369063 {"languages": [{"key": "/languages/eng"}], "physical_format": "Paperback", "publishers": ["Prentice Hall"], "title": "Daily Language Practice (Cooper Level) Teaching Resources (Prentice Hall Writing and Grammar)", "isbn_13": ["9780130439369"], "isbn_10": ["0130439363"], "publish_date": "2001", "key": "/books/OL10076310M", "type": {"key": "/type/edition"}, "works": [{"key": "/works/OL31844169W"}], "local_id": ["urn:bwbsku:P6-BPD-367"], "source_records": ["promise:bwb_daily_pallets_2020-11-25"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T11:02:09.369063"}}
+/type/edition /books/OL1007699M 7 2022-10-17T15:42:25.278523 {"publishers": ["Blackwell Science"], "number_of_pages": 363, "isbn_10": ["0865423709"], "covers": [1611951], "lc_classifications": ["RL242 .C88 1996", "RL242.C88 1996"], "key": "/books/OL1007699M", "ocaid": "cutaneousallergy0000unse", "publish_places": ["Cambridge, Mass., USA"], "contributions": ["Charlesworth, Ernest."], "pagination": "xiii, 363 p., [8] p. of plates :", "source_records": ["marc:marc_records_scriblio_net/part25.dat:204766680:855", "ia:cutaneousallergy0000unse", "marc:marc_loc_2016/BooksAll.2016.part25.utf8:110782076:855", "bwb:9780865423701"], "title": "Cutaneous allergy", "dewey_decimal_class": ["616.97/3"], "notes": {"type": "/type/text", "value": "Includes bibliographical references and index."}, "identifiers": {"goodreads": ["3575090"]}, "languages": [{"key": "/languages/eng"}], "lccn": ["96047622"], "subjects": ["Allergy.", "Skin -- Diseases.", "Skin -- Immunology.", "Skin Diseases.", "Hypersensitivity.", "Skin -- immunology."], "publish_date": "1996", "publish_country": "mau", "by_statement": "edited by Ernest N. Charlesworth.", "works": [{"key": "/works/OL19040122W"}], "type": {"key": "/type/edition"}, "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T15:42:25.278523"}}
+/type/edition /books/OL10077139M 3 2010-04-13T05:05:10.489464 {"publishers": ["Prentice Hall College Div"], "key": "/books/OL10077139M", "weight": "3.5 pounds", "title": "Finite Mathematics", "isbn_13": ["9780130565945"], "covers": [5032452], "edition_name": "7th Pkg edition", "physical_format": "Hardcover", "isbn_10": ["0130565946"], "publish_date": "August 2000", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:05:10.489464"}, "authors": [{"key": "/authors/OL223874A"}], "latest_revision": 3, "works": [{"key": "/works/OL1869910W"}], "type": {"key": "/type/edition"}, "subjects": ["Science/Mathematics"], "physical_dimensions": "10 x 8 x 1.2 inches", "revision": 3}
+/type/edition /books/OL10077359M 7 2022-12-09T21:34:02.720836 {"publishers": ["Prentice-Hall"], "number_of_pages": 104, "edition_name": "4Rev Ed edition", "physical_format": "Paperback", "key": "/books/OL10077359M", "authors": [{"key": "/authors/OL2654324A"}], "subjects": ["Investment & securities"], "isbn_13": ["9780130606037"], "source_records": ["bwb:9780130606037", "ia:fundamentalsoffu0000hull", "promise:bwb_daily_pallets_2020-10-08"], "title": "Fundamentals of the Future and Option Markets", "identifiers": {"goodreads": ["2058214"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0130606030"], "publish_date": "July 20, 2001", "works": [{"key": "/works/OL7954416W"}], "type": {"key": "/type/edition"}, "covers": [11635707], "ocaid": "fundamentalsoffu0000hull", "lccn": ["2001018502"], "lc_classifications": ["HG6024.A3 H84 2002"], "local_id": ["urn:bwbsku:W6-BGI-789"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T21:34:02.720836"}}
+/type/edition /books/OL10078089M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Prentice Hall"], "number_of_pages": 278, "isbn_13": ["9780130724229"], "isbn_10": ["013072422X"], "publish_date": "December 1988", "key": "/books/OL10078089M", "authors": [{"key": "/authors/OL3366643A"}, {"key": "/authors/OL3366644A"}], "title": "A Beginner's Guide to VAX-VMS", "type": {"key": "/type/edition"}, "subjects": ["Operating Systems - General", "Computer Bks - Operating Systems"], "revision": 1}
+/type/edition /books/OL10078288M 5 2011-04-27T17:10:31.157067 {"publishers": ["Prentice Hall"], "weight": "7.2 ounces", "covers": [5032470], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T17:10:31.157067"}, "latest_revision": 5, "key": "/books/OL10078288M", "authors": [{"key": "/authors/OL452194A"}, {"key": "/authors/OL3366687A"}, {"key": "/authors/OL3366688A"}], "subjects": ["General", "Education / Teaching"], "isbn_13": ["9780130788177"], "title": "Percent Applications (Power Math Series)", "identifiers": {"goodreads": ["5678161"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0130788171"], "publish_date": "March 1996", "oclc_numbers": ["32712165"], "type": {"key": "/type/edition"}, "physical_dimensions": "11 x 8.2 x 0.2 inches", "revision": 5}
+/type/edition /books/OL10078689M 2 2009-12-15T00:42:44.931923 {"physical_format": "Paperback", "publishers": ["Prentice-Hall"], "isbn_10": ["0130838004"], "number_of_pages": 320, "isbn_13": ["9780130838001"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:42:44.931923"}, "publish_date": "August 1, 1999", "latest_revision": 2, "key": "/books/OL10078689M", "authors": [{"key": "/authors/OL2703158A"}], "title": "Instructors Manual with Test Item File", "subjects": ["Education"], "works": [{"key": "/works/OL8114517W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10079085M 4 2012-09-08T10:12:05.170073 {"publishers": ["Pearson Education Limited"], "physical_format": "Audio cassette", "weight": "7 ounces", "title": "Global Links", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780130893642"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0130893641"], "publish_date": "May 2, 2001", "key": "/books/OL10079085M", "last_modified": {"type": "/type/datetime", "value": "2012-09-08T10:12:05.170073"}, "latest_revision": 4, "oclc_numbers": ["185082241"], "works": [{"key": "/works/OL5838402W"}], "type": {"key": "/type/edition"}, "subjects": ["ELT audio-visual (video & audio cassettes)", "ELT grammars & grammar practice", "American English"], "physical_dimensions": "8.7 x 4.7 x 0.8 inches", "revision": 4}
+/type/edition /books/OL10079135M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "subtitle": "Spmbpc Hearing/lanier", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Prentice Hall"], "title": "Ellwood Paint Wallpaper", "isbn_13": ["9780130900449"], "isbn_10": ["0130900443"], "publish_date": "November 1, 1993", "key": "/books/OL10079135M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL1007915M 10 2022-12-29T04:34:50.184593 {"publishers": ["Longman"], "number_of_pages": 412, "subtitle": "Atlantic to Urals", "isbn_10": ["0582234344"], "subject_place": ["Europe"], "covers": [1287554], "lc_classifications": ["JN12 .P633 1997", "JN12.B83 1997", "JN12 .P633 2013eb"], "key": "/books/OL1007915M", "publish_places": ["London", "New York"], "contributions": ["Budge, Ian."], "subject_time": ["1989-"], "pagination": "xvi, 412 p. :", "source_records": ["marc:marc_records_scriblio_net/part25.dat:204964279:675", "bwb:9780582234345", "marc:marc_loc_2016/BooksAll.2016.part25.utf8:110977082:675", "promise:bwb_daily_pallets_2022-09-01", "marc:marc_columbia/Columbia-extract-20221130-030.mrc:65741189:1969", "ia:politicsofneweur0000unse"], "title": "The politics of the new Europe", "dewey_decimal_class": ["320.94"], "notes": {"type": "/type/text", "value": "Includes bibliographical references and indexes."}, "identifiers": {"goodreads": ["986568"]}, "languages": [{"key": "/languages/eng"}], "lccn": ["96047848"], "subjects": ["Europe -- Politics and government -- 1989-"], "publish_date": "1997", "publish_country": "enk", "by_statement": "Ian Budge ... [et al].", "works": [{"key": "/works/OL18905256W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:W7-CYY-947"], "oclc_numbers": ["874153273"], "ocaid": "politicsofneweur0000unse", "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-29T04:34:50.184593"}}
+/type/edition /books/OL10079339M 2 2008-09-13T05:30:13.86005 {"isbn_13": ["9780130942227"], "physical_format": "Paperback", "weight": "1.4 pounds", "languages": [{"key": "/languages/eng"}], "publishers": ["Pearson ESL"], "title": "Scott Foresman ESL Student Book II", "last_modified": {"type": "/type/datetime", "value": "2008-09-13T05:30:13.86005"}, "edition_name": "Student edition", "isbn_10": ["0130942227"], "publish_date": "April 4, 2001", "key": "/books/OL10079339M", "authors": [{"key": "/authors/OL1283183A"}, {"key": "/authors/OL561250A"}, {"key": "/authors/OL3244393A"}, {"key": "/authors/OL2641421A"}], "type": {"key": "/type/edition"}, "subjects": ["Language"], "physical_dimensions": "10.4 x 8.2 x 0.3 inches", "revision": 2}
+/type/edition /books/OL10079692M 2 2009-12-15T00:42:44.931923 {"publishers": ["Prentice Hall College Div"], "subtitle": "With Supplementary Material (Learn PC)", "weight": "1.4 pounds", "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:42:44.931923"}, "latest_revision": 2, "key": "/books/OL10079692M", "authors": [{"key": "/authors/OL548285A"}], "subjects": ["Operating Systems - Windows", "DOS", "Ms-Dos (Operating System)", "Computers - Operating Systems", "MS-DOS (Computer file)", "PC-DOS (Computer file)", "Computer Books And Software"], "edition_name": "Spiral edition", "title": "MS-DOS 6.0", "isbn_13": ["9780131005877"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0131005871"], "publish_date": "January 1994", "works": [{"key": "/works/OL3368620W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.5 x 7.8 x 1 inches", "revision": 2}
+/type/edition /books/OL10079782M 3 2011-01-14T20:56:20.475875 {"publishers": ["Prentice Hall"], "weight": "2.2 pounds", "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-01-14T20:56:20.475875"}, "latest_revision": 3, "key": "/books/OL10079782M", "authors": [{"key": "/authors/OL229077A"}], "subjects": ["Business/Economics"], "edition_name": "8 edition", "languages": [{"key": "/languages/eng"}], "classifications": {}, "title": "College Accounting Study Guide and Working Papers 16-26 and Envelope Package", "notes": {"type": "/type/text", "value": "Eighth Edition"}, "identifiers": {}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780131028586"], "isbn_10": ["0131028588"], "publish_date": "November 12, 2002", "works": [{"key": "/works/OL1912278W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.8 x 8.2 x 1 inches", "revision": 3}
+/type/edition /books/OL10079795M 2 2009-12-15T00:42:44.931923 {"physical_format": "Hardcover", "title": "Psychology & Guide Evaluating Online Research", "isbn_10": ["0131034863"], "publishers": ["Prentice Hall College Div"], "edition_name": "4th Pkg edition", "isbn_13": ["9780131034860"], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:42:44.931923"}, "publish_date": "July 2003", "key": "/books/OL10079795M", "authors": [{"key": "/authors/OL3011508A"}], "latest_revision": 2, "subjects": ["General", "Psychology"], "works": [{"key": "/works/OL8811751W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10080686M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Prentice Hall"], "title": "FCAT Daily Practice and Strategies Transparencies (Pre-Algebra Prentice Hall Mathematics)", "isbn_13": ["9780131224476"], "isbn_10": ["0131224476"], "publish_date": "2004", "key": "/books/OL10080686M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10081249M 3 2020-08-19T23:42:19.059618 {"publishers": ["Prentice Hall Ptr"], "last_modified": {"type": "/type/datetime", "value": "2020-08-19T23:42:19.059618"}, "source_records": ["bwb:9780131319707"], "title": "Sm Chemical Process Thermodynamics S/M", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780131319707"], "physical_format": "Paperback", "isbn_10": ["0131319701"], "publish_date": "August 11, 1995", "key": "/books/OL10081249M", "authors": [{"key": "/authors/OL3012311A"}], "latest_revision": 3, "works": [{"key": "/works/OL8814421W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10081368M 2 2011-04-30T13:53:29.196633 {"publishers": ["Not Avail"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2011-04-30T13:53:29.196633"}, "weight": "8.9 pounds", "title": "Maternal Newborn & Clinical Handbook and Workbook Package", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780131354425"], "edition_name": "8 edition", "physical_format": "Hardcover", "isbn_10": ["0131354426"], "publish_date": "June 2007", "key": "/books/OL10081368M", "authors": [{"key": "/authors/OL2640429A"}], "latest_revision": 2, "oclc_numbers": ["277197460"], "type": {"key": "/type/edition"}, "physical_dimensions": "11.1 x 8.7 x 3.2 inches", "revision": 2}
+/type/edition /books/OL10081589M 4 2010-04-24T17:54:38.745723 {"publishers": ["Pearson Education / Prentice Hall"], "physical_format": "CD-ROM", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T17:54:38.745723"}, "title": "TestGen 5.5 QuizMaster 4.1 Thinking Mathematically (Blitzer)", "identifiers": {"goodreads": ["7212209"]}, "edition_name": "3rd edition", "isbn_13": ["9780131432451"], "isbn_10": ["0131432451"], "publish_date": "2005", "key": "/books/OL10081589M", "authors": [{"key": "/authors/OL3367490A"}], "latest_revision": 4, "works": [{"key": "/works/OL9319362W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10081606M 3 2010-04-16T03:02:57.833232 {"weight": "1.9 pounds", "covers": [2322189], "latest_revision": 3, "edition_name": "6th edition", "title": "Exploring Microsoft Excel 2003 Volume 2", "languages": [{"key": "/languages/eng"}], "subjects": ["Excel", "Computers", "Computers - Spreadsheets", "Spreadsheets - General", "Computers / Spreadsheets / General", "Security - General"], "type": {"key": "/type/edition"}, "physical_dimensions": "10.7 x 8 x 0.7 inches", "revision": 3, "publishers": ["Prentice Hall"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-16T03:02:57.833232"}, "key": "/books/OL10081606M", "authors": [{"key": "/authors/OL32678A"}, {"key": "/authors/OL2648748A"}], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 440, "isbn_13": ["9780131434820"], "isbn_10": ["0131434829"], "publish_date": "March 24, 2004", "works": [{"key": "/works/OL15033200W"}]}
+/type/edition /books/OL10082095M 4 2011-04-30T07:28:22.972208 {"publishers": ["Prentice-Hall"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-30T07:28:22.972208"}, "title": "Instructors Manual with Tests and Transparency Masters", "identifiers": {"librarything": ["6738394"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780131581715"], "isbn_10": ["0131581716"], "publish_date": "June 13, 1995", "key": "/books/OL10082095M", "authors": [{"key": "/authors/OL2789195A"}], "latest_revision": 4, "oclc_numbers": ["55192153"], "works": [{"key": "/works/OL8373142W"}], "type": {"key": "/type/edition"}, "subjects": ["Unix, Unix Linux & Unix TCL/TK"], "revision": 4}
+/type/edition /books/OL10082266M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Hardcover", "weight": "9.8 pounds", "title": "Pediatric Nursing, 3E + CD-ROM with Nursing Notes, + Contemporary Maternal-Newborn Nursing Care, 5E + CD-ROM with Nursing Notes (2 Books with 2 CD-ROMs + 2 Nursing Notes, Value Pack)", "number_of_pages": 1874, "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780131613294"], "isbn_10": ["0131613294"], "key": "/books/OL10082266M", "authors": [{"key": "/authors/OL2650506A"}, {"key": "/authors/OL398356A"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Medical"], "physical_dimensions": "11.3 x 8.7 x 2.8 inches", "revision": 1}
+/type/edition /books/OL10082375M 2 2009-12-15T00:42:47.536095 {"publishers": ["Prentice Hall (Higher Education Division, Pearson Education)"], "key": "/books/OL10082375M", "title": "Comprehension Plus Lvl C Tchrs", "isbn_13": ["9780131649477"], "physical_format": "Paperback", "isbn_10": ["0131649477"], "publish_date": "January 1, 1982", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:42:47.536095"}, "authors": [{"key": "/authors/OL3367732A"}], "latest_revision": 2, "works": [{"key": "/works/OL9319609W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10082464M 5 2022-12-10T01:53:57.274180 {"publishers": ["Prentice Hall"], "classifications": {}, "title": "Prentice Hall Literature, Penguin Edition, Teaching Resources, Unit Five, Grade Nine, Drama", "notes": {"type": "/type/text", "value": "Diagnostic and benchmark tests; Leveled Tests for every selection; Leveled reading and vocabulary warmups for every selection;, worksheets to support literary analysis, reading skills, vocabulary builder, writing, extend your learning and enrichment features"}, "identifiers": {}, "physical_format": "Paperback", "isbn_10": ["0131653717"], "publish_date": "2006", "key": "/books/OL10082464M", "authors": [{"key": "/authors/OL2649330A"}], "works": [{"key": "/works/OL7948449W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:P6-BVG-233"], "source_records": ["promise:bwb_daily_pallets_2020-08-06"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T01:53:57.274180"}}
+/type/edition /books/OL10082530M 4 2011-05-20T22:18:51.537799 {"publishers": ["Pearson/Prentice Hall"], "identifiers": {"goodreads": ["4327196"]}, "subtitle": "Three-Dimensional Measurement (Connected Mathematics 2 / Grade 7, Teacher's Guide)", "last_modified": {"type": "/type/datetime", "value": "2011-05-20T22:18:51.537799"}, "title": "Filling & Wrapping", "number_of_pages": 138, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0131656740"], "publish_date": "2006", "key": "/books/OL10082530M", "authors": [{"key": "/authors/OL3367747A"}], "latest_revision": 4, "works": [{"key": "/works/OL9319268W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10082969M 9 2020-12-17T09:23:26.478792 {"publishers": ["Prentice Hall"], "number_of_pages": 360, "subtitle": "Examining Homicide, The", "weight": "1 pounds", "covers": [2322356], "physical_format": "Paperback", "key": "/books/OL10082969M", "authors": [{"key": "/authors/OL3367867A"}], "subjects": ["Crime & criminology", "General", "Jurisprudence", "Law / Jurisprudence", "Law", "Legal Reference / Law Profession", "Criminal psychology", "Homicide", "Murder"], "edition_name": "1 edition", "languages": [{"key": "/languages/eng"}], "source_records": ["bwb:9780131724013", "marc:marc_loc_2016/BooksAll.2016.part34.utf8:143469965:939"], "title": "Murder Book", "identifiers": {"goodreads": ["2576855"], "librarything": ["7561203"]}, "isbn_13": ["9780131724013"], "isbn_10": ["0131724010"], "publish_date": "October 13, 2007", "oclc_numbers": ["165478915"], "works": [{"key": "/works/OL9319756W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.1 x 7 x 0.7 inches", "lccn": ["2007033888"], "lc_classifications": ["HV6515 .D36 2008"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-17T09:23:26.478792"}}
+/type/edition /books/OL10083011M 1 2008-04-30T09:38:13.731961 {"physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Pearson Higher Education"], "number_of_pages": 729, "isbn_13": ["9780131738249"], "isbn_10": ["0131738240"], "publish_date": "September 1, 1989", "key": "/books/OL10083011M", "authors": [{"key": "/authors/OL2652077A"}, {"key": "/authors/OL3367884A"}], "title": "COMPUTERIZED ACCOUN BEDFORD (REV)", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10083251M 2 2021-01-23T21:39:40.770694 {"isbn_13": ["9780131802957"], "physical_format": "Paperback", "languages": [{"key": "/languages/eng"}], "publishers": ["Pearson Prentice Hall"], "title": "Adapted Readers Companion: British Tradition 12 (Prentice Hall Literature: Timeless Voices Timeless Themes)", "edition_name": "Workbook edition", "isbn_10": ["013180295X"], "publish_date": "June 2003", "key": "/books/OL10083251M", "type": {"key": "/type/edition"}, "subjects": ["Literary Criticism & Collections", "Juvenile Nonfiction", "Children: Young Adult (Gr. 10-12)"], "works": [{"key": "/works/OL24161838W"}], "covers": [10571106], "ocaid": "adaptedreadersco0000olco", "source_records": ["ia:adaptedreadersco0000olco"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-01-23T21:39:40.770694"}}
+/type/edition /books/OL10083507M 2 2009-12-15T00:42:47.536095 {"publishers": ["Macmillan General Reference USA"], "key": "/books/OL10083507M", "title": "Novell Netware on Command", "isbn_13": ["9780131818439"], "physical_format": "Paperback", "isbn_10": ["0131818430"], "publish_date": "June 1, 1994", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:42:47.536095"}, "authors": [{"key": "/authors/OL3049124A"}], "latest_revision": 2, "works": [{"key": "/works/OL8871055W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10083640M 2 2011-04-29T14:00:50.998713 {"publishers": ["Prentice Hall Trade"], "languages": [{"key": "/languages/eng"}], "weight": "1.4 pounds", "title": "1993-94 Credit and Collection Manager's Guide", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780131849532"], "physical_format": "Paperback", "isbn_10": ["0131849530"], "publish_date": "May 1993", "key": "/books/OL10083640M", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T14:00:50.998713"}, "latest_revision": 2, "oclc_numbers": ["232496888"], "type": {"key": "/type/edition"}, "subjects": ["Corporate Finance", "Business/Economics"], "physical_dimensions": "9.5 x 7 x 1 inches", "revision": 2}
+/type/edition /books/OL10083916M 2 2010-04-13T05:05:10.489464 {"physical_format": "CD-ROM", "languages": [{"key": "/languages/eng"}], "subtitle": "Learn - Study - Succeed", "weight": "3.2 ounces", "publishers": ["Pearson Prentice Hall"], "title": "Earth Science Student Express", "covers": [5032880], "edition_name": "Cdr Stu edition", "isbn_13": ["9780131903005"], "isbn_10": ["0131903004"], "publish_date": "October 18, 2005", "key": "/books/OL10083916M", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:05:10.489464"}, "latest_revision": 2, "subjects": ["Science & Nature - Earth Sciences", "Juvenile Nonfiction", "Children: Young Adult (Gr. 7-9)"], "type": {"key": "/type/edition"}, "physical_dimensions": "7.5 x 5.3 x 0.6 inches", "revision": 2}
+/type/edition /books/OL10083984M 2 2009-12-15T00:42:47.536095 {"publishers": ["Pearson Prentice Hall"], "key": "/books/OL10083984M", "title": "Reader's Notebook - English Learner's Version - Grade 7 - Prentice Hall Literature", "edition_name": "Penquin Edition edition", "physical_format": "Paperback", "isbn_10": ["0131907921"], "publish_date": "2005", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:42:47.536095"}, "authors": [{"key": "/authors/OL2652536A"}], "latest_revision": 2, "works": [{"key": "/works/OL7950869W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10084162M 5 2011-04-27T22:56:37.688080 {"publishers": ["Prentice Hall"], "last_modified": {"type": "/type/datetime", "value": "2011-04-27T22:56:37.688080"}, "title": "Cryptopic Crosswords", "identifiers": {"librarything": ["4882010"]}, "isbn_13": ["9780131947207"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0131947206"], "publish_date": "October 1983", "key": "/books/OL10084162M", "authors": [{"key": "/authors/OL1581703A"}], "latest_revision": 5, "oclc_numbers": ["10063095"], "works": [{"key": "/works/OL6163052W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10085091M 5 2020-08-20T22:56:28.631301 {"publishers": ["Prentice Hall"], "identifiers": {"goodreads": ["374153"]}, "weight": "2.6 pounds", "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2020-08-20T22:56:28.631301"}, "latest_revision": 5, "key": "/books/OL10085091M", "authors": [{"key": "/authors/OL418343A"}], "subjects": ["Beverages - Wine & Spirits", "Cooking / Wine"], "isbn_13": ["9780132301503"], "source_records": ["bwb:9780132301503"], "title": "Wines", "number_of_pages": 224, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0132301504"], "publish_date": "March 1, 2006", "works": [{"key": "/works/OL2812952W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "11 x 8.4 x 0.8 inches", "revision": 5}
+/type/edition /books/OL10085187M 4 2011-04-28T21:19:06.806703 {"publishers": ["Prentice-Hall"], "subtitle": "Instructor's resource manual", "edition_name": "7th ed edition", "physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2011-04-28T21:19:06.806703"}, "latest_revision": 4, "key": "/books/OL10085187M", "authors": [{"key": "/authors/OL230022A"}], "subjects": ["Developmental psychology", "Psychology"], "isbn_13": ["9780132330404"], "title": "Human development", "number_of_pages": 286, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0132330407"], "publish_date": "1996", "oclc_numbers": ["46416006"], "works": [{"key": "/works/OL1918966W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10085690M 3 2011-02-12T23:13:06.528773 {"publishers": ["Prentice Hall"], "subtitle": "PresentationExpress CD (Prentice Hall) (Teach, Inspire, Connect)", "last_modified": {"type": "/type/datetime", "value": "2011-02-12T23:13:06.528773"}, "title": "Health", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "CD-ROM", "isbn_10": ["0132510707"], "publish_date": "2008", "key": "/books/OL10085690M", "authors": [{"key": "/authors/OL2649330A"}], "latest_revision": 3, "works": [{"key": "/works/OL7948373W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10085713M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780132514781"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "publishers": ["Pearson Prentice Hall"], "title": "World History", "edition_name": "Onl Stu edition", "isbn_10": ["0132514788"], "publish_date": "February 28, 2007", "key": "/books/OL10085713M", "type": {"key": "/type/edition"}, "subjects": ["History - General", "Juvenile Nonfiction", "Children: Young Adult (Gr. 10-12)"], "revision": 1}
+/type/edition /books/OL10085818M 3 2011-04-29T09:16:19.288871 {"publishers": ["Prentice Hall College Div"], "subtitle": "Documents Set", "weight": "1.3 pounds", "covers": [2322875], "edition_name": "2nd Loosel edition", "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T09:16:19.288871"}, "latest_revision": 3, "key": "/books/OL10085818M", "authors": [{"key": "/authors/OL833807A"}, {"key": "/authors/OL395916A"}, {"key": "/authors/OL2648719A"}, {"key": "/authors/OL1743482A"}], "subjects": ["United States - General", "History", "History: American"], "isbn_13": ["9780132578660"], "title": "Out of Many: A History of the American People ", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0132578662"], "publish_date": "June 1999", "oclc_numbers": ["36434811"], "type": {"key": "/type/edition"}, "physical_dimensions": "10.8 x 8.2 x 0.5 inches", "revision": 3}
+/type/edition /books/OL10086266M 5 2011-02-18T20:51:45.123957 {"publishers": ["Prentice-Hall"], "classifications": {}, "last_modified": {"type": "/type/datetime", "value": "2011-02-18T20:51:45.123957"}, "title": "Eppen Ims Lindo/storm", "notes": {"type": "/type/text", "value": "5.25 Pk"}, "identifiers": {"goodreads": ["6190987"]}, "isbn_13": ["9780132890267"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0132890267"], "publish_date": "May 24, 1992", "key": "/books/OL10086266M", "authors": [{"key": "/authors/OL3365663A"}], "latest_revision": 5, "works": [{"key": "/works/OL9317156W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL1008649M 6 2010-07-31T00:08:16.010336 {"publishers": ["Child's Play"], "subtitle": "a geographical puzzle", "description": {"type": "/type/text", "value": "As Phineas and his daughter, traveling frogs, visit different countries of the world, the reader is challenged to identify each place by clues such as landmarks, cities, rivers, currency, costume, and souvenirs."}, "isbn_10": ["0859539520"], "covers": [651427], "lc_classifications": ["PZ8.3.A2345 Ar 1996"], "latest_revision": 6, "key": "/books/OL1008649M", "authors": [{"key": "/authors/OL453574A"}], "publish_places": ["West Orange, NJ"], "contributions": ["Goffe, Toni, ill."], "pagination": "p. cm.", "source_records": ["marc:marc_records_scriblio_net/part25.dat:205620778:1048", "marc:marc_loc_updates/v37.i38.records.utf8:8789618:1048"], "title": "Around the world with Phineas Frog", "dewey_decimal_class": ["[Fic]"], "identifiers": {"goodreads": ["919386"], "librarything": ["8900250"]}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["96048630"], "subjects": ["Voyages around the world -- Fiction", "Geography -- Fiction", "Travel -- Fiction", "Frogs -- Fiction", "Stories in rhyme"], "publish_date": "1996", "publish_country": "nju", "last_modified": {"type": "/type/datetime", "value": "2010-07-31T00:08:16.010336"}, "by_statement": "devised and written by Paul S. Adshead ; illustrated by Toni Goffe.", "works": [{"key": "/works/OL2967395W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL1008667M 16 2022-12-22T03:51:04.487060 {"identifiers": {"goodreads": ["3643001"], "librarything": ["689668"]}, "subtitle": "the lives of Thomas A. Dooley, 1927-1961", "series": ["Culture, politics, and the cold war"], "covers": [782945], "local_id": ["urn:sfpl:31223048226691", "urn:sfpl:31223046281219", "urn:scms:0188600068327"], "ia_loaded_id": ["dramericalivesof00fish"], "lc_classifications": ["R722.32.D66 F57 1997", "R722.32.D66F57 1997"], "ocaid": "dramericalivesof00fish", "subject_time": ["1945-"], "genres": ["Biography."], "source_records": ["marc:marc_records_scriblio_net/part25.dat:205637215:1084", "marc:marc_ithaca_college/ic_marc.mrc:164510808:1382", "ia:dramericalivesof00fish", "marc:marc_openlibraries_sanfranciscopubliclibrary/sfpl_chq_2018_12_24_run02.mrc:158780317:2092", "marc:marc_loc_2016/BooksAll.2016.part25.utf8:111641364:1076", "bwb:9781558490673", "marc:marc_scms/20220805_ADAM_MARC_records.mrc:130964264:1887", "marc:marc_columbia/Columbia-extract-20221130-010.mrc:24308529:1706"], "title": "Dr. America", "languages": [{"key": "/languages/eng"}], "subjects": ["Dooley, Thomas A. 1927-1961", "Missionaries, Medical -- Asia, Southeastern -- Biography", "Missions, Medical -- Asia, Southeastern -- Biography", "Cold War", "Southeast Asia -- History -- 1945-", "United States -- Civilization -- 1945-"], "publish_country": "mau", "subject_place": ["Southeast Asia", "United States", "Asia, Southeastern"], "by_statement": "James T. Fisher.", "type": {"key": "/type/edition"}, "other_titles": ["Doctor America"], "publishers": ["University of Massachusetts Press"], "ia_box_id": ["IA178601"], "key": "/books/OL1008667M", "authors": [{"key": "/authors/OL544201A"}], "publish_places": ["Amherst"], "pagination": "x, 304 p. :", "dewey_decimal_class": ["610/.92", "B"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 265-293) and index."}, "number_of_pages": 304, "lccn": ["96048652"], "isbn_10": ["1558490671"], "publish_date": "1997", "works": [{"key": "/works/OL3351741W"}], "oclc_numbers": ["35849153"], "latest_revision": 16, "revision": 16, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-22T03:51:04.487060"}}
+/type/edition /books/OL10086769M 2 2009-12-15T00:42:50.228709 {"publishers": ["Prentice Hall Europe (a Pearson Education company)"], "subtitle": "Student Book", "title": "First Cert Eng Test Sb", "isbn_10": ["0133194272"], "isbn_13": ["9780133194272"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:42:50.228709"}, "publish_date": "April 1, 1992", "key": "/books/OL10086769M", "authors": [{"key": "/authors/OL3330725A"}], "latest_revision": 2, "works": [{"key": "/works/OL9276785W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10086955M 10 2022-12-21T04:33:01.261931 {"publishers": ["Prentice-Hall"], "languages": [{"key": "/languages/eng"}], "title": "Frmr Chicago 89-", "identifiers": {"goodreads": ["1854897"], "librarything": ["9188836"]}, "isbn_13": ["9780133316469"], "covers": [5033022], "physical_format": "Paperback", "isbn_10": ["0133316467"], "publish_date": "July 25, 1989", "key": "/books/OL10086955M", "authors": [{"key": "/authors/OL1876032A"}, {"key": "/authors/OL576955A"}], "oclc_numbers": ["20287451"], "works": [{"key": "/works/OL3462757W"}], "type": {"key": "/type/edition"}, "subjects": ["Travel & holiday guides", "United States - General", "Travel - United States"], "local_id": ["urn:bwbsku:KR-386-770"], "source_records": ["promise:bwb_daily_pallets_2022-07-21", "ia:frommerschicago0000uhlm"], "ocaid": "frommerschicago0000uhlm", "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-21T04:33:01.261931"}}
+/type/edition /books/OL10087440M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780133630473"], "physical_format": "Hardcover", "subtitle": "Course 2", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "publishers": ["Pearson Prentice Hall"], "title": "Prentice Hall Mathematics", "edition_name": "Onl Stu edition", "isbn_10": ["0133630471"], "publish_date": "February 28, 2007", "key": "/books/OL10087440M", "type": {"key": "/type/edition"}, "subjects": ["Mathematics - General", "Juvenile Nonfiction", "Children: Young Adult (Gr. 10-12)"], "revision": 1}
+/type/edition /books/OL10087650M 5 2011-06-08T05:24:58.359889 {"publishers": ["Pearson US Imports & PHIPEs"], "last_modified": {"type": "/type/datetime", "value": "2011-06-08T05:24:58.359889"}, "title": "Sm Abnormal Psychology Tif", "identifiers": {"goodreads": ["2352713"]}, "isbn_13": ["9780133764680"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0133764680"], "publish_date": "October 4, 1995", "key": "/books/OL10087650M", "authors": [{"key": "/authors/OL3011654A"}], "latest_revision": 5, "oclc_numbers": ["42357707"], "works": [{"key": "/works/OL8812065W"}], "type": {"key": "/type/edition"}, "subjects": ["Abnormal psychology", "Psychiatry"], "revision": 5}
+/type/edition /books/OL10087905M 4 2011-04-28T02:45:39.569591 {"publishers": ["Prentice-Hall"], "physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2011-04-28T02:45:39.569591"}, "title": "How to analyze and evaluate financial statements (Prentice Hall executive action report)", "number_of_pages": 32, "isbn_13": ["9780133960532"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0133960536"], "publish_date": "1988", "key": "/books/OL10087905M", "authors": [{"key": "/authors/OL256893A"}], "latest_revision": 4, "oclc_numbers": ["18617638"], "works": [{"key": "/works/OL2088079W"}], "type": {"key": "/type/edition"}, "subjects": ["Financial statements"], "revision": 4}
+/type/edition /books/OL10088068M 2 2009-12-15T00:42:51.431557 {"publishers": ["Prentice-Hall"], "title": "Sunlight Resource Book", "isbn_10": ["0134086007"], "isbn_13": ["9780134086002"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:42:51.431557"}, "publish_date": "September 17, 1997", "key": "/books/OL10088068M", "authors": [{"key": "/authors/OL3369064A"}], "latest_revision": 2, "subjects": ["The environment"], "works": [{"key": "/works/OL9321163W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10088117M 2 2011-05-04T01:25:07.852748 {"publishers": ["Globe Fearon"], "languages": [{"key": "/languages/eng"}], "subtitle": "Choices in Literature, Bronze (Choices in Literature (Bronze Teacher's Guides))", "last_modified": {"type": "/type/datetime", "value": "2011-05-04T01:25:07.852748"}, "title": "Communication Explosion", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780134115702"], "physical_format": "Hardcover", "isbn_10": ["0134115708"], "publish_date": "November 2000", "key": "/books/OL10088117M", "latest_revision": 2, "works": [{"key": "/works/OL8605608W"}], "type": {"key": "/type/edition"}, "subjects": ["Children's Books/Ages 9-12 Nonfiction"], "revision": 2}
+/type/edition /books/OL10088192M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Prentice Hall Pearson Education"], "number_of_pages": 348, "isbn_13": ["9780134230627"], "isbn_10": ["0134230620"], "publish_date": "1997", "key": "/books/OL10088192M", "title": "Study Guide - Prentice Hall Science (Prentice Hall Science)", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10088633M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Prentice Hall"], "number_of_pages": 87, "isbn_13": ["9780134375649"], "isbn_10": ["0134375645"], "publish_date": "2000", "key": "/books/OL10088633M", "title": "Reading Support Practice Book (Prentice Hall Literature Timeless Voices, Timeless Themes. Gold Level)", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL1008868M 8 2023-01-06T17:22:28.249069 {"publishers": ["Arnold", "Oxford University Press"], "isbn_10": ["0340598093"], "covers": [1183638], "lc_classifications": ["RC347 .G73 1997", "RC347.G73 1997", "RC347 .G73 1996"], "key": "/books/OL1008868M", "authors": [{"key": "/authors/OL544287A"}], "publish_places": ["London", "New York"], "contributions": ["Graham, David I.", "Lantos, Peter L., 1939-"], "languages": [{"key": "/languages/eng"}], "pagination": "2 v. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part25.utf8:111823757:1039", "bwb:9780340598092", "marc:marc_columbia/Columbia-extract-20221130-009.mrc:63118405:1353"], "title": "Greenfield's Neuropathology.", "dewey_decimal_class": ["616.8/047"], "notes": {"type": "/type/text", "value": "Includes bibliographical references and index."}, "identifiers": {"goodreads": ["2538191"], "librarything": ["5733898"]}, "edition_name": "6th ed. / edited by David I. Graham, Peter L. Lantos.", "lccn": ["96048860"], "subjects": ["Nervous system -- Diseases."], "publish_date": "1997", "publish_country": "enk", "work_title": ["Neuropathology"], "works": [{"key": "/works/OL3352125W"}], "type": {"key": "/type/edition"}, "oclc_numbers": ["501484971"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2023-01-06T17:22:28.249069"}}
+/type/edition /books/OL10089138M 4 2022-12-10T14:43:07.646953 {"publishers": ["Hungry Minds Inc,U.S."], "languages": [{"key": "/languages/eng"}], "key": "/books/OL10089138M", "weight": "10 pounds", "title": "Jamaica (Insight Guide Jamaica)", "identifiers": {"goodreads": ["1439955"], "amazon": [""]}, "isbn_13": ["9780134663760"], "physical_format": "Paperback", "isbn_10": ["0134663764"], "publish_date": "April 10, 1990", "authors": [{"key": "/authors/OL2654769A"}, {"key": "/authors/OL2655197A"}], "type": {"key": "/type/edition"}, "subjects": ["General", "TRAVEL & HOLIDAY", "Travel - Foreign"], "physical_dimensions": "8.7 x 6 x 0.8 inches", "works": [{"key": "/works/OL32006633W"}], "local_id": ["urn:bwbsku:O6-CAF-718"], "source_records": ["promise:bwb_daily_pallets_2020-03-26"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T14:43:07.646953"}}
+/type/edition /books/OL10089172M 4 2010-04-24T17:54:38.745723 {"publishers": ["MacMillan Publishing Company."], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T17:54:38.745723"}, "title": "Insight Namibia", "identifiers": {"goodreads": ["2938040"]}, "isbn_13": ["9780134670102"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0134670108"], "publish_date": "January 1993", "key": "/books/OL10089172M", "authors": [{"key": "/authors/OL2655205A"}], "latest_revision": 4, "works": [{"key": "/works/OL7957372W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10089256M 6 2022-12-10T03:05:07.707228 {"publishers": ["Hungry Minds Inc,U.S."], "weight": "10 pounds", "covers": [10391370], "physical_format": "Paperback", "key": "/books/OL10089256M", "authors": [{"key": "/authors/OL2654769A"}], "ocaid": "mallorcaibizamen0000unse", "subjects": ["General", "TRAVEL & HOLIDAY", "Travel - Foreign"], "isbn_13": ["9780134706757"], "classifications": {}, "source_records": ["ia:mallorcaibizamen0000unse", "promise:bwb_daily_pallets_2020-07-30"], "title": "Insight Mallorca & Ibiza", "notes": {"type": "/type/text", "value": "Insight Guide Mallorca & Ibiza: Menorca & Formentera"}, "identifiers": {"librarything": ["2871353"], "amazon": [""]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0134706757"], "publish_date": "January 15, 1991", "works": [{"key": "/works/OL7956095W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.7 x 6 x 0.8 inches", "local_id": ["urn:bwbsku:KN-594-556"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T03:05:07.707228"}}
+/type/edition /books/OL10089312M 5 2011-04-28T02:45:39.569591 {"publishers": ["Prentice Hall"], "identifiers": {}, "physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2011-04-28T02:45:39.569591"}, "latest_revision": 5, "key": "/books/OL10089312M", "authors": [{"key": "/authors/OL218752A"}], "subjects": ["Operational amplifiers", "Solid state electronics"], "edition_name": "second edition", "languages": [{"key": "/languages/eng"}], "classifications": {}, "title": "Instructor's resource manual [for] Introductory electronic devices and circuits", "notes": {"type": "/type/text", "value": "second edition"}, "number_of_pages": 118, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780134723907"], "isbn_10": ["0134723902"], "publish_date": "1991", "oclc_numbers": ["28762972"], "works": [{"key": "/works/OL1825794W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10089314M 2 2011-04-30T06:54:53.773773 {"publishers": ["Simon & Schuster (Paper)"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-30T06:54:53.773773"}, "title": "Complete Internal Revenue Code of 1954, January 1986", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780134727622"], "isbn_10": ["0134727622"], "publish_date": "January 1986", "key": "/books/OL10089314M", "latest_revision": 2, "oclc_numbers": ["11735867"], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10089342M 6 2011-04-28T14:28:03.600596 {"publishers": ["Prentice Hall"], "subtitle": "Korea (Insight Guide Korea)", "weight": "1.2 pounds", "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-28T14:28:03.600596"}, "latest_revision": 6, "key": "/books/OL10089342M", "authors": [{"key": "/authors/OL2654769A"}], "subjects": ["Asia - Korea", "Travel - Foreign"], "isbn_13": ["9780134740164"], "title": "Insight Guide", "identifiers": {"librarything": ["9307989"], "goodreads": ["6178515"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0134740165"], "publish_date": "September 1992", "oclc_numbers": ["26386549"], "works": [{"key": "/works/OL7956248W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.8 x 6 x 1 inches", "revision": 6}
+/type/edition /books/OL10089607M 6 2021-07-08T06:57:31.189344 {"publishers": ["Pearson Education Imports: Depositories"], "number_of_pages": 410, "weight": "1.3 pounds", "physical_format": "Paperback", "key": "/books/OL10089607M", "authors": [{"key": "/authors/OL250738A"}, {"key": "/authors/OL2650777A"}], "subjects": ["POLITICS & GOVERNMENT"], "source_records": ["bwb:9780134977027", "ia:contemporarygove0000jack"], "title": "Contemporary Government and Politics", "identifiers": {"goodreads": ["5050395"]}, "isbn_13": ["9780134977027"], "isbn_10": ["0134977025"], "publish_date": "December 1, 1992", "works": [{"key": "/works/OL2056270W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.9 x 6.8 x 0.8 inches", "covers": [11384070], "ocaid": "contemporarygove0000jack", "lc_classifications": ["JA66 .J3155 1993"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-07-08T06:57:31.189344"}}
+/type/edition /books/OL10089766M 5 2021-10-21T01:15:03.818735 {"publishers": ["Prentice Hall"], "edition_name": "Student edition", "physical_format": "Paperback", "key": "/books/OL10089766M", "authors": [{"key": "/authors/OL3369516A"}], "subjects": ["History - General", "Art & Art Instruction", "Art"], "isbn_13": ["9780135071205"], "source_records": ["bwb:9780135071205", "ia:studyguidearthis0000shec"], "title": "Art History", "number_of_pages": 144, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0135071208"], "publish_date": "February 1996", "oclc_numbers": ["37186723"], "works": [{"key": "/works/OL9321686W"}], "type": {"key": "/type/edition"}, "covers": [12151576], "ocaid": "studyguidearthis0000shec", "lc_classifications": ["N5300 .S923 1995, Suppl.2"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-10-21T01:15:03.818735"}}
+/type/edition /books/OL10090258M 11 2022-12-07T20:20:04.982787 {"publishers": ["Prentice Hall"], "number_of_pages": 711, "subtitle": "Concepts into Practice (with CD-ROM)", "weight": "3.3 pounds", "covers": [2323113], "physical_format": "Hardcover", "key": "/books/OL10090258M", "authors": [{"key": "/authors/OL3366877A"}], "subjects": ["PHYSICS", "Science / Physics", "Physics (General)", "Science", "Science/Mathematics"], "edition_name": "Har/Com edition", "languages": [{"key": "/languages/eng"}], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part01.utf8:21275072:746", "bwb:9780135324660", "ia:appliedphysicsco0000romi", "promise:bwb_daily_pallets_2022-03-17"], "title": "Applied Physics", "lccn": ["00036761"], "identifiers": {"goodreads": ["1599098"]}, "isbn_13": ["9780135324660"], "isbn_10": ["0135324661"], "publish_date": "January 15, 2001", "works": [{"key": "/works/OL9318660W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.9 x 8.3 x 1.1 inches", "ocaid": "appliedphysicsco0000romi", "lc_classifications": ["QC23 .R755 2001", "QC23.R755 2001"], "local_id": ["urn:bwbsku:P7-EVX-950"], "latest_revision": 11, "revision": 11, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-07T20:20:04.982787"}}
+/type/edition /books/OL10090369M 3 2011-06-08T09:32:38.183230 {"publishers": ["Prentice Hall Trade"], "last_modified": {"type": "/type/datetime", "value": "2011-06-08T09:32:38.183230"}, "source_records": ["amazon:0135406587"], "title": "Lord Is My Counsel", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780135406588"], "physical_format": "Paperback", "isbn_10": ["0135406587"], "publish_date": "May 1984", "key": "/books/OL10090369M", "authors": [{"key": "/authors/OL2224339A"}], "latest_revision": 3, "oclc_numbers": ["234296396"], "works": [{"key": "/works/OL182902W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10090429M 6 2014-02-14T04:05:34.890299 {"publishers": ["Prentice Hall"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2014-02-14T04:05:34.890299"}, "title": "Teacher's resource book to accompany Magruder's American government, William A. McClenaghan", "identifiers": {"goodreads": ["5726752"]}, "isbn_13": ["9780135435052"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Unknown Binding", "isbn_10": ["0135435056"], "publish_date": "1991", "key": "/books/OL10090429M", "authors": [{"key": "/authors/OL19886A"}], "latest_revision": 6, "oclc_numbers": ["26285109"], "works": [{"key": "/works/OL8064014W"}], "type": {"key": "/type/edition"}, "subjects": ["Civics", "Social sciences", "Study and teaching (Secondary)", "United States"], "revision": 6}
+/type/edition /books/OL10090561M 3 2012-06-18T03:19:03.965589 {"publishers": ["Ellis Horwood Ltd"], "number_of_pages": 836, "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2012-06-18T03:19:03.965589"}, "latest_revision": 3, "key": "/books/OL10090561M", "authors": [{"key": "/authors/OL3369746A"}], "subjects": ["Detergents technology", "Synthetic Detergents", "Detergents", "Glycerin", "Soap", "Science/Mathematics"], "isbn_13": ["9780135526620"], "classifications": {}, "title": "The Manufacture of Soaps, Other Detergents and Glycerin", "notes": {"type": "/type/text", "value": "Ellis Horwood Series in Applied Science and Industrial Technology"}, "identifiers": {}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0135526620"], "publish_date": "December 1985", "works": [{"key": "/works/OL9321935W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10090704M 2 2009-12-15T00:42:52.610005 {"publishers": ["Pearson US Imports & PHIPEs"], "key": "/books/OL10090704M", "title": "Managing Human Resources Pack", "isbn_13": ["9780135649640"], "physical_format": "Paperback", "isbn_10": ["0135649641"], "publish_date": "May 8, 1995", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:42:52.610005"}, "authors": [{"key": "/authors/OL3012164A"}], "latest_revision": 2, "works": [{"key": "/works/OL8814140W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL1009080M 26 2022-12-09T17:52:36.527525 {"publishers": ["Bantam Books"], "identifiers": {"goodreads": ["1293816"], "librarything": ["2537596"]}, "ia_box_id": ["IA128718"], "isbn_10": ["0553100769"], "covers": [368005], "ia_loaded_id": ["affair00quic"], "lc_classifications": ["PS3561.R44 A69 1997"], "key": "/books/OL1009080M", "ocaid": "affair00quic_697", "publish_places": ["New York"], "lccn": ["96049078"], "uri_descriptions": ["Contributor biographical information", "Sample text", "Publisher description"], "pagination": "340 p. ;", "source_records": ["marc:marc_records_scriblio_net/part25.dat:206006079:806", "marc:CollingswoodLibraryMarcDump10-27-2008/Collingswood.out:17829216:1763", "ia:affair00quic_697", "marc:marc_openlibraries_sanfranciscopubliclibrary/sfpl_chq_2018_12_24_run02.mrc:146976210:1642", "ia:affair0000quic", "marc:marc_loc_2016/BooksAll.2016.part25.utf8:112004427:806", "ia:isbn_9780553100761", "amazon:0553100769", "promise:bwb_daily_pallets_2021-06-28", "promise:bwb_daily_pallets_2021-03-08", "promise:bwb_daily_pallets_2021-01-11", "promise:bwb_daily_pallets_2020-11-20", "promise:bwb_daily_pallets_2020-11-02"], "title": "Affair", "url": ["http://www.loc.gov/catdir/bios/random057/96049078.html", "http://www.loc.gov/catdir/samples/random043/96049078.html", "http://www.loc.gov/catdir/description/random048/96049078.html"], "number_of_pages": 340, "languages": [{"key": "/languages/eng"}], "dewey_decimal_class": ["813/.54"], "local_id": ["urn:sfpl:31223042715350", "urn:sfpl:31223073392319", "urn:bwbsku:W6-AIO-668", "urn:bwbsku:W6-AHY-352", "urn:bwbsku:P6-CER-422", "urn:bwbsku:544-BAB-333", "urn:bwbsku:O7-BCJ-458", "urn:bwbsku:O7-BJP-734", "urn:bwbsku:W6-BHV-593"], "publish_date": "1997", "publish_country": "nyu", "by_statement": "Amanda Quick.", "works": [{"key": "/works/OL112327W"}], "type": {"key": "/type/edition"}, "uris": ["http://www.loc.gov/catdir/bios/random057/96049078.html", "http://www.loc.gov/catdir/samples/random043/96049078.html", "http://www.loc.gov/catdir/description/random048/96049078.html"], "latest_revision": 26, "revision": 26, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T17:52:36.527525"}}
+/type/edition /books/OL10090984M 2 2011-04-29T12:35:51.999714 {"publishers": ["Prentice Hall"], "languages": [{"key": "/languages/eng"}], "subtitle": "Chicago 1989", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T12:35:51.999714"}, "title": "Mobil Travel Guide", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780135867853"], "physical_format": "Paperback", "isbn_10": ["0135867851"], "publish_date": "April 1989", "key": "/books/OL10090984M", "authors": [{"key": "/authors/OL2655627A"}, {"key": "/authors/OL2649330A"}], "latest_revision": 2, "oclc_numbers": ["19547244"], "type": {"key": "/type/edition"}, "subjects": ["United States - General", "Travel - United States"], "revision": 2}
+/type/edition /books/OL10091294M 13 2022-12-28T01:43:39.691781 {"publishers": ["Prentice Hall"], "number_of_pages": 400, "subtitle": "Problems... (5th Edition)", "edition_name": "5 edition", "physical_format": "Paperback", "key": "/books/OL10091294M", "authors": [{"key": "/authors/OL1347310A"}, {"key": "/authors/OL42680A"}], "subjects": ["Political Science", "Politics / Current Events", "Politics/International Relations", "General", "Political Science / General", "Public Affairs & Administration"], "isbn_13": ["9780136037699"], "source_records": ["marc:marc_loc_updates/v36.i34.records.utf8:14506124:994", "marc:marc_loc_updates/v37.i04.records.utf8:5166150:975", "marc:marc_loc_updates/v37.i36.records.utf8:17379134:1070", "bwb:9780136037699", "marc:marc_loc_2016/BooksAll.2016.part35.utf8:137279485:1070", "promise:bwb_daily_pallets_2021-08-19", "marc:marc_columbia/Columbia-extract-20221130-014.mrc:176967241:3528"], "title": "Public Personnel Administration", "identifiers": {"goodreads": ["6080410"], "librarything": ["8253288"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0136037690"], "publish_date": "August 11, 2008", "works": [{"key": "/works/OL18583774W"}], "type": {"key": "/type/edition"}, "lccn": ["2008035831"], "lc_classifications": ["JK765 .P797 2009", "JK765.P797 2009"], "local_id": ["urn:bwbsku:013-BAA-259"], "oclc_numbers": ["176888807"], "latest_revision": 13, "revision": 13, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-28T01:43:39.691781"}}
+/type/edition /books/OL10091567M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Pearson Higher Education"], "title": "Instructors Resource Manual", "isbn_13": ["9780136194613"], "isbn_10": ["0136194613"], "publish_date": "June 23, 1998", "key": "/books/OL10091567M", "authors": [{"key": "/authors/OL542781A"}, {"key": "/authors/OL2652867A"}], "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10091672M 4 2010-04-24T17:54:38.745723 {"publishers": ["Prentice Hall (Higher Education Division, Pearson Education)"], "title": "Occam 2 Ref Man (French)", "isbn_10": ["0136293530"], "identifiers": {"goodreads": ["6001121"]}, "isbn_13": ["9780136293538"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T17:54:38.745723"}, "publish_date": "January 1, 1990", "key": "/books/OL10091672M", "authors": [{"key": "/authors/OL3370072A"}], "latest_revision": 4, "works": [{"key": "/works/OL9322223W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10092445M 4 2011-04-25T20:13:02.543132 {"publishers": ["Simon & Schuster Software"], "last_modified": {"type": "/type/datetime", "value": "2011-04-25T20:13:02.543132"}, "title": "Power of Financial Calculations for Lotus 1-2-3 (Book and Disk 256K)", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780136877325"], "physical_format": "Hardcover", "isbn_10": ["013687732X"], "publish_date": "March 1984", "key": "/books/OL10092445M", "authors": [{"key": "/authors/OL894888A"}], "latest_revision": 4, "oclc_numbers": ["234296942"], "works": [{"key": "/works/OL4484085W"}], "type": {"key": "/type/edition"}, "subjects": ["Managerial Finance"], "revision": 4}
+/type/edition /books/OL10092460M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Prentice Hall"], "title": "Spring 1998 Nyt Oceanography", "isbn_13": ["9780136887492"], "isbn_10": ["013688749X"], "publish_date": "December 1997", "key": "/books/OL10092460M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10092557M 4 2011-04-25T17:44:26.249163 {"publishers": ["Prentice-Hall, Inc."], "identifiers": {"goodreads": ["4974381"]}, "last_modified": {"type": "/type/datetime", "value": "2011-04-25T17:44:26.249163"}, "languages": [{"key": "/languages/eng"}], "number_of_pages": 104, "isbn_13": ["9780136962038"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0136962033"], "publish_date": "January 1, 1981", "key": "/books/OL10092557M", "authors": [{"key": "/authors/OL3030326A"}, {"key": "/authors/OL3370310A"}], "title": "Prentice-Hall Physical Science Laboratory/Activity Book - Annotated Teacher's Edition", "oclc_numbers": ["7763030"], "type": {"key": "/type/edition"}, "latest_revision": 4, "revision": 4}
+/type/edition /books/OL10092744M 2 2009-12-15T00:42:56.232991 {"publishers": ["Prentice-Hall"], "key": "/books/OL10092744M", "title": "Prentice Hall Literature, Grammar In Action, Practice Book", "number_of_pages": 63, "physical_format": "Paperback", "isbn_10": ["0137108567"], "publish_date": "1989", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:42:56.232991"}, "authors": [{"key": "/authors/OL2649330A"}], "latest_revision": 2, "works": [{"key": "/works/OL7944285W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10092818M 4 2019-07-06T13:16:44.667781 {"publishers": ["Ellis Horwood Ltd"], "subtitle": "A User Friendly Approach (Ellis Horwood Series in Electrical and Electronic Engineering)", "weight": "1 pounds", "covers": [5416974, 5033304], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2019-07-06T13:16:44.667781"}, "latest_revision": 4, "key": "/books/OL10092818M", "authors": [{"key": "/authors/OL3370374A"}], "ocaid": "principleselectr00beyn", "subjects": ["Circuits & components", "Electronic devices & materials", "Electronics - General", "Electronic Engineering (General)", "Technology & Industrial Arts", "Electronics", "Science/Mathematics"], "isbn_13": ["9780137171170"], "source_records": ["ia:principleselectr00beyn"], "title": "Principles of Electronics", "number_of_pages": 446, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["013717117X"], "publish_date": "November 1990", "works": [{"key": "/works/OL9322613W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.5 x 6.8 x 0.8 inches", "revision": 4}
+/type/edition /books/OL10092837M 2 2011-04-26T23:17:25.053706 {"publishers": ["Ellis Horwood"], "last_modified": {"type": "/type/datetime", "value": "2011-04-26T23:17:25.053706"}, "title": "Pyridines (Ellis Horwood Series in Organic Chemistry: Synthetic Reagents)", "number_of_pages": 400, "isbn_13": ["9780137177370"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Hardcover", "isbn_10": ["0137177372"], "publish_date": "April 1994", "key": "/books/OL10092837M", "authors": [{"key": "/authors/OL3370380A"}, {"key": "/authors/OL3370381A"}], "latest_revision": 2, "oclc_numbers": ["232061228"], "type": {"key": "/type/edition"}, "subjects": ["Pharmacology", "Polymer chemistry"], "revision": 2}
+/type/edition /books/OL10093623M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Simon & Schuster (Paper)"], "title": "The Secrets of Professional Cartooning", "isbn_13": ["9780137891320"], "isbn_10": ["0137891326"], "publish_date": "November 1980", "key": "/books/OL10093623M", "type": {"key": "/type/edition"}, "subjects": ["Cartooning", "Cartoons and caricatures"], "revision": 1}
+/type/edition /books/OL10093743M 2 2009-12-15T00:42:56.232991 {"physical_format": "Paperback", "publishers": ["Pearson US Imports & PHIPEs"], "isbn_10": ["013799933X"], "number_of_pages": 656, "isbn_13": ["9780137999330"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:42:56.232991"}, "publish_date": "May 19, 1999", "latest_revision": 2, "key": "/books/OL10093743M", "authors": [{"key": "/authors/OL3370641A"}], "title": "Student Solutions Manual", "subjects": ["Databases & data structures", "Data in computer systems"], "works": [{"key": "/works/OL9322924W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL1009377M 9 2022-12-07T19:24:20.742704 {"publishers": ["Deseret Book Co."], "identifiers": {"goodreads": ["695906"], "librarything": ["7252899"]}, "subtitle": "solving family problems in a Christlike way", "isbn_10": ["1573452289"], "covers": [3860569], "lc_classifications": ["BX8643.F3 L32 1997"], "key": "/books/OL1009377M", "authors": [{"key": "/authors/OL26835A"}], "publish_places": ["Salt Lake City, Utah"], "pagination": "xiv, 207 p. ;", "source_records": ["marc:marc_records_scriblio_net/part25.dat:206276045:982", "marc:marc_loc_updates/v37.i27.records.utf8:29795708:984", "marc:marc_loc_2016/BooksAll.2016.part25.utf8:112278778:984", "ia:whatsparenttodos0000lath", "promise:bwb_daily_pallets_2022-03-17"], "title": "What's a parent to do?", "dewey_decimal_class": ["248.8/45"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 197-199) and index."}, "number_of_pages": 207, "languages": [{"key": "/languages/eng"}], "lccn": ["96049406"], "subjects": ["Latham, Glenn", "Church of Jesus Christ of Latter-Day Saints -- Membership", "Family -- Religious life", "Parenting -- Religious aspects -- Mormon Church", "Child rearing -- Religious aspects -- Mormon Church", "Mormon Church -- Membership", "Christian education -- Home training"], "publish_date": "1997", "publish_country": "utu", "by_statement": "Glenn I. Latham.", "works": [{"key": "/works/OL458518W"}], "type": {"key": "/type/edition"}, "ocaid": "whatsparenttodos0000lath", "local_id": ["urn:bwbsku:P7-EVQ-813"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-07T19:24:20.742704"}}
+/type/edition /books/OL10093823M 2 2011-04-30T02:02:23.452188 {"publishers": ["Prentice Hall"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2011-04-30T02:02:23.452188"}, "title": "Biotechnology Workbook", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780138048990"], "physical_format": "Paperback", "isbn_10": ["0138048991"], "publish_date": "1995", "key": "/books/OL10093823M", "latest_revision": 2, "oclc_numbers": ["41362916"], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10093882M 6 2011-04-22T19:19:42.666173 {"publishers": ["Prentice-Hall"], "physical_format": "Unknown Binding", "revision": 6, "last_modified": {"type": "/type/datetime", "value": "2011-04-22T19:19:42.666173"}, "title": "Answer key to accompany Simon & Schuster workbook for writers", "number_of_pages": 65, "isbn_13": ["9780138112097"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0138112096"], "publish_date": "1987", "key": "/books/OL10093882M", "authors": [{"key": "/authors/OL596676A"}], "latest_revision": 6, "oclc_numbers": ["17697290"], "works": [{"key": "/works/OL3548284W"}], "type": {"key": "/type/edition"}, "subjects": ["1950-", "English language", "Exercises", "Grammar", "Handbooks, manuals, etc", "Rhetoric"], "identifiers": {"goodreads": ["3682573"]}}
+/type/edition /books/OL10094237M 4 2020-08-23T09:23:49.330229 {"publishers": ["Prentice Hall"], "subtitle": "The Ultimate Cyber Classroom", "weight": "4.3 pounds", "covers": [2323480], "edition_name": "Bk&CD-Rom edition", "physical_format": "Software", "last_modified": {"type": "/type/datetime", "value": "2020-08-23T09:23:49.330229"}, "latest_revision": 4, "key": "/books/OL10094237M", "authors": [{"key": "/authors/OL2650803A"}], "subjects": ["Java & variants", "Programming languages", "Computer Networks", "Computer Programming Languages", "Computers", "Computers - Languages / Programming", "Computer Books: General", "Programming Languages - General", "Programming Languages - Java"], "isbn_13": ["9780138419585"], "source_records": ["bwb:9780138419585"], "title": "A Complete Java Training Course", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0138419582"], "publish_date": "May 1997", "works": [{"key": "/works/OL7947220W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10 x 7.2 x 4 inches", "revision": 4}
+/type/edition /books/OL10094316M 3 2010-04-20T10:14:40.188799 {"publishers": ["Prentice-Hall"], "physical_format": "Unknown Binding", "subtitle": "statics and mechanics of materials", "title": "Solutions manual ", "isbn_10": ["0138446636"], "number_of_pages": 142, "isbn_13": ["9780138446635"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2010-04-20T10:14:40.188799"}, "publish_date": "1988", "key": "/books/OL10094316M", "authors": [{"key": "/authors/OL31150A"}], "latest_revision": 3, "subjects": ["Applied mechanics", "Strength of materials", "Structural analysis (Engineering)"], "works": [{"key": "/works/OL15079829W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10094494M 3 2020-08-18T20:46:22.839479 {"publishers": ["Prentice Hall"], "physical_format": "Hardcover", "source_records": ["bwb:9780138609900"], "title": "The International Politics of the Middle East", "number_of_pages": 350, "last_modified": {"type": "/type/datetime", "value": "2020-08-18T20:46:22.839479"}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780138609900"], "isbn_10": ["013860990X"], "publish_date": "October 28, 2009", "key": "/books/OL10094494M", "authors": [{"key": "/authors/OL2635582A"}, {"key": "/authors/OL1617263A"}], "latest_revision": 3, "works": [{"key": "/works/OL21370089W"}], "type": {"key": "/type/edition"}, "subjects": ["POLITICS & GOVERNMENT"], "revision": 3}
+/type/edition /books/OL10094588M 8 2022-12-05T10:52:43.923262 {"publishers": ["Prentice-Hall"], "number_of_pages": 224, "source_records": ["bwb:9780138808242", "ia:businesssystemsd0000corn", "promise:bwb_daily_pallets_2022-04-20"], "title": "Total Systems Development", "type": {"key": "/type/edition"}, "identifiers": {"goodreads": ["6142106"]}, "isbn_13": ["9780138808242"], "isbn_10": ["0138808244"], "publish_date": "April 1990", "key": "/books/OL10094588M", "authors": [{"key": "/authors/OL953922A"}], "works": [{"key": "/works/OL4643906W"}], "physical_format": "Paperback", "subjects": ["Systems analysis & design"], "covers": [12834858], "ocaid": "businesssystemsd0000corn", "lccn": ["89070057"], "lc_classifications": ["HF5548.2 .C6728 1990", "HF5548.2"], "oclc_numbers": ["20691998"], "local_id": ["urn:bwbsku:KQ-903-476"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-05T10:52:43.923262"}}
+/type/edition /books/OL10094767M 3 2011-04-28T13:08:00.512574 {"publishers": ["Simon & Schuster"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-28T13:08:00.512574"}, "title": "The Ten Greatest Myths About Men", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "edition_name": "1st Prenti edition", "isbn_13": ["9780139038402"], "isbn_10": ["013903840X"], "publish_date": "December 1990", "key": "/books/OL10094767M", "authors": [{"key": "/authors/OL714777A"}], "latest_revision": 3, "oclc_numbers": ["80045840"], "works": [{"key": "/works/OL3924357W"}], "type": {"key": "/type/edition"}, "subjects": ["Gender Psychology", "Men", "Sex role", "Women", "Fiction"], "revision": 3}
+/type/edition /books/OL10095145M 2 2011-04-26T03:40:38.004349 {"publishers": ["Prentice Hall"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-26T03:40:38.004349"}, "title": "Trigonometry Teacher's Edition", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780139308437"], "isbn_10": ["0139308431"], "publish_date": "1990", "key": "/books/OL10095145M", "latest_revision": 2, "oclc_numbers": ["21680599"], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10095513M 8 2022-11-17T09:13:09.404033 {"publishers": ["Prentice Hall"], "identifiers": {"goodreads": ["2819064"], "librarything": ["5003599"]}, "subtitle": "Identifying Skills, Training, Accomplishments, and References for the Job Seeker", "weight": "1.1 pounds", "isbn_10": ["0139566996"], "covers": [2323592], "physical_format": "Paperback", "lc_classifications": ["HF5383 .B567 2000", "HF5383.B567 2000"], "key": "/books/OL10095513M", "authors": [{"key": "/authors/OL3371109A"}, {"key": "/authors/OL3371110A"}], "languages": [{"key": "/languages/eng"}], "source_records": ["bwb:9780139566998", "marc:marc_loc_2016/BooksAll.2016.part27.utf8:228809832:742"], "title": "Employment Portfolio, The", "lccn": ["99019736"], "number_of_pages": 200, "isbn_13": ["9780139566998"], "edition_name": "1st edition", "subjects": ["Advice on careers & achieving success", "Careers guidance", "Job Finding", "Business & Economics", "Business / Economics / Finance", "Career/Job", "Careers - Job Hunting", "Development - Business Development", "Business & Economics / Human Resources & Personnel Management", "Employment portfolios"], "publish_date": "June 29, 1999", "works": [{"key": "/works/OL21370245W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.9 x 8.3 x 0.4 inches", "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T09:13:09.404033"}}
+/type/edition /books/OL10095702M 2 2011-04-29T23:22:49.152176 {"publishers": ["Prentice Hall"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T23:22:49.152176"}, "title": "Ya Comprendo] Castells", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780139764240"], "isbn_10": ["0139764240"], "publish_date": "January 1, 1992", "key": "/books/OL10095702M", "latest_revision": 2, "oclc_numbers": ["43009170"], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10095833M 2 2011-04-30T14:41:34.035933 {"physical_format": "Paperback", "subtitle": "The Code of Life, Test Book (Prentice Hall Science)", "last_modified": {"type": "/type/datetime", "value": "2011-04-30T14:41:34.035933"}, "title": "Heredity", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780139868450"], "isbn_10": ["0139868453"], "latest_revision": 2, "key": "/books/OL10095833M", "oclc_numbers": ["81906098"], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10096139M 4 2022-11-17T18:01:49.304073 {"publishers": ["Penguin Books Ltd"], "title": "Lloyds Bank Tax Guide", "number_of_pages": 368, "isbn_13": ["9780140113167"], "physical_format": "Paperback", "isbn_10": ["0140113169"], "publish_date": "August 25, 1988", "key": "/books/OL10096139M", "oclc_numbers": ["655663676"], "works": [{"key": "/works/OL3191107W"}], "type": {"key": "/type/edition"}, "subjects": ["Finance & Accounting"], "source_records": ["bwb:9780140113167"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T18:01:49.304073"}}
+/type/edition /books/OL10096447M 7 2022-11-17T12:15:29.297448 {"publishers": ["Penguin Books Ltd"], "identifiers": {"goodreads": ["758392"]}, "physical_format": "Paperback", "key": "/books/OL10096447M", "authors": [{"key": "/authors/OL982161A"}], "subjects": ["First aid for the home"], "classifications": {}, "title": "Family First Aid", "notes": {"type": "/type/text", "value": "Pocket Penguins"}, "number_of_pages": 128, "isbn_13": ["9780140235944"], "isbn_10": ["0140235949"], "publish_date": "September 29, 1994", "oclc_numbers": ["31329635"], "works": [{"key": "/works/OL4724829W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780140235944"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T12:15:29.297448"}}
+/type/edition /books/OL10096558M 8 2022-12-07T01:35:17.951276 {"publishers": ["Penguin Books Ltd"], "number_of_pages": 224, "title": "The Bird Cage", "identifiers": {"goodreads": ["2167299"], "librarything": ["472603"]}, "isbn_13": ["9780140259209"], "edition_name": "Film & TV Tie-in Ed edition", "physical_format": "Paperback", "isbn_10": ["0140259201"], "publish_date": "April 25, 1996", "key": "/books/OL10096558M", "authors": [{"key": "/authors/OL446606A"}], "works": [{"key": "/works/OL2929959W"}], "type": {"key": "/type/edition"}, "subjects": ["Modern fiction"], "covers": [12652424], "ocaid": "birdcagenovel0000rodi_h2z3", "source_records": ["ia:birdcagenovel0000rodi_h2z3", "bwb:9780140259209", "promise:bwb_daily_pallets_2022-03-17"], "local_id": ["urn:bwbsku:KQ-141-866"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-07T01:35:17.951276"}}
+/type/edition /books/OL10096804M 7 2011-04-29T21:30:25.780474 {"publishers": ["Penguin Books (NZ)"], "identifiers": {"goodreads": ["1937379"], "librarything": ["4916741"]}, "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T21:30:25.780474"}, "latest_revision": 7, "key": "/books/OL10096804M", "authors": [{"key": "/authors/OL2152936A"}], "subjects": ["Adventure stories"], "isbn_13": ["9780140328301"], "classifications": {}, "title": "The Return", "notes": {"type": "/type/text", "value": "Imprint: Puffin Books"}, "number_of_pages": 168, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "edition_name": "New Ed edition", "isbn_10": ["0140328300"], "publish_date": "September 6, 1989", "oclc_numbers": ["59154112"], "works": [{"key": "/works/OL7321149W"}], "type": {"key": "/type/edition"}, "revision": 7}
+/type/edition /books/OL1009686M 9 2022-12-09T22:10:32.211852 {"other_titles": ["Green Mountain spring"], "publishers": ["Skinner House Books"], "identifiers": {"goodreads": ["1316905"], "librarything": ["1080349"], "amazon": [""]}, "isbn_10": ["1558963510"], "covers": [3860745], "lc_classifications": ["BX9855 .K68 1997", "BX9855.K68 1997"], "key": "/books/OL1009686M", "authors": [{"key": "/authors/OL391865A"}], "publish_places": ["Boston, Mass"], "pagination": "60 p. ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part25.utf8:112556194:698", "ia:greenmountainspr0000kowa", "bwb:9781558963511", "promise:bwb_daily_pallets_2020-10-07"], "title": "Green Mountain spring and other leaps of faith", "dewey_decimal_class": ["242"], "number_of_pages": 60, "languages": [{"key": "/languages/eng"}], "lccn": ["96049727"], "subjects": ["Nature -- Religious aspects -- Christianity -- Meditations.", "Unitarian Universalist churches -- Prayer-books and devotions -- English."], "publish_date": "1997", "publish_country": "mau", "by_statement": "Gary A. Kowalski.", "works": [{"key": "/works/OL2683546W"}], "type": {"key": "/type/edition"}, "ocaid": "greenmountainspr0000kowa", "local_id": ["urn:bwbsku:P4-BIK-196"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T22:10:32.211852"}}
+/type/edition /books/OL10096872M 6 2022-12-08T06:38:56.992955 {"publishers": ["Puffin"], "identifiers": {"goodreads": ["2519990"]}, "title": "Different Directions", "type": {"key": "/type/edition"}, "number_of_pages": 112, "isbn_13": ["9780140342819"], "isbn_10": ["0140342818"], "publish_date": "1991", "key": "/books/OL10096872M", "authors": [{"key": "/authors/OL1476069A"}], "oclc_numbers": ["24700126"], "works": [{"key": "/works/OL5951670W"}], "physical_format": "Paperback", "local_id": ["urn:bwbsku:KP-914-056"], "source_records": ["promise:bwb_daily_pallets_2021-06-17"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-08T06:38:56.992955"}}
+/type/edition /books/OL10096960M 5 2022-11-17T11:10:09.947509 {"publishers": ["Puffin"], "number_of_pages": 288, "weight": "5.8 ounces", "physical_format": "Paperback", "key": "/books/OL10096960M", "authors": [{"key": "/authors/OL23326A"}], "subjects": ["Classic fiction", "General", "Juvenile Fiction / General", "Literature (Young Adult)", "Children's Books - Young Adult", "Adventure and adventurers", "Africa", "Fiction", "Children: Young Adult (Gr. 7-9)"], "isbn_13": ["9780140351170"], "title": "Allan Quartermain (Puffin Classics)", "identifiers": {"librarything": ["2174646"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0140351175"], "publish_date": "February 1, 1991", "oclc_numbers": ["22178479"], "works": [{"key": "/works/OL17465W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "7.2 x 4.4 x 0.7 inches", "source_records": ["bwb:9780140351170"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T11:10:09.947509"}}
+/type/edition /books/OL10097129M 10 2022-12-09T07:38:19.298183 {"publishers": ["Penguin UK"], "identifiers": {"librarything": ["8353680"], "goodreads": ["1204265"]}, "covers": [2323953], "physical_format": "Paperback", "key": "/books/OL10097129M", "authors": [{"key": "/authors/OL2654814A"}], "subjects": ["Fiction", "General", "Juvenile Fiction", "Children: Grades 2-3"], "isbn_13": ["9780140377996"], "classifications": {}, "title": "Move over Einstein", "notes": {"type": "/type/text", "value": "Puffin Surfers"}, "number_of_pages": 128, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0140377999"], "publish_date": "June 1999", "works": [{"key": "/works/OL7956380W"}], "type": {"key": "/type/edition"}, "ocaid": "moveovereinstein0000spri", "source_records": ["ia:moveovereinstein0000spri", "bwb:9780140377996", "promise:bwb_daily_pallets_2020-12-14"], "local_id": ["urn:bwbsku:KO-676-371"], "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T07:38:19.298183"}}
+/type/edition /books/OL10097152M 7 2022-11-17T10:26:14.470555 {"publishers": ["Penguin UK"], "identifiers": {"librarything": ["4772017"]}, "covers": [2323965], "physical_format": "Paperback", "key": "/books/OL10097152M", "authors": [{"key": "/authors/OL2677658A"}], "ocaid": "lastbus0000swin", "subjects": ["Adventure stories", "General", "Fiction"], "edition_name": "New Ed edition", "languages": [{"key": "/languages/eng"}], "source_records": ["ia:lastbus0000swin", "bwb:9780140379716"], "title": "Last Bus (Surfers)", "number_of_pages": 96, "isbn_13": ["9780140379716"], "isbn_10": ["0140379711"], "publish_date": "June 1999", "oclc_numbers": ["43243193"], "works": [{"key": "/works/OL8051366W"}], "type": {"key": "/type/edition"}, "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T10:26:14.470555"}}
+/type/edition /books/OL10097242M 7 2022-12-17T20:11:35.975783 {"publishers": ["Puffin"], "identifiers": {"goodreads": ["7031478"]}, "subtitle": "Dinosaur Jokes (Puffin Chapters (Paperback))", "weight": "2.2 ounces", "covers": [2324042], "physical_format": "Paperback", "key": "/books/OL10097242M", "authors": [{"key": "/authors/OL234766A"}], "subjects": ["Juvenile Fiction", "Children's 9-12 - Humor / Jokes", "Children: Grades 2-3", "Humor - Jokes & Riddles", "Readers - Beginner", "Juvenile Fiction / General", "Humorous Stories", "Dinosaurs", "Juvenile humor", "Wit and humor", "Wit and humor, Juvenile"], "isbn_13": ["9780140386486"], "title": "Wackysaurus", "number_of_pages": 64, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0140386483"], "publish_date": "May 1, 1997", "oclc_numbers": ["37452387"], "works": [{"key": "/works/OL1956700W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "7.8 x 5.1 x 0.2 inches", "source_records": ["bwb:9780140386486"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T20:11:35.975783"}}
+/type/edition /books/OL10097574M 9 2022-12-07T00:39:58.515629 {"publishers": ["Penguin Books Ltd"], "number_of_pages": 350, "title": "The Penguin Dictionary of Marketing", "type": {"key": "/type/edition"}, "identifiers": {"goodreads": ["737124"], "librarything": ["9159989"]}, "isbn_13": ["9780140515183"], "isbn_10": ["0140515186"], "publish_date": "February 28, 2008", "key": "/books/OL10097574M", "authors": [{"key": "/authors/OL629634A"}], "works": [{"key": "/works/OL3662939W"}], "physical_format": "Paperback", "subjects": ["Encyclopaedias & Reference Works"], "covers": [12586183], "ocaid": "penguindictionar0000harr", "lc_classifications": ["HF5803 .H37 2009", "HF5415"], "source_records": ["ia:penguindictionar0000harr", "bwb:9780140515183", "promise:bwb_daily_pallets_2022-03-17"], "local_id": ["urn:bwbsku:KP-610-721"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-07T00:39:58.515629"}}
+/type/edition /books/OL10097614M 9 2022-12-07T18:18:27.155939 {"publishers": ["Puffin Books"], "number_of_pages": 20, "physical_format": "Paperback", "key": "/books/OL10097614M", "authors": [{"key": "/authors/OL3371519A"}], "contributions": ["Phoebe Worthington (Illustrator)"], "subjects": ["Fiction", "Picture books"], "classifications": {}, "title": "Teddy Bear Fireman", "notes": {"type": "/type/text", "value": "Picture Puffin"}, "identifiers": {"goodreads": ["6282100"]}, "isbn_13": ["9780140543360"], "isbn_10": ["0140543368"], "publish_date": "August 27, 1992", "oclc_numbers": ["27895205"], "works": [{"key": "/works/OL9324048W"}], "type": {"key": "/type/edition"}, "covers": [12786874], "ocaid": "teddybearfireman0000wort", "source_records": ["ia:teddybearfireman0000wort", "bwb:9780140543360", "promise:bwb_daily_pallets_2022-03-17"], "local_id": ["urn:bwbsku:KQ-361-325"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-07T18:18:27.155939"}}
+/type/edition /books/OL10097781M 6 2011-04-28T16:15:19.102578 {"publishers": ["Puffin Books"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-28T16:15:19.102578"}, "title": "The Birdsville Monster", "type": {"key": "/type/edition"}, "identifiers": {"goodreads": ["3026408"]}, "covers": [2324278], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780140567526"], "isbn_10": ["0140567526"], "latest_revision": 6, "key": "/books/OL10097781M", "authors": [{"key": "/authors/OL3371535A"}], "oclc_numbers": ["173285495"], "works": [{"key": "/works/OL9324069W"}], "contributions": ["Craig Smith (Illustrator)"], "subjects": ["Picture books"], "revision": 6}
+/type/edition /books/OL10098059M 6 2022-12-03T22:01:18.908495 {"publishers": ["Penguin Books Ltd"], "number_of_pages": 320, "title": "Speaking Skills (English Language Teaching)", "identifiers": {"librarything": ["4418354"]}, "isbn_13": ["9780140808469"], "physical_format": "Paperback", "isbn_10": ["0140808469"], "publish_date": "October 31, 1985", "key": "/books/OL10098059M", "authors": [{"key": "/authors/OL265902A"}, {"key": "/authors/OL3371605A"}], "works": [{"key": "/works/OL2130544W"}], "type": {"key": "/type/edition"}, "subjects": ["ELT: specific skills"], "source_records": ["bwb:9780140808469", "amazon:0140808469"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-03T22:01:18.908495"}}
+/type/edition /books/OL10098070M 6 2023-01-10T22:08:30.993469 {"publishers": ["Penguin Books Ltd"], "number_of_pages": 192, "title": "Prospects (English Language Teaching)", "physical_format": "Paperback", "identifiers": {"goodreads": ["5475537"]}, "isbn_13": ["9780140808582"], "isbn_10": ["0140808582"], "publish_date": "August 25, 1988", "key": "/books/OL10098070M", "authors": [{"key": "/authors/OL3371607A"}, {"key": "/authors/OL1348765A"}], "works": [{"key": "/works/OL9324175W"}], "type": {"key": "/type/edition"}, "subjects": ["ELT: Learning Material & Coursework"], "source_records": ["bwb:9780140808582", "promise:bwb_daily_pallets_2022-12-22"], "local_id": ["urn:bwbsku:KS-433-722"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2023-01-10T22:08:30.993469"}}
+/type/edition /books/OL10098190M 3 2022-11-17T18:03:16.081715 {"publishers": ["Penguin Books Ltd"], "physical_format": "Paperback", "subjects": ["ELT graded readers", "English language readers"], "isbn_10": ["0140813624"], "number_of_pages": 16, "isbn_13": ["9780140813623"], "publish_date": "May 1993", "key": "/books/OL10098190M", "authors": [{"key": "/authors/OL1433913A"}, {"key": "/authors/OL2801893A"}], "title": "Adventures of Captain Jay (Penguin English)", "works": [{"key": "/works/OL14958091W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780140813623"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T18:03:16.081715"}}
+/type/edition /books/OL10098265M 8 2022-12-08T07:05:01.213236 {"publishers": ["Penguin Books Ltd"], "number_of_pages": 96, "covers": [2324347], "physical_format": "Paperback", "key": "/books/OL10098265M", "authors": [{"key": "/authors/OL2659428A"}], "ocaid": "testyourvocabula04watc", "subjects": ["ELT: specific skills", "English language"], "isbn_13": ["9780140816174"], "source_records": ["ia:testyourvocabula00watc", "bwb:9780140816174", "promise:bwb_daily_pallets_2021-06-17"], "title": "Test Your Vocabulary (Test Your Vocabulary Series)", "identifiers": {"librarything": ["8442688"]}, "edition_name": "2Rev Ed edition", "isbn_10": ["0140816178"], "publish_date": "January 30, 1997", "works": [{"key": "/works/OL7985556W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:KP-293-085"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-08T07:05:01.213236"}}
+/type/edition /books/OL10098483M 5 2011-04-25T20:13:02.543132 {"publishers": ["Microsoft Press,U.S."], "number_of_pages": 288, "subtitle": "How to Maintain State-of-the-Art Performance on Your Apple II and Iie", "last_modified": {"type": "/type/datetime", "value": "2011-04-25T20:13:02.543132"}, "title": "Endless Apple", "identifiers": {"goodreads": ["2686268"]}, "isbn_13": ["9780140871319"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0140871314"], "publish_date": "February 28, 1985", "key": "/books/OL10098483M", "authors": [{"key": "/authors/OL3371652A"}], "latest_revision": 5, "oclc_numbers": ["11044967"], "works": [{"key": "/works/OL9324239W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10098494M 2 2009-12-15T00:43:01.360362 {"publishers": ["Penguin Books Ltd"], "subtitle": "Dictionary of Telecommunications(gec Ed", "isbn_10": ["0140872175"], "number_of_pages": 208, "isbn_13": ["9780140872170"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:43:01.360362"}, "publish_date": "April 27, 1989", "key": "/books/OL10098494M", "authors": [{"key": "/authors/OL3371662A"}], "title": "Graham John", "latest_revision": 2, "works": [{"key": "/works/OL9324251W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10098584M 3 2022-11-17T17:18:11.980716 {"publishers": ["Penguin Books Ltd"], "subtitle": "Box Charge Anne Series", "title": "BOX CHARGE : BOX CHARGE ANNE SERIES", "isbn_10": ["0140882529"], "isbn_13": ["9780140882520"], "physical_format": "Paperback", "publish_date": "March 29, 1990", "key": "/books/OL10098584M", "authors": [{"key": "/authors/OL3371679A"}], "works": [{"key": "/works/OL9324271W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780140882520"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T17:18:11.980716"}}
+/type/edition /books/OL10099191M 8 2022-12-10T00:07:03.536413 {"publishers": ["Puffin Books"], "identifiers": {"goodreads": ["1675944"]}, "weight": "4.2 ounces", "covers": [2324740], "physical_format": "Paperback", "key": "/books/OL10099191M", "authors": [{"key": "/authors/OL2622272A"}], "subjects": ["Humour collections & anthologies", "Jokes & riddles"], "title": "The Crazy Classroom Joke Book (Puffin Jokes, Games, Puzzles)", "number_of_pages": 160, "isbn_13": ["9780141307572"], "isbn_10": ["0141307579"], "publish_date": "January 18, 2001", "oclc_numbers": ["45313419"], "type": {"key": "/type/edition"}, "physical_dimensions": "7.6 x 4.8 x 0.6 inches", "works": [{"key": "/works/OL24820051W"}], "ocaid": "crazyclassroomjo0000byrn", "source_records": ["ia:crazyclassroomjo0000byrn", "bwb:9780141307572", "promise:bwb_daily_pallets_2020-09-09"], "local_id": ["urn:bwbsku:KO-129-566"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T00:07:03.536413"}}
+/type/edition /books/OL10099237M 4 2010-04-24T17:55:11.075633 {"publishers": ["Puffin Books"], "identifiers": {"goodreads": ["2529891"]}, "weight": "1.7 pounds", "title": "Deadly Book 5", "number_of_pages": 72, "isbn_13": ["9780141309101"], "physical_format": "Unknown Binding", "authors": [{"key": "/authors/OL3371783A"}], "isbn_10": ["0141309105"], "publish_date": "July 27, 2000", "key": "/books/OL10099237M", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T17:55:11.075633"}, "latest_revision": 4, "works": [{"key": "/works/OL9324474W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL1009955M 9 2023-01-06T17:32:36.482199 {"publishers": ["Human Kinetics"], "identifiers": {"goodreads": ["2147150"], "librarything": ["5707236"]}, "ia_box_id": ["IA125303"], "isbn_10": ["088011732X"], "covers": [1635376], "ia_loaded_id": ["biophysicalfound00aber"], "lc_classifications": ["QP303 .B586 1997"], "key": "/books/OL1009955M", "authors": [{"key": "/authors/OL5296772A"}], "ocaid": "biophysicalfound00aber", "publish_places": ["Champaign, IL"], "contributions": ["Abernethy, Bruce, 1958-"], "pagination": "x, 425 p. :", "source_records": ["ia:biophysicalfound00aber", "marc:marc_loc_2016/BooksAll.2016.part25.utf8:112802557:658", "marc:marc_columbia/Columbia-extract-20221130-009.mrc:65695616:1305"], "title": "The biophysical foundations of human movement", "dewey_decimal_class": ["612.7/6"], "notes": {"type": "/type/text", "value": "Includes bibliographical references and index."}, "number_of_pages": 425, "languages": [{"key": "/languages/eng"}], "lccn": ["96050009"], "subjects": ["Human mechanics.", "Biophysics."], "publish_date": "1997", "publish_country": "ilu", "by_statement": "Bruce Abernethy ... [et al.].", "works": [{"key": "/works/OL16041272W"}], "type": {"key": "/type/edition"}, "oclc_numbers": ["36037916"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2023-01-06T17:32:36.482199"}}
+/type/edition /books/OL10099759M 10 2022-12-17T17:37:12.709118 {"publishers": ["Avery"], "identifiers": {"librarything": ["4477"], "goodreads": ["1356377"]}, "covers": [2325153], "physical_format": "Paperback", "key": "/books/OL10099759M", "authors": [{"key": "/authors/OL513707A"}], "subjects": ["Nutrition", "Health & Fitness / Healing", "Healing", "Health & Fitness", "Consumer Health", "Health/Fitness"], "isbn_13": ["9780143005964"], "title": "Prescription for Nutritional Healing", "number_of_pages": 896, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0143005960"], "publish_date": "October 19, 2006", "oclc_numbers": ["225081499"], "works": [{"key": "/works/OL551319W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780143005964"], "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T17:37:12.709118"}}
+/type/edition /books/OL10099891M 6 2022-12-29T16:43:51.532342 {"publishers": ["Penguin Books,India"], "physical_format": "Paperback", "source_records": ["amazon:0143062026", "marc:marc_loc_updates/v35.i20.records.utf8:28004393:713", "marc:marc_loc_2016/BooksAll.2016.part34.utf8:17961423:713", "marc:marc_columbia/Columbia-extract-20221130-013.mrc:266219509:899"], "title": "The Penguin India Factfile", "number_of_pages": 176, "isbn_13": ["9780143062028"], "isbn_10": ["0143062026"], "publish_date": "August 30, 2006", "key": "/books/OL10099891M", "oclc_numbers": ["78997325"], "works": [{"key": "/works/OL18628747W"}], "type": {"key": "/type/edition"}, "subjects": ["Places & peoples: general interest", "Reference works", "India"], "lccn": ["2006453737"], "lc_classifications": ["DS407 .P375 2006"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-29T16:43:51.532342"}}
+/type/edition /books/OL10100246M 4 2010-05-05T01:02:31.486577 {"publishers": ["Penguin (Non-Classics)"], "key": "/books/OL10100246M", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "identifiers": {"goodreads": ["1154035"]}, "isbn_13": ["9780147717689"], "physical_format": "Unknown Binding", "isbn_10": ["014771768X"], "publish_date": "September 24, 2002", "last_modified": {"type": "/type/datetime", "value": "2010-05-05T01:02:31.486577"}, "authors": [{"key": "/authors/OL24556A"}], "title": "Patches of Godlight 12-Copy Floor", "latest_revision": 4, "works": [{"key": "/works/OL15125559W"}], "type": {"key": "/type/edition"}, "subjects": ["Fiction / General"], "revision": 4}
+/type/edition /books/OL10100280M 6 2022-12-17T13:51:57.801123 {"publishers": ["Puffin"], "physical_format": "Paperback", "title": "AAR/ETR 60c refill", "isbn_13": ["9780147740915"], "isbn_10": ["0147740916"], "publish_date": "February 14, 2001", "key": "/books/OL10100280M", "authors": [{"key": "/authors/OL27452A"}], "works": [{"key": "/works/OL14968310W"}], "type": {"key": "/type/edition"}, "source_records": ["amazon:0147740916", "bwb:9780147740915"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T13:51:57.801123"}}
+/type/edition /books/OL10100985M 6 2022-11-14T22:40:50.568192 {"publishers": ["Harcourt"], "title": "Patch", "isbn_10": ["0152595708"], "identifiers": {"goodreads": ["6577162"], "amazon": ["B0027O1LDC"], "better_world_books": ["BWB19426496"]}, "isbn_13": ["9780152595708"], "physical_format": "Hardcover", "publish_date": "June 1957", "key": "/books/OL10100985M", "authors": [{"key": "/authors/OL3372040A"}], "works": [{"key": "/works/OL9324769W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:O8-BSX-830", "urn:bwbsku:O8-BSX-831"], "source_records": ["promise:bwb_daily_pallets_2022-09-30"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-14T22:40:50.568192"}}
+/type/edition /books/OL10101556M 3 2019-07-30T15:44:47.176698 {"publishers": ["Harcourt Brace"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2019-07-30T15:44:47.176698"}, "title": "Taking Care Of Yourself Unit B (Healthy You)", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780153062803"], "physical_format": "Paperback", "isbn_10": ["0153062800"], "publish_date": "1996", "key": "/books/OL10101556M", "latest_revision": 3, "oclc_numbers": ["34133454"], "works": [{"key": "/works/OL11889073W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL1010180M 11 2022-02-26T18:18:24.193996 {"other_titles": ["Songs of a housewife"], "publishers": ["University Press of Florida"], "number_of_pages": 276, "subtitle": "songs of a housewife", "isbn_10": ["0813014913"], "covers": [10721222], "lc_classifications": ["PS3535.A845 A6 1997", "PS3535.A845A6 1997"], "key": "/books/OL1010180M", "authors": [{"key": "/authors/OL18973A"}], "ocaid": "poemsbymarjoriek00rawl", "publish_places": ["Gainesville"], "contributions": ["Tarr, Rodger L."], "pagination": "xii, 276 p. :", "source_records": ["marc:marc_records_scriblio_net/part25.dat:207009265:1034", "ia:poemsbymarjoriek00rawl", "bwb:9780813014913", "marc:marc_loc_2016/BooksAll.2016.part25.utf8:113011760:1034"], "title": "Poems by Marjorie Kinnan Rawlings", "dewey_decimal_class": ["811/.52"], "notes": {"type": "/type/text", "value": "Includes bibliographical references and index.\nPoems originally published between 1926 and 1928 in the Rochester times union under the by-line Songs of a housewife."}, "identifiers": {"librarything": ["1344643"], "goodreads": ["2184869"]}, "languages": [{"key": "/languages/eng"}], "lccn": ["96050245"], "subjects": ["Married women -- Poetry", "Housewives -- Poetry", "Motherhood -- Poetry", "Nature -- Poetry"], "publish_date": "1997", "publish_country": "flu", "by_statement": "edited by Rodger L. Tarr.", "work_title": ["Poems."], "works": [{"key": "/works/OL445723W"}], "type": {"key": "/type/edition"}, "latest_revision": 11, "revision": 11, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-26T18:18:24.193996"}}
+/type/edition /books/OL10102212M 3 2022-11-09T16:20:39.570274 {"publishers": ["Harcourt School Publishers"], "subtitle": "Assessment Program", "title": "Social Studies : United States", "isbn_10": ["015312122X"], "isbn_13": ["9780153121227"], "physical_format": "Paperback", "publish_date": "January 1, 1999", "key": "/books/OL10102212M", "authors": [{"key": "/authors/OL7385941A"}], "works": [{"key": "/works/OL7991089W"}], "type": {"key": "/type/edition"}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-09T16:20:39.570274"}}
+/type/edition /books/OL10102487M 2 2010-08-12T15:39:08.217235 {"publishers": ["Harcourt Brace Jovanovich"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-08-12T15:39:08.217235"}, "title": "Writer's Notebook HBJ Language", "identifiers": {"librarything": ["8265147"]}, "isbn_13": ["9780153164682"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0153164689"], "publish_date": "1990", "key": "/books/OL10102487M", "latest_revision": 2, "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10102573M 2 2019-07-30T15:45:09.788845 {"publishers": ["Harcourt"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2019-07-30T15:45:09.788845"}, "title": "Science- Grade 1- 3 Volume Teachers Edition (Science, 3 Volumes)", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780153177446"], "physical_format": "Spiral-bound", "isbn_10": ["0153177446"], "publish_date": "2000", "key": "/books/OL10102573M", "latest_revision": 2, "works": [{"key": "/works/OL15831002W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10102631M 5 2022-11-09T16:20:39.570274 {"publishers": ["HARCOURT SCHL PUBS"], "subtitle": "TX Edition", "title": "Harcourt Language Arts,Grade 5", "covers": [6256225], "physical_format": "Paperback", "isbn_10": ["0153190981"], "publish_date": "2002", "key": "/books/OL10102631M", "authors": [{"key": "/authors/OL7385941A"}], "oclc_numbers": ["228019980"], "works": [{"key": "/works/OL7991073W"}], "type": {"key": "/type/edition"}, "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-09T16:20:39.570274"}}
+/type/edition /books/OL10102648M 5 2022-12-08T02:02:09.088493 {"publishers": ["Harcourt"], "physical_format": "Unknown Binding", "title": "The treasure map", "identifiers": {"goodreads": ["5663307"]}, "isbn_13": ["9780153195051"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0153195053"], "publish_date": "2001", "key": "/books/OL10102648M", "authors": [{"key": "/authors/OL738186A"}], "works": [{"key": "/works/OL4005539W"}], "type": {"key": "/type/edition"}, "subjects": ["Children's literature", "Juvenile literature", "Treasures"], "local_id": ["urn:bwbsku:T2-AWP-050"], "source_records": ["promise:bwb_daily_pallets_2021-08-24"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-08T02:02:09.088493"}}
+/type/edition /books/OL10102667M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Harcourt Brace"], "title": "Intervention Strategies and Activities for Grade 2", "isbn_13": ["9780153198458"], "isbn_10": ["0153198451"], "publish_date": "2003", "key": "/books/OL10102667M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10102674M 3 2011-02-23T06:22:19.418700 {"publishers": ["Harcourt Brace"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2011-02-23T06:22:19.418700"}, "title": "Harcourt Brace Social Studies Teacher's Edition Vol. 2", "number_of_pages": 673, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Spiral-bound", "isbn_10": ["0153201088"], "publish_date": "2002", "key": "/books/OL10102674M", "authors": [{"key": "/authors/OL2660618A"}], "latest_revision": 3, "works": [{"key": "/works/OL7991826W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL1010306M 9 2022-11-15T20:29:47.686183 {"other_titles": ["Diccionario me\u0301dico, ingle\u0301s-espan\u0303ol, espan\u0303ol-ingle\u0301s", "Medical dictionary"], "publishers": ["McGraw-Hill, Health Professions Division"], "identifiers": {"librarything": ["1237516"], "goodreads": ["2541894"]}, "subtitle": "Diccionario me\u0301dico, ingle\u0301s-espan\u0303ol, espan\u0303ol-ingle\u0301s", "isbn_10": ["0070536805"], "covers": [55275], "lc_classifications": ["R121 .R626 1997"], "url": ["http://www.loc.gov/catdir/description/mh022/96050377.html"], "key": "/books/OL1010306M", "authors": [{"key": "/authors/OL544829A"}], "publish_places": ["New York"], "uri_descriptions": ["Publisher description"], "languages": [{"key": "/languages/eng"}], "pagination": "xxx, 230 p. ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part25.utf8:113121978:1153", "ia:englishspanishsp0000roge", "amazon:0070536805"], "title": "English-Spanish, Spanish-English medical dictionary =", "lccn": ["96050377"], "number_of_pages": 230, "edition_name": "2nd ed.", "dewey_decimal_class": ["610/.3"], "subjects": ["Medicine -- Dictionaries.", "English language -- Dictionaries -- Spanish.", "Medicine -- Dictionaries -- Spanish.", "Spanish language -- Dictionaries -- English.", "Dictionaries, Medical -- Spanish."], "publish_date": "1997", "publish_country": "nyu", "by_statement": "Glenn T. Rogers.", "works": [{"key": "/works/OL3354750W"}], "type": {"key": "/type/edition"}, "uris": ["http://www.loc.gov/catdir/description/mh022/96050377.html"], "ocaid": "englishspanishsp0000roge", "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-15T20:29:47.686183"}}
+/type/edition /books/OL10103201M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780153257636"], "physical_format": "Hardcover", "subtitle": "Picture Cards", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "publishers": ["Harcourt School"], "title": "Science", "edition_name": "Flashcards edition", "isbn_10": ["0153257636"], "publish_date": "January 2002", "key": "/books/OL10103201M", "type": {"key": "/type/edition"}, "subjects": ["Science & Nature - General", "Juvenile Nonfiction", "Children: Grades 2-3"], "revision": 1}
+/type/edition /books/OL10103664M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Spiral-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Harcourt"], "title": "Your Health - Teacher's Edition - Kindergarten", "isbn_13": ["9780153343063"], "isbn_10": ["0153343060"], "publish_date": "2003", "key": "/books/OL10103664M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10103704M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "subtitle": " For Adventures for Readers, BOOK TWO (Pegasus Edition)", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Holt, Rinehart & Winston"], "title": "VOCABULARY TESTS With VOCABULARY DEVELOPMENT WORKSHEETS, Copying Masters", "isbn_13": ["9780153349119"], "isbn_10": ["0153349115"], "publish_date": "1989", "key": "/books/OL10103704M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL1010399M 8 2021-08-17T07:00:56.362223 {"publishers": ["Butterworth-Heinemann"], "identifiers": {"goodreads": ["580374"]}, "subtitle": "clinical procedures", "isbn_10": ["0750696214"], "series": ["Clinical procedures series"], "covers": [1402534], "lc_classifications": ["RE121 .S36 1997", "RE121.S36 1997"], "key": "/books/OL1010399M", "authors": [{"key": "/authors/OL544863A"}], "publish_places": ["Boston"], "pagination": "xiii, 119 p., [4] p. of plates :", "source_records": ["bwb:9780750696210", "marc:marc_loc_2016/BooksAll.2016.part25.utf8:113202706:987", "ia:lidsnasolacrimal0000schm"], "title": "Lids and nasolacrimal system", "dewey_decimal_class": ["617.7/71"], "notes": {"type": "/type/text", "value": "Includes bibliographical references and index."}, "number_of_pages": 119, "languages": [{"key": "/languages/eng"}], "lccn": ["96050471"], "subjects": ["Eyelids -- Diseases.", "Lacrimal apparatus -- Diseases.", "Eyelid Diseases -- diagnosis.", "Eyelid Diseases -- therapy.", "Lacrimal Apparatus Diseases -- diagnosis.", "Lacrimal Apparatus Diseases -- therapy."], "publish_date": "1997", "publish_country": "mau", "by_statement": "Eric E. Schmidt.", "works": [{"key": "/works/OL3354871W"}], "type": {"key": "/type/edition"}, "ocaid": "lidsnasolacrimal0000schm", "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2021-08-17T07:00:56.362223"}}
+/type/edition /books/OL10104024M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Paperback", "subtitle": "Health and Fitness (Assessment Guide) - Grade 4", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Harcourt"], "title": "Harcourt", "isbn_13": ["9780153390791"], "isbn_10": ["0153390794"], "publish_date": "2002", "key": "/books/OL10104024M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10104381M 3 2010-04-24T17:55:11.075633 {"publishers": ["Harcourt Brace Jovanovich"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T17:55:11.075633"}, "title": "Level 1 Mathematics Today Teachers Resource Book Blue Level Grade 1", "identifiers": {"goodreads": ["6320221"]}, "isbn_13": ["9780153500510"], "isbn_10": ["0153500514"], "publish_date": "1987", "key": "/books/OL10104381M", "latest_revision": 3, "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10104507M 3 2011-04-28T12:13:08.356867 {"publishers": ["Harcourt School"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-28T12:13:08.356867"}, "weight": "3.1 pounds", "title": "HBJ Algebra 2 with Trigonometry", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780153536410"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0153536411"], "publish_date": "January 1990", "key": "/books/OL10104507M", "authors": [{"key": "/authors/OL3372354A"}], "latest_revision": 3, "oclc_numbers": ["21418300"], "works": [{"key": "/works/OL9325154W"}], "type": {"key": "/type/edition"}, "subjects": ["Algebra - General", "Mathematics", "Education"], "physical_dimensions": "9.5 x 7.5 x 1.2 inches", "revision": 3}
+/type/edition /books/OL10104617M 4 2011-04-30T08:01:35.166001 {"publishers": ["Harcourt Brace Jovanovich"], "languages": [{"key": "/languages/eng"}], "identifiers": {"goodreads": ["2934792"]}, "subtitle": "patterns in living things", "last_modified": {"type": "/type/datetime", "value": "2011-04-30T08:01:35.166001"}, "title": "A laboratory experience book, Biology ", "number_of_pages": 134, "isbn_13": ["9780153624346"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Unknown Binding", "isbn_10": ["0153624345"], "publish_date": "1976", "key": "/books/OL10104617M", "authors": [{"key": "/authors/OL1241747A"}], "latest_revision": 4, "oclc_numbers": ["3548146"], "type": {"key": "/type/edition"}, "subjects": ["Biology"], "revision": 4}
+/type/edition /books/OL10104706M 4 2022-12-10T11:25:03.447955 {"physical_format": "Unknown Binding", "publishers": ["Harcourt Brace Jovanovich"], "isbn_10": ["0153668652"], "number_of_pages": 184, "isbn_13": ["9780153668654"], "languages": [{"key": "/languages/eng"}], "publish_date": "1979", "key": "/books/OL10104706M", "authors": [{"key": "/authors/OL1549438A"}], "title": "Care of a small planet, the sciences (Our environment : choices and actions)", "subjects": ["Ecology", "Science", "Study and teaching (Elementary)"], "works": [{"key": "/works/OL6091910W"}], "type": {"key": "/type/edition"}, "source_records": ["amazon:0153668652", "promise:bwb_daily_pallets_2020-04-09"], "local_id": ["urn:bwbsku:O6-CCA-955"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T11:25:03.447955"}}
+/type/edition /books/OL10105498M 8 2021-12-24T04:02:01.384586 {"publishers": ["Wadsworth Publishing"], "number_of_pages": 560, "subtitle": "Since 1863, Brief Edition (with InfoTrac and American Journey Online)", "weight": "1.9 pounds", "covers": [2325535], "physical_format": "Paperback", "key": "/books/OL10105498M", "authors": [{"key": "/authors/OL396596A"}, {"key": "/authors/OL26756A"}, {"key": "/authors/OL457610A"}, {"key": "/authors/OL1126971A"}], "subjects": ["American history", "History", "History - General History", "History: World", "USA", "History / General", "General"], "edition_name": "1 edition", "languages": [{"key": "/languages/eng"}], "title": "American Passages: A History of the United States, Volume II", "identifiers": {"librarything": ["816743"], "goodreads": ["328111"]}, "isbn_13": ["9780155051232"], "isbn_10": ["0155051237"], "publish_date": "August 13, 2002", "oclc_numbers": ["60859047"], "works": [{"key": "/works/OL15118889W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 7.2 x 0.8 inches", "ocaid": "americanpassages0000unse_t3b3", "lccn": ["2002024970"], "lc_classifications": ["E178.1 .A4926 2003"], "source_records": ["ia:americanpassages0000unse_t3b3"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-24T04:02:01.384586"}}
+/type/edition /books/OL10105573M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Paperback", "subtitle": "For Instructors with Utility Disk", "weight": "3.8 ounces", "publishers": ["Harcourt"], "title": "Castellon", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780155058323"], "isbn_10": ["0155058320"], "publish_date": "September 1987", "key": "/books/OL10105573M", "authors": [{"key": "/authors/OL3372562A"}, {"key": "/authors/OL3372563A"}, {"key": "/authors/OL3372564A"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Reference"], "physical_dimensions": "8.6 x 6.5 x 0.2 inches", "revision": 1}
+/type/edition /books/OL10105615M 3 2010-04-24T17:55:11.075633 {"publishers": ["International Thomson Publishing"], "key": "/books/OL10105615M", "title": "Liberty, Equality, Power - Concise Second Edition, Volume I Study Guide", "identifiers": {"goodreads": ["346887"]}, "isbn_13": ["9780155065376"], "edition_name": "1st edition", "physical_format": "Textbook Binding", "isbn_10": ["0155065378"], "publish_date": "2001", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T17:55:11.075633"}, "authors": [{"key": "/authors/OL3372463A"}, {"key": "/authors/OL1129710A"}], "latest_revision": 3, "type": {"key": "/type/edition"}, "subjects": ["History"], "revision": 3}
+/type/edition /books/OL10105731M 2 2010-04-13T05:05:10.489464 {"physical_format": "Paperback", "languages": [{"key": "/languages/eng"}], "weight": "4.2 pounds", "publishers": ["Harcourt College Pub"], "title": "Life Span Human Development", "covers": [2325557], "edition_name": "6 edition", "isbn_13": ["9780155076884"], "isbn_10": ["0155076884"], "publish_date": "August 1996", "key": "/books/OL10105731M", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:05:10.489464"}, "latest_revision": 2, "subjects": ["Sociology"], "type": {"key": "/type/edition"}, "physical_dimensions": "11.2 x 8.5 x 1.8 inches", "revision": 2}
+/type/edition /books/OL10105920M 4 2010-04-24T17:55:11.075633 {"publishers": ["International Thomson Publishing"], "identifiers": {"goodreads": ["2742722"]}, "last_modified": {"type": "/type/datetime", "value": "2010-04-24T17:55:11.075633"}, "title": "Philosophy East & West", "type": {"key": "/type/edition"}, "number_of_pages": 380, "edition_name": "1 edition", "isbn_13": ["9780155136724"], "isbn_10": ["0155136720"], "publish_date": "September 1, 2000", "key": "/books/OL10105920M", "authors": [{"key": "/authors/OL1070136A"}], "latest_revision": 4, "works": [{"key": "/works/OL4959020W"}], "physical_format": "Textbook Binding", "revision": 4}
+/type/edition /books/OL1010680M 10 2021-12-25T10:54:14.163261 {"publishers": ["W.B. Eerdmans Pub. Co."], "identifiers": {"goodreads": ["4035699"], "librarything": ["983339"]}, "ia_box_id": ["IA129408"], "isbn_10": ["0802850871", "0802850901"], "covers": [1512903, 573195], "ia_loaded_id": ["ivandynamos00bowm"], "lc_classifications": ["PZ7.B68335 Iv 1997", "PZ7.B68335Iv 1997"], "key": "/books/OL1010680M", "authors": [{"key": "/authors/OL381756A"}], "ocaid": "ivandynamos00bowm", "publish_places": ["Grand Rapids, Mich"], "description": {"type": "/type/text", "value": "Although eleven-year-old Andy is unhappy when he does not get the hockey coach he wants, his new coach uses a model approach to the team that brings Andy one of the greatest experiences of his life."}, "pagination": "viii, 140 p. ;", "source_records": ["ia:ivandynamos00bowm", "marc:marc_loc_2016/BooksAll.2016.part25.utf8:113457194:833", "bwb:9780802850904", "bwb:9780802850874"], "title": "Ivan and the dynamos", "dewey_decimal_class": ["[Fic]"], "number_of_pages": 140, "languages": [{"key": "/languages/eng"}], "lccn": ["96051150"], "subjects": ["Hockey -- Fiction."], "publish_date": "1997", "publish_country": "miu", "by_statement": "Crystal Bowman.", "works": [{"key": "/works/OL2620525W"}], "type": {"key": "/type/edition"}, "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-25T10:54:14.163261"}}
+/type/edition /books/OL10106842M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Professional Publications"], "title": "Williams Miller 1999 Gaap Implement Man Cd/bk Kit", "isbn_13": ["9780156067164"], "isbn_10": ["0156067161"], "publish_date": "November 15, 1998", "key": "/books/OL10106842M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10106868M 1 2008-04-30T09:38:13.731961 {"physical_format": "Hardcover", "subtitle": "1999 Supplement", "weight": "3.8 pounds", "publishers": ["Harcourt"], "title": "Accounting, Auditing, and Financial Malpractice", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780156068840"], "isbn_10": ["0156068842"], "publish_date": "May 1998", "key": "/books/OL10106868M", "authors": [{"key": "/authors/OL3372897A"}, {"key": "/authors/OL3372863A"}, {"key": "/authors/OL3372862A"}], "type": {"key": "/type/edition"}, "subjects": ["Accounting - General", "Business Law", "Reference", "Business / Economics / Finance"], "physical_dimensions": "10.3 x 7.3 x 1.8 inches", "revision": 1}
+/type/edition /books/OL10107021M 4 2010-08-12T15:39:08.217235 {"publishers": ["Harcourt Childrens Books (J)"], "number_of_pages": 290, "covers": [5033740], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-08-12T15:39:08.217235"}, "latest_revision": 4, "key": "/books/OL10107021M", "authors": [{"key": "/authors/OL39639A"}], "subjects": ["General", "Children's 9-12", "Family life", "Fiction", "Children: Babies & Toddlers"], "first_sentence": {"type": "/type/text", "value": "The way Mama could peel apples!"}, "source_records": ["amazon:0156618508"], "title": "Moffats", "identifiers": {"librarything": ["96328"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780156618502"], "isbn_10": ["0156618508"], "publish_date": "June 1968", "works": [{"key": "/works/OL78549W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10107051M 5 2020-05-16T17:30:46.160902 {"publishers": ["Coronado"], "physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2020-05-16T17:30:46.160902"}, "title": "Your English 3", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "covers": [9559138], "isbn_13": ["9780157150247"], "isbn_10": ["0157150240"], "publish_date": "1984", "latest_revision": 5, "key": "/books/OL10107051M", "authors": [{"key": "/authors/OL3372929A"}], "ocaid": "yourenglish303geor_0", "oclc_numbers": ["33446968"], "works": [{"key": "/works/OL9325811W"}], "type": {"key": "/type/edition"}, "subjects": ["English language", "Study and teaching", "Study and teaching (Elementary)", "Textbooks"], "revision": 5}
+/type/edition /books/OL10107088M 6 2022-12-04T11:53:19.474508 {"publishers": ["Holt, Rinehart & Winston, Inc."], "number_of_pages": 186, "covers": [9552780], "physical_format": "Hardcover", "key": "/books/OL10107088M", "ocaid": "readingtodaytomo0000unse_k1f1", "languages": [{"key": "/languages/eng"}], "source_records": ["ia:readingtodaytomo0000unse_k1f1", "promise:bwb_daily_pallets_2022-09-07"], "title": "Spotlights Level 6 (Reading Today and Tomorrw, Level 6)", "identifiers": {"librarything": ["7901883"]}, "isbn_13": ["9780157180503"], "isbn_10": ["0157180506"], "publish_date": "1989", "oclc_numbers": ["19986853"], "works": [{"key": "/works/OL20507646W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:O8-DHF-458"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T11:53:19.474508"}}
+/type/edition /books/OL10107192M 3 2010-04-13T05:05:10.489464 {"publishers": ["Harcourt"], "key": "/books/OL10107192M", "languages": [{"key": "/languages/eng"}], "number_of_pages": 108, "isbn_13": ["9780158030524"], "covers": [2325656], "physical_format": "Paperback", "isbn_10": ["0158030524"], "publish_date": "May 2000", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:05:10.489464"}, "authors": [{"key": "/authors/OL3372948A"}], "title": "Cvlt Research Edition Adult Version Manual", "latest_revision": 3, "works": [{"key": "/works/OL9325837W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10107407M 3 2010-04-13T05:05:10.489464 {"publishers": ["Harcourt Legal & Professional Pubns"], "languages": [{"key": "/languages/eng"}], "subtitle": "California Bar Performance Test Skills", "weight": "1.3 pounds", "title": "Gilbert Law Summaries", "isbn_10": ["0159001528"], "isbn_13": ["9780159001523"], "covers": [5033861], "edition_name": "5th Sprl edition", "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:05:10.489464"}, "latest_revision": 3, "key": "/books/OL10107407M", "authors": [{"key": "/authors/OL39155A"}], "publish_date": "September 1994", "works": [{"key": "/works/OL549803W"}], "type": {"key": "/type/edition"}, "subjects": ["Law"], "physical_dimensions": "11 x 9 x 0.8 inches", "revision": 3}
+/type/edition /books/OL10107709M 4 2022-12-04T14:19:38.520518 {"publishers": ["Harcourt Religious Publishers"], "physical_format": "Paperback", "classifications": {}, "title": "Walking by Faith Grade 5 Unit Assessment", "series": ["Walking by Faith: Grade 5"], "identifiers": {}, "isbn_13": ["9780159505250"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0159505259"], "publish_date": "March 2002", "key": "/books/OL10107709M", "authors": [{"key": "/authors/OL55026A"}], "works": [{"key": "/works/OL697845W"}], "type": {"key": "/type/edition"}, "subjects": ["Christian Education - General", "Religion - Educational Resources"], "local_id": ["urn:bwbsku:O8-DAO-902"], "source_records": ["promise:bwb_daily_pallets_2022-08-30"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T14:19:38.520518"}}
+/type/edition /books/OL10108209M 2 2010-08-12T15:41:50.884776 {"publishers": ["US Government Printing Office"], "number_of_pages": 192, "last_modified": {"type": "/type/datetime", "value": "2010-08-12T15:41:50.884776"}, "title": "Capitol, A Pictorial History of the Capitol and of the Congress (052-071-00687-7)", "physical_format": "Mass Market Paperback", "identifiers": {"librarything": ["549456"]}, "edition_name": "9 edition", "isbn_13": ["9780160063817"], "isbn_10": ["0160063817"], "publish_date": "1988", "key": "/books/OL10108209M", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "latest_revision": 2, "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10108217M 2 2009-12-15T00:43:08.603973 {"physical_format": "Paperback", "subtitle": "A National Perspective, 1987", "title": "Toxics Release Inventory", "isbn_10": ["0160064759"], "publishers": ["United States Government Printing"], "isbn_13": ["9780160064753"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:43:08.603973"}, "publish_date": "June 1989", "key": "/books/OL10108217M", "authors": [{"key": "/authors/OL3373205A"}], "latest_revision": 2, "subjects": ["Science/Mathematics"], "works": [{"key": "/works/OL9326112W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10108223M 2 2009-12-15T00:43:08.603973 {"publishers": ["Government printing office"], "title": "Residential Energy Consumption Survey", "isbn_10": ["0160066387"], "isbn_13": ["9780160066382"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:43:08.603973"}, "publish_date": "June 1989", "key": "/books/OL10108223M", "authors": [{"key": "/authors/OL3373208A"}], "latest_revision": 2, "subjects": ["Reference"], "works": [{"key": "/works/OL9326115W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL1010846M 11 2022-11-12T01:49:41.313115 {"publishers": ["Jossey-Bass"], "number_of_pages": 260, "subtitle": "a blueprint for business renewal", "isbn_10": ["0787903272"], "subject_place": ["United States"], "covers": [548179], "lc_classifications": ["HD58.8 .M526 1997", "HD58.8.M526 1997"], "key": "/books/OL1010846M", "authors": [{"key": "/authors/OL535557A"}], "ocaid": "leadingcorporate00mile", "publish_places": ["San Francisco"], "lccn": ["96051317"], "uri_descriptions": ["Contributor biographical information", "Publisher description", "Table of Contents"], "edition_name": "1st ed.", "pagination": "ix, 260 p. :", "source_records": ["ia:leadingcorporate00mile", "marc:marc_loc_2016/BooksAll.2016.part25.utf8:113641822:1210", "bwb:9780787903275", "promise:bwb_daily_pallets_2022-10-17"], "title": "Leading corporate transformation", "url": ["http://www.loc.gov/catdir/bios/wiley042/96051317.html", "http://www.loc.gov/catdir/description/wiley034/96051317.html", "http://www.loc.gov/catdir/toc/onix06/96051317.html"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 235-243) and index."}, "identifiers": {"goodreads": ["1549594"], "librarything": ["2296124"]}, "languages": [{"key": "/languages/eng"}], "dewey_decimal_class": ["658.1/6"], "subjects": ["National Semiconductor Corporation -- Management", "Southern Company -- Management", "Corporate turnarounds -- United States -- Case studies"], "publish_date": "1997", "publish_country": "cau", "series": ["The Jossey-Bass business & management series"], "by_statement": "Robert H. Miles.", "works": [{"key": "/works/OL3279399W"}], "type": {"key": "/type/edition"}, "uris": ["http://www.loc.gov/catdir/bios/wiley042/96051317.html", "http://www.loc.gov/catdir/description/wiley034/96051317.html", "http://www.loc.gov/catdir/toc/onix06/96051317.html"], "local_id": ["urn:bwbsku:O8-BAS-607"], "latest_revision": 11, "revision": 11, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-12T01:49:41.313115"}}
+/type/edition /books/OL10108722M 4 2011-04-25T21:31:25.800836 {"publishers": ["Supt. of Docs., U.S. G.P.O., distributor"], "physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2011-04-25T21:31:25.800836"}, "source_records": ["amazon:0160277280"], "title": "An Act to Amend Section 28(w) of the Mineral Leasing Act, and for Other Purposes", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780160277283"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0160277280"], "publish_date": "1990", "key": "/books/OL10108722M", "authors": [{"key": "/authors/OL18485A"}], "latest_revision": 4, "oclc_numbers": ["25106580"], "works": [{"key": "/works/OL418131W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10108756M 4 2011-04-27T09:06:28.141983 {"publishers": ["Supt. of Docs., U.S. G.P.O., distributor"], "physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T09:06:28.141983"}, "source_records": ["amazon:0160278724"], "title": "An Act Making Appropriations for the Departments of Veterans Affairs and Housing and Urban Development, and for Sundry Independent Agencies, Commissions, ... September 30, 1991, and for Other Purposes", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780160278723"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0160278724"], "publish_date": "1990", "key": "/books/OL10108756M", "authors": [{"key": "/authors/OL18485A"}], "latest_revision": 4, "oclc_numbers": ["23004093"], "works": [{"key": "/works/OL418060W"}], "type": {"key": "/type/edition"}, "subjects": ["Appropriations and expenditures, 1991", "United States"], "revision": 4}
+/type/edition /books/OL1010879M 8 2020-11-23T22:40:28.525237 {"other_titles": ["America's top ten national parks", "National parks"], "publishers": ["Blackbirch Press"], "identifiers": {"librarything": ["1789948"], "goodreads": ["3619320"]}, "description": {"type": "/type/text", "value": "Presents facts and statistics on ten noted national parks: Great Smoky Mountains, Grand Canyon, Yosemite, Yellowstone, Rocky Mountain, Olympic, Grand Teton, Acadia, Zion, and Mammoth Cave."}, "isbn_10": ["1567111904"], "series": ["America's top 10"], "covers": [808735], "lc_classifications": ["E160 .T46 1998"], "latest_revision": 8, "key": "/books/OL1010879M", "authors": [{"key": "/authors/OL264242A"}], "ocaid": "americastop10nat00tesa", "publish_places": ["Woodbridge, Conn"], "languages": [{"key": "/languages/eng"}], "pagination": "24 p. :", "source_records": ["ia:americastop10nat00tesa", "marc:marc_loc_2016/BooksAll.2016.part25.utf8:113673975:1152"], "title": "America's top 10 national parks", "dewey_decimal_class": ["917.304/929"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 23) and index."}, "number_of_pages": 24, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "edition_name": "1st ed.", "lccn": ["96051453"], "subjects": ["National parks and reserves -- United States -- Miscellanea -- Juvenile literature.", "National parks and reserves -- Miscellanea."], "publish_date": "1998", "publish_country": "ctu", "last_modified": {"type": "/type/datetime", "value": "2020-11-23T22:40:28.525237"}, "subject_place": ["United States"], "by_statement": "by Jenny Tesar.", "oclc_numbers": ["36041962"], "works": [{"key": "/works/OL2122561W"}], "type": {"key": "/type/edition"}, "revision": 8}
+/type/edition /books/OL10108827M 4 2011-04-22T21:33:46.419865 {"publishers": ["Supt. of Docs., U.S. G.P.O., distributor"], "physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2011-04-22T21:33:46.419865"}, "source_records": ["amazon:0160283337"], "title": "An Act to Protect and Conserve the Continent of Antarctica, and for Other Purposes", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780160283338"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0160283337"], "publish_date": "1990", "key": "/books/OL10108827M", "authors": [{"key": "/authors/OL18485A"}], "latest_revision": 4, "oclc_numbers": ["23291796"], "works": [{"key": "/works/OL419045W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10109494M 4 2010-08-03T17:19:24.450750 {"publishers": ["For sale by the U.S. G.P.O., Supt. of Docs"], "languages": [{"key": "/languages/eng"}], "subtitle": "A nation responds to drug use", "last_modified": {"type": "/type/datetime", "value": "2010-08-03T17:19:24.450750"}, "source_records": ["amazon:0160360536"], "title": "National drug control strategy", "number_of_pages": 215, "isbn_13": ["9780160360534"], "covers": [5033998], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Unknown Binding", "isbn_10": ["0160360536"], "publish_date": "1992", "key": "/books/OL10109494M", "authors": [{"key": "/authors/OL18485A"}], "latest_revision": 4, "works": [{"key": "/works/OL76088W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10110048M 6 2023-01-06T11:15:23.114519 {"publishers": ["Alcohol, Tobacco, and Firearms Bureau"], "physical_format": "Loose leaf", "subtitle": "Guidebook", "title": "Importation and Verification of Firearms, Ammunition and Implements of War", "number_of_pages": 72, "isbn_13": ["9780160427596"], "covers": [2325771], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0160427592"], "publish_date": "December 3, 1998", "key": "/books/OL10110048M", "oclc_numbers": ["40815586"], "works": [{"key": "/works/OL9326748W"}], "type": {"key": "/type/edition"}, "subjects": ["Hunting - General", "Shooting", "Sports", "Sports & Recreation / Shooting", "Sports & Recreation"], "source_records": ["marc:marc_columbia/Columbia-extract-20221130-008.mrc:31000626:1696"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2023-01-06T11:15:23.114519"}}
+/type/edition /books/OL10110268M 3 2010-04-13T05:05:10.489464 {"publishers": ["Office of the Federal Register"], "number_of_pages": 1012, "weight": "4 pounds", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0160454301"], "title": "Public Papers of the Presidents of the United States, William J. Clinton, 1993, Book 2, August 1 to December 31, 1993 (Public Papers of the Presidents of the United States)", "isbn_13": ["9780160454301"], "covers": [2325785], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:05:10.489464"}, "latest_revision": 3, "key": "/books/OL10110268M", "authors": [{"key": "/authors/OL2661622A"}], "publish_date": "March 30, 1995", "works": [{"key": "/works/OL7995175W"}], "type": {"key": "/type/edition"}, "subjects": ["Government - Executive Branch", "Presidents & Heads of State", "Politics / Current Events", "Reference"], "physical_dimensions": "10.2 x 7.2 x 2 inches", "revision": 3}
+/type/edition /books/OL10110322M 4 2010-08-03T15:07:03.436355 {"publishers": ["For sale by the U.S. G.P.O., Supt. of Docs., Congressional Sales Office"], "languages": [{"key": "/languages/eng"}], "subtitle": "Hearings before a subcommittee of the Committee on Appropriations, United States Senate, One ... courts, Office of the Mayor (S. hrg)", "last_modified": {"type": "/type/datetime", "value": "2010-08-03T15:07:03.436355"}, "source_records": ["amazon:0160465931"], "title": "District of Columbia appropriations for fiscal year 1995", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780160465932"], "covers": [5033961], "physical_format": "Unknown Binding", "isbn_10": ["0160465931"], "publish_date": "1995", "key": "/books/OL10110322M", "authors": [{"key": "/authors/OL18485A"}], "latest_revision": 4, "works": [{"key": "/works/OL422478W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10110343M 4 2011-04-28T18:04:44.753604 {"publishers": ["U.S. Government Printing Office"], "subtitle": "As Amended Through April 17", "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-28T18:04:44.753604"}, "latest_revision": 4, "key": "/books/OL10110343M", "authors": [{"key": "/authors/OL18485A"}], "subjects": ["Civil Procedure", "Legal Reference / Law Profession"], "isbn_13": ["9780160473951"], "source_records": ["amazon:0160473950"], "title": "Compilation of Intelligence Laws and Related Laws and Executive Orders of Interest to the National Intelligence Community", "number_of_pages": 821, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0160473950"], "publish_date": "January 1995", "oclc_numbers": ["33017624"], "works": [{"key": "/works/OL75974W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10111308M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Paperback", "subtitle": "A Report to Congress by the Commission on Affordable Housing And Health Facility Needs for Seniors in the 21st Century", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Bernan Press"], "number_of_pages": 491, "isbn_13": ["9780160510885"], "isbn_10": ["0160510880"], "publish_date": "November 20, 2002", "key": "/books/OL10111308M", "title": "Quiet Crisis in America", "type": {"key": "/type/edition"}, "subjects": ["Reference - General", "Business & Economics", "Business / Economics / Finance", "Business/Economics"], "revision": 1}
+/type/edition /books/OL10111309M 6 2023-01-06T12:25:37.623534 {"publishers": ["[Supt. of Docs., U.S. G.P.O., distributor"], "subtitle": "As amended through the first session of the 107th Congress", "physical_format": "Unknown Binding", "key": "/books/OL10111309M", "authors": [{"key": "/authors/OL18485A"}], "subjects": ["United States", "Maritime law"], "isbn_13": ["9780160510908"], "source_records": ["amazon:0160510902", "marc:marc_loc_2016/BooksAll.2016.part30.utf8:54912530:1011", "marc:marc_columbia/Columbia-extract-20221130-008.mrc:44548056:1377"], "title": "The Merchant Marine Act, 1936, the Maritime Security Act of 1996, the Shipping Act of 1984, and related acts", "number_of_pages": 528, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0160510902"], "publish_date": "2002", "oclc_numbers": ["49909842"], "works": [{"key": "/works/OL76143W"}], "type": {"key": "/type/edition"}, "lccn": ["2002410183"], "lc_classifications": ["KF2602 2002"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2023-01-06T12:25:37.623534"}}
+/type/edition /books/OL10111500M 3 2010-08-03T16:06:53.920001 {"publishers": ["For sale by the U.S. G.P.O., Supt. of Docs., Congressional Sales Office"], "physical_format": "Unknown Binding", "subtitle": "Hearing before the Committee on Agriculture, Nutrition, and Forestry, United States Senate, One ... of Agriculture, August 5, 1994 (S. hrg)", "last_modified": {"type": "/type/datetime", "value": "2010-08-03T16:06:53.920001"}, "source_records": ["amazon:0160521041"], "title": "Nominations hearing of Jose Amador and Roger C. Viadero", "number_of_pages": 66, "isbn_13": ["9780160521041"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0160521041"], "publish_date": "1995", "key": "/books/OL10111500M", "authors": [{"key": "/authors/OL18485A"}], "latest_revision": 3, "works": [{"key": "/works/OL430311W"}], "type": {"key": "/type/edition"}, "subjects": ["Amador, Jose Manuel", "Viadero, Roger Charles"], "revision": 3}
+/type/edition /books/OL10111532M 2 2011-04-28T18:33:06.760974 {"publishers": ["National Technical Information Service [distributor]"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2011-04-28T18:33:06.760974"}, "title": "Fracture behavior of short circumferentially surface-cracked pipe", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780160530524"], "physical_format": "Unknown Binding", "isbn_10": ["0160530520"], "publish_date": "1995", "key": "/books/OL10111532M", "latest_revision": 2, "oclc_numbers": ["34714500"], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10111830M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Government Printing Office"], "title": "State Energy Data report 1997 Consumption Estimates", "isbn_13": ["9780160590474"], "isbn_10": ["0160590477"], "publish_date": "October 1, 1999", "key": "/books/OL10111830M", "authors": [{"key": "/authors/OL3374022A"}, {"key": "/authors/OL3374023A"}, {"key": "/authors/OL3373998A"}, {"key": "/authors/OL3373996A"}], "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL1011184M 5 2020-11-23T23:33:24.675475 {"publishers": ["The Association"], "table_of_contents": [{"title": "v. 1. Executive overview", "type": {"key": "/type/toc_item"}, "level": 0}, {"title": "v. 2. Technical considerations.", "type": {"key": "/type/toc_item"}, "level": 0}], "isbn_10": ["0917599209"], "lc_classifications": ["T58.64 .M384 1996"], "latest_revision": 5, "key": "/books/OL1011184M", "authors": [{"key": "/authors/OL545198A"}], "publish_places": ["Arlington, Va"], "contributions": ["McNaughton, Warren P. 1951-", "National Rural Electric Cooperative Association. Rural Electric Research."], "pagination": "2 v. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part25.utf8:113942586:1175"], "title": "Enterprise-wide data integration in a distribution cooperative", "dewey_decimal_class": ["333.793/2/0684"], "notes": {"type": "/type/text", "value": "Includes bibliographical references and index.\n\"Rural Electric Research (RER) project 95-12.\""}, "identifiers": {"goodreads": ["4914889"]}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["96051766"], "subjects": ["Information resources management.", "Database management."], "publish_date": "1996", "publish_country": "vau", "last_modified": {"type": "/type/datetime", "value": "2020-11-23T23:33:24.675475"}, "by_statement": "prepared by Gary A. McNaughton and Warren P. McNaughton for National Rural Electric Cooperative Association, Rural Electric Research.", "oclc_numbers": ["36017320"], "works": [{"key": "/works/OL3356281W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10112381M 5 2020-09-12T19:23:39.859042 {"publishers": ["For sale by the U.S. G.P.O., Supt. of Docs., Congressional Sales Office"], "physical_format": "Unknown Binding", "subtitle": "Hearing before the Committee on Agriculture, House of Representatives, One ... Sixth Congress, second session, May 17, 2000", "last_modified": {"type": "/type/datetime", "value": "2020-09-12T19:23:39.859042"}, "source_records": ["amazon:0160607876", "marc:marc_loc_2016/BooksAll.2016.part01.utf8:110018778:1448"], "title": "The administration's proposal for permanent normal trade relations with China", "number_of_pages": 95, "isbn_13": ["9780160607875"], "covers": [5310425, 5035301], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0160607876"], "publish_date": "2000", "key": "/books/OL10112381M", "authors": [{"key": "/authors/OL18485A"}], "latest_revision": 5, "works": [{"key": "/works/OL417532W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10112492M 3 2010-08-03T15:49:52.567213 {"publishers": ["[Congressional Sales Office, Supt. of Docs., U.S. G.P.O., distributor]"], "physical_format": "Unknown Binding", "subtitle": "Hearing before the Subcommittee on Telecommunications, Trade, and ... on H.R. 3100 and H.R. 3180, June 13, 2000", "last_modified": {"type": "/type/datetime", "value": "2010-08-03T15:49:52.567213"}, "source_records": ["amazon:0160610443"], "title": "The Know Your Caller Act of 1999 and the Telemarketing Victim Protection Act of 1999", "number_of_pages": 94, "isbn_13": ["9780160610448"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0160610443"], "publish_date": "2000", "key": "/books/OL10112492M", "authors": [{"key": "/authors/OL18485A"}], "latest_revision": 3, "works": [{"key": "/works/OL428216W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10112795M 4 2012-12-01T19:53:22.510151 {"publishers": ["United States Congress"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2012-12-01T19:53:22.510151"}, "title": "Congressional Record, V. 137, Pt. 2, January 15, 1991 to February 5, 1991", "number_of_pages": 1408, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780160625046"], "isbn_10": ["0160625041"], "publish_date": "July 11, 1997", "key": "/books/OL10112795M", "authors": [{"key": "/authors/OL2799028A"}], "latest_revision": 4, "works": [{"key": "/works/OL7995372W"}], "type": {"key": "/type/edition"}, "subjects": ["Government - Legislative Branch", "Political Science / Congress", "Politics - Current Events"], "revision": 4}
+/type/edition /books/OL1011312M 12 2021-09-17T23:27:24.900358 {"publishers": ["Jossey-Bass"], "number_of_pages": 320, "subtitle": "fresh thinking on the management of IT-based organizational transformation", "ia_box_id": ["IA101115"], "isbn_10": ["0787903582"], "series": ["Jossey-Bass business & management series"], "covers": [6618317, 548194], "lc_classifications": ["HD30.213 .S276 1997", "HD30.213.S276 1997"], "key": "/books/OL1011312M", "authors": [{"key": "/authors/OL6924522A"}, {"key": "/authors/OL6924523A"}], "ocaid": "stepstofuturefre00saue", "publish_places": ["San Francisco"], "contributions": ["Sauer, Christopher, 1953-", "Yetton, Philip W., 1943-"], "lccn": ["96051899"], "uri_descriptions": ["Contributor biographical information", "Publisher description", "Table of Contents"], "edition_name": "1st ed.", "pagination": "xxv, 320 p. :", "source_records": ["ia:stepstofuturefre00saue", "marc:marc_loc_2016/BooksAll.2016.part25.utf8:114062339:1239", "bwb:9780787903589"], "title": "Steps to the future", "url": ["http://www.loc.gov/catdir/bios/wiley043/96051899.html", "http://www.loc.gov/catdir/description/wiley035/96051899.html", "http://www.loc.gov/catdir/toc/onix07/96051899.html"], "notes": {"type": "/type/text", "value": "Includes bibliographical references and index."}, "identifiers": {"goodreads": ["4856811"], "librarything": ["1916628"]}, "languages": [{"key": "/languages/eng"}], "dewey_decimal_class": ["658.4/038/011"], "subjects": ["Management information systems", "Information technology", "Organizational change"], "publish_date": "1997", "publish_country": "cau", "by_statement": "Christopher Sauer, Philip W. Yetton, and associates.", "works": [{"key": "/works/OL15828348W"}], "type": {"key": "/type/edition"}, "uris": ["http://www.loc.gov/catdir/bios/wiley043/96051899.html", "http://www.loc.gov/catdir/description/wiley035/96051899.html", "http://www.loc.gov/catdir/toc/onix07/96051899.html"], "latest_revision": 12, "revision": 12, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2021-09-17T23:27:24.900358"}}
+/type/edition /books/OL10113336M 4 2020-12-05T01:51:18.412929 {"publishers": ["[Congressional Sales Office, Supt. of Docs., U.S. G.P.O., distributor]"], "physical_format": "Unknown Binding", "subtitle": "Hearing before the Subcommittee on Aviation of the Committee on Transportation and Infrastructure, House ... Congress, first session, October 12, 1999", "source_records": ["amazon:0160655536", "marc:marc_loc_2016/BooksAll.2016.part29.utf8:95581500:1314"], "title": "Loss of air service between Pittsburgh and London", "number_of_pages": 101, "isbn_13": ["9780160655531"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0160655536"], "publish_date": "1999", "key": "/books/OL10113336M", "authors": [{"key": "/authors/OL18485A"}], "works": [{"key": "/works/OL428676W"}], "type": {"key": "/type/edition"}, "lccn": ["2001387064"], "lc_classifications": ["KF27 .P89624 1999a"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-05T01:51:18.412929"}}
+/type/edition /books/OL10113367M 6 2011-04-27T19:07:26.894492 {"publishers": ["[Congressional Sales Office, Supt. of Docs., U.S. G.P.O., distributor]"], "identifiers": {"goodreads": ["3255004"]}, "subtitle": "Hearing before the Committee on Finance, United States Senate, One Hundred Seventh Congress, first session, ... Affairs, February 28, 2001 (S. hrg)", "physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T19:07:26.894492"}, "latest_revision": 6, "key": "/books/OL10113367M", "authors": [{"key": "/authors/OL18485A"}], "subjects": ["Duncan, John Mitchell", "Weinberger, Mark Alan"], "languages": [{"key": "/languages/eng"}], "source_records": ["amazon:0160656575"], "title": "Nominations of Mark A. Weinberger and John Duncan", "number_of_pages": 25, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780160656576"], "isbn_10": ["0160656575"], "publish_date": "2001", "oclc_numbers": ["46957119"], "works": [{"key": "/works/OL430415W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL10113751M 3 2010-08-03T14:26:25.139044 {"publishers": ["For sale by the Supt. of Docs., U.S. G.P.O., [Congressional Sales Office]"], "physical_format": "Unknown Binding", "subtitle": "Hearing of the Committee on Health, Education, Labor, and Pensions, United States Senate, One Hundred Seventh ... health services, July 11, 2001 (S. hrg)", "last_modified": {"type": "/type/datetime", "value": "2010-08-03T14:26:25.139044"}, "source_records": ["amazon:0160666341"], "title": "Achieving parity for mental health treatment", "number_of_pages": 73, "isbn_13": ["9780160666346"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0160666341"], "publish_date": "2001", "key": "/books/OL10113751M", "authors": [{"key": "/authors/OL18485A"}], "latest_revision": 3, "works": [{"key": "/works/OL417388W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10113843M 5 2023-01-06T12:14:43.432061 {"publishers": ["For sale by the Supt. of Docs., U.S. G.P.O., [Congressional Sales Office]"], "physical_format": "Unknown Binding", "subtitle": "Hearing before the Subcommittee on Capital Markets, Insurance, and Government Sponsored Enterprises of the Committee ... Congress, first session, July 11, 2001", "source_records": ["amazon:0160669006", "marc:marc_loc_2016/BooksAll.2016.part30.utf8:818222:2178", "marc:marc_columbia/Columbia-extract-20221130-008.mrc:43566099:2296"], "title": "Reforming Fannie Mae and Freddie Mac", "number_of_pages": 243, "isbn_13": ["9780160669002"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0160669006"], "publish_date": "2001", "key": "/books/OL10113843M", "authors": [{"key": "/authors/OL18485A"}], "works": [{"key": "/works/OL432827W"}], "type": {"key": "/type/edition"}, "subjects": ["Finance", "Government-sponsored enterprises", "United States"], "lccn": ["2002320649"], "lc_classifications": ["KF27 .B515 2001c"], "oclc_numbers": ["49521423"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2023-01-06T12:14:43.432061"}}
+/type/edition /books/OL10114179M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "subtitle": "Volume 1, Charts, East Coast of North and South America", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["USGOV"], "title": "Summary of Corrections", "isbn_13": ["9780160675560"], "isbn_10": ["0160675561"], "publish_date": "2002", "key": "/books/OL10114179M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10114935M 6 2020-12-07T14:08:26.913013 {"publishers": ["For sale by the Supt. of Docs., U.S. G.P.O., [Congressional Sales Office]"], "physical_format": "Unknown Binding", "subtitle": "Hearing before the Subcommittee on Strategic of the ... first session, March 28, 2001 (S. hrg)", "source_records": ["amazon:0160690072", "marc:marc_loc_2016/BooksAll.2016.part30.utf8:105974107:1595"], "title": "Report of the Commission to Assess United States National Security Space Management and Organization", "identifiers": {"goodreads": ["3183138"]}, "isbn_13": ["9780160690075"], "languages": [{"key": "/languages/eng"}], "number_of_pages": 260, "isbn_10": ["0160690072"], "publish_date": "2002", "key": "/books/OL10114935M", "authors": [{"key": "/authors/OL18485A"}], "works": [{"key": "/works/OL433043W"}], "type": {"key": "/type/edition"}, "lccn": ["2002485922"], "lc_classifications": ["KF26 .A778 2001a"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-07T14:08:26.913013"}}
+/type/edition /books/OL10115235M 3 2010-08-03T17:21:36.143178 {"publishers": ["Government Printing Office"], "physical_format": "Hardcover", "subtitle": "Hearings Before a Subcommittee of the Committee on Appropriations, House of R", "last_modified": {"type": "/type/datetime", "value": "2010-08-03T17:21:36.143178"}, "source_records": ["amazon:0160698421"], "title": "Department of the Interior and Related Agencies Appropriations for 2004", "number_of_pages": 8, "isbn_13": ["9780160698422"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0160698421"], "publish_date": "January 2003", "key": "/books/OL10115235M", "authors": [{"key": "/authors/OL18485A"}], "latest_revision": 3, "works": [{"key": "/works/OL76158W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10115364M 5 2023-01-07T15:17:44.562602 {"publishers": ["Government Printing Office"], "physical_format": "Hardcover", "source_records": ["amazon:0160700884", "marc:marc_loc_2016/BooksAll.2016.part31.utf8:52338606:2196", "marc:marc_columbia/Columbia-extract-20221130-009.mrc:212417961:2843"], "title": "Nominations of Francisco Sanchez, to Be Assistant Secretary for Aviation and International Affairs for the Department of Transportation; And Katherine", "number_of_pages": 79, "isbn_13": ["9780160700880"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0160700884"], "publish_date": "January 2003", "key": "/books/OL10115364M", "authors": [{"key": "/authors/OL18485A"}], "works": [{"key": "/works/OL430357W"}], "type": {"key": "/type/edition"}, "lccn": ["2003431627"], "lc_classifications": ["KF26 .C69 2000e"], "oclc_numbers": ["52198846"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2023-01-07T15:17:44.562602"}}
+/type/edition /books/OL10115761M 7 2023-01-08T01:13:27.744738 {"publishers": ["Government Printing Office"], "physical_format": "Hardcover", "subtitle": "Hearing Before the Committee on Government Reform, House of Rep", "source_records": ["amazon:0160706521", "marc:marc_loc_2016/BooksAll.2016.part31.utf8:6359018:1678", "marc:marc_columbia/Columbia-extract-20221130-009.mrc:302519215:1843"], "title": "Budget Autonomy for the District of Columbia: Restoring Trust in Our Nation's Capital", "identifiers": {"goodreads": ["291335"]}, "isbn_13": ["9780160706523"], "languages": [{"key": "/languages/eng"}], "number_of_pages": 63, "isbn_10": ["0160706521"], "publish_date": "January 2003", "key": "/books/OL10115761M", "authors": [{"key": "/authors/OL18485A"}], "works": [{"key": "/works/OL420060W"}], "type": {"key": "/type/edition"}, "lccn": ["2003373726"], "lc_classifications": ["KF27 .G6 2003q"], "oclc_numbers": ["53202279"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2023-01-08T01:13:27.744738"}}
+/type/edition /books/OL10116304M 4 2020-12-10T19:38:02.960334 {"publishers": ["Government Printing Office"], "physical_format": "Hardcover", "subtitle": "Hearing Before the Subcommittee on Na", "source_records": ["amazon:0160715822", "marc:marc_loc_2016/BooksAll.2016.part32.utf8:54478477:2239"], "title": "Emerging Threats: Assessing Dod Control of Surplus Chemical and Biological Equipment and Material", "number_of_pages": 154, "isbn_13": ["9780160715822"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0160715822"], "publish_date": "January 2004", "key": "/books/OL10116304M", "authors": [{"key": "/authors/OL18485A"}], "works": [{"key": "/works/OL423022W"}], "type": {"key": "/type/edition"}, "lccn": ["2004438092"], "lc_classifications": ["KF27 .G6687 2003t"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-10T19:38:02.960334"}}
+/type/edition /books/OL10116327M 5 2020-12-10T15:15:45.682581 {"publishers": ["Government Printing Office"], "physical_format": "Hardcover", "subtitle": "Hearing Before the Joint Economic Committee, Congress of the United States, One Hundred Eighth Congress, First Session", "source_records": ["marc:marc_western_washington_univ/wwu_bibs.mrc_revrev.mrc:832681950:1553", "marc:marc_loc_2016/BooksAll.2016.part32.utf8:28880623:1674"], "title": "Financing Our Nation's Roads", "number_of_pages": 58, "isbn_13": ["9780160716089"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["016071608X"], "publish_date": "January 2004", "key": "/books/OL10116327M", "authors": [{"key": "/authors/OL2661675A"}, {"key": "/authors/OL18485A"}], "works": [{"key": "/works/OL15034276W"}], "type": {"key": "/type/edition"}, "lccn": ["2004398867"], "lc_classifications": ["KF25 .E2 2003i"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-10T15:15:45.682581"}}
+/type/edition /books/OL10116574M 3 2020-12-10T22:13:42.892208 {"publishers": ["Government Printing Office"], "languages": [{"key": "/languages/eng"}], "subtitle": "Hearing Before the Subcommittee on Immigrati", "title": "To Prescribe the Oath of Renunciation and Allegiance for Purposes of the Immigration and Nationality ACT", "number_of_pages": 32, "isbn_13": ["9780160719349"], "physical_format": "Hardcover", "isbn_10": ["0160719348"], "publish_date": "January 2004", "key": "/books/OL10116574M", "works": [{"key": "/works/OL11074195W"}], "type": {"key": "/type/edition"}, "lccn": ["2004451153"], "lc_classifications": ["KF27 .J8645 2004f"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part32.utf8:65792276:2086"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-10T22:13:42.892208"}}
+/type/edition /books/OL10116728M 3 2010-04-13T05:11:19.596979 {"publishers": ["Office of the Federal Register"], "languages": [{"key": "/languages/eng"}], "weight": "1 pounds", "title": "Code of Federal Regulations, Title 45, Public Welfare, Pt. 200-499, Revised as of October 1, 2004", "isbn_10": ["0160721776"], "number_of_pages": 430, "isbn_13": ["9780160721779"], "covers": [2326161], "edition_name": "Revised edition", "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:11:19.596979"}, "latest_revision": 3, "key": "/books/OL10116728M", "authors": [{"key": "/authors/OL2661622A"}], "publish_date": "January 24, 2005", "works": [{"key": "/works/OL7994977W"}], "type": {"key": "/type/edition"}, "subjects": ["Allied Health Services - Radiologic & Ultrasound Technology", "Criminal Law - General", "Instruments & Supplies", "Social Science / Human Services", "Reference - General", "Business & Economics", "Legal Reference / Law Profession", "Business/Economics"], "physical_dimensions": "9 x 5.9 x 0.7 inches", "revision": 3}
+/type/edition /books/OL10116769M 3 2010-08-03T14:55:55.801370 {"publishers": ["Bernan Press"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-08-03T14:55:55.801370"}, "source_records": ["amazon:0160722608"], "title": "Compilation Of Maritime Laws, April 2004", "number_of_pages": 641, "isbn_13": ["9780160722608"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0160722608"], "publish_date": "May 5, 2004", "key": "/books/OL10116769M", "authors": [{"key": "/authors/OL18485A"}], "latest_revision": 3, "works": [{"key": "/works/OL421035W"}], "type": {"key": "/type/edition"}, "subjects": ["Taxation", "Reference - General", "Business & Economics", "Legal Reference / Law Profession", "Business/Economics"], "revision": 3}
+/type/edition /books/OL10116888M 5 2012-02-20T21:19:01.335890 {"publishers": ["Internal Revenue Service"], "identifiers": {"goodreads": ["510416"]}, "last_modified": {"type": "/type/datetime", "value": "2012-02-20T21:19:01.335890"}, "languages": [{"key": "/languages/eng"}], "number_of_pages": 2, "isbn_13": ["9780160725753"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0160725755"], "publish_date": "November 8, 2005", "key": "/books/OL10116888M", "authors": [{"key": "/authors/OL294947A"}], "title": "Profit or Loss From Business, IRS Tax Form 1040, Schedule C, 2005", "latest_revision": 5, "works": [{"key": "/works/OL7995686W"}], "type": {"key": "/type/edition"}, "subjects": ["Personal Finance - Taxation", "Business & Economics / Personal Finance / Taxation", "Business / Economics / Finance", "Consumer Finance"], "revision": 5}
+/type/edition /books/OL10117027M 4 2022-12-31T20:48:52.479601 {"publishers": ["Not Avail"], "languages": [{"key": "/languages/eng"}], "subtitle": "Hearing Before the Committee on Energy and Natural Resources, United States Senate, One Hundred Ninth Congress, First", "title": "Offshore Hydrocarbon Production", "number_of_pages": 87, "isbn_13": ["9780160728181"], "physical_format": "Hardcover", "isbn_10": ["0160728185"], "publish_date": "January 2005", "key": "/books/OL10117027M", "works": [{"key": "/works/OL10836281W"}], "type": {"key": "/type/edition"}, "lccn": ["2006360319"], "lc_classifications": ["KF26 .E55 2005h"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part33.utf8:222778079:2099", "marc:marc_columbia/Columbia-extract-20221130-011.mrc:271737397:2789"], "oclc_numbers": ["61445301"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-31T20:48:52.479601"}}
+/type/edition /books/OL10117061M 7 2011-04-29T16:18:14.605822 {"publishers": ["Office of the Federal Register"], "number_of_pages": 570, "weight": "1.4 pounds", "covers": [2326257], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T16:18:14.605822"}, "latest_revision": 7, "key": "/books/OL10117061M", "authors": [{"key": "/authors/OL2661622A"}], "subjects": ["Allied Health Services - Radiologic & Ultrasound Technology", "Criminal Law - General", "Instruments & Supplies", "Law / Administrative Law & Regulatory Practice", "General", "Law", "Legal Reference / Law Profession"], "edition_name": "1st edition", "languages": [{"key": "/languages/eng"}], "classifications": {}, "title": "Code of Federal Regulations, Title 46, Shipping, Pt. 166-199, Revised as of October 1, 2005", "notes": {"type": "/type/text", "value": "Code of Federal Regulations"}, "identifiers": {"goodreads": ["1225177"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780160728716"], "isbn_10": ["0160728711"], "publish_date": "December 8, 2005", "oclc_numbers": ["150344648"], "works": [{"key": "/works/OL7994993W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 1 inches", "revision": 7}
+/type/edition /books/OL10117230M 4 2010-04-24T17:55:11.075633 {"publishers": ["Congressional Budget Office"], "number_of_pages": 183, "last_modified": {"type": "/type/datetime", "value": "2010-04-24T17:55:11.075633"}, "title": "The Budget and Economic Outlook, Fiscal Years 2006 to 2015", "contributions": ["Christine Bogusz (Editor)", "Congressional Budget Office (U.S.) (Producer)"], "identifiers": {"goodreads": ["2751456"]}, "isbn_13": ["9780160732607"], "covers": [2326318], "physical_format": "Paperback", "isbn_10": ["0160732603"], "publish_date": "February 4, 2005", "key": "/books/OL10117230M", "latest_revision": 4, "subjects": ["Government - Executive Branch", "Political Science / Government / Executive Branch", "Politics - Current Events"], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10117527M 4 2020-12-10T22:18:20.949810 {"publishers": ["Government Printing Office"], "physical_format": "Hardcover", "subtitle": "Hearing Before the Subcommittee on Commerce, Trade, and Consumer Protection of the Committee on Energy and C", "source_records": ["amazon:0160737273", "marc:marc_loc_2016/BooksAll.2016.part32.utf8:66521624:1760"], "title": "FASB Proposals on Stock Option Expensing", "number_of_pages": 147, "isbn_13": ["9780160737275"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0160737273"], "publish_date": "January 2004", "key": "/books/OL10117527M", "authors": [{"key": "/authors/OL18485A"}], "works": [{"key": "/works/OL423780W"}], "type": {"key": "/type/edition"}, "lccn": ["2004451720"], "lc_classifications": ["KF27 .E5515 2004d"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-10T22:18:20.949810"}}
+/type/edition /books/OL10117670M 4 2011-01-10T21:59:32.446981 {"publishers": ["National Archives and Records Administra"], "identifiers": {}, "weight": "2.1 pounds", "covers": [2326361], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-01-10T21:59:32.446981"}, "latest_revision": 4, "key": "/books/OL10117670M", "authors": [{"key": "/authors/OL2661622A"}], "subjects": ["Allied Health Services - Radiologic & Ultrasound Technology", "Criminal Law - General", "Instruments & Supplies", "Law / Military", "Legal Reference / Law Profession"], "edition_name": "1.00 edition", "languages": [{"key": "/languages/eng"}], "classifications": {}, "title": "Code of Federal Regulations, Title 32, National Defense, Pt. 1-190, Revised as of July 1, 2005", "notes": {"type": "/type/text", "value": "Code of Federal Regulations"}, "number_of_pages": 880, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780160739224"], "isbn_10": ["0160739225"], "publish_date": "September 7, 2005", "works": [{"key": "/works/OL7994786W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.2 x 6 x 1.2 inches", "revision": 4}
+/type/edition /books/OL10118015M 5 2022-12-31T11:54:48.424053 {"publishers": ["Government Printing Office"], "physical_format": "Hardcover", "subtitle": "Hearing Before", "source_records": ["amazon:0160744016", "marc:marc_loc_2016/BooksAll.2016.part32.utf8:267501762:2144", "marc:marc_columbia/Columbia-extract-20221130-011.mrc:204686450:2120"], "title": "Health Informatics: What Is the Prescription for Success in Intergovernmental Information Sharing and Emergency Response?", "number_of_pages": 157, "isbn_13": ["9780160744013"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0160744016"], "publish_date": "January 2005", "key": "/books/OL10118015M", "authors": [{"key": "/authors/OL18485A"}], "works": [{"key": "/works/OL425479W"}], "type": {"key": "/type/edition"}, "lccn": ["2005414770"], "lc_classifications": ["KF27 .G679 2004o"], "oclc_numbers": ["58551163"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-31T11:54:48.424053"}}
+/type/edition /books/OL10118036M 3 2020-12-15T03:47:51.624477 {"publishers": ["Not Avail"], "languages": [{"key": "/languages/eng"}], "subtitle": "Hearing Before the Subcommittee on Railroads of the Committee on Transportation and Infrastructure,", "title": "National Rail Infrastructure Financing Proposals", "number_of_pages": 208, "isbn_13": ["9780160744327"], "physical_format": "Hardcover", "isbn_10": ["0160744326"], "publish_date": "January 2005", "key": "/books/OL10118036M", "works": [{"key": "/works/OL11075907W"}], "type": {"key": "/type/edition"}, "lccn": ["2006415510"], "lc_classifications": ["KF27 .P8965 2003d"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part33.utf8:267406684:1698"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-15T03:47:51.624477"}}
+/type/edition /books/OL10118260M 4 2022-12-31T16:47:13.362954 {"publishers": ["Not Avail"], "languages": [{"key": "/languages/eng"}], "subtitle": "Hearing Before the Committee on Commerce, Science, and Transportation, United States Senate, One Hundred Eighth Co", "title": "Transportation and Border Security", "number_of_pages": 78, "isbn_13": ["9780160747496"], "physical_format": "Hardcover", "isbn_10": ["016074749X"], "publish_date": "January 2005", "key": "/books/OL10118260M", "works": [{"key": "/works/OL10842734W"}], "type": {"key": "/type/edition"}, "lccn": ["2005410757"], "lc_classifications": ["KF26 .C69 2003b"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part32.utf8:263624882:1938", "marc:marc_columbia/Columbia-extract-20221130-011.mrc:237216723:1926"], "oclc_numbers": ["60679230"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-31T16:47:13.362954"}}
+/type/edition /books/OL10118262M 4 2011-04-28T22:39:50.550318 {"publishers": ["Government Printing Office"], "physical_format": "Hardcover", "subtitle": "Hearings Before a Subcommittee of the Comm", "last_modified": {"type": "/type/datetime", "value": "2011-04-28T22:39:50.550318"}, "source_records": ["amazon:0160747511"], "title": "Agriculture, Rural Development, Food and Drug Administration, and Related Agencies Appropriations for 2006", "number_of_pages": 8, "isbn_13": ["9780160747519"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0160747511"], "publish_date": "January 2005", "key": "/books/OL10118262M", "authors": [{"key": "/authors/OL18485A"}], "latest_revision": 4, "oclc_numbers": ["58918925"], "works": [{"key": "/works/OL76152W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10118697M 4 2022-12-29T07:52:13.133928 {"publishers": ["Not Avail"], "languages": [{"key": "/languages/eng"}], "subtitle": "Heari", "title": "Departments of Transportation, Treasury, the Judiciary, Housing and Urban Development, and Related Agencies Appropriations for Fiscal Year 2006", "number_of_pages": 467, "isbn_13": ["9780160753534"], "physical_format": "Hardcover", "isbn_10": ["0160753538"], "publish_date": "January 2005", "key": "/books/OL10118697M", "works": [{"key": "/works/OL11636288W"}], "type": {"key": "/type/edition"}, "lccn": ["2006415020"], "lc_classifications": ["KF26 .A6615 2005"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part33.utf8:266663319:3059", "marc:marc_columbia/Columbia-extract-20221130-012.mrc:32369732:3013"], "oclc_numbers": ["62509925"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-29T07:52:13.133928"}}
+/type/edition /books/OL10119144M 5 2022-12-29T21:24:46.661654 {"publishers": ["Not Avail"], "languages": [{"key": "/languages/eng"}], "subtitle": "Hearing Before the Subcommittee on Social Security of the", "title": "Third in a Series of Subcommittee Hearings on Protecting and Strengthening Social Security", "number_of_pages": 87, "isbn_13": ["9780160760136"], "physical_format": "Hardcover", "isbn_10": ["0160760135"], "publish_date": "January 2006", "key": "/books/OL10119144M", "works": [{"key": "/works/OL10916028W"}], "type": {"key": "/type/edition"}, "lccn": ["2006415993"], "lc_classifications": ["KF27 .W347 2005e"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part33.utf8:268093758:1810", "ia:thirdinseriesofs00unit", "marc:marc_columbia/Columbia-extract-20221130-012.mrc:126664456:1780"], "covers": [11929780], "ocaid": "thirdinseriesofs00unit", "oclc_numbers": ["67295976"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-29T21:24:46.661654"}}
+/type/edition /books/OL10119619M 2 2010-08-12T15:44:07.123386 {"publishers": ["Thomas Nelson (Australia)"], "number_of_pages": 83, "last_modified": {"type": "/type/datetime", "value": "2010-08-12T15:44:07.123386"}, "title": "The Times concise atlas of the world", "type": {"key": "/type/edition"}, "identifiers": {"librarything": ["274410"]}, "isbn_13": ["9780170050609"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0170050602"], "publish_date": "1976", "key": "/books/OL10119619M", "latest_revision": 2, "physical_format": "Unknown Binding", "revision": 2}
+/type/edition /books/OL10119802M 2 2011-04-26T04:16:28.609218 {"publishers": ["Nelson Thornes Ltd"], "physical_format": "Paperback", "subtitle": "Setting Out (Voyages - Shared Reading)", "last_modified": {"type": "/type/datetime", "value": "2011-04-26T04:16:28.609218"}, "title": "Level One", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780170082617"], "isbn_10": ["017008261X"], "publish_date": "November 3, 2004", "key": "/books/OL10119802M", "latest_revision": 2, "oclc_numbers": ["154153276"], "type": {"key": "/type/edition"}, "subjects": ["Designed / suitable for other (non-UK) curricula & examinations", "English", "English language reading schemes"], "revision": 2}
+/type/edition /books/OL1012022M 8 2022-12-22T03:58:53.429647 {"publishers": ["Scholars Press"], "number_of_pages": 116, "isbn_10": ["0788503340"], "series": ["Brown Judaic studies ;", "no. 311"], "local_id": ["urn:cst:10011337215"], "lc_classifications": ["BS1335.2 .W55 1997"], "key": "/books/OL1012022M", "authors": [{"key": "/authors/OL545546A"}], "publish_places": ["Atlanta, Ga"], "pagination": "vi, 116 p. ;", "source_records": ["marc:marc_claremont_school_theology/CSTMARC1_barcode.mrc:228731811:4029", "marc:marc_loc_2016/BooksAll.2016.part25.utf8:114713637:879", "marc:marc_claremont_school_theology/CSTMARC1_multibarcode.mrc:229009442:4029", "marc:marc_columbia/Columbia-extract-20221130-010.mrc:25116620:1376"], "title": "The Elijah legends and Jehu's coup", "dewey_decimal_class": ["222/.5067"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 95-105) and index.\nRev. ed. of the author's thesis (Ph. D.)--Harvard University, 1994."}, "identifiers": {"goodreads": ["4916827"], "librarything": ["9307920"]}, "languages": [{"key": "/languages/eng"}], "lccn": ["96052642"], "subjects": ["Elijah (Biblical prophet)", "Jehu, King of Israel.", "Bible. O.T. Kings -- Criticism, interpretation, etc."], "publish_date": "1997", "publish_country": "gau", "by_statement": "by Marsha C. White.", "works": [{"key": "/works/OL3357895W"}], "type": {"key": "/type/edition"}, "oclc_numbers": ["36158873"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-22T03:58:53.429647"}}
+/type/edition /books/OL1012027M 7 2020-11-24T01:21:58.955649 {"publishers": ["Tor"], "number_of_pages": 383, "isbn_10": ["0312859066"], "series": ["The LonTobyn chronicle ;", "bk. 1"], "covers": [182504], "lc_classifications": ["PS3553.O343 C49 1997"], "latest_revision": 7, "key": "/books/OL1012027M", "authors": [{"key": "/authors/OL39867A"}], "publish_places": ["New York"], "languages": [{"key": "/languages/eng"}], "pagination": "383 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part25.utf8:114717857:748"], "title": "Children of Amarid", "dewey_decimal_class": ["813/.54"], "notes": {"type": "/type/text", "value": "\"A Tom Doherty Associates book.\""}, "identifiers": {"librarything": ["115814"], "goodreads": ["796930"]}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "edition_name": "1st ed.", "lccn": ["96052647"], "subjects": ["Magic -- Fiction."], "publish_date": "1997", "publish_country": "nyu", "last_modified": {"type": "/type/datetime", "value": "2020-11-24T01:21:58.955649"}, "by_statement": "David B. Coe.", "oclc_numbers": ["36158880"], "works": [{"key": "/works/OL14963260W"}], "type": {"key": "/type/edition"}, "revision": 7}
+/type/edition /books/OL10120424M 5 2019-07-30T16:04:38.267419 {"publishers": ["Nelson Thornes Ltd"], "number_of_pages": 80, "last_modified": {"type": "/type/datetime", "value": "2019-07-30T16:04:38.267419"}, "title": "Flying Boot", "identifiers": {"goodreads": ["5861799"]}, "isbn_13": ["9780174010166"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Spiral-bound", "isbn_10": ["0174010168"], "publish_date": "October 27, 2004", "key": "/books/OL10120424M", "authors": [{"key": "/authors/OL3265790A"}, {"key": "/authors/OL242568A"}, {"key": "/authors/OL1237415A"}, {"key": "/authors/OL3280953A"}], "latest_revision": 5, "oclc_numbers": ["43121660"], "works": [{"key": "/works/OL10535056W"}], "type": {"key": "/type/edition"}, "subjects": ["English language readers"], "revision": 5}
+/type/edition /books/OL10120538M 2 2011-04-28T00:52:09.260425 {"publishers": ["Nelson Thornes (Publishers) Ltd"], "physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2011-04-28T00:52:09.260425"}, "title": "New Way White Level Easy Start Set B - We Can Cook", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780174014706"], "isbn_10": ["0174014708"], "publish_date": "January 1, 1998", "key": "/books/OL10120538M", "latest_revision": 2, "oclc_numbers": ["314992934"], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL1012057M 10 2021-05-08T06:31:17.777314 {"publishers": ["Liturgical Press"], "isbn_10": ["0814624820"], "series": ["Preparing for liturgy"], "covers": [611282], "local_id": ["urn:cst:10011447452"], "lc_classifications": ["BX2230.2 .G55 1997", "BX2230.2 .G55 1996"], "key": "/books/OL1012057M", "authors": [{"key": "/authors/OL545560A"}], "publish_places": ["Collegeville, Minn"], "pagination": "p. cm.", "source_records": ["marc:marc_records_scriblio_net/part25.dat:208736592:763", "marc:marc_loc_updates/v37.i38.records.utf8:8887982:763", "marc:marc_claremont_school_theology/CSTMARC1_barcode.mrc:228979959:2503", "marc:marc_claremont_school_theology/CSTMARC1_multibarcode.mrc:229257618:2503", "ia:preparingeuchari0000glen"], "title": "Preparing the eucharistic table", "dewey_decimal_class": ["264/.02036"], "notes": {"type": "/type/text", "value": "Includes bibliographical references."}, "identifiers": {"librarything": ["1275523"], "goodreads": ["4731436"]}, "languages": [{"key": "/languages/eng"}], "lccn": ["96052679"], "subjects": ["Catholic Church -- Liturgy", "Mass", "Lord's Supper (Liturgy)", "Altars", "Communion table"], "publish_date": "1997", "publish_country": "mnu", "by_statement": "Barry Glendinning.", "oclc_numbers": ["36241026"], "works": [{"key": "/works/OL3357951W"}], "type": {"key": "/type/edition"}, "ocaid": "preparingeuchari0000glen", "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2021-05-08T06:31:17.777314"}}
+/type/edition /books/OL10120639M 2 2011-04-28T07:47:54.302699 {"publishers": ["Nelson Thornes"], "last_modified": {"type": "/type/datetime", "value": "2011-04-28T07:47:54.302699"}, "title": "Two Traditional Tales (New Way)", "number_of_pages": 16, "isbn_13": ["9780174015734"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0174015739"], "publish_date": "March 17, 1998", "key": "/books/OL10120639M", "latest_revision": 2, "oclc_numbers": ["316376906"], "type": {"key": "/type/edition"}, "subjects": ["English", "English language readers"], "revision": 2}
+/type/edition /books/OL10120762M 2 2011-04-29T10:04:17.158643 {"publishers": ["Nelson Thornes Ltd"], "physical_format": "Paperback", "subtitle": "Early Level", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T10:04:17.158643"}, "title": "Ready to Read", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780174017806"], "isbn_10": ["0174017804"], "publish_date": "January 1, 1994", "key": "/books/OL10120762M", "latest_revision": 2, "oclc_numbers": ["40293514"], "type": {"key": "/type/edition"}, "subjects": ["English", "English language: specific skills"], "revision": 2}
+/type/edition /books/OL10121286M 2 2009-12-15T00:43:13.385036 {"physical_format": "Paperback", "title": "Maths Chest", "isbn_10": ["0174105517"], "publishers": ["Nelson Thornes Ltd"], "edition_name": "New Ed edition", "isbn_13": ["9780174105510"], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:43:13.385036"}, "publish_date": "December 1991", "key": "/books/OL10121286M", "authors": [{"key": "/authors/OL3374286A"}], "latest_revision": 2, "subjects": ["Mathematics", "For National Curriculum Key Stage 2"], "works": [{"key": "/works/OL9327500W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10121501M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780174134190"], "physical_format": "Spiral-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Nelson Thornes Ltd"], "number_of_pages": 144, "edition_name": "New Ed edition", "isbn_10": ["0174134193"], "publish_date": "January 1984", "key": "/books/OL10121501M", "authors": [{"key": "/authors/OL2622088A"}], "title": "Rig King Ramir (New Buccaneers)", "type": {"key": "/type/edition"}, "subjects": ["English language readers", "Special needs & learning difficulties"], "revision": 1}
+/type/edition /books/OL10121819M 3 2010-04-24T17:55:11.075633 {"publishers": ["Nelson Thornes Ltd"], "identifiers": {"goodreads": ["6134045"]}, "key": "/books/OL10121819M", "title": "New Peak Mathematics", "number_of_pages": 40, "isbn_13": ["9780174214618"], "physical_format": "Paperback", "isbn_10": ["0174214618"], "publish_date": "October 17, 1985", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T17:55:11.075633"}, "authors": [{"key": "/authors/OL3346643A"}, {"key": "/authors/OL3346644A"}, {"key": "/authors/OL20331A"}], "latest_revision": 3, "type": {"key": "/type/edition"}, "subjects": ["For National Curriculum Key Stage 2", "Mathematics"], "revision": 3}
+/type/edition /books/OL1012188M 11 2022-12-10T06:00:56.623375 {"other_titles": ["Trailside make your own adventure"], "publishers": ["W.W. Norton"], "identifiers": {"librarything": ["615157"], "goodreads": ["325282"]}, "subtitle": "a trailside guide", "isbn_10": ["039331653X"], "series": ["A Trailside series guide"], "covers": [249363], "lc_classifications": ["GV200.2 .M45 1997", "GV200.2.M45 1997"], "key": "/books/OL1012188M", "authors": [{"key": "/authors/OL545604A"}], "ocaid": "rockclimbingtrai00mell_0", "publish_places": ["New York"], "pagination": "191 p. :", "source_records": ["ia:rockclimbingtrai00mell_0", "bwb:9780393316537", "marc:marc_loc_2016/BooksAll.2016.part25.utf8:114857097:740", "amazon:039331653X", "promise:bwb_daily_pallets_2020-07-07"], "title": "Rock climbing", "dewey_decimal_class": ["796.52/23"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 184) and index."}, "number_of_pages": 191, "languages": [{"key": "/languages/eng"}], "lccn": ["96052821"], "subjects": ["Rock climbing."], "publish_date": "1997", "publish_country": "nyu", "by_statement": "by Don Mellor ; illustrations by Ron Hildebrand.", "works": [{"key": "/works/OL3358246W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:P6-BXM-779"], "latest_revision": 11, "revision": 11, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T06:00:56.623375"}}
+/type/edition /books/OL10123255M 5 2011-04-30T07:28:22.972208 {"publishers": ["Nelson Thornes Ltd"], "number_of_pages": 48, "last_modified": {"type": "/type/datetime", "value": "2011-04-30T07:28:22.972208"}, "title": "Other Worlds (Initiatives S.)", "type": {"key": "/type/edition"}, "identifiers": {"goodreads": ["5767947"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780174322337"], "isbn_10": ["017432233X"], "publish_date": "April 1990", "key": "/books/OL10123255M", "authors": [{"key": "/authors/OL3374473A"}], "latest_revision": 5, "oclc_numbers": ["57120820"], "works": [{"key": "/works/OL9328011W"}], "physical_format": "Paperback", "subjects": ["English literature: literary criticism", "English literature: texts", "For National Curriculum Key Stage 4 & GCSE", "For Standard Grade (Scottish)", "Mysteries & the unexplained"], "revision": 5}
+/type/edition /books/OL10123474M 6 2011-04-28T19:27:40.205073 {"publishers": ["Thomson Learning Australia"], "number_of_pages": 64, "last_modified": {"type": "/type/datetime", "value": "2011-04-28T19:27:40.205073"}, "title": "Just Outside (Nelson's Humanities Scheme)", "type": {"key": "/type/edition"}, "identifiers": {"goodreads": ["4780894"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780174330516"], "isbn_10": ["0174330510"], "publish_date": "October 1973", "key": "/books/OL10123474M", "authors": [{"key": "/authors/OL2003833A"}, {"key": "/authors/OL1778742A"}], "latest_revision": 6, "oclc_numbers": ["16237342"], "works": [{"key": "/works/OL15328358W"}], "physical_format": "Paperback", "revision": 6}
+/type/edition /books/OL10124126M 2 2010-03-16T22:39:52.986678 {"publishers": ["Nelson Thornes Ltd"], "key": "/books/OL10124126M", "title": "Tricolore Assessment Packs (Tricolore Assessment Packs)", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780174394105"], "physical_format": "Audio Cassette", "isbn_10": ["0174394101"], "publish_date": "December 31, 1992", "last_modified": {"type": "/type/datetime", "value": "2010-03-16T22:39:52.986678"}, "authors": [{"key": "/authors/OL2765073A"}, {"key": "/authors/OL2661890A"}], "latest_revision": 2, "subjects": ["For National Curriculum Key Stage 3", "French", "Modern languages: audio-visual & multimedia"], "works": [{"key": "/works/OL14993627W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10124227M 2 2008-08-22T14:35:05.447728 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-08-22T14:35:05.447728"}, "publishers": ["Nelson Thornes Ltd"], "title": "Route Nationale", "isbn_13": ["9780174396154"], "isbn_10": ["0174396155"], "publish_date": "July 2, 2004", "key": "/books/OL10124227M", "authors": [{"key": "/authors/OL2661895A"}, {"key": "/authors/OL2661896A"}, {"key": "/authors/OL830370A"}], "type": {"key": "/type/edition"}, "subjects": ["Children's stationery & miscellaneous items", "Modern languages: audio-visual & multimedia", "For National Curriculum Key Stage 3", "French"], "revision": 2}
+/type/edition /books/OL10124577M 5 2011-05-15T07:19:10.953564 {"publishers": ["Wadsworth Publishing Company"], "physical_format": "Mass Market Paperback", "classifications": {}, "last_modified": {"type": "/type/datetime", "value": "2011-05-15T07:19:10.953564"}, "title": "King John", "notes": {"type": "/type/text", "value": "3e"}, "identifiers": {}, "isbn_13": ["9780174435549"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0174435541"], "publish_date": "April 1902", "key": "/books/OL10124577M", "authors": [{"key": "/authors/OL9388A"}], "latest_revision": 5, "works": [{"key": "/works/OL362680W"}], "type": {"key": "/type/edition"}, "subjects": ["Shakespeare", "Plays / Drama"], "revision": 5}
+/type/edition /books/OL10124886M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Evans Brothers Ltd"], "title": "Practical Primary Arithmetic Bk 3", "isbn_13": ["9780175117000"], "isbn_10": ["0175117004"], "publish_date": "December 31, 1990", "key": "/books/OL10124886M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10125100M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Nelson ELT"], "title": "Counterpoint", "isbn_13": ["9780175555864"], "isbn_10": ["0175555869"], "publish_date": "July 1986", "key": "/books/OL10125100M", "authors": [{"key": "/authors/OL2662908A"}, {"key": "/authors/OL3374800A"}], "type": {"key": "/type/edition"}, "subjects": ["ELT: Learning Material & Coursework", "English"], "revision": 1}
+/type/edition /books/OL10125135M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Nelson ELT"], "number_of_pages": 96, "isbn_13": ["9780175556984"], "isbn_10": ["0175556989"], "publish_date": "March 1988", "key": "/books/OL10125135M", "authors": [{"key": "/authors/OL3233486A"}, {"key": "/authors/OL3374809A"}], "title": "Synthesis", "type": {"key": "/type/edition"}, "subjects": ["ELT: Learning Material & Coursework", "English language", "English"], "revision": 1}
+/type/edition /books/OL10125556M 6 2022-10-28T20:50:11.138616 {"publishers": ["Nelson ELT"], "physical_format": "Paperback", "key": "/books/OL10125556M", "authors": [{"key": "/authors/OL2801261A"}], "subjects": ["ELT graded readers", "English language readers"], "edition_name": "New edition", "classifications": {}, "title": "Tina Turner", "notes": {"type": "/type/text", "value": "Nelson Graded Readers"}, "identifiers": {"librarything": ["6903440"]}, "isbn_13": ["9780175566624"], "isbn_10": ["0175566623"], "publish_date": "October 1987", "oclc_numbers": ["123712363"], "works": [{"key": "/works/OL8401477W"}], "type": {"key": "/type/edition"}, "source_records": ["amazon:0175566623"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-28T20:50:11.138616"}}
+/type/edition /books/OL10125634M 2 2011-06-08T09:32:38.183230 {"publishers": ["Nelson ELT"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-06-08T09:32:38.183230"}, "title": "Ngr Sense and Sensibility", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780175569779"], "isbn_10": ["0175569770"], "publish_date": "October 18, 1979", "key": "/books/OL10125634M", "latest_revision": 2, "oclc_numbers": ["221994392"], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10126119M 2 2009-12-15T00:43:16.311750 {"publishers": ["Auckland University Press"], "title": "Official Doctor/Patient Handbook", "isbn_10": ["0189759704"], "isbn_13": ["9780189759708"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:43:16.311750"}, "publish_date": "December 31, 1990", "key": "/books/OL10126119M", "authors": [{"key": "/authors/OL3375070A"}], "latest_revision": 2, "subjects": ["Reference works", "Medicine"], "works": [{"key": "/works/OL9328854W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL1012640M 13 2022-11-18T16:11:17.867608 {"publishers": ["Longman"], "identifiers": {"librarything": ["918367"], "goodreads": ["2011675"]}, "subtitle": "a comparative study", "isbn_10": ["0582209463", "0582209471"], "series": ["Perspectives in comparative politics"], "covers": [3862169, 381004], "lc_classifications": ["HN17.5 .Z57 1997", "HN17.5.Z57 1997"], "key": "/books/OL1012640M", "authors": [{"key": "/authors/OL545770A"}], "ocaid": "socialmovementsi0000zira", "publish_places": ["London", "New York"], "pagination": "xiv, 269 p. ;", "source_records": ["marc:marc_records_scriblio_net/part25.dat:209264056:979", "marc:marc_ithaca_college/ic_marc.mrc:165391687:1040", "ia:socialmovementsi0000zira", "bwb:9780582209466", "bwb:9780582209473", "marc:marc_loc_2016/BooksAll.2016.part25.utf8:115271660:982"], "title": "Social movements in politics", "dewey_decimal_class": ["306.2"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. [241]-255) and indexes."}, "number_of_pages": 269, "languages": [{"key": "/languages/eng"}], "lccn": ["96053294"], "subjects": ["Sendero Luminoso (Guerrilla group)", "NSZZ \"Solidarnos\u0301c\u0301\" (Labor organization)", "Gru\u0308nen (Political party)", "Social movements -- Political aspects -- Case studies", "Political participation -- Case studies"], "publish_date": "1997", "publish_country": "enk", "by_statement": "Cyrus Ernesto Zirakzadeh.", "works": [{"key": "/works/OL3359022W"}], "type": {"key": "/type/edition"}, "latest_revision": 13, "revision": 13, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-18T16:11:17.867608"}}
+/type/edition /books/OL10126570M 6 2023-01-10T16:57:11.843426 {"publishers": ["Oxford University Press, USA"], "weight": "1.3 pounds", "covers": [5036528], "local_id": ["urn:cst:10011395863"], "physical_format": "Paperback", "key": "/books/OL10126570M", "ocaid": "psychiatricethic0000bloc", "contributions": ["Sidney Bloch (Editor)", "Paul Chodoff (Editor)"], "edition_name": "New Ed edition", "languages": [{"key": "/languages/eng"}], "first_sentence": {"type": "/type/text", "value": "In the last edition of Psychiatric Ethics (1991), we launched the introductory chapter with this question: Why a book on psychiatric ethics?"}, "source_records": ["ia:psychiatricethic0000bloc", "marc:marc_claremont_school_theology/CSTMARC1_barcode.mrc:119789883:4254", "marc:marc_claremont_school_theology/CSTMARC1_multibarcode.mrc:119957660:4254", "marc:marc_columbia/Columbia-extract-20221130-008.mrc:462308361:1235"], "title": "Psychiatric Ethics", "number_of_pages": 368, "isbn_13": ["9780192615121"], "isbn_10": ["0192615122"], "publish_date": "February 14, 1985", "works": [{"key": "/works/OL17868691W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.9 inches", "lccn": ["81200921"], "lc_classifications": ["RC455.2.E8 P75 1981"], "oclc_numbers": ["11771246"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2023-01-10T16:57:11.843426"}}
+/type/edition /books/OL10126732M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780192688002"], "physical_format": "CD-ROM", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "publishers": ["Oxford Univ Pr (Txt)"], "title": "Dysmorphology Photo Library 2.2 and London Neurogenetics Database 2.2 (CD-ROM Windows 2 CDs)", "edition_name": "CD-Rom edition", "isbn_10": ["0192688006"], "publish_date": "February 10, 2000", "key": "/books/OL10126732M", "authors": [{"key": "/authors/OL3375165A"}, {"key": "/authors/OL385029A"}], "type": {"key": "/type/edition"}, "subjects": ["Congenital diseases & disorders", "Medical genetics", "General", "Medicine (General)", "Medical"], "revision": 1}
+/type/edition /books/OL10126806M 9 2022-12-09T04:41:26.051467 {"publishers": ["Oxford University Press"], "number_of_pages": 160, "title": "Downhill All the Way", "physical_format": "Hardcover", "identifiers": {"librarything": ["1019231"], "goodreads": ["2329788"]}, "isbn_13": ["9780192715852"], "isbn_10": ["0192715852"], "publish_date": "July 14, 1988", "key": "/books/OL10126806M", "authors": [{"key": "/authors/OL221451A"}], "works": [{"key": "/works/OL1850128W"}], "type": {"key": "/type/edition"}, "subjects": ["Fiction"], "covers": [11406934], "ocaid": "downhillallway0000peyt_q3f7", "lc_classifications": ["PZ7"], "source_records": ["ia:downhillallway0000peyt_q3f7", "promise:bwb_daily_pallets_2021-01-05"], "local_id": ["urn:bwbsku:KO-728-198"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T04:41:26.051467"}}
+/type/edition /books/OL10127066M 10 2020-10-08T07:48:01.840915 {"publishers": ["Oxford University Press"], "number_of_pages": 32, "weight": "0.8 ounces", "covers": [2327450], "physical_format": "Paperback", "lc_classifications": [""], "latest_revision": 10, "key": "/books/OL10127066M", "authors": [{"key": "/authors/OL779138A"}], "contributions": ["Alison Barlett (Illustrator)"], "subjects": ["Picture books", "For National Curriculum Early Years"], "source_records": ["bwb:9780192724847"], "title": "Outside Bears", "identifiers": {"goodreads": ["5442100"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780192724847"], "isbn_10": ["0192724843"], "publish_date": "April 4, 2002", "last_modified": {"type": "/type/datetime", "value": "2020-10-08T07:48:01.840915"}, "oclc_numbers": ["48753991"], "works": [{"key": "/works/OL15213723W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.5 x 0.5 x 0.3 inches", "revision": 10}
+/type/edition /books/OL10127394M 8 2020-10-09T03:42:19.264550 {"publishers": ["Oxford University Press"], "number_of_pages": 272, "weight": "2.2 pounds", "isbn_10": ["0192782142"], "covers": [2327722], "physical_format": "Hardcover", "lc_classifications": ["BS551.3 .D64 2007", "BS551.3.D64 2007"], "latest_revision": 8, "key": "/books/OL10127394M", "authors": [{"key": "/authors/OL39706A"}, {"key": "/authors/OL3375207A"}], "source_records": ["bwb:9780192782144", "marc:marc_loc_2016/BooksAll.2016.part42.utf8:108440012:1190"], "title": "The Oxford Book of Bible Stories", "lccn": ["2015301567"], "identifiers": {"goodreads": ["2224706"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780192782144"], "subjects": ["Bible stories"], "publish_date": "October 4, 2007", "last_modified": {"type": "/type/datetime", "value": "2020-10-09T03:42:19.264550"}, "works": [{"key": "/works/OL14963092W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10 x 7.8 x 1.2 inches", "revision": 8}
+/type/edition /books/OL10127690M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Oxford University Press"], "number_of_pages": 128, "isbn_13": ["9780193120228"], "isbn_10": ["0193120224"], "publish_date": "July 24, 1997", "key": "/books/OL10127690M", "authors": [{"key": "/authors/OL3375240A"}, {"key": "/authors/OL3375241A"}, {"key": "/authors/OL3375242A"}], "title": "English - Have a Go", "type": {"key": "/type/edition"}, "subjects": ["ELT: Learning Material & Coursework", "English language"], "revision": 1}
+/type/edition /books/OL10127691M 2 2010-03-15T05:49:24.161360 {"publishers": ["Oxford University Press"], "key": "/books/OL10127691M", "title": "English", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780193120235"], "physical_format": "Audio Cassette", "isbn_10": ["0193120232"], "publish_date": "May 29, 1997", "last_modified": {"type": "/type/datetime", "value": "2010-03-15T05:49:24.161360"}, "authors": [{"key": "/authors/OL3375240A"}, {"key": "/authors/OL3375241A"}, {"key": "/authors/OL3375242A"}, {"key": "/authors/OL2621744A"}], "latest_revision": 2, "subjects": ["ELT audio-visual (video & audio cassettes)", "Language Teaching & Learning (Other Than ELT)", "English"], "works": [{"key": "/works/OL14947846W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10127813M 3 2009-12-15T00:43:17.598365 {"publishers": ["Oxford University Press"], "title": "Key Concepts in Music", "isbn_10": ["019321539X"], "isbn_13": ["9780193215399"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:43:17.598365"}, "publish_date": "September 5, 1985", "key": "/books/OL10127813M", "authors": [{"key": "/authors/OL1617263A"}], "latest_revision": 3, "subjects": ["Music"], "works": [{"key": "/works/OL6238678W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10127861M 4 2021-11-02T08:16:59.485092 {"publishers": ["Oxford Univ Pr (Sd)"], "number_of_pages": 64, "weight": "5.6 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["019322108X"], "title": "Enjoy Playing the Clarinet", "isbn_13": ["9780193221086"], "covers": [2327855], "physical_format": "Paperback", "key": "/books/OL10127861M", "authors": [{"key": "/authors/OL3375272A"}], "publish_date": "December 1991", "works": [{"key": "/works/OL9329148W"}], "type": {"key": "/type/edition"}, "subjects": ["Instruction & Study - General", "Musical Instruments - Woodwinds", "Music"], "physical_dimensions": "11.9 x 8.9 x 0.2 inches", "source_records": ["bwb:9780193221086"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-11-02T08:16:59.485092"}}
+/type/edition /books/OL10127973M 2 2011-04-28T18:33:06.760974 {"publishers": ["Oxford University Press"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-28T18:33:06.760974"}, "title": "TITLE NOT SUPPLIED", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780193356764"], "isbn_10": ["0193356767"], "latest_revision": 2, "key": "/books/OL10127973M", "oclc_numbers": ["301548081"], "type": {"key": "/type/edition"}, "subjects": ["Music"], "revision": 2}
+/type/edition /books/OL10128120M 4 2021-11-02T07:21:39.165839 {"publishers": ["Oxford University Press"], "identifiers": {"goodreads": ["5366069"]}, "key": "/books/OL10128120M", "title": "Unknown Ground", "number_of_pages": 36, "isbn_13": ["9780193453265"], "physical_format": "Sheet music", "isbn_10": ["0193453266"], "publish_date": "December 5, 1991", "type": {"key": "/type/edition"}, "subjects": ["Music"], "works": [{"key": "/works/OL26297269W"}], "source_records": ["bwb:9780193453265"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-11-02T07:21:39.165839"}}
+/type/edition /books/OL10128295M 1 2008-04-30T09:38:13.731961 {"physical_format": "Sheet music", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Oxford University Press"], "title": "Rembrandt Dying", "isbn_13": ["9780193583498"], "isbn_10": ["0193583496"], "publish_date": "August 1, 2007", "key": "/books/OL10128295M", "type": {"key": "/type/edition"}, "subjects": ["Music"], "revision": 1}
+/type/edition /books/OL10128373M 2 2009-12-15T00:43:17.598365 {"physical_format": "Hardcover", "publishers": ["Oxford University Press"], "isbn_10": ["0193722445"], "number_of_pages": 86, "isbn_13": ["9780193722446"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:43:17.598365"}, "publish_date": "January 1997", "key": "/books/OL10128373M", "authors": [{"key": "/authors/OL3375337A"}], "title": "35 Sonatinas for Keyboard Instrument (Clavichord, Harpsichord, or Piano)", "latest_revision": 2, "works": [{"key": "/works/OL9329262W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10128693M 6 2020-10-08T21:16:38.408794 {"publishers": ["Oxford University Press"], "subtitle": "Teacher's Book", "weight": "1.1 pounds", "physical_format": "Paperback", "lc_classifications": [""], "latest_revision": 6, "key": "/books/OL10128693M", "authors": [{"key": "/authors/OL2662915A"}], "subjects": ["ELT: Learning Material & Coursework", "English"], "source_records": ["bwb:9780194070089"], "title": "Cookie and Friends B", "identifiers": {"goodreads": ["2858122"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780194070089"], "isbn_10": ["0194070085"], "publish_date": "October 20, 2005", "last_modified": {"type": "/type/datetime", "value": "2020-10-08T21:16:38.408794"}, "works": [{"key": "/works/OL8001142W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "11.5 x 8.2 x 0.4 inches", "revision": 6}
+/type/edition /books/OL10128853M 5 2010-08-11T06:16:11.300403 {"publishers": ["Oxford University Press"], "identifiers": {"goodreads": ["4968811"]}, "last_modified": {"type": "/type/datetime", "value": "2010-08-11T06:16:11.300403"}, "title": "Streamline Graded Readers (Streamline Graded Readers: Level 5)", "contributions": ["Bernard Hartley (Editor)", "Peter Viney (Editor)"], "number_of_pages": 36, "isbn_13": ["9780194219266"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0194219267"], "publish_date": "December 1989", "key": "/books/OL10128853M", "authors": [{"key": "/authors/OL2662742A"}], "latest_revision": 5, "works": [{"key": "/works/OL8000420W"}], "type": {"key": "/type/edition"}, "subjects": ["ELT graded readers", "Film - General", "Performing Arts", "Pop Arts / Pop Culture"], "revision": 5}
+/type/edition /books/OL10128968M 6 2020-10-08T01:18:01.004172 {"publishers": ["Oxford University Press"], "number_of_pages": 40, "covers": [2328217], "physical_format": "Paperback", "lc_classifications": [""], "latest_revision": 6, "key": "/books/OL10128968M", "authors": [{"key": "/authors/OL1572539A"}], "subjects": ["ELT: Learning Material & Coursework", "English language readers", "English"], "source_records": ["bwb:9780194224895"], "title": "Hotshot Puzzles (Hotshots)", "identifiers": {"librarything": ["7124706"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780194224895"], "isbn_10": ["0194224899"], "publish_date": "January 16, 1997", "last_modified": {"type": "/type/datetime", "value": "2020-10-08T01:18:01.004172"}, "works": [{"key": "/works/OL6143789W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL10129073M 7 2011-01-20T20:26:23.032900 {"publishers": ["Oxford University Press"], "physical_format": "Audio Cassette", "source_records": ["amazon:0194228762"], "title": "A Little Princess (Oxford Bookworms Library)", "contributions": ["Jennifer Bassett (Editor)"], "identifiers": {"goodreads": ["1287457"]}, "last_modified": {"type": "/type/datetime", "value": "2011-01-20T20:26:23.032900"}, "covers": [2328315, -1], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780194228763"], "isbn_10": ["0194228762"], "publish_date": "April 9, 1998", "key": "/books/OL10129073M", "authors": [{"key": "/authors/OL23767A"}], "latest_revision": 7, "works": [{"key": "/works/OL69630W"}], "type": {"key": "/type/edition"}, "subjects": ["ELT audio-visual (video & audio cassettes)", "ELT graded readers"], "revision": 7}
+/type/edition /books/OL10129121M 8 2020-10-08T03:39:52.934166 {"publishers": ["Oxford University Press, USA"], "identifiers": {"goodreads": ["5402608"], "librarything": ["5827901"]}, "subtitle": "700 Headwords U.F.O.s (Oxford Bookworms Factfiles)", "weight": "2.4 ounces", "series": ["Oxford Bookworms Factfiles , stage 2 (700 headwords)"], "covers": [2328361], "physical_format": "Paperback", "lc_classifications": [""], "latest_revision": 8, "key": "/books/OL10129121M", "authors": [{"key": "/authors/OL3375426A"}], "subjects": ["ELT graded readers", "English language readers", "Foreign Language Study", "Foreign Language - Dictionaries / Phrase Books", "English", "Language", "Foreign Language Study / English as a Second Language", "English as a Second Language"], "isbn_13": ["9780194232036"], "source_records": ["bwb:9780194232036"], "title": "Oxford Bookworms Factfiles: Stage 2", "number_of_pages": 24, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0194232034"], "publish_date": "November 6, 2000", "last_modified": {"type": "/type/datetime", "value": "2020-10-08T03:39:52.934166"}, "works": [{"key": "/works/OL9329407W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.2 x 6.3 x 0.2 inches", "revision": 8}
+/type/edition /books/OL10129357M 2 2009-12-15T00:43:18.848695 {"physical_format": "Paperback", "publishers": ["Oxford University Press"], "isbn_10": ["0194260445"], "number_of_pages": 128, "edition_name": "New Ed edition", "isbn_13": ["9780194260442"], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:43:18.848695"}, "publish_date": "August 3, 2000", "latest_revision": 2, "key": "/books/OL10129357M", "authors": [{"key": "/authors/OL1456003A"}], "title": "Win with English", "subjects": ["ELT: multi-skills"], "works": [{"key": "/works/OL5900192W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10130106M 4 2020-10-08T05:29:52.276174 {"publishers": ["Oxford University Press"], "number_of_pages": 88, "weight": "8.5 ounces", "physical_format": "Paperback", "lc_classifications": [""], "latest_revision": 4, "key": "/books/OL10130106M", "authors": [{"key": "/authors/OL332654A"}, {"key": "/authors/OL1522087A"}], "subjects": ["ELT: listening skills", "ELT: writing skills", "English language"], "source_records": ["bwb:9780194338349"], "title": "Happy Street", "identifiers": {"librarything": ["9646530"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780194338349"], "isbn_10": ["0194338347"], "publish_date": "June 8, 2000", "last_modified": {"type": "/type/datetime", "value": "2020-10-08T05:29:52.276174"}, "works": [{"key": "/works/OL20990929W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.6 x 8.4 x 0.3 inches", "revision": 4}
+/type/edition /books/OL10131081M 5 2014-07-28T23:47:38.137821 {"publishers": ["Oxford University Press"], "number_of_pages": 176, "weight": "1.1 pounds", "covers": [2328952], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2014-07-28T23:47:38.137821"}, "latest_revision": 5, "key": "/books/OL10131081M", "authors": [{"key": "/authors/OL1126455A"}, {"key": "/authors/OL234900A"}], "ocaid": "naturalenglishte00redm", "subjects": ["ELT workbooks, practice books & exercises"], "source_records": ["ia:naturalenglishte00redm"], "title": "Natural English", "identifiers": {"librarything": ["8802770"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780194373296"], "isbn_10": ["0194373290"], "publish_date": "November 21, 2002", "works": [{"key": "/works/OL16941872W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.8 x 8.5 x 0.6 inches", "revision": 5}
+/type/edition /books/OL10131143M 7 2022-12-07T17:51:15.112694 {"publishers": ["Oxford University Press"], "weight": "7.8 ounces", "covers": [2328970], "physical_format": "Paperback", "lc_classifications": [""], "key": "/books/OL10131143M", "authors": [{"key": "/authors/OL2662835A"}, {"key": "/authors/OL2662855A"}], "subjects": ["ELT: Learning Material & Coursework"], "source_records": ["bwb:9780194377454", "promise:bwb_daily_pallets_2022-03-17"], "title": "In English", "identifiers": {"goodreads": ["2357439"]}, "isbn_13": ["9780194377454"], "isbn_10": ["0194377458"], "publish_date": "March 11, 2004", "works": [{"key": "/works/OL20999007W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.4 x 5.1 x 0.6 inches", "local_id": ["urn:bwbsku:KQ-029-634"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-07T17:51:15.112694"}}
+/type/edition /books/OL10131300M 8 2022-11-12T00:32:16.096519 {"publishers": ["Oxford University Press"], "number_of_pages": 184, "weight": "1.1 pounds", "covers": [5036842], "physical_format": "Paperback", "key": "/books/OL10131300M", "authors": [{"key": "/authors/OL1126455A"}], "subjects": ["ELT workbooks, practice books & exercises", "English"], "title": "Natural English", "identifiers": {"goodreads": ["6700490"], "librarything": ["8765026"]}, "isbn_13": ["9780194388573"], "isbn_10": ["0194388573"], "publish_date": "March 16, 2006", "works": [{"key": "/works/OL5112309W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.7 x 8.6 x 0.5 inches", "local_id": ["urn:bwbsku:KR-485-212", "urn:bwbsku:KR-485-237"], "source_records": ["promise:bwb_daily_pallets_2022-10-20"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-12T00:32:16.096519"}}
+/type/edition /books/OL10131522M 4 2020-10-08T21:17:37.545283 {"publishers": ["Oxford University Press"], "physical_format": "Paperback", "lc_classifications": [""], "source_records": ["bwb:9780194405119"], "title": "Up and Away Readers", "number_of_pages": 32, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780194405119"], "isbn_10": ["0194405117"], "publish_date": "December 22, 2005", "key": "/books/OL10131522M", "last_modified": {"type": "/type/datetime", "value": "2020-10-08T21:17:37.545283"}, "latest_revision": 4, "oclc_numbers": ["416487413"], "works": [{"key": "/works/OL21004665W"}], "type": {"key": "/type/edition"}, "subjects": ["ELT workbooks, practice books & exercises", "American English"], "revision": 4}
+/type/edition /books/OL10132569M 7 2022-12-10T05:22:24.823773 {"publishers": ["Oxford Univ Press"], "source_records": ["marc:marc_claremont_school_theology/CSTMARC1_barcode.mrc:30791135:3317", "marc:marc_claremont_school_theology/CSTMARC1_multibarcode.mrc:30814152:3317", "ia:experienceofanxi0000unse", "promise:bwb_daily_pallets_2020-07-07"], "title": "Experience of Anxiety", "isbn_10": ["019500891X"], "isbn_13": ["9780195008913"], "physical_format": "Paperback", "local_id": ["urn:cst:10011395890", "urn:bwbsku:P4-ALP-883"], "publish_date": "January 1, 1963", "key": "/books/OL10132569M", "authors": [{"key": "/authors/OL2729750A"}], "oclc_numbers": ["500344207"], "works": [{"key": "/works/OL8204103W"}], "type": {"key": "/type/edition"}, "lccn": ["63012820"], "lc_classifications": ["RC531 .G65"], "covers": [10753582], "ocaid": "experienceofanxi0000unse", "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T05:22:24.823773"}}
+/type/edition /books/OL10132626M 3 2012-06-01T02:27:01.707145 {"publishers": ["Oxford University Press"], "number_of_pages": 368, "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2012-06-01T02:27:01.707145"}, "latest_revision": 3, "key": "/books/OL10132626M", "authors": [{"key": "/authors/OL1456988A"}], "subjects": ["1865-1900", "History", "Liberalism", "Politics and government", "United States"], "edition_name": "New edition", "classifications": {}, "title": "Best Men", "notes": {"type": "/type/text", "value": "Galaxy Books"}, "identifiers": {}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780195013542"], "isbn_10": ["0195013549"], "publish_date": "April 29, 1971", "works": [{"key": "/works/OL5902981W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL1013267M 8 2022-12-17T20:11:46.344884 {"publishers": ["Dial Books for Young Readers"], "description": {"type": "/type/text", "value": "No one else in Dan's class believes him when he says that he has seen a unicorn, until his story captures their imaginations."}, "isbn_10": ["0803722842"], "covers": [1515655], "lc_classifications": ["PZ7.S54144 Ul 1997", "PZ7.S54144Ul 1997"], "key": "/books/OL1013267M", "authors": [{"key": "/authors/OL450199A"}], "publish_places": ["New York"], "contributions": ["Reed, Neil, ill."], "pagination": "1 v. (unpaged) :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part25.utf8:115838084:794", "ia:unicorndreams0000shel_c5d2", "bwb:9780803722842"], "title": "Unicorn dreams", "dewey_decimal_class": ["[E]"], "identifiers": {"librarything": ["7062331"], "goodreads": ["1379702"]}, "languages": [{"key": "/languages/eng"}], "lccn": ["96054226"], "subjects": ["Unicorns -- Fiction.", "Imagination -- Fiction."], "publish_date": "1997", "publish_country": "nyu", "by_statement": "by Dyan Sheldon ; illustrated by Neil Reed.", "works": [{"key": "/works/OL2950493W"}], "type": {"key": "/type/edition"}, "ocaid": "unicorndreams0000shel_c5d2", "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T20:11:46.344884"}}
+/type/edition /books/OL10133257M 3 2011-04-27T03:52:10.583976 {"publishers": ["Oxford University Press"], "physical_format": "Paperback", "subtitle": "Biology and Culture in the Evolution of Brain and Language", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T03:52:10.583976"}, "title": "Beyond the Mirror", "number_of_pages": 432, "isbn_13": ["9780195136487"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0195136489"], "publish_date": "2003", "key": "/books/OL10133257M", "authors": [{"key": "/authors/OL542612A"}], "latest_revision": 3, "oclc_numbers": ["144529601"], "works": [{"key": "/works/OL3344690W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Neuropsychology", "Psycholinguistics", "Psychology"], "revision": 3}
+/type/edition /books/OL10133320M 2 2009-12-15T00:43:21.443393 {"physical_format": "Paperback", "publishers": ["Oxford University Press"], "isbn_10": ["0195143639"], "number_of_pages": 288, "isbn_13": ["9780195143638"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:43:21.443393"}, "publish_date": "May 2005", "key": "/books/OL10133320M", "authors": [{"key": "/authors/OL3375911A"}], "title": "Visions of Mary", "latest_revision": 2, "works": [{"key": "/works/OL9329907W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10133472M 8 2023-01-04T11:01:42.894381 {"publishers": ["Oxford University Press"], "physical_format": "Paperback", "lc_classifications": ["GN60.M32 2011", "GN60 .M32 2011"], "key": "/books/OL10133472M", "authors": [{"key": "/authors/OL581382A"}], "languages": [{"key": "/languages/eng"}], "source_records": ["bwb:9780195157031", "marc:marc_loc_2016/BooksAll.2016.part37.utf8:152567055:776", "promise:bwb_daily_pallets_2020-11-25", "marc:harvard_bibliographic_metadata/ab.bib.12.20150123.full.mrc:563620001:8418"], "title": "Introduction to Biological Anthropology", "lccn": ["2010033832"], "number_of_pages": 592, "isbn_13": ["9780195157031"], "isbn_10": ["0195157036"], "publish_date": "November 2005", "oclc_numbers": ["659412860"], "works": [{"key": "/works/OL3484139W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:854-BAB-265"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2023-01-04T11:01:42.894381"}}
+/type/edition /books/OL10133495M 3 2020-03-05T13:39:49.149985 {"publishers": ["Oxford University Press, USA"], "physical_format": "Hardcover", "weight": "13 ounces", "title": "Oxford World Classics,15 volume set: 15 Volume-Set: Hardy:Mayor of Casterbridge, Bronte:Wuthering Heights, Dickens:Great Expectations, Swift:Gulliver's ... Jim, Austen:Emma, Dickens:David Cooperfield,", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780195159806"], "covers": [5036963, -1], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0195159802"], "publish_date": "December 5, 2002", "key": "/books/OL10133495M", "last_modified": {"type": "/type/datetime", "value": "2020-03-05T13:39:49.149985"}, "latest_revision": 3, "type": {"key": "/type/edition"}, "subjects": ["Fiction / Literary", "Classics", "Literary", "Fiction", "Literature: Classics"], "physical_dimensions": "13.3 x 9.2 x 4.3 inches", "revision": 3}
+/type/edition /books/OL10133935M 5 2022-12-04T10:35:59.202719 {"publishers": ["A World Bank Publication"], "number_of_pages": 256, "weight": "1 ounces", "physical_format": "Paperback", "key": "/books/OL10133935M", "authors": [{"key": "/authors/OL10736A"}], "subjects": ["Development economics"], "isbn_13": ["9780195204827"], "source_records": ["amazon:0195204824", "marc:talis_openlibrary_contribution/talis-openlibrary-contribution.mrc:492085050:456", "promise:bwb_daily_pallets_2022-09-12"], "title": "World Development Report 1985", "identifiers": {"librarything": ["3619108"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0195204824"], "publish_date": "July 11, 1985", "works": [{"key": "/works/OL369912W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.5 x 8 x 0.6 inches", "local_id": ["urn:bwbsku:O8-BGC-272"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T10:35:59.202719"}}
+/type/edition /books/OL10134262M 6 2022-02-13T01:51:09.378952 {"publishers": ["Oxford"], "physical_format": "Paperback", "subtitle": "INSTRUCTOR'S SOLUTIONS MANUAL.", "lc_classifications": ["TJ159"], "source_records": ["bwb:9780195222128"], "title": "MECHANICS OF MACHINES", "isbn_13": ["9780195222128"], "isbn_10": ["0195222121"], "publish_date": "2005", "key": "/books/OL10134262M", "oclc_numbers": ["60838547"], "works": [{"key": "/works/OL21002442W"}], "type": {"key": "/type/edition"}, "covers": [-1], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-13T01:51:09.378952"}}
+/type/edition /books/OL10134405M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780195272208"], "physical_format": "Hardcover", "subtitle": "1917 Edition, King James Version (Style No 184 Ind)", "weight": "2.2 pounds", "languages": [{"key": "/languages/eng"}], "publishers": ["Oxford University Press"], "number_of_pages": 1644, "edition_name": "Black Lett edition", "isbn_10": ["019527220X"], "publish_date": "June 1984", "key": "/books/OL10134405M", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "title": "Scofield Reference Bible", "type": {"key": "/type/edition"}, "subjects": ["New International Version - General", "Bibles - King James", "Religion", "Bibles"], "physical_dimensions": "9.8 x 6.8 x 1.5 inches", "revision": 1}
+/type/edition /books/OL10134639M 3 2021-09-14T14:39:34.843852 {"physical_format": "Hardcover", "weight": "3.6 pounds", "publishers": ["Oxford University Press, USA"], "number_of_pages": 2016, "isbn_13": ["9780195278651"], "covers": [2329848], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0195278658"], "publish_date": "October 30, 2004", "key": "/books/OL10134639M", "title": "The ScofieldRG Study Bible III, KJV", "subjects": ["The Bible", "Bibles - King James", "Religion / Bibles / King James", "Religion", "Bibles"], "type": {"key": "/type/edition"}, "physical_dimensions": "10 x 7 x 1.9 inches", "works": [{"key": "/works/OL25064384W"}], "lc_classifications": [""], "source_records": ["bwb:9780195278651"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-09-14T14:39:34.843852"}}
+/type/edition /books/OL1013464M 9 2022-12-10T08:09:37.823564 {"other_titles": ["Managing stress"], "publishers": ["Macmillan"], "subtitle": "365 meditations for serenity and strength.", "isbn_10": ["0028610008"], "covers": [15955], "lc_classifications": ["RM222.2 .M3212 1997", "RM222.2.M3212 1997"], "key": "/books/OL1013464M", "ocaid": "isbn_9780028610009", "publish_places": ["New York"], "contributions": ["Weight Watchers International."], "pagination": "1 v. (unpaged) ;", "source_records": ["ia:isbn_9780028610009", "marc:marc_loc_2016/BooksAll.2016.part25.utf8:116022980:684", "bwb:9780028610009", "promise:bwb_daily_pallets_2020-06-04"], "title": "Weight Watchers managing stress", "dewey_decimal_class": ["613.2/5/019"], "notes": {"type": "/type/text", "value": "Includes index."}, "identifiers": {"goodreads": ["1039881"], "librarything": ["762379"], "amazon": [""]}, "languages": [{"key": "/languages/eng"}], "lccn": ["96054718"], "subjects": ["Weight loss -- Psychological aspects.", "Stress management."], "publish_date": "1997", "publish_country": "nyu", "oclc_numbers": ["36170563"], "works": [{"key": "/works/OL18165071W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:796-BAA-929"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T08:09:37.823564"}}
+/type/edition /books/OL10134759M 6 2020-10-12T13:00:35.513596 {"publishers": ["Oxford University Press, USA"], "weight": "1.1 pounds", "covers": [2329888], "physical_format": "Leather-bound", "lc_classifications": [""], "latest_revision": 6, "key": "/books/OL10134759M", "subjects": ["Bibles - New Revised Standard", "Christianity - Anglicanism", "Christianity - Episcopalianism", "Religion / Episcopalianism", "Christianity - Episcopalian", "Religion", "Bibles"], "isbn_13": ["9780195282054"], "source_records": ["bwb:9780195282054"], "title": "The New Revised Standard Version Pocket Edition Bible (Anglicized Text)", "number_of_pages": 1200, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0195282051"], "publish_date": "July 30, 1998", "last_modified": {"type": "/type/datetime", "value": "2020-10-12T13:00:35.513596"}, "works": [{"key": "/works/OL21225748W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "7.3 x 5.6 x 1.6 inches", "revision": 6}
+/type/edition /books/OL1013483M 11 2022-12-10T10:58:06.153502 {"publishers": ["Broadway Books"], "identifiers": {"goodreads": ["2460216"], "librarything": ["3521379"], "amazon": [""]}, "subtitle": "light & simple cooking year-round", "isbn_10": ["0553061704"], "covers": [367860], "lc_classifications": ["TX840.B3 G35 1997"], "key": "/books/OL1013483M", "authors": [{"key": "/authors/OL546092A"}], "publish_places": ["New York"], "lccn": ["96054739"], "uri_descriptions": ["Sample text", "Publisher description"], "edition_name": "1st ed.", "pagination": "111 p. :", "source_records": ["marc:marc_records_scriblio_net/part25.dat:210027485:893", "marc:marc_loc_updates/v38.i26.records.utf8:9627197:887", "marc:marc_loc_2016/BooksAll.2016.part25.utf8:116039436:887", "promise:bwb_daily_pallets_2020-12-09", "promise:bwb_daily_pallets_2020-04-09"], "title": "Italian grilling", "url": ["http://www.loc.gov/catdir/samples/random044/96054739.html", "http://www.loc.gov/catdir/description/random0412/96054739.html"], "notes": {"type": "/type/text", "value": "Includes index."}, "number_of_pages": 111, "languages": [{"key": "/languages/eng"}], "dewey_decimal_class": ["641.5/784"], "subjects": ["Barbecue cookery", "Cookery, Italian"], "publish_date": "1997", "publish_country": "nyu", "by_statement": "Jean Galton ; photography by Ann Stratton.", "oclc_numbers": ["36165246"], "works": [{"key": "/works/OL3360368W"}], "type": {"key": "/type/edition"}, "uris": ["http://www.loc.gov/catdir/samples/random044/96054739.html", "http://www.loc.gov/catdir/description/random0412/96054739.html"], "local_id": ["urn:bwbsku:O7-AJM-401", "urn:bwbsku:250-BAA-127"], "latest_revision": 11, "revision": 11, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T10:58:06.153502"}}
+/type/edition /books/OL10134878M 4 2020-10-12T09:22:23.739896 {"publishers": ["Oxford University Press, USA"], "weight": "10.4 ounces", "covers": [5036889], "physical_format": "Paperback", "lc_classifications": [""], "latest_revision": 4, "key": "/books/OL10134878M", "subjects": ["Religion / Prayerbooks / Christian", "Prayerbooks - Christian", "Religion", "Religion - Inspirational/Spirituality"], "edition_name": "Illustrate edition", "languages": [{"key": "/languages/eng"}], "source_records": ["bwb:9780195287462"], "title": "The 1979 Book of Common Prayer, Convention Edition", "number_of_pages": 1008, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780195287462"], "isbn_10": ["0195287460"], "publish_date": "August 3, 2000", "last_modified": {"type": "/type/datetime", "value": "2020-10-12T09:22:23.739896"}, "works": [{"key": "/works/OL21223648W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "6 x 4.4 x 0.9 inches", "revision": 4}
+/type/edition /books/OL10135522M 6 2022-12-08T19:08:08.972017 {"publishers": ["Oxford University Press"], "title": "Community Canada - Full Colour Edition", "identifiers": {"goodreads": ["5685978"]}, "isbn_13": ["9780195409246"], "physical_format": "Hardcover", "isbn_10": ["0195409248"], "publish_date": "1993", "key": "/books/OL10135522M", "authors": [{"key": "/authors/OL3376409A"}], "oclc_numbers": ["26803382"], "works": [{"key": "/works/OL9330301W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:O7-AAF-436"], "source_records": ["promise:bwb_daily_pallets_2021-03-10"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-08T19:08:08.972017"}}
+/type/edition /books/OL10135569M 12 2020-12-20T13:52:02.308298 {"publishers": ["Oxford University Press, USA"], "number_of_pages": 168, "weight": "3.2 ounces", "isbn_10": ["0195423097"], "covers": [5037056], "physical_format": "Paperback", "lc_classifications": ["HM881", "HM881 .S73 2007"], "key": "/books/OL10135569M", "authors": [{"key": "/authors/OL390897A"}], "ocaid": "socialmovements0000stag", "subjects": ["Sociology, Social Studies", "Social Science / General", "General", "Social Science", "Sociology"], "isbn_13": ["9780195423099"], "source_records": ["amazon:0195423097", "marc:marc_loc_updates/v36.i06.records.utf8:16108858:1220", "marc:marc_loc_updates/v36.i10.records.utf8:34949788:1220", "ia:socialmovements0000stag", "marc:OpenLibraries-Trent-MARCs/lbrn.mrc:2841125:1040", "bwb:9780195423099", "marc:marc_loc_2016/BooksAll.2016.part35.utf8:211518626:1220"], "title": "Social Movements", "identifiers": {"goodreads": ["2074804"]}, "languages": [{"key": "/languages/eng"}], "local_id": ["urn:trent:ocn126084807", "urn:trent:0116405579735"], "publish_date": "August 31, 2007", "works": [{"key": "/works/OL2678467W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.1 x 6.1 x 0.5 inches", "lccn": ["2008353669"], "latest_revision": 12, "revision": 12, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-20T13:52:02.308298"}}
+/type/edition /books/OL10135590M 11 2022-12-29T21:41:16.547567 {"publishers": ["Oxford University Press"], "number_of_pages": 300, "covers": [7075225], "physical_format": "Hardcover", "lc_classifications": ["", "PK2199.F255 Z9318 2007"], "key": "/books/OL10135590M", "authors": [{"key": "/authors/OL3376429A"}], "subjects": ["Biography: general", "Poetry & poets: from c 1900 -", "Urdu"], "classifications": {}, "source_records": ["bwb:9780195472288", "marc:marc_loc_2016/BooksAll.2016.part34.utf8:242050927:1160", "marc:marc_columbia/Columbia-extract-20221130-013.mrc:314332881:1570"], "title": "Faiz Ahmed Faiz", "identifiers": {"goodreads": ["1029147"]}, "isbn_13": ["9780195472288"], "isbn_10": ["0195472284"], "publish_date": "March 29, 2007", "oclc_numbers": ["173244017"], "works": [{"key": "/works/OL9330323W"}], "type": {"key": "/type/edition"}, "lccn": ["2007379080"], "latest_revision": 11, "revision": 11, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-29T21:41:16.547567"}}
+/type/edition /books/OL10135666M 4 2020-12-14T08:52:32.106183 {"physical_format": "Paperback", "languages": [{"key": "/languages/eng"}], "subtitle": "Includes Audio CD", "weight": "1.5 pounds", "publishers": ["Oxford University Press, USA"], "isbn_10": ["0195517555"], "number_of_pages": 384, "covers": [2330384], "edition_name": "2 edition", "isbn_13": ["9780195517552"], "publish_date": "December 23, 2005", "key": "/books/OL10135666M", "authors": [{"key": "/authors/OL1501975A"}, {"key": "/authors/OL3376468A"}], "title": "Australian Broadcast Journalism", "subjects": ["Communication Studies", "Language Arts & Disciplines", "Language Arts / Linguistics / Literacy", "Language", "Journalism", "Media Studies - Electronic Media", "Language Arts & Disciplines / Journalism", "Australia", "Broadcast journalism"], "type": {"key": "/type/edition"}, "physical_dimensions": "9.6 x 6.7 x 0.9 inches", "works": [{"key": "/works/OL23990668W"}], "lccn": ["2006274112"], "lc_classifications": ["PN5517.B75 P495 2006"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part33.utf8:161987093:1249"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-14T08:52:32.106183"}}
+/type/edition /books/OL10136008M 9 2020-10-08T01:36:39.230018 {"publishers": ["OUP India"], "identifiers": {"librarything": ["3968984"], "goodreads": ["4408624"]}, "weight": "8.5 ounces", "covers": [2330425], "physical_format": "Paperback", "lc_classifications": [""], "latest_revision": 9, "key": "/books/OL10136008M", "authors": [{"key": "/authors/OL1397694A"}], "subjects": ["Asian / Middle Eastern history", "Colonization & independence", "Cultural studies", "Social history", "ASIA", "Indian sub-continent", "20th century", "c 1700 to c 1800", "c 1800 to c 1900"], "edition_name": "New Ed edition", "source_records": ["bwb:9780195637212"], "title": "Subaltern Studies Vol. VIII", "number_of_pages": 240, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780195637212"], "isbn_10": ["0195637216"], "publish_date": "May 1999", "last_modified": {"type": "/type/datetime", "value": "2020-10-08T01:36:39.230018"}, "works": [{"key": "/works/OL5746002W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.4 x 5.6 x 0.5 inches", "revision": 9}
+/type/edition /books/OL10136314M 3 2010-08-12T15:53:07.484066 {"publishers": ["Oxford University Press Southern Africa"], "number_of_pages": 234, "last_modified": {"type": "/type/datetime", "value": "2010-08-12T15:53:07.484066"}, "title": "South African Short Stories", "physical_format": "Paperback", "identifiers": {"librarything": ["2863165"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780195700664"], "isbn_10": ["019570066X"], "publish_date": "August 1993", "key": "/books/OL10136314M", "authors": [{"key": "/authors/OL3376696A"}], "latest_revision": 3, "works": [{"key": "/works/OL9330584W"}], "type": {"key": "/type/edition"}, "subjects": ["Short stories", "Modern fiction"], "revision": 3}
+/type/edition /books/OL10136348M 3 2011-04-27T01:05:52.775724 {"publishers": ["Oxford University Press Southern Africa"], "last_modified": {"type": "/type/datetime", "value": "2011-04-27T01:05:52.775724"}, "title": "Successful Mathematics 8 (Grade 10) (Successful Mathematics)", "number_of_pages": 178, "isbn_13": ["9780195703931"], "covers": [2330493], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0195703936"], "latest_revision": 3, "key": "/books/OL10136348M", "authors": [{"key": "/authors/OL3376705A"}, {"key": "/authors/OL3376713A"}, {"key": "/authors/OL3376706A"}], "oclc_numbers": ["122293239"], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL1013634M 5 2020-11-24T01:38:22.608794 {"publishers": ["Scythe Publications"], "number_of_pages": 109, "isbn_10": ["1555237320"], "lc_classifications": ["PZ7.L4645 De 1997"], "latest_revision": 5, "key": "/books/OL1013634M", "authors": [{"key": "/authors/OL546155A"}], "publish_places": ["Nashville, Tenn"], "pagination": "109 p. ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part25.utf8:116172564:542"], "title": "Destined to be friends", "lccn": ["96060046"], "identifiers": {"goodreads": ["4707886"]}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "dewey_decimal_class": ["[Fic]"], "subjects": ["Schools -- Fiction."], "publish_date": "1997", "publish_country": "tnu", "last_modified": {"type": "/type/datetime", "value": "2020-11-24T01:38:22.608794"}, "by_statement": "Doreen Leavitt.", "oclc_numbers": ["35919411"], "works": [{"key": "/works/OL3360732W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10136828M 5 2011-04-27T18:38:53.410190 {"publishers": ["Oxford University Press Southern Africa"], "number_of_pages": 64, "last_modified": {"type": "/type/datetime", "value": "2011-04-27T18:38:53.410190"}, "title": "Inkanyezi Grade 1 Workbook", "type": {"key": "/type/edition"}, "identifiers": {"goodreads": ["124726"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780195715637"], "isbn_10": ["0195715632"], "latest_revision": 5, "key": "/books/OL10136828M", "authors": [{"key": "/authors/OL3376898A"}], "oclc_numbers": ["495472385"], "works": [{"key": "/works/OL9330739W"}], "physical_format": "Paperback", "subjects": ["Modern language learning: core course material"], "revision": 5}
+/type/edition /books/OL10136871M 4 2011-04-26T21:44:02.700975 {"publishers": ["Oxford University Press Southern Africa"], "identifiers": {"goodreads": ["4355934"]}, "subtitle": "Teacher's Guide", "last_modified": {"type": "/type/datetime", "value": "2011-04-26T21:44:02.700975"}, "title": "Successful Life Skills Grade 2", "type": {"key": "/type/edition"}, "number_of_pages": 96, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780195716153"], "isbn_10": ["0195716159"], "latest_revision": 4, "key": "/books/OL10136871M", "authors": [{"key": "/authors/OL3376828A"}, {"key": "/authors/OL3376829A"}, {"key": "/authors/OL3376830A"}], "oclc_numbers": ["50269205"], "physical_format": "Paperback", "revision": 4}
+/type/edition /books/OL10136976M 5 2011-04-26T22:44:33.997328 {"publishers": ["Oxford University Press Southern Africa"], "last_modified": {"type": "/type/datetime", "value": "2011-04-26T22:44:33.997328"}, "title": "Werk Dit Uit", "identifiers": {"goodreads": ["4429446"]}, "isbn_13": ["9780195717556"], "covers": [2330758], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0195717554"], "latest_revision": 5, "key": "/books/OL10136976M", "authors": [{"key": "/authors/OL3376783A"}, {"key": "/authors/OL3376916A"}, {"key": "/authors/OL3376917A"}], "oclc_numbers": ["44557214"], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL1013701M 5 2020-11-24T02:29:07.932551 {"other_titles": ["Best of Saint Thomas"], "publishers": ["Two Thousand Three Associates"], "number_of_pages": 128, "isbn_10": ["0963990578"], "subject_place": ["Saint Thomas (V.I.)"], "covers": [1694043], "lc_classifications": ["F2105 .A63 1996"], "latest_revision": 5, "key": "/books/OL1013701M", "authors": [{"key": "/authors/OL34033A"}], "publish_places": ["New Smyrna Beach, Fla"], "pagination": "128 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part25.utf8:116231584:684"], "title": "The best of St. Thomas", "dewey_decimal_class": ["917.297/22"], "notes": {"type": "/type/text", "value": "Includes index."}, "identifiers": {"goodreads": ["1869662"]}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["96060152"], "subjects": ["Saint Thomas (V.I.) -- Guidebooks."], "publish_date": "1996", "publish_country": "flu", "last_modified": {"type": "/type/datetime", "value": "2020-11-24T02:29:07.932551"}, "by_statement": "Pamela Acheson.", "oclc_numbers": ["35192372"], "works": [{"key": "/works/OL23613184W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL1013733M 7 2020-11-24T02:29:31.006987 {"publishers": ["World Book, Inc."], "identifiers": {"goodreads": ["4026266"], "librarything": ["1283873"]}, "description": {"type": "/type/text", "value": "Describes the celebration of Christmas in Mexico and includes stories, songs, recipes, and craft projects."}, "isbn_10": ["0716608790"], "series": ["Christmas around the world from World Book"], "covers": [455496], "lc_classifications": ["GT4987.17 .C48 1996"], "latest_revision": 7, "key": "/books/OL1013733M", "ocaid": "christmasinmexic0000unse", "publish_places": ["Chicago, Ill"], "contributions": ["World Book, Inc."], "pagination": "80 p. :", "source_records": ["marc:marc_records_scriblio_net/part25.dat:210247929:1062", "ia:christmasinmexic0000unse", "marc:marc_loc_2016/BooksAll.2016.part25.utf8:116259068:1062"], "title": "Christmas in Mexico.", "dewey_decimal_class": ["394.2663/0972"], "notes": {"type": "/type/text", "value": "Includes index."}, "number_of_pages": 80, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["96060207"], "subjects": ["Christmas -- Mexico -- Juvenile literature.", "Christmas -- Mexico.", "Christmas decorations.", "Handicraft.", "Mexico -- Social life and customs -- Juvenile literature.", "Mexico -- Social life and customs."], "publish_date": "1996", "publish_country": "ilu", "last_modified": {"type": "/type/datetime", "value": "2020-11-24T02:29:31.006987"}, "subject_place": ["Mexico", "Mexico."], "oclc_numbers": ["35906781"], "works": [{"key": "/works/OL19570838W"}], "type": {"key": "/type/edition"}, "revision": 7}
+/type/edition /books/OL10137525M 6 2020-10-10T15:19:57.683862 {"publishers": ["An Asian Development Bank Book"], "subtitle": "1996 (Key Indicators of Developing Asian and Pacific Countries)", "weight": "1 ounces", "physical_format": "Paperback", "lc_classifications": [""], "latest_revision": 6, "key": "/books/OL10137525M", "authors": [{"key": "/authors/OL4317075A"}], "subjects": ["Development economics", "Economic statistics", "Yearbooks, annuals, almanacs", "c 1990 to c 2000", "Economics Of Developing Countries", "Medical", "Business / Economics / Finance", "Business/Economics", "ASIA", "Pacific Ocean", "Development - Economic Development", "Business & Economics / Economic Development", "Physicians"], "isbn_13": ["9780195878363"], "source_records": ["bwb:9780195878363"], "title": "Key Indicators of Developing Asian and Pacific Countries: Volume XXVII", "number_of_pages": 456, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0195878361"], "publish_date": "December 26, 1996", "last_modified": {"type": "/type/datetime", "value": "2020-10-10T15:19:57.683862"}, "works": [{"key": "/works/OL950560W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "11 x 8.4 x 0.7 inches", "revision": 6}
+/type/edition /books/OL10137589M 4 2020-10-08T21:30:12.840615 {"publishers": ["Oxford University Press"], "physical_format": "Paperback", "lc_classifications": [""], "source_records": ["bwb:9780195971309"], "title": "Title Not Supplied", "identifiers": {"librarything": ["5068186"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780195971309"], "isbn_10": ["0195971302"], "publish_date": "November 3, 2005", "key": "/books/OL10137589M", "last_modified": {"type": "/type/datetime", "value": "2020-10-08T21:30:12.840615"}, "latest_revision": 4, "works": [{"key": "/works/OL21004977W"}], "type": {"key": "/type/edition"}, "subjects": ["ELT graded readers", "English"], "revision": 4}
+/type/edition /books/OL10137638M 5 2022-12-05T06:18:09.660287 {"publishers": ["Oxford University Press"], "key": "/books/OL10137638M", "title": "RUSSIAN PANORAMA", "number_of_pages": 288, "isbn_13": ["9780196351599"], "physical_format": "Hardcover", "isbn_10": ["0196351596"], "publish_date": "1962", "authors": [{"key": "/authors/OL3377153A"}], "works": [{"key": "/works/OL9330919W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:W7-ADL-682", "urn:bwbsku:W7-ADL-647", "urn:bwbsku:O8-AOK-622"], "source_records": ["promise:bwb_daily_pallets_2022-05-25"], "identifiers": {"amazon": ["B0062T3AVE", "B003G5UZSI"], "better_world_books": ["BWBM51646207", "BWB33260247"]}, "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-05T06:18:09.660287"}}
+/type/edition /books/OL10137782M 8 2021-12-29T00:02:52.469024 {"publishers": ["Early English Text Society"], "number_of_pages": 223, "physical_format": "Hardcover", "key": "/books/OL10137782M", "authors": [{"key": "/authors/OL3377206A"}], "subjects": ["Other prose: classical, early & medieval", "Literary Criticism & Collections / Medieval", "Literary studies: general", "Medieval", "Literary Criticism", "Literature - Classics / Criticism"], "edition_name": "New Impression edition", "languages": [{"key": "/languages/eng"}], "classifications": {}, "source_records": ["marc:talis_openlibrary_contribution/talis-openlibrary-contribution.mrc:494179748:506", "bwb:9780197222379"], "title": "Kyng Alisaunder vol II Introduction commentary and glossary", "notes": {"type": "/type/text", "value": "Early English Text Society Original Series"}, "identifiers": {"librarything": ["9583754"], "goodreads": ["6545301"]}, "isbn_13": ["9780197222379"], "isbn_10": ["0197222374"], "publish_date": "April 2, 1970", "works": [{"key": "/works/OL9330994W"}], "type": {"key": "/type/edition"}, "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-29T00:02:52.469024"}}
+/type/edition /books/OL10137883M 4 2020-10-08T04:59:36.224402 {"publishers": ["Victoria County History"], "subtitle": "Volume X Lexden Hundred (Part) including Dedham, Earls Colne and Wivenhoe (Victoria County History)", "weight": "3.9 pounds", "covers": [5037357], "physical_format": "Hardcover", "lc_classifications": [""], "latest_revision": 4, "key": "/books/OL10137883M", "authors": [{"key": "/authors/OL2081762A"}], "subjects": ["British & Irish history", "Local history", "Great Britain - History", "History", "History - General History", "History: World", "Essex", "General", "History / Great Britain", "History / Modern / General", "World history: from c 1900 -", "Modern - General"], "isbn_13": ["9780197227954"], "source_records": ["bwb:9780197227954"], "title": "A History of the County of Essex", "number_of_pages": 354, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0197227953"], "publish_date": "January 1, 2001", "last_modified": {"type": "/type/datetime", "value": "2020-10-08T04:59:36.224402"}, "works": [{"key": "/works/OL20990466W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "12.4 x 8.5 x 1.7 inches", "revision": 4}
+/type/edition /books/OL10138116M 2 2009-12-15T00:43:26.789360 {"publishers": ["Oxford University Press"], "key": "/books/OL10138116M", "title": "Collected Works of Oliver Goldsmith", "number_of_pages": 2472, "isbn_13": ["9780198114253"], "physical_format": "Textbook Binding", "isbn_10": ["0198114257"], "publish_date": "January 2000", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:43:26.789360"}, "authors": [{"key": "/authors/OL2888278A"}], "latest_revision": 2, "works": [{"key": "/works/OL8596983W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10138342M 4 2010-04-24T17:55:39.722477 {"publishers": ["Oxford University Press"], "identifiers": {"goodreads": ["5028016"]}, "last_modified": {"type": "/type/datetime", "value": "2010-04-24T17:55:39.722477"}, "title": "A Short History of Israel", "number_of_pages": 260, "isbn_13": ["9780198208273"], "physical_format": "Hardcover", "isbn_10": ["0198208278"], "latest_revision": 4, "key": "/books/OL10138342M", "authors": [{"key": "/authors/OL2882816A"}], "works": [{"key": "/works/OL8585235W"}], "type": {"key": "/type/edition"}, "subjects": ["Asian / Middle Eastern history", "Israel"], "revision": 4}
+/type/edition /books/OL1013847M 4 2020-11-24T02:30:50.977916 {"publishers": ["Livres Toundra"], "covers": [685042], "lc_classifications": ["PZ23.T53 S565 1996"], "latest_revision": 4, "key": "/books/OL1013847M", "authors": [{"key": "/authors/OL38402A"}], "publish_places": ["Toronto, Ont"], "pagination": "[24] p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part25.utf8:116365059:505"], "title": "Simon et la chasse au tre\u0301sor", "lccn": ["96060374"], "number_of_pages": 24, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/fre"}], "isbn_10": ["0887763758"], "publish_date": "1996", "publish_country": "onc", "last_modified": {"type": "/type/datetime", "value": "2020-11-24T02:30:50.977916"}, "by_statement": "Gilles Tibo.", "oclc_numbers": ["35938594"], "works": [{"key": "/works/OL542359W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10138501M 2 2009-12-15T00:43:26.789360 {"publishers": ["Oxford University Press"], "isbn_10": ["019826075X"], "number_of_pages": 300, "isbn_13": ["9780198260752"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:43:26.789360"}, "publish_date": "November 30, 2001", "latest_revision": 2, "key": "/books/OL10138501M", "authors": [{"key": "/authors/OL3377368A"}], "title": "The Law of Financial Futures", "subjects": ["England", "EU law: financial, taxation, commercial, industrial", "English law: financial law", "Laws of Other Jurisdictions & General Law"], "works": [{"key": "/works/OL9331217W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10138738M 6 2010-08-12T15:58:04.993879 {"publishers": ["Oxford University Press"], "number_of_pages": 128, "last_modified": {"type": "/type/datetime", "value": "2010-08-12T15:58:04.993879"}, "title": "Dracula (Oxford Playscripts S.)", "physical_format": "Paperback", "identifiers": {"goodreads": ["91938"], "librarything": ["9078481"]}, "covers": [2331243], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780198314561"], "isbn_10": ["0198314566"], "publish_date": "September 30, 1999", "key": "/books/OL10138738M", "authors": [{"key": "/authors/OL31727A"}], "latest_revision": 6, "works": [{"key": "/works/OL14956446W"}], "type": {"key": "/type/edition"}, "subjects": ["English literature: drama texts"], "revision": 6}
+/type/edition /books/OL101390M 4 2020-12-02T07:47:52.673252 {"subtitle": "y otras levitaciones", "lc_classifications": ["MLCS 99/07886 (P)"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part28.utf8:89948246:527"], "title": "Solo de garzas", "languages": [{"key": "/languages/spa"}], "publish_country": "ag ", "by_statement": "Marta Zamarripa.", "oclc_numbers": ["41967349"], "type": {"key": "/type/edition"}, "publishers": ["Ri\u0301os al Mar"], "key": "/books/OL101390M", "authors": [{"key": "/authors/OL68122A"}], "publish_places": ["[Parana\u0301, Entre Ri\u0301os?]"], "pagination": "61 p. :", "lccn": ["99216305"], "number_of_pages": 61, "isbn_10": ["9504399053"], "publish_date": "1998", "works": [{"key": "/works/OL808689W"}], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-02T07:47:52.673252"}}
+/type/edition /books/OL10139315M 5 2020-10-08T07:14:14.722458 {"publishers": ["Oxford University Press"], "weight": "6.4 ounces", "covers": [2331453], "physical_format": "Paperback", "lc_classifications": [""], "latest_revision": 5, "key": "/books/OL10139315M", "authors": [{"key": "/authors/OL2667324A"}], "subjects": ["English language: spelling", "For National Curriculum Key Stage 2", "English"], "source_records": ["bwb:9780198341734"], "title": "Oxford Spelling Workbooks", "number_of_pages": 64, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780198341734"], "isbn_10": ["0198341733"], "publish_date": "September 24, 1998", "last_modified": {"type": "/type/datetime", "value": "2020-10-08T07:14:14.722458"}, "works": [{"key": "/works/OL8012119W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.6 x 8 x 0.2 inches", "revision": 5}
+/type/edition /books/OL1013964M 6 2020-11-24T02:32:12.837519 {"other_titles": ["Han yu\u0308--shu tzu"], "publishers": ["University of Michigan Press"], "number_of_pages": 186, "subtitle": "first semester", "isbn_10": ["0472084046"], "dewey_decimal_class": ["495.1/82421"], "covers": [3862219, 3804382], "lc_classifications": ["PL1129.E5 M375 1997"], "latest_revision": 6, "key": "/books/OL1013964M", "authors": [{"key": "/authors/OL439215A"}], "publish_places": ["Ann Arbor"], "contributions": ["Marney, Steven."], "uri_descriptions": ["Publisher description"], "pagination": "xx, 186 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part25.utf8:116476285:923"], "title": "Chinese by numbers", "lccn": ["96060543"], "notes": {"type": "/type/text", "value": "English and Chinese.\nIncludes index."}, "identifiers": {"goodreads": ["2054843"]}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "url": ["http://www.loc.gov/catdir/description/umich051/96060543.html"], "subjects": ["Chinese language -- Textbooks for foreign speakers -- English.", "Chinese language -- Number."], "publish_date": "1997", "publish_country": "miu", "last_modified": {"type": "/type/datetime", "value": "2020-11-24T02:32:12.837519"}, "by_statement": "John Marney ; edited by Steven Marney.", "works": [{"key": "/works/OL2892094W"}], "type": {"key": "/type/edition"}, "uris": ["http://www.loc.gov/catdir/description/umich051/96060543.html"], "revision": 6}
+/type/edition /books/OL10139903M 7 2022-12-10T03:53:53.444777 {"publishers": ["Oxford University Press"], "covers": [2331651], "physical_format": "Paperback", "lc_classifications": [""], "key": "/books/OL10139903M", "authors": [{"key": "/authors/OL2667342A"}, {"key": "/authors/OL2667340A"}], "subjects": ["English language readers"], "source_records": ["bwb:9780198382973", "ia:comecloser0000flem", "promise:bwb_daily_pallets_2020-07-30"], "title": "Trackers", "number_of_pages": 16, "isbn_13": ["9780198382973"], "isbn_10": ["0198382979"], "publish_date": "April 1, 2004", "oclc_numbers": ["54894989"], "works": [{"key": "/works/OL21227722W"}], "type": {"key": "/type/edition"}, "ocaid": "comecloser0000flem", "local_id": ["urn:bwbsku:KO-129-992"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T03:53:53.444777"}}
+/type/edition /books/OL10140037M 4 2020-10-12T13:20:11.975128 {"publishers": ["Oxford University Press"], "subtitle": "Pack of 2", "covers": [2331699], "physical_format": "Paperback", "lc_classifications": [""], "latest_revision": 4, "key": "/books/OL10140037M", "authors": [{"key": "/authors/OL2626641A"}, {"key": "/authors/OL2623186A"}, {"key": "/authors/OL2667342A"}], "subjects": ["English language readers", "For National Curriculum Key Stage 2"], "source_records": ["bwb:9780198385219"], "title": "Trackers: Elephant Trackers: Variety Fiction", "number_of_pages": 16, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780198385219"], "isbn_10": ["0198385218"], "publish_date": "February 23, 2006", "last_modified": {"type": "/type/datetime", "value": "2020-10-12T13:20:11.975128"}, "works": [{"key": "/works/OL21225979W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10140195M 5 2022-03-10T05:04:14.301508 {"publishers": ["Oxford University Press"], "number_of_pages": 144, "title": "Spanish to Standard Grade", "identifiers": {"goodreads": ["5630111"]}, "isbn_13": ["9780198405375"], "physical_format": "Audio Cassette", "isbn_10": ["0198405375"], "publish_date": "May 13, 1999", "key": "/books/OL10140195M", "authors": [{"key": "/authors/OL2667345A"}, {"key": "/authors/OL3377550A"}], "oclc_numbers": ["41389055"], "type": {"key": "/type/edition"}, "subjects": ["Modern language learning material", "For Standard Grade (Scottish)", "Spanish"], "works": [{"key": "/works/OL27681194W"}], "covers": [12660465], "ocaid": "spanishtostandar0000dier", "source_records": ["ia:spanishtostandar0000dier"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-10T05:04:14.301508"}}
+/type/edition /books/OL10140293M 7 2020-10-12T22:52:24.709269 {"publishers": ["Oxford University Press"], "number_of_pages": 16, "subtitle": "Pack B (Oxford Reading Tree)", "weight": "1.4 ounces", "covers": [2331792], "physical_format": "Paperback", "lc_classifications": [""], "latest_revision": 7, "key": "/books/OL10140293M", "authors": [{"key": "/authors/OL964797A"}], "contributions": ["Alex Brychta (Illustrator)"], "subjects": ["English language reading schemes", "For National Curriculum Key Stage 1"], "edition_name": "New Ed edition", "source_records": ["bwb:9780198450733"], "title": "Oxford Reading Tree: Stage 2: More Storybooks: Biff's Aeroplane", "identifiers": {"librarything": ["5441819"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780198450733"], "isbn_10": ["0198450737"], "publish_date": "September 11, 2003", "last_modified": {"type": "/type/datetime", "value": "2020-10-12T22:52:24.709269"}, "works": [{"key": "/works/OL4678501W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "7.6 x 6 x 0.2 inches", "revision": 7}
+/type/edition /books/OL10140536M 6 2020-10-08T15:45:35.230227 {"publishers": ["Oxford University Press"], "identifiers": {"goodreads": ["1997419"]}, "subtitle": "Class Pack (36 Books, 6 of Each Title)", "physical_format": "Paperback", "lc_classifications": [""], "latest_revision": 6, "key": "/books/OL10140536M", "authors": [{"key": "/authors/OL2622154A"}], "subjects": ["English language readers", "For National Curriculum Key Stage 1"], "source_records": ["amazon:0198454929", "bwb:9780198454922"], "title": "Oxford Reading Tree: Stages 10-11: Glow-worms", "number_of_pages": 16, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780198454922"], "isbn_10": ["0198454929"], "publish_date": "January 27, 2005", "last_modified": {"type": "/type/datetime", "value": "2020-10-08T15:45:35.230227"}, "works": [{"key": "/works/OL259105W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL10140561M 8 2022-12-14T23:18:17.597249 {"title": "Oxford Reading Tree: Stage 3: Snapdragons", "subtitle": "Grandma's Glasses", "authors": [{"key": "/authors/OL32893A"}], "publish_date": "September 30, 2004", "publishers": ["Oxford University Press"], "weight": "0.3 ounces", "physical_format": "Paperback", "lc_classifications": [""], "subjects": ["English language readers"], "source_records": ["bwb:9780198455196", "amazon:0198455194", "ia:grandmasglasses0000moon", "promise:bwb_daily_pallets_2020-07-30"], "isbn_13": ["9780198455196"], "isbn_10": ["0198455194"], "oclc_numbers": ["56759786"], "type": {"key": "/type/edition"}, "physical_dimensions": "7.2 x 6.3 x 0.1 inches", "ocaid": "grandmasglasses0000moon", "key": "/books/OL10140561M", "number_of_pages": 16, "works": [{"key": "/works/OL20999417W"}], "local_id": ["urn:bwbsku:KN-583-339"], "identifiers": {"amazon": [""]}, "covers": [13101374], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-14T23:18:17.597249"}}
+/type/edition /books/OL10140914M 6 2020-10-08T23:45:39.627806 {"publishers": ["Oxford University Press"], "identifiers": {"goodreads": ["6399013"]}, "subtitle": "Pack of 10 Titles", "weight": "2 pounds", "physical_format": "Paperback", "lc_classifications": [""], "latest_revision": 6, "key": "/books/OL10140914M", "authors": [{"key": "/authors/OL3377542A"}], "contributions": ["Tim Archbold (Illustrator)"], "subjects": ["English language reading schemes", "For National Curriculum Key Stage 1"], "source_records": ["bwb:9780198462767"], "title": "Read Write Inc. Phonics: Get Writing! Orange Set 4", "number_of_pages": 32, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780198462767"], "isbn_10": ["019846276X"], "publish_date": "September 7, 2006", "last_modified": {"type": "/type/datetime", "value": "2020-10-08T23:45:39.627806"}, "works": [{"key": "/works/OL9331525W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "11.6 x 8.3 x 0.9 inches", "revision": 6}
+/type/edition /books/OL10141396M 5 2022-12-21T04:40:05.012907 {"publishers": ["Oxford University Press, USA"], "subtitle": "Volume 8 (Oxford Reviews of Reproductive Biology)", "weight": "2.1 ounces", "physical_format": "Hardcover", "key": "/books/OL10141396M", "authors": [{"key": "/authors/OL3377692A"}], "subjects": ["Animal physiology", "Physiology Of Reproduction", "Science", "Science/Mathematics", "Life Sciences - Biology - General"], "isbn_13": ["9780198576396"], "source_records": ["marc:talis_openlibrary_contribution/talis-openlibrary-contribution.mrc:496736846:519", "promise:bwb_daily_pallets_2022-09-02", "ia:oxfordreviewsofr0000unse_j9j0"], "title": "Oxford Reviews of Reproductive Biology", "number_of_pages": 472, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0198576390"], "publish_date": "January 22, 1987", "works": [{"key": "/works/OL9331677W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "6.6 x 1.5 x 1.2 inches", "local_id": ["urn:bwbsku:KR-291-438"], "covers": [13110240], "ocaid": "oxfordreviewsofr0000unse_j9j0", "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-21T04:40:05.012907"}}
+/type/edition /books/OL10141978M 6 2019-12-13T12:14:11.546748 {"publishers": ["Oxford University Press"], "number_of_pages": 54, "source_records": ["marc:marc_marygrove/marygrovecollegelibrary.full.D20191108.T213022.internetarchive2nd_REPACK.mrc:76812808:1723"], "title": "Sons and Daughters (Three Crowns)", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "type": {"key": "/type/edition"}, "identifiers": {"librarything": ["3455462"], "goodreads": ["2784323"]}, "last_modified": {"type": "/type/datetime", "value": "2019-12-13T12:14:11.546748"}, "local_id": ["urn:mgc:31927000490661"], "isbn_13": ["9780199110643"], "isbn_10": ["0199110646"], "publish_date": "December 31, 1964", "key": "/books/OL10141978M", "authors": [{"key": "/authors/OL3377746A"}], "latest_revision": 6, "works": [{"key": "/works/OL9331757W"}], "physical_format": "Paperback", "subjects": ["English literature: literary criticism", "English literature: texts", "Fiction", "Literary", "Fiction - General"], "revision": 6}
+/type/edition /books/OL10142662M 6 2022-12-09T15:45:41.876378 {"publishers": ["Oxford University Press"], "covers": [2332690], "physical_format": "Paperback", "key": "/books/OL10142662M", "authors": [{"key": "/authors/OL2668534A"}], "subjects": ["Mathematics", "Study & learning skills", "For National Curriculum Key Stage 4 & GCSE"], "isbn_13": ["9780199145652"], "title": "Intermediate GCSE Mathematics (Revision & Practice)", "number_of_pages": 416, "edition_name": "School 2 Revised Ed edition", "isbn_10": ["0199145652"], "publish_date": "May 7, 1998", "oclc_numbers": ["43406130"], "works": [{"key": "/works/OL8015541W"}], "type": {"key": "/type/edition"}, "first_sentence": {"type": "/type/text", "value": "Whole numbers are made up from units, tens, hundreds, thousands and so on."}, "ocaid": "intermediategcse0000rayn_b0v5", "lc_classifications": ["QA39.2 .R39 1998"], "source_records": ["ia:intermediategcse0000rayn_b0v5", "promise:bwb_daily_pallets_2020-11-19"], "local_id": ["urn:bwbsku:KO-435-918"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T15:45:41.876378"}}
+/type/edition /books/OL10142880M 4 2020-10-12T15:31:19.249005 {"publishers": ["Oxford University Press"], "physical_format": "Paperback", "lc_classifications": [""], "source_records": ["bwb:9780199155019"], "title": "Oxford Literacy Web (Oxford Literacy Web)", "contributions": ["Ian Newsham (Illustrator)"], "number_of_pages": 8, "last_modified": {"type": "/type/datetime", "value": "2020-10-12T15:31:19.249005"}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780199155019"], "isbn_10": ["0199155011"], "publish_date": "February 4, 1999", "key": "/books/OL10142880M", "authors": [{"key": "/authors/OL1435377A"}], "latest_revision": 4, "works": [{"key": "/works/OL5849013W"}], "type": {"key": "/type/edition"}, "subjects": ["English language readers", "English language: reading skills", "For National Curriculum Key Stage 1", "Learning & study skills"], "revision": 4}
+/type/edition /books/OL10143409M 6 2020-10-08T11:43:10.668997 {"publishers": ["Oxford University Press"], "subtitle": "Pack 2 (6 Workbooks) (Oxford Reading Tree)", "covers": [2332918], "physical_format": "Paperback", "lc_classifications": [""], "latest_revision": 6, "key": "/books/OL10143409M", "authors": [{"key": "/authors/OL964797A"}], "subjects": ["English language readers", "English"], "source_records": ["bwb:9780199161935"], "title": "Oxford Reading Tree: Stages 6-10: Robins Workbooks", "number_of_pages": 16, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780199161935"], "isbn_10": ["0199161933"], "publish_date": "June 30, 1988", "last_modified": {"type": "/type/datetime", "value": "2020-10-08T11:43:10.668997"}, "works": [{"key": "/works/OL4678667W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL1014362M 6 2020-11-24T02:36:56.686687 {"publishers": ["Thames and Hudson"], "isbn_10": ["0500060266"], "series": ["Sacred symbols"], "covers": [3862721], "lc_classifications": ["BV150 .C57 1997"], "latest_revision": 6, "key": "/books/OL1014362M", "ocaid": "christianmysteri00andr_0", "publish_places": ["New York"], "contributions": ["Thames and Hudson."], "pagination": "1 v. (unpaged) :", "source_records": ["ia:christianmysteri00andr_0", "marc:marc_loc_2016/BooksAll.2016.part25.utf8:116840019:559"], "title": "Christian mysteries.", "dewey_decimal_class": ["246/.55"], "identifiers": {"goodreads": ["4664944"], "librarything": ["6237831"]}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["96061233"], "subjects": ["Christian art and symbolism."], "publish_date": "1997", "publish_country": "nyu", "last_modified": {"type": "/type/datetime", "value": "2020-11-24T02:36:56.686687"}, "works": [{"key": "/works/OL17796224W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL10143668M 8 2022-12-04T07:36:10.293145 {"publishers": ["Oxford University Press"], "physical_format": "Paperback", "lc_classifications": [""], "source_records": ["amazon:0199165874", "marc:talis_openlibrary_contribution/talis-openlibrary-contribution.mrc:1477539485:573", "bwb:9780199165872", "promise:bwb_daily_pallets_2022-09-20"], "title": "Oxford Poem Tree (Oxford Reading Tree)", "number_of_pages": 16, "isbn_13": ["9780199165872"], "isbn_10": ["0199165874"], "publish_date": "November 25, 1993", "key": "/books/OL10143668M", "authors": [{"key": "/authors/OL2622154A"}], "oclc_numbers": ["31652620"], "works": [{"key": "/works/OL259145W"}], "type": {"key": "/type/edition"}, "subjects": ["English language readers", "English literature: poetry texts & anthologies", "English"], "local_id": ["urn:bwbsku:KR-287-576"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T07:36:10.293145"}}
+/type/edition /books/OL10143747M 3 2011-05-04T21:32:06.534013 {"publishers": ["Oxford University Press"], "last_modified": {"type": "/type/datetime", "value": "2011-05-04T21:32:06.534013"}, "title": "Oxford Primary English", "number_of_pages": 48, "isbn_13": ["9780199167630"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["019916763X"], "publish_date": "February 9, 1995", "key": "/books/OL10143747M", "authors": [{"key": "/authors/OL3377938A"}, {"key": "/authors/OL3377937A"}], "latest_revision": 3, "oclc_numbers": ["32203155"], "works": [{"key": "/works/OL77259W"}], "type": {"key": "/type/edition"}, "subjects": ["English grammar", "English"], "revision": 3}
+/type/edition /books/OL1014465M 9 2022-12-04T23:17:58.547164 {"publishers": ["Thames and Hudson", "Tate Gallery Pub."], "number_of_pages": 152, "isbn_10": ["0500279438"], "covers": [8449404], "local_id": ["urn:sfpl:31223044594639", "urn:bwbsku:KR-056-001"], "lc_classifications": ["N7133.R44 A4 1997"], "key": "/books/OL1014465M", "authors": [{"key": "/authors/OL546557A"}], "publish_places": ["New York, N.Y", "[London]"], "contributions": ["Tate Gallery."], "pagination": "152 p. :", "source_records": ["amazon:0500279438", "marc:marc_openlibraries_sanfranciscopubliclibrary/sfpl_chq_2018_12_24_run02.mrc:153114851:1701", "marc:marc_loc_2016/BooksAll.2016.part25.utf8:116932050:902", "ia:paularego0000rego", "promise:bwb_daily_pallets_2022-07-11"], "title": "Paula Rego.", "lccn": ["96061422"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 145-147).\nVideography: p. 147.\nOriginally published to accompany the exhibition held at the Tate Gallery, 8 February-13 April 1997; and at the Centro Cultural de Bele\u0301m, Lisbon, 15 May-17 August 1977."}, "identifiers": {"librarything": ["1308995"], "goodreads": ["1519340"]}, "languages": [{"key": "/languages/eng"}], "subjects": ["Rego, Paula -- Exhibitions."], "publish_date": "1997", "publish_country": "nyu", "oclc_numbers": ["36805255"], "works": [{"key": "/works/OL3362595W"}], "type": {"key": "/type/edition"}, "ocaid": "paularego0000rego", "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T23:17:58.547164"}}
+/type/edition /books/OL10144914M 4 2011-04-29T05:46:44.481729 {"publishers": ["Oxford University Press"], "subtitle": "Magpies Storybooks (Oxford Reading Tree)", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T05:46:44.481729"}, "title": "Oxford Reading Tree: Stage 8", "contributions": ["Alex Brychta (Illustrator)"], "number_of_pages": 32, "isbn_13": ["9780199189816"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Unknown Binding", "isbn_10": ["0199189811"], "publish_date": "March 25, 1999", "key": "/books/OL10144914M", "authors": [{"key": "/authors/OL964797A"}], "latest_revision": 4, "oclc_numbers": ["43219677"], "works": [{"key": "/works/OL4678680W"}], "type": {"key": "/type/edition"}, "subjects": ["English language readers", "English language: creative writing", "For National Curriculum Key Stage 1"], "revision": 4}
+/type/edition /books/OL10145109M 5 2020-10-08T14:26:58.037769 {"publishers": ["Oxford University Press"], "subtitle": "More Owls Storybooks (Oxford Reading Tree)", "physical_format": "Paperback", "lc_classifications": [""], "latest_revision": 5, "key": "/books/OL10145109M", "authors": [{"key": "/authors/OL964797A"}], "contributions": ["Alex Brychta (Illustrator)"], "subjects": ["English language reading schemes", "Designed / suitable for National Curriculum", "For National Curriculum Key Stage 1"], "source_records": ["bwb:9780199194759"], "title": "Oxford Reading Tree: Stages 6 & 7", "number_of_pages": 32, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780199194759"], "isbn_10": ["0199194750"], "publish_date": "January 17, 2002", "last_modified": {"type": "/type/datetime", "value": "2020-10-08T14:26:58.037769"}, "works": [{"key": "/works/OL4678661W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10145294M 6 2020-10-12T22:53:21.702697 {"publishers": ["Oxford University Press"], "identifiers": {"librarything": ["5441836"]}, "subtitle": "Night Animals", "weight": "1.4 ounces", "covers": [2333483], "physical_format": "Paperback", "lc_classifications": [""], "latest_revision": 6, "key": "/books/OL10145294M", "authors": [{"key": "/authors/OL3378011A"}], "subjects": ["English language reading schemes", "For National Curriculum Key Stage 1"], "source_records": ["bwb:9780199197514"], "title": "Oxford Reading Tree: Stage 4: Fireflies", "number_of_pages": 16, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780199197514"], "isbn_10": ["0199197512"], "publish_date": "September 25, 2003", "last_modified": {"type": "/type/datetime", "value": "2020-10-12T22:53:21.702697"}, "works": [{"key": "/works/OL9332165W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.2 x 6 x 0.2 inches", "revision": 6}
+/type/edition /books/OL10145650M 12 2022-12-29T01:21:38.696170 {"publishers": ["Oxford University Press, USA"], "identifiers": {"goodreads": ["4132584"]}, "subtitle": "Great Power Rivalry and British Isolation, 1894-1905", "weight": "1.5 pounds", "covers": [2333638], "physical_format": "Hardcover", "lc_classifications": ["DA560", "DS764.2 .O88 2007"], "key": "/books/OL10145650M", "authors": [{"key": "/authors/OL2781667A"}], "ocaid": "chinaquestiongre00otte", "subjects": ["British & Irish history: c 1700 to c 1900", "International relations", "c 1800 to c 1900", "History", "History - General History", "History: World", "United Kingdom, Great Britain", "Asia - China", "Europe - Great Britain - General", "International Relations - General", "History / Great Britain", "China", "Great Britain", "Guangxu, 1875-1908", "Relations"], "isbn_13": ["9780199211098"], "source_records": ["ia:chinaquestiongre00otte", "bwb:9780199211098", "marc:marc_loc_2016/BooksAll.2016.part34.utf8:107886977:1206", "ia:chinaquestiongre0000otte", "promise:bwb_daily_pallets_2022-06-30", "marc:marc_columbia/Columbia-extract-20221130-013.mrc:152307371:1381"], "title": "The China Question", "number_of_pages": 352, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0199211094"], "publish_date": "May 11, 2007", "works": [{"key": "/works/OL8357474W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.3 x 6.1 x 1.2 inches", "lccn": ["2007006262"], "oclc_numbers": ["83977501"], "local_id": ["urn:bwbsku:O8-ANB-543"], "latest_revision": 12, "revision": 12, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-29T01:21:38.696170"}}
+/type/edition /books/OL10145820M 9 2020-12-17T10:34:26.238563 {"publishers": ["Oxford University Press, USA"], "number_of_pages": 350, "subtitle": "State Succession and the Law of Treaties (Oxford Monographs in International Law)", "weight": "1.3 pounds", "covers": [2333782], "physical_format": "Hardcover", "lc_classifications": ["KZ4024", "KZ4024 .C73 2007"], "key": "/books/OL10145820M", "authors": [{"key": "/authors/OL2666939A"}], "subjects": ["International law of territories", "Treaties & other sources of international law", "United Nations & UN agencies", "Law", "Legal Reference / Law Profession", "International", "Law / International", "Decolonization", "State succession", "Treaties"], "isbn_13": ["9780199217625"], "source_records": ["bwb:9780199217625", "marc:marc_loc_2016/BooksAll.2016.part34.utf8:155616598:979"], "title": "The Decolonization of International Law", "identifiers": {"librarything": ["5190975"], "goodreads": ["6333235"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0199217629"], "publish_date": "February 18, 2008", "works": [{"key": "/works/OL8010737W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.2 x 6.1 x 1 inches", "lccn": ["2007043475"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-17T10:34:26.238563"}}
+/type/edition /books/OL10145858M 11 2020-12-17T08:21:35.344550 {"publishers": ["Oxford University Press, USA"], "identifiers": {"librarything": ["5997765"], "goodreads": ["1352234"]}, "weight": "14.9 ounces", "isbn_10": ["0199219974"], "covers": [2333814], "physical_format": "Hardcover", "lc_classifications": ["PR2997.N3", "PR3081 .M34 2007"], "key": "/books/OL10145858M", "authors": [{"key": "/authors/OL2689274A"}], "ocaid": "shakespearesname0000magu", "subjects": ["Personal names", "Shakespeare studies & criticism", "Theatre, drama", "English, Irish, Scottish, Welsh", "Shakespeare", "Literary Criticism / Shakespeare", "Literary Criticism", "Literature - Classics / Criticism", "English language", "Etymology", "Language and languages in literature", "Names", "Names, Personal, in literature"], "isbn_13": ["9780199219971"], "source_records": ["marc:OpenLibraries-Trent-MARCs/tier6.mrc:11788585:1343", "ia:shakespearesname0000magu", "bwb:9780199219971", "marc:marc_loc_2016/BooksAll.2016.part34.utf8:132795249:1449"], "title": "Shakespeare's Names (Oxford Shakespeare Topics)", "number_of_pages": 256, "languages": [{"key": "/languages/eng"}], "local_id": ["urn:trent: 2007025566", "urn:trent:0116405856299"], "publish_date": "December 10, 2007", "works": [{"key": "/works/OL8077640W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.5 x 5.6 x 1.1 inches", "lccn": ["2007025566"], "latest_revision": 11, "revision": 11, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-17T08:21:35.344550"}}
+/type/edition /books/OL10145870M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "subtitle": "a Cultural Review", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Oxford University Press"], "title": "Women", "isbn_13": ["9780199222278"], "isbn_10": ["0199222274"], "publish_date": "February 15, 1996", "key": "/books/OL10145870M", "authors": [{"key": "/authors/OL3378176A"}, {"key": "/authors/OL3378177A"}], "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10146015M 7 2020-11-14T05:15:54.967246 {"publishers": ["Oxford University Press, USA"], "number_of_pages": 650, "subtitle": "Non-Contractual Liability Arising out of Damage Caused to Another", "physical_format": "Hardcover", "lc_classifications": ["KJC158", "KJC1640 .N66 2009"], "latest_revision": 7, "key": "/books/OL10146015M", "authors": [{"key": "/authors/OL229403A"}], "subjects": ["European Union (EU) Law", "Law", "Legal Reference / Law Profession", "Comparative", "International", "Law / Torts", "Torts", "Europe"], "isbn_13": ["9780199229413"], "source_records": ["marc:marc_loc_updates/v38.i08.records.utf8:40037400:1851", "bwb:9780199229413", "marc:marc_loc_2016/BooksAll.2016.part37.utf8:190628463:1851"], "title": "Principles of European Law: Volume Seven", "lccn": ["2010286382"], "identifiers": {"librarything": ["9232795"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0199229414"], "publish_date": "September 12, 2007", "last_modified": {"type": "/type/datetime", "value": "2020-11-14T05:15:54.967246"}, "works": [{"key": "/works/OL1915058W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "0.1 x 0.1 x 0.1 inches", "revision": 7}
+/type/edition /books/OL10146406M 11 2022-12-29T18:47:21.911260 {"publishers": ["Oxford University Press, USA"], "number_of_pages": 240, "weight": "1 pounds", "covers": [2334201], "physical_format": "Hardcover", "lc_classifications": ["DA125.I7", "DA125.I7 D45 2007"], "key": "/books/OL10146406M", "authors": [{"key": "/authors/OL1507046A"}], "subjects": ["British & Irish history: postwar, from c 1945 -", "History of specific racial & ethnic groups", "Immigration & emigration", "Social history", "Postwar period, 1945 to c 2000", "History", "History - General History", "History: World", "United Kingdom, Great Britain", "Europe - Great Britain - General", "Europe - Ireland", "Modern - 20th Century", "History / Great Britain", "20th century", "Emigration and immigration", "Great Britain", "Ireland", "Irish"], "isbn_13": ["9780199276677"], "source_records": ["amazon:0199276676", "marc:marc_loc_updates/v37.i35.records.utf8:16889024:1237", "bwb:9780199276677", "marc:marc_loc_2016/BooksAll.2016.part34.utf8:136243994:1237", "marc:marc_columbia/Columbia-extract-20221130-013.mrc:285841399:1368"], "title": "The Irish in Post-War Britain", "identifiers": {"goodreads": ["6012585"], "librarything": ["8788153"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0199276676"], "publish_date": "October 19, 2007", "works": [{"key": "/works/OL6011809W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.5 x 5.4 x 0.9 inches", "lccn": ["2007028207"], "oclc_numbers": ["144596115"], "latest_revision": 11, "revision": 11, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-29T18:47:21.911260"}}
+/type/edition /books/OL10146642M 2 2011-05-04T21:32:06.534013 {"publishers": ["Oxford University Press"], "physical_format": "Hardcover", "subtitle": "St. Catherine's College", "last_modified": {"type": "/type/datetime", "value": "2011-05-04T21:32:06.534013"}, "title": "Oxford University Almanack", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780199510993"], "isbn_10": ["0199510997"], "publish_date": "December 31, 1983", "key": "/books/OL10146642M", "latest_revision": 2, "works": [{"key": "/works/OL1182132W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10146681M 2 2009-12-09T03:10:24.812246 {"publishers": ["Oxford University Press"], "subtitle": "Academic Year 1986-1987", "isbn_10": ["0199517169"], "number_of_pages": 76, "isbn_13": ["9780199517169"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2009-12-09T03:10:24.812246"}, "publish_date": "December 31, 1986", "key": "/books/OL10146681M", "authors": [{"key": "/authors/OL61430A"}], "title": "Oxford University List of Senior Resident Members", "latest_revision": 2, "works": [{"key": "/works/OL752042W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10147804M 4 2020-08-18T20:06:55.674080 {"publishers": ["Addison Wesley Publishing Company"], "subtitle": "Language Experiences for Young Children", "weight": "1.3 pounds", "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2020-08-18T20:06:55.674080"}, "latest_revision": 4, "key": "/books/OL10147804M", "authors": [{"key": "/authors/OL3378759A"}], "subjects": ["ELT grammars & grammar practice", "Usage guides", "Secondary", "Textbooks", "English"], "isbn_13": ["9780201102017"], "source_records": ["bwb:9780201102017"], "title": "Open the Lights", "number_of_pages": 212, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0201102013"], "publish_date": "June 1982", "oclc_numbers": ["9078527"], "works": [{"key": "/works/OL9332955W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "11 x 8.8 x 0.7 inches", "revision": 4}
+/type/edition /books/OL10148275M 5 2012-06-05T03:40:54.021107 {"publishers": ["Addison-Wesley"], "identifiers": {}, "classifications": {}, "last_modified": {"type": "/type/datetime", "value": "2012-06-05T03:40:54.021107"}, "title": "Gears and Gearing", "physical_format": "Paperback", "notes": {"type": "/type/text", "value": "Science at Work"}, "number_of_pages": 32, "covers": [2334400], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780201140064"], "isbn_10": ["0201140063"], "publish_date": "January 1979", "key": "/books/OL10148275M", "authors": [{"key": "/authors/OL676613A"}], "latest_revision": 5, "works": [{"key": "/works/OL3811449W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10148670M 1 2008-04-30T09:38:13.731961 {"physical_format": "Spiral-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Addison Wesley Higher Education (a Pearson Education company)"], "title": "Mathematics in Our World. Book 3, Levels 11-16. Teacher's Edition", "isbn_13": ["9780201181319"], "isbn_10": ["0201181312"], "publish_date": "1983", "key": "/books/OL10148670M", "authors": [{"key": "/authors/OL2221549A"}, {"key": "/authors/OL769479A"}], "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10148823M 4 2020-10-07T20:44:48.294904 {"publishers": ["Addison Wesley Publishing Company"], "weight": "1.4 ounces", "physical_format": "Paperback", "lc_classifications": [""], "latest_revision": 4, "key": "/books/OL10148823M", "authors": [{"key": "/authors/OL2669804A"}], "subjects": ["Animals - Rabbits", "Children's 4-8 - Fiction - General", "Children: Babies & Toddlers"], "isbn_13": ["9780201193657"], "source_records": ["bwb:9780201193657"], "title": "Hare and the Tortoise Little Book (Esol Elementary Supplement Ser.)", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0201193655"], "publish_date": "March 1989", "last_modified": {"type": "/type/datetime", "value": "2020-10-07T20:44:48.294904"}, "works": [{"key": "/works/OL8018884W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.3 x 5.8 x 0.1 inches", "revision": 4}
+/type/edition /books/OL10148M 4 2022-08-19T00:30:32.584021 {"notes": {"type": "/type/text", "value": "In Hindi.\nA novel."}, "title": "Da\u0304yara\u0304", "authors": [{"key": "/authors/OL7171A"}], "publish_date": "1966", "pagination": "192 p.", "source_records": ["marc:marc_records_scriblio_net/part29.dat:6017843:471", "marc:marc_loc_2016/BooksAll.2016.part43.utf8:13750190:476"], "lccn": ["sa66007880"], "languages": [{"key": "/languages/hin"}], "lc_classifications": ["PK2098.28.L3 D3"], "publish_country": "ii ", "oclc_numbers": ["20052058"], "type": {"key": "/type/edition"}, "key": "/books/OL10148M", "number_of_pages": 192, "works": [{"key": "/works/OL347718W"}], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-19T00:30:32.584021"}}
+/type/edition /books/OL10149394M 7 2018-07-06T17:51:52.536537 {"publishers": ["Addison- Wesley Publishing Company"], "covers": [8004402], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2018-07-06T17:51:52.536537"}, "latest_revision": 7, "key": "/books/OL10149394M", "authors": [{"key": "/authors/OL3379101A"}], "ocaid": "addisonwesleyalg00stan", "contributions": ["Nelson / Blakely (Editor)"], "edition_name": "Teacher's Edition", "languages": [{"key": "/languages/eng"}], "classifications": {}, "source_records": ["ia:addisonwesleyalg00stan"], "title": "Addison-Wesley Algebra", "identifiers": {"goodreads": ["2983905"], "librarything": ["8773676"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780201285413"], "isbn_10": ["020128541X"], "publish_date": "1992", "works": [{"key": "/works/OL9333471W"}], "type": {"key": "/type/edition"}, "revision": 7}
+/type/edition /books/OL10149548M 3 2012-06-25T20:15:21.398519 {"publishers": ["Addison Wesley Publishing Company"], "physical_format": "Paperback", "classifications": {}, "last_modified": {"type": "/type/datetime", "value": "2012-06-25T20:15:21.398519"}, "title": "Macroeconomics", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "notes": {"type": "/type/text", "value": "3e Value Edition"}, "identifiers": {}, "edition_name": "3e Value Edition", "isbn_13": ["9780201303469"], "isbn_10": ["0201303469"], "publish_date": "March 1998", "key": "/books/OL10149548M", "authors": [{"key": "/authors/OL199050A"}], "latest_revision": 3, "works": [{"key": "/works/OL1729686W"}], "type": {"key": "/type/edition"}, "subjects": ["Economics - Macroeconomics", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10150447M 5 2010-08-12T16:03:43.326260 {"publishers": ["DoubleDay"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-08-12T16:03:43.326260"}, "title": "Urban Renewal People, Politics and Planning", "identifiers": {"goodreads": ["5678843"], "librarything": ["2005689"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780385076227"], "isbn_10": ["0385076223"], "publish_date": "January 2000", "key": "/books/OL10150447M", "authors": [{"key": "/authors/OL3379449A"}], "latest_revision": 5, "works": [{"key": "/works/OL9334234W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10151174M 3 2010-04-13T05:13:14.519257 {"languages": [{"key": "/languages/eng"}], "key": "/books/OL10151174M", "publishers": ["Doubleday"], "title": "The white Russian", "number_of_pages": 464, "isbn_13": ["9780385508704"], "covers": [2412062], "physical_format": "Paperback", "isbn_10": ["0385508700"], "publish_date": "2003", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:13:14.519257"}, "authors": [{"key": "/authors/OL1479047A"}], "latest_revision": 3, "works": [{"key": "/works/OL5960569W"}], "type": {"key": "/type/edition"}, "subjects": ["Fiction - Mystery/ Detective", "Mystery & Detective - General"], "first_sentence": {"type": "/type/text", "value": "The arctic wind sliced through Ruzsky's thin woolen overcoat."}, "revision": 3}
+/type/edition /books/OL10151232M 11 2020-12-17T09:11:00.162624 {"publishers": ["Spiegel & Grau"], "number_of_pages": 352, "subtitle": "A Novel", "covers": [2412116], "physical_format": "Hardcover", "key": "/books/OL10151232M", "authors": [{"key": "/authors/OL2849930A"}], "subjects": ["Literary", "Fiction / Literary", "Coming of Age", "Fiction", "Fiction - General"], "isbn_13": ["9780385523592"], "source_records": ["amazon:0385523599", "marc:marc_loc_updates/v36.i24.records.utf8:5705256:796", "marc:marc_loc_updates/v36.i27.records.utf8:7310245:1017", "marc:marc_loc_updates/v36.i32.records.utf8:6195337:1017", "marc:marc_loc_2016/BooksAll.2016.part34.utf8:141378791:1017"], "title": "Mexican High", "identifiers": {"librarything": ["4775974"], "goodreads": ["2620652"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0385523599"], "publish_date": "June 10, 2008", "oclc_numbers": ["163614089"], "works": [{"key": "/works/OL8513659W"}], "type": {"key": "/type/edition"}, "lccn": ["2007032219"], "lc_classifications": ["PS3613.O5377 M49 2008"], "latest_revision": 11, "revision": 11, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-17T09:11:00.162624"}}
+/type/edition /books/OL10151539M 2 2009-12-15T00:43:38.208450 {"physical_format": "Hardcover", "subtitle": "Principles, Methods, Applications", "title": "Reflectance Spectroscopy", "isbn_10": ["0387045872"], "publishers": ["Springer-Verlag"], "isbn_13": ["9780387045870"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:43:38.208450"}, "publish_date": "June 1969", "key": "/books/OL10151539M", "authors": [{"key": "/authors/OL3379704A"}], "latest_revision": 2, "subjects": ["Reflectance spectroscopy"], "works": [{"key": "/works/OL9334497W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10151609M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Hardcover", "subtitle": "Numerical Data and Functional Relationships in Science and Technology - New Series Gruppe/Group 1 Elementary Particles", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Springer"], "title": "Landolt-Bvrnstein", "isbn_13": ["9780387060316"], "isbn_10": ["0387060316"], "publish_date": "December 1972", "key": "/books/OL10151609M", "authors": [{"key": "/authors/OL3379745A"}, {"key": "/authors/OL2136692A"}, {"key": "/authors/OL3379746A"}], "type": {"key": "/type/edition"}, "subjects": ["Magnetism", "Physics", "Science"], "revision": 1}
+/type/edition /books/OL10151825M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Springer"], "title": "Beilstein 3/4 Erg W Bd 025 02", "isbn_13": ["9780387107349"], "isbn_10": ["0387107347"], "publish_date": "October 1981", "key": "/books/OL10151825M", "type": {"key": "/type/edition"}, "subjects": ["Chemistry - General", "Science"], "revision": 1}
+/type/edition /books/OL10151932M 2 2009-12-15T00:43:38.208450 {"physical_format": "Hardcover", "title": "Das Elektronenzephalogramm in Der Anaesthesie", "isbn_10": ["0387118985"], "publishers": ["Springer"], "isbn_13": ["9780387118987"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:43:38.208450"}, "publish_date": "June 1983", "key": "/books/OL10151932M", "authors": [{"key": "/authors/OL3379907A"}], "latest_revision": 2, "subjects": ["General", "Medical / Nursing"], "works": [{"key": "/works/OL9334672W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10152074M 2 2009-12-15T00:43:38.208450 {"physical_format": "Hardcover", "subtitle": "Morphology, Physiology, Genetics, Taxonomy, Geobotany", "title": "Progress in Botany", "isbn_10": ["0387137319"], "publishers": ["Springer-Verlag"], "isbn_13": ["9780387137315"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:43:38.208450"}, "publish_date": "December 1984", "key": "/books/OL10152074M", "authors": [{"key": "/authors/OL3379962A"}], "latest_revision": 2, "subjects": ["Botany (General)"], "works": [{"key": "/works/OL9334752W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10152244M 3 2010-04-13T05:13:14.519257 {"publishers": ["Springer-Verlag"], "languages": [{"key": "/languages/eng"}], "subtitle": "Distributed Collector Systems", "key": "/books/OL10152244M", "title": "Iea/Ssps Solar Thermal Power Plants", "isbn_13": ["9780387161471"], "covers": [5038206], "physical_format": "Paperback", "isbn_10": ["0387161473"], "publish_date": "April 1986", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:13:14.519257"}, "authors": [{"key": "/authors/OL3380054A"}], "latest_revision": 3, "works": [{"key": "/works/OL9334838W"}], "type": {"key": "/type/edition"}, "subjects": ["Electric Power Generation", "Solar Energy Engineering"], "revision": 3}
+/type/edition /books/OL10152274M 5 2011-02-04T08:46:49.876556 {"publishers": ["Springer"], "number_of_pages": 232, "contributors": [{"role": "Editor", "name": "Henri Benoit"}], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-02-04T08:46:49.876556"}, "latest_revision": 5, "key": "/books/OL10152274M", "authors": [{"key": "/authors/OL3380070A"}], "subjects": ["Chemistry - General", "Polymer Chemistry", "Science"], "edition_name": "1 edition", "languages": [{"key": "/languages/eng"}], "classifications": {}, "title": "Biopolymers/non-exlusion Hplc (Advances in Polymer Science)", "identifiers": {"goodreads": ["5943739"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780387164229"], "isbn_10": ["0387164227"], "publish_date": "1986", "works": [{"key": "/works/OL9334864W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10153131M 4 2011-04-25T20:13:02.543132 {"publishers": ["Springer"], "languages": [{"key": "/languages/eng"}], "identifiers": {"goodreads": ["4227400"]}, "subtitle": "Structural Botany Physiology Genetics Taxonomy Geobotany (Progress in Botany)", "last_modified": {"type": "/type/datetime", "value": "2011-04-25T20:13:02.543132"}, "title": "Progress in Botany", "number_of_pages": 419, "isbn_13": ["9780387517858"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Hardcover", "isbn_10": ["0387517855"], "publish_date": "March 1990", "key": "/books/OL10153131M", "authors": [{"key": "/authors/OL2681236A"}, {"key": "/authors/OL1107789A"}, {"key": "/authors/OL1455935A"}, {"key": "/authors/OL3380596A"}, {"key": "/authors/OL2625640A"}], "latest_revision": 4, "oclc_numbers": ["221211847"], "type": {"key": "/type/edition"}, "subjects": ["Life Sciences - Botany", "Botany (General)", "Science", "Science/Mathematics"], "revision": 4}
+/type/edition /books/OL1015360M 7 2020-11-24T02:48:15.412966 {"publishers": ["Sybex"], "identifiers": {"goodreads": ["4334690"]}, "ia_box_id": ["IA176001"], "isbn_10": ["0782118879"], "covers": [3863192], "ia_loaded_id": ["abcsofinternet00crum"], "lc_classifications": ["TK5105.875.I57 C778 1996"], "latest_revision": 7, "key": "/books/OL1015360M", "authors": [{"key": "/authors/OL78866A"}], "ocaid": "abcsofinternet00crum", "publish_places": ["San Francisco"], "pagination": "xxi, 362 p. :", "source_records": ["ia:abcsofinternet00crum", "marc:marc_loc_2016/BooksAll.2016.part25.utf8:117729429:661"], "title": "The ABCs of the Internet", "dewey_decimal_class": ["005.7/13"], "notes": {"type": "/type/text", "value": "Includes index."}, "number_of_pages": 362, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["96067838"], "subjects": ["Internet."], "publish_date": "1996", "publish_country": "cau", "last_modified": {"type": "/type/datetime", "value": "2020-11-24T02:48:15.412966"}, "by_statement": "Christian Crumlish.", "oclc_numbers": ["34726612"], "works": [{"key": "/works/OL891237W"}], "type": {"key": "/type/edition"}, "revision": 7}
+/type/edition /books/OL10153660M 3 2011-04-27T03:52:10.583976 {"publishers": ["Springer-Verlag"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T03:52:10.583976"}, "title": "Numerische Methoden in Der Berechnung Elektromagnetischer Felder", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780387550053"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0387550054"], "publish_date": "April 1996", "key": "/books/OL10153660M", "authors": [{"key": "/authors/OL3380977A"}], "latest_revision": 3, "oclc_numbers": ["34086618"], "works": [{"key": "/works/OL9335549W"}], "type": {"key": "/type/edition"}, "subjects": ["Science/Mathematics"], "revision": 3}
+/type/edition /books/OL10153744M 5 2011-11-02T23:43:07.070725 {"publishers": ["Springer"], "identifiers": {"goodreads": ["5778076"]}, "subtitle": "Literature 1991/Volumes 53A and 53B, Part 1 (Astronomy and Astrophysics Abstracts)", "last_modified": {"type": "/type/datetime", "value": "2011-11-02T23:43:07.070725"}, "title": "Astronomy and Astrophysics Abstracts", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 1625, "isbn_13": ["9780387553146"], "edition_name": "Boxed edition", "physical_format": "Hardcover", "isbn_10": ["0387553142"], "publish_date": "August 1992", "key": "/books/OL10153744M", "authors": [{"key": "/authors/OL3380700A"}, {"key": "/authors/OL3380501A"}, {"key": "/authors/OL4822017A"}], "latest_revision": 5, "works": [{"key": "/works/OL16231978W"}], "type": {"key": "/type/edition"}, "subjects": ["Astronomy - General", "Astrophysics & Space Science", "Astronomy (General)", "Science", "Science/Mathematics"], "revision": 5}
+/type/edition /books/OL10154079M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/und"}], "physical_format": "Paperback", "subtitle": "Immunologie, Mikrobiologie, Funktionsstorungen, Klinische Manifestation", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Springer-Verlag"], "type": {"key": "/type/edition"}, "title": "Okosystem Darm IV", "isbn_13": ["9780387561981"], "isbn_10": ["0387561986"], "publish_date": "February 1993", "key": "/books/OL10154079M", "authors": [{"key": "/authors/OL3381261A"}, {"key": "/authors/OL3381262A"}, {"key": "/authors/OL3143232A"}], "contributions": ["G. Lux (Editor)"], "subjects": ["Gastroenterology", "Science/Mathematics"], "revision": 1}
+/type/edition /books/OL10154214M 2 2009-12-15T00:43:39.730837 {"physical_format": "Hardcover", "title": "Atlas Der Computerperimetrie", "isbn_10": ["0387566112"], "publishers": ["Springer-Verlag"], "isbn_13": ["9780387566115"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:43:39.730837"}, "publish_date": "November 1993", "key": "/books/OL10154214M", "authors": [{"key": "/authors/OL3265461A"}], "latest_revision": 2, "subjects": ["Health/Fitness"], "works": [{"key": "/works/OL9200232W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10155072M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Springer-Verlag"], "type": {"key": "/type/edition"}, "title": "Moglichkeiten Und Grenzen Der Reduktion Von Tierversuchen (Ersatz-Und Erganzingsmethoden Zu Tieversuchen)", "isbn_13": ["9780387823904"], "isbn_10": ["0387823905"], "publish_date": "September 1992", "key": "/books/OL10155072M", "authors": [{"key": "/authors/OL3381963A"}, {"key": "/authors/OL3381964A"}], "contributions": ["H. A. Tritthart (Editor)"], "subjects": ["Toxicology", "Health/Fitness"], "revision": 1}
+/type/edition /books/OL10155211M 18 2022-12-04T21:29:43.490905 {"publishers": ["Springer"], "identifiers": {"librarything": ["6612563"], "amazon": ["B000NOSCTE", "B0000CJZPL", "B001U3LLUE", "B003TK9B3K", "B0000CL4XQ", "B001NXS8CA", "B0000CIZY4", "B002BCCT0E", "B008EEWKLQ"], "better_world_books": ["BWBM51848770", "BWB19662260", "BWB13107195", "BWB19357341", "BWB13662042", "BWB13236713", "BWB15697374", "BWBM24076424"]}, "title": "Study of Time IV Proceedings", "number_of_pages": 286, "isbn_13": ["9780387905945"], "covers": [5038478], "physical_format": "Hardcover", "isbn_10": ["0387905944"], "publish_date": "January 1982", "key": "/books/OL10155211M", "authors": [{"key": "/authors/OL2655093A"}], "works": [{"key": "/works/OL7957097W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Probability & Statistics - General", "Mathematics", "Congresses", "Time", "Science/Mathematics"], "local_id": ["urn:bwbsku:W7-CDD-092", "urn:bwbsku:W7-CKI-319", "urn:bwbsku:W7-CMC-437", "urn:bwbsku:W7-CKI-320", "urn:bwbsku:O8-BLV-771", "urn:bwbsku:W7-CKI-321", "urn:bwbsku:W7-CLF-863", "urn:bwbsku:W7-CKI-331", "urn:bwbsku:W7-CKI-330"], "source_records": ["promise:bwb_daily_pallets_2022-07-28"], "latest_revision": 18, "revision": 18, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T21:29:43.490905"}}
+/type/edition /books/OL10155237M 4 2022-07-11T11:17:29.624678 {"publishers": ["Springer"], "languages": [{"key": "/languages/eng"}], "title": "Vertebrate Hard Tissues(nop-Order from Crane & Russak)", "isbn_13": ["9780387911175"], "physical_format": "Hardcover", "isbn_10": ["0387911170"], "publish_date": "November 1974", "key": "/books/OL10155237M", "oclc_numbers": ["1238191"], "type": {"key": "/type/edition"}, "subjects": ["Life Sciences - General", "Science"], "works": [{"key": "/works/OL26292873W"}], "source_records": ["bwb:9780387911175", "marc:marc_uic/UIC_2022.mrc:70592454:1331"], "local_id": ["urn:uic:38198306965094"], "lccn": ["74078483"], "lc_classifications": ["QM569 .H32"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-11T11:17:29.624678"}}
+/type/edition /books/OL10155456M 3 2010-04-24T17:55:39.722477 {"publishers": ["Springer"], "languages": [{"key": "/languages/eng"}], "key": "/books/OL10155456M", "title": "The Biomechanics of Internal Fixation. 16 MM MT", "identifiers": {"goodreads": ["4886629"]}, "isbn_13": ["9780387923116"], "physical_format": "Hardcover", "isbn_10": ["038792311X"], "publish_date": "January 1974", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T17:55:39.722477"}, "authors": [{"key": "/authors/OL3382180A"}, {"key": "/authors/OL3382190A"}, {"key": "/authors/OL3382196A"}], "latest_revision": 3, "type": {"key": "/type/edition"}, "subjects": ["General", "Medical / Nursing"], "revision": 3}
+/type/edition /books/OL10155705M 1 2008-04-30T09:38:13.731961 {"physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Springer"], "number_of_pages": 283, "isbn_13": ["9780387936475"], "isbn_10": ["0387936475"], "publish_date": "August 1992", "key": "/books/OL10155705M", "authors": [{"key": "/authors/OL2093646A"}], "title": "Gmelin Handbook of Inorganic and Organometallic Chemistry - 8th Edition Element O-S OS. Osmium (System-NR. 66) Ergdnzungsband A-C Organoosmium Compoun (OS Osmium)", "type": {"key": "/type/edition"}, "subjects": ["Chemistry - Inorganic", "Science"], "revision": 1}
+/type/edition /books/OL10156170M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["McGraw-Hill"], "number_of_pages": 233, "isbn_13": ["9780390343802"], "isbn_10": ["0390343803"], "publish_date": "2003", "key": "/books/OL10156170M", "title": "Introduction to American Politics Political Science 202 (Political Science)", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10156271M 5 2022-11-14T22:36:13.435154 {"publishers": ["Meredith Press"], "classifications": {}, "contributors": [{"role": "Editor", "name": "Eleanor Krane Paucker"}], "title": "Relatos De Unamuno", "identifiers": {"amazon": ["B000K0ELS2"], "better_world_books": ["BWB14193501"]}, "isbn_13": ["9780390890009"], "physical_format": "Paperback", "isbn_10": ["0390890006"], "publish_date": "1969", "key": "/books/OL10156271M", "authors": [{"key": "/authors/OL3382545A"}], "works": [{"key": "/works/OL9336648W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:T2-DOK-508", "urn:bwbsku:T2-DOK-516"], "source_records": ["promise:bwb_daily_pallets_2022-09-30"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-14T22:36:13.435154"}}
+/type/edition /books/OL10156434M 2 2009-12-15T00:43:41.188284 {"publishers": ["Humanities Pr"], "subtitle": "An Econometric Study", "title": "Consumer Behaviour in India", "isbn_10": ["0391018345"], "isbn_13": ["9780391018341"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:43:41.188284"}, "publish_date": "June 1980", "key": "/books/OL10156434M", "authors": [{"key": "/authors/OL3382609A"}], "latest_revision": 2, "works": [{"key": "/works/OL9336744W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10156447M 2 2009-12-15T00:43:41.188284 {"publishers": ["Prometheus Books"], "key": "/books/OL10156447M", "title": "Tribal World and Its Transformation", "isbn_13": ["9780391019331"], "physical_format": "Textbook Binding", "isbn_10": ["0391019333"], "publish_date": "June 1980", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:43:41.188284"}, "authors": [{"key": "/authors/OL1487737A"}], "latest_revision": 2, "works": [{"key": "/works/OL5979400W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10156474M 3 2011-04-26T15:08:38.906519 {"publishers": ["Humanities Pr"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-26T15:08:38.906519"}, "title": "Emerson and Social Reform", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780391021990"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0391021990"], "publish_date": "June 1981", "key": "/books/OL10156474M", "authors": [{"key": "/authors/OL3382628A"}], "latest_revision": 3, "oclc_numbers": ["7557626"], "works": [{"key": "/works/OL9336784W"}], "type": {"key": "/type/edition"}, "subjects": ["American Essays"], "revision": 3}
+/type/edition /books/OL10156528M 5 2011-04-25T20:50:45.763858 {"publishers": ["Humanities Pr"], "physical_format": "Hardcover", "subtitle": "The Religious Dimension", "last_modified": {"type": "/type/datetime", "value": "2011-04-25T20:50:45.763858"}, "title": "Forster's Passage to India", "identifiers": {"goodreads": ["374438"]}, "isbn_13": ["9780391024274"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0391024272"], "publish_date": "November 1981", "key": "/books/OL10156528M", "authors": [{"key": "/authors/OL3382629A"}], "latest_revision": 5, "oclc_numbers": ["8605317"], "works": [{"key": "/works/OL9336786W"}], "type": {"key": "/type/edition"}, "subjects": ["20th Century English Novel And Short Story"], "revision": 5}
+/type/edition /books/OL10156707M 3 2011-04-25T18:59:48.701531 {"publishers": ["Humanities Pr"], "subtitle": "Documents 1980", "last_modified": {"type": "/type/datetime", "value": "2011-04-25T18:59:48.701531"}, "source_records": ["amazon:0391029282"], "title": "India and the West", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780391029286"], "physical_format": "Hardcover", "isbn_10": ["0391029282"], "publish_date": "June 1983", "key": "/books/OL10156707M", "authors": [{"key": "/authors/OL2751A"}], "latest_revision": 3, "oclc_numbers": ["234286955"], "works": [{"key": "/works/OL317576W"}], "type": {"key": "/type/edition"}, "subjects": ["Foreign Relations 1990-"], "revision": 3}
+/type/edition /books/OL10156790M 4 2011-04-29T07:21:51.002042 {"publishers": ["Humanities Pr"], "last_modified": {"type": "/type/datetime", "value": "2011-04-29T07:21:51.002042"}, "title": "The Paintings in the Buddhist Cave-Temples of Ajanta", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780391031364"], "physical_format": "Hardcover", "isbn_10": ["0391031368"], "publish_date": "July 1984", "key": "/books/OL10156790M", "authors": [{"key": "/authors/OL1229105A"}], "latest_revision": 4, "oclc_numbers": ["234287034"], "works": [{"key": "/works/OL5347211W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10157056M 5 2022-12-07T10:23:26.145637 {"publishers": ["W W Norton & Co Ltd"], "physical_format": "Unknown Binding", "classifications": {}, "source_records": ["bwb:9780393012910", "marc:marc_columbia/Columbia-extract-20221130-001.mrc:24508808:1194"], "title": "Weiss Lofts", "notes": {"type": "/type/text", "value": "Cloth"}, "identifiers": {}, "isbn_13": ["9780393012910"], "isbn_10": ["0393012913"], "publish_date": "April 1, 1979", "key": "/books/OL10157056M", "authors": [{"key": "/authors/OL2684611A"}], "works": [{"key": "/works/OL8060587W"}], "type": {"key": "/type/edition"}, "subjects": ["Sports & Outdoor Recreation"], "lccn": ["79013371"], "lc_classifications": ["NA7208 .F7 1979"], "oclc_numbers": ["4956853"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-07T10:23:26.145637"}}
+/type/edition /books/OL10157066M 3 2011-04-26T10:11:08.715573 {"publishers": ["W W Norton & Co Inc"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-26T10:11:08.715573"}, "title": "State of the Unions", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780393015195"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["039301519X"], "publish_date": "November 1990", "key": "/books/OL10157066M", "authors": [{"key": "/authors/OL3382859A"}], "latest_revision": 3, "oclc_numbers": ["151170372"], "works": [{"key": "/works/OL9337095W"}], "type": {"key": "/type/edition"}, "subjects": ["Trade unions", "Labor Unions", "Unassigned Title"], "revision": 3}
+/type/edition /books/OL1015734M 6 2020-11-24T02:52:37.441246 {"other_titles": ["Ten minute guide to long-term retirement planning", "Long-term retirement planning"], "publishers": ["Macmillan Spectrum/Alpha Books"], "identifiers": {"goodreads": ["1941935"]}, "isbn_10": ["0028611802"], "series": ["10 minute guides"], "covers": [1062488], "lc_classifications": ["HG179 .B344 1996"], "latest_revision": 6, "key": "/books/OL1015734M", "authors": [{"key": "/authors/OL406995A"}], "publish_places": ["New York, NY"], "lccn": ["96068543"], "uri_descriptions": ["Table of contents"], "pagination": "vi, 138 p. ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part25.utf8:118084405:1039"], "title": "10 minute guide to long-term retirement planning", "url": ["http://lcweb.loc.gov/catdir/toc/96-68543.html"], "notes": {"type": "/type/text", "value": "Includes index."}, "number_of_pages": 138, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "dewey_decimal_class": ["332.024/01"], "subjects": ["Retirement income -- United States -- Planning.", "Investments -- United States.", "Finance, Personal."], "publish_date": "1996", "publish_country": "nyu", "last_modified": {"type": "/type/datetime", "value": "2020-11-24T02:52:37.441246"}, "subject_place": ["United States", "United States."], "by_statement": "by Mark Battersby.", "oclc_numbers": ["35823092"], "works": [{"key": "/works/OL2766966W"}], "type": {"key": "/type/edition"}, "uris": ["http://lcweb.loc.gov/catdir/toc/96-68543.html"], "revision": 6}
+/type/edition /books/OL10157351M 12 2022-12-26T17:18:47.166955 {"publishers": ["W. W. Norton"], "number_of_pages": 320, "subtitle": "The Story of Two Black Regiments that Changed the Course of the Civil War", "isbn_10": ["0393065863"], "covers": [2412753], "physical_format": "Hardcover", "key": "/books/OL10157351M", "authors": [{"key": "/authors/OL591438A"}], "ocaid": "firebrandofliber0000ashs", "subjects": ["History", "History - Military / War", "History: American", "USA", "United States - Civil War", "History / United States / Civil War Period (1850-1877)"], "isbn_13": ["9780393065862"], "source_records": ["marc:marc_openlibraries_sanfranciscopubliclibrary/sfpl_chq_2018_12_24_run03.mrc:259961145:3993", "ia:firebrandofliber0000ashs", "bwb:9780393065862", "marc:marc_loc_2016/BooksAll.2016.part35.utf8:95269540:2166", "promise:bwb_daily_pallets_2021-07-15", "marc:marc_columbia/Columbia-extract-20221130-015.mrc:112429827:3370"], "title": "Firebrand of Liberty", "identifiers": {"librarything": ["4812851"], "goodreads": ["3601482"]}, "languages": [{"key": "/languages/eng"}], "local_id": ["urn:sfpl:31223082091050", "urn:sfpl:31223082091035", "urn:sfpl:31223082091027", "urn:sfpl:31223082091068", "urn:sfpl:31223082091043", "urn:sfpl:31223082091084", "urn:bwbsku:T2-AXO-065"], "publish_date": "July 7, 2008", "works": [{"key": "/works/OL3529799W"}], "type": {"key": "/type/edition"}, "lccn": ["2008002503"], "lc_classifications": ["E540.N3 A84 2008"], "oclc_numbers": ["181139409"], "latest_revision": 12, "revision": 12, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-26T17:18:47.166955"}}
+/type/edition /books/OL10157367M 15 2022-06-17T06:59:47.910102 {"publishers": ["W. W. Norton"], "number_of_pages": 256, "subtitle": "An Insider's Guide for Directors and Trustees", "isbn_10": ["0393066452"], "covers": [2412769], "physical_format": "Hardcover", "key": "/books/OL10157367M", "authors": [{"key": "/authors/OL225547A"}], "ocaid": "boardbookinsider0000bowe", "subjects": ["Economics", "Business & Economics", "Business / Economics / Finance", "Business/Economics", "Business Etiquette", "Leadership", "Business & Economics / Business Etiquette", "Boards of directors", "Corporate governance", "Directors of corporations"], "isbn_13": ["9780393066456"], "classifications": {}, "source_records": ["amazon:0393066452", "marc:marc_loc_updates/v36.i26.records.utf8:7133240:951", "marc:marc_loc_updates/v36.i27.records.utf8:8255654:1039", "marc:marc_loc_updates/v36.i30.records.utf8:7476095:1039", "marc:marc_openlibraries_sanfranciscopubliclibrary/sfpl_chq_2018_12_24_run03.mrc:255003013:2237", "ia:boardbookinsider0000bowe", "bwb:9780393066456", "marc:marc_loc_2016/BooksAll.2016.part34.utf8:161983038:1039"], "title": "The", "notes": {"type": "/type/text", "value": "Board Book"}, "identifiers": {"goodreads": ["3294176"], "librarything": ["5342860"]}, "languages": [{"key": "/languages/eng"}], "local_id": ["urn:sfpl:31223082581878"], "publish_date": "April 7, 2008", "works": [{"key": "/works/OL1884150W"}], "type": {"key": "/type/edition"}, "lccn": ["2007048476"], "lc_classifications": ["HD2745 .B62 2008", "HD2745.B62 2008"], "latest_revision": 15, "revision": 15, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-17T06:59:47.910102"}}
+/type/edition /books/OL10157590M 5 2020-08-28T11:20:41.029666 {"publishers": ["W W Norton & Co Inc (Np)"], "weight": "2.5 pounds", "edition_name": "7th Pkg edition", "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2020-08-28T11:20:41.029666"}, "latest_revision": 5, "key": "/books/OL10157590M", "authors": [{"key": "/authors/OL244705A"}], "subjects": ["English, Irish, Scottish, Welsh", "Literary Criticism"], "isbn_13": ["9780393151336"], "source_records": ["bwb:9780393151336"], "title": "The Norton Anthology of English Literature With Wuthering Heights", "identifiers": {"goodreads": ["1469768"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0393151336"], "publish_date": "June 30, 2003", "works": [{"key": "/works/OL2026378W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.2 x 6 x 3.2 inches", "revision": 5}
+/type/edition /books/OL10157686M 5 2022-12-03T22:04:00.342448 {"publishers": ["W W Norton & Co Inc"], "weight": "11.2 ounces", "covers": [10319095], "physical_format": "Paperback", "key": "/books/OL10157686M", "authors": [{"key": "/authors/OL2685185A"}], "ocaid": "florence0000maca", "subjects": ["Europe - Italy", "Travel", "Travel - Foreign"], "edition_name": "6th edition", "source_records": ["ia:florence0000maca", "bwb:9780393312744", "amazon:0393312747"], "title": "Blue Guide Florence", "number_of_pages": 300, "isbn_13": ["9780393312744"], "isbn_10": ["0393312747"], "publish_date": "September 1995", "works": [{"key": "/works/OL8062560W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "7.5 x 4.8 x 0.8 inches", "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-03T22:04:00.342448"}}
+/type/edition /books/OL1015810M 6 2020-11-24T02:53:29.246735 {"publishers": ["Proctor Publications"], "number_of_pages": 233, "subtitle": "virtual reality vs. actual reality, a metaphor, and the irony of Christianity", "isbn_10": ["1882792254", "1882792300"], "subject_place": ["United States", "United States."], "lc_classifications": ["BR526 .B87 1996"], "latest_revision": 6, "key": "/books/OL1015810M", "authors": [{"key": "/authors/OL547130A"}], "publish_places": ["Ann Arbor, Mich"], "pagination": "v, 233 p. ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part25.utf8:118152505:1066"], "title": "Survival of American democracy", "dewey_decimal_class": ["261.7/0973"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 231-232) and indexes."}, "identifiers": {"goodreads": ["264234", "1151662"]}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["96068693"], "subjects": ["Christianity and politics -- United States.", "Democracy -- Religious aspects -- Christianity.", "United States -- History -- Religious aspects -- Christianity.", "United States -- Moral conditions.", "United States -- Politics and government.", "United States -- Church history."], "publish_date": "1996", "publish_country": "miu", "last_modified": {"type": "/type/datetime", "value": "2020-11-24T02:53:29.246735"}, "by_statement": "by Bruce P. Burns.", "works": [{"key": "/works/OL3364658W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL10158126M 5 2011-04-29T17:44:20.795793 {"publishers": ["W.W. Norton and Company"], "identifiers": {"goodreads": ["1932098"]}, "subtitle": "The American polity, the people and their government", "physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T17:44:20.795793"}, "latest_revision": 5, "key": "/books/OL10158126M", "authors": [{"key": "/authors/OL3383120A"}], "subjects": ["American polity", "Ladd, Everett Carll", "Politics and government", "United States"], "isbn_13": ["9780393955958"], "title": "Instructor's manual and test-item file", "number_of_pages": 286, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0393955958"], "publish_date": "1987", "oclc_numbers": ["26089325"], "works": [{"key": "/works/OL9337413W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10158251M 5 2020-08-27T12:42:13.096982 {"publishers": ["W. W. Norton & Company"], "subtitle": "Readings and Study Guide", "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2020-08-27T12:42:13.096982"}, "latest_revision": 5, "key": "/books/OL10158251M", "authors": [{"key": "/authors/OL228283A"}, {"key": "/authors/OL3383155A"}, {"key": "/authors/OL234521A"}], "subjects": ["General", "Politics - Current Events"], "isbn_13": ["9780393961690"], "source_records": ["bwb:9780393961690"], "title": "American Government", "identifiers": {"librarything": ["4937104"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0393961699"], "publish_date": "January 1992", "oclc_numbers": ["64074897"], "works": [{"key": "/works/OL15315932W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10158414M 1 2008-04-30T09:38:13.731961 {"physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["W.W. Norton"], "title": "Biological Science 6e (ISE) Pkged with Bioxplorer +DMac", "isbn_13": ["9780393969610"], "isbn_10": ["0393969614"], "publish_date": "July 30, 1996", "key": "/books/OL10158414M", "authors": [{"key": "/authors/OL2627198A"}], "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10158568M 3 2020-08-30T00:23:35.320193 {"publishers": ["R.S. Means Company"], "last_modified": {"type": "/type/datetime", "value": "2020-08-30T00:23:35.320193"}, "source_records": ["bwb:9780393982060"], "title": "We the People", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780393982060"], "physical_format": "Paperback", "isbn_10": ["0393982068"], "publish_date": "July 1997", "key": "/books/OL10158568M", "authors": [{"key": "/authors/OL766332A"}], "latest_revision": 3, "works": [{"key": "/works/OL4091476W"}], "type": {"key": "/type/edition"}, "subjects": ["Constitutions", "Political Science", "Politics - Current Events"], "revision": 3}
+/type/edition /books/OL10159351M 2 2022-10-29T05:35:09.401429 {"physical_format": "Paperback", "publishers": ["Random House"], "title": "Study Guide for Child Development", "isbn_13": ["9780394376141"], "isbn_10": ["0394376145"], "publish_date": "January 1988", "key": "/books/OL10159351M", "type": {"key": "/type/edition"}, "works": [{"key": "/works/OL29245646W"}], "covers": [12979368], "ocaid": "studyguideforchi0000srou", "oclc_numbers": ["896754350"], "source_records": ["ia:studyguideforchi0000srou"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-29T05:35:09.401429"}}
+/type/edition /books/OL10159557M 3 2011-04-27T18:38:53.410190 {"publishers": ["Random House"], "last_modified": {"type": "/type/datetime", "value": "2011-04-27T18:38:53.410190"}, "source_records": ["amazon:0394443020"], "title": "Richer Than Spices", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780394443027"], "physical_format": "Hardcover", "isbn_10": ["0394443020"], "publish_date": "January 2000", "key": "/books/OL10159557M", "authors": [{"key": "/authors/OL2213685A"}], "latest_revision": 3, "oclc_numbers": ["500560366"], "works": [{"key": "/works/OL173271W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10159733M 5 2022-12-17T19:45:48.474389 {"publishers": ["Random House Trade"], "physical_format": "Hardcover", "title": "Magic-Users and Illusionists", "identifiers": {"goodreads": ["1712702"]}, "edition_name": "Game edition", "isbn_13": ["9780394536125"], "isbn_10": ["0394536126"], "publish_date": "August 1983", "key": "/books/OL10159733M", "authors": [{"key": "/authors/OL2686350A"}], "works": [{"key": "/works/OL8065996W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Games / Gamebooks / Crosswords", "Fantasy"], "source_records": ["bwb:9780394536125"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T19:45:48.474389"}}
+/type/edition /books/OL10159776M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Random House Trade Paperbacks"], "title": "Self-Help for Premenstrual Syndrome", "isbn_13": ["9780394541259"], "isbn_10": ["0394541251"], "publish_date": "July 1986", "key": "/books/OL10159776M", "type": {"key": "/type/edition"}, "subjects": ["Menstruation", "Premenstrual syndrome", "Self-care, Health"], "revision": 1}
+/type/edition /books/OL10160001M 4 2021-08-18T11:23:12.544766 {"publishers": ["Grove Press"], "title": "Other Places", "identifiers": {"librarything": ["32723"]}, "isbn_13": ["9780394622378"], "physical_format": "Hardcover", "isbn_10": ["0394622375"], "publish_date": "March 1983", "key": "/books/OL10160001M", "oclc_numbers": ["11044158"], "type": {"key": "/type/edition"}, "subjects": ["Literature: Classics"], "works": [{"key": "/works/OL24845309W"}], "covers": [11691066], "ocaid": "otherplacesfourp0000pint", "lccn": ["85109367"], "lc_classifications": ["PR6066.I53 A6 1984b"], "source_records": ["ia:otherplacesfourp0000pint"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-08-18T11:23:12.544766"}}
+/type/edition /books/OL1016018M 5 2020-11-24T02:55:43.873079 {"other_titles": ["Illustrated guide to the forests, fields, wetlands, sand dunes and 127 natural attractions along New York State's Great Lakes, and Niagara and St. Lawrence Rivers"], "publishers": ["Seaway Trail Foundation"], "identifiers": {"goodreads": ["5126100"], "librarything": ["211507"]}, "isbn_10": ["094368904X"], "subject_place": ["New York State Seaway Trail (N.Y.)", "New York (State)", "New York State Seaway Trail"], "lc_classifications": ["QH105.N7 C69 1996"], "latest_revision": 5, "key": "/books/OL1016018M", "authors": [{"key": "/authors/OL144977A"}], "publish_places": ["Sackets Harbor, NY"], "pagination": "176 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part25.utf8:118333793:1163"], "title": "Seaway trail wildguide to natural history", "dewey_decimal_class": ["508.747"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 172-174)."}, "number_of_pages": 176, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["96069011"], "subjects": ["Natural history -- New York (State) -- New York State Seaway Trail -- Guidebooks.", "New York State Seaway Trail (N.Y.) -- Guidebooks."], "publish_date": "1996", "publish_country": "nyu", "last_modified": {"type": "/type/datetime", "value": "2020-11-24T02:55:43.873079"}, "by_statement": "by Donald D. Cox ; cover art by John A. Morrow ; illustrations by Shirley A. Peron ; special projects editor and graphic designer Kara Lynn Dunn.", "oclc_numbers": ["35861667"], "works": [{"key": "/works/OL1406205W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10160286M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780394765181"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Random House (a)"], "title": "Christmas Songs That Tickle Your Funny Bone", "edition_name": "Bk&Cassett edition", "isbn_10": ["0394765184"], "publish_date": "June 1985", "key": "/books/OL10160286M", "type": {"key": "/type/edition"}, "subjects": ["Music"], "revision": 1}
+/type/edition /books/OL10160834M 7 2021-08-14T01:21:54.499575 {"publishers": ["Random Library"], "classifications": {}, "title": "Queen Victoria", "identifiers": {"librarything": ["8278638"], "goodreads": ["252737"]}, "isbn_13": ["9780394905372"], "physical_format": "Library Binding", "isbn_10": ["0394905377"], "publish_date": "April 1963", "key": "/books/OL10160834M", "authors": [{"key": "/authors/OL561107A"}], "works": [{"key": "/works/OL1652392W"}], "type": {"key": "/type/edition"}, "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-08-14T01:21:54.499575"}}
+/type/edition /books/OL10161235M 2 2009-12-15T00:43:46.429919 {"publishers": ["Houghton Mifflin Co"], "key": "/books/OL10161235M", "title": "Design and Analysis of Experiments in Psychology and E", "isbn_13": ["9780395047972"], "physical_format": "Textbook Binding", "isbn_10": ["0395047978"], "publish_date": "January 1956", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:43:46.429919"}, "authors": [{"key": "/authors/OL3383850A"}], "latest_revision": 2, "works": [{"key": "/works/OL9338410W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10162013M 5 2011-04-29T04:38:17.207004 {"publishers": ["Houghton Mifflin College Div"], "physical_format": "Paperback", "subtitle": "Sound Out, Book I,Teacher's Edition", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T04:38:17.207004"}, "title": "Troubleshooter I Series", "identifiers": {"goodreads": ["4898345"]}, "isbn_13": ["9780395272350"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0395272351"], "publish_date": "June 1979", "key": "/books/OL10162013M", "authors": [{"key": "/authors/OL2649766A"}], "latest_revision": 5, "oclc_numbers": ["7415981"], "works": [{"key": "/works/OL7944919W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10162249M 2 2011-04-29T07:21:51.002042 {"publishers": ["Houghton Mifflin Co"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T07:21:51.002042"}, "title": "Learning Disabilities", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780395303719"], "isbn_10": ["0395303710"], "publish_date": "January 1985", "key": "/books/OL10162249M", "latest_revision": 2, "oclc_numbers": ["664567014"], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10162440M 2 2009-12-15T00:43:46.429919 {"physical_format": "Paperback", "title": "Hm Tb Criminology", "isbn_10": ["0395325757"], "publishers": ["Addison Wesley Publishing Company"], "isbn_13": ["9780395325759"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:43:46.429919"}, "publish_date": "March 1998", "key": "/books/OL10162440M", "authors": [{"key": "/authors/OL2773938A"}], "latest_revision": 2, "works": [{"key": "/works/OL8337030W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL1016260M 4 2020-11-24T02:58:27.156923 {"publishers": ["Rutledge Books"], "number_of_pages": 71, "isbn_10": ["1887750177"], "lc_classifications": ["G550 .H68 1996"], "latest_revision": 4, "key": "/books/OL1016260M", "authors": [{"key": "/authors/OL547335A"}], "publish_places": ["Bethel, Conn"], "pagination": "71p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part25.utf8:118545591:673"], "title": "From Bombay to Basra", "dewey_decimal_class": ["910.4/5"], "notes": {"type": "/type/text", "value": "Cover subtitle : A travel story."}, "identifiers": {"goodreads": ["4899680"]}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["96069514"], "subjects": ["Hoyt, Jeanette Rice -- Travel.", "Ocean travel."], "publish_date": "1996", "publish_country": "ctu", "last_modified": {"type": "/type/datetime", "value": "2020-11-24T02:58:27.156923"}, "by_statement": "Jeanette Rice Hoyt.", "oclc_numbers": ["36119315"], "works": [{"key": "/works/OL3365272W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10163212M 3 2022-03-01T09:39:33.712129 {"publishers": ["Houghton Mifflin Company"], "languages": [{"key": "/languages/eng"}], "subtitle": "Teacher's Manual", "title": "America The Glorious Republic", "isbn_13": ["9780395429563"], "edition_name": "Revised edition", "physical_format": "Paperback", "isbn_10": ["0395429560"], "publish_date": "1988", "key": "/books/OL10163212M", "oclc_numbers": ["26147269"], "type": {"key": "/type/edition"}, "works": [{"key": "/works/OL27445570W"}], "source_records": ["bwb:9780395429563"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-01T09:39:33.712129"}}
+/type/edition /books/OL10163398M 2 2022-12-10T03:01:32.636819 {"isbn_13": ["9780395462195"], "physical_format": "Hardcover", "languages": [{"key": "/languages/eng"}], "publishers": ["Houghton Mifflin School"], "title": "Houghton Mifflin Mathematics Level 3", "edition_name": "Student edition", "isbn_10": ["0395462193"], "publish_date": "June 1989", "key": "/books/OL10163398M", "type": {"key": "/type/edition"}, "subjects": ["Mathematics - General", "Juvenile Nonfiction", "Children: Grades 3-4"], "works": [{"key": "/works/OL31936276W"}], "local_id": ["urn:bwbsku:O6-DRS-175"], "source_records": ["promise:bwb_daily_pallets_2020-07-30"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T03:01:32.636819"}}
+/type/edition /books/OL10163403M 3 2022-03-01T09:36:38.945459 {"physical_format": "Paperback", "title": "Houghton Mifflin Pupil Text", "isbn_10": ["039546224X"], "publishers": ["Houghton Mifflin Company"], "isbn_13": ["9780395462249"], "languages": [{"key": "/languages/eng"}], "publish_date": "June 1988", "key": "/books/OL10163403M", "authors": [{"key": "/authors/OL160282A"}], "subjects": ["General", "Mathematics"], "works": [{"key": "/works/OL1503328W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780395462249"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-01T09:36:38.945459"}}
+/type/edition /books/OL1016340M 4 2020-11-24T02:59:17.590250 {"publishers": ["SPIE"], "subtitle": "4-5 November 1996, Beijing, China", "isbn_10": ["0819422959"], "series": ["SPIE proceedings series ;", "v. 2894", "Proceedings of SPIE--the International Society for Optical Engineering ;", "v. 2894."], "covers": [3862949], "lc_classifications": ["TK7872.L56 D48 1996"], "latest_revision": 4, "key": "/books/OL1016340M", "publish_places": ["Bellingham, WA"], "contributions": ["Frederick, William G. D.", "Su, Junhong.", "Wigdor, Marc.", "Society of Photo-optical Instrumentation Engineers.", "Zhongguo guang xue xue hui.", "China Optics & Optoelectronic Manufacturers Association."], "pagination": "x, 312 p. :", "source_records": ["marc:marc_records_scriblio_net/part25.dat:212513833:1471", "marc:marc_loc_2016/BooksAll.2016.part25.utf8:118622491:1471"], "title": "Detectors, focal plane arrays, and applications", "dewey_decimal_class": ["621.36/2"], "notes": {"type": "/type/text", "value": "Includes bibliographical references and index."}, "number_of_pages": 312, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["96069643"], "subjects": ["Liquid crystal displays -- Congresses.", "Detectors -- Congresses"], "publish_date": "1996", "publish_country": "wau", "last_modified": {"type": "/type/datetime", "value": "2020-11-24T02:59:17.590250"}, "by_statement": "William G.D. Frederick, Junhong Su, Marc Wigdor, chairs/editors ; sponsored by SPIE--The International Society for Optical Engineering, COEMA--China Optics & Optoelectronic Manufacturers Association, COS--Chinese Optical Society ; cooperating organizations, National Natural Science Foundation of China ... [et al.].", "oclc_numbers": ["35847329"], "works": [{"key": "/works/OL19530597W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10163421M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Houghton Mifflin"], "title": "Answer Book, Vocabulary Masters, Assessment Masters, Extra Practice Masters, Level N (1-23123)", "isbn_13": ["9780395462874"], "isbn_10": ["0395462878"], "publish_date": "1089", "key": "/books/OL10163421M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10163852M 3 2011-04-27T02:56:16.292120 {"publishers": ["Houghton Mifflin"], "last_modified": {"type": "/type/datetime", "value": "2011-04-27T02:56:16.292120"}, "title": "Algebra 2 and Trigonometry Teacher's Edition", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780395535936"], "covers": [5038961], "physical_format": "Hardcover", "isbn_10": ["039553593X"], "publish_date": "1992", "key": "/books/OL10163852M", "latest_revision": 3, "oclc_numbers": ["24095096"], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10163959M 4 2022-02-28T20:58:31.751171 {"publishers": ["Houghton Mifflin"], "physical_format": "Paperback", "title": "QUE USING DOS", "isbn_13": ["9780395550830"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0395550831"], "publish_date": "September 9, 1999", "key": "/books/OL10163959M", "authors": [{"key": "/authors/OL2687209A"}], "oclc_numbers": ["166359630"], "works": [{"key": "/works/OL8071225W"}], "type": {"key": "/type/edition"}, "subjects": ["Reference - General", "Computers / Reference", "Skills", "Computers", "Computers - General Information", "Computer Books: General"], "source_records": ["bwb:9780395550830"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-28T20:58:31.751171"}}
+/type/edition /books/OL10163983M 3 2017-06-24T16:41:07.745855 {"publishers": ["Houghton Miffin"], "physical_format": "Paperback", "source_records": ["ia:kimkimi00houg"], "title": "Kim/ Kimi", "identifiers": {"librarything": ["9630944"]}, "isbn_13": ["9780395551790"], "covers": [8021492], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["039555179X"], "publish_date": "1991", "key": "/books/OL10163983M", "last_modified": {"type": "/type/datetime", "value": "2017-06-24T16:41:07.745855"}, "ocaid": "kimkimi00houg", "latest_revision": 3, "works": [{"key": "/works/OL17741417W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10164073M 7 2021-02-16T04:32:15.840398 {"publishers": ["Houghton Mifflin"], "physical_format": "Unknown Binding", "subtitle": "Ancillary sampler", "title": "Economics", "identifiers": {"goodreads": ["2647923"]}, "isbn_13": ["9780395573884"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0395573882"], "publish_date": "1991", "key": "/books/OL10164073M", "authors": [{"key": "/authors/OL244510A"}], "oclc_numbers": ["27122867"], "works": [{"key": "/works/OL2024856W"}], "type": {"key": "/type/edition"}, "subjects": ["Economics", "Study and teaching"], "covers": [10641705], "ocaid": "economicsancilla0000boye", "lc_classifications": ["HB171.5 .B694 1991"], "source_records": ["ia:economicsancilla0000boye"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-02-16T04:32:15.840398"}}
+/type/edition /books/OL10164106M 2 2009-12-15T00:43:47.764643 {"publishers": ["Houghton Mifflin College Div"], "weight": "3.6 pounds", "title": "Geometry", "isbn_10": ["0395585406"], "isbn_13": ["9780395585405"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:43:47.764643"}, "publish_date": "May 1991", "key": "/books/OL10164106M", "authors": [{"key": "/authors/OL3384389A"}], "latest_revision": 2, "subjects": ["Mathematics - Geometry", "Juvenile Nonfiction", "Children: Young Adult (Gr. 10-12)"], "works": [{"key": "/works/OL9339065W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 8.3 x 1.5 inches", "revision": 2}
+/type/edition /books/OL10164495M 7 2022-02-28T12:00:10.804676 {"publishers": ["Apa Productions"], "weight": "1.3 pounds", "physical_format": "Paperback", "key": "/books/OL10164495M", "authors": [{"key": "/authors/OL2654769A"}], "subjects": ["Asia - Far East", "Middle East - Israel", "Geography (General)", "Travel", "Travel - Foreign"], "classifications": {}, "title": "Insight Guides Yemen", "notes": {"type": "/type/text", "value": "Insight Guides"}, "identifiers": {"goodreads": ["790051"]}, "isbn_13": ["9780395662724"], "isbn_10": ["0395662729"], "publish_date": "January 1991", "oclc_numbers": ["319705319"], "works": [{"key": "/works/OL7956064W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.8 inches", "source_records": ["bwb:9780395662724"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-28T12:00:10.804676"}}
+/type/edition /books/OL10164667M 3 2011-04-26T15:37:56.460521 {"publishers": ["Houghton Mifflin"], "last_modified": {"type": "/type/datetime", "value": "2011-04-26T15:37:56.460521"}, "title": "WordPerfect 6.0 for DOS (Thomason Learning Series)", "number_of_pages": 500, "isbn_13": ["9780395692639"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0395692636"], "publish_date": "February 1994", "key": "/books/OL10164667M", "authors": [{"key": "/authors/OL319299A"}], "latest_revision": 3, "oclc_numbers": ["230942451"], "works": [{"key": "/works/OL2354494W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10164938M 6 2022-03-01T02:47:09.019317 {"publishers": ["Houghton Mifflin Company"], "number_of_pages": 16, "subtitle": "David's Crows, Level 2.2 (Invitations to Literacy)", "weight": "1.4 ounces", "covers": [2413096], "physical_format": "Paperback", "key": "/books/OL10164938M", "authors": [{"key": "/authors/OL3384481A"}], "contributions": ["Pau Estrada (Illustrator)"], "subjects": ["General", "Crows", "Juvenile fiction", "Readers (Primary)", "Textbooks"], "isbn_13": ["9780395740675"], "title": "Watch Me Read", "identifiers": {"librarything": ["7128069"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0395740673"], "publish_date": "January 2006", "oclc_numbers": ["44387278"], "works": [{"key": "/works/OL9339173W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.7 x 7 x 0.1 inches", "source_records": ["bwb:9780395740675"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-01T02:47:09.019317"}}
+/type/edition /books/OL10165249M 4 2022-12-10T09:46:03.319980 {"publishers": ["Houghton Mifflin"], "physical_format": "Hardcover", "title": "Horizontes", "identifiers": {"librarything": ["4226202"], "amazon": [""]}, "isbn_13": ["9780395786895"], "languages": [{"key": "/languages/spa"}], "isbn_10": ["0395786894"], "publish_date": "1997", "key": "/books/OL10165249M", "authors": [{"key": "/authors/OL2705290A"}], "works": [{"key": "/works/OL16031075W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:O6-BTS-297"], "source_records": ["promise:bwb_daily_pallets_2020-04-30"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T09:46:03.319980"}}
+/type/edition /books/OL10165679M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Scott Foresman Addison Wesley"], "title": "Practice Masters Grade 4 (Math)", "isbn_13": ["9780201312362"], "isbn_10": ["0201312360"], "publish_date": "1998", "key": "/books/OL10165679M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10165749M 3 2009-12-15T00:43:48.817466 {"publishers": ["Not Avail"], "table_of_contents": [{"type": {"key": "/type/toc_item"}, "class": "section"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:43:48.817466"}, "title": "Select Microsoft Office 97 Access Module Instructor Manual with Data", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780201315332"], "physical_format": "Unknown Binding", "isbn_10": ["0201315335"], "latest_revision": 3, "key": "/books/OL10165749M", "authors": [{"key": "/authors/OL2648643A"}], "publish_date": "March 1998", "works": [{"key": "/works/OL7942395W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10166012M 5 2011-04-25T22:46:19.104277 {"publishers": ["Kendall/Hunt Pub. Co"], "physical_format": "Unknown Binding", "subtitle": "principles of biology", "last_modified": {"type": "/type/datetime", "value": "2011-04-25T22:46:19.104277"}, "title": "Laboratory manual", "identifiers": {"goodreads": ["6049918"]}, "isbn_13": ["9780201338270"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0201338270"], "publish_date": "1997", "key": "/books/OL10166012M", "authors": [{"key": "/authors/OL3384598A"}], "latest_revision": 5, "oclc_numbers": ["45201582"], "works": [{"key": "/works/OL9339312W"}], "type": {"key": "/type/edition"}, "subjects": ["Biology", "Cells", "Laboratory manuals", "Problems, exercises, etc", "Study and teaching"], "revision": 5}
+/type/edition /books/OL10166531M 4 2010-04-24T17:56:06.023290 {"publishers": ["Not Avail"], "physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T17:56:06.023290"}, "title": "Goshgarian Crossfire 2e, Fowler Researching Online and Off", "identifiers": {"goodreads": ["5514729"]}, "isbn_13": ["9780201382341"], "edition_name": "2nd edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0201382342"], "publish_date": "October 1998", "key": "/books/OL10166531M", "authors": [{"key": "/authors/OL3252533A"}], "latest_revision": 4, "works": [{"key": "/works/OL9183251W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10166653M 3 2010-04-13T05:13:14.519257 {"publishers": ["Addison-Wesley"], "languages": [{"key": "/languages/eng"}], "subtitle": "An Introduction to General, Organic and Biological Chemistry", "weight": "7.6 pounds", "title": "Chemistry", "isbn_10": ["0201391341"], "isbn_13": ["9780201391343"], "covers": [5039102], "edition_name": "7th Pkg edition", "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:13:14.519257"}, "latest_revision": 3, "key": "/books/OL10166653M", "authors": [{"key": "/authors/OL2753629A"}], "publish_date": "January 1998", "works": [{"key": "/works/OL8275198W"}], "type": {"key": "/type/edition"}, "subjects": ["Chemistry - General", "Chemistry - Organic", "Science", "Science/Mathematics"], "physical_dimensions": "11 x 8.8 x 2.5 inches", "revision": 3}
+/type/edition /books/OL10166M 4 2022-08-11T01:36:11.424590 {"notes": {"type": "/type/text", "value": "In Bengali."}, "title": "Ba\u0304gartha", "authors": [{"key": "/authors/OL7183A"}], "publish_date": "1965", "lc_classifications": ["PK1681 .B45"], "pagination": "136 p.", "source_records": ["marc:marc_records_scriblio_net/part29.dat:6027644:498", "marc:marc_loc_2016/BooksAll.2016.part43.utf8:13760455:515"], "lccn": ["sa66007902"], "languages": [{"key": "/languages/ben"}], "subjects": ["Bengali language -- Semantics"], "publish_country": "ii ", "oclc_numbers": ["20364312"], "type": {"key": "/type/edition"}, "key": "/books/OL10166M", "number_of_pages": 136, "works": [{"key": "/works/OL347771W"}], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-11T01:36:11.424590"}}
+/type/edition /books/OL10167228M 3 2010-08-12T16:12:46.593789 {"publishers": ["Addison Wesley Publishing Company"], "number_of_pages": 64, "weight": "7.2 ounces", "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-08-12T16:12:46.593789"}, "latest_revision": 3, "key": "/books/OL10167228M", "authors": [{"key": "/authors/OL1400874A"}], "subjects": ["Teaching Methods & Materials - Mathematics", "Teaching Methods & Materials - Workbooks", "Education / Teaching"], "languages": [{"key": "/languages/eng"}], "title": "Multiplication & Division Tables", "identifiers": {"librarything": ["4116193"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780201480214"], "isbn_10": ["0201480212"], "publish_date": "January 1992", "works": [{"key": "/works/OL5757071W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "11 x 8.8 x 0.2 inches", "revision": 3}
+/type/edition /books/OL10168197M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780201592238"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "publishers": ["Higher Education Publishing Company"], "title": "Sociology Brief & Sociolgy Brief Reader Pkg", "edition_name": "4th edition", "isbn_10": ["0201592231"], "publish_date": "January 2000", "key": "/books/OL10168197M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10168244M 2 2009-12-15T00:43:51.248757 {"publishers": ["Addison Wesley Longman Publishing Co"], "key": "/books/OL10168244M", "title": "Video Multinat Bus Fin 7e", "isbn_13": ["9780201595598"], "physical_format": "Unknown Binding", "isbn_10": ["0201595591"], "publish_date": "January 1, 1995", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:43:51.248757"}, "authors": [{"key": "/authors/OL3012042A"}], "latest_revision": 2, "works": [{"key": "/works/OL8813779W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10168379M 3 2011-04-26T01:16:02.376817 {"publishers": ["ADDISON WESLEY"], "physical_format": "Paperback", "subtitle": "SUPPLEMENT", "last_modified": {"type": "/type/datetime", "value": "2011-04-26T01:16:02.376817"}, "title": "INTERNATIONAL BUSINESS", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "edition_name": "6th Ed edition", "isbn_13": ["9780201607031"], "isbn_10": ["0201607034"], "publish_date": "1992", "key": "/books/OL10168379M", "authors": [{"key": "/authors/OL2711207A"}], "latest_revision": 3, "oclc_numbers": ["257569732"], "works": [{"key": "/works/OL8136033W"}], "type": {"key": "/type/edition"}, "subjects": ["International business"], "revision": 3}
+/type/edition /books/OL10168508M 2 2009-12-15T00:43:51.248757 {"publishers": ["Addison Wesley"], "title": "Office 2000 Brief", "isbn_10": ["020162303X"], "isbn_13": ["9780201623031"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:43:51.248757"}, "publish_date": "November 30, 1999", "key": "/books/OL10168508M", "authors": [{"key": "/authors/OL3164867A"}], "latest_revision": 2, "subjects": ["Microsoft Office"], "works": [{"key": "/works/OL9053474W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10168651M 4 2011-04-27T04:54:31.855299 {"publishers": ["Addison Wesley Longman"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2011-04-27T04:54:31.855299"}, "title": "Control Por Retroalimentacion De Sistemas Dinamicos", "identifiers": {"librarything": ["9310036"]}, "isbn_13": ["9780201644210"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Hardcover", "isbn_10": ["0201644215"], "publish_date": "October 1989", "key": "/books/OL10168651M", "authors": [{"key": "/authors/OL3385108A"}], "latest_revision": 4, "oclc_numbers": ["58410647"], "works": [{"key": "/works/OL9339946W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Control Systems", "Technology & Industrial Arts"], "revision": 4}
+/type/edition /books/OL10168869M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "title": "Human Anatomy & Physiology Laboratory Manual - Main Version (Custom Montgomery College)", "isbn_13": ["9780201676464"], "isbn_10": ["020167646X"], "key": "/books/OL10168869M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10168938M 3 2011-04-26T09:01:11.569838 {"publishers": ["Addison Wesley Publishing Company"], "subtitle": "An Intermediate Course for Reference and Practice (Complete Student Book/Audiocassette Package)", "weight": "2.2 pounds", "covers": [5039144], "edition_name": "Bk&Cassett edition", "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-26T09:01:11.569838"}, "latest_revision": 3, "key": "/books/OL10168938M", "authors": [{"key": "/authors/OL23695A"}, {"key": "/authors/OL719319A"}, {"key": "/authors/OL2653848A"}], "subjects": ["English as a Second Language", "Grammar", "American English", "ELT audio-visual (video & audio cassettes)", "ELT grammars & grammar practice", "ELT: Learning Material & Coursework", "Foreign Language - Dictionaries / Phrase Books", "Audio Adult: Language"], "isbn_13": ["9780201694260"], "title": "Focus on Grammar", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0201694263"], "publish_date": "June 1996", "oclc_numbers": ["317183279"], "type": {"key": "/type/edition"}, "physical_dimensions": "11 x 8.8 x 1 inches", "revision": 3}
+/type/edition /books/OL1016922M 17 2022-12-17T08:39:48.732894 {"publishers": ["Random House"], "identifiers": {"librarything": ["95908"], "goodreads": ["227235"]}, "subtitle": "wise and witty prescriptions for living from the good doctor.", "ia_box_id": ["IA114123"], "isbn_10": ["0679883568"], "series": ["Life favors"], "covers": [423043], "lc_classifications": ["PS3513.E2 S48 1997", "PS3513.E2S48 1997"], "key": "/books/OL1016922M", "authors": [{"key": "/authors/OL2622837A"}], "ocaid": "seussismswisewit00seus", "publish_places": ["New York"], "contributions": ["Geisel, Theodor Seuss, 1904-"], "lccn": ["96070581"], "uri_descriptions": ["Contributor biographical information", "Publisher description"], "pagination": "[26] p. :", "source_records": ["marc:marc_records_scriblio_net/part25.dat:213055082:984", "marc:marc_loc_updates/v37.i30.records.utf8:3366243:983", "marc:marc_loc_updates/v37.i37.records.utf8:5904052:988", "ia:seussismswisewit00seus", "ia:isbn_0679887245", "marc:marc_loc_2016/BooksAll.2016.part25.utf8:119182815:988", "promise:bwb_daily_pallets_2021-06-28", "promise:bwb_daily_pallets_2021-01-11", "bwb:9780679883562"], "title": "Seuss-isms", "url": ["http://www.loc.gov/catdir/bios/random057/96070581.html", "http://www.loc.gov/catdir/description/random0415/96070581.html"], "number_of_pages": 26, "languages": [{"key": "/languages/eng"}], "dewey_decimal_class": ["811/.52"], "subjects": ["Children's poetry, American", "Wisdom -- Juvenile poetry"], "publish_date": "1997", "publish_country": "nyu", "oclc_numbers": ["36659663"], "works": [{"key": "/works/OL1898243W"}], "type": {"key": "/type/edition"}, "uris": ["http://www.loc.gov/catdir/bios/random057/96070581.html", "http://www.loc.gov/catdir/description/random0415/96070581.html"], "local_id": ["urn:bwbsku:W6-BLJ-490", "urn:bwbsku:W6-AVG-109", "urn:bwbsku:O7-AVJ-139"], "latest_revision": 17, "revision": 17, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T08:39:48.732894"}}
+/type/edition /books/OL10169402M 3 2021-12-23T20:59:45.329810 {"publishers": ["Addison-Wesley Publishing Company, Inc."], "languages": [{"key": "/languages/eng"}], "number_of_pages": 29, "physical_format": "Paperback", "publish_date": "1998", "key": "/books/OL10169402M", "authors": [{"key": "/authors/OL3385224A"}], "title": "Addison-Wesley Quest 2000", "works": [{"key": "/works/OL9340033W"}], "type": {"key": "/type/edition"}, "identifiers": {}, "isbn_10": ["0201844079"], "classifications": {}, "subtitle": "Exploring Mathematics Solutions Manual - Grade 3", "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-23T20:59:45.329810"}}
+/type/edition /books/OL10169468M 2 2009-12-15T00:43:51.248757 {"physical_format": "Hardcover", "languages": [{"key": "/languages/eng"}], "publishers": ["Addison Wesley Publishing Company"], "isbn_10": ["0201855313"], "number_of_pages": 96, "edition_name": "2nd edition", "isbn_13": ["9780201855319"], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:43:51.248757"}, "publish_date": "September 1995", "latest_revision": 2, "key": "/books/OL10169468M", "authors": [{"key": "/authors/OL2670090A"}], "title": "Prealgebra", "subjects": ["General", "Mathematics"], "works": [{"key": "/works/OL8019770W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL1017017M 4 2020-11-24T03:06:48.253341 {"other_titles": ["Self-publishing"], "publishers": ["Reliance Press"], "identifiers": {"goodreads": ["4551893"]}, "subtitle": "a successful solution to your book publishing needs", "isbn_10": ["1889683000"], "subject_place": ["United States.", "United States"], "lc_classifications": ["Z285.5 .S64 1997"], "latest_revision": 4, "key": "/books/OL1017017M", "authors": [{"key": "/authors/OL36922A"}], "publish_places": ["Norman, OK"], "pagination": "116 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part25.utf8:119265113:841"], "title": "The art of self-publishing", "dewey_decimal_class": ["070.5/93"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 109-110) and index."}, "number_of_pages": 116, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["96070756"], "subjects": ["Self-publishing -- United States.", "Books -- United States -- Marketing."], "publish_date": "1997", "publish_country": "oku", "last_modified": {"type": "/type/datetime", "value": "2020-11-24T03:06:48.253341"}, "by_statement": "Bonnie Speer.", "oclc_numbers": ["36522614"], "works": [{"key": "/works/OL525415W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10170198M 5 2019-05-29T03:08:00.849566 {"publishers": ["Allyn & Bacon"], "identifiers": {"goodreads": ["5489260"]}, "subtitle": "An Introduction to Computers in Organizations", "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2019-05-29T03:08:00.849566"}, "latest_revision": 5, "key": "/books/OL10170198M", "authors": [{"key": "/authors/OL2929503A"}, {"key": "/authors/OL596896A"}], "subjects": ["Questions & Answers", "Reference"], "languages": [{"key": "/languages/eng"}], "title": "Informations Systems", "number_of_pages": 500, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780205069095"], "isbn_10": ["0205069096"], "publish_date": "February 1980", "oclc_numbers": ["16598891"], "works": [{"key": "/works/OL13663222W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10170574M 4 2019-08-26T10:37:54.433971 {"publishers": ["Allyn and Bacon"], "identifiers": {"goodreads": ["2009788"]}, "classifications": {}, "last_modified": {"type": "/type/datetime", "value": "2019-08-26T10:37:54.433971"}, "title": "Instructor's Solutions Manual for Introduction to Classical Mechanics", "type": {"key": "/type/edition"}, "number_of_pages": 197, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0205124771"], "publish_date": "1990", "key": "/books/OL10170574M", "authors": [{"key": "/authors/OL3385594A"}], "latest_revision": 4, "works": [{"key": "/works/OL9340403W"}], "physical_format": "Paperback", "revision": 4}
+/type/edition /books/OL10170820M 6 2022-12-04T10:04:00.810519 {"publishers": ["Allyn & Bacon"], "physical_format": "Paperback", "title": "Sm Psychology Aie", "covers": [10056732], "isbn_13": ["9780205152872"], "isbn_10": ["0205152872"], "publish_date": "January 2, 1994", "key": "/books/OL10170820M", "authors": [{"key": "/authors/OL2671978A"}], "ocaid": "smpsychologyaie00left", "works": [{"key": "/works/OL8023553W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:O8-CLU-179", "urn:bwbsku:O8-CKA-581"], "source_records": ["promise:bwb_daily_pallets_2022-09-12"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T10:04:00.810519"}}
+/type/edition /books/OL10170883M 7 2022-12-04T10:41:54.689730 {"publishers": ["Allyn and Bacon"], "title": "Princliples of Operations Management ( Annotated Instructor's Edition )", "isbn_10": ["020515851X"], "identifiers": {"goodreads": ["6212251"]}, "isbn_13": ["9780205158515"], "physical_format": "Hardcover", "publish_date": "1994", "key": "/books/OL10170883M", "authors": [{"key": "/authors/OL3385704A"}], "works": [{"key": "/works/OL9340523W"}], "type": {"key": "/type/edition"}, "covers": [10645432], "ocaid": "principlesofoper0000rend", "lccn": ["93038560"], "lc_classifications": ["TS155 .R383 1995"], "source_records": ["ia:principlesofoper0000rend", "amazon:020515851X", "promise:bwb_daily_pallets_2022-09-12"], "local_id": ["urn:bwbsku:O8-DDJ-231"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T10:41:54.689730"}}
+/type/edition /books/OL10170916M 2 2009-12-15T00:43:52.549055 {"publishers": ["Allyn & Bacon"], "key": "/books/OL10170916M", "title": "Sm Learning Disabilities I/M Tests", "isbn_13": ["9780205162741"], "physical_format": "Hardcover", "isbn_10": ["0205162746"], "publish_date": "January 18, 1995", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:43:52.549055"}, "authors": [{"key": "/authors/OL2702461A"}], "latest_revision": 2, "works": [{"key": "/works/OL8111964W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10171262M 3 2020-08-19T16:25:24.795868 {"publishers": ["Allyn & Bacon"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2020-08-19T16:25:24.795868"}, "source_records": ["bwb:9780205278978"], "title": "Computerized Study Guide", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780205278978"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0205278973"], "publish_date": "September 2, 1998", "key": "/books/OL10171262M", "authors": [{"key": "/authors/OL238312A"}], "latest_revision": 3, "works": [{"key": "/works/OL1981397W"}], "type": {"key": "/type/edition"}, "subjects": ["Sociology, Social Studies"], "revision": 3}
+/type/edition /books/OL101713M 3 2020-12-02T07:52:19.138301 {"subtitle": "ein Mythos", "lc_classifications": ["PT2681.T278 L55 1998"], "languages": [{"key": "/languages/ger"}], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part28.utf8:90291938:516"], "title": "Lilith", "edition_name": "2. erw. Aufl.", "subjects": ["Lilith (Semitic mythology)"], "publish_country": "sz ", "by_statement": "Susanna Stalder.", "type": {"key": "/type/edition"}, "publishers": ["Arte Jena"], "key": "/books/OL101713M", "authors": [{"key": "/authors/OL68337A"}], "publish_places": ["Meggen"], "pagination": "61 p. ;", "lccn": ["99216778"], "number_of_pages": 61, "isbn_10": ["3952151009"], "publish_date": "1998", "works": [{"key": "/works/OL811000W"}], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-02T07:52:19.138301"}}
+/type/edition /books/OL10171698M 2 2009-12-15T00:43:53.740045 {"publishers": ["Pearson Higher Education"], "key": "/books/OL10171698M", "title": "Anatomy Human Motion", "isbn_13": ["9780205309573"], "physical_format": "Paperback", "isbn_10": ["0205309577"], "publish_date": "March 1, 2002", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:43:53.740045"}, "authors": [{"key": "/authors/OL3386043A"}], "latest_revision": 2, "works": [{"key": "/works/OL9340851W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL1017185M 7 2021-08-12T09:17:13.394664 {"publishers": ["Rutledge Books"], "identifiers": {"goodreads": ["4639606"]}, "isbn_10": ["1887750401"], "covers": [2089808], "lc_classifications": ["PS3563.Y367 A87 1997"], "key": "/books/OL1017185M", "authors": [{"key": "/authors/OL547683A"}], "publish_places": ["Bethel, CT"], "pagination": "viii, 143 p. ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part25.utf8:119416189:611", "ia:apollosupport0000myer"], "title": "Apollo support", "dewey_decimal_class": ["813/.54"], "number_of_pages": 143, "languages": [{"key": "/languages/eng"}], "lccn": ["96071053"], "subjects": ["Project Apollo (U.S.) -- Fiction.", "Space flight to the moon -- Fiction."], "publish_date": "1997", "publish_country": "ctu", "by_statement": "by Franklin S. Myers.", "oclc_numbers": ["36789892"], "works": [{"key": "/works/OL3366379W"}], "type": {"key": "/type/edition"}, "ocaid": "apollosupport0000myer", "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2021-08-12T09:17:13.394664"}}
+/type/edition /books/OL10171880M 7 2022-11-17T16:51:47.319200 {"publishers": ["Longman"], "subtitle": "Mastering College Textbook Reading", "weight": "1.6 pounds", "covers": [2335131], "physical_format": "Paperback", "key": "/books/OL10171880M", "authors": [{"key": "/authors/OL577929A"}], "subjects": ["Language & Linguistics", "Language Arts & Disciplines", "Language Arts / Linguistics / Literacy", "Language", "Reading Skills", "Language Arts & Disciplines / Composition & Creative Writing", "Composition & Creative Writing - General", "Reading (Higher education)", "Reading comprehension"], "edition_name": "1st edition", "languages": [{"key": "/languages/eng"}], "source_records": ["bwb:9780205330843", "marc:marc_loc_2016/BooksAll.2016.part29.utf8:204354541:617"], "title": "Textcerpts", "number_of_pages": 320, "isbn_13": ["9780205330843"], "isbn_10": ["0205330843"], "publish_date": "November 6, 2002", "oclc_numbers": ["49727834"], "works": [{"key": "/works/OL3467239W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.7 x 8.6 x 0.8 inches", "lccn": ["2002067639"], "lc_classifications": ["LB2395.3 .W575 2003", "LB2395.3.W575 2003"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T16:51:47.319200"}}
+/type/edition /books/OL10172009M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "title": "Instructor's Manual and Test Bank for Diagnosis and Correction in Reading Instruction", "isbn_13": ["9780205348275"], "isbn_10": ["0205348270"], "key": "/books/OL10172009M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10172234M 9 2021-10-04T09:39:14.492225 {"publishers": ["Allyn & Bacon"], "identifiers": {"goodreads": ["4096614"]}, "covers": [2335215], "physical_format": "Paperback", "key": "/books/OL10172234M", "authors": [{"key": "/authors/OL2999106A"}, {"key": "/authors/OL2872289A"}], "subjects": ["Press & journalism", "Language Arts & Disciplines", "Language Arts / Linguistics / Literacy", "Language", "Communication", "Composition & Creative Writing - Academic", "Language Arts & Disciplines / Communication", "Authorship", "Journalism", "Reporters and reporting"], "edition_name": "1 edition", "languages": [{"key": "/languages/eng"}], "source_records": ["amazon:0205440010", "marc:marc_loc_updates/v37.i35.records.utf8:34723753:817", "marc:marc_loc_updates/v38.i08.records.utf8:10412363:817", "bwb:9780205440016"], "title": "Writing and Reporting the News as a Story", "number_of_pages": 400, "isbn_13": ["9780205440016"], "isbn_10": ["0205440010"], "publish_date": "February 14, 2008", "works": [{"key": "/works/OL15031341W"}], "type": {"key": "/type/edition"}, "lc_classifications": ["PN4775"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-10-04T09:39:14.492225"}}
+/type/edition /books/OL10172369M 8 2011-04-29T21:02:27.734469 {"publishers": ["Allyn & Bacon"], "identifiers": {"goodreads": ["2029700"]}, "weight": "0.8 ounces", "covers": [2335289], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T21:02:27.734469"}, "latest_revision": 8, "key": "/books/OL10172369M", "authors": [{"key": "/authors/OL222575A"}, {"key": "/authors/OL582019A"}], "subjects": ["Public Policy - Social Services & Welfare", "Political Science / Social Services & Welfare", "Political Science", "Politics / Current Events", "Textbooks", "Politics/International Relations"], "edition_name": "2 edition", "languages": [{"key": "/languages/eng"}], "title": "Essentials of Family Therapy (with MyHelpingLab), The (2nd Edition)", "number_of_pages": 384, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780205488131"], "isbn_10": ["0205488137"], "publish_date": "December 1, 2005", "oclc_numbers": ["173165978"], "works": [{"key": "/works/OL1859229W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "6.9 x 2.8 x 0.8 inches", "revision": 8}
+/type/edition /books/OL101723M 2 2020-12-02T07:52:29.282449 {"subtitle": "seminar workbook", "lc_classifications": ["TH435 .M445 1999"], "contributions": ["Mossman, Melville."], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part28.utf8:90304623:761"], "title": "Mechanical and electrical", "languages": [{"key": "/languages/eng"}], "subjects": ["Building -- Estimates.", "Buildings -- Mechanical equipment -- Estimates.", "Buildings -- Electric equipment -- Estimates."], "publish_country": "mau", "by_statement": "editors, Melville J. Mossman ... [et al.].", "type": {"key": "/type/edition"}, "publishers": ["R.S. Means Co."], "key": "/books/OL101723M", "publish_places": ["Kingston, MA"], "pagination": "266 p. :", "dewey_decimal_class": ["696/.0299"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 211-218).\nCover title."}, "number_of_pages": 266, "lccn": ["99216794"], "publish_date": "1999", "works": [{"key": "/works/OL23722137W"}], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-02T07:52:29.282449"}}
+/type/edition /books/OL10172593M 8 2022-12-07T05:24:08.300760 {"publishers": ["Longman"], "number_of_pages": 528, "subtitle": "Unlocking the Writer Within, with Readings (with MyWritingLab) (4th Edition)", "weight": "1.8 pounds", "covers": [2335431], "physical_format": "Paperback", "key": "/books/OL10172593M", "authors": [{"key": "/authors/OL2673134A"}], "subjects": ["Listening skills", "Language Arts & Disciplines", "Language Arts / Linguistics / Literacy", "Textbooks", "Language", "Composition & Creative Writing - General", "Language Arts & Disciplines / Composition & Creative Writing"], "edition_name": "4 edition", "languages": [{"key": "/languages/eng"}], "source_records": ["bwb:9780205583904", "promise:bwb_daily_pallets_2022-03-17"], "title": "Keys to Successful Writing", "identifiers": {"goodreads": ["1943163"]}, "isbn_13": ["9780205583904"], "isbn_10": ["0205583903"], "publish_date": "April 30, 2007", "oclc_numbers": ["154715451"], "works": [{"key": "/works/OL8024807W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.2 x 7.4 x 0.9 inches", "local_id": ["urn:bwbsku:P7-EKB-166"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-07T05:24:08.300760"}}
+/type/edition /books/OL10172726M 6 2022-12-17T04:51:53.958436 {"publishers": ["ANGUS R"], "number_of_pages": 270, "subtitle": "SENSE AND NONSENSE OF SEXUAL CUSTOMS AND TRADITIONS", "title": "HOW DID SEX BEGIN?", "identifiers": {"goodreads": ["3344854"]}, "isbn_13": ["9780207127427"], "physical_format": "Hardcover", "isbn_10": ["0207127425"], "publish_date": "1974", "key": "/books/OL10172726M", "authors": [{"key": "/authors/OL3386350A"}], "oclc_numbers": ["16234681"], "works": [{"key": "/works/OL9341147W"}], "type": {"key": "/type/edition"}, "lc_classifications": ["HQ21"], "source_records": ["bwb:9780207127427"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T04:51:53.958436"}}
+/type/edition /books/OL1017302M 3 2020-11-24T03:09:49.132766 {"publishers": ["Chemical Management & Resources Association"], "subtitle": "Sept. 29-Oct. 1, 1996, Renaissance Atlanta Hotel-Concourse, Atlanta, GA.", "subject_place": ["United States"], "lc_classifications": ["HD9651.5 .C5 1996"], "latest_revision": 3, "key": "/books/OL1017302M", "authors": [{"key": "/authors/OL459378A"}], "publish_places": ["[Staten Island, NY] (60 Bay St., Suite 702, Staten Island 10301)"], "pagination": "212 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part25.utf8:119524584:964"], "title": "Keeping up with change", "lccn": ["96071267"], "notes": {"type": "/type/text", "value": "Includes bibliographical references.\n\"Papers presented at the September 29, October 1, 1996, meeting of the Chemical Management & Resources Association held at the Renaissance Atlanta Hotel-Concourse, Atlanta, GA.\""}, "number_of_pages": 212, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "subjects": ["Chemical industry -- United States -- Congresses."], "publish_date": "1996", "publish_country": "nyu", "last_modified": {"type": "/type/datetime", "value": "2020-11-24T03:09:49.132766"}, "works": [{"key": "/works/OL2996412W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10173068M 5 2022-03-01T10:32:33.360662 {"publishers": ["Houghton Mifflin (P)"], "title": "Who Ate the Broccoli (Special Times, Little Readers Ser)", "identifiers": {"goodreads": ["7167397"]}, "isbn_13": ["9780395882900"], "physical_format": "Paperback", "isbn_10": ["0395882907"], "publish_date": "September 9, 1997", "key": "/books/OL10173068M", "authors": [{"key": "/authors/OL282267A"}], "works": [{"key": "/works/OL2205740W"}], "type": {"key": "/type/edition"}, "subjects": ["Readers - Beginner", "Juvenile Fiction", "Children: Grades 3-4"], "physical_dimensions": "8 x 7 x 0.1 inches", "source_records": ["bwb:9780395882900"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-01T10:32:33.360662"}}
+/type/edition /books/OL1017359M 5 2020-11-24T03:10:31.783786 {"publishers": ["Sand Science Books"], "identifiers": {"goodreads": ["3942703"]}, "lc_classifications": ["PS3557.E633 K56 1997"], "latest_revision": 5, "key": "/books/OL1017359M", "authors": [{"key": "/authors/OL547756A"}], "publish_places": ["[Beaufort, S.C.?]"], "pagination": "234 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part25.utf8:119575660:487"], "title": "The Kimberley file", "dewey_decimal_class": ["813/.54"], "number_of_pages": 234, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["96071385"], "isbn_10": ["1889986143"], "publish_date": "1997", "publish_country": "scu", "last_modified": {"type": "/type/datetime", "value": "2020-11-24T03:10:31.783786"}, "by_statement": "Michael Gerard.", "oclc_numbers": ["36884590"], "works": [{"key": "/works/OL3366568W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10173745M 3 2010-04-13T05:13:14.519257 {"publishers": ["Houghton Mifflin College Div"], "languages": [{"key": "/languages/eng"}], "weight": "4 pounds", "title": "N/B Caminos Plus Am", "isbn_10": ["0395951526"], "isbn_13": ["9780395951521"], "covers": [2413167], "edition_name": "Book & CD edition", "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:13:14.519257"}, "latest_revision": 3, "key": "/books/OL10173745M", "authors": [{"key": "/authors/OL3386496A"}], "publish_date": "January 2000", "works": [{"key": "/works/OL9341370W"}], "type": {"key": "/type/edition"}, "subjects": ["Spanish", "Foreign Language Study", "Language"], "physical_dimensions": "11 x 8.8 x 1.2 inches", "revision": 3}
+/type/edition /books/OL10173754M 3 2011-03-02T07:49:53.735180 {"publishers": ["Houghton Mifflin College Div"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2011-03-02T07:49:53.735180"}, "title": "Personnages", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780395951811"], "edition_name": "2nd Pkg edition", "physical_format": "Paperback", "isbn_10": ["039595181X"], "publish_date": "January 1999", "key": "/books/OL10173754M", "authors": [{"key": "/authors/OL726180A"}], "latest_revision": 3, "works": [{"key": "/works/OL8074031W"}], "type": {"key": "/type/edition"}, "subjects": ["French", "Foreign Language Study", "Language"], "revision": 3}
+/type/edition /books/OL10173804M 2 2009-12-08T04:33:26.212581 {"publishers": ["Houghton Mifflin College Div"], "subtitle": "An Introduction to Physical Geology", "weight": "4 pounds", "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2009-12-08T04:33:26.212581"}, "latest_revision": 2, "key": "/books/OL10173804M", "authors": [{"key": "/authors/OL37420A"}], "subjects": ["Geology & the lithosphere", "Earth Sciences - Geology", "Science", "Science/Mathematics"], "edition_name": "3rd Bk&Cdr edition", "title": "Geology", "isbn_13": ["9780395957295"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["039595729X"], "publish_date": "August 1999", "works": [{"key": "/works/OL530928W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "11.2 x 9.5 x 1 inches", "revision": 2}
+/type/edition /books/OL10173836M 2 2011-04-22T23:56:07.913760 {"publishers": ["McDougal Littell"], "languages": [{"key": "/languages/spa"}], "last_modified": {"type": "/type/datetime", "value": "2011-04-22T23:56:07.913760"}, "title": "En Espanol ! Level 1 - ETAPA Preliminar & Unit 1 Resource Book", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780395961926"], "physical_format": "Paperback", "isbn_10": ["0395961920"], "publish_date": "2000", "key": "/books/OL10173836M", "latest_revision": 2, "oclc_numbers": ["55477735"], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL1017398M 8 2020-11-24T03:11:00.320203 {"publishers": ["QUE"], "identifiers": {"goodreads": ["1055503"], "librarything": ["2783515"]}, "isbn_10": ["0789709384"], "covers": [1488621], "lc_classifications": ["TK5105.888 .L63 1997"], "latest_revision": 8, "key": "/books/OL1017398M", "authors": [{"key": "/authors/OL547764A"}], "ocaid": "whizbangwebsitef00lock", "publish_places": ["Indianapolis, IN"], "contributions": ["Jones, Bray."], "pagination": "xxi, 305 p. :", "source_records": ["ia:whizbangwebsitef00lock", "marc:marc_loc_2016/BooksAll.2016.part25.utf8:119608529:660"], "title": "Whiz Bang Web site F/X", "dewey_decimal_class": ["006.7/776"], "notes": {"type": "/type/text", "value": "Includes index."}, "number_of_pages": 305, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["96071438"], "subjects": ["Web sites -- Design."], "publish_date": "1997", "publish_country": "inu", "last_modified": {"type": "/type/datetime", "value": "2020-11-24T03:11:00.320203"}, "by_statement": "written by Tom Lockwood with Bray Jones.", "works": [{"key": "/works/OL3366606W"}], "type": {"key": "/type/edition"}, "revision": 8}
+/type/edition /books/OL10174340M 14 2022-12-08T04:13:38.617578 {"publishers": ["Dodd Mead"], "covers": [5039561], "physical_format": "Hardcover", "lc_classifications": ["PN6112 .B45 1978-1979"], "key": "/books/OL10174340M", "authors": [{"key": "/authors/OL1193749A"}], "ocaid": "bestplaysof1978100newy", "subjects": ["19th century", "Drama", "Theater", "United States"], "isbn_13": ["9780396077237"], "source_records": ["ia:bestplaysof1978100newy", "marc:CollingswoodLibraryMarcDump10-27-2008/Collingswood.out:50340194:1586", "marc:talis_openlibrary_contribution/talis-openlibrary-contribution.mrc:569916540:987", "ia:bestplaysof197810000unse", "ia:bestplays19781970000unse", "promise:bwb_daily_pallets_2021-09-03", "promise:bwb_daily_pallets_2021-07-15"], "title": "The Best Plays of 1978-1979", "identifiers": {"goodreads": ["6900260"], "librarything": ["5789437"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0396077234"], "publish_date": "January 1980", "oclc_numbers": ["5959273"], "works": [{"key": "/works/OL5273956W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:O7-DRM-102", "urn:bwbsku:T2-BBX-444"], "latest_revision": 14, "revision": 14, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-08T04:13:38.617578"}}
+/type/edition /books/OL10174521M 5 2010-08-12T16:15:34.544568 {"publishers": ["Harpercollins Juvenile Books"], "physical_format": "Library Binding", "last_modified": {"type": "/type/datetime", "value": "2010-08-12T16:15:34.544568"}, "title": "Miss Jellytot's Visit", "identifiers": {"goodreads": ["1757456"], "librarything": ["8032730"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780397303052"], "isbn_10": ["039730305X"], "publish_date": "January 2000", "key": "/books/OL10174521M", "authors": [{"key": "/authors/OL3386627A"}], "latest_revision": 5, "works": [{"key": "/works/OL9341626W"}], "type": {"key": "/type/edition"}, "subjects": ["Family life", "Fiction"], "revision": 5}
+/type/edition /books/OL10174716M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["J. B. Lippincott"], "title": "Reading for Meaning Teacher's Guide Levels 7-8-9", "isbn_13": ["9780397432080"], "isbn_10": ["0397432089"], "publish_date": "1965", "key": "/books/OL10174716M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10175058M 3 2010-04-24T17:56:06.023290 {"publishers": ["Lippincott Williams & Wilkins,US"], "physical_format": "Unknown Binding", "key": "/books/OL10175058M", "title": "Atlas of Endocrine Surgical Pathology", "identifiers": {"goodreads": ["6024081"]}, "isbn_13": ["9780397514281"], "isbn_10": ["039751428X"], "publish_date": "March 1, 1996", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T17:56:06.023290"}, "authors": [{"key": "/authors/OL3386900A"}, {"key": "/authors/OL3386901A"}], "latest_revision": 3, "type": {"key": "/type/edition"}, "subjects": ["Endocrinology", "Pathology", "Reference works", "Surgery"], "revision": 3}
+/type/edition /books/OL10175184M 2 2009-12-15T00:43:57.341068 {"physical_format": "Paperback", "publishers": ["Lippincott Williams & Wilkins"], "isbn_10": ["039754846X"], "number_of_pages": 156, "isbn_13": ["9780397548460"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:43:57.341068"}, "publish_date": "June 1990", "latest_revision": 2, "key": "/books/OL10175184M", "authors": [{"key": "/authors/OL766362A"}], "title": "Study Guide for Essentials of Critical Care Nursing Body Mind Spirit", "subjects": ["Accident & emergency medicine", "Accident & emergency nursing", "Intensive care nursing", "Health/Fitness"], "works": [{"key": "/works/OL4091651W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10175195M 5 2022-12-10T08:56:25.608194 {"publishers": ["Lippincott Williams & Wilkins"], "languages": [{"key": "/languages/eng"}], "physical_format": "Paperback", "weight": "1.9 pounds", "title": "Student Workbook for Clinical Pharmacology and Nursing Management", "isbn_10": ["0397549369"], "type": {"key": "/type/edition"}, "identifiers": {"goodreads": ["1272550"]}, "isbn_13": ["9780397549368"], "edition_name": "4th Wrkbk edition", "number_of_pages": 368, "key": "/books/OL10175195M", "authors": [{"key": "/authors/OL2033823A"}], "publish_date": "December 1992", "works": [{"key": "/works/OL7143804W"}], "contributions": ["Lynn, Wemett Nicholas ()"], "subjects": ["Nursing", "Pharmacology", "Medical / Nursing", "Health/Fitness"], "physical_dimensions": "11.2 x 8.8 x 1 inches", "local_id": ["urn:bwbsku:P4-ABU-278"], "source_records": ["promise:bwb_daily_pallets_2020-06-04"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T08:56:25.608194"}}
+/type/edition /books/OL10175685M 5 2010-04-24T17:56:06.023290 {"publishers": ["Charles C Thomas Pub Ltd"], "number_of_pages": 344, "subtitle": "The Convergence and Divergence of Concepts, Issues and Trends from the Research Literature", "weight": "2.3 pounds", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0398077444"], "identifiers": {"goodreads": ["2361902"]}, "isbn_13": ["9780398077440"], "covers": [2413448], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T17:56:06.023290"}, "latest_revision": 5, "key": "/books/OL10175685M", "authors": [{"key": "/authors/OL3387197A"}], "publish_date": "September 2007", "title": "Disciplines, Disasters and Emergency Management", "works": [{"key": "/works/OL9342087W"}], "type": {"key": "/type/edition"}, "subjects": ["Political Freedom & Security - Law Enforcement", "Political Science", "Crisis management", "Disaster relief", "Emergency management", "Research", "Politics/International Relations"], "physical_dimensions": "9.8 x 8 x 0.9 inches", "revision": 5}
+/type/edition /books/OL10176397M 3 2022-12-17T11:18:51.426116 {"physical_format": "Paperback", "title": "Low Carbohydrate Book (Low Carbohydrate Diet)", "isbn_10": ["0399509437"], "publishers": ["Perigee Trade"], "isbn_13": ["9780399509438"], "languages": [{"key": "/languages/eng"}], "publish_date": "June 1965", "key": "/books/OL10176397M", "authors": [{"key": "/authors/OL2859090A"}], "subjects": ["General", "Diet / Health / Fitness", "Diet/Nutrition"], "works": [{"key": "/works/OL8538910W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780399509438"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T11:18:51.426116"}}
+/type/edition /books/OL10176500M 4 2022-12-17T11:41:06.746070 {"publishers": ["Perigee Trade"], "title": "Aa Gde West 90pa", "isbn_13": ["9780399515705"], "physical_format": "Paperback", "isbn_10": ["0399515704"], "publish_date": "February 28, 1990", "key": "/books/OL10176500M", "authors": [{"key": "/authors/OL2689069A"}], "oclc_numbers": ["21108729"], "works": [{"key": "/works/OL8077293W"}], "type": {"key": "/type/edition"}, "subjects": ["United States - General", "Travel - United States"], "source_records": ["bwb:9780399515705"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T11:41:06.746070"}}
+/type/edition /books/OL10176954M 2 2009-12-15T00:43:59.012728 {"publishers": ["Putnam Pub Group (L)"], "title": "Odd Jobs in Lumbering.", "isbn_10": ["0399604979"], "isbn_13": ["9780399604973"], "physical_format": "Library Binding", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:43:59.012728"}, "publish_date": "January 2000", "key": "/books/OL10176954M", "authors": [{"key": "/authors/OL3387479A"}], "latest_revision": 2, "subjects": ["Juvenile literature", "Language (New word, slang, etc", "Lumbering", "Lumberman", "Terminology"], "works": [{"key": "/works/OL9342420W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL1017699M 5 2020-11-24T03:14:16.927127 {"other_titles": ["Quantum electronics: lsers--physics and applications.", "Lasers--physics and applications."], "publishers": ["SPIE"], "identifiers": {"goodreads": ["4380199"]}, "subtitle": "16-20 September, 1996, Varna, Bulgaria", "isbn_10": ["0819424668"], "series": ["Proceedings / SPIE--the International Society for Optical Engineering ;", "v. 3052", "Proceedings of SPIE--the International Society for Optical Engineering ;", "v. 3052."], "covers": [3863331], "lc_classifications": ["QC685 .I65 1996"], "latest_revision": 5, "key": "/books/OL1017699M", "authors": [{"key": "/authors/OL547865A"}], "publish_places": ["Bellingham, Washington"], "contributions": ["Atanasov, Peter A.", "Institut po elektronika (Bu\u0306lgarska akademii\u0361a\ufe21 na naukite)", "Society of Photo-optical Instrumentation Engineers."], "pagination": "ix, 412 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part25.utf8:119871147:1588"], "title": "Ninth International School on Quantum Electronics: lasers--physics and applications", "dewey_decimal_class": ["621.36/6"], "notes": {"type": "/type/text", "value": "Includes bibliographical references and index."}, "number_of_pages": 412, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["96072057"], "subjects": ["Lasers -- Congresses.", "Quantum electronics -- Congresses.", "Lasers -- Industrial applications -- Congresses."], "publish_date": "1996", "publish_country": "wau", "last_modified": {"type": "/type/datetime", "value": "2020-11-24T03:14:16.927127"}, "by_statement": "Peter A. Atanasov ; organized by Institute of Electronics, Bulgarian Academy of Sciences ; cosponsored by SPIE--The International Society for Optical Engineering ... [et al.].", "oclc_numbers": ["36302218"], "works": [{"key": "/works/OL3367242W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10177429M 3 2022-12-04T01:50:42.327908 {"publishers": ["Scholarly Pr"], "subtitle": "People of All Times and All Places Who Have Been Important to the History and Life of the State", "weight": "4.1 pounds", "edition_name": "2nd edition", "physical_format": "Hardcover", "key": "/books/OL10177429M", "subjects": ["Biography/Autobiography"], "isbn_13": ["9780403098088"], "source_records": ["marc:bcl_marc/bcl_open.04.mrc:91317736:676", "ia:massachusettsbio0001unse"], "title": "Massachusetts Biographical Dictionary", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0403098084"], "publish_date": "December 1998", "works": [{"key": "/works/OL19538055W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.5 x 5.6 x 3.4 inches", "covers": [13018323], "ocaid": "massachusettsbio0001unse", "lc_classifications": ["CT240 .M37 1998"], "oclc_numbers": ["40736078"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T01:50:42.327908"}}
+/type/edition /books/OL10177514M 4 2021-07-19T04:44:43.817885 {"publishers": ["Ams Pr Inc"], "physical_format": "Hardcover", "weight": "9.6 ounces", "source_records": ["marc:marc_openlibraries_sanfranciscopubliclibrary/sfpl_chq_2018_12_24_run01.mrc:742167:3045", "ia:arthurianromance0003unse"], "title": "Tristan and Iseult (Arthurian Romances : Unrepresented in Malory's \"Morte D'arthur\" No. II, Vol. III)", "isbn_13": ["9780404004736"], "local_id": ["urn:sfpl:31223018446188", "urn:sfpl:31223018446196", "urn:sfpl:31223900118606", "urn:sfpl:31223900118598", "urn:sfpl:31223900118580", "urn:sfpl:31223900118572"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0404004733"], "publish_date": "June 1970", "key": "/books/OL10177514M", "oclc_numbers": ["470995759"], "works": [{"key": "/works/OL19662468W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "7.2 x 5.2 x 0.8 inches", "covers": [11455229], "ocaid": "arthurianromance0003unse", "lccn": ["71014784"], "lc_classifications": ["PN685 .A7 1970"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-07-19T04:44:43.817885"}}
+/type/edition /books/OL10177756M 2 2009-12-15T00:43:59.012728 {"physical_format": "Hardcover", "title": "The Music of the Franch Psalter of 1562", "isbn_10": ["0404051197"], "publishers": ["Ams Pr Inc"], "isbn_13": ["9780404051198"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:43:59.012728"}, "publish_date": "June 1939", "key": "/books/OL10177756M", "authors": [{"key": "/authors/OL993284A"}], "latest_revision": 2, "works": [{"key": "/works/OL4753749W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10177798M 3 2010-11-21T08:53:08.109823 {"publishers": ["Ams Pr Inc"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2010-11-21T08:53:08.109823"}, "weight": "2.3 pounds", "title": "Shakespeare's Predecessors in the English Drama", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780404063184"], "physical_format": "Hardcover", "isbn_10": ["0404063187"], "publish_date": "June 1968", "physical_dimensions": "9.5 x 6.5 x 1.2 inches", "key": "/books/OL10177798M", "authors": [{"key": "/authors/OL18368A"}], "latest_revision": 3, "works": [{"key": "/works/OL8079698W"}], "type": {"key": "/type/edition"}, "first_sentence": {"type": "/type/text", "value": "IN attempting a survey of one of the great periods of literary history, the critic is met with a problem, upon his conception and solution of which will depend both method and distribution of material."}, "revision": 3}
+/type/edition /books/OL10178058M 2 2009-12-15T00:44:00.239899 {"physical_format": "Hardcover", "title": "Gospel of Truth", "isbn_10": ["0404160824"], "publishers": ["Ams Pr Inc"], "isbn_13": ["9780404160821"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:44:00.239899"}, "publish_date": "January 2003", "key": "/books/OL10178058M", "authors": [{"key": "/authors/OL149461A"}], "latest_revision": 2, "works": [{"key": "/works/OL1432908W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10179075M 2 2009-12-15T00:44:01.326756 {"physical_format": "Hardcover", "weight": "10.4 ounces", "title": "Dictionnaire De Musique Dans Lequel on Simoplifie Les Expressions Et Le Definitions Mathematiques Et Physiques Qui Ont Rapport a Cet Art (Music and T)", "isbn_10": ["0404601758"], "publishers": ["Ams Pr Inc"], "isbn_13": ["9780404601751"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:44:01.326756"}, "publish_date": "June 1979", "key": "/books/OL10179075M", "authors": [{"key": "/authors/OL3388178A"}], "latest_revision": 2, "subjects": ["Reference", "Music"], "works": [{"key": "/works/OL9343354W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "7.5 x 5 x 0.8 inches", "revision": 2}
+/type/edition /books/OL10179116M 2 2009-12-15T00:44:01.326756 {"physical_format": "Hardcover", "title": "Handedness and Mental Abilities an Historical Reader", "isbn_10": ["0404608922"], "publishers": ["AMS Press"], "isbn_13": ["9780404608927"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:44:01.326756"}, "publish_date": "December 1987", "key": "/books/OL10179116M", "authors": [{"key": "/authors/OL2680397A"}], "latest_revision": 2, "works": [{"key": "/works/OL8055740W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10179383M 2 2019-03-13T18:34:24.025305 {"publishers": ["AMS Press"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2019-03-13T18:34:24.025305"}, "source_records": ["marc:talis_openlibrary_contribution/talis-openlibrary-contribution.mrc:572605212:550"], "title": "Psychology and Sociology of Sport", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 237, "isbn_13": ["9780404634018"], "edition_name": "Current Selected Research 1 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["040463401X"], "publish_date": "August 1986", "key": "/books/OL10179383M", "authors": [{"key": "/authors/OL3388276A"}, {"key": "/authors/OL2688631A"}], "latest_revision": 2, "works": [{"key": "/works/OL19311702W"}], "type": {"key": "/type/edition"}, "subjects": ["Sociology, Social Studies", "Sports psychology", "Psychology Of Sports", "Sociology Of Sports", "Psychology"], "revision": 2}
+/type/edition /books/OL10179473M 4 2019-07-30T22:58:24.154277 {"publishers": ["Ams Pr Inc"], "languages": [{"key": "/languages/eng"}], "subtitle": "Studies in Interlibrary Loan, Document Delivery, Access Services and Resource Sharing (Ill/Dd Studies in Interlibrary Loan Document Delivery Access Services and Resource Sharing)", "last_modified": {"type": "/type/datetime", "value": "2019-07-30T22:58:24.154277"}, "title": "Ill/Dd", "contributions": ["Gregg Sapp (Editor)", "Mary E. Jackson (Editor)"], "identifiers": {"goodreads": ["2132218"]}, "isbn_13": ["9780404645014"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Hardcover", "isbn_10": ["0404645011"], "publish_date": "March 30, 2008", "key": "/books/OL10179473M", "latest_revision": 4, "works": [{"key": "/works/OL3526388W"}], "type": {"key": "/type/edition"}, "subjects": ["Library & information services", "Library, archive & information management", "Yearbooks, annuals, almanacs", "c 1990 to c 2000", "Information Management", "Business & Economics", "Business/Economics"], "revision": 4}
+/type/edition /books/OL10180104M 2 2009-12-15T00:44:01.326756 {"physical_format": "Hardcover", "title": "Piers Gaveston", "isbn_10": ["040508451X"], "publishers": ["Ayer Co Pub"], "isbn_13": ["9780405084515"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:44:01.326756"}, "publish_date": "June 1974", "key": "/books/OL10180104M", "authors": [{"key": "/authors/OL3388467A"}], "latest_revision": 2, "works": [{"key": "/works/OL9343659W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10180155M 2 2009-12-15T00:44:01.326756 {"publishers": ["Ayer Co Pub"], "key": "/books/OL10180155M", "title": "Lets Pretend", "number_of_pages": 260, "isbn_13": ["9780405085987"], "physical_format": "Hardcover", "isbn_10": ["0405085982"], "publish_date": "June 1978", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:44:01.326756"}, "authors": [{"key": "/authors/OL3388478A"}], "latest_revision": 2, "works": [{"key": "/works/OL9343673W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10180209M 4 2010-04-24T17:56:06.023290 {"publishers": ["Ayer Co Pub"], "number_of_pages": 706, "title": "Frederick Law Olmstead Landscape Architect, 1822-1903", "isbn_10": ["0405088299"], "identifiers": {"goodreads": ["2713311"]}, "isbn_13": ["9780405088292"], "physical_format": "Textbook Binding", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T17:56:06.023290"}, "publish_date": "June 1969", "key": "/books/OL10180209M", "authors": [{"key": "/authors/OL3388495A"}], "latest_revision": 4, "works": [{"key": "/works/OL9343689W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10180255M 4 2010-04-24T17:56:06.023290 {"publishers": ["Ayer Co Pub"], "physical_format": "Hardcover", "subtitle": "Romanian Folk Songs Collected from the Peasants", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T17:56:06.023290"}, "title": "The Bard of the Dimbovitza", "identifiers": {"goodreads": ["4766298"]}, "isbn_13": ["9780405090370"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0405090374"], "publish_date": "June 1976", "key": "/books/OL10180255M", "authors": [{"key": "/authors/OL3388507A"}], "latest_revision": 4, "works": [{"key": "/works/OL9343702W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10180367M 5 2020-05-19T07:31:54.278479 {"publishers": ["Beaufort Books"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2020-05-19T07:31:54.278479"}, "title": "Natural Way to Beauty", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780405120541"], "covers": [9763442], "physical_format": "Hardcover", "isbn_10": ["0405120540"], "publish_date": "June 1979", "latest_revision": 5, "key": "/books/OL10180367M", "authors": [{"key": "/authors/OL2320770A"}], "ocaid": "naturalwaytobeau00mari", "oclc_numbers": ["6435846"], "works": [{"key": "/works/OL7575957W"}], "type": {"key": "/type/edition"}, "subjects": ["Beauty & Grooming - General", "Fashion & Grooming"], "revision": 5}
+/type/edition /books/OL10180396M 4 2022-11-14T20:35:53.086332 {"publishers": ["Beaufort Books"], "physical_format": "Hardcover", "subtitle": "A Practical Guide to Prevention and Detection of Business Crime, Jan 1977-June 1978. Ed by Jules B. Roll. Documentation from (Crimes Against Business)", "title": "Crimes Against Business", "isbn_13": ["9780405126130"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0405126131"], "publish_date": "December 1979", "key": "/books/OL10180396M", "authors": [{"key": "/authors/OL3388539A"}], "oclc_numbers": ["7825828"], "works": [{"key": "/works/OL9343763W"}], "type": {"key": "/type/edition"}, "subjects": ["Criminology", "Business Ethics", "Offenses And Offenders", "Sociology"], "local_id": ["urn:bwbsku:T2-DOT-012"], "source_records": ["promise:bwb_daily_pallets_2022-10-04"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-14T20:35:53.086332"}}
+/type/edition /books/OL10181050M 4 2019-02-18T05:51:34.606390 {"publishers": ["Lexis Law Publishing (Va)"], "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2019-02-18T05:51:34.606390"}, "source_records": ["marc:talis_openlibrary_contribution/talis-openlibrary-contribution.mrc:573911361:891"], "title": "Butterworths Property Law Service", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780406109002"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0406109001"], "publish_date": "December 1989", "key": "/books/OL10181050M", "authors": [{"key": "/authors/OL3388893A"}], "latest_revision": 4, "oclc_numbers": ["21599382"], "works": [{"key": "/works/OL9344134W"}], "type": {"key": "/type/edition"}, "subjects": ["Property", "Legal Reference / Law Profession"], "revision": 4}
+/type/edition /books/OL1018135M 6 2020-11-24T04:09:01.605542 {"publishers": ["Lawyers Cooperative Pub."], "isbn_10": ["0762000422"], "subject_place": ["Pennsylvania."], "lc_classifications": ["KFP191.A43 H86"], "latest_revision": 6, "key": "/books/OL1018135M", "authors": [{"key": "/authors/OL548024A"}], "publish_places": ["Rochester, N.Y"], "pagination": "1 v. (loose-leaf) :", "source_records": ["marc:marc_records_scriblio_net/part25.dat:214093256:984", "marc:marc_loc_updates/v36.i37.records.utf8:5867019:988", "marc:marc_loc_2016/BooksAll.2016.part25.utf8:120259071:988"], "title": "Pennsylvania law of uninsured and underinsured motorist coverage and arbitration practice", "dewey_decimal_class": ["346.748/086572"], "notes": {"type": "/type/text", "value": "Includes index."}, "identifiers": {"goodreads": ["2046302"]}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["96075154"], "subjects": ["Insurance, Uninsured motorist -- Law and legislation -- Pennsylvania", "Underinsured motorist insurance -- Law and legislation -- Pennsylvania"], "publish_date": "1997", "publish_country": "nyu", "last_modified": {"type": "/type/datetime", "value": "2020-11-24T04:09:01.605542"}, "series": ["Pennsylvania motor vehicle series", "Lawyers Cooperative practice guide", "Lawyers Cooperative practice guides."], "by_statement": "Stephen N. Huntington.", "oclc_numbers": ["38304653"], "works": [{"key": "/works/OL3367725W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL101813M 4 2020-12-02T07:53:54.399528 {"isbn_invalid": ["8480920462"], "subject_place": ["Andalusia (Spain)"], "lc_classifications": ["DP302.A5 G55 1998"], "subtitle": "prego\u0301n de San Fernando : Capilla Real-Catedral de Sevilla, 23 de mayo de 1997", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part28.utf8:90407369:864"], "title": "Andaluci\u0301a, designio de Fernando III el santo", "languages": [{"key": "/languages/spa"}], "subjects": ["Fernando III, King of Castile and Leon, 1199?-1252.", "Andalusia (Spain) -- History."], "publish_country": "sp ", "by_statement": "Francisco Gil Delgado.", "oclc_numbers": ["58604961"], "type": {"key": "/type/edition"}, "publishers": ["Guadalquivir Ediciones"], "key": "/books/OL101813M", "authors": [{"key": "/authors/OL68401A"}], "publish_places": ["Sevilla"], "pagination": "57 p. :", "dewey_decimal_class": ["946/.8"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 49-51)."}, "number_of_pages": 57, "lccn": ["99216944"], "isbn_10": ["8480930462"], "publish_date": "1998", "works": [{"key": "/works/OL811463W"}], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-02T07:53:54.399528"}}
+/type/edition /books/OL10181737M 5 2011-04-19T17:37:02.896494 {"publishers": ["Butterworths Tolley"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-19T17:37:02.896494"}, "title": "A Guide to Intellectual Property in the Financial Services Market", "identifiers": {"goodreads": ["5725091"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780406931436"], "isbn_10": ["0406931437"], "publish_date": "May 2002", "key": "/books/OL10181737M", "authors": [{"key": "/authors/OL3389209A"}, {"key": "/authors/OL428200A"}], "latest_revision": 5, "oclc_numbers": ["49738559"], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10181740M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Butterworths Law"], "title": "Tiley and Collison's UK Tax Guide", "isbn_13": ["9780406931573"], "isbn_10": ["0406931577"], "publish_date": "October 2000", "key": "/books/OL10181740M", "authors": [{"key": "/authors/OL1607773A"}, {"key": "/authors/OL1822895A"}], "type": {"key": "/type/edition"}, "subjects": ["English law: taxation law", "Scots law: taxation law", "United Kingdom, Great Britain"], "revision": 1}
+/type/edition /books/OL1018180M 5 2020-11-24T04:09:36.846348 {"publishers": ["HiStory Ink Books"], "number_of_pages": 544, "subtitle": "true stories, yarns, anecdotes, letters, memos, poems, and cartoons", "isbn_10": ["1887200010"], "lc_classifications": ["SD375 .F67 1996"], "latest_revision": 5, "key": "/books/OL1018180M", "publish_places": ["Hat Creek, CA"], "contributions": ["Davies, Gilbert W.", "Frank, Florice M."], "pagination": "xxiv, 544 p. :", "source_records": ["marc:marc_records_scriblio_net/part25.dat:214133892:819", "marc:marc_loc_2016/BooksAll.2016.part25.utf8:120302221:819"], "title": "Forest Service humor", "lccn": ["96075239"], "notes": {"type": "/type/text", "value": "Includes index."}, "identifiers": {"goodreads": ["2945084"]}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "subjects": ["United States. Forest Service -- Anecdotes.", "United States. Forest Service -- Humor."], "publish_date": "1996", "publish_country": "cau", "last_modified": {"type": "/type/datetime", "value": "2020-11-24T04:09:36.846348"}, "by_statement": "edited by Gilbert W. Davies and Florice M. Frank ; cartoon illustrations by Robert W. Rowe.", "oclc_numbers": ["36393576"], "works": [{"key": "/works/OL19422018W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10182284M 7 2023-01-10T23:08:32.466133 {"publishers": ["Butterworth-Heinemann"], "number_of_pages": 542, "subtitle": "Neurosurgery (Rob and Smith's Operative Surgery 5th Edition)", "covers": [5040367], "physical_format": "Hardcover", "key": "/books/OL10182284M", "authors": [{"key": "/authors/OL3389427A"}, {"key": "/authors/OL453693A"}], "ocaid": "neurosurgery0000unse", "contributions": ["Kemp Clark (Editor)"], "subjects": ["Neurosurgery", "Health/Fitness"], "edition_name": "4th edition", "source_records": ["ia:neurosurgery0000unse", "marc:marc_columbia/Columbia-extract-20221130-008.mrc:514255142:1678"], "title": "Rob and Smith's Operative Surgery", "identifiers": {"goodreads": ["1558205"]}, "isbn_13": ["9780407006683"], "isbn_10": ["0407006680"], "publish_date": "January 1990", "works": [{"key": "/works/OL18148475W"}], "type": {"key": "/type/edition"}, "lccn": ["gb89014690"], "lc_classifications": ["RD31"], "oclc_numbers": ["21564479"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2023-01-10T23:08:32.466133"}}
+/type/edition /books/OL10182927M 3 2022-12-03T22:55:03.551909 {"physical_format": "Hardcover", "languages": [{"key": "/languages/ger"}], "publishers": ["Architectural Press"], "isbn_10": ["0408500514"], "number_of_pages": 272, "edition_name": "Facsimile edition", "isbn_13": ["9780408500517"], "publish_date": "August 1989", "key": "/books/OL10182927M", "authors": [{"key": "/authors/OL576586A"}], "title": "Collected Architectural Designs (Architectural Press Monographs)", "subjects": ["Architecture", "c 1700 to c 1800", "c 1800 to c 1900"], "works": [{"key": "/works/OL3460970W"}], "type": {"key": "/type/edition"}, "source_records": ["amazon:0408500514"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-03T22:55:03.551909"}}
+/type/edition /books/OL10183082M 3 2011-04-26T10:40:38.651644 {"publishers": ["Butterworth-Heinemann"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-26T10:40:38.651644"}, "title": "Strategic Management Techniques", "number_of_pages": 528, "isbn_13": ["9780409110883"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0409110884"], "publish_date": "March 1987", "key": "/books/OL10183082M", "authors": [{"key": "/authors/OL2337029A"}], "latest_revision": 3, "oclc_numbers": ["15376719"], "works": [{"key": "/works/OL7624427W"}], "type": {"key": "/type/edition"}, "subjects": ["Management - General", "Management & management techniques", "Corporate Planning", "Business / Economics / Finance", "Business/Economics"], "revision": 3}
+/type/edition /books/OL10183155M 3 2010-04-24T17:56:06.023290 {"publishers": ["Butterworths Law (New Zealand)"], "number_of_pages": 1102, "key": "/books/OL10183155M", "title": "Equity, Doctrines and Remedies", "identifiers": {"goodreads": ["6312512"]}, "isbn_13": ["9780409301861"], "edition_name": "3Rev Ed edition", "physical_format": "Hardcover", "isbn_10": ["0409301868"], "publish_date": "September 1992", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T17:56:06.023290"}, "authors": [{"key": "/authors/OL3389778A"}, {"key": "/authors/OL3389779A"}, {"key": "/authors/OL3389780A"}], "latest_revision": 3, "type": {"key": "/type/edition"}, "subjects": ["Equity & trusts", "Australia"], "revision": 3}
+/type/edition /books/OL10183253M 3 2011-04-29T14:27:56.851949 {"publishers": ["Lexis Law Publishing (Va)"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T14:27:56.851949"}, "title": "Understanding Income Tax Law - The Flow Chart Way", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780409491746"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0409491748"], "publish_date": "April 1985", "key": "/books/OL10183253M", "authors": [{"key": "/authors/OL3389850A"}], "latest_revision": 3, "oclc_numbers": ["27499843"], "works": [{"key": "/works/OL9345011W"}], "type": {"key": "/type/edition"}, "subjects": ["Military", "Legal Reference / Law Profession"], "revision": 3}
+/type/edition /books/OL10183479M 3 2022-10-27T06:17:13.475658 {"publishers": ["Lexis Law Publishing (Va)"], "languages": [{"key": "/languages/eng"}], "subtitle": "A Legal Handbook for Business", "title": "Competition Law", "number_of_pages": 104, "isbn_13": ["9780409896480"], "physical_format": "Paperback", "isbn_10": ["0409896489"], "publish_date": "July 1990", "key": "/books/OL10183479M", "authors": [{"key": "/authors/OL3390023A"}, {"key": "/authors/OL3390024A"}], "works": [{"key": "/works/OL12957761W"}], "type": {"key": "/type/edition"}, "subjects": ["Military", "Legal Reference / Law Profession"], "covers": [12974845], "ocaid": "competitionlawle0000mung", "lc_classifications": ["KE1639.M86 1990"], "oclc_numbers": ["21909543"], "source_records": ["ia:competitionlawle0000mung"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-27T06:17:13.475658"}}
+/type/edition /books/OL10183497M 4 2022-12-07T00:37:16.480919 {"publishers": ["Butterworth-Heinemann"], "title": "CLINICAL METHODS", "identifiers": {"goodreads": ["3193907"]}, "physical_format": "Hardcover", "isbn_10": ["0409900133"], "publish_date": "1983", "key": "/books/OL10183497M", "authors": [{"key": "/authors/OL2068428A"}], "works": [{"key": "/works/OL7202817W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:P7-CDL-792"], "source_records": ["promise:bwb_daily_pallets_2022-03-17"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-07T00:37:16.480919"}}
+/type/edition /books/OL10183703M 1 2008-04-30T09:38:13.731961 {"physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["HarperCollins Publishers Ltd"], "title": "Tchaik Glazunov", "isbn_13": ["9780411112844"], "isbn_10": ["0411112848"], "publish_date": "November 2, 1990", "key": "/books/OL10183703M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10183850M 1 2008-04-30T09:38:13.731961 {"physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["HarperCollins Publishers Ltd"], "title": "Catalogue 11 Collins Classics", "isbn_13": ["9780411133221"], "isbn_10": ["0411133225"], "publish_date": "May 14, 1991", "key": "/books/OL10183850M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10183981M 5 2011-04-30T04:15:48.820185 {"publishers": ["Chapman & Hall"], "number_of_pages": 300, "last_modified": {"type": "/type/datetime", "value": "2011-04-30T04:15:48.820185"}, "title": "Building Maintenance Engineering Price Book 1985-86", "type": {"key": "/type/edition"}, "identifiers": {"goodreads": ["5730541"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780412010712"], "isbn_10": ["0412010712"], "publish_date": "March 1986", "key": "/books/OL10183981M", "authors": [{"key": "/authors/OL2068687A"}], "latest_revision": 5, "oclc_numbers": ["234245598"], "works": [{"key": "/works/OL7203369W"}], "physical_format": "Hardcover", "subjects": ["Repair", "Home Improvement / Construction"], "revision": 5}
+/type/edition /books/OL10184251M 7 2020-05-16T03:02:56.667285 {"publishers": ["Chapman & Hall"], "number_of_pages": 350, "subtitle": "Methods for Purification and Characterization", "covers": [9511967], "physical_format": "Textbook Binding", "last_modified": {"type": "/type/datetime", "value": "2020-05-16T03:02:56.667285"}, "latest_revision": 7, "key": "/books/OL10184251M", "authors": [{"key": "/authors/OL2689031A"}], "ocaid": "membranereceptor0011unse", "subjects": ["Membrane Biochemistry", "Membrane Physiology"], "source_records": ["marc:marc_oregon_summit_records/catalog_files/osu_bibs.mrc:229504231:1102", "ia:membranereceptor0011unse"], "title": "Membrane Receptors", "identifiers": {"goodreads": ["7092853"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780412217401"], "isbn_10": ["0412217406"], "publish_date": "June 1981", "works": [{"key": "/works/OL8076828W"}], "type": {"key": "/type/edition"}, "revision": 7}
+/type/edition /books/OL10184422M 2 2009-12-15T00:44:04.803544 {"publishers": ["Nelson Thornes"], "isbn_10": ["0412344203"], "number_of_pages": 250, "isbn_13": ["9780412344206"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:44:04.803544"}, "latest_revision": 2, "key": "/books/OL10184422M", "authors": [{"key": "/authors/OL2660762A"}], "title": "Introduction to Composites", "subjects": ["Biochemistry"], "works": [{"key": "/works/OL7992112W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10184742M 1 2008-04-30T09:38:13.731961 {"physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Kluwer Academic Publishers Group"], "number_of_pages": 256, "isbn_13": ["9780412497704"], "isbn_10": ["0412497700"], "publish_date": "January 1, 1994", "key": "/books/OL10184742M", "title": "High Voltage and Switchgear Technology", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10184938M 4 2022-05-25T01:22:22.514759 {"publishers": ["Springer"], "languages": [{"key": "/languages/eng"}], "weight": "3.7 pounds", "title": "Hydrometallurgy '94", "isbn_10": ["0412597802"], "number_of_pages": 1171, "isbn_13": ["9780412597800"], "covers": [5527311, 5040315], "edition_name": "1 edition", "physical_format": "Hardcover", "key": "/books/OL10184938M", "authors": [{"key": "/authors/OL3390680A"}], "publish_date": "December 31, 1899", "works": [{"key": "/works/OL9345786W"}], "type": {"key": "/type/edition"}, "subjects": ["Metals technology / metallurgy", "Mining technology & engineering", "Liquid Metallurgy", "Technology", "Technology & Industrial Arts", "Science/Mathematics", "General", "Science / Geology", "Metallurgy"], "physical_dimensions": "9.2 x 6.2 x 2.5 inches", "source_records": ["bwb:9780412597800"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T01:22:22.514759"}}
+/type/edition /books/OL1018495M 8 2022-12-05T05:55:07.109217 {"publishers": ["Lotus Light Publications"], "number_of_pages": 506, "covers": [1667567], "lc_classifications": ["BL1112.54 .E5 1996"], "key": "/books/OL1018495M", "publish_places": ["Twin Lakes, WI"], "contributions": ["Ghose, Aurobindo, 1872-1950."], "work_title": ["Vedas. R\u0325gveda. English. Selections."], "languages": [{"key": "/languages/eng"}], "pagination": "506 p. ;", "source_records": ["marc:marc_records_scriblio_net/part25.dat:214416970:689", "marc:marc_loc_2016/BooksAll.2016.part25.utf8:120602508:690", "ia:hymnstomysticfir0000unse", "promise:bwb_daily_pallets_2022-05-25"], "title": "Hymns to the mystic fire", "dewey_decimal_class": ["294.5/921204521"], "identifiers": {"goodreads": ["1370512"]}, "edition_name": "1st U.S. ed.", "lccn": ["96075800"], "isbn_10": ["0914955225"], "publish_date": "1996", "publish_country": "wiu", "by_statement": "with Sanskrit text, English translation and commentary [by] Sri Aurobindo.", "oclc_numbers": ["38992568"], "works": [{"key": "/works/OL18934860W"}], "type": {"key": "/type/edition"}, "ocaid": "hymnstomysticfir0000unse", "local_id": ["urn:bwbsku:O8-BAP-442"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-05T05:55:07.109217"}}
+/type/edition /books/OL10185217M 3 2011-04-27T11:30:44.312554 {"publishers": ["Chapman & Hall"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T11:30:44.312554"}, "title": "Ophthalmology Companion", "number_of_pages": 272, "isbn_13": ["9780412796807"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0412796805"], "publish_date": "July 1998", "key": "/books/OL10185217M", "authors": [{"key": "/authors/OL3390848A"}], "latest_revision": 3, "oclc_numbers": ["228377253"], "works": [{"key": "/works/OL9345928W"}], "type": {"key": "/type/edition"}, "subjects": ["Reference works", "Ophthalmology", "Medical"], "revision": 3}
+/type/edition /books/OL10185273M 3 2022-05-25T04:58:22.961415 {"publishers": ["Hodder Arnold H&S"], "key": "/books/OL10185273M", "title": "Bone Marrow Diagnosis", "isbn_13": ["9780412823305"], "physical_format": "Hardcover", "isbn_10": ["0412823306"], "authors": [{"key": "/authors/OL3390878A"}], "works": [{"key": "/works/OL9345951W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780412823305"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T04:58:22.961415"}}
+/type/edition /books/OL10185294M 3 2022-05-25T04:58:23.304876 {"publishers": ["Hodder Arnold H&S"], "key": "/books/OL10185294M", "title": "Asthma - Ed4", "isbn_13": ["9780412832000"], "physical_format": "Hardcover", "isbn_10": ["0412832003"], "authors": [{"key": "/authors/OL3390896A"}], "works": [{"key": "/works/OL9345964W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780412832000"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T04:58:23.304876"}}
+/type/edition /books/OL10185295M 5 2022-05-25T00:07:24.344620 {"publishers": ["Hodder Arnold"], "title": "Handbk Sleep Relatd Breathing", "isbn_10": ["0412832100"], "identifiers": {"goodreads": ["4106020"]}, "isbn_13": ["9780412832109"], "physical_format": "Hardcover", "key": "/books/OL10185295M", "authors": [{"key": "/authors/OL3390897A"}], "works": [{"key": "/works/OL9345965W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780412832109"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T00:07:24.344620"}}
+/type/edition /books/OL10185385M 6 2022-12-08T22:28:45.951579 {"publishers": ["Methuen Publishing Ltd"], "identifiers": {"goodreads": ["4864462"]}, "title": "The Super Saleswoman", "number_of_pages": 160, "isbn_13": ["9780413170200"], "physical_format": "Hardcover", "isbn_10": ["0413170209"], "publish_date": "September 29, 1988", "key": "/books/OL10185385M", "authors": [{"key": "/authors/OL2775139A"}], "works": [{"key": "/works/OL8341554W"}], "type": {"key": "/type/edition"}, "subjects": ["Sales & marketing"], "covers": [11475863], "ocaid": "supersaleswoman0000macd_q8h4", "lc_classifications": ["HF5438.25"], "source_records": ["ia:supersaleswoman0000macd_q8h4", "promise:bwb_daily_pallets_2021-02-11"], "local_id": ["urn:bwbsku:KO-933-302"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-08T22:28:45.951579"}}
+/type/edition /books/OL10185436M 2 2020-08-19T17:58:00.970466 {"publishers": ["Methuen Drama"], "physical_format": "Hardcover", "source_records": ["bwb:9780413336415"], "title": "Methuen Drama", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780413336415"], "isbn_10": ["0413336417"], "publish_date": "August 12, 1996", "key": "/books/OL10185436M", "last_modified": {"type": "/type/datetime", "value": "2020-08-19T17:58:00.970466"}, "latest_revision": 2, "works": [{"key": "/works/OL21394570W"}], "type": {"key": "/type/edition"}, "subjects": ["Collections & anthologies of various literary forms", "Drama texts: from c 1900 -", "c 1990 to c 2000"], "revision": 2}
+/type/edition /books/OL10185506M 8 2022-12-04T23:40:47.046903 {"publishers": ["Heinemann"], "identifiers": {"goodreads": ["1783607"]}, "subtitle": "The Bbc Giles Cooper Award Winners (Metheun Modern Plays Series)", "weight": "8.8 ounces", "covers": [5040919], "physical_format": "Hardcover", "lc_classifications": ["PR1259.R33"], "key": "/books/OL10185506M", "authors": [{"key": "/authors/OL2044660A"}], "subjects": ["Radio", "General", "Radio (Performing Arts)", "Plays / Drama"], "isbn_13": ["9780413486004"], "source_records": ["bwb:9780413486004", "promise:bwb_daily_pallets_2022-07-11"], "title": "Best Radio Plays of 1980", "number_of_pages": 112, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0413486001"], "publish_date": "April 1983", "works": [{"key": "/works/OL7163546W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 5.8 x 0.5 inches", "local_id": ["urn:bwbsku:KR-089-886"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T23:40:47.046903"}}
+/type/edition /books/OL10185799M 5 2011-04-29T09:42:12.691611 {"publishers": ["Methuen Publishing Ltd"], "number_of_pages": 320, "last_modified": {"type": "/type/datetime", "value": "2011-04-29T09:42:12.691611"}, "title": "The Lure of the Turf", "type": {"key": "/type/edition"}, "identifiers": {"goodreads": ["4774828"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780413773159"], "isbn_10": ["0413773159"], "latest_revision": 5, "key": "/books/OL10185799M", "authors": [{"key": "/authors/OL2693313A"}], "oclc_numbers": ["51963724"], "works": [{"key": "/works/OL8089307W"}], "physical_format": "Paperback", "subjects": ["Collections & anthologies of various literary forms", "Horse racing"], "revision": 5}
+/type/edition /books/OL10186088M 2 2011-04-30T05:46:27.909460 {"publishers": ["Sweet & Maxwell Ltd"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-30T05:46:27.909460"}, "title": "The Scottish Licensing Handbook (PHB)", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780414013346"], "isbn_10": ["0414013344"], "publish_date": "August 1999", "key": "/books/OL10186088M", "latest_revision": 2, "oclc_numbers": ["43517522"], "type": {"key": "/type/edition"}, "subjects": ["Scots law: licensing, gaming & club law"], "revision": 2}
+/type/edition /books/OL10186440M 2 2009-12-15T00:44:05.993058 {"publishers": ["Taylor & Francis Books Ltd"], "key": "/books/OL10186440M", "title": "Pirates - Kenny V 3", "isbn_13": ["9780415033688"], "physical_format": "Hardcover", "isbn_10": ["0415033683"], "latest_revision": 2, "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:44:05.993058"}, "authors": [{"key": "/authors/OL3391216A"}], "works": [{"key": "/works/OL9346311W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10186920M 4 2021-09-17T13:32:55.672444 {"publishers": ["International Thomson Publishing Services"], "languages": [{"key": "/languages/eng"}], "weight": "12.8 ounces", "title": "Business Transformation in China", "isbn_10": ["0415123224"], "number_of_pages": 240, "isbn_13": ["9780415123228"], "covers": [5530819, 5040690], "edition_name": "1st edition", "physical_format": "Hardcover", "key": "/books/OL10186920M", "authors": [{"key": "/authors/OL3391346A"}], "publish_date": "November 14, 1996", "works": [{"key": "/works/OL9346459W"}], "type": {"key": "/type/edition"}, "subjects": ["Commercial Policy", "China", "International business", "International trade", "Political economy", "Business / Economics / Finance", "Business/Economics"], "physical_dimensions": "9 x 5.8 x 0.8 inches", "source_records": ["bwb:9780415123228"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-09-17T13:32:55.672444"}}
+/type/edition /books/OL1018696M 5 2020-11-24T04:15:34.320572 {"publishers": ["Institute of Electrical and Electronics Engineers", "Available from IEEE Operations Center"], "number_of_pages": 516, "subtitle": "designing low power digital systems", "isbn_10": ["0780333284", "0780333292", "0780333632"], "covers": [4720714, 4720238, 3863592, 3863367, 1459744], "lc_classifications": ["TK7874.65 .E43 1996"], "latest_revision": 5, "key": "/books/OL1018696M", "publish_places": ["[New York]", "Piscataway, NJ"], "contributions": ["Cavin, Ralph K., 1939-", "Liu, Wentai, 1948-", "IEEE International Symposium on Circuits and Systems (1996 : Atlanta, Ga.)"], "pagination": "x, 516 p. :", "source_records": ["marc:marc_records_scriblio_net/part25.dat:214593959:1402", "marc:marc_loc_2016/BooksAll.2016.part25.utf8:120788480:1397"], "title": "Emerging technologies", "dewey_decimal_class": ["621.3815"], "notes": {"type": "/type/text", "value": "Includes bibliographical references.\n\"Tutorial for 1996 International Symposium on Circuits & Systems\"--Cover.\n\"IEEE catalog number: 96TH8189 (softbound)\"--T.p. verso."}, "identifiers": {"goodreads": ["3796086"]}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["96076158"], "subjects": ["Digital integrated circuits -- Design and construction.", "Low voltage integrated circuits -- Design and construction.", "Low voltage systems -- Design and construction.", "System design."], "publish_date": "1996", "publish_country": "nyu", "last_modified": {"type": "/type/datetime", "value": "2020-11-24T04:15:34.320572"}, "by_statement": "edited by Ralph K. Cavin III, Wentai Liu.", "oclc_numbers": ["34998158"], "works": [{"key": "/works/OL18861986W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10187516M 7 2020-09-03T08:23:17.535929 {"publishers": ["Routledge"], "number_of_pages": 364, "weight": "1.4 pounds", "covers": [5041180], "physical_format": "Library Binding", "last_modified": {"type": "/type/datetime", "value": "2020-09-03T08:23:17.535929"}, "latest_revision": 7, "key": "/books/OL10187516M", "authors": [{"key": "/authors/OL3391485A"}], "subjects": ["Cognition & cognitive psychology", "States of consciousness", "Psychology & Psychiatry / General", "General", "Psychology"], "edition_name": "1 edition", "languages": [{"key": "/languages/eng"}], "classifications": {}, "source_records": ["bwb:9780415209656"], "title": "Invention and the Unconscious", "notes": {"type": "/type/text", "value": "International Library of Psychology"}, "identifiers": {"goodreads": ["7113459"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780415209656"], "isbn_10": ["041520965X"], "publish_date": "July 1999", "works": [{"key": "/works/OL9346631W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.6 x 5.7 x 1.3 inches", "revision": 7}
+/type/edition /books/OL10187533M 5 2020-09-03T07:44:40.894188 {"publishers": ["Routledge"], "subtitle": "International Library of Psychology", "weight": "7.3 pounds", "covers": [5041015], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2020-09-03T07:44:40.894188"}, "latest_revision": 5, "key": "/books/OL10187533M", "authors": [{"key": "/authors/OL2019740A"}], "subjects": ["Philosophy of religion", "General", "Psychology & Psychiatry / General", "Psychology"], "edition_name": "1 edition", "languages": [{"key": "/languages/eng"}], "source_records": ["bwb:9780415211338"], "title": "Psychology and Religion", "number_of_pages": 1632, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780415211338"], "isbn_10": ["0415211336"], "publish_date": "July 31, 1999", "works": [{"key": "/works/OL7117628W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "13.2 x 10.2 x 4.6 inches", "revision": 5}
+/type/edition /books/OL10188312M 7 2022-12-19T20:09:50.748577 {"publishers": ["RoutledgeCurzon"], "subtitle": "Religious, Cultural and Historical Aspects of Arabic and Persian Inscriptions of West Bengal and Bangladesh, 1205-1707", "weight": "1 pounds", "isbn_10": ["0415297826"], "physical_format": "Hardcover", "lc_classifications": ["CN1173.B4 S52 2015", "CN1173.B4S52 2015", "CN1173.B4", "CN1173.B4 S52 2016"], "key": "/books/OL10188312M", "authors": [{"key": "/authors/OL3391742A"}], "edition_name": "1 edition", "languages": [{"key": "/languages/eng"}], "source_records": ["bwb:9780415297820", "marc:marc_loc_2016/BooksAll.2016.part42.utf8:63792704:1250", "marc:marc_columbia/Columbia-extract-20221130-031.mrc:181231615:3574", "marc:marc_columbia/Columbia-extract-20221130-025.mrc:105243469:2144"], "title": "The Epigraphy of Muslim Bengal", "lccn": ["2015019964"], "number_of_pages": 336, "isbn_13": ["9780415297820"], "subjects": ["Asian / Middle Eastern history: c 500 to c 1500", "Historical & comparative linguistics", "Islamic studies", "Language Arts & Disciplines", "Language Arts / Linguistics / Literacy", "Arabic", "Persian (Farsi)", "Language", "Bangladesh", "India", "General", "Language Arts & Disciplines / General", "Reference"], "publish_date": "May 26, 2004", "works": [{"key": "/works/OL9346884W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10 x 8 x 2 inches", "oclc_numbers": ["930600941", "931998029"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-19T20:09:50.748577"}}
+/type/edition /books/OL10188361M 5 2021-09-16T02:40:07.470814 {"publishers": ["Routledge"], "number_of_pages": 288, "subtitle": "Women, the Vernacular and Linguistic Innovations (Routledge Arabic Linguistics)", "key": "/books/OL10188361M", "title": "Variation and Change in Jordanian Arabic", "type": {"key": "/type/edition"}, "identifiers": {"goodreads": ["629351"]}, "isbn_13": ["9780415302821"], "edition_name": "1 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["041530282X"], "authors": [{"key": "/authors/OL3391759A"}], "publish_date": "March 1, 2009", "works": [{"key": "/works/OL9346901W"}], "physical_format": "Hardcover", "subjects": ["Interdisciplinary Studies", "Social Science", "Sociology", "Social Science / General", "Sociology - General", "Jordan", "Language", "Sociolinguistics", "Women"], "lc_classifications": ["P40"], "source_records": ["bwb:9780415302821"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-09-16T02:40:07.470814"}}
+/type/edition /books/OL10188469M 9 2022-12-17T03:40:02.867092 {"other_titles": ["Bony und die Weisse Wilde"], "publishers": ["Angus and Robertson"], "identifiers": {"goodreads": ["1583389"], "librarything": ["766000"]}, "series": ["Eden Paperbacks"], "physical_format": "Paperback", "key": "/books/OL10188469M", "authors": [{"key": "/authors/OL226255A"}], "publish_places": ["North Ryde, New South Wales"], "subjects": ["Modern fiction", "English"], "classifications": {}, "title": "Bony and the White Savage", "number_of_pages": 230, "isbn_13": ["9780207158483"], "isbn_10": ["0207158487"], "publish_date": "1988", "works": [{"key": "/works/OL8024863W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780207158483"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T03:40:02.867092"}}
+/type/edition /books/OL10188727M 5 2022-03-01T10:40:07.110537 {"number_of_pages": 32, "subtitle": "A Poem in Four Parts (Picture Bluegum)", "weight": "5.6 ounces", "covers": [5040963], "contributions": ["Bronwyn Bancroft (Illustrator)"], "edition_name": "Bluegum Pbk. Ed edition", "title": "Minah", "languages": [{"key": "/languages/eng"}], "subjects": ["Fiction", "Picture books", "General", "Juvenile Fiction / General", "Children's 4-8 - Picturebooks", "Australian aborigines", "Juvenile poetry", "Poetry", "Children: Grades 1-2"], "type": {"key": "/type/edition"}, "physical_dimensions": "11 x 8.8 x 0.2 inches", "publishers": ["HarperCollins Australia"], "physical_format": "Paperback", "key": "/books/OL10188727M", "authors": [{"key": "/authors/OL2673366A"}, {"key": "/authors/OL122219A"}], "identifiers": {"goodreads": ["2276097"]}, "isbn_13": ["9780207191695"], "isbn_10": ["0207191697"], "publish_date": "July 1998", "works": [{"key": "/works/OL27447350W"}], "source_records": ["bwb:9780207191695"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-01T10:40:07.110537"}}
+/type/edition /books/OL10188790M 6 2022-12-17T04:03:37.248428 {"publishers": ["HarperCollins Publishers"], "identifiers": {"goodreads": ["5673171"]}, "title": "Your First Book of Athletics", "type": {"key": "/type/edition"}, "number_of_pages": 47, "isbn_13": ["9780207958953"], "isbn_10": ["0207958955"], "publish_date": "February 16, 1981", "key": "/books/OL10188790M", "authors": [{"key": "/authors/OL256914A"}, {"key": "/authors/OL3391864A"}], "physical_format": "Paperback", "works": [{"key": "/works/OL27062615W"}], "covers": [12583569], "ocaid": "yourfirstbookofa0000drut", "lc_classifications": ["GV704 .D78130 1981", "GV1060.5"], "source_records": ["ia:yourfirstbookofa0000drut", "promise:bwb_daily_pallets_2022-03-17", "bwb:9780207958953"], "local_id": ["urn:bwbsku:KP-708-688"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T04:03:37.248428"}}
+/type/edition /books/OL10188821M 3 2022-12-08T04:34:42.535433 {"identifiers": {"librarything": ["4540585"]}, "physical_format": "Hardcover", "key": "/books/OL10188821M", "title": "A History of Christianity in the Balkans", "isbn_13": ["9780208003133"], "isbn_10": ["0208003134"], "type": {"key": "/type/edition"}, "works": [{"key": "/works/OL31620146W"}], "local_id": ["urn:bwbsku:P6-CEZ-425"], "source_records": ["promise:bwb_daily_pallets_2021-07-13"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-08T04:34:42.535433"}}
+/type/edition /books/OL10188825M 4 2010-04-24T17:56:06.023290 {"publishers": ["Shoe String Press"], "title": "Life and Times of William Howard Taft a Biography", "isbn_10": ["0208003487"], "identifiers": {"goodreads": ["2205509"]}, "isbn_13": ["9780208003485"], "physical_format": "Textbook Binding", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T17:56:06.023290"}, "publish_date": "January 1964", "key": "/books/OL10188825M", "authors": [{"key": "/authors/OL3391886A"}], "latest_revision": 4, "works": [{"key": "/works/OL9347055W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10188990M 4 2020-08-12T07:14:38.578556 {"publishers": ["Nelson Thornes Ltd"], "identifiers": {"goodreads": ["4285797"]}, "covers": [10334736], "physical_format": "Spiral-bound", "last_modified": {"type": "/type/datetime", "value": "2020-08-12T07:14:38.578556"}, "latest_revision": 4, "key": "/books/OL10188990M", "ocaid": "waiter0000unse", "contributions": ["J. Fuller (Editor)", "A.J. Currie (Editor)"], "subjects": ["Hotel & catering trades"], "edition_name": "Rev Ed edition", "source_records": ["ia:waiter0000unse"], "title": "The Waiter", "number_of_pages": 214, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780214158070"], "isbn_10": ["0214158071"], "publish_date": "May 1965", "works": [{"key": "/works/OL21178519W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10189158M 4 2022-07-17T10:27:50.521264 {"publishers": ["Stationery Office"], "subtitle": "Forty-first Report of Session 2005-06 Report, Together With Formal Minutes, Oral And Written Evidence'house of Commons Papers 770 2005-06", "weight": "5.6 ounces", "covers": [5041465], "physical_format": "Paperback", "key": "/books/OL10189158M", "subjects": ["Trains & railways: general interest", "Transportation", "Government - General", "Railroads - General"], "isbn_13": ["9780215028747"], "title": "The South Eastern Passenger Rail Franchise", "number_of_pages": 15, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0215028740"], "publish_date": "May 30, 2006", "oclc_numbers": ["316656289"], "type": {"key": "/type/edition"}, "physical_dimensions": "11.4 x 8.3 x 0.2 inches", "works": [{"key": "/works/OL28237462W"}], "source_records": ["bwb:9780215028747"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T10:27:50.521264"}}
+/type/edition /books/OL10189160M 4 2022-07-17T16:40:56.668360 {"publishers": ["Stationery Office"], "physical_format": "Paperback", "subtitle": "Written Evidence, House of Commons Papers 1024-2 2005-06", "title": "Planning Gain Supplement", "number_of_pages": 128, "isbn_13": ["9780215028778"], "covers": [5041393], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0215028775"], "publish_date": "May 30, 2006", "key": "/books/OL10189160M", "oclc_numbers": ["316661628"], "type": {"key": "/type/edition"}, "subjects": ["Law", "Evidence", "Government - General"], "works": [{"key": "/works/OL28256861W"}], "source_records": ["bwb:9780215028778"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T16:40:56.668360"}}
+/type/edition /books/OL10189255M 2 2022-07-17T14:54:00.281365 {"languages": [{"key": "/languages/eng"}], "physical_format": "Paperback", "subtitle": "House of Commons Papers 34-xli 2005-06", "publishers": ["Stationery Office"], "number_of_pages": 12, "isbn_13": ["9780215031327"], "isbn_10": ["0215031326"], "publish_date": "November 30, 2006", "key": "/books/OL10189255M", "title": "Implementing the Hague Programme on Justice and Home Affairs; Forty-first Report of Session 2005-06 Report, Together With Formal Minutes and Oral Evidence", "type": {"key": "/type/edition"}, "subjects": ["Business & Financial", "Law"], "works": [{"key": "/works/OL28249935W"}], "source_records": ["bwb:9780215031327"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T14:54:00.281365"}}
+/type/edition /books/OL10189300M 3 2012-07-13T00:02:35.287776 {"publishers": ["Stationery Office Books (TSO)"], "languages": [{"key": "/languages/eng"}], "subtitle": "Volume 432 #55", "last_modified": {"type": "/type/datetime", "value": "2012-07-13T00:02:35.287776"}, "weight": "15.2 ounces", "title": "Finance Budget Statement (House of Commons Debate)", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780215507556"], "physical_format": "Paperback", "isbn_10": ["021550755X"], "publish_date": "March 2005", "key": "/books/OL10189300M", "authors": [{"key": "/authors/OL421154A"}], "latest_revision": 3, "works": [{"key": "/works/OL7927346W"}], "type": {"key": "/type/edition"}, "subjects": ["Reference - General", "Business / Economics / Finance"], "physical_dimensions": "11.4 x 8.2 x 0.3 inches", "revision": 3}
+/type/edition /books/OL10189318M 2 2011-05-04T18:10:37.902422 {"publishers": ["Stationery Office"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2011-05-04T18:10:37.902422"}, "title": "House of Commons Official Report 6th Series", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780215509093"], "physical_format": "Paperback", "isbn_10": ["0215509099"], "publish_date": "April 2006", "key": "/books/OL10189318M", "latest_revision": 2, "works": [{"key": "/works/OL9156742W"}], "type": {"key": "/type/edition"}, "subjects": ["Law", "Government - General", "Government - State, Provincial & Municipal"], "revision": 2}
+/type/edition /books/OL1018959M 8 2022-12-04T09:37:04.043313 {"publishers": ["Houghton Mifflin Co."], "identifiers": {"goodreads": ["3433204"], "librarything": ["179300"]}, "isbn_10": ["0395788269"], "covers": [3864164], "lc_classifications": ["RC454 .S86 1997"], "key": "/books/OL1018959M", "authors": [{"key": "/authors/OL37381A"}], "publish_places": ["Boston"], "contributions": ["Sue, Derald Wing.", "Sue, Stanley."], "languages": [{"key": "/languages/eng"}], "pagination": "xx, 570, 81 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part25.utf8:121019003:739", "promise:bwb_daily_pallets_2022-09-12"], "title": "Understanding abnormal behavior", "dewey_decimal_class": ["616.89"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (2nd set, p. [10]-55) and indexes."}, "number_of_pages": 570, "edition_name": "5th ed.", "lccn": ["96076574"], "subjects": ["Psychology, Pathological."], "publish_date": "1997", "publish_country": "mau", "by_statement": "David Sue, Derald Sue, Stanley Sue.", "oclc_numbers": ["36137005"], "works": [{"key": "/works/OL530048W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:O8-BFF-998"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T09:37:04.043313"}}
+/type/edition /books/OL10189635M 6 2022-12-09T03:47:17.145626 {"physical_format": "Paperback", "subtitle": "An Introduction to Atomic Nuclear and Particle Physics", "publishers": ["Intl Ideas"], "number_of_pages": 224, "languages": [{"key": "/languages/eng"}], "publish_date": "June 1979", "key": "/books/OL10189635M", "authors": [{"key": "/authors/OL3392023A"}], "title": "Structure of Matter", "works": [{"key": "/works/OL9347283W"}], "type": {"key": "/type/edition"}, "identifiers": {}, "isbn_10": ["0216907535"], "isbn_13": ["9780216907539"], "classifications": {}, "lc_classifications": ["QC173.T83 1979", "QC793.24 .T8"], "covers": [11949885], "ocaid": "structureofmatte0000turn", "source_records": ["ia:structureofmatte0000turn", "marc:marc_columbia/Columbia-extract-20221130-001.mrc:182039986:1212"], "oclc_numbers": ["6047574"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T03:47:17.145626"}}
+/type/edition /books/OL10190004M 2 2009-12-15T00:44:08.534563 {"publishers": ["The Blackie Publishing Group"], "isbn_10": ["0216919002"], "number_of_pages": 16, "isbn_13": ["9780216919006"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:44:08.534563"}, "publish_date": "June 1, 1986", "latest_revision": 2, "key": "/books/OL10190004M", "authors": [{"key": "/authors/OL2733037A"}], "title": "Moving (Science Early Learner Books)", "subjects": ["Physics"], "works": [{"key": "/works/OL8212641W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10190103M 5 2011-04-29T10:55:25.684302 {"publishers": ["Blackie Children's Books"], "number_of_pages": 10, "weight": "2.9 ounces", "title": "Big Softy Bear (Big Softy Books)", "type": {"key": "/type/edition"}, "identifiers": {"goodreads": ["6063440"]}, "last_modified": {"type": "/type/datetime", "value": "2011-04-29T10:55:25.684302"}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780216921450"], "isbn_10": ["0216921457"], "publish_date": "April 1987", "key": "/books/OL10190103M", "authors": [{"key": "/authors/OL3392075A"}], "latest_revision": 5, "oclc_numbers": ["651944407"], "works": [{"key": "/works/OL9347403W"}], "physical_format": "Rag Book", "subjects": ["Cloth (rag) books"], "revision": 5}
+/type/edition /books/OL1019018M 6 2020-11-24T04:19:01.243965 {"other_titles": ["Country western record & CD price guide", "Country western record and CD price guide", "Goldmine (Iola, Wis.)"], "publishers": ["Krause Publications"], "identifiers": {"goodreads": ["5915382"]}, "isbn_10": ["0873414705"], "covers": [1622067], "lc_classifications": ["ML156.4.C7 H44 1996"], "latest_revision": 6, "key": "/books/OL1019018M", "authors": [{"key": "/authors/OL53582A"}], "publish_places": ["Iola, WI"], "pagination": "448 p. :", "source_records": ["amazon:0873414705", "marc:marc_loc_2016/BooksAll.2016.part25.utf8:121074781:843"], "title": "Goldmine country western record & CD price guide", "dewey_decimal_class": ["016.781642/0266"], "number_of_pages": 448, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["96076683"], "subjects": ["Country music -- Discography.", "Sound recordings -- Prices."], "publish_date": "1996", "publish_country": "wiu", "last_modified": {"type": "/type/datetime", "value": "2020-11-24T04:19:01.243965"}, "by_statement": "Fred Heggeness.", "oclc_numbers": ["36076708"], "works": [{"key": "/works/OL682300W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL10190288M 2 2009-12-15T00:44:08.534563 {"publishers": ["The Blackie Publishing Group"], "isbn_10": ["0216925460"], "number_of_pages": 128, "isbn_13": ["9780216925465"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:44:08.534563"}, "publish_date": "October 10, 1988", "latest_revision": 2, "key": "/books/OL10190288M", "authors": [{"key": "/authors/OL3392098A"}], "title": "GCSE Questions on Everyday Chemistry", "subjects": ["For National Curriculum Key Stage 4 & GCSE", "Chemistry"], "works": [{"key": "/works/OL9347429W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10190469M 3 2011-04-29T07:54:18.305013 {"publishers": ["Blackie Children's Books"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T07:54:18.305013"}, "title": "Tom's Masterpiece", "number_of_pages": 32, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780216928688"], "isbn_10": ["0216928680"], "publish_date": "April 26, 1990", "key": "/books/OL10190469M", "authors": [{"key": "/authors/OL3392115A"}], "latest_revision": 3, "oclc_numbers": ["20523464"], "works": [{"key": "/works/OL9347458W"}], "type": {"key": "/type/edition"}, "subjects": ["Fiction", "Picture books"], "revision": 3}
+/type/edition /books/OL10190561M 7 2022-03-19T04:39:25.668545 {"publishers": ["Blackie Children's Books"], "number_of_pages": 32, "title": "Captain Betty, Ahoy!", "physical_format": "Hardcover", "identifiers": {"librarything": ["3630549"], "goodreads": ["1716654"]}, "isbn_13": ["9780216930803"], "isbn_10": ["0216930804"], "publish_date": "April 30, 1992", "key": "/books/OL10190561M", "authors": [{"key": "/authors/OL1005963A"}], "oclc_numbers": ["24527423"], "works": [{"key": "/works/OL4784665W"}], "type": {"key": "/type/edition"}, "subjects": ["Fiction", "Picture books"], "covers": [12676582], "ocaid": "captainbettyahoy0000oliv", "lc_classifications": ["PZ7.O474 Cap 1991x"], "source_records": ["ia:captainbettyahoy0000oliv"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-19T04:39:25.668545"}}
+/type/edition /books/OL10190652M 5 2011-04-26T19:03:06.032004 {"publishers": ["The Blackie Publishing Group"], "physical_format": "Paperback", "subtitle": "Key Stage 2 - Teacher's Guide", "last_modified": {"type": "/type/datetime", "value": "2011-04-26T19:03:06.032004"}, "title": "Science in Action - 5 to 16", "identifiers": {"goodreads": ["2301140"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780216932609"], "isbn_10": ["0216932602"], "publish_date": "May 28, 1992", "key": "/books/OL10190652M", "authors": [{"key": "/authors/OL3374394A"}, {"key": "/authors/OL1138126A"}, {"key": "/authors/OL3140026A"}, {"key": "/authors/OL3374566A"}], "latest_revision": 5, "oclc_numbers": ["26214204"], "type": {"key": "/type/edition"}, "subjects": ["For National Curriculum Key Stage 2", "General science"], "revision": 5}
+/type/edition /books/OL10190720M 6 2011-04-25T18:22:00.937363 {"publishers": ["Blackie Children's Books"], "identifiers": {"goodreads": ["150955"]}, "last_modified": {"type": "/type/datetime", "value": "2011-04-25T18:22:00.937363"}, "title": "Matthew's Surprise (Blackie Bear S.)", "contributions": ["Ivan Bates (Illustrator)"], "number_of_pages": 48, "isbn_13": ["9780216941199"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Hardcover", "isbn_10": ["0216941199"], "publish_date": "November 14, 1994", "key": "/books/OL10190720M", "authors": [{"key": "/authors/OL1233006A"}], "latest_revision": 6, "oclc_numbers": ["31780318"], "works": [{"key": "/works/OL5356188W"}], "type": {"key": "/type/edition"}, "subjects": ["Fiction"], "revision": 6}
+/type/edition /books/OL10190780M 4 2010-04-24T17:56:06.023290 {"publishers": ["Main Line Book Co"], "number_of_pages": 32, "subtitle": "Wake Up to the World of Science", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T17:56:06.023290"}, "title": "World of Insects", "type": {"key": "/type/edition"}, "identifiers": {"goodreads": ["5942324"]}, "isbn_13": ["9780222008718"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0222008717"], "publish_date": "June 1983", "key": "/books/OL10190780M", "authors": [{"key": "/authors/OL3392169A"}], "latest_revision": 4, "works": [{"key": "/works/OL9347538W"}], "physical_format": "Library Binding", "revision": 4}
+/type/edition /books/OL10191145M 5 2019-10-10T12:44:32.716432 {"publishers": ["Jonathan Cape"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2019-10-10T12:44:32.716432"}, "title": "Green River Rising (Airport Only)", "identifiers": {"goodreads": ["3136160"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780224040143"], "isbn_10": ["0224040146"], "publish_date": "June 1, 1994", "key": "/books/OL10191145M", "authors": [{"key": "/authors/OL217131A"}], "latest_revision": 5, "works": [{"key": "/works/OL9313025W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10191364M 2 2009-12-15T00:44:09.745136 {"publishers": ["Jonathan Cape"], "key": "/books/OL10191364M", "title": "No Royalty A/C Typists and Tiger", "number_of_pages": 128, "isbn_13": ["9780224608855"], "physical_format": "Hardcover", "isbn_10": ["0224608851"], "publish_date": "December 1964", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:44:09.745136"}, "authors": [{"key": "/authors/OL255439A"}], "latest_revision": 2, "works": [{"key": "/works/OL2081187W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10191623M 6 2022-06-18T13:12:26.659479 {"publishers": ["Univ of Chicago Pr (Tx)"], "languages": [{"key": "/languages/eng"}], "title": "Selected Writings", "identifiers": {"goodreads": ["3765990"]}, "isbn_13": ["9780226076355"], "physical_format": "Paperback", "isbn_10": ["0226076350"], "publish_date": "June 1970", "key": "/books/OL10191623M", "authors": [{"key": "/authors/OL92780A"}], "works": [{"key": "/works/OL8512319W"}], "type": {"key": "/type/edition"}, "subjects": ["Reference"], "first_sentence": {"type": "/type/text", "value": "Certainly that man were greedy of life, who should desire to lived when all the world were at an end; and he must needs be very impatient, who would repine at death in the society of all things that suffer under it."}, "source_records": ["bwb:9780226076355"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-18T13:12:26.659479"}}
+/type/edition /books/OL10192176M 7 2020-10-08T11:06:18.282359 {"publishers": ["University Of Chicago Press"], "weight": "1.9 pounds", "covers": [5041664], "physical_format": "Hardcover", "lc_classifications": [""], "latest_revision": 7, "key": "/books/OL10192176M", "authors": [{"key": "/authors/OL3392469A"}], "ocaid": "requirementsforc0067unse", "subjects": ["Reference works", "Teacher assessment", "Teacher training", "Education", "Education / Teaching", "North America", "USA", "General", "Education / General"], "edition_name": "67th edition", "languages": [{"key": "/languages/eng"}], "source_records": ["ia:requirementsforc0067unse", "bwb:9780226428529"], "title": "Requirements for Certification of Teachers, Counselors, Librarians, and Administrators for Elementary and Secondary Schools, 2002-2003 (Requirements for ... Schools, Secondary Schools, Junior)", "number_of_pages": 280, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780226428529"], "isbn_10": ["0226428524"], "publish_date": "August 1, 2002", "last_modified": {"type": "/type/datetime", "value": "2020-10-08T11:06:18.282359"}, "oclc_numbers": ["50179624"], "works": [{"key": "/works/OL9347928W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "11.3 x 8.7 x 0.8 inches", "revision": 7}
+/type/edition /books/OL10192228M 7 2020-10-09T12:02:39.610447 {"publishers": ["University Of Chicago Press"], "number_of_pages": 384, "subtitle": "Archaeology in the Construction, Commemoration, and Consecration of National Pasts", "covers": [5041548], "physical_format": "Hardcover", "lc_classifications": ["CC135.S45 2008"], "latest_revision": 7, "key": "/books/OL10192228M", "contributions": ["Philip L. Kohl (Editor)", "Mara Kozelsky (Editor)", "Nachman Ben-Yehuda (Editor)"], "subjects": ["Archaeological methodology & techniques", "Social Science", "Sociology", "Anthropology - Physical", "Archaeology", "General", "Social Science / Anthropology / Physical", "Archaeology and state", "Case studies", "Nationalism", "Political aspects"], "isbn_13": ["9780226450582"], "source_records": ["bwb:9780226450582"], "title": "Selective Remembrances", "identifiers": {"goodreads": ["3352143"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0226450589"], "publish_date": "February 15, 2008", "last_modified": {"type": "/type/datetime", "value": "2020-10-09T12:02:39.610447"}, "works": [{"key": "/works/OL19819172W"}], "type": {"key": "/type/edition"}, "revision": 7}
+/type/edition /books/OL10192841M 7 2022-12-04T09:52:45.919115 {"publishers": ["Univ of Chicago Pr (Tx)"], "number_of_pages": 300, "subtitle": "The Papers of Robert Redfield, Vol. 2", "title": "The Social Uses of Social Science", "type": {"key": "/type/edition"}, "identifiers": {"goodreads": ["5372908"], "librarything": ["9466545"]}, "isbn_13": ["9780226706368"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0226706362"], "publish_date": "June 1963", "key": "/books/OL10192841M", "authors": [{"key": "/authors/OL3392623A"}, {"key": "/authors/OL693347A"}], "physical_format": "Hardcover", "works": [{"key": "/works/OL28027480W"}], "source_records": ["bwb:9780226706368", "promise:bwb_daily_pallets_2022-09-12"], "local_id": ["urn:bwbsku:O8-CKY-281"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T09:52:45.919115"}}
+/type/edition /books/OL10192994M 17 2022-12-28T23:40:40.111103 {"publishers": ["University Of Chicago Press"], "identifiers": {"goodreads": ["28050"], "librarything": ["4435758"]}, "subtitle": "Working for Peace in Israel and Palestine", "weight": "13.6 ounces", "isbn_10": ["0226755746"], "covers": [2336021], "local_id": ["urn:sfpl:31223075300088", "urn:mgc:31927000820206"], "physical_format": "Hardcover", "lc_classifications": ["DS119.76.S783 2007", "DS119.76 .S783 2007"], "key": "/books/OL10192994M", "authors": [{"key": "/authors/OL2005097A"}], "ocaid": "darkhopeworkingf0000shul", "isbn_13": ["9780226755748"], "source_records": ["amazon:0226755746", "marc:marc_loc_updates/v35.i20.records.utf8:25318214:1308", "marc:marc_loc_updates/v35.i26.records.utf8:7529536:1508", "marc:marc_loc_updates/v36.i17.records.utf8:5610742:1478", "marc:marc_ithaca_college/ic_marc.mrc:222499102:1164", "marc:marc_openlibraries_sanfranciscopubliclibrary/sfpl_chq_2018_12_24_run03.mrc:217112527:2439", "marc:marc_marygrove/marygrovecollegelibrary.full.D20191108.T213022.internetarchive2nd_REPACK.mrc:168350701:5026", "ia:darkhopeworkingf0000shul", "bwb:9780226755748", "marc:marc_loc_2016/BooksAll.2016.part33.utf8:136238791:1478", "marc:marc_columbia/Columbia-extract-20221130-013.mrc:143530717:3650"], "title": "Dark Hope", "number_of_pages": 236, "languages": [{"key": "/languages/eng"}], "subjects": ["Asian / Middle Eastern history: postwar, from c 1945 -", "Peace studies", "History", "Politics / Current Events", "History: World", "Palestine", "Middle East - Israel", "Peace", "History / Israel", "General", "1993-", "Arab-Israeli conflict", "Government policy", "Israel", "Palestinian Arabs", "Peace movements"], "publish_date": "June 1, 2007", "works": [{"key": "/works/OL18491891W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.5 x 5.9 x 1 inches", "lccn": ["2006035630"], "oclc_numbers": ["74915712"], "latest_revision": 17, "revision": 17, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-28T23:40:40.111103"}}
+/type/edition /books/OL10193024M 10 2022-12-27T14:59:08.422733 {"publishers": ["University Of Chicago Press"], "identifiers": {"goodreads": ["5990268"], "librarything": ["7257374"]}, "subtitle": "Witchcraft and the Reinvention of Development in Neoliberal Kenya (Chicago Studies in Practices of Meaning)", "physical_format": "Paperback", "lc_classifications": ["DT433.545.T34S65", "DT433.545.T34 S65 2008"], "key": "/books/OL10193024M", "authors": [{"key": "/authors/OL3392663A"}], "subjects": ["Anthropology - Cultural", "Social Science / Anthropology / Cultural", "Social Science", "Archaeology / Anthropology", "Sociology"], "languages": [{"key": "/languages/eng"}], "source_records": ["bwb:9780226764580", "marc:marc_loc_2016/BooksAll.2016.part35.utf8:92782787:2303", "ia:bewitchingdevelo0000smit", "marc:marc_columbia/Columbia-extract-20221130-014.mrc:90972010:3258"], "title": "Bewitching Development", "number_of_pages": 272, "isbn_13": ["9780226764580"], "isbn_10": ["0226764583"], "publish_date": "July 15, 2008", "works": [{"key": "/works/OL9348149W"}], "type": {"key": "/type/edition"}, "lccn": ["2008000461"], "covers": [11401688], "ocaid": "bewitchingdevelo0000smit", "oclc_numbers": ["176978887"], "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-27T14:59:08.422733"}}
+/type/edition /books/OL10193352M 9 2021-10-04T06:41:05.438346 {"publishers": ["James Clarke Company"], "number_of_pages": 132, "weight": "6.2 ounces", "covers": [2336133], "physical_format": "Paperback", "key": "/books/OL10193352M", "authors": [{"key": "/authors/OL800312A"}], "contributions": ["John Gordon Davies (Editor)", "Alfred Raymond George (Editor)"], "subjects": ["Christian liturgy, prayerbooks & hymnals", "Christian rites & ceremonies", "Christian sacraments", "Religion", "Religion - Church Music", "British Isles", "Christian Rituals & Practice - General", "Christianity - Presbyterian", "Church & Ministry/Church Life/Denominations", "Church & Ministry/Church Life/Worship & Liturgy", "Religion / Church Music", "Religion / Ritual & Practices", "Religion-Christianity - Presbyterianism", "Religion/Christianity - Presbyterian", "Religious Orientation/Christian"], "edition_name": "New Ed edition", "languages": [{"key": "/languages/eng"}], "title": "The Worship of the Reformed Church (Library of Theological Translations)", "identifiers": {"librarything": ["4587759"], "goodreads": ["2157497"]}, "isbn_13": ["9780227170359"], "isbn_10": ["0227170350"], "publish_date": "September 5, 2002", "oclc_numbers": ["56644261"], "works": [{"key": "/works/OL4202716W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.5 x 5.5 x 0.3 inches", "source_records": ["bwb:9780227170359"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-10-04T06:41:05.438346"}}
+/type/edition /books/OL10193546M 3 2010-08-12T16:22:11.513582 {"publishers": ["Adlard Coles"], "subtitle": "Mariners Library #11", "last_modified": {"type": "/type/datetime", "value": "2010-08-12T16:22:11.513582"}, "title": "Sailing All Seas in the Idle Hour ", "identifiers": {"librarything": ["1491505"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Hardcover", "isbn_10": ["0229115462"], "publish_date": "1974", "key": "/books/OL10193546M", "authors": [{"key": "/authors/OL2342677A"}], "latest_revision": 3, "works": [{"key": "/works/OL7635067W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10193676M 13 2022-12-30T03:58:02.043492 {"publishers": ["Palgrave Macmillan"], "identifiers": {"goodreads": ["1669965"], "librarything": ["4503398"]}, "subtitle": "A Corporate Guide to Living, Being Alive, and Making a Living in the 21st Century", "weight": "1.2 pounds", "covers": [2336322], "physical_format": "Hardcover", "lc_classifications": ["HD28-70HD28-HD70HD28", "HF5387 .D646 2006"], "key": "/books/OL10193676M", "authors": [{"key": "/authors/OL3392826A"}, {"key": "/authors/OL3392827A"}, {"key": "/authors/OL3392828A"}], "ocaid": "managingbyvalues00dola", "subjects": ["Management & management techniques", "Management", "Business & Economics", "Business / Economics / Finance", "Business/Economics", "Management Science", "Strategic Planning", "Business & Economics / Systems & Planning", "Management - General", "Business Ethics", "Moral and ethical aspects"], "isbn_13": ["9780230000261"], "source_records": ["amazon:0230000266", "marc:marc_loc_updates/v35.i11.records.utf8:11647505:1248", "marc:marc_loc_updates/v38.i07.records.utf8:7900918:1248", "ia:managingbyvalues00dola", "bwb:9780230000261", "marc:marc_loc_2016/BooksAll.2016.part33.utf8:147871395:2461", "marc:marc_columbia/Columbia-extract-20221130-012.mrc:184474194:1595"], "title": "Managing by Values", "number_of_pages": 256, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0230000266"], "publish_date": "October 3, 2006", "works": [{"key": "/works/OL16957654W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.2 x 6.2 x 0.9 inches", "lccn": ["2006046257"], "oclc_numbers": ["63702636"], "latest_revision": 13, "revision": 13, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-30T03:58:02.043492"}}
+/type/edition /books/OL10193843M 12 2022-12-30T11:22:47.629379 {"publishers": ["Palgrave Macmillan"], "number_of_pages": 240, "subtitle": "A Re-Assessment", "weight": "14.1 ounces", "covers": [2336433], "physical_format": "Hardcover", "lc_classifications": ["BJ1-1725BJPN770-PN77", "PR6063.U7 Z6295 2006", "PR6063.U7 Z713 2007"], "key": "/books/OL10193843M", "authors": [{"key": "/authors/OL3236079A"}], "subjects": ["Literary studies: from c 1900 -", "Novels, other prose & writers: from c 1900 -", "Western philosophy, from c 1900 -", "Murdoch, Iris - Prose & Criticism", "Literary Criticism", "Literature - Classics / Criticism", "English", "British Isles", "English, Irish, Scottish, Welsh", "Literary Criticism & Collections / English, Irish, Scottish, Welsh", "Criticism and interpretation", "Murdoch, Iris"], "isbn_13": ["9780230003446"], "source_records": ["marc:marc_miami_univ_ohio/allbibs0192.out:7824353:978", "marc:marc_loc_updates/v36.i06.records.utf8:6865240:957", "marc:marc_loc_updates/v36.i45.records.utf8:3852380:2606", "bwb:9780230003446", "marc:marc_loc_2016/BooksAll.2016.part33.utf8:146403625:2606", "marc:marc_columbia/Columbia-extract-20221130-012.mrc:232150962:1146"], "title": "Iris Murdoch", "identifiers": {"goodreads": ["114709"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0230003443"], "publish_date": "January 9, 2007", "works": [{"key": "/works/OL9160213W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.5 x 5.5 x 0.7 inches", "lccn": ["2006044845"], "oclc_numbers": ["69594070"], "latest_revision": 12, "revision": 12, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-30T11:22:47.629379"}}
+/type/edition /books/OL10194092M 10 2022-12-30T03:34:30.764913 {"publishers": ["Palgrave Macmillan"], "subtitle": "Dealing with Catastrophic Loss Potentials in Business, The Community and Society", "weight": "12 ounces", "covers": [2336636], "physical_format": "Hardcover", "lc_classifications": ["HD61HB172.5", "HD61 .J32 2006"], "key": "/books/OL10194092M", "authors": [{"key": "/authors/OL3392959A"}], "subjects": ["Budgeting & financial management", "Economics", "Financial Accounting", "Risk And Insurance Administration", "Business & Economics", "Business / Economics / Finance", "Business/Economics", "Corporate Finance", "Insurance - Risk Assessment & Management", "Business & Economics / Insurance / Risk Management", "Emergency management", "Risk management", "Risk management", "gtt"], "isbn_13": ["9780230013520"], "source_records": ["amazon:023001352X", "marc:marc_loc_updates/v38.i07.records.utf8:7872492:1117", "bwb:9780230013520", "marc:marc_loc_2016/BooksAll.2016.part33.utf8:147624069:3601", "promise:bwb_daily_pallets_2022-04-14", "marc:marc_columbia/Columbia-extract-20221130-012.mrc:180231493:1330"], "title": "Precautionary Risk Management", "number_of_pages": 184, "languages": [{"key": "/languages/eng"}], "isbn_10": ["023001352X"], "publish_date": "October 3, 2006", "works": [{"key": "/works/OL9348478W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.5 x 5.5 x 0.7 inches", "lccn": ["2006046010"], "local_id": ["urn:bwbsku:W7-BTI-337"], "oclc_numbers": ["65400859"], "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-30T03:34:30.764913"}}
+/type/edition /books/OL10194192M 12 2022-12-29T20:29:08.232393 {"publishers": ["Palgrave Macmillan"], "identifiers": {"goodreads": ["149759"]}, "weight": "1.1 pounds", "covers": [2336734], "physical_format": "Hardcover", "lc_classifications": ["GN635.N42DA1-DA995HM", "D32 .C68 2007"], "key": "/books/OL10194192M", "ocaid": "counterhegemonyc00chal", "contributions": ["John Chalcraft (Editor)", "Yaseen Noorani (Editor)"], "subjects": ["Historiography", "Social theory", "World history: c 1750 to c 1900", "World history: from c 1900 -", "Political History", "Revolutions", "Political Science", "History - General History", "Politics/International Relations", "World - Colonial Studies", "World - Post-Colonial Studies", "History / Great Britain", "History & Theory - General", "Sociology - General", "Power (Social sciences)", "World politics"], "isbn_13": ["9780230019188"], "source_records": ["amazon:0230019188", "marc:marc_loc_updates/v35.i17.records.utf8:12090179:1116", "marc:marc_loc_updates/v36.i49.records.utf8:5919414:1134", "ia:counterhegemonyc00chal", "bwb:9780230019188", "marc:marc_loc_2016/BooksAll.2016.part34.utf8:120924408:1134", "marc:marc_columbia/Columbia-extract-20221130-013.mrc:302829476:1702"], "title": "Counterhegemony in the Colony and Postcolony", "number_of_pages": 288, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0230019188"], "publish_date": "November 27, 2007", "works": [{"key": "/works/OL18589810W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.5 x 5.6 x 0.9 inches", "lccn": ["2007016448"], "oclc_numbers": ["123377405"], "latest_revision": 12, "revision": 12, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-29T20:29:08.232393"}}
+/type/edition /books/OL10194288M 7 2020-10-08T22:47:39.776408 {"publishers": ["Palgrave Macmillan"], "identifiers": {"goodreads": ["1924130"]}, "subtitle": "From Medical War Crimes to Informed Consent", "weight": "1.3 pounds", "covers": [2336817], "physical_format": "Paperback", "lc_classifications": ["D900-D2027D203.2-475"], "latest_revision": 7, "key": "/books/OL10194288M", "authors": [{"key": "/authors/OL2955078A"}], "subjects": ["European history: Second World War", "History of medicine", "War crimes", "Second World War, 1939-1945", "War Crimes And Criminals", "History", "Supplementals & Ancillaries", "True Crime / Espionage", "History: World", "Germany", "General", "Military - World War II", "Modern - 20th Century", "History / Modern / 20th Century", "Medical Law & Legislation"], "edition_name": "New Ed edition", "languages": [{"key": "/languages/eng"}], "source_records": ["bwb:9780230507005"], "title": "Nazi Medicine and the Nuremberg Trials", "number_of_pages": 496, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780230507005"], "isbn_10": ["023050700X"], "publish_date": "December 12, 2006", "last_modified": {"type": "/type/datetime", "value": "2020-10-08T22:47:39.776408"}, "works": [{"key": "/works/OL8716827W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.6 x 5.5 x 1.3 inches", "revision": 7}
+/type/edition /books/OL1019434M 4 2020-11-24T04:23:26.293789 {"publishers": ["Mount Olive College Press"], "number_of_pages": 57, "subtitle": "a collection of poems", "lc_classifications": ["PS3551.L388 C68 1996"], "latest_revision": 4, "key": "/books/OL1019434M", "authors": [{"key": "/authors/OL548573A"}], "publish_places": ["Mount Olive, NC"], "pagination": "57 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part25.utf8:121444550:648"], "title": "Country of light", "dewey_decimal_class": ["811/.54"], "notes": {"type": "/type/text", "value": "\"Winner of the Lee Witte Poetry Contest\"--T.p. verso."}, "identifiers": {"goodreads": ["4590346"]}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["96077330"], "isbn_10": ["1880994380"], "publish_date": "1996", "publish_country": "ncu", "last_modified": {"type": "/type/datetime", "value": "2020-11-24T04:23:26.293789"}, "by_statement": "Annette Allen.", "oclc_numbers": ["36974320"], "works": [{"key": "/works/OL3369944W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10194364M 10 2022-12-29T21:36:40.572074 {"publishers": ["Palgrave Macmillan"], "languages": [{"key": "/languages/eng"}], "identifiers": {"goodreads": ["282264"]}, "weight": "15.2 ounces", "title": "Leftism in India, 1917-1947", "number_of_pages": 288, "isbn_13": ["9780230517165"], "covers": [2336879], "physical_format": "Hardcover", "authors": [{"key": "/authors/OL1388256A"}], "isbn_10": ["0230517161"], "key": "/books/OL10194364M", "publish_date": "January 8, 2008", "works": [{"key": "/works/OL5705802W"}], "type": {"key": "/type/edition"}, "subjects": ["Asian / Middle Eastern history: from c 1900 -", "Marxism & Communism", "Nationalism", "Inter-war period, 1918-1939", "Second World War, 1939-1945", "History", "History - General History", "History: World", "Asia - India", "Political History", "Political Ideologies - Communism & Socialism", "History / India", "Asia - India & South Asia", "Communism", "India", "Nationalism and communism", "Right and left (Political science)"], "physical_dimensions": "8.6 x 5.6 x 0.8 inches", "lccn": ["2007060013"], "lc_classifications": ["HX393 .R35 2007", "JC11-607"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part34.utf8:167842541:1612", "bwb:9780230517165", "marc:marc_columbia/Columbia-extract-20221130-013.mrc:313577366:1686"], "oclc_numbers": ["77831112"], "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-29T21:36:40.572074"}}
+/type/edition /books/OL10194625M 11 2022-12-27T18:39:31.419655 {"publishers": ["Palgrave Macmillan"], "identifiers": {"goodreads": ["3433856"], "librarything": ["9457095"], "amazon": [""]}, "subtitle": "An Analysis of the Food and Beverage Industry", "physical_format": "Hardcover", "lc_classifications": ["HD28-70HD28-HD70HD21", "HD9000.9.A1 I66 2008"], "key": "/books/OL10194625M", "authors": [{"key": "/authors/OL3393132A"}, {"key": "/authors/OL627501A"}], "subjects": ["Industries - General", "Business & Economics / Industries", "Business & Economics", "Business / Economics / Finance", "Business/Economics"], "languages": [{"key": "/languages/eng"}], "source_records": ["bwb:9780230551312", "marc:marc_loc_2016/BooksAll.2016.part35.utf8:112532612:1255", "ia:businesslogicfor0000ione", "promise:bwb_daily_pallets_2020-10-07", "marc:marc_columbia/Columbia-extract-20221130-014.mrc:113849348:1616"], "title": "Business Logic for Sustainability", "number_of_pages": 288, "isbn_13": ["9780230551312"], "isbn_10": ["0230551319"], "publish_date": "April 15, 2008", "works": [{"key": "/works/OL15038094W"}], "type": {"key": "/type/edition"}, "lccn": ["2008016316"], "covers": [11599423], "ocaid": "businesslogicfor0000ione", "local_id": ["urn:bwbsku:P4-AFG-987"], "oclc_numbers": ["223370136"], "latest_revision": 11, "revision": 11, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-27T18:39:31.419655"}}
+/type/edition /books/OL10195172M 4 2020-08-18T17:40:16.784948 {"publishers": ["Columbia University Press"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2020-08-18T17:40:16.784948"}, "source_records": ["bwb:9780231029018"], "title": "Washington Community Eighteen Hundred - Eighteen Twenty Eight", "identifiers": {"goodreads": ["5012860"]}, "isbn_13": ["9780231029018"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "number_of_pages": 307, "isbn_10": ["0231029012"], "publish_date": "June 1940", "key": "/books/OL10195172M", "authors": [{"key": "/authors/OL2223456A"}], "latest_revision": 4, "works": [{"key": "/works/OL21369017W"}], "type": {"key": "/type/edition"}, "subjects": ["History", "Customs & Traditions", "Sociology", "Politics, Practical", "Social life and customs", "Statesmen, American", "United States", "Washington, D.C"], "revision": 4}
+/type/edition /books/OL10195459M 9 2022-07-11T15:34:47.114192 {"publishers": ["Columbia University Press"], "number_of_pages": 367, "subtitle": "Elite Structure & Ideology (Cloth)", "isbn_10": ["0231040687"], "covers": [8283409], "physical_format": "Hardcover", "lc_classifications": ["JA76 .H52", "HN563.5 .H52"], "key": "/books/OL10195459M", "authors": [{"key": "/authors/OL3393524A"}], "ocaid": "elitestructureid0000higl", "subjects": ["Sociology, Social Studies"], "isbn_13": ["9780231040686"], "source_records": ["marc:OpenLibraries-Trent-MARCs/tier1.mrc:3271675:965", "ia:elitestructureid0000higl", "bwb:9780231040686", "marc:marc_loc_2016/BooksAll.2016.part09.utf8:42253457:895", "marc:marc_uic/UIC_2022.mrc:106893916:2430"], "title": "Higley", "lccn": ["75040145"], "identifiers": {"goodreads": ["3683989"]}, "languages": [{"key": "/languages/eng"}], "local_id": ["urn:trent:0116301499442"], "publish_date": "May 1, 1976", "works": [{"key": "/works/OL9349145W"}], "type": {"key": "/type/edition"}, "oclc_numbers": ["1959497"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-11T15:34:47.114192"}}
+/type/edition /books/OL10195688M 9 2022-12-10T21:49:58.782862 {"publishers": ["Columbia University Press"], "number_of_pages": 369, "subtitle": "A Conceptual Reconstruction", "isbn_10": ["0231059132"], "covers": [9318094], "physical_format": "Paperback", "lc_classifications": ["BF199 .Z88 1985"], "key": "/books/OL10195688M", "authors": [{"key": "/authors/OL1234704A"}], "ocaid": "behaviorismconce0000zuri", "subjects": ["Behavioural theory (Behaviourism)", "General", "Behaviorism (Psychology)", "History", "Philosophy", "Psychology"], "isbn_13": ["9780231059138"], "source_records": ["marc:marc_marygrove/marygrovecollegelibrary.full.D20191108.T213022.internetarchive2nd_REPACK.mrc:87868029:2970", "ia:behaviorismconce0000zuri", "bwb:9780231059138", "marc:marc_loc_2016/BooksAll.2016.part15.utf8:125640751:786", "marc:marc_columbia/Columbia-extract-20221130-001.mrc:396818820:1240"], "title": "Behaviorism", "lccn": ["84012657"], "identifiers": {"goodreads": ["6578226"]}, "languages": [{"key": "/languages/eng"}], "local_id": ["urn:mgc:31927000178241"], "publish_date": "August 1986", "works": [{"key": "/works/OL5361923W"}], "type": {"key": "/type/edition"}, "oclc_numbers": ["10849997"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T21:49:58.782862"}}
+/type/edition /books/OL10195809M 9 2020-11-13T08:44:35.799505 {"publishers": ["Columbia University Press"], "number_of_pages": 367, "weight": "1.4 pounds", "covers": [5042089, 3970670], "physical_format": "Hardcover", "lc_classifications": ["PL2442.W36 1992", "PL2442 .W36 1992"], "latest_revision": 9, "key": "/books/OL10195809M", "authors": [{"key": "/authors/OL2758976A"}], "subjects": ["Novels, other prose & writers: from c 1900 -", "Chinese Novel And Short Story", "Mao, Tun - Prose & Criticism", "Literature - Classics / Criticism", "Chinese", "Literary Criticism", "China", "Asian - General", "Lao, She", "Literary Criticism & Collections / Asian", "Mao, Tun", "Shen, Tsung-wen", "1902-", "20th century", "Chinese fiction", "Criticism and interpretation", "History and criticism", "Mao, Dun,", "Realism in literature", "Shen, Congwen,"], "isbn_13": ["9780231076562"], "source_records": ["bwb:9780231076562", "marc:marc_loc_2016/BooksAll.2016.part21.utf8:19878526:1123"], "title": "Fictional Realism in 20th Century China", "lccn": ["91033051"], "identifiers": {"librarything": ["3480097"], "goodreads": ["1066866"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0231076568"], "publish_date": "October 15, 1992", "last_modified": {"type": "/type/datetime", "value": "2020-11-13T08:44:35.799505"}, "works": [{"key": "/works/OL8303816W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.3 x 6.3 x 1.2 inches", "revision": 9}
+/type/edition /books/OL10195830M 7 2020-08-18T15:16:07.074201 {"publishers": ["Columbia University Press"], "number_of_pages": 361, "weight": "15.2 ounces", "covers": [5042072, 4001154], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2020-08-18T15:16:07.074201"}, "latest_revision": 7, "key": "/books/OL10195830M", "authors": [{"key": "/authors/OL953159A"}, {"key": "/authors/OL686553A"}], "contributions": ["Richard Collins (Editor)"], "subjects": ["Film theory & criticism", "Television", "Popular Culture - General", "Television - General", "Pop Arts / Pop Culture", "Mass media", "Mass media in education", "Popular culture", "Cinema/Film: Book"], "isbn_13": ["9780231081115"], "source_records": ["bwb:9780231081115"], "title": "The Screen Education Reader", "identifiers": {"goodreads": ["3023693"], "librarything": ["952111"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0231081111"], "publish_date": "February 15, 1993", "works": [{"key": "/works/OL19210355W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.8 x 5.5 x 1 inches", "revision": 7}
+/type/edition /books/OL10195867M 8 2020-10-11T06:32:18.611173 {"publishers": ["Columbia Univ Pr"], "identifiers": {"goodreads": ["2795412"], "librarything": ["2166633"]}, "covers": [9262735], "physical_format": "Paperback", "lc_classifications": ["DP538 .M37 1976"], "latest_revision": 8, "key": "/books/OL10195867M", "authors": [{"key": "/authors/OL3393652A"}], "ocaid": "historyofportuga1976marq", "subjects": ["European history (ie other than Britain & Ireland)", "Portugal", "Spain", "History"], "edition_name": "2Rev Ed edition", "languages": [{"key": "/languages/eng"}], "source_records": ["ia:historyofportuga1976marq", "bwb:9780231083539", "marc:marc_loc_2016/BooksAll.2016.part09.utf8:176978847:628"], "title": "History of Portugal/Volumes 1&2 in One", "lccn": ["76016780"], "number_of_pages": 817, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780231083539"], "isbn_10": ["023108353X"], "publish_date": "June 1972", "last_modified": {"type": "/type/datetime", "value": "2020-10-11T06:32:18.611173"}, "works": [{"key": "/works/OL9349303W"}], "type": {"key": "/type/edition"}, "revision": 8}
+/type/edition /books/OL10195900M 8 2020-08-18T12:07:48.924173 {"publishers": ["Columbia Univ Pr"], "number_of_pages": 138, "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2020-08-18T12:07:48.924173"}, "latest_revision": 8, "key": "/books/OL10195900M", "authors": [{"key": "/authors/OL18319A"}], "subjects": ["Biography: general", "Biography & Autobiography", "English", "Biography/Autobiography", "USA", "Historical - General"], "edition_name": "New Ed edition", "languages": [{"key": "/languages/eng"}], "source_records": ["bwb:9780231085458"], "title": "Mark Twain's Letters to Mary", "identifiers": {"goodreads": ["2506014"], "librarything": ["1623788"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780231085458"], "isbn_10": ["0231085451"], "publish_date": "June 1963", "works": [{"key": "/works/OL54050W"}], "type": {"key": "/type/edition"}, "revision": 8}
+/type/edition /books/OL10196026M 2 2020-08-18T12:14:09.142434 {"publishers": ["Columbia University Press"], "physical_format": "Hardcover", "source_records": ["bwb:9780231089524"], "title": "Social Welfare of Ageing (Aging Around the World)", "type": {"key": "/type/edition"}, "number_of_pages": 690, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780231089524"], "isbn_10": ["023108952X"], "publish_date": "January 1, 1963", "key": "/books/OL10196026M", "last_modified": {"type": "/type/datetime", "value": "2020-08-18T12:14:09.142434"}, "latest_revision": 2, "works": [{"key": "/works/OL21368007W"}], "contributions": ["G.J. Aldridge (Editor)", "J. Kaplan (Editor)"], "subjects": ["Medicine: General Issues"], "revision": 2}
+/type/edition /books/OL10196204M 9 2022-12-29T07:30:39.717146 {"publishers": ["Columbia University Press"], "weight": "1.1 pounds", "covers": [2337567], "physical_format": "Hardcover", "lc_classifications": ["HV91.S6257 2007", "HV91 .S6257 2007"], "key": "/books/OL10196204M", "authors": [{"key": "/authors/OL3309438A"}], "subjects": ["Social work", "Social Science", "Sociology", "Politics/International Relations", "Gerontology", "Social Science / Gerontology", "Minorities", "Nursing home patients", "Services for", "Social service", "United States"], "edition_name": "New Ed edition", "languages": [{"key": "/languages/eng"}], "source_records": ["bwb:9780231125321", "marc:marc_loc_2016/BooksAll.2016.part33.utf8:157132011:1522", "ia:socialworkpracti0000unse_f1l9", "marc:marc_columbia/Columbia-extract-20221130-013.mrc:192842268:1941"], "title": "Social Work Practice with Ethnically and Racially Diverse Nursing Home Residents and Their Families", "number_of_pages": 276, "isbn_13": ["9780231125321"], "isbn_10": ["0231125321"], "publish_date": "June 6, 2007", "oclc_numbers": ["174099963", "77573840"], "works": [{"key": "/works/OL9253467W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.1 x 5.9 x 0.8 inches", "lccn": ["2006102257"], "ocaid": "socialworkpracti0000unse_f1l9", "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-29T07:30:39.717146"}}
+/type/edition /books/OL10196594M 11 2022-11-11T06:32:09.764800 {"publishers": ["Darton,Longman & Todd Ltd"], "number_of_pages": 320, "isbn_10": ["0232512019"], "physical_format": "Paperback", "lc_classifications": ["BX9.5.I5 D68 1972"], "key": "/books/OL10196594M", "contributions": ["Robert Murray (Editor)", "John Kent (Editor)"], "subjects": ["Church membership", "Congresses", "Intercommunion"], "isbn_13": ["9780232512014"], "source_records": ["marc:marc_claremont_school_theology/CSTMARC1_barcode.mrc:49473725:4044", "marc:marc_loc_2016/BooksAll.2016.part08.utf8:154154635:1041", "marc:marc_claremont_school_theology/CSTMARC1_multibarcode.mrc:49518413:4044", "ia:intercommunionch0000down", "marc:marc_scms/20220805_ADAM_MARC_records.mrc:85702317:1749"], "title": "Church Membership and Intercommunion", "lccn": ["74183228"], "identifiers": {"goodreads": ["3622420"], "librarything": ["769812"]}, "languages": [{"key": "/languages/eng"}], "local_id": ["urn:cst:10011397313", "urn:scms:0188500409597"], "publish_date": "June 1973", "oclc_numbers": ["1095320"], "works": [{"key": "/works/OL7050467W"}], "type": {"key": "/type/edition"}, "covers": [10977557], "ocaid": "intercommunionch0000down", "latest_revision": 11, "revision": 11, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-11T06:32:09.764800"}}
+/type/edition /books/OL10197050M 7 2011-04-27T18:38:53.410190 {"publishers": ["Darton,Longman & Todd Ltd"], "number_of_pages": 192, "weight": "5 ounces", "covers": [2337959], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T18:38:53.410190"}, "latest_revision": 7, "key": "/books/OL10197050M", "authors": [{"key": "/authors/OL458237A"}], "subjects": ["Christian spirituality", "Religion & Beliefs"], "title": "Wild Beast and Angels", "identifiers": {"librarything": ["5070595"], "goodreads": ["1637574"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780232523416"], "isbn_10": ["023252341X"], "publish_date": "July 17, 2000", "oclc_numbers": ["44653676"], "works": [{"key": "/works/OL2991309W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "7.6 x 5 x 0.6 inches", "revision": 7}
+/type/edition /books/OL10197553M 4 2020-08-19T10:03:13.385196 {"publishers": ["Scholastic Ltd"], "number_of_pages": 32, "source_records": ["bwb:9780233974736"], "title": "Postman Pat's Foggy Day (Postman Pat - Storybooks)", "type": {"key": "/type/edition"}, "identifiers": {"librarything": ["4032583"]}, "last_modified": {"type": "/type/datetime", "value": "2020-08-19T10:03:13.385196"}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780233974736"], "isbn_10": ["0233974733"], "publish_date": "December 31, 1982", "key": "/books/OL10197553M", "authors": [{"key": "/authors/OL2658480A"}], "latest_revision": 4, "works": [{"key": "/works/OL7977795W"}], "physical_format": "Hardcover", "subjects": ["Fiction"], "revision": 4}
+/type/edition /books/OL10198205M 8 2020-08-19T12:11:37.207086 {"publishers": ["Andre Deutsch Ltd"], "number_of_pages": 24, "covers": [2338343], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2020-08-19T12:11:37.207086"}, "latest_revision": 8, "key": "/books/OL10198205M", "authors": [{"key": "/authors/OL1420962A"}], "contributions": ["Terry Burton (Illustrator)"], "subjects": ["Fiction"], "source_records": ["bwb:9780233990873"], "title": "Crocodile Smiles (Animal Snappers)", "identifiers": {"goodreads": ["1233915"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780233990873"], "isbn_10": ["0233990879"], "publish_date": "September 2, 1997", "oclc_numbers": ["43177676"], "works": [{"key": "/works/OL5799088W"}], "type": {"key": "/type/edition"}, "revision": 8}
+/type/edition /books/OL10198569M 4 2010-04-24T17:57:38.512932 {"publishers": ["Carlton Books Limited"], "subtitle": "the Cricket World Cup", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T17:57:38.512932"}, "title": "Clash of the Titans", "identifiers": {"goodreads": ["64008"]}, "isbn_13": ["9780233997575"], "physical_format": "Hardcover", "isbn_10": ["0233997571"], "latest_revision": 4, "key": "/books/OL10198569M", "authors": [{"key": "/authors/OL666595A"}], "works": [{"key": "/works/OL3776907W"}], "type": {"key": "/type/edition"}, "subjects": ["Cricket"], "revision": 4}
+/type/edition /books/OL10198877M 4 2011-04-27T18:38:53.410190 {"publishers": ["Evans Brothers - Africa list"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T18:38:53.410190"}, "title": "Continuation English", "number_of_pages": 118, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780237287627"], "isbn_10": ["0237287625"], "publish_date": "December 1974", "key": "/books/OL10198877M", "authors": [{"key": "/authors/OL4391164A"}, {"key": "/authors/OL3394316A"}], "latest_revision": 4, "oclc_numbers": ["315449874"], "works": [{"key": "/works/OL15552007W"}], "type": {"key": "/type/edition"}, "subjects": ["English language readers", "English language: specific skills"], "revision": 4}
+/type/edition /books/OL10199021M 3 2021-02-05T08:08:52.010642 {"publishers": ["Evans Brothers Limited(england"], "title": "Wind Surfing for Experts", "number_of_pages": 160, "isbn_13": ["9780237455941"], "physical_format": "Hardcover", "isbn_10": ["0237455943"], "publish_date": "January 1, 1982", "key": "/books/OL10199021M", "authors": [{"key": "/authors/OL3394347A"}, {"key": "/authors/OL3394348A"}], "works": [{"key": "/works/OL13551660W"}], "type": {"key": "/type/edition"}, "covers": [10610916], "ocaid": "completeguidetow0000evan_n3q1", "lc_classifications": ["GV811.63.W56"], "source_records": ["ia:completeguidetow0000evan_n3q1"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-02-05T08:08:52.010642"}}
+/type/edition /books/OL10199636M 4 2012-07-06T11:17:21.343305 {"publishers": ["Evans Brothers"], "number_of_pages": 32, "weight": "14.4 ounces", "series": ["Focus On series"], "covers": [2338805], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2012-07-06T11:17:21.343305"}, "latest_revision": 4, "key": "/books/OL10199636M", "authors": [{"key": "/authors/OL3394510A"}], "subjects": ["Archaeology", "Culture & customs", "History", "Human geography / peoples of the world", "Physical geography", "People & Places - Central & South America", "Juvenile Nonfiction / People & Places / Central & South America", "Brazil", "Juvenile literature"], "isbn_13": ["9780237514396"], "classifications": {}, "title": "Focus on Brazil", "identifiers": {}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0237514397"], "publish_date": "August 1, 1994", "works": [{"key": "/works/OL9350430W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.9 x 9.1 x 0.3 inches", "revision": 4}
+/type/edition /books/OL10199820M 7 2022-12-10T08:04:55.950627 {"publishers": ["Evans Brothers Ltd"], "physical_format": "Hardcover", "title": "Thanksgiving (A World of Festivals)", "number_of_pages": 32, "covers": [2338926], "isbn_13": ["9780237518035"], "isbn_10": ["0237518031"], "publish_date": "October 31, 1997", "key": "/books/OL10199820M", "authors": [{"key": "/authors/OL393984A"}], "oclc_numbers": ["38220770"], "works": [{"key": "/works/OL2695407W"}], "type": {"key": "/type/edition"}, "subjects": ["Christianity", "Folklore", "Religious festivals & pilgrimages", "Religious worship, rites & ceremonies", "Designed / suitable for National Curriculum"], "ocaid": "thanksgivingothe0000mill", "lc_classifications": ["GT4975 .M55 1998"], "source_records": ["ia:thanksgivingothe0000mill", "promise:bwb_daily_pallets_2020-06-24"], "local_id": ["urn:bwbsku:KN-866-181"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T08:04:55.950627"}}
+/type/edition /books/OL10199987M 5 2012-05-29T21:43:38.021792 {"publishers": ["Evans Brothers Ltd"], "last_modified": {"type": "/type/datetime", "value": "2012-05-29T21:43:38.021792"}, "title": "Size (Big Book) (Marmadukes Maths)", "number_of_pages": 24, "isbn_13": ["9780237520649"], "covers": [2339040], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0237520648"], "publish_date": "September 1999", "key": "/books/OL10199987M", "authors": [{"key": "/authors/OL18918A"}], "latest_revision": 5, "oclc_numbers": ["42912161"], "works": [{"key": "/works/OL8458269W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10200053M 7 2022-12-08T23:03:12.357312 {"publishers": ["Evans Brothers Ltd"], "identifiers": {"goodreads": ["5743297"]}, "weight": "8.5 ounces", "title": "My First Trip to London (First Times)", "type": {"key": "/type/edition"}, "number_of_pages": 24, "covers": [2339087], "isbn_13": ["9780237521455"], "isbn_10": ["0237521458"], "publish_date": "February 24, 2000", "key": "/books/OL10200053M", "authors": [{"key": "/authors/OL2812595A"}], "works": [{"key": "/works/OL8433211W"}], "physical_format": "Hardcover", "subjects": ["Geographical information systems (GIS) & remote sensing", "Travel & holiday", "England", "London, Greater London", "For National Curriculum Early Years"], "physical_dimensions": "8.4 x 7.1 x 0.3 inches", "ocaid": "myfirstvisittolo0000hunt", "source_records": ["ia:myfirstvisittolo0000hunt", "promise:bwb_daily_pallets_2021-02-04"], "local_id": ["urn:bwbsku:KO-925-802"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-08T23:03:12.357312"}}
+/type/edition /books/OL10200462M 4 2010-04-24T17:57:38.512932 {"publishers": ["Evans Brothers Ltd"], "title": "Prob/Solv-Steve Is Adopted David & Jill Wright", "isbn_10": ["0237601125"], "identifiers": {"goodreads": ["7019844"]}, "isbn_13": ["9780237601126"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T17:57:38.512932"}, "publish_date": "March 1, 1985", "key": "/books/OL10200462M", "authors": [{"key": "/authors/OL1001580A"}], "latest_revision": 4, "works": [{"key": "/works/OL4770194W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10200686M 6 2020-10-15T15:22:36.195466 {"publishers": ["Moonraker Press"], "number_of_pages": 123, "subtitle": "A life with animals", "physical_format": "Unknown Binding", "lc_classifications": ["HD9421.5 .F57 1977"], "latest_revision": 6, "key": "/books/OL10200686M", "authors": [{"key": "/authors/OL3394634A"}], "subjects": ["Fitt, J. A. N"], "isbn_13": ["9780239001733"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part11.utf8:93799083:780"], "title": "The \"Bob\" man", "lccn": ["78300841"], "identifiers": {"goodreads": ["3762069"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0239001737"], "publish_date": "1977", "last_modified": {"type": "/type/datetime", "value": "2020-10-15T15:22:36.195466"}, "oclc_numbers": ["4035497"], "works": [{"key": "/works/OL9350694W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL10201236M 6 2022-12-04T06:33:12.284744 {"publishers": ["Hamish Hamilton Ltd"], "number_of_pages": 144, "title": "Skiffy and the Twin Planets", "identifiers": {"goodreads": ["1710931"]}, "isbn_13": ["9780241108352"], "physical_format": "Hardcover", "isbn_10": ["0241108357"], "publish_date": "October 1982", "key": "/books/OL10201236M", "authors": [{"key": "/authors/OL27540A"}], "oclc_numbers": ["11561354"], "type": {"key": "/type/edition"}, "subjects": ["English literature: essays, letters & other non-fiction prose works", "English literature: literary criticism"], "works": [{"key": "/works/OL29342672W"}], "lc_classifications": ["PZ7"], "source_records": ["bwb:9780241108352", "promise:bwb_daily_pallets_2022-11-14"], "local_id": ["urn:bwbsku:KR-552-202"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T06:33:12.284744"}}
+/type/edition /books/OL1020158M 6 2020-11-24T04:32:03.560938 {"other_titles": ["Roadside treasures of the Sonoran Desert"], "publishers": ["Balcony Press"], "identifiers": {"goodreads": ["1707221"], "librarything": ["4230213"]}, "subtitle": "roadside treasures of the Sonoran Desert", "isbn_10": ["096431195X"], "subject_place": ["Arizona", "Tucson"], "covers": [1694741], "lc_classifications": ["TX909 .G86 1997"], "latest_revision": 6, "key": "/books/OL1020158M", "authors": [{"key": "/authors/OL548906A"}], "publish_places": ["Los Angeles, Calif"], "contributions": ["Hayden, Carol.", "Heimann, Jim, 1948-"], "pagination": "6 p., 80 p. of plates :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part25.utf8:122132762:1116"], "title": "Vacant Eden", "dewey_decimal_class": ["647.94791/77602"], "number_of_pages": 80, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["96078617"], "subjects": ["Motels -- Arizona -- Tucson -- Pictorial works.", "Roadside architecture -- Arizona -- Tucson -- Pictorial works.", "Signs and signboards -- Arizona -- Tucson -- Pictorial works.", "Vernacular architecture -- Arizona -- Tucson -- Pictorial works."], "publish_date": "1997", "publish_country": "cau", "last_modified": {"type": "/type/datetime", "value": "2020-11-24T04:32:03.560938"}, "by_statement": "introduction by Jim Heimann ; photography by Abigail Gumbiner & Carol Hayden.", "oclc_numbers": ["37203970"], "works": [{"key": "/works/OL3371236W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL10201692M 7 2022-11-17T09:29:44.435118 {"publishers": ["Hamish Hamilton"], "number_of_pages": 168, "subtitle": "A Reporter's Notebook", "covers": [5042398, 4137482], "physical_format": "Hardcover", "lc_classifications": ["PR6062.A47 Z474 1987", "PR6062.A47Z474 1987"], "key": "/books/OL10201692M", "authors": [{"key": "/authors/OL885985A"}], "subjects": ["Biography: general", "Press & journalism", "Lambert, Derek", "History Of Journalism", "1929-", "20th century", "Authors, English", "Diaries", "Great Britain", "Journalists", "Lambert, Derek,", "Biography/Autobiography"], "isbn_13": ["9780241123430"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part18.utf8:103721858:673", "bwb:9780241123430"], "title": "Just Like the Blitz", "lccn": ["87208868"], "identifiers": {"goodreads": ["3780369"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0241123437"], "publish_date": "November 1988", "works": [{"key": "/works/OL4449408W"}], "type": {"key": "/type/edition"}, "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T09:29:44.435118"}}
+/type/edition /books/OL10201812M 9 2022-12-04T07:01:21.905871 {"publishers": ["Penguin (Non-Classics)"], "number_of_pages": 192, "weight": "8 ounces", "physical_format": "Paperback", "key": "/books/OL10201812M", "authors": [{"key": "/authors/OL441646A"}], "subjects": ["Biography: general", "European history: c 1750 to c 1900", "Women's studies", "Europe", "USA", "General", "History / General", "History - General History", "History: American"], "edition_name": "New Ed edition", "languages": [{"key": "/languages/eng"}], "title": "Women of the French Revolution", "identifiers": {"goodreads": ["492421"], "librarything": ["3139730"]}, "isbn_13": ["9780241126776"], "isbn_10": ["0241126770"], "publish_date": "March 6, 1990", "works": [{"key": "/works/OL2901538W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "7 x 5 x 1 inches", "lc_classifications": ["DC155"], "source_records": ["bwb:9780241126776", "promise:bwb_daily_pallets_2022-11-08"], "local_id": ["urn:bwbsku:T2-EFB-475", "urn:bwbsku:T2-EFB-424"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T07:01:21.905871"}}
+/type/edition /books/OL1020209M 7 2022-12-05T21:25:12.521746 {"other_titles": ["Cooperative occupational education."], "publishers": ["Interstate Publishers"], "identifiers": {"goodreads": ["4758599"]}, "isbn_10": ["0813430429"], "subject_place": ["United States."], "covers": [1540619], "lc_classifications": ["LB1029.C6 M3 1997"], "key": "/books/OL1020209M", "authors": [{"key": "/authors/OL548921A"}], "publish_places": ["Danville, Ill"], "contributions": ["Husted, Stewart W."], "languages": [{"key": "/languages/eng"}], "pagination": "xviii, 715 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part25.utf8:122202984:1024", "ia:cooperativeoccup0000maso_k9k8", "promise:bwb_daily_pallets_2022-04-01"], "title": "Cooperative occupational education including internships, apprenticeships, and tech-prep", "dewey_decimal_class": ["370.11/3/0973"], "notes": {"type": "/type/text", "value": "Bibliography: p. 687-706.\nIncludes index."}, "number_of_pages": 715, "edition_name": "5th ed.", "lccn": ["96078696"], "subjects": ["Education, Cooperative -- United States.", "Vocational education -- United States.", "Internship programs -- United States."], "publish_date": "1997", "publish_country": "ilu", "by_statement": "Ralph E. Mason, Stewart W. Husted.", "oclc_numbers": ["36405651"], "works": [{"key": "/works/OL3371269W"}], "type": {"key": "/type/edition"}, "ocaid": "cooperativeoccup0000maso_k9k8", "local_id": ["urn:bwbsku:O8-ADG-393"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-05T21:25:12.521746"}}
+/type/edition /books/OL10202356M 6 2022-12-08T22:30:07.496570 {"publishers": ["Chambers Harrap Publishers Ltd"], "number_of_pages": 48, "subtitle": "A Selection of Spanish Multiple-choice Tests", "title": "Vamos a Escoger] Pupil's Book", "physical_format": "Paperback", "identifiers": {"goodreads": ["6181973"], "librarything": ["7643668"]}, "isbn_13": ["9780245510045"], "isbn_10": ["0245510044"], "publish_date": "1972", "key": "/books/OL10202356M", "authors": [{"key": "/authors/OL3394987A"}], "works": [{"key": "/works/OL9351128W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:KO-669-918"], "source_records": ["promise:bwb_daily_pallets_2021-02-11"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-08T22:30:07.496570"}}
+/type/edition /books/OL1020237M 7 2020-11-24T04:32:57.635938 {"publishers": ["Golden Sufi Center"], "identifiers": {"librarything": ["241685"], "goodreads": ["617342"]}, "subtitle": "images on the Sufi path", "isbn_10": ["0963457489"], "covers": [3864133], "lc_classifications": ["BP189.2 .S89 1997"], "latest_revision": 7, "key": "/books/OL1020237M", "authors": [{"key": "/authors/OL548932A"}], "publish_places": ["Inverness, CA"], "pagination": "275 p. ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part25.utf8:122227557:623"], "title": "The taste of hidden things", "dewey_decimal_class": ["297.4"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 241-249) and index."}, "number_of_pages": 275, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["96078735"], "subjects": ["Sufism."], "publish_date": "1997", "publish_country": "cau", "last_modified": {"type": "/type/datetime", "value": "2020-11-24T04:32:57.635938"}, "by_statement": "Sara Sviri.", "oclc_numbers": ["36719927"], "works": [{"key": "/works/OL3371305W"}], "type": {"key": "/type/edition"}, "revision": 7}
+/type/edition /books/OL1020293M 13 2022-10-17T19:35:44.058196 {"publishers": ["ACT Pub."], "identifiers": {"goodreads": ["3496245", "793249"], "librarything": ["1496368"]}, "subtitle": "key management practices for speed and flexibility", "ia_box_id": ["IA120120329-BL1"], "isbn_10": ["1882939034", "1882939026"], "dewey_decimal_class": ["658.4/06"], "covers": [2082353, 929097], "ia_loaded_id": ["changeableorgani00dani"], "lc_classifications": ["HD58.8 .D346 1997", "HD58.8.D346 1997"], "key": "/books/OL1020293M", "authors": [{"key": "/authors/OL548951A"}], "ocaid": "changeableorgani00dani", "publish_places": ["Mill Valley, Calif"], "contributions": ["Mathers, John G."], "uri_descriptions": ["Table of contents"], "pagination": "xv, 299 p. :", "source_records": ["ia:changeableorgani00dani", "bwb:9781882939039", "marc:marc_loc_2016/BooksAll.2016.part25.utf8:122277576:900", "ia:changeableorgani0000dani", "bwb:9781882939022"], "title": "Change-ABLE organization", "lccn": ["96078804"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 285-288) and index."}, "number_of_pages": 299, "languages": [{"key": "/languages/eng"}], "url": ["http://lcweb.loc.gov/catdir/toc/96-78804.html"], "subjects": ["Organizational change -- Management."], "publish_date": "1997", "publish_country": "cau", "by_statement": "William R. Daniels, John G. Mathers.", "works": [{"key": "/works/OL3371418W"}], "type": {"key": "/type/edition"}, "uris": ["http://lcweb.loc.gov/catdir/toc/96-78804.html"], "latest_revision": 13, "revision": 13, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T19:35:44.058196"}}
+/type/edition /books/OL10203275M 7 2021-09-16T05:09:33.125327 {"publishers": ["CRC Press"], "identifiers": {"goodreads": ["6813630"]}, "physical_format": "Paperback", "key": "/books/OL10203275M", "authors": [{"key": "/authors/OL3395248A"}], "subjects": ["Ergonomics", "Industrial & Organizational Psychology", "Industrial Health & Safety", "Occupational & Industrial Medicine", "Technology & Industrial Arts"], "edition_name": "7th Ed edition", "languages": [{"key": "/languages/eng"}], "classifications": {}, "title": "Grandjeans Fitting Tasks", "notes": {"type": "/type/text", "value": "7th Edition"}, "number_of_pages": 440, "isbn_13": ["9780415312424"], "isbn_10": ["0415312426"], "publish_date": "August 2004", "oclc_numbers": ["228045057"], "works": [{"key": "/works/OL9351496W"}], "type": {"key": "/type/edition"}, "lc_classifications": ["TA166"], "source_records": ["bwb:9780415312424"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-09-16T05:09:33.125327"}}
+/type/edition /books/OL10203437M 4 2022-12-15T03:42:55.152899 {"publishers": ["Routledge"], "languages": [{"key": "/languages/eng"}], "source_records": ["bwb:9780415325561", "marc:marc_columbia/Columbia-extract-20221130-031.mrc:131879815:3386"], "title": "Routledge Library Editions: The Anthropology Series (Routledge Library Editions: Anthropology & Ethnography)", "isbn_13": ["9780415325561"], "physical_format": "Hardcover", "isbn_10": ["0415325560"], "publish_date": "October 2003", "key": "/books/OL10203437M", "works": [{"key": "/works/OL22054530W"}], "type": {"key": "/type/edition"}, "subjects": ["Ethnography", "Reference works", "Anthropology - General", "Social Science", "Sociology"], "lc_classifications": ["GN25", "GN475.8 .W58 2004eb"], "oclc_numbers": ["863157478"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-15T03:42:55.152899"}}
+/type/edition /books/OL10204148M 3 2021-09-16T16:09:29.196232 {"publishers": ["Routledge"], "subtitle": "A Battle for the Hearts and Minds of Europe's Citizens (Routledge Advances in European Politics)", "weight": "1 pounds", "physical_format": "Hardcover", "key": "/books/OL10204148M", "authors": [{"key": "/authors/OL3395528A"}], "subjects": ["POLITICS & GOVERNMENT", "Political Science", "Politics / Current Events", "Politics/International Relations", "Political Science / International Relations", "Government - Comparative", "International Relations - General"], "edition_name": "1 edition", "title": "Public Support for European Integration", "number_of_pages": 192, "isbn_13": ["9780415366885"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0415366887"], "publish_date": "October 1, 2007", "works": [{"key": "/works/OL9351807W"}], "type": {"key": "/type/edition"}, "lc_classifications": ["HC241"], "source_records": ["bwb:9780415366885"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-09-16T16:09:29.196232"}}
+/type/edition /books/OL10204163M 8 2021-09-16T17:37:36.276303 {"publishers": ["Routledge"], "number_of_pages": 2400, "physical_format": "Hardcover", "key": "/books/OL10204163M", "authors": [{"key": "/authors/OL3395531A"}], "subjects": ["Asian studies", "International relations", "China", "South East Asia", "History / China"], "edition_name": "1 edition", "languages": [{"key": "/languages/eng"}], "classifications": {}, "source_records": ["marc:marc_loc_updates/v36.i21.records.utf8:6939892:1059", "marc:marc_loc_updates/v37.i35.records.utf8:58081204:1159", "marc:marc_loc_updates/v38.i08.records.utf8:14647690:1159", "marc:marc_loc_2016/BooksAll.2016.part35.utf8:119583117:2587", "bwb:9780415367523"], "title": "China and Southeast Asia", "notes": {"type": "/type/text", "value": "Routledge Library on Southeast Asia"}, "identifiers": {}, "isbn_13": ["9780415367523"], "isbn_10": ["0415367522"], "publish_date": "June 30, 2008", "works": [{"key": "/works/OL9351814W"}], "type": {"key": "/type/edition"}, "lccn": ["2008021893"], "lc_classifications": ["DS525.9.C5 C47 2009", "DS525.9.C5"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-09-16T17:37:36.276303"}}
+/type/edition /books/OL1020456M 6 2020-11-24T04:35:19.132521 {"other_titles": ["Day trips Spain and Portugal"], "publishers": ["Hastings House", "Distributed to the trade by Publishers Group West"], "identifiers": {"goodreads": ["4921546"], "librarything": ["4553591"]}, "subtitle": "50 one day adventures by car, rail or ferry including 51 maps", "isbn_10": ["0803893892"], "subject_place": ["Spain", "Portugal"], "pagination": "368 p. :", "covers": [1515843], "lc_classifications": ["DP14 .R45 1997"], "latest_revision": 6, "key": "/books/OL1020456M", "authors": [{"key": "/authors/OL549019A"}], "publish_places": ["Norwalk, Conn", "Emeryville, CA"], "genres": ["Guidebooks."], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part25.utf8:122430962:943"], "title": "Daytrips Spain and Portugal", "dewey_decimal_class": ["914.604/09/049"], "notes": {"type": "/type/text", "value": "Includes index."}, "number_of_pages": 368, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["96079109"], "subjects": ["Spain -- Guidebooks.", "Portugal -- Guidebooks."], "publish_date": "1997", "publish_country": "ctu", "last_modified": {"type": "/type/datetime", "value": "2020-11-24T04:35:19.132521"}, "by_statement": "Norman P.T. Renouf.", "oclc_numbers": ["38053749"], "works": [{"key": "/works/OL3371645W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL10204798M 3 2021-09-16T03:43:31.476679 {"physical_format": "Hardcover", "publishers": ["Taylor & Francis"], "isbn_10": ["0415396514"], "number_of_pages": 974, "isbn_13": ["9780415396516"], "languages": [{"key": "/languages/eng"}], "publish_date": "October 16, 2005", "key": "/books/OL10204798M", "authors": [{"key": "/authors/OL3297715A"}], "title": "Structural Health Monitoring and Intelligent Infrastructure (Volume 2)", "subjects": ["Civil Engineering, Surveying & Building", "Civil", "Technology / Engineering / Civil", "Technology & Industrial Arts"], "works": [{"key": "/works/OL9239825W"}], "type": {"key": "/type/edition"}, "lc_classifications": ["TA645.I62 2005"], "source_records": ["bwb:9780415396516"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-09-16T03:43:31.476679"}}
+/type/edition /books/OL10204862M 9 2022-12-04T12:58:38.583577 {"publishers": ["Routledge"], "number_of_pages": 224, "subtitle": "A PRACTICAL GUIDE TO HELPING PEOPLE TO TAKE CONTROL", "covers": [5042497], "physical_format": "Hardcover", "lc_classifications": ["RC489.C63L28 2008"], "key": "/books/OL10204862M", "authors": [{"key": "/authors/OL3395778A"}], "subjects": ["Psychology & Psychiatry / General", "Cognitive Psychology", "General", "Psychology"], "edition_name": "1 edition", "languages": [{"key": "/languages/eng"}], "source_records": ["amazon:0415398118", "marc:marc_loc_updates/v38.i34.records.utf8:11336341:2171", "bwb:9780415398114", "promise:bwb_daily_pallets_2022-09-05"], "title": "COGNITIVE BEHAVIOUR THERAPY", "identifiers": {"goodreads": ["6701193"]}, "isbn_13": ["9780415398114"], "isbn_10": ["0415398118"], "publish_date": "July 14, 2008", "works": [{"key": "/works/OL9352100W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:KR-241-992"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T12:58:38.583577"}}
+/type/edition /books/OL1020487M 2 2020-11-24T04:35:42.001542 {"publishers": ["Massachusetts Continuing Legal Education"], "pagination": "xii, 262 p. ;", "subtitle": "creating trial notebokks and other methods for trial preparation", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part25.utf8:122460682:533"], "title": "Organizing tools for litigation paralegals", "lccn": ["96079178"], "number_of_pages": 262, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2020-11-24T04:35:42.001542"}, "publish_date": "1996", "publish_country": "mau", "key": "/books/OL1020487M", "by_statement": "Paul M. James, chair ; Ieuan G. Mahony, Joanne M. McLaughlin, Kristen D. Wiwczar.", "publish_places": ["Boston, MA"], "works": [{"key": "/works/OL23613711W"}], "type": {"key": "/type/edition"}, "latest_revision": 2, "revision": 2}
+/type/edition /books/OL10204898M 11 2022-12-04T06:02:48.359401 {"publishers": ["Routledge"], "identifiers": {"goodreads": ["5279899"]}, "subtitle": "Understanding Private Sector Participation in", "weight": "1.1 pounds", "isbn_10": ["0415399408"], "covers": [2414701], "physical_format": "Hardcover", "lc_classifications": ["LB2806.36.B35 2007", "LB2806.36 .B23 2007", "LB2806.36 .B35 2007"], "key": "/books/OL10204898M", "authors": [{"key": "/authors/OL2696741A"}], "ocaid": "educationplcunde00ball_494", "languages": [{"key": "/languages/eng"}], "source_records": ["ia:educationplcunde00ball_494", "bwb:9780415399401", "marc:marc_loc_2016/BooksAll.2016.part42.utf8:204585418:3494", "ia:educationplcunde0000ball", "promise:bwb_daily_pallets_2022-11-16"], "title": "Education Plc", "lccn": ["2015473471", "2006028061"], "number_of_pages": 216, "isbn_13": ["9780415399401"], "edition_name": "1 edition", "subjects": ["Central government policies", "Organization & management of education", "Education", "Education / Teaching", "United Kingdom, Great Britain", "General", "Education / General", "Educational Policy & Reform", "Economic aspects", "Privatization", "Privatization in education"], "publish_date": "May 9, 2007", "works": [{"key": "/works/OL8098141W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.4 x 6.3 x 0.8 inches", "local_id": ["urn:bwbsku:KR-399-707"], "latest_revision": 11, "revision": 11, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T06:02:48.359401"}}
+/type/edition /books/OL10205097M 4 2021-09-16T03:43:43.929279 {"publishers": ["Routledge"], "physical_format": "Paperback", "subtitle": "2 Volumes (Special Introductory Offer)", "source_records": ["amazon:0415404622", "bwb:9780415404624"], "title": "The Study of World Politics", "isbn_13": ["9780415404624"], "edition_name": "1 edition", "languages": [{"key": "/languages/eng"}], "authors": [{"key": "/authors/OL32161A"}], "isbn_10": ["0415404622"], "publish_date": "December 8, 2005", "key": "/books/OL10205097M", "subjects": ["Political Science / General", "General", "Political Science", "Politics/International Relations"], "works": [{"key": "/works/OL94588W"}], "type": {"key": "/type/edition"}, "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-09-16T03:43:43.929279"}}
+/type/edition /books/OL10205813M 4 2021-09-16T03:53:25.777175 {"publishers": ["TF-ROUTL"], "physical_format": "Unknown Binding", "subtitle": "Key Themes", "title": "The Rise of American Radio vol 5", "isbn_13": ["9780415422994"], "edition_name": "1 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["041542299X"], "publish_date": "December 19, 2006", "key": "/books/OL10205813M", "authors": [{"key": "/authors/OL3265908A"}], "oclc_numbers": ["315708805"], "works": [{"key": "/works/OL9200912W"}], "type": {"key": "/type/edition"}, "subjects": ["Social Science / Media Studies"], "source_records": ["bwb:9780415422994"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-09-16T03:53:25.777175"}}
+/type/edition /books/OL10206035M 7 2022-12-15T05:30:48.631474 {"publishers": ["Routledge"], "physical_format": "Hardcover", "key": "/books/OL10206035M", "weight": "3 pounds", "title": "History of Four Footed Beasts", "identifiers": {"goodreads": ["2475551"]}, "isbn_13": ["9780415426954"], "edition_name": "1 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0415426952"], "authors": [{"key": "/authors/OL3396247A"}], "publish_date": "October 13, 1967", "works": [{"key": "/works/OL9352635W"}], "type": {"key": "/type/edition"}, "subjects": ["History / General", "General", "History", "History: World"], "physical_dimensions": "10.1 x 7.1 x 1.8 inches", "source_records": ["bwb:9780415426954", "marc:marc_columbia/Columbia-extract-20221130-034.mrc:10980896:2794", "marc:marc_columbia/Columbia-extract-20221130-031.mrc:177254579:1779"], "lc_classifications": ["QL41"], "oclc_numbers": ["1322841521", "919304865"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-15T05:30:48.631474"}}
+/type/edition /books/OL10206196M 5 2020-10-12T19:34:01.509981 {"publishers": ["Routledge"], "subtitle": "Addressing the Needs of All Students", "edition_name": "1 edition", "physical_format": "Paperback", "lc_classifications": ["LB2331.G665 2008"], "latest_revision": 5, "key": "/books/OL10206196M", "authors": [{"key": "/authors/OL3396306A"}], "subjects": ["Education / General", "General", "Education", "Education / Teaching"], "isbn_13": ["9780415430456"], "source_records": ["bwb:9780415430456"], "title": "Inclusivity and Diversity", "identifiers": {"librarything": ["8514250"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0415430453"], "publish_date": "August 15, 2008", "last_modified": {"type": "/type/datetime", "value": "2020-10-12T19:34:01.509981"}, "works": [{"key": "/works/OL9352708W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10206509M 12 2022-12-26T05:02:33.834569 {"publishers": ["Routledge"], "subtitle": "Locating the Commonweal (Routledge Contemporary Southeast Asia)", "edition_name": "1 edition", "physical_format": "Hardcover", "lc_classifications": ["", "HC447.5 .C66 2009", "HC447.5 .C66 2009eb"], "key": "/books/OL10206509M", "authors": [{"key": "/authors/OL3396448A"}], "subjects": ["POLITICS & GOVERNMENT", "Political Science / Globalization"], "isbn_13": ["9780415436106"], "source_records": ["marc:marc_loc_updates/v36.i17.records.utf8:12062015:2994", "marc:marc_loc_updates/v37.i35.records.utf8:54746331:3094", "marc:marc_loc_updates/v38.i08.records.utf8:14041662:3094", "marc:marc_loc_updates/v38.i27.records.utf8:8018898:2446", "bwb:9780415436106", "marc:marc_loc_2016/BooksAll.2016.part35.utf8:115149054:2446", "marc:marc_columbia/Columbia-extract-20221130-031.mrc:102271384:5647", "promise:bwb_daily_pallets_2022-12-08", "marc:marc_columbia/Columbia-extract-20221130-015.mrc:22020083:2718"], "title": "Environment and Governance in Indonesia", "number_of_pages": 240, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0415436109"], "publish_date": "August 29, 2008", "works": [{"key": "/works/OL9352886W"}], "type": {"key": "/type/edition"}, "lccn": ["2008018396"], "oclc_numbers": ["811563571", "226389349"], "local_id": ["urn:bwbsku:O8-BWE-496"], "latest_revision": 12, "revision": 12, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-26T05:02:33.834569"}}
+/type/edition /books/OL1020651M 4 2020-11-24T04:37:37.690032 {"publishers": ["Anundsen Pub. Co."], "subtitle": "500 years of the Peter Bogen family, 1500-1996", "subject_place": ["Germany"], "lc_classifications": ["CS71.B6738 1996", "CS71.B6738 1996"], "latest_revision": 4, "key": "/books/OL1020651M", "authors": [{"key": "/authors/OL549095A"}], "publish_places": ["Decorah, Iowa (P.O. Box 230, Decorah 52101)"], "lccn": ["96079471"], "uri_descriptions": ["Table of contents"], "languages": [{"key": "/languages/eng"}], "pagination": "603 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part25.utf8:122599749:931"], "title": "Der Bogen Baum", "url": ["http://www.loc.gov/catdir/toc/fy041/96079471.html"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 495-545) and index."}, "number_of_pages": 603, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "edition_name": "1st ed.", "dewey_decimal_class": ["929/.2/08931073"], "subjects": ["Bogan family.", "Bogen, Peter, ca. 1500-ca. 1560 -- Family.", "Germany -- Genealogy."], "publish_date": "1996", "publish_country": "iau", "last_modified": {"type": "/type/datetime", "value": "2020-11-24T04:37:37.690032"}, "by_statement": "by Alfred T. Bogen, Jr.", "works": [{"key": "/works/OL3371909W"}], "type": {"key": "/type/edition"}, "uris": ["http://www.loc.gov/catdir/toc/fy041/96079471.html"], "revision": 4}
+/type/edition /books/OL10207197M 9 2022-12-26T11:10:38.738299 {"publishers": ["Routledge"], "number_of_pages": 192, "subtitle": "An Arendtian Perspective (Routledge Innovations in Political Theory)", "covers": [6256193], "physical_format": "Hardcover", "lc_classifications": ["JZ1318", "JC251.A74 H439 2009", "JZ1318 .H39 2009eb"], "key": "/books/OL10207197M", "authors": [{"key": "/authors/OL386982A"}], "subjects": ["Philosophy", "Political Science / General", "General", "Political Science", "Politics/International Relations"], "edition_name": "1 edition", "languages": [{"key": "/languages/eng"}], "source_records": ["bwb:9780415451062", "marc:marc_loc_2016/BooksAll.2016.part35.utf8:135068399:1484", "marc:marc_columbia/Columbia-extract-20221130-031.mrc:60286743:3238", "marc:marc_columbia/Columbia-extract-20221130-015.mrc:55758743:1816"], "title": "Political Evil in a Global Age", "identifiers": {"librarything": ["8138162"]}, "isbn_13": ["9780415451062"], "isbn_10": ["041545106X"], "publish_date": "June 30, 2008", "works": [{"key": "/works/OL2653920W"}], "type": {"key": "/type/edition"}, "lccn": ["2008034101"], "oclc_numbers": ["314285602", "239239022"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-26T11:10:38.738299"}}
+/type/edition /books/OL10207361M 9 2022-12-15T01:03:25.913994 {"publishers": ["Routledge"], "number_of_pages": 208, "subtitle": "Positive Neutrality and the Consolidation of the Turkmen Regime (Central Asia Research Forum)", "physical_format": "Hardcover", "lc_classifications": ["DK938.8658.A53 2008", "DK938.8658 .A53 2009", "DK938.8658 .A53 2009eb"], "key": "/books/OL10207361M", "authors": [{"key": "/authors/OL3396837A"}], "subjects": ["International relations", "Political Science / General", "International Relations - Diplomacy", "International Relations - General", "Political Science", "Politics/International Relations"], "edition_name": "1 edition", "languages": [{"key": "/languages/eng"}], "source_records": ["bwb:9780415454407", "marc:marc_loc_2016/BooksAll.2016.part35.utf8:101386590:1221", "marc:marc_columbia/Columbia-extract-20221130-031.mrc:61689749:2833"], "title": "Turkmenistans Foreign Policy", "identifiers": {"goodreads": ["1779798"], "librarything": ["8233140"]}, "isbn_13": ["9780415454407"], "isbn_10": ["0415454409"], "publish_date": "November 30, 2008", "works": [{"key": "/works/OL9353329W"}], "type": {"key": "/type/edition"}, "lccn": ["2008007523"], "oclc_numbers": ["318632671"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-15T01:03:25.913994"}}
+/type/edition /books/OL1020788M 7 2021-11-02T15:23:51.360666 {"publishers": ["Andrews and McMeel Pub."], "identifiers": {"goodreads": ["1023580"]}, "isbn_10": ["0836232259"], "covers": [1580071], "lc_classifications": ["PN6231.T5 W56 1997", "PN6231.T5W56 1997"], "key": "/books/OL1020788M", "authors": [{"key": "/authors/OL461052A"}], "publish_places": ["Kansas City, Mo"], "contributions": ["Garner, Alan, 1950-", "Farrell, Warren."], "pagination": "x, 119 p. ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part25.utf8:122726067:725", "bwb:9780836232257"], "title": "The ultimate answering machine message book", "dewey_decimal_class": ["818/.5402"], "number_of_pages": 119, "languages": [{"key": "/languages/eng"}], "lccn": ["96079730"], "subjects": ["Telephone answering and recording apparatus -- Humor."], "publish_date": "1997", "publish_country": "mou", "by_statement": "Marnie Winston-Macauley ; with contribution from Alan Garner and Warren Farrell.", "oclc_numbers": ["38090828"], "works": [{"key": "/works/OL3004134W"}], "type": {"key": "/type/edition"}, "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2021-11-02T15:23:51.360666"}}
+/type/edition /books/OL10208058M 7 2020-10-12T23:44:47.555326 {"publishers": ["Routledge"], "number_of_pages": 256, "subtitle": "Finance, Production, Development and Labour (Rethinking Globalizations)", "covers": [2415451], "physical_format": "Paperback", "lc_classifications": ["HD5702.G56 2008"], "latest_revision": 7, "key": "/books/OL10208058M", "authors": [{"key": "/authors/OL2821693A"}], "subjects": ["Economics", "Business & Economics", "Business / Economics / Finance", "Business/Economics", "Business & Economics / Economics / International", "International - Economics", "Labor"], "edition_name": "1 edition", "languages": [{"key": "/languages/eng"}], "source_records": ["bwb:9780415775496"], "title": "Global Economy Contested", "identifiers": {"goodreads": ["6444926"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780415775496"], "isbn_10": ["0415775493"], "publish_date": "July 8, 2008", "last_modified": {"type": "/type/datetime", "value": "2020-10-12T23:44:47.555326"}, "works": [{"key": "/works/OL8457166W"}], "type": {"key": "/type/edition"}, "revision": 7}
+/type/edition /books/OL10208222M 2 2009-12-15T00:44:31.553945 {"physical_format": "Paperback", "languages": [{"key": "/languages/eng"}], "publishers": ["Other"], "isbn_10": ["0415919002"], "title": "Science Studies Catalog 1997", "edition_name": "1 edition", "isbn_13": ["9780415919005"], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:44:31.553945"}, "latest_revision": 2, "key": "/books/OL10208222M", "authors": [{"key": "/authors/OL2857818A"}], "works": [{"key": "/works/OL8536015W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10208312M 2 2009-12-15T00:44:31.553945 {"physical_format": "Paperback", "languages": [{"key": "/languages/eng"}], "publishers": ["Routledge"], "isbn_10": ["0415927277"], "title": "Cultural Studies Catalog 2000", "edition_name": "1 edition", "isbn_13": ["9780415927277"], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:44:31.553945"}, "publish_date": "December 20, 1999", "key": "/books/OL10208312M", "authors": [{"key": "/authors/OL2857818A"}], "latest_revision": 2, "works": [{"key": "/works/OL8535890W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10208856M 17 2022-12-29T19:37:14.999458 {"publishers": ["Routledge"], "number_of_pages": 216, "weight": "15.5 ounces", "isbn_10": ["0415960908"], "covers": [2415597], "physical_format": "Hardcover", "lc_classifications": ["HF1359.G5843 2007", "HF1359 .G5843 2008", "HF1359 .G5843 2008eb"], "key": "/books/OL10208856M", "authors": [{"key": "/authors/OL319678A"}], "ocaid": "globalizationtra00schu", "languages": [{"key": "/languages/eng"}], "classifications": {}, "source_records": ["marc:marc_loc_updates/v35.i17.records.utf8:11944251:890", "marc:marc_loc_updates/v35.i23.records.utf8:15801571:990", "marc:marc_loc_updates/v38.i08.records.utf8:5731099:990", "marc:marc_loc_updates/v38.i12.records.utf8:7810088:2329", "ia:globalizationtra00schu", "bwb:9780415960908", "marc:marc_loc_2016/BooksAll.2016.part34.utf8:120573110:2329", "marc:marc_columbia/Columbia-extract-20221130-031.mrc:47704789:3649", "marc:marc_columbia/Columbia-extract-20221130-013.mrc:293402335:3011"], "title": "Globalization and Transformations of Local Socio-economic Practices", "notes": {"type": "/type/text", "value": "Routledge Advances in Sociology"}, "identifiers": {"goodreads": ["6179630"], "librarything": ["6530055"]}, "isbn_13": ["9780415960908"], "edition_name": "1 edition", "subjects": ["Sociology, Social Studies", "Social Science", "Sociology", "General", "Sociology - General", "Globalization", "International economic relations", "International trade", "Social aspects"], "publish_date": "October 25, 2007", "works": [{"key": "/works/OL2356060W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.9 x 6.2 x 0.7 inches", "lccn": ["2007016170"], "oclc_numbers": ["233040153", "123350156"], "latest_revision": 17, "revision": 17, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-29T19:37:14.999458"}}
+/type/edition /books/OL10208917M 13 2022-12-29T22:54:38.512365 {"publishers": ["Routledge"], "number_of_pages": 197, "weight": "14.4 ounces", "covers": [5043877], "physical_format": "Hardcover", "lc_classifications": ["HD3890.N7C664 2008", "HD3890.N7 C664 2008", "HD3890.N7 C664 2008eb"], "key": "/books/OL10208917M", "authors": [{"key": "/authors/OL3397403A"}], "ocaid": "rethinkingmunici00cook", "subjects": ["Local government", "Urban & municipal planning", "Business & Economics", "Business / Economics / Finance", "Business/Economics", "Development - Economic Development", "Business & Economics / Economic Conditions", "Economic Conditions", "Municipal services", "New York", "New York (State)", "Privatization"], "edition_name": "1 edition", "languages": [{"key": "/languages/eng"}], "source_records": ["amazon:0415962099", "marc:marc_loc_updates/v36.i26.records.utf8:6307820:1013", "marc:marc_loc_updates/v37.i35.records.utf8:21708125:1108", "bwb:9780415962094", "marc:marc_loc_2016/BooksAll.2016.part34.utf8:143516516:1108", "marc:marc_columbia/Columbia-extract-20221130-031.mrc:47990343:3854", "marc:marc_columbia/Columbia-extract-20221130-013.mrc:326669858:1817"], "title": "Rethinking Municipal Privatization (New Political Economy)", "identifiers": {"goodreads": ["6701086"]}, "isbn_13": ["9780415962094"], "isbn_10": ["0415962099"], "publish_date": "December 26, 2007", "works": [{"key": "/works/OL9353962W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.4 x 6.4 x 0.7 inches", "lccn": ["2007033927"], "oclc_numbers": ["234243229", "166290641"], "latest_revision": 13, "revision": 13, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-29T22:54:38.512365"}}
+/type/edition /books/OL10209319M 7 2020-10-12T23:48:51.618196 {"publishers": ["Routledge"], "subtitle": "High-Stakes Testing and the Standardization of Inequality", "edition_name": "1 edition", "physical_format": "Unknown Binding", "lc_classifications": ["LB3051.A86 2008"], "latest_revision": 7, "key": "/books/OL10209319M", "authors": [{"key": "/authors/OL3397584A"}], "subjects": ["Education / Curricula"], "isbn_13": ["9780415990707"], "source_records": ["amazon:041599070X", "marc:marc_loc_updates/v36.i09.records.utf8:15642692:1083", "marc:marc_loc_updates/v37.i27.records.utf8:62614084:1101", "marc:marc_loc_updates/v37.i35.records.utf8:46179512:1196", "bwb:9780415990707"], "title": "Unequal By Design", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["041599070X"], "publish_date": "September 1, 2008", "last_modified": {"type": "/type/datetime", "value": "2020-10-12T23:48:51.618196"}, "works": [{"key": "/works/OL9354160W"}], "type": {"key": "/type/edition"}, "revision": 7}
+/type/edition /books/OL10209348M 9 2021-09-16T13:50:55.517041 {"publishers": ["Routledge"], "number_of_pages": 200, "covers": [5330408, 5043943], "physical_format": "Paperback", "key": "/books/OL10209348M", "authors": [{"key": "/authors/OL840401A"}], "subjects": ["Education"], "source_records": ["marc:marc_miami_univ_ohio/allbibs0007.out:9859689:815", "bwb:9780416007923"], "title": "Breaking into the Curriculum", "identifiers": {"goodreads": ["4280904"]}, "isbn_13": ["9780416007923"], "isbn_10": ["0416007929"], "publish_date": "February 18, 1988", "oclc_numbers": ["16802186"], "works": [{"key": "/works/OL4318985W"}], "type": {"key": "/type/edition"}, "lc_classifications": ["LB1028.43"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-09-16T13:50:55.517041"}}
+/type/edition /books/OL10209384M 5 2021-12-25T04:35:24.475009 {"publishers": ["Hamlyn young books"], "title": "On the Farm (Play & Learn)", "number_of_pages": 8, "isbn_13": ["9780416018622"], "physical_format": "Hardcover", "isbn_10": ["0416018629"], "publish_date": "March 26, 1987", "key": "/books/OL10209384M", "authors": [{"key": "/authors/OL775380A"}], "oclc_numbers": ["14965692"], "works": [{"key": "/works/OL4128614W"}], "type": {"key": "/type/edition"}, "lc_classifications": ["S519"], "source_records": ["bwb:9780416018622"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-25T04:35:24.475009"}}
+/type/edition /books/OL1020938M 3 2020-11-24T04:40:51.878849 {"publishers": ["Genealogy Pub. Service", "Orders to F.M. Barry"], "lc_classifications": ["CS71.B31 1997", "CS71.B31 1997"], "latest_revision": 3, "key": "/books/OL1020938M", "authors": [{"key": "/authors/OL549212A"}], "publish_places": ["Franklin, N.C", "Lacombe, LA (61359 Brittany Dr., Lacombe 70445-2819)"], "contributions": ["Barry, Roy Frank, 1886-1965."], "pagination": "viii, 455 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part25.utf8:122860254:901"], "title": "Benjamin Barry of Oppenheim and Yates, New York and his descendants", "dewey_decimal_class": ["929/.2/0973"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 416-419) and index."}, "number_of_pages": 455, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["96080006"], "subjects": ["Barry family.", "Barry, Benjamin, ca. 1765-1823 -- Family."], "publish_date": "1997", "publish_country": "ncu", "last_modified": {"type": "/type/datetime", "value": "2020-11-24T04:40:51.878849"}, "by_statement": "compiled by Fredrick M. Barry ; based on research by Roy Frank Barry.", "works": [{"key": "/works/OL3372457W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL1020947M 12 2022-12-04T17:09:42.176361 {"other_titles": ["Learner-centered literacy", "More than fifty ways to learner-centered literacy"], "publishers": ["IRI/Skylight Training and Pub."], "number_of_pages": 212, "isbn_10": ["1575170698"], "subject_place": ["United States."], "covers": [1928082], "lc_classifications": ["LB1140.5.L3 L56 1997", "LB1140.5.L3L56 1997"], "key": "/books/OL1020947M", "authors": [{"key": "/authors/OL549216A"}], "publish_places": ["Arlington Heights, Ill"], "contributions": ["Hubble, Deborah."], "pagination": "ix, 212 p. :", "source_records": ["marc:marc_records_scriblio_net/part25.dat:216594927:989", "marc:marc_loc_updates/v36.i10.records.utf8:8130186:1308", "bwb:9781575170695", "marc:marc_loc_2016/BooksAll.2016.part25.utf8:122869186:1308", "ia:more-than-50-ways-to-learner-centered-literacy-_1997", "promise:bwb_daily_pallets_2022-08-13"], "title": "More than 50 ways to learner-centered literacy", "lccn": ["96080016"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 206-207) and index."}, "identifiers": {"librarything": ["5279203"], "goodreads": ["1814701"]}, "languages": [{"key": "/languages/eng"}], "subjects": ["Language arts (Preschool) -- United States", "Language arts (Elementary) -- United States", "Active learning -- United States", "Literacy -- United States"], "publish_date": "1997", "publish_country": "ilu", "by_statement": "by Laura Lipton with Deborah Hubble.", "oclc_numbers": ["37277301"], "works": [{"key": "/works/OL3372468W"}], "type": {"key": "/type/edition"}, "ocaid": "more-than-50-ways-to-learner-centered-literacy-_1997", "local_id": ["urn:bwbsku:T2-COA-899"], "latest_revision": 12, "revision": 12, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T17:09:42.176361"}}
+/type/edition /books/OL10209549M 6 2021-12-25T01:52:10.072896 {"publishers": ["Methuen young books"], "identifiers": {"goodreads": ["6845395"]}, "title": "My Little Lamb - Locket Bk", "contributions": ["P. Crampton (Translator)"], "number_of_pages": 26, "isbn_13": ["9780416057720"], "physical_format": "Paperback", "isbn_10": ["0416057721"], "publish_date": "June 25, 1987", "key": "/books/OL10209549M", "authors": [{"key": "/authors/OL2700756A"}], "oclc_numbers": ["15549857"], "works": [{"key": "/works/OL8105895W"}], "type": {"key": "/type/edition"}, "lc_classifications": ["PZ7"], "source_records": ["bwb:9780416057720"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-25T01:52:10.072896"}}
+/type/edition /books/OL10209564M 4 2010-04-24T17:57:38.512932 {"publishers": ["Methuen"], "number_of_pages": 16, "title": "Terr Hse Birthdays Punja", "isbn_10": ["0416059627"], "identifiers": {"goodreads": ["5961929"]}, "isbn_13": ["9780416059625"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T17:57:38.512932"}, "publish_date": "December 31, 1987", "key": "/books/OL10209564M", "authors": [{"key": "/authors/OL3397604A"}], "latest_revision": 4, "works": [{"key": "/works/OL9354192W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10210160M 12 2022-12-05T12:32:48.177470 {"publishers": ["Methuen young books"], "identifiers": {"librarything": ["5063429"], "goodreads": ["1832558"]}, "covers": [2415719], "physical_format": "Hardcover", "key": "/books/OL10210160M", "authors": [{"key": "/authors/OL29881A"}], "contributions": ["E.H. Shepard (Illustrator)"], "subjects": ["Classic fiction", "English literature: poetry texts & anthologies", "Picture books"], "classifications": {}, "source_records": ["marc:talis_openlibrary_contribution/talis-openlibrary-contribution.mrc:1450680786:991", "bwb:9780416194647", "promise:bwb_daily_pallets_2022-04-20"], "title": "Stories from Winnie-the-Pooh", "notes": {"type": "/type/text", "value": "Winnie the Pooh"}, "number_of_pages": 25, "isbn_13": ["9780416194647"], "isbn_10": ["0416194648"], "publish_date": "October 1, 1997", "oclc_numbers": ["37864525"], "works": [{"key": "/works/OL7988392W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:KQ-948-356"], "latest_revision": 12, "revision": 12, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-05T12:32:48.177470"}}
+/type/edition /books/OL10210281M 1 2008-04-30T09:38:13.731961 {"physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Heinemann Young Books"], "title": "Wtp Dealerfield Slim Calendar 200", "isbn_13": ["9780416198980"], "isbn_10": ["0416198988"], "publish_date": "August 1, 2000", "key": "/books/OL10210281M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10210505M 3 2011-04-26T04:19:24.979447 {"publishers": ["Methuen & Co."], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-26T04:19:24.979447"}, "title": "Arid Lands", "number_of_pages": 471, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780416286502"], "isbn_10": ["041628650X"], "publish_date": "1966", "key": "/books/OL10210505M", "authors": [{"key": "/authors/OL3397686A"}], "latest_revision": 3, "oclc_numbers": ["644622730"], "works": [{"key": "/works/OL9354442W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10210683M 6 2019-02-19T08:43:07.403756 {"publishers": ["Methuen young books"], "number_of_pages": 6, "source_records": ["marc:talis_openlibrary_contribution/talis-openlibrary-contribution.mrc:579656750:753"], "title": "Jack & Jill & Other Nursery", "type": {"key": "/type/edition"}, "identifiers": {"goodreads": ["5120467"]}, "last_modified": {"type": "/type/datetime", "value": "2019-02-19T08:43:07.403756"}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780416471106"], "isbn_10": ["0416471102"], "publish_date": "September 27, 1984", "key": "/books/OL10210683M", "authors": [{"key": "/authors/OL3397719A"}], "latest_revision": 6, "oclc_numbers": ["12458587"], "works": [{"key": "/works/OL9354495W"}], "physical_format": "Hardcover", "revision": 6}
+/type/edition /books/OL10210883M 6 2021-12-25T02:57:15.919969 {"publishers": ["Methuen"], "number_of_pages": 24, "physical_format": "Paperback", "key": "/books/OL10210883M", "authors": [{"key": "/authors/OL722960A"}], "contributions": ["Ann Schweninger (Illustrator)"], "isbn_13": ["9780416531909"], "classifications": {}, "title": "Morning, Rabbit, Morning", "notes": {"type": "/type/text", "value": "A Magnet Book"}, "identifiers": {}, "edition_name": "New Ed edition", "isbn_10": ["0416531903"], "publish_date": "November 14, 1985", "oclc_numbers": ["13425912"], "works": [{"key": "/works/OL3959091W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780416531909"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-25T02:57:15.919969"}}
+/type/edition /books/OL10211658M 2 2011-04-29T05:48:36.729284 {"publishers": ["Taylor & Francis Books Ltd"], "physical_format": "Paperback", "subtitle": "Painting, Decorating and Glazing", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T05:48:36.729284"}, "title": "Spon's Contractors' Handbook", "number_of_pages": 320, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780419185505"], "isbn_10": ["041918550X"], "publish_date": "September 1, 1995", "key": "/books/OL10211658M", "latest_revision": 2, "oclc_numbers": ["231999659"], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL1021166M 5 2023-01-06T17:29:57.703715 {"publishers": ["Avebury"], "number_of_pages": 126, "isbn_10": ["1859724876"], "subject_place": ["Great Britain."], "lc_classifications": ["RA410.55.G7 P48 1997", "IN PROCESS"], "key": "/books/OL1021166M", "authors": [{"key": "/authors/OL549303A"}], "publish_places": ["Aldershot, Hants, England", "Brookfield, Vt"], "pagination": "v, 126 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part25.utf8:123068376:726", "marc:marc_columbia/Columbia-extract-20221130-009.mrc:64961709:1519"], "title": "Economic evaluation and health promotion", "dewey_decimal_class": ["338.4/33621/0941"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 112-126)."}, "identifiers": {"goodreads": ["4643101"]}, "languages": [{"key": "/languages/eng"}], "lccn": ["96080385"], "subjects": ["Medical economics -- Great Britain.", "Health promotion -- Great Britain."], "publish_date": "1997", "publish_country": "enk", "by_statement": "Ceri Phillips.", "works": [{"key": "/works/OL3372694W"}], "type": {"key": "/type/edition"}, "oclc_numbers": ["37288477"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2023-01-06T17:29:57.703715"}}
+/type/edition /books/OL10212113M 5 2019-07-30T23:53:00.821246 {"publishers": ["Sweet & Maxwell Ltd"], "physical_format": "Paperback", "subtitle": "1st Supplement to 4th Edition (British Tax Library)", "last_modified": {"type": "/type/datetime", "value": "2019-07-30T23:53:00.821246"}, "title": "Whiteman on Capital Gains Tax", "identifiers": {"goodreads": ["3902841"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780421423800"], "isbn_10": ["0421423803"], "publish_date": "December 14, 1989", "key": "/books/OL10212113M", "authors": [{"key": "/authors/OL3337007A"}, {"key": "/authors/OL3263602A"}], "latest_revision": 5, "oclc_numbers": ["220995868"], "works": [{"key": "/works/OL9197825W"}], "type": {"key": "/type/edition"}, "subjects": ["English law: taxation law"], "revision": 5}
+/type/edition /books/OL10212142M 2 2009-12-15T00:44:36.371882 {"publishers": ["Sweet & Maxwell Ltd"], "title": "Ship Registration", "isbn_10": ["0421430303"], "isbn_13": ["9780421430303"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:44:36.371882"}, "publish_date": "January 31, 1993", "key": "/books/OL10212142M", "authors": [{"key": "/authors/OL3397933A"}], "latest_revision": 2, "subjects": ["Shipbuilding industry", "International law of transport & communications"], "works": [{"key": "/works/OL9354813W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10212731M 2 2009-12-15T00:44:38.107297 {"publishers": ["Sweet & Maxwell"], "title": "The Law Quarterly Review", "isbn_10": ["0421614501"], "isbn_13": ["9780421614505"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:44:38.107297"}, "publish_date": "June 18, 1998", "key": "/books/OL10212731M", "authors": [{"key": "/authors/OL3398348A"}], "latest_revision": 2, "subjects": ["English Law", "Law"], "works": [{"key": "/works/OL9355145W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10212821M 5 2022-12-10T03:37:52.392361 {"publishers": ["Sweet & Maxwell"], "key": "/books/OL10212821M", "title": "Cases and Materials on Intellectual Property", "number_of_pages": 700, "isbn_13": ["9780421638105"], "covers": [2415884], "edition_name": "3Rev Ed edition", "physical_format": "Paperback", "isbn_10": ["0421638109"], "publish_date": "September 16, 1999", "authors": [{"key": "/authors/OL3262631A"}], "works": [{"key": "/works/OL9196670W"}], "type": {"key": "/type/edition"}, "ocaid": "casesmaterialson0000corn", "lc_classifications": ["KD1269 .C66 1999"], "source_records": ["ia:casesmaterialson0000corn", "promise:bwb_daily_pallets_2020-07-30"], "local_id": ["urn:bwbsku:KN-833-958"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T03:37:52.392361"}}
+/type/edition /books/OL10212931M 4 2010-04-24T17:57:38.512932 {"publishers": ["Sweet & Maxwell Ltd"], "subtitle": "Volume 2 Supplement", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T17:57:38.512932"}, "title": "Employment Tribunal Practice and Procedure", "identifiers": {"goodreads": ["2325365"]}, "isbn_13": ["9780421694408"], "physical_format": "Paperback", "isbn_10": ["0421694408"], "publish_date": "November 11, 1999", "key": "/books/OL10212931M", "authors": [{"key": "/authors/OL3398425A"}], "latest_revision": 4, "works": [{"key": "/works/OL9355206W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL1021299M 7 2020-11-24T04:44:52.738937 {"publishers": ["De Agostini Editions", "Distributed by Stewart, Tabori & Chang"], "identifiers": {"librarything": ["1203412"], "goodreads": ["3100335"]}, "isbn_10": ["1899883460"], "covers": [4847630, 3864469], "lc_classifications": ["PZ7.R58445 Pe 1996"], "latest_revision": 7, "key": "/books/OL1021299M", "authors": [{"key": "/authors/OL242524A"}], "ocaid": "petespuddles0000roch", "publish_places": ["New York"], "contributions": ["Pratt, Pierre, ill."], "pagination": "[16] p. :", "source_records": ["ia:petespuddles0000roch", "marc:marc_loc_2016/BooksAll.2016.part25.utf8:123194421:778"], "title": "Pete's puddles", "dewey_decimal_class": ["[E]"], "notes": {"type": "/type/text", "value": "\"Ages 3 years and up\"--P. [4] of cover."}, "number_of_pages": 16, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["96083075"], "subjects": ["Rain and rainfall -- Fiction."], "publish_date": "1996", "publish_country": "nyu", "last_modified": {"type": "/type/datetime", "value": "2020-11-24T04:44:52.738937"}, "by_statement": "written by Hannah Roche ; illustrated by Pierre Pratt.", "oclc_numbers": ["34836644"], "works": [{"key": "/works/OL2012817W"}], "type": {"key": "/type/edition"}, "revision": 7}
+/type/edition /books/OL1021308M 5 2020-11-24T04:44:58.266703 {"publishers": ["APS Press, the American Phytopathological Society"], "identifiers": {"goodreads": ["3574268"], "librarything": ["1922360"]}, "isbn_10": ["0890542147"], "series": ["The Mycological Society of America mycologia memoir ;", "no. 20", "Mycologia memoir ;", "no. 20."], "lc_classifications": ["QK623.X9 J8 1996"], "latest_revision": 5, "key": "/books/OL1021308M", "authors": [{"key": "/authors/OL549362A"}], "publish_places": ["St. Paul, Minn"], "contributions": ["Rogers, Jack D."], "pagination": "xv, 365 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part25.utf8:123204132:874"], "title": "A revision of the genus Hypoxylon", "dewey_decimal_class": ["589.2/3"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 353-363)."}, "number_of_pages": 365, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["96083098"], "subjects": ["Hypoxylon -- Classification."], "publish_date": "1996", "publish_country": "mnu", "last_modified": {"type": "/type/datetime", "value": "2020-11-24T04:44:58.266703"}, "by_statement": "Yu-Ming Ju, Jack D. Rogers.", "oclc_numbers": ["34995627"], "works": [{"key": "/works/OL3372882W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10213140M 5 2019-07-30T23:54:04.496953 {"publishers": ["Sweet & Maxwell"], "number_of_pages": 624, "last_modified": {"type": "/type/datetime", "value": "2019-07-30T23:54:04.496953"}, "title": "Morgan and Steadman on Computer Contracts", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "type": {"key": "/type/edition"}, "identifiers": {"goodreads": ["1954550"]}, "edition_name": "6Rev Ed edition", "isbn_13": ["9780421742505"], "isbn_10": ["042174250X"], "publish_date": "December 28, 2000", "key": "/books/OL10213140M", "authors": [{"key": "/authors/OL1873402A"}, {"key": "/authors/OL282392A"}, {"key": "/authors/OL3398491A"}], "latest_revision": 5, "works": [{"key": "/works/OL12328911W"}], "physical_format": "Paperback", "subjects": ["English law: commercial law", "English law: computers & the law", "United Kingdom, Great Britain"], "revision": 5}
+/type/edition /books/OL10213232M 4 2011-04-29T17:44:20.795793 {"publishers": ["Sweet & Maxwell"], "number_of_pages": 1964, "last_modified": {"type": "/type/datetime", "value": "2011-04-29T17:44:20.795793"}, "title": "Clerk and Lindsell on Torts (Common Law Library)", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "identifiers": {"goodreads": ["5478588"]}, "isbn_13": ["9780421762602"], "edition_name": "18Rev Ed edition", "physical_format": "Paperback", "isbn_10": ["0421762608"], "publish_date": "November 29, 2001", "key": "/books/OL10213232M", "authors": [{"key": "/authors/OL3301773A"}, {"key": "/authors/OL2701380A"}, {"key": "/authors/OL2701381A"}], "latest_revision": 4, "oclc_numbers": ["228120686"], "type": {"key": "/type/edition"}, "subjects": ["English law: torts"], "revision": 4}
+/type/edition /books/OL10213379M 3 2010-04-24T17:58:08.271740 {"publishers": ["Sweet & Maxwell"], "physical_format": "Ring-bound", "key": "/books/OL10213379M", "title": "The PFI and Major Strategic Procurement in Local Government", "identifiers": {"goodreads": ["2850299"]}, "isbn_13": ["9780421794504"], "isbn_10": ["042179450X"], "publish_date": "October 28, 1997", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T17:58:08.271740"}, "authors": [{"key": "/authors/OL3275154A"}, {"key": "/authors/OL2645459A"}, {"key": "/authors/OL3398540A"}], "latest_revision": 3, "type": {"key": "/type/edition"}, "subjects": ["English law: local government law"], "revision": 3}
+/type/edition /books/OL10213660M 6 2020-12-15T02:18:33.638425 {"publishers": ["Sweet & Maxwell"], "languages": [{"key": "/languages/eng"}], "identifiers": {"librarything": ["7712135"], "goodreads": ["1542501"]}, "title": "Wilkinson's Road Traffic Offences", "type": {"key": "/type/edition"}, "number_of_pages": 2, "isbn_13": ["9780421898103"], "edition_name": "22Rev Ed edition", "physical_format": "Hardcover", "isbn_10": ["0421898100"], "publish_date": "January 2005", "key": "/books/OL10213660M", "oclc_numbers": ["60837865"], "contributions": ["Peter Wallis (Editor)", "Kevin McCormac (Editor)", "Kathryn Swift (Editor)", "Philip Brown (Editor)"], "subjects": ["Law"], "works": [{"key": "/works/OL24022325W"}], "lccn": ["2006404714"], "lc_classifications": ["KD2618 .W54 2005"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part33.utf8:257771076:1334"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-15T02:18:33.638425"}}
+/type/edition /books/OL10213952M 6 2022-12-09T23:36:57.372666 {"publishers": ["Methuen"], "title": "Making Most of Your Doctor Pb", "number_of_pages": 126, "isbn_13": ["9780423018400"], "physical_format": "Paperback", "isbn_10": ["042301840X"], "publish_date": "December 31, 1987", "key": "/books/OL10213952M", "authors": [{"key": "/authors/OL67947A"}], "oclc_numbers": ["14588397"], "works": [{"key": "/works/OL8854734W"}], "type": {"key": "/type/edition"}, "covers": [11675238], "ocaid": "makingmostofyour0000king", "lc_classifications": ["R729.5.G4"], "source_records": ["ia:makingmostofyour0000king", "promise:bwb_daily_pallets_2020-09-09"], "local_id": ["urn:bwbsku:KO-123-854"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T23:36:57.372666"}}
+/type/edition /books/OL10214040M 7 2022-12-09T21:43:51.549172 {"publishers": ["Berkley Pub. Co"], "number_of_pages": 143, "title": "It could happen to anyone", "identifiers": {"goodreads": ["3276620"], "librarything": ["2149489"]}, "isbn_13": ["9780425018125"], "edition_name": "Berkley Highland ed edition", "physical_format": "Mass Market Paperback", "isbn_10": ["0425018121"], "publish_date": "1970", "key": "/books/OL10214040M", "authors": [{"key": "/authors/OL2254565A"}], "works": [{"key": "/works/OL7451916W"}], "type": {"key": "/type/edition"}, "subjects": ["Fiction", "High school students"], "source_records": ["amazon:0425018121", "promise:bwb_daily_pallets_2020-10-08"], "local_id": ["urn:bwbsku:W6-AQS-205"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T21:43:51.549172"}}
+/type/edition /books/OL10214091M 8 2022-11-04T20:05:01.887972 {"publishers": ["Berkley"], "languages": [{"key": "/languages/eng"}], "title": "Come Back Charleston Blue", "identifiers": {"librarything": ["443925"], "goodreads": ["1402172"]}, "isbn_13": ["9780425022399"], "physical_format": "Paperback", "isbn_10": ["0425022390"], "publish_date": "1972", "key": "/books/OL10214091M", "authors": [{"key": "/authors/OL1141800A"}], "oclc_numbers": ["22205337"], "works": [{"key": "/works/OL8163204W"}], "type": {"key": "/type/edition"}, "source_records": ["amazon:0425022390"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-04T20:05:01.887972"}}
+/type/edition /books/OL10214200M 3 2010-04-24T17:58:08.271740 {"languages": [{"key": "/languages/eng"}], "key": "/books/OL10214200M", "title": "The Rite of Exorcism", "publishers": ["Berkley"], "identifiers": {"goodreads": ["5111971"]}, "isbn_13": ["9780425028483"], "edition_name": "1st edition", "physical_format": "Paperback", "isbn_10": ["0425028488"], "publish_date": "1975", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T17:58:08.271740"}, "latest_revision": 3, "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10214416M 3 2022-12-17T15:42:17.052404 {"publishers": ["Berkley"], "title": "Ec Story Of Attitude", "isbn_10": ["0425040011"], "isbn_13": ["9780425040010"], "physical_format": "Paperback", "publish_date": "June 15, 1978", "key": "/books/OL10214416M", "authors": [{"key": "/authors/OL1757831A"}], "subjects": ["General", "New Age / Parapsychology"], "works": [{"key": "/works/OL6560112W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780425040010"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T15:42:17.052404"}}
+/type/edition /books/OL1021466M 11 2020-11-24T04:46:44.325475 {"publishers": ["Abrams"], "number_of_pages": 175, "subtitle": "exploring the world beneath the sea", "isbn_10": ["0810928590"], "series": ["Discoveries", "Discoveries (New York, N.Y.)"], "covers": [8335526], "lc_classifications": ["CC77.U5 B5613 1996", "CC77.U5B5613 1996"], "latest_revision": 11, "key": "/books/OL1021466M", "authors": [{"key": "/authors/OL549436A"}], "ocaid": "underwaterarchae00blot", "publish_places": ["New York"], "pagination": "175 p. :", "source_records": ["ia:underwaterarchae00blot", "bwb:9780810928596", "marc:marc_loc_2016/BooksAll.2016.part25.utf8:123344103:902"], "title": "Underwater archaeology", "dewey_decimal_class": ["930.1/028/04"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 166).\nIncludes index."}, "identifiers": {"goodreads": ["2139986"], "librarything": ["144433"]}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["96083349"], "subjects": ["Underwater archaeology.", "Shipwrecks."], "publish_date": "1996", "publish_country": "nyu", "last_modified": {"type": "/type/datetime", "value": "2020-11-24T04:46:44.325475"}, "by_statement": "Jean-Yves Blot ; [translated from the French by Alexandra Campbell].", "oclc_numbers": ["35824348"], "works": [{"key": "/works/OL3373175W"}], "type": {"key": "/type/edition"}, "revision": 11}
+/type/edition /books/OL10214856M 4 2022-12-17T15:14:48.327923 {"publishers": ["Berkley"], "title": "Dream Power", "isbn_10": ["0425070042"], "isbn_13": ["9780425070048"], "physical_format": "Paperback", "publish_date": "October 15, 1983", "key": "/books/OL10214856M", "authors": [{"key": "/authors/OL2009699A"}], "subjects": ["Dreams", "Dreams - General", "New Age / Parapsychology"], "works": [{"key": "/works/OL7097808W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:p7-buf-011"], "source_records": ["promise:bwb_daily_pallets_2022-03-17", "bwb:9780425070048"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T15:14:48.327923"}}
+/type/edition /books/OL10214950M 5 2022-12-17T14:38:42.812581 {"publishers": ["Berkley"], "physical_format": "Paperback", "title": "Prince Of The City", "identifiers": {"librarything": ["1632385"]}, "isbn_13": ["9780425075760"], "isbn_10": ["0425075761"], "publish_date": "May 15, 1984", "key": "/books/OL10214950M", "authors": [{"key": "/authors/OL2645651A"}], "oclc_numbers": ["13956920"], "works": [{"key": "/works/OL7924253W"}], "type": {"key": "/type/edition"}, "subjects": ["Other Miscellaneous Crimes", "Political Freedom & Security - Law Enforcement", "Specific Groups - General", "Biography / Autobiography"], "source_records": ["bwb:9780425075760"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T14:38:42.812581"}}
+/type/edition /books/OL1021583M 7 2020-11-24T04:48:10.242838 {"publishers": ["Ediciones Huraca\u0301n"], "covers": [3864714], "lc_classifications": ["PZ74.3 .L3 1996"], "latest_revision": 7, "key": "/books/OL1021583M", "authors": [{"key": "/authors/OL549478A"}], "publish_places": ["Ri\u0301o Piedras, P.R"], "contributions": ["Oliver, Myrna."], "pagination": "1 v. (unpaged) :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part25.utf8:123449857:559"], "title": "El flamboya\u0301n amarillo", "lccn": ["96083568"], "identifiers": {"librarything": ["1582917"], "goodreads": ["6900705"]}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/spa"}], "isbn_10": ["0929157338"], "publish_date": "1996", "publish_country": "pr ", "last_modified": {"type": "/type/datetime", "value": "2020-11-24T04:48:10.242838"}, "by_statement": "Georgina La\u0301zaro Leo\u0301n ; ilustraciones de Myrna Oliver.", "oclc_numbers": ["35905530"], "works": [{"key": "/works/OL3373295W"}], "type": {"key": "/type/edition"}, "revision": 7}
+/type/edition /books/OL10216232M 5 2022-05-02T12:13:12.327718 {"publishers": ["Berkley"], "weight": "1.8 pounds", "title": "Tom Clancy's Op Center Boxed Set 3 Vol.; Tom Clancy's Op Center, Mirror Image, Games of the State", "identifiers": {"goodreads": ["262877"]}, "isbn_13": ["9780425162101"], "physical_format": "Unknown Binding", "isbn_10": ["0425162109"], "publish_date": "November 1, 1997", "key": "/books/OL10216232M", "authors": [{"key": "/authors/OL2702055A"}, {"key": "/authors/OL225270A"}], "type": {"key": "/type/edition"}, "subjects": ["Espionage/Intrigue", "Fiction - Espionage / Thriller"], "physical_dimensions": "7.1 x 4.3 x 3.6 inches", "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-02T12:13:12.327718"}}
+/type/edition /books/OL10216339M 7 2022-12-17T16:05:21.928694 {"publishers": ["Berkley Trade"], "subtitle": "Gemini (Super Horoscopes)", "weight": "6.9 ounces", "covers": [2416077], "physical_format": "Paperback", "key": "/books/OL10216339M", "authors": [{"key": "/authors/OL2701845A"}], "subjects": ["Astrology - Horoscopes", "Body, Mind & Spirit / General", "Astrology - General", "Body, Mind & Spirit", "New Age / Body, Mind & Spirit", "New Age"], "languages": [{"key": "/languages/eng"}], "title": "Super Horoscopes 2003", "number_of_pages": 256, "isbn_13": ["9780425184820"], "isbn_10": ["042518482X"], "publish_date": "July 2, 2002", "oclc_numbers": ["63071540"], "works": [{"key": "/works/OL8109079W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.3 x 5.3 x 0.7 inches", "ocaid": "superhoroscopege0000unse_a9k2", "source_records": ["ia:superhoroscopege0000unse_a9k2", "promise:bwb_daily_pallets_2021-06-03", "bwb:9780425184820"], "local_id": ["urn:bwbsku:P7-BEY-546"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T16:05:21.928694"}}
+/type/edition /books/OL10216434M 15 2022-12-10T06:01:12.602185 {"publishers": ["Berkley"], "number_of_pages": 336, "ia_box_id": ["ia128304"], "weight": "5.6 ounces", "isbn_10": ["0425218694"], "covers": [6727660, 2416145], "local_id": ["urn:sfpl:31223080419485", "urn:sfpl:31223080419519", "urn:bwbsku:P6-BJT-955"], "physical_format": "Paperback", "lc_classifications": ["CPB Box no. 3130 vol. 2"], "key": "/books/OL10216434M", "authors": [{"key": "/authors/OL3124313A"}], "ocaid": "stateofonion00hyzy", "isbn_13": ["9780425218693"], "source_records": ["amazon:0425218694", "ia:stateofonion00hyzy", "ia:stateonionwhiteh00hyzy", "marc:marc_openlibraries_sanfranciscopubliclibrary/sfpl_chq_2018_12_24_run03.mrc:241358816:2152", "marc:marc_loc_2016/BooksAll.2016.part38.utf8:132970510:1407", "bwb:9780425218693", "promise:bwb_daily_pallets_2020-07-07"], "title": "State of the Onion (Berkley Prime Crime Mysteries)", "lccn": ["2010668136"], "identifiers": {"librarything": ["4416118"], "goodreads": ["2261571"]}, "languages": [{"key": "/languages/eng"}], "subjects": ["Fiction", "Fiction - Mystery/ Detective", "Mystery/Suspense", "Mystery & Detective - Women Sleuths", "Fiction / Mystery & Detective / Women Sleuths"], "publish_date": "January 2, 2008", "oclc_numbers": ["176917687"], "works": [{"key": "/works/OL8990570W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "6.6 x 3.9 x 1.2 inches", "latest_revision": 15, "revision": 15, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T06:01:12.602185"}}
+/type/edition /books/OL10216629M 1 2008-04-30T09:38:13.731961 {"physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Heinemann Educational Books - Library Division"], "title": "My World (Level 1 Library Saver Pack) (My World)", "isbn_13": ["9780431000589"], "isbn_10": ["0431000581"], "publish_date": "March 21, 1992", "key": "/books/OL10216629M", "type": {"key": "/type/edition"}, "subjects": ["Animals"], "revision": 1}
+/type/edition /books/OL10216899M 3 2010-04-24T17:58:08.271740 {"publishers": ["Heinemann Educational Books - Library Division"], "physical_format": "Hardcover", "subtitle": "Pack 1 (Green World)", "key": "/books/OL10216899M", "title": "Green World", "identifiers": {"goodreads": ["2749565"]}, "isbn_13": ["9780431008523"], "isbn_10": ["0431008523"], "publish_date": "April 1, 1991", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T17:58:08.271740"}, "authors": [{"key": "/authors/OL218597A"}, {"key": "/authors/OL51949A"}], "latest_revision": 3, "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10217249M 4 2022-12-10T07:45:40.238256 {"publishers": ["Heinemann Educational Books - Library Division"], "key": "/books/OL10217249M", "title": "Take-off! What Are Islands? (Take-off!: What Are?)", "number_of_pages": 32, "isbn_13": ["9780431024462"], "covers": [2416313], "physical_format": "Paperback", "isbn_10": ["0431024464"], "publish_date": "February 26, 2001", "authors": [{"key": "/authors/OL396825A"}, {"key": "/authors/OL237138A"}], "type": {"key": "/type/edition"}, "works": [{"key": "/works/OL24860345W"}], "ocaid": "whatareislands0000owen", "source_records": ["ia:whatareislands0000owen", "promise:bwb_daily_pallets_2020-06-24"], "local_id": ["urn:bwbsku:KN-850-997"], "identifiers": {"amazon": [""]}, "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T07:45:40.238256"}}
+/type/edition /books/OL10217389M 1 2008-04-30T09:38:13.731961 {"physical_format": "Unknown Binding", "subtitle": "1996 Competition Winners Pack", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Heinemann Educational Books - Library Division"], "title": "Get Published", "isbn_13": ["9780431034249"], "isbn_10": ["0431034249"], "publish_date": "September 18, 1997", "key": "/books/OL10217389M", "type": {"key": "/type/edition"}, "subjects": ["English literature: fiction texts", "Fiction"], "revision": 1}
+/type/edition /books/OL10217429M 6 2022-12-10T03:20:41.243023 {"publishers": ["Heinemann Library"], "title": "Rich and Poor (What's at Issue?)", "number_of_pages": 48, "isbn_13": ["9780431035642"], "covers": [2416374], "edition_name": "New Ed edition", "physical_format": "Paperback", "isbn_10": ["0431035644"], "publish_date": "April 25, 2002", "key": "/books/OL10217429M", "authors": [{"key": "/authors/OL2702425A"}], "oclc_numbers": ["48754311"], "works": [{"key": "/works/OL8111570W"}], "type": {"key": "/type/edition"}, "subjects": ["Economics", "Poverty & unemployment", "Social groups & lifestyles", "For National Curriculum Key Stage 2", "For National Curriculum Key Stage 3"], "ocaid": "richorpoor0000wall_y0g0", "source_records": ["ia:richorpoor0000wall_y0g0", "promise:bwb_daily_pallets_2020-07-30"], "local_id": ["urn:bwbsku:KN-731-926"], "identifiers": {"amazon": [""]}, "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T03:20:41.243023"}}
+/type/edition /books/OL10217433M 6 2022-12-10T00:24:50.734885 {"identifiers": {"librarything": ["3236312"]}, "title": "Multicultural Britain (What's at Issue?)", "authors": [{"key": "/authors/OL2954748A"}], "publish_date": "April 25, 2002", "publishers": ["Heinemann Library"], "weight": "6.4 ounces", "covers": [2416377], "physical_format": "Paperback", "subjects": ["Multiculturalism", "For National Curriculum Key Stage 2", "For National Curriculum Key Stage 3", "Children: Young Adult (Gr. 7-9)"], "isbn_13": ["9780431035680"], "edition_name": "New Ed edition", "isbn_10": ["0431035687"], "type": {"key": "/type/edition"}, "physical_dimensions": "10.2 x 7.5 x 0.2 inches", "ocaid": "multiculturalbri0000wign_w3u9", "source_records": ["ia:multiculturalbri0000wign_w3u9", "promise:bwb_daily_pallets_2020-09-09"], "key": "/books/OL10217433M", "number_of_pages": 48, "works": [{"key": "/works/OL8716064W"}], "local_id": ["urn:bwbsku:KN-792-230"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T00:24:50.734885"}}
+/type/edition /books/OL10217488M 3 2022-12-10T03:22:07.232368 {"isbn_13": ["9780431037837"], "physical_format": "Paperback", "publishers": ["Heinemann Library"], "number_of_pages": 32, "edition_name": "New Ed edition", "isbn_10": ["0431037833"], "publish_date": "February 28, 2000", "key": "/books/OL10217488M", "authors": [{"key": "/authors/OL396825A"}, {"key": "/authors/OL237138A"}], "title": "Snow (Take-off!: What Is Weather?)", "type": {"key": "/type/edition"}, "subjects": ["English language readers", "Special needs & learning difficulties", "Weather", "For National Curriculum Key Stage 2"], "works": [{"key": "/works/OL24851560W"}], "covers": [11715455], "ocaid": "snow0000owen", "source_records": ["ia:snow0000owen", "promise:bwb_daily_pallets_2020-07-30"], "local_id": ["urn:bwbsku:KN-731-725"], "identifiers": {"amazon": [""]}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T03:22:07.232368"}}
+/type/edition /books/OL10217796M 3 2010-08-16T21:22:55.280300 {"publishers": ["Heinemann Educational Books - Library Division"], "identifiers": {"librarything": ["6660117"]}, "subtitle": "Fall of the Titans (Dinosaur Worlds)", "last_modified": {"type": "/type/datetime", "value": "2010-08-16T21:22:55.280300"}, "title": "Dinosaur Worlds", "physical_format": "Hardcover", "number_of_pages": 48, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780431056616"], "isbn_10": ["0431056617"], "publish_date": "October 8, 1996", "key": "/books/OL10217796M", "authors": [{"key": "/authors/OL228786A"}], "latest_revision": 3, "works": [{"key": "/works/OL1909948W"}], "type": {"key": "/type/edition"}, "subjects": ["Dinosaurs & the prehistoric world"], "revision": 3}
+/type/edition /books/OL10217876M 4 2020-08-13T04:18:20.002620 {"publishers": ["Heinemann Educational Books - Primary Division"], "covers": [10345983], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2020-08-13T04:18:20.002620"}, "latest_revision": 4, "key": "/books/OL10217876M", "authors": [{"key": "/authors/OL447964A"}], "ocaid": "heinemannourworl0000whit", "subjects": ["British & Irish history: c 500 CE to c 1000", "Monarchs & royalty", "Warfare & defence", "World history", "For National Curriculum Key Stage 2"], "edition_name": "New Ed edition", "source_records": ["ia:heinemannourworl0000whit"], "title": "Kings, Chiefs and Warriors (Romans, Saxons, Vikings)", "number_of_pages": 32, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780431059716"], "isbn_10": ["0431059713"], "publish_date": "March 15, 1997", "oclc_numbers": ["59627111"], "works": [{"key": "/works/OL2937989W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10217916M 3 2022-11-17T23:58:56.541753 {"publishers": ["Heinemann Educational Books - Library Division"], "subtitle": "Pack", "isbn_10": ["0431060223"], "number_of_pages": 32, "isbn_13": ["9780431060224"], "physical_format": "Hardcover", "publish_date": "January 25, 1996", "key": "/books/OL10217916M", "authors": [{"key": "/authors/OL182918A"}], "title": "\"Tarzanna\" and Other Stories", "works": [{"key": "/works/OL1640765W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780431060224"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T23:58:56.541753"}}
+/type/edition /books/OL10218396M 6 2022-12-08T17:59:19.484058 {"publishers": ["Heinemann Educational Books - Library Division"], "identifiers": {"librarything": ["8042305"]}, "subtitle": "Environments (Elements of Geography)", "title": "Elements of Geography", "physical_format": "Hardcover", "number_of_pages": 32, "isbn_13": ["9780431072326"], "isbn_10": ["0431072329"], "publish_date": "July 16, 1993", "key": "/books/OL10218396M", "authors": [{"key": "/authors/OL1152568A"}], "oclc_numbers": ["30111779"], "works": [{"key": "/works/OL5177307W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:KP-547-991"], "source_records": ["promise:bwb_daily_pallets_2021-03-24"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-08T17:59:19.484058"}}
+/type/edition /books/OL10219181M 6 2011-04-29T12:35:51.999714 {"publishers": ["Heinemann Educational Books - Library Division"], "identifiers": {"librarything": ["8544740"], "goodreads": ["6864442"]}, "subtitle": "Alexander Graham Bell (Groundbreakers)", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T12:35:51.999714"}, "title": "Groundbreakers", "physical_format": "Hardcover", "number_of_pages": 48, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780431104461"], "isbn_10": ["0431104468"], "publish_date": "September 29, 2000", "key": "/books/OL10219181M", "authors": [{"key": "/authors/OL403846A"}], "latest_revision": 6, "oclc_numbers": ["43785638"], "works": [{"key": "/works/OL2752414W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL10219375M 5 2022-12-09T14:22:53.038664 {"publishers": ["Heinemann Library"], "physical_format": "Hardcover", "key": "/books/OL10219375M", "weight": "12.6 ounces", "title": "Contemporary Art (Artists in Profile)", "number_of_pages": 64, "covers": [2416898], "isbn_13": ["9780431116532"], "isbn_10": ["0431116539"], "publish_date": "September 26, 2002", "authors": [{"key": "/authors/OL273651A"}], "works": [{"key": "/works/OL2167118W"}], "type": {"key": "/type/edition"}, "subjects": ["Art from c 1900-, \"modern art\"", "For National Curriculum Key Stage 3"], "physical_dimensions": "9.2 x 6.5 x 0.5 inches", "ocaid": "contemporaryarti0000barn", "lc_classifications": ["N6489 .B37 2002"], "source_records": ["ia:contemporaryarti0000barn", "promise:bwb_daily_pallets_2020-11-19"], "local_id": ["urn:bwbsku:KO-313-523"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T14:22:53.038664"}}
+/type/edition /books/OL10219507M 3 2010-08-15T02:30:35.735756 {"publishers": ["Heinemann Educational Books - Library Division"], "subtitle": "Bread / Milk / Eggs / Pasta (Food)", "last_modified": {"type": "/type/datetime", "value": "2010-08-15T02:30:35.735756"}, "title": "Food: Pack A of 4", "number_of_pages": 32, "isbn_13": ["9780431127040"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Hardcover", "isbn_10": ["0431127042"], "publish_date": "August 14, 2001", "key": "/books/OL10219507M", "authors": [{"key": "/authors/OL1394428A"}], "latest_revision": 3, "works": [{"key": "/works/OL5735679W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10219958M 5 2022-12-10T07:14:22.775392 {"publishers": ["Heinemann Library"], "number_of_pages": 32, "covers": [2417295], "physical_format": "Paperback", "key": "/books/OL10219958M", "authors": [{"key": "/authors/OL43360A"}], "ocaid": "20thcenturymedia0000park_w8t7", "subjects": ["Media studies", "Performing arts", "Social history", "Inter-war period, 1918-1939", "For National Curriculum Key Stage 2", "For National Curriculum Key Stage 3", "For P4-P6 (Scottish)", "For P7-S2 (Scottish)"], "edition_name": "New Ed edition", "source_records": ["ia:20thcenturymedia0000park_w8t7", "promise:bwb_daily_pallets_2020-06-24"], "title": "1920s and 30s Entertainment for the People (20th Century Media)", "identifiers": {"librarything": ["8234517"], "amazon": [""]}, "isbn_13": ["9780431152660"], "isbn_10": ["0431152667"], "publish_date": "January 24, 2003", "works": [{"key": "/works/OL22125264W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:KN-967-157"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T07:14:22.775392"}}
+/type/edition /books/OL10220253M 4 2021-08-14T17:24:38.657972 {"publishers": ["Heinemann Library"], "identifiers": {}, "weight": "11.4 ounces", "series": ["All About Continents"], "physical_format": "Paperback", "key": "/books/OL10220253M", "authors": [{"key": "/authors/OL737075A"}], "subjects": ["Geographical information systems (GIS) & remote sensing", "For National Curriculum Key Stage 2", "Education"], "classifications": {}, "title": "Europe, Asia and Africa", "number_of_pages": 32, "isbn_13": ["9780431181622"], "isbn_10": ["0431181624"], "publish_date": "December 6, 2004", "works": [{"key": "/works/OL4001765W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.5 x 7.6 x 0.3 inches", "covers": [11628737], "ocaid": "europeasiaafrica0000mccl", "source_records": ["ia:europeasiaafrica0000mccl"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-08-14T17:24:38.657972"}}
+/type/edition /books/OL10220259M 7 2022-12-09T08:17:30.169647 {"title": "Life in a Herd of Elephants (Animal Groups)", "authors": [{"key": "/authors/OL1394428A"}], "publish_date": "May 30, 2005", "publishers": ["Heinemann Library"], "weight": "4.2 ounces", "covers": [2417504], "physical_format": "Paperback", "contributions": ["Heinemann (Editor)"], "subjects": ["Biology, life sciences", "Juvenile Nonfiction", "Children: Grades 1-2", "Children: Grades 3-4", "For National Curriculum Key Stage 2", "For P4-P6 (Scottish)", "Animals - General", "Elephants", "Herding behavior in animals", "Juvenile literature"], "edition_name": "Ill edition", "languages": [{"key": "/languages/eng"}], "isbn_13": ["9780431182742"], "isbn_10": ["0431182744"], "oclc_numbers": ["57007174"], "type": {"key": "/type/edition"}, "physical_dimensions": "9.1 x 7.2 x 0.2 inches", "ocaid": "lifeinherdelepha0000spil_z4g0", "source_records": ["ia:lifeinherdelepha0000spil_z4g0", "promise:bwb_daily_pallets_2020-12-14"], "key": "/books/OL10220259M", "number_of_pages": 32, "works": [{"key": "/works/OL5735702W"}], "local_id": ["urn:bwbsku:KP-017-070"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T08:17:30.169647"}}
+/type/edition /books/OL10220506M 3 2019-07-30T23:57:35.167161 {"publishers": ["Rigby Educational Publishers"], "physical_format": "Paperback", "subtitle": "Year 1 Blue Guided Reader - Hairy Harry (National Geographic Windows on Literacy)", "last_modified": {"type": "/type/datetime", "value": "2019-07-30T23:57:35.167161"}, "title": "National Geographic Windows on Literacy", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780433008279"], "isbn_10": ["043300827X"], "publish_date": "February 25, 2003", "key": "/books/OL10220506M", "latest_revision": 3, "oclc_numbers": ["621858021"], "works": [{"key": "/works/OL9554967W"}], "type": {"key": "/type/edition"}, "subjects": ["English language readers", "English language reading schemes"], "revision": 3}
+/type/edition /books/OL10220743M 4 2010-04-24T17:58:08.271740 {"publishers": ["Clearway Logistics Phase 1b"], "title": "What Am I?", "isbn_10": ["0433037334"], "identifiers": {"goodreads": ["4874884"]}, "isbn_13": ["9780433037330"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T17:58:08.271740"}, "latest_revision": 4, "key": "/books/OL10220743M", "authors": [{"key": "/authors/OL2702462A"}], "works": [{"key": "/works/OL8111982W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10220747M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "subtitle": "Reception - Monster Pet (Red Giant)", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Rigby Educational Publishers"], "title": "Red Giant", "isbn_13": ["9780433040835"], "isbn_10": ["0433040831"], "publish_date": "August 20, 2001", "key": "/books/OL10220747M", "type": {"key": "/type/edition"}, "subjects": ["For National Curriculum Key Stage 1", "English language reading schemes"], "revision": 1}
+/type/edition /books/OL10221163M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "subtitle": "Guided Reading Pack (Rigby Star)", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Heinemann Educational Books - Primary Division"], "title": "Rigby Star Lilac", "isbn_13": ["9780433048725"], "isbn_10": ["0433048727"], "publish_date": "January 23, 2002", "key": "/books/OL10221163M", "type": {"key": "/type/edition"}, "subjects": ["English language reading schemes", "For National Curriculum Key Stage 1"], "revision": 1}
+/type/edition /books/OL10221177M 2 2011-04-27T00:38:29.777490 {"publishers": ["Rigby Educational Publishers"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T00:38:29.777490"}, "title": "Have You Got Everything Colin? (Rigby Star)", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780433049319"], "isbn_10": ["0433049316"], "publish_date": "May 14, 2007", "key": "/books/OL10221177M", "latest_revision": 2, "oclc_numbers": ["244767969"], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10221522M 7 2021-08-21T04:58:21.827026 {"publishers": ["Rigby Educational Publishers"], "number_of_pages": 98, "physical_format": "Paperback", "key": "/books/OL10221522M", "authors": [{"key": "/authors/OL1709148A"}], "subjects": ["English language reading schemes", "Designed / suitable for National Curriculum"], "classifications": {}, "title": "Drugs in Cerebral Palsy", "notes": {"type": "/type/text", "value": "Clinics in Development Medicine"}, "identifiers": {"goodreads": ["4366048"]}, "isbn_13": ["9780433073505"], "isbn_10": ["0433073500"], "publish_date": "November 13, 2001", "oclc_numbers": ["236408897"], "works": [{"key": "/works/OL6445308W"}], "type": {"key": "/type/edition"}, "covers": [11736797], "ocaid": "usingriver0000llew", "source_records": ["ia:usingriver0000llew"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-08-21T04:58:21.827026"}}
+/type/edition /books/OL10221577M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780433074366"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Rigby Educational Publishers"], "title": "Shopping (Rigby Star)", "edition_name": "Framework Ed edition", "isbn_10": ["0433074361"], "publish_date": "April 27, 2007", "key": "/books/OL10221577M", "authors": [{"key": "/authors/OL2623954A"}], "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10222050M 4 2021-05-14T03:26:36.853057 {"publishers": ["William Heinemann Ltd"], "physical_format": "Hardcover", "source_records": ["amazon:0434221848", "ia:membersonly0000edmo"], "number_of_pages": 192, "covers": [5044342], "isbn_13": ["9780434221844"], "isbn_10": ["0434221848"], "publish_date": "April 10, 1989", "key": "/books/OL10222050M", "authors": [{"key": "/authors/OL2622841A"}], "title": "Members Only", "works": [{"key": "/works/OL261248W"}], "type": {"key": "/type/edition"}, "subjects": ["POLITICS & GOVERNMENT", "United Kingdom, Great Britain"], "ocaid": "membersonly0000edmo", "lc_classifications": ["JN231"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-05-14T03:26:36.853057"}}
+/type/edition /books/OL10222377M 3 2011-04-30T12:29:39.402848 {"publishers": ["Egmont Childrens Books"], "subtitle": "Postman Pat Jigsaw Story Book", "last_modified": {"type": "/type/datetime", "value": "2011-04-30T12:29:39.402848"}, "title": "What's in the Parcel?", "number_of_pages": 10, "isbn_13": ["9780434806362"], "covers": [2417651], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Board book", "isbn_10": ["0434806366"], "publish_date": "April 5, 2001", "key": "/books/OL10222377M", "latest_revision": 3, "oclc_numbers": ["45337722"], "type": {"key": "/type/edition"}, "subjects": ["Young Children's, Early Learning & Special Book Types"], "revision": 3}
+/type/edition /books/OL10222477M 1 2008-04-30T09:38:13.731961 {"physical_format": "Board book", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Heinemann Young Books"], "number_of_pages": 6, "isbn_13": ["9780434808342"], "isbn_10": ["0434808342"], "publish_date": "March 1, 2002", "key": "/books/OL10222477M", "title": "My First Thomas Play Shapes (My First Play Shapes)", "type": {"key": "/type/edition"}, "subjects": ["Character books", "Shapes & patterns"], "revision": 1}
+/type/edition /books/OL10222654M 3 2021-12-25T01:20:30.731915 {"publishers": ["Heinemann Young Books"], "key": "/books/OL10222654M", "title": "Barbette Cole Poster", "isbn_13": ["9780434899609"], "physical_format": "Hardcover", "isbn_10": ["0434899607"], "publish_date": "December 31, 1993", "authors": [{"key": "/authors/OL3288290A"}], "works": [{"key": "/works/OL9228021W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780434899609"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-25T01:20:30.731915"}}
+/type/edition /books/OL1022270M 5 2022-12-04T14:20:49.915654 {"publishers": ["Avebury"], "subtitle": "a comprehensive approach to foreign entry mode choice", "isbn_10": ["1859723837"], "lc_classifications": ["HF1429 .B45 1996"], "key": "/books/OL1022270M", "authors": [{"key": "/authors/OL549806A"}], "publish_places": ["Aldershot, Hants, England", "Brookfield, Vt"], "pagination": "xi, 179 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part25.utf8:124051400:789", "ia:singleorjointven0000bell", "promise:bwb_daily_pallets_2022-08-30"], "title": "Single or joint venturing?", "lccn": ["96084694"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 159-179)."}, "number_of_pages": 179, "languages": [{"key": "/languages/eng"}], "subjects": ["Foreign licensing agreements.", "Joint ventures.", "International trade.", "International business enterprises -- Management."], "publish_date": "1996", "publish_country": "vtu", "by_statement": "John Bell.", "works": [{"key": "/works/OL3374353W"}], "type": {"key": "/type/edition"}, "covers": [13015941], "ocaid": "singleorjointven0000bell", "local_id": ["urn:bwbsku:W7-BTY-158"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T14:20:49.915654"}}
+/type/edition /books/OL10222734M 2 2009-12-15T00:44:44.335603 {"publishers": ["Butterworth-Heinemann Ltd"], "key": "/books/OL10222734M", "title": "Kitchen Plan & Man (75060011x)", "isbn_13": ["9780434906048"], "physical_format": "Paperback", "isbn_10": ["0434906042"], "publish_date": "October 22, 1990", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:44:44.335603"}, "authors": [{"key": "/authors/OL3399311A"}], "latest_revision": 2, "works": [{"key": "/works/OL9356395W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10223202M 4 2011-04-27T12:57:16.935172 {"publishers": ["Heinemann Young Books"], "identifiers": {"goodreads": ["4418495"]}, "subtitle": "High Winds", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T12:57:16.935172"}, "title": "Tugs", "type": {"key": "/type/edition"}, "number_of_pages": 32, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780434949595"], "isbn_10": ["0434949590"], "publish_date": "April 1989", "key": "/books/OL10223202M", "authors": [{"key": "/authors/OL3399398A"}, {"key": "/authors/OL3399399A"}], "latest_revision": 4, "oclc_numbers": ["20169670"], "physical_format": "Hardcover", "revision": 4}
+/type/edition /books/OL10223207M 4 2022-06-12T15:49:17.709272 {"publishers": ["Methuen young books"], "physical_format": "Hardcover", "title": "Tortoiseshell", "number_of_pages": 32, "isbn_13": ["9780434949809"], "isbn_10": ["0434949809"], "publish_date": "June 11, 1984", "key": "/books/OL10223207M", "authors": [{"key": "/authors/OL1484025A"}], "oclc_numbers": ["12458974"], "works": [{"key": "/works/OL5973380W"}], "type": {"key": "/type/edition"}, "covers": [12786176], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-12T15:49:17.709272"}}
+/type/edition /books/OL1022333M 7 2022-02-26T17:53:02.928094 {"publishers": ["Chapman & Hall"], "number_of_pages": 322, "isbn_10": ["0412371006"], "covers": [1200874], "lc_classifications": ["GB1205 .F54 1996", "TD193-193.5"], "key": "/books/OL1022333M", "publish_places": ["London", "New York"], "contributions": ["Petts, Geoffrey E.", "Amoros, C."], "languages": [{"key": "/languages/eng"}], "pagination": "xii, 322 p. :", "source_records": ["marc:marc_records_scriblio_net/part25.dat:217777877:775", "marc:marc_loc_updates/v36.i11.records.utf8:3602387:977", "marc:marc_loc_2016/BooksAll.2016.part25.utf8:124103145:977", "bwb:9780412371004"], "title": "Fluvial hydrosystems", "dewey_decimal_class": ["551.48/3"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. [279]-306) and index."}, "identifiers": {"goodreads": ["4647078"]}, "edition_name": "1st ed.", "lccn": ["96084806"], "subjects": ["Rivers", "Stream ecology"], "publish_date": "1996", "publish_country": "enk", "by_statement": "edited by G.E. Petts and C. Amoros.", "oclc_numbers": ["35731425"], "works": [{"key": "/works/OL18326132W"}], "type": {"key": "/type/edition"}, "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-26T17:53:02.928094"}}
+/type/edition /books/OL10223400M 1 2008-04-30T09:38:13.731961 {"physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Heinemann Young Books"], "title": "Fireman SAM Stickers", "isbn_13": ["9780434963195"], "isbn_10": ["0434963194"], "publish_date": "December 31, 1993", "key": "/books/OL10223400M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10223401M 1 2008-04-30T09:38:13.731961 {"physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Heinemann Young Books"], "title": "Parragon Fireman Sam", "isbn_13": ["9780434963249"], "isbn_10": ["0434963240"], "publish_date": "May 31, 1992", "key": "/books/OL10223401M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10224010M 2 2010-03-15T05:52:07.915188 {"publishers": ["Heinemann Educational Books - Library Division"], "subtitle": "Set 10 (Banana Books)", "title": "Banana Books", "isbn_10": ["0435001094"], "number_of_pages": 42, "isbn_13": ["9780435001094"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-03-15T05:52:07.915188"}, "publish_date": "May 4, 1993", "key": "/books/OL10224010M", "authors": [{"key": "/authors/OL242067A"}, {"key": "/authors/OL2621744A"}], "latest_revision": 2, "works": [{"key": "/works/OL14947993W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10224372M 3 2011-06-08T11:34:07.945873 {"publishers": ["Heinemann Educational Books - Primary Division"], "last_modified": {"type": "/type/datetime", "value": "2011-06-08T11:34:07.945873"}, "title": "Sunshine Emergent Big Books: the Wicked Pirates (Literacy Edition: Sunshine)", "identifiers": {"librarything": ["7521465"]}, "isbn_13": ["9780435013240"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0435013246"], "publish_date": "August 11, 1998", "key": "/books/OL10224372M", "latest_revision": 3, "oclc_numbers": ["643582918"], "type": {"key": "/type/edition"}, "subjects": ["Designed / suitable for National Curriculum", "English language reading schemes"], "revision": 3}
+/type/edition /books/OL10224444M 2 2010-04-13T05:18:12.526393 {"publishers": ["Heinemann Educational Secondary Division"], "subtitle": "Impact 3 Green (Impact Maths)", "title": "Impact Maths", "isbn_10": ["0435017748"], "isbn_13": ["9780435017743"], "covers": [2417777], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:18:12.526393"}, "publish_date": "February 27, 2002", "key": "/books/OL10224444M", "latest_revision": 2, "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL1022458M 2 2020-11-24T05:48:01.800148 {"publishers": ["Pacific Rocket Society and Crescent Engineering & Research Co."], "subtitle": "one of the rocket pioneers : an introductory outline of the contributions to world astronautics and to the American Space Program made by Edmund Vail Sawyer from 1938-1960.", "subject_place": ["United States"], "lc_classifications": ["TL781.8.U5 T69 1996"], "latest_revision": 2, "key": "/books/OL1022458M", "publish_places": ["Napa, Calif"], "contributions": ["Pacific Rocket Society.", "Crescent Engineering & Research Company."], "languages": [{"key": "/languages/eng"}], "pagination": "viii, 283 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part25.utf8:124216457:1048"], "title": "Toward the exploration of space", "dewey_decimal_class": ["621.43/56/0973"], "notes": {"type": "/type/text", "value": "\"These brief reports are documented by the records of the Pacific Rocket Society and Crescent Engineering & Research Company Historical Library.\""}, "number_of_pages": 283, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "edition_name": "2nd ed.", "lccn": ["96085030"], "subjects": ["Sawyer, Edmund Vail.", "Rocketry -- United States -- History."], "publish_date": "1996", "publish_country": "cau", "last_modified": {"type": "/type/datetime", "value": "2020-11-24T05:48:01.800148"}, "works": [{"key": "/works/OL23613869W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10224754M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Heinemann Educational Books - Primary Division"], "number_of_pages": 112, "isbn_13": ["9780435025328"], "isbn_10": ["0435025325"], "publish_date": "September 15, 1999", "key": "/books/OL10224754M", "authors": [{"key": "/authors/OL2780774A"}, {"key": "/authors/OL3399506A"}, {"key": "/authors/OL3399507A"}], "title": "Maths Plus", "type": {"key": "/type/edition"}, "subjects": ["Mathematics"], "revision": 1}
+/type/edition /books/OL10226046M 2 2011-04-29T23:50:02.027171 {"publishers": ["Heinemann Educational Books - Primary Division"], "physical_format": "Paperback", "subtitle": "Animal Movement (Discovery World)", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T23:50:02.027171"}, "title": "Discovery World Stage E", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780435095604"], "isbn_10": ["0435095609"], "publish_date": "September 29, 1997", "key": "/books/OL10226046M", "latest_revision": 2, "oclc_numbers": ["314826629"], "type": {"key": "/type/edition"}, "subjects": ["Designed / suitable for National Curriculum", "Designed / suitable for Scottish examinations & grades", "Animals", "English language"], "revision": 2}
+/type/edition /books/OL10226095M 3 2011-04-28T02:18:46.794901 {"publishers": ["Heinemann Primary"], "identifiers": {"librarything": ["6456516"]}, "last_modified": {"type": "/type/datetime", "value": "2011-04-28T02:18:46.794901"}, "title": "Literacy World", "type": {"key": "/type/edition"}, "number_of_pages": 80, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780435096564"], "isbn_10": ["0435096567"], "publish_date": "September 23, 1998", "key": "/books/OL10226095M", "authors": [{"key": "/authors/OL3348095A"}, {"key": "/authors/OL1435634A"}], "latest_revision": 3, "oclc_numbers": ["315276007"], "physical_format": "Paperback", "subjects": ["English language readers", "For National Curriculum Key Stage 2"], "revision": 3}
+/type/edition /books/OL1022663M 7 2022-12-05T04:44:19.737763 {"publishers": ["Time Capsule Books", "Distributed by Ancient Healing Ways"], "number_of_pages": 311, "subtitle": "the flow of eternal power : an easy guide to the yoga of awareness as taught by Yogi Bhajan", "isbn_10": ["0963984764"], "lc_classifications": ["BL1238.56.K86 K53 1996"], "key": "/books/OL1022663M", "authors": [{"key": "/authors/OL549984A"}], "publish_places": ["Los Angeles, Calif", "Espanola, N.M"], "languages": [{"key": "/languages/eng"}], "pagination": "311 p. ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part25.utf8:124394446:746", "promise:bwb_daily_pallets_2022-06-01"], "title": "Kundalini yoga", "dewey_decimal_class": ["294.6/436"], "notes": {"type": "/type/text", "value": "Includes index."}, "identifiers": {"goodreads": ["1305680"], "librarything": ["948059"]}, "edition_name": "1st ed.", "lccn": ["96085357"], "subjects": ["Kun\u0323d\u0323alini\u0304."], "publish_date": "1996", "publish_country": "cau", "by_statement": "Shakti Parwha Kaur Khalsa.", "oclc_numbers": ["37345497"], "works": [{"key": "/works/OL3375099W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:O8-BIJ-075"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-05T04:44:19.737763"}}
+/type/edition /books/OL10226739M 7 2022-12-08T07:05:50.853519 {"publishers": ["HarperCollins Publishers Ltd"], "number_of_pages": 180, "title": "Healthy Gourmet H\\B", "identifiers": {"goodreads": ["977281"]}, "isbn_13": ["9780246125477"], "physical_format": "Hardcover", "isbn_10": ["0246125470"], "publish_date": "March 27, 1986", "key": "/books/OL10226739M", "authors": [{"key": "/authors/OL71517A"}], "oclc_numbers": ["59780619"], "works": [{"key": "/works/OL835411W"}], "type": {"key": "/type/edition"}, "covers": [12362995], "ocaid": "healthygourmet0000wald", "lc_classifications": ["TX741"], "source_records": ["ia:healthygourmet0000wald", "promise:bwb_daily_pallets_2021-06-17"], "local_id": ["urn:bwbsku:KP-316-404"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-08T07:05:50.853519"}}
+/type/edition /books/OL10226839M 5 2011-04-27T05:28:23.233802 {"publishers": ["HarperCollins Publishers"], "number_of_pages": 24, "last_modified": {"type": "/type/datetime", "value": "2011-04-27T05:28:23.233802"}, "title": "Clever Trevor Knows His Colours (Clever Trevor Books)", "type": {"key": "/type/edition"}, "identifiers": {"goodreads": ["3367721"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780246128515"], "isbn_10": ["0246128518"], "publish_date": "April 24, 1986", "key": "/books/OL10226839M", "authors": [{"key": "/authors/OL2727224A"}], "latest_revision": 5, "oclc_numbers": ["12837143"], "works": [{"key": "/works/OL8193808W"}], "physical_format": "Paperback", "subjects": ["Optics (light)"], "revision": 5}
+/type/edition /books/OL10226857M 5 2011-04-25T22:46:19.104277 {"publishers": ["Collins"], "identifiers": {"goodreads": ["2240588"]}, "last_modified": {"type": "/type/datetime", "value": "2011-04-25T22:46:19.104277"}, "title": "Humpty's Jump (Help Your Child to Write)", "contributions": ["A. Amstutz (Illustrator)"], "number_of_pages": 24, "isbn_13": ["9780246129390"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Hardcover", "isbn_10": ["0246129395"], "publish_date": "September 25, 1986", "key": "/books/OL10226857M", "authors": [{"key": "/authors/OL3399723A"}], "latest_revision": 5, "oclc_numbers": ["13668797"], "works": [{"key": "/works/OL9356996W"}], "type": {"key": "/type/edition"}, "subjects": ["Reference"], "revision": 5}
+/type/edition /books/OL10226992M 6 2022-11-11T21:10:47.887869 {"publishers": ["Grafton"], "number_of_pages": 368, "title": "Lyonesse III", "type": {"key": "/type/edition"}, "identifiers": {"goodreads": ["1614947"], "librarything": ["120749"]}, "isbn_13": ["9780246133960"], "isbn_10": ["0246133961"], "publish_date": "November 14, 1990", "key": "/books/OL10226992M", "authors": [{"key": "/authors/OL253641A"}], "works": [{"key": "/works/OL2071414W"}], "physical_format": "Hardcover", "subjects": ["Fantasy", "Science fiction"], "local_id": ["urn:bwbsku:KR-457-780"], "source_records": ["promise:bwb_daily_pallets_2022-11-01"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-11T21:10:47.887869"}}
+/type/edition /books/OL10227105M 6 2022-11-15T04:52:38.602452 {"publishers": ["HarperCollins Publishers Ltd"], "number_of_pages": 256, "covers": [9489523], "physical_format": "Hardcover", "key": "/books/OL10227105M", "authors": [{"key": "/authors/OL3342342A"}], "ocaid": "behindmyth00jame", "subjects": ["Modern fiction"], "isbn_13": ["9780246139085"], "title": "Behind the Myth", "identifiers": {"librarything": ["7740422"]}, "edition_name": "New Ed edition", "isbn_10": ["0246139080"], "publish_date": "August 1991", "works": [{"key": "/works/OL9288458W"}], "type": {"key": "/type/edition"}, "source_records": ["amazon:0246139080"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-15T04:52:38.602452"}}
+/type/edition /books/OL10227199M 4 2020-10-08T04:01:51.019879 {"publishers": ["Ann Arbor Science Publishers"], "subtitle": "Proceedings of the 1975 Cornell Agricultural Waste Management Conference", "covers": [5045012, 4484595], "physical_format": "Unknown Binding", "lc_classifications": ["TD930 .C65 1975"], "latest_revision": 4, "key": "/books/OL10227199M", "ocaid": "energyagricultur0000corn", "isbn_13": ["9780250401130"], "source_records": ["ia:energyagricultur0000corn", "marc:marc_loc_2016/BooksAll.2016.part09.utf8:32633154:801"], "title": "Energy, agriculture, and waste management", "lccn": ["75022898"], "number_of_pages": 540, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0250401134"], "publish_date": "1975", "last_modified": {"type": "/type/datetime", "value": "2020-10-08T04:01:51.019879"}, "works": [{"key": "/works/OL18159439W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10227287M 2 2009-12-15T00:44:48.448262 {"publishers": ["Butterworth-Heinemann"], "subtitle": "Assessing the Problem", "isbn_10": ["0250405407"], "number_of_pages": 325, "isbn_13": ["9780250405404"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:44:48.448262"}, "publish_date": "October 1982", "latest_revision": 2, "key": "/books/OL10227287M", "authors": [{"key": "/authors/OL3399814A"}], "title": "Hazardous Waste Disposal", "subjects": ["Life Sciences - Ecology - Recycling", "Science"], "works": [{"key": "/works/OL9357121W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10227326M 4 2022-12-04T00:52:16.751227 {"publishers": ["H. A. Humphrey Ltd"], "identifiers": {"librarything": ["3691249"]}, "languages": [{"key": "/languages/eng"}], "number_of_pages": 112, "isbn_13": ["9780250807444"], "physical_format": "Hardcover", "isbn_10": ["0250807440"], "publish_date": "1968", "key": "/books/OL10227326M", "authors": [{"key": "/authors/OL133309A"}], "title": "The new Israel atlas, Bible to present day;", "works": [{"key": "/works/OL1311901W"}], "type": {"key": "/type/edition"}, "source_records": ["amazon:0250807440"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T00:52:16.751227"}}
+/type/edition /books/OL10227446M 8 2022-12-07T16:50:42.912295 {"publishers": ["University of Illinois Press"], "identifiers": {"goodreads": ["2999984"]}, "isbn_10": ["0252007891"], "physical_format": "Hardcover", "lc_classifications": ["Z240 .I35 1979", "Z240.I35 1979"], "key": "/books/OL10227446M", "authors": [{"key": "/authors/OL2456120A"}], "isbn_13": ["9780252007897"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part12.utf8:6428838:975", "bwb:9780252007897", "promise:bwb_daily_pallets_2022-03-17", "marc:marc_columbia/Columbia-extract-20221130-001.mrc:54485201:1350"], "title": "INCUNABULA IN UNIV IL LIB (Robert B. Downs Publication Fund ; no. 5)", "lccn": ["79017355"], "number_of_pages": 251, "languages": [{"key": "/languages/eng"}], "subjects": ["Bibliographies, catalogues, discographies", "Reference / General", "Bibliographies & Indexes", "Reference", "Bibliography", "Catalogs", "Illinois", "Incunabula", "Urbana"], "publish_date": "October 1, 1979", "works": [{"key": "/works/OL7790536W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:W7-AJS-719"], "oclc_numbers": ["5219564"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-07T16:50:42.912295"}}
+/type/edition /books/OL10227657M 12 2022-12-29T20:51:44.629828 {"publishers": ["University of Illinois Press"], "number_of_pages": 424, "subtitle": "The First Twenty Years", "weight": "1.6 pounds", "isbn_10": ["0252030524"], "covers": [5045130, 4262199], "local_id": ["urn:cst:10017031617"], "physical_format": "Hardcover", "lc_classifications": ["BX8611.M665 2006", "BX8611 .M665 2006"], "key": "/books/OL10227657M", "contributions": ["Dean L. May (Editor)", "Reid L. Neilson (Editor)"], "languages": [{"key": "/languages/eng"}], "source_records": ["marc:marc_records_scriblio_net/part15.dat:139935072:3012", "marc:marc_claremont_school_theology/CSTMARC2_barcode.mrc:48494457:4626", "bwb:9780252030529", "marc:marc_loc_2016/BooksAll.2016.part32.utf8:159262539:3193", "marc:marc_claremont_school_theology/CSTMARC2_multibarcode.mrc:48512658:4626", "ia:mormonhistoryass0000unse", "marc:marc_columbia/Columbia-extract-20221130-012.mrc:122847539:3743"], "title": "The Mormon History Association's Tanner Lectures", "identifiers": {"goodreads": ["3100230"]}, "isbn_13": ["9780252030529"], "edition_name": "1 edition", "subjects": ["Mormons (Church of Latter Day Saints)", "Religion", "Religion - Mormon / LDS", "USA", "Christianity - Church of Jesus Christ of Latter-Day Saints (", "Christianity - Church of Jesus Christ of Latter-Day Saomts (", "Essays", "United States - General", "Religion / Mormonism", "Christianity - Church of Jesus Christ of Latter-Day Saints (Mormon)", "Church of Jesus Christ of Latter-day Saints", "History", "Mormon Church"], "publish_date": "March 31, 2006", "works": [{"key": "/works/OL19599870W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.4 x 6.3 x 1.3 inches", "lccn": ["2005034479"], "ocaid": "mormonhistoryass0000unse", "oclc_numbers": ["62509103"], "latest_revision": 12, "revision": 12, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-29T20:51:44.629828"}}
+/type/edition /books/OL10228316M 8 2020-10-10T17:55:40.883697 {"publishers": ["Indiana University Press"], "number_of_pages": 135, "weight": "1 pounds", "covers": [2340531], "physical_format": "Unknown Binding", "lc_classifications": ["GN816.F73F37 2000"], "latest_revision": 8, "key": "/books/OL10228316M", "authors": [{"key": "/authors/OL2493347A"}, {"key": "/authors/OL1078526A"}, {"key": "/authors/OL2493347A"}], "subjects": ["Palaeontology", "Greek Archaeology", "Social Science", "Archaeology / Anthropology", "Science/Mathematics", "Ancient - Greece", "Archaeology", "Penology", "Excavations (Archaeology)", "Franchthi Cave", "Franchthi Cave (Greece)", "Greece", "Physical geology", "Sediments (Geology)"], "isbn_13": ["9780253213143"], "source_records": ["bwb:9780253213143", "marc:marc_loc_2016/BooksAll.2016.part01.utf8:212926349:1908"], "title": "Depositional History of Franchthi Cave (Sediments, Stratigraphy, and Chronology): Fascicle 12 (Excavations at Franchthi Cave, Greece)", "identifiers": {"goodreads": ["4360544"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0253213142"], "publish_date": "July 1, 1999", "last_modified": {"type": "/type/datetime", "value": "2020-10-10T17:55:40.883697"}, "works": [{"key": "/works/OL7833540W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.9 x 8.5 x 0.5 inches", "revision": 8}
+/type/edition /books/OL10228493M 3 2022-11-17T14:19:31.829405 {"publishers": ["Indiana University Press"], "key": "/books/OL10228493M", "title": "French Feminist Philosophy", "isbn_13": ["9780253300065"], "physical_format": "Unknown Binding", "isbn_10": ["0253300061"], "publish_date": "September 16, 1997", "authors": [{"key": "/authors/OL3400175A"}], "works": [{"key": "/works/OL9357479W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780253300065"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T14:19:31.829405"}}
+/type/edition /books/OL1022855M 3 2020-11-24T05:52:35.748237 {"publishers": ["Cartoon Corner"], "subtitle": "a collectors' guide to animation", "lc_classifications": ["MLCM 96/02974 (N)"], "latest_revision": 3, "key": "/books/OL1022855M", "authors": [{"key": "/authors/OL550072A"}], "publish_places": ["Paradise Valley, AZ"], "pagination": "68 p. ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part25.utf8:124569904:441"], "title": "The happy art", "lccn": ["96085680"], "number_of_pages": 68, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2020-11-24T05:52:35.748237"}, "publish_date": "1996", "publish_country": "azu", "by_statement": "by Ken Veit.", "works": [{"key": "/works/OL3375414W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10228978M 10 2022-12-26T02:55:23.775269 {"publishers": ["Indiana University Press"], "number_of_pages": 296, "subtitle": "An Introduction and Guide", "covers": [8288080], "physical_format": "Hardcover", "lc_classifications": ["NK9112.L443 2008", "NK9112 .L443 2008"], "key": "/books/OL10228978M", "authors": [{"key": "/authors/OL3400289A"}], "ocaid": "contemporaryquil0000lenk", "subjects": ["Textile arts", "Crafts & Hobbies", "Crafts / Hobbies", "Hobbies/Crafts", "Quilts & Quilting", "Textiles & Costume"], "isbn_13": ["9780253351241"], "source_records": ["ia:contemporaryquil0000lenk", "bwb:9780253351241", "marc:marc_loc_2016/BooksAll.2016.part34.utf8:145382985:787", "marc:marc_columbia/Columbia-extract-20221130-015.mrc:588807:2208"], "title": "Contemporary Quilt Art", "identifiers": {"goodreads": ["3300862"], "librarything": ["5494978"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0253351243"], "publish_date": "May 5, 2008", "works": [{"key": "/works/OL9357604W"}], "type": {"key": "/type/edition"}, "lccn": ["2007035467"], "oclc_numbers": ["167512486"], "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-26T02:55:23.775269"}}
+/type/edition /books/OL10229014M 5 2022-11-18T05:10:22.379717 {"publishers": ["Indiana University Press"], "number_of_pages": 416, "subtitle": "Regional Imperatives and the Imperial Presidency", "covers": [5431209, 5045473], "physical_format": "Hardcover", "key": "/books/OL10229014M", "contributions": ["Lloyd I. Rudolph (Editor)", "Susanne Rudolph (Editor)"], "subjects": ["Asian studies", "International relations", "Political Science", "Politics / Current Events", "Politics/International Relations", "Indian sub-continent", "USA", "International Relations - General", "Asia - India & South Asia"], "languages": [{"key": "/languages/eng"}], "title": "Making U.S. Foreign Policy toward South Asia", "identifiers": {"goodreads": ["7175951"]}, "isbn_13": ["9780253351913"], "isbn_10": ["025335191X"], "publish_date": "March 2008", "works": [{"key": "/works/OL17815195W"}], "type": {"key": "/type/edition"}, "lc_classifications": ["E183.8"], "source_records": ["bwb:9780253351913"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-18T05:10:22.379717"}}
+/type/edition /books/OL10229256M 5 2022-12-07T00:13:54.123145 {"publishers": ["Coronet Books"], "subtitle": "Compulsion or Evolution in Company Accounting (Hobart Papers (Paperback))", "weight": "3.5 ounces", "covers": [5384203, 5045750], "physical_format": "Paperback", "key": "/books/OL10229256M", "authors": [{"key": "/authors/OL2794136A"}, {"key": "/authors/OL586822A"}], "subjects": ["Accounting", "Accounting - Financial", "Business / Economics / Finance"], "languages": [{"key": "/languages/eng"}], "title": "Accountants Without Standards", "number_of_pages": 77, "isbn_13": ["9780255363723"], "isbn_10": ["0255363729"], "publish_date": "July 1995", "works": [{"key": "/works/OL3509300W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.2 x 5.4 x 0.3 inches", "ocaid": "accountantswitho0000mydd", "lc_classifications": ["HF5626 .M93 1995"], "source_records": ["ia:accountantswitho0000mydd", "promise:bwb_daily_pallets_2022-03-17"], "local_id": ["urn:bwbsku:KP-735-540"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-07T00:13:54.123145"}}
+/type/edition /books/OL10230264M 1 2008-04-30T09:38:13.731961 {"physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["McGraw-Hill Education"], "title": "Computest II IBM Computers", "isbn_13": ["9780256084238"], "isbn_10": ["0256084238"], "publish_date": "June 1, 1990", "key": "/books/OL10230264M", "authors": [{"key": "/authors/OL2634095A"}], "type": {"key": "/type/edition"}, "subjects": ["Reference, Information and Interdisciplinary Subjects"], "revision": 1}
+/type/edition /books/OL10230382M 1 2008-04-30T09:38:13.731961 {"physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["McGraw-Hill Education - Europe"], "title": "Comp for People-Mac Lab Mnl", "isbn_13": ["9780256088694"], "isbn_10": ["0256088691"], "publish_date": "April 1, 1991", "key": "/books/OL10230382M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10230519M 3 2011-04-27T01:31:49.886613 {"publishers": ["Irwin"], "last_modified": {"type": "/type/datetime", "value": "2011-04-27T01:31:49.886613"}, "title": "Fin Acctg Ps Rocky Mtn Clothes", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780256092608"], "physical_format": "Paperback", "isbn_10": ["0256092605"], "publish_date": "November 19, 1991", "key": "/books/OL10230519M", "authors": [{"key": "/authors/OL3344014A"}], "latest_revision": 3, "oclc_numbers": ["232353179"], "works": [{"key": "/works/OL9290085W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10231232M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "subtitle": "Dbase Mngmnt", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Longman Higher Education Division (a Pearson Education company)"], "title": "Smith", "isbn_13": ["9780256116816"], "isbn_10": ["0256116814"], "key": "/books/OL10231232M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10231422M 2 2009-12-15T00:44:51.892229 {"publishers": ["Irwin"], "title": "Fed Tax 93/Turbo Taxw/3.50 Dsk", "isbn_10": ["0256121621"], "isbn_13": ["9780256121629"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:44:51.892229"}, "publish_date": "July 1, 1992", "key": "/books/OL10231422M", "authors": [{"key": "/authors/OL2687154A"}], "latest_revision": 2, "subjects": ["Finance"], "works": [{"key": "/works/OL8070697W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10231737M 6 2010-08-16T21:30:01.961281 {"publishers": ["McGraw-Hill Education"], "number_of_pages": 1150, "last_modified": {"type": "/type/datetime", "value": "2010-08-16T21:30:01.961281"}, "title": "Acctg (Ref 90071400/71-1345-97)", "identifiers": {"goodreads": ["7034913"], "librarything": ["4308527"]}, "isbn_13": ["9780256131956"], "covers": [5045809], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0256131953"], "publish_date": "October 1, 1994", "key": "/books/OL10231737M", "authors": [{"key": "/authors/OL3344014A"}], "latest_revision": 6, "works": [{"key": "/works/OL9290022W"}], "type": {"key": "/type/edition"}, "subjects": ["Accounting"], "revision": 6}
+/type/edition /books/OL10231860M 2 2009-12-15T00:44:52.902376 {"publishers": ["Irwin"], "title": "Cont Adv Color Acetates", "isbn_10": ["0256135274"], "isbn_13": ["9780256135275"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:44:52.902376"}, "publish_date": "December 1, 1993", "key": "/books/OL10231860M", "authors": [{"key": "/authors/OL788987A"}], "latest_revision": 2, "subjects": ["Business & Management"], "works": [{"key": "/works/OL4171217W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL1023213M 8 2020-11-24T05:56:42.111821 {"publishers": ["Dolphin Press"], "identifiers": {"goodreads": ["3433082"]}, "ia_box_id": ["IA118406"], "covers": [6944221], "ia_loaded_id": ["intendersofhighe00burr"], "lc_classifications": ["PS3552.U749 I58 1996"], "latest_revision": 8, "key": "/books/OL1023213M", "authors": [{"key": "/authors/OL550232A"}], "ocaid": "intendersofhighe00burr", "publish_places": ["Pahoa, Hawaii"], "pagination": "239 p. :", "source_records": ["ia:intendersofhighe00burr", "marc:marc_loc_2016/BooksAll.2016.part25.utf8:124878564:495"], "title": "The intenders of the highest good", "dewey_decimal_class": ["813/.54"], "number_of_pages": 239, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["96086317"], "isbn_10": ["096542880X"], "publish_date": "1996", "publish_country": "hiu", "last_modified": {"type": "/type/datetime", "value": "2020-11-24T05:56:42.111821"}, "by_statement": "Tony Burroughs.", "oclc_numbers": ["37567112"], "works": [{"key": "/works/OL3375896W"}], "type": {"key": "/type/edition"}, "revision": 8}
+/type/edition /books/OL10232260M 2 2009-12-15T00:44:52.902376 {"publishers": ["McGraw-Hill Education"], "title": "Personal Fin Acetates", "isbn_10": ["0256145423"], "isbn_13": ["9780256145427"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:44:52.902376"}, "publish_date": "August 1, 1995", "key": "/books/OL10232260M", "authors": [{"key": "/authors/OL3011741A"}], "latest_revision": 2, "subjects": ["Finance"], "works": [{"key": "/works/OL8812357W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10232491M 3 2011-04-29T01:08:54.845752 {"publishers": ["McGraw-Hill Education"], "last_modified": {"type": "/type/datetime", "value": "2011-04-29T01:08:54.845752"}, "title": "Irwin Bus Law Vs:Case Video 2", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780256152906"], "physical_format": "Paperback", "isbn_10": ["025615290X"], "publish_date": "December 1, 1993", "key": "/books/OL10232491M", "authors": [{"key": "/authors/OL3400738A"}], "latest_revision": 3, "oclc_numbers": ["144678343"], "works": [{"key": "/works/OL9358422W"}], "type": {"key": "/type/edition"}, "subjects": ["Business & Management"], "revision": 3}
+/type/edition /books/OL10232512M 2 2009-12-15T00:44:52.902376 {"publishers": ["Irwin"], "title": "Can Fap Snb Acc Pac 3.50 Data", "isbn_10": ["0256153248"], "isbn_13": ["9780256153248"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:44:52.902376"}, "publish_date": "September 1, 1993", "key": "/books/OL10232512M", "authors": [{"key": "/authors/OL2949631A"}], "latest_revision": 2, "subjects": ["Finance"], "works": [{"key": "/works/OL8707445W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10232536M 3 2020-08-19T20:36:07.617484 {"publishers": ["McGraw-Hill Education"], "last_modified": {"type": "/type/datetime", "value": "2020-08-19T20:36:07.617484"}, "source_records": ["bwb:9780256153873"], "title": "Ri Cases Fin Anal 3.50 02 Ed", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780256153873"], "physical_format": "Paperback", "isbn_10": ["0256153876"], "publish_date": "August 1, 1996", "key": "/books/OL10232536M", "authors": [{"key": "/authors/OL3400847A"}], "latest_revision": 3, "works": [{"key": "/works/OL9358623W"}], "type": {"key": "/type/edition"}, "subjects": ["Finance"], "revision": 3}
+/type/edition /books/OL10233043M 2 2009-12-15T00:44:52.902376 {"publishers": ["Irwin"], "weight": "2 pounds", "title": "Strat Mgt Selected T&C Tu Ed", "isbn_10": ["0256165246"], "isbn_13": ["9780256165241"], "physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:44:52.902376"}, "publish_date": "January 10, 1994", "key": "/books/OL10233043M", "authors": [{"key": "/authors/OL3169597A"}], "latest_revision": 2, "works": [{"key": "/works/OL9060400W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10233383M 2 2009-12-15T00:44:53.976546 {"publishers": ["Irwin"], "title": "Eng Mech:Dy/Isem:Dy WD 350 IBM", "isbn_10": ["0256173915"], "isbn_13": ["9780256173918"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:44:53.976546"}, "publish_date": "July 1, 1994", "key": "/books/OL10233383M", "authors": [{"key": "/authors/OL3263864A"}], "latest_revision": 2, "subjects": ["Mechanical engineering"], "works": [{"key": "/works/OL9198155W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10233531M 2 2009-12-15T00:44:53.976546 {"publishers": ["Irwin"], "title": "Bus Comm & Sheet (Msu) Pkg", "isbn_10": ["0256176248"], "isbn_13": ["9780256176247"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:44:53.976546"}, "publish_date": "May 1, 1994", "key": "/books/OL10233531M", "authors": [{"key": "/authors/OL3400613A"}], "latest_revision": 2, "subjects": ["Business & Management"], "works": [{"key": "/works/OL9358101W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10233782M 4 2010-04-24T17:58:08.271740 {"publishers": ["Irwin"], "last_modified": {"type": "/type/datetime", "value": "2010-04-24T17:58:08.271740"}, "title": "Moores Fed Prac Part 2 95 Ed", "identifiers": {"goodreads": ["2563205"]}, "isbn_13": ["9780256181258"], "physical_format": "Paperback", "isbn_10": ["025618125X"], "publish_date": "November 1, 1994", "key": "/books/OL10233782M", "authors": [{"key": "/authors/OL2429530A"}], "latest_revision": 4, "works": [{"key": "/works/OL7762522W"}], "type": {"key": "/type/edition"}, "subjects": ["Business & Management"], "revision": 4}
+/type/edition /books/OL10233826M 2 2009-12-15T00:44:53.976546 {"publishers": ["Irwin"], "weight": "14.2 ounces", "title": "Mktg Mgmt Chapters Mscb Ed", "isbn_10": ["0256182108"], "isbn_13": ["9780256182101"], "physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:44:53.976546"}, "publish_date": "August 24, 1994", "key": "/books/OL10233826M", "authors": [{"key": "/authors/OL992159A"}], "latest_revision": 2, "works": [{"key": "/works/OL4751223W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10233867M 2 2009-12-15T00:44:53.976546 {"publishers": ["McGraw-Hill Education"], "key": "/books/OL10233867M", "title": "Autocad Companion IM", "isbn_13": ["9780256182972"], "physical_format": "Unknown Binding", "isbn_10": ["0256182973"], "publish_date": "May 1, 1995", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:44:53.976546"}, "authors": [{"key": "/authors/OL2764430A"}], "latest_revision": 2, "works": [{"key": "/works/OL8318986W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10233902M 2 2009-12-15T00:44:53.976546 {"publishers": ["Irwin"], "weight": "15.8 ounces", "title": "Corp Fin 16 18 22 24 29 30 Cu-Cn E", "isbn_10": ["0256183554"], "isbn_13": ["9780256183559"], "physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:44:53.976546"}, "publish_date": "August 26, 1994", "key": "/books/OL10233902M", "authors": [{"key": "/authors/OL2010263A"}], "latest_revision": 2, "works": [{"key": "/works/OL7099330W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10234178M 2 2009-12-15T00:44:53.976546 {"publishers": ["McGraw-Hill Education"], "isbn_10": ["0256188076"], "number_of_pages": 184, "isbn_13": ["9780256188073"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:44:53.976546"}, "publish_date": "July 1, 1995", "latest_revision": 2, "key": "/books/OL10234178M", "authors": [{"key": "/authors/OL3400924A"}], "title": "Stakeholder Negotiations IM", "subjects": ["Management & management techniques"], "works": [{"key": "/works/OL9358741W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10234531M 3 2010-04-24T17:58:08.271740 {"publishers": ["Irwin"], "physical_format": "Unknown Binding", "key": "/books/OL10234531M", "weight": "6.1 pounds", "title": "Cis4-5/Wp51/L123r23/Dos50/QB Fs Pk", "identifiers": {"goodreads": ["831456"]}, "isbn_13": ["9780256193619"], "isbn_10": ["0256193614"], "publish_date": "December 17, 1994", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T17:58:08.271740"}, "authors": [{"key": "/authors/OL2634095A"}], "latest_revision": 3, "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10234835M 2 2009-12-15T00:44:53.976546 {"publishers": ["McGraw-Hill Education"], "title": "Australian Edition Teacher's Manual Powerpoint Organizational Behaviour & Management", "isbn_10": ["0256199256"], "isbn_13": ["9780256199253"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:44:53.976546"}, "publish_date": "October 10, 1996", "key": "/books/OL10234835M", "authors": [{"key": "/authors/OL3011974A"}], "latest_revision": 2, "subjects": ["Organizational theory & behaviour"], "works": [{"key": "/works/OL8813463W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10234920M 2 2009-12-15T00:44:55.071703 {"publishers": ["Irwin"], "title": "Cps Micro Ap W/Dos50/Wp51/Db4/Qp4 T", "isbn_10": ["0256200750"], "isbn_13": ["9780256200751"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:44:55.071703"}, "publish_date": "May 1, 1995", "key": "/books/OL10234920M", "authors": [{"key": "/authors/OL2674730A"}], "latest_revision": 2, "subjects": ["Computer Software Packages"], "works": [{"key": "/works/OL8032677W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10235083M 2 2009-12-15T00:44:55.071703 {"publishers": ["Irwin"], "title": "Intl Bus Pstscrpt94/Ann Intl Bus 95", "isbn_10": ["0256203776"], "isbn_13": ["9780256203776"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:44:55.071703"}, "publish_date": "August 1, 1995", "key": "/books/OL10235083M", "authors": [{"key": "/authors/OL2643970A"}], "latest_revision": 2, "subjects": ["Business & Management"], "works": [{"key": "/works/OL7916473W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10235171M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["McGraw-Hill Education"], "title": "Marketing 5e MOT 1", "isbn_13": ["9780256205725"], "isbn_10": ["0256205728"], "publish_date": "October 1, 1996", "key": "/books/OL10235171M", "authors": [{"key": "/authors/OL2639813A"}], "type": {"key": "/type/edition"}, "subjects": ["Sales & marketing"], "revision": 1}
+/type/edition /books/OL10235849M 2 2009-12-15T00:44:55.071703 {"physical_format": "Hardcover", "weight": "3.6 pounds", "title": "Accounting What the Numbers Mean/Ready Notes and Solutions to Odd-Numbered Problems", "isbn_10": ["0256216673"], "publishers": ["Richard D Irwin"], "edition_name": "3rd edition", "isbn_13": ["9780256216677"], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:44:55.071703"}, "publish_date": "September 1995", "key": "/books/OL10235849M", "authors": [{"key": "/authors/OL227674A"}], "latest_revision": 2, "subjects": ["Accounting", "Business/Economics"], "works": [{"key": "/works/OL1901708W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "11 x 8.8 x 1.8 inches", "revision": 2}
+/type/edition /books/OL10235928M 6 2011-04-30T13:22:40.924061 {"publishers": ["Mcgraw-Hill College"], "subtitle": "An Integrated Approach", "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-30T13:22:40.924061"}, "latest_revision": 6, "key": "/books/OL10235928M", "authors": [{"key": "/authors/OL1435123A"}, {"key": "/authors/OL2634075A"}, {"key": "/authors/OL2634076A"}, {"key": "/authors/OL2634077A"}], "subjects": ["Accounting", "Accounting - General", "Business & Economics", "Business/Economics"], "languages": [{"key": "/languages/eng"}], "title": "Introduction to Accounting", "identifiers": {"librarything": ["1274137"], "goodreads": ["4819038"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780256219722"], "isbn_10": ["0256219729"], "publish_date": "August 1996", "oclc_numbers": ["36780182"], "works": [{"key": "/works/OL5848124W"}], "type": {"key": "/type/edition"}, "first_sentence": {"type": "/type/text", "value": "Who needs accounting?"}, "revision": 6}
+/type/edition /books/OL10236174M 2 2009-12-15T00:44:55.071703 {"publishers": ["McGraw-Hill Education"], "subtitle": "Vids (2) Entrepreneur /Money Hunt", "weight": "8.8 ounces", "title": "Videocassette", "isbn_10": ["0256260486"], "isbn_13": ["9780256260489"], "physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:44:55.071703"}, "publish_date": "November 1, 1997", "key": "/books/OL10236174M", "authors": [{"key": "/authors/OL2743395A"}], "latest_revision": 2, "subjects": ["Business & Management"], "works": [{"key": "/works/OL8243528W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "7.4 x 7.4 x 4.3 inches", "revision": 2}
+/type/edition /books/OL10236522M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["HarperCollins Publishers"], "title": "Rhodes Travel Guide", "isbn_13": ["9780261665903"], "isbn_10": ["0261665901"], "publish_date": "1998", "key": "/books/OL10236522M", "type": {"key": "/type/edition"}, "subjects": ["Greek islands", "Travel & holiday guides"], "revision": 1}
+/type/edition /books/OL10236672M 10 2020-08-03T04:40:25.223570 {"publishers": ["The MIT Press"], "identifiers": {"goodreads": ["2198971"], "librarything": ["1659860"]}, "subtitle": "The Power of Image in Contemporary Democracy", "weight": "1.8 pounds", "isbn_10": ["0262011824"], "covers": [2341357], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2020-08-03T04:40:25.223570"}, "latest_revision": 10, "key": "/books/OL10236672M", "authors": [{"key": "/authors/OL3129027A"}], "contributions": ["Ruvik Danieli (Translator)"], "isbn_13": ["9780262011822"], "source_records": ["amazon:0262011824", "marc:marc_cca/b10621386.out:35391540:1191", "marc:marc_ithaca_college/ic_marc.mrc:183668891:1121", "marc:marc_loc_2016/BooksAll.2016.part01.utf8:45855615:1061"], "title": "Death's Showcase", "lccn": ["00064600"], "number_of_pages": 314, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "subjects": ["Cultural studies", "Death & Dying", "Iconography, subjects depicted in art", "Violence in society", "Photography As An Art", "Special Subjects In Art", "Literary Collections", "Art & Art Instruction", "Literature: Classics", "Israel", "History - General", "Subjects & Themes - General", "Art / Fine Arts", "Letters", "20th century", "Artists and museums", "Arts, Israeli", "Death in art", "Photography, Artistic"], "publish_date": "June 1, 2001", "works": [{"key": "/works/OL8998640W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.2 x 7.3 x 0.9 inches", "revision": 10}
+/type/edition /books/OL10236684M 10 2022-12-29T20:08:25.526450 {"publishers": ["The MIT Press"], "number_of_pages": 448, "weight": "1.8 pounds", "covers": [2341372], "physical_format": "Hardcover", "lc_classifications": ["TA73.1 .A94 2007eb", "TA73.1 .A94 2007"], "key": "/books/OL10236684M", "authors": [{"key": "/authors/OL717877A"}], "ocaid": "redprometheuseng0000augu", "subjects": ["History of science", "Impact of science & technology on society", "Marxism & Communism", "Science", "Science/Mathematics", "East Germany, DDR", "Engineering (General)", "Europe - Germany", "History", "Science / History", "20th century", "Engineering", "Germany (East)", "Technology"], "isbn_13": ["9780262012362"], "source_records": ["ia:redprometheuseng0000augu", "marc:marc_loc_2016/BooksAll.2016.part34.utf8:100735924:1353", "promise:bwb_daily_pallets_2020-07-30", "marc:marc_columbia/Columbia-extract-20221130-013.mrc:298576677:4312"], "title": "Red Prometheus: Engineering and Dictatorship in East Germany, 1945-1990 (Transformations: Studies in the History of Science and Technology)", "identifiers": {"goodreads": ["6652768"], "librarything": ["4458395"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0262012367"], "publish_date": "November 30, 2007", "works": [{"key": "/works/OL3939225W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.1 x 7.2 x 1 inches", "lccn": ["2007000656"], "local_id": ["urn:bwbsku:O6-CTG-061"], "oclc_numbers": ["79001763"], "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-29T20:08:25.526450"}}
+/type/edition /books/OL1023734M 5 2020-11-24T06:52:40.905918 {"publishers": ["Zarahemla Motets/White Crow Press"], "identifiers": {"goodreads": ["3880865"]}, "lc_classifications": ["PS3553.O474696 T35 1996"], "latest_revision": 5, "key": "/books/OL1023734M", "authors": [{"key": "/authors/OL37198A"}], "publish_places": ["Thousand Oaks, CA"], "languages": [{"key": "/languages/eng"}], "pagination": "96 p. ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part25.utf8:125321549:530"], "title": "Tales through time", "dewey_decimal_class": ["811/.54"], "number_of_pages": 96, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "edition_name": "1st ed.", "lccn": ["96090727"], "isbn_10": ["1886405557"], "publish_date": "1996", "publish_country": "cau", "last_modified": {"type": "/type/datetime", "value": "2020-11-24T06:52:40.905918"}, "by_statement": "Michael R. Collings.", "oclc_numbers": ["36060038"], "works": [{"key": "/works/OL528159W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10237708M 6 2020-05-22T05:55:04.644540 {"publishers": ["The MIT Press"], "number_of_pages": 128, "covers": [9971277], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2020-05-22T05:55:04.644540"}, "latest_revision": 6, "key": "/books/OL10237708M", "authors": [{"key": "/authors/OL770365A"}], "ocaid": "TheHistory_00_Whif", "subjects": ["Architecture / Criticism", "Criticism", "Architecture"], "languages": [{"key": "/languages/eng"}], "source_records": ["ia:TheHistory_00_Whif"], "title": "History, Theory, and Criticism of Architecture", "identifiers": {"goodreads": ["209068"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780262230162"], "isbn_10": ["026223016X"], "publish_date": "February 15, 1966", "works": [{"key": "/works/OL4108564W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL10237736M 15 2022-12-10T23:32:04.111609 {"publishers": ["The MIT Press"], "number_of_pages": 225, "subtitle": "Architectural Fantasies by Bruno Taut and His Circle", "weight": "1.7 pounds", "isbn_10": ["0262231212"], "covers": [2342102], "physical_format": "Hardcover", "lc_classifications": ["NA2500 .C7813 1985", "NA2500.C7813 1985", "NA2500 .C78 1985"], "key": "/books/OL10237736M", "authors": [{"key": "/authors/OL957316A"}], "ocaid": "crystalchainlett00whyt_0", "isbn_13": ["9780262231213"], "source_records": ["ia:crystalchainlett00whyt_0", "ia:crystalchainlett00whyt_1", "marc:marc_cca/b10621386.out:18778432:849", "marc:marc_records_scriblio_net/part17.dat:67053715:933", "bwb:9780262231213", "marc:marc_loc_2016/BooksAll.2016.part15.utf8:136481893:934", "amazon:0262231212", "marc:marc_columbia/Columbia-extract-20221130-001.mrc:410314452:1450"], "title": "Crystal Chain Letters", "lccn": ["84026151"], "identifiers": {"goodreads": ["1412354"], "librarything": ["4254446"]}, "languages": [{"key": "/languages/eng"}], "subjects": ["History of art & design styles: from c 1900 -", "20th Century Architecture", "Architecture", "Planning", "Architecture / General", "General", "20th century", "Architects", "Architecture, Modern", "Correspondence", "Germany", "Philosophy", "Themes, motives"], "publish_date": "September 24, 1985", "works": [{"key": "/works/OL4656535W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.3 x 7.2 x 0.8 inches", "oclc_numbers": ["11469954"], "latest_revision": 15, "revision": 15, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T23:32:04.111609"}}
+/type/edition /books/OL10237944M 7 2020-10-09T10:19:32.711255 {"publishers": ["The MIT Press"], "identifiers": {"goodreads": ["1564231"], "librarything": ["5398409"]}, "subtitle": "Contemporary Readings in Philosophy and Science (Bradford Books)", "weight": "1 pounds", "physical_format": "Paperback", "lc_classifications": ["Q175.32.E44E44 2007"], "latest_revision": 7, "key": "/books/OL10237944M", "contributions": ["Mark A. Bedau (Editor)", "Paul Humphreys (Editor)"], "subjects": ["Topics in philosophy", "Science", "Science/Mathematics", "Life Sciences - Biology - General", "Philosophy & Social Aspects", "Science / Biology", "Emergence (Philosophy)", "Philosophy"], "isbn_13": ["9780262524759"], "source_records": ["bwb:9780262524759"], "title": "Emergence", "number_of_pages": 482, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0262524759"], "publish_date": "April 30, 2008", "last_modified": {"type": "/type/datetime", "value": "2020-10-09T10:19:32.711255"}, "works": [{"key": "/works/OL19559215W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 7 x 1 inches", "revision": 7}
+/type/edition /books/OL10238064M 11 2022-12-04T10:07:16.377887 {"publishers": ["The MIT Press"], "identifiers": {"librarything": ["1579155"], "goodreads": ["2933553"]}, "subtitle": "How Software Platforms Drive Innovation and Transform Industries (Life and Mind Series)", "weight": "1 pounds", "covers": [2342415], "physical_format": "Paperback", "lc_classifications": ["QA76.76.A63E93 2008"], "key": "/books/OL10238064M", "authors": [{"key": "/authors/OL616621A"}, {"key": "/authors/OL3310497A"}, {"key": "/authors/OL1858611A"}], "subjects": ["Impact of computing & IT on society", "Industry & Industrial Studies", "Business & Economics", "Business / Economics / Finance", "Business/Economics", "Information Management", "Business & Economics / Information Management"], "languages": [{"key": "/languages/eng"}], "first_sentence": {"type": "/type/text", "value": "Many modern products run on software platforms."}, "source_records": ["marc:marc_oapen/oapen.marc.utf8.mrc:4545081:3194", "bwb:9780262550680", "marc:marc_oapen/convert_oapen_20201117.mrc:15849173:3475", "ia:invisibleengines0000evan_h4e2", "promise:bwb_daily_pallets_2022-09-12"], "title": "Invisible Engines", "number_of_pages": 408, "isbn_13": ["9780262550680"], "isbn_10": ["0262550687"], "publish_date": "April 30, 2008", "works": [{"key": "/works/OL20928785W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 1 inches", "ocaid": "invisibleengines0000evan_h4e2", "local_id": ["urn:bwbsku:O8-BGR-371"], "latest_revision": 11, "revision": 11, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T10:07:16.377887"}}
+/type/edition /books/OL10238539M 7 2020-08-20T04:43:19.300501 {"publishers": ["The MIT Press"], "number_of_pages": 260, "subtitle": "Siegfried Kracauer and Modern Urban Culture", "weight": "1.3 pounds", "covers": [2342823, 152408], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2020-08-20T04:43:19.300501"}, "latest_revision": 7, "key": "/books/OL10238539M", "authors": [{"key": "/authors/OL675065A"}], "contributions": ["John Irons (Translator)"], "subjects": ["Landscape art & architecture", "Urban & municipal planning", "Decoration & Ornament", "Planning", "Architecture / History", "History - General", "Architecture"], "edition_name": "New Ed edition", "languages": [{"key": "/languages/eng"}], "source_records": ["bwb:9780262681636"], "title": "Ornaments of the Metropolis", "identifiers": {"librarything": ["1690933"], "goodreads": ["743770"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780262681636"], "isbn_10": ["0262681633"], "publish_date": "October 1, 2006", "works": [{"key": "/works/OL3806814W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.6 x 6.7 x 0.8 inches", "revision": 7}
+/type/edition /books/OL10238558M 4 2022-12-05T01:46:45.077683 {"publishers": ["The MIT Press"], "subtitle": "A Critical Analysis of Federal Housing Policy", "weight": "1 pounds", "edition_name": "New Ed edition", "physical_format": "Paperback", "key": "/books/OL10238558M", "authors": [{"key": "/authors/OL3401564A"}], "subjects": ["City & town planning - architectural aspects", "Architecture / Planning", "Planning", "Architecture", "Cities and towns", "Housing policy", "United States", "Urban poor"], "isbn_13": ["9780262690584"], "title": "Housing the Urban Poor", "number_of_pages": 256, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0262690586"], "publish_date": "October 15, 1977", "oclc_numbers": ["246457349"], "works": [{"key": "/works/OL9359499W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.2 x 6 x 0.8 inches", "local_id": ["urn:bwbsku:O8-CGH-119"], "source_records": ["promise:bwb_daily_pallets_2022-06-30"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-05T01:46:45.077683"}}
+/type/edition /books/OL10238623M 9 2020-10-09T10:38:49.752790 {"publishers": ["The MIT Press"], "number_of_pages": 432, "weight": "1 pounds", "covers": [2342887], "physical_format": "Paperback", "lc_classifications": ["QA445.S764 2008"], "latest_revision": 9, "key": "/books/OL10238623M", "authors": [{"key": "/authors/OL1434079A"}], "subjects": ["General Theory of Computing", "Computers", "Art & Art Instruction", "Computer Books: General", "Design - General", "General", "Social Aspects - Human-Computer Interaction", "Computers / Social Aspects / Human-Computer Interaction"], "isbn_13": ["9780262693677"], "source_records": ["bwb:9780262693677"], "title": "Shape: Talking about Seeing and Doing (Transformations: Studies in Th)", "identifiers": {"librarything": ["4879279"], "goodreads": ["3031359"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0262693674"], "publish_date": "March 31, 2008", "last_modified": {"type": "/type/datetime", "value": "2020-10-09T10:38:49.752790"}, "oclc_numbers": ["181142514"], "works": [{"key": "/works/OL5845162W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 7 x 1 inches", "revision": 9}
+/type/edition /books/OL10238720M 5 2020-05-20T03:19:31.433312 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2020-05-20T03:19:31.433312"}, "title": "The Sexuality of Christ in Renaissance Art and in Modern Oblivion", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "covers": [9793919], "isbn_13": ["9780262751759"], "isbn_10": ["0262751755"], "latest_revision": 5, "key": "/books/OL10238720M", "ocaid": "octoberjournalno00mich_589", "oclc_numbers": ["81435769"], "works": [{"key": "/works/OL11376492W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10239278M 5 2011-04-28T08:43:05.355339 {"publishers": ["Harlequin Mills & Boon"], "number_of_pages": 192, "last_modified": {"type": "/type/datetime", "value": "2011-04-28T08:43:05.355339"}, "title": "Unsafe Harbour", "type": {"key": "/type/edition"}, "identifiers": {"goodreads": ["2819560"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780263125375"], "isbn_10": ["0263125378"], "publish_date": "September 14, 1990", "key": "/books/OL10239278M", "authors": [{"key": "/authors/OL729768A"}], "latest_revision": 5, "oclc_numbers": ["22611856"], "works": [{"key": "/works/OL3981238W"}], "physical_format": "Hardcover", "subjects": ["Romance"], "revision": 5}
+/type/edition /books/OL10240272M 6 2020-08-18T20:07:34.121607 {"publishers": ["Thorndike Pr"], "identifiers": {"goodreads": ["6888213"]}, "weight": "1 pounds", "covers": [2342959], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2020-08-18T20:07:34.121607"}, "latest_revision": 6, "key": "/books/OL10240272M", "authors": [{"key": "/authors/OL584492A"}], "subjects": ["Romance", "Large type books", "Large Print"], "edition_name": "Largeprint edition", "languages": [{"key": "/languages/eng"}], "source_records": ["bwb:9780263142877"], "title": "The Sister Swap", "number_of_pages": 288, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780263142877"], "isbn_10": ["0263142876"], "publish_date": "December 1995", "works": [{"key": "/works/OL3498705W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.4 x 5.6 x 1.1 inches", "revision": 6}
+/type/edition /books/OL10240416M 7 2020-08-23T08:25:12.375366 {"publishers": ["Ulverscroft Large Print"], "number_of_pages": 288, "weight": "13.6 ounces", "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2020-08-23T08:25:12.375366"}, "latest_revision": 7, "key": "/books/OL10240416M", "authors": [{"key": "/authors/OL687900A"}], "subjects": ["Romance", "Romance - General", "Fiction - Romance", "Large Print"], "edition_name": "Lrg edition", "languages": [{"key": "/languages/eng"}], "classifications": {}, "source_records": ["bwb:9780263145533"], "title": "The Marriage Business", "notes": {"type": "/type/text", "value": "Mills & Boon"}, "identifiers": {"goodreads": ["1772215"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780263145533"], "isbn_10": ["0263145530"], "publish_date": "June 1996", "works": [{"key": "/works/OL3845050W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.5 x 5.8 x 1.2 inches", "revision": 7}
+/type/edition /books/OL10240434M 6 2020-08-29T23:31:52.759316 {"publishers": ["Thorndike Pr"], "number_of_pages": 288, "weight": "14.6 ounces", "covers": [7248787], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2020-08-29T23:31:52.759316"}, "latest_revision": 6, "key": "/books/OL10240434M", "authors": [{"key": "/authors/OL581595A"}], "subjects": ["Romance", "Large type books", "Large Print"], "edition_name": "Largeprint edition", "languages": [{"key": "/languages/eng"}], "source_records": ["bwb:9780263145939"], "title": "Hollywood Wedding", "identifiers": {"librarything": ["955562"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780263145939"], "isbn_10": ["026314593X"], "publish_date": "September 1996", "oclc_numbers": ["35328066"], "works": [{"key": "/works/OL3485616W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.4 x 5.6 x 1 inches", "revision": 6}
+/type/edition /books/OL10240713M 5 2020-08-23T10:00:23.355338 {"publishers": ["Ulverscroft Large Print"], "number_of_pages": 288, "weight": "13.6 ounces", "physical_format": "Library Binding", "last_modified": {"type": "/type/datetime", "value": "2020-08-23T10:00:23.355338"}, "latest_revision": 5, "key": "/books/OL10240713M", "authors": [{"key": "/authors/OL659964A"}], "subjects": ["Romance", "Romance - General", "Fiction - Romance"], "edition_name": "Large Print edition", "languages": [{"key": "/languages/eng"}], "classifications": {}, "source_records": ["bwb:9780263150711"], "title": "Sophie's Secret", "notes": {"type": "/type/text", "value": "Romance"}, "identifiers": {}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780263150711"], "isbn_10": ["0263150712"], "publish_date": "July 1997", "works": [{"key": "/works/OL3754778W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.3 x 5.6 x 1 inches", "revision": 5}
+/type/edition /books/OL10240801M 9 2020-08-19T06:09:34.354279 {"publishers": ["Harlequin Mills & Boon"], "identifiers": {"goodreads": ["1198345"], "librarything": ["8286080"]}, "source_records": ["bwb:9780263151930"], "title": "The Bachelor Prince", "type": {"key": "/type/edition"}, "number_of_pages": 192, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780263151930"], "isbn_10": ["026315193X"], "publish_date": "March 14, 1997", "key": "/books/OL10240801M", "last_modified": {"type": "/type/datetime", "value": "2020-08-19T06:09:34.354279"}, "latest_revision": 9, "oclc_numbers": ["59599242"], "works": [{"key": "/works/OL1911547W"}], "physical_format": "Hardcover", "subjects": ["Romance"], "revision": 9}
+/type/edition /books/OL10241037M 6 2012-07-05T00:54:35.161706 {"publishers": ["Harlequin Mills & Boon"], "identifiers": {"goodreads": ["2971439"]}, "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2012-07-05T00:54:35.161706"}, "latest_revision": 6, "key": "/books/OL10241037M", "authors": [{"key": "/authors/OL2674727A"}], "subjects": ["Romance"], "classifications": {}, "title": "Falling for Jack", "notes": {"type": "/type/text", "value": "Romance"}, "number_of_pages": 192, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780263156591"], "isbn_10": ["0263156591"], "publish_date": "March 13, 1998", "oclc_numbers": ["60148898"], "works": [{"key": "/works/OL8032556W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL10241424M 6 2020-08-19T05:18:17.688127 {"publishers": ["Harlequin Mills & Boon"], "physical_format": "Hardcover", "source_records": ["bwb:9780263165593"], "title": "A Wife Worth Keeping", "number_of_pages": 186, "last_modified": {"type": "/type/datetime", "value": "2020-08-19T05:18:17.688127"}, "covers": [2343056], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780263165593"], "isbn_10": ["0263165590"], "publish_date": "May 5, 2000", "key": "/books/OL10241424M", "authors": [{"key": "/authors/OL887984A"}], "latest_revision": 6, "oclc_numbers": ["59417952"], "works": [{"key": "/works/OL4456390W"}], "type": {"key": "/type/edition"}, "subjects": ["Romance", "Genre Fiction"], "revision": 6}
+/type/edition /books/OL10241551M 7 2020-08-19T05:20:58.234900 {"publishers": ["Harlequin Mills & Boon"], "number_of_pages": 192, "covers": [2343100], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2020-08-19T05:20:58.234900"}, "latest_revision": 7, "key": "/books/OL10241551M", "authors": [{"key": "/authors/OL1386146A"}], "subjects": ["Romance", "Genre Fiction"], "source_records": ["bwb:9780263167931"], "title": "The Time Is Now (Medical Romance)", "identifiers": {"goodreads": ["2719638"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780263167931"], "isbn_10": ["0263167933"], "publish_date": "July 7, 2000", "oclc_numbers": ["59457364"], "works": [{"key": "/works/OL5694186W"}], "type": {"key": "/type/edition"}, "revision": 7}
+/type/edition /books/OL10241963M 8 2022-12-08T23:12:40.872598 {"publishers": ["Harlequin Mills & Boon"], "identifiers": {"goodreads": ["4828550"]}, "physical_format": "Hardcover", "key": "/books/OL10241963M", "authors": [{"key": "/authors/OL2674491A"}], "subjects": ["Romance"], "classifications": {}, "source_records": ["bwb:9780263175707", "promise:bwb_daily_pallets_2021-02-03"], "title": "The Matchmaker's Mistake", "notes": {"type": "/type/text", "value": "Romance"}, "number_of_pages": 187, "isbn_13": ["9780263175707"], "isbn_10": ["0263175707"], "publish_date": "September 6, 2002", "oclc_numbers": ["51193608"], "works": [{"key": "/works/OL8030870W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:KO-667-603"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-08T23:12:40.872598"}}
+/type/edition /books/OL10242056M 10 2022-12-08T04:16:29.980808 {"publishers": ["Thorndike Press"], "number_of_pages": 288, "covers": [2343180], "physical_format": "Hardcover", "key": "/books/OL10242056M", "authors": [{"key": "/authors/OL1385991A"}], "subjects": ["Romance", "Romance - Contemporary", "Fiction - Romance"], "edition_name": "Large Print Ed edition", "languages": [{"key": "/languages/eng"}], "source_records": ["bwb:9780263178821", "ia:sheikhsproposal0000mcma", "amazon:026317882X", "promise:bwb_daily_pallets_2021-07-13"], "title": "The Sheikhs Proposal (Romance)", "identifiers": {"goodreads": ["6633334"], "librarything": ["1198412"]}, "isbn_13": ["9780263178821"], "isbn_10": ["026317882X"], "publish_date": "March 2003", "works": [{"key": "/works/OL5691708W"}], "type": {"key": "/type/edition"}, "ocaid": "sheikhsproposal0000mcma", "local_id": ["urn:bwbsku:W6-AIC-402"], "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-08T04:16:29.980808"}}
+/type/edition /books/OL10242368M 10 2022-12-04T00:46:04.327038 {"publishers": ["Heinemann Educational Publishers"], "number_of_pages": 192, "weight": "1.2 pounds", "title": "Standard Grade English General", "physical_format": "Paperback", "identifiers": {"goodreads": ["4026303"]}, "covers": [2418015], "isbn_13": ["9780435109233"], "isbn_10": ["0435109235"], "publish_date": "January 31, 2002", "key": "/books/OL10242368M", "authors": [{"key": "/authors/OL24491A"}, {"key": "/authors/OL2667317A"}, {"key": "/authors/OL330720A"}, {"key": "/authors/OL589408A"}], "type": {"key": "/type/edition"}, "subjects": ["English language", "For Standard Grade (Scottish)"], "physical_dimensions": "10.2 x 8.5 x 0.5 inches", "works": [{"key": "/works/OL31207155W"}], "source_records": ["amazon:0435109235"], "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T00:46:04.327038"}}
+/type/edition /books/OL10242529M 2 2011-04-30T06:22:40.447236 {"publishers": ["Heinemann Educational Books - Primary Division"], "physical_format": "Paperback", "subtitle": "Journey into the Earth (Guided Reading)", "last_modified": {"type": "/type/datetime", "value": "2011-04-30T06:22:40.447236"}, "title": "Storyworlds Stage 9", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780435114183"], "isbn_10": ["0435114182"], "publish_date": "March 3, 1999", "key": "/books/OL10242529M", "latest_revision": 2, "oclc_numbers": ["236415740"], "type": {"key": "/type/edition"}, "subjects": ["English language readers", "English language: reading skills", "Designed / suitable for National Curriculum"], "revision": 2}
+/type/edition /books/OL10242725M 3 2011-03-12T11:30:49.862347 {"publishers": ["Heinemann Educational Publishers"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-03-12T11:30:49.862347"}, "title": "Under Plum Lake Line NW 263", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 144, "edition_name": "New Ed edition", "isbn_13": ["9780435122638"], "isbn_10": ["0435122630"], "publish_date": "June 28, 1982", "key": "/books/OL10242725M", "authors": [{"key": "/authors/OL4327184A"}], "latest_revision": 3, "works": [{"key": "/works/OL3499566W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL1024272M 5 2020-11-24T06:59:00.109570 {"publishers": ["Paper Mill"], "identifiers": {"goodreads": ["1403587"], "librarything": ["523930"]}, "isbn_10": ["0961735317"], "subject_place": ["Connecticut."], "lc_classifications": ["TF302.C8 L67 1996"], "latest_revision": 5, "key": "/books/OL1024272M", "authors": [{"key": "/authors/OL550904A"}], "publish_places": ["Riverton, Conn"], "pagination": "168 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part25.utf8:125754217:731"], "title": "Country depots in the Connecticut hills", "dewey_decimal_class": ["385.3/14/09746"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 160-161) and index."}, "number_of_pages": 168, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["96094118"], "subjects": ["Railroad stations -- Connecticut."], "publish_date": "1996", "publish_country": "ctu", "last_modified": {"type": "/type/datetime", "value": "2020-11-24T06:59:00.109570"}, "by_statement": "by Robert F. Lord.", "oclc_numbers": ["34835627"], "works": [{"key": "/works/OL3377471W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10242772M 7 2011-04-30T01:36:47.200385 {"publishers": ["Heinemann Educational Publishers"], "number_of_pages": 135, "weight": "9.1 ounces", "covers": [2418063], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-30T01:36:47.200385"}, "latest_revision": 7, "key": "/books/OL10242772M", "authors": [{"key": "/authors/OL183922A"}], "subjects": ["English literature: fiction texts", "Fiction", "Children: Young Adult (Gr. 7-9)"], "edition_name": "New Ed edition", "classifications": {}, "title": "Humbug", "notes": {"type": "/type/text", "value": "New Windmill"}, "identifiers": {"goodreads": ["1230703"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780435124120"], "isbn_10": ["0435124129"], "publish_date": "June 20, 1994", "oclc_numbers": ["31707808"], "works": [{"key": "/works/OL1647619W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "7.2 x 5 x 0.5 inches", "revision": 7}
+/type/edition /books/OL10242847M 3 2011-05-05T00:11:20.620483 {"publishers": ["Heinemann Educational Books - Primary Division"], "subtitle": "Harry's Elephant (Guided Reading)", "last_modified": {"type": "/type/datetime", "value": "2011-05-05T00:11:20.620483"}, "title": "Storyworlds Stage 6", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780435126582"], "physical_format": "Paperback", "isbn_10": ["043512658X"], "publish_date": "February 23, 1999", "key": "/books/OL10242847M", "latest_revision": 3, "oclc_numbers": ["236415685"], "works": [{"key": "/works/OL8113221W"}], "type": {"key": "/type/edition"}, "subjects": ["English language readers", "English language: reading skills", "Designed / suitable for National Curriculum"], "revision": 3}
+/type/edition /books/OL10242918M 5 2011-04-30T06:22:40.447236 {"publishers": ["Heinemann Educational Secondary Division"], "last_modified": {"type": "/type/datetime", "value": "2011-04-30T06:22:40.447236"}, "title": "Enchanted Island", "identifiers": {"goodreads": ["2134351"]}, "isbn_13": ["9780435129408"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0435129406"], "publish_date": "January 1, 1997", "key": "/books/OL10242918M", "authors": [{"key": "/authors/OL3401783A"}], "latest_revision": 5, "oclc_numbers": ["60164447"], "works": [{"key": "/works/OL9360254W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10242971M 5 2011-04-27T15:02:50.440870 {"publishers": ["Heinemann Educational Secondary Division"], "number_of_pages": 222, "last_modified": {"type": "/type/datetime", "value": "2011-04-27T15:02:50.440870"}, "title": "Thoughtlines (New Windmills)", "contributions": ["Michele Paule (Editor)", "Deborah Eyre (Editor)", "Michael Jones (Editor)"], "identifiers": {"goodreads": ["2401578"]}, "isbn_13": ["9780435130596"], "covers": [2418152], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0435130595"], "publish_date": "June 18, 2002", "key": "/books/OL10242971M", "latest_revision": 5, "oclc_numbers": ["49873202"], "type": {"key": "/type/edition"}, "subjects": ["English literature: collections & anthologies of various literary forms"], "revision": 5}
+/type/edition /books/OL1024324M 5 2020-11-24T06:59:30.333168 {"other_titles": ["National Space Transportation System", "Space shuttle"], "publishers": ["D.R. Jenkins"], "identifiers": {"librarything": ["288460"]}, "subtitle": "the beginning through STS-75", "isbn_10": ["0963397443"], "covers": [726892], "lc_classifications": ["TL795.5 .J46 1996"], "latest_revision": 5, "key": "/books/OL1024324M", "authors": [{"key": "/authors/OL68519A"}], "publish_places": ["Indian Harbour Beach, Fla"], "languages": [{"key": "/languages/eng"}], "pagination": "viii, 324, 20 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part25.utf8:125792144:971"], "title": "The history of developing the National Space Transportation System", "lccn": ["96094309"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. A3-A5, 2nd group) and index."}, "number_of_pages": 324, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "edition_name": "2nd ed.", "subjects": ["Space Shuttle Program (U.S.) -- History.", "Space shuttles -- Design and construction -- History.", "Reusable space vehicles -- Design and construction -- History."], "publish_date": "1996", "publish_country": "flu", "last_modified": {"type": "/type/datetime", "value": "2020-11-24T06:59:30.333168"}, "by_statement": "by Dennis R. Jenkins.", "works": [{"key": "/works/OL813315W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10243265M 4 2021-10-04T06:29:40.595691 {"publishers": ["Heinemann Educational Books - Primary Division"], "weight": "2.1 ounces", "title": "New Heinemann Maths", "number_of_pages": 32, "isbn_13": ["9780435165222"], "physical_format": "Paperback", "isbn_10": ["0435165224"], "publish_date": "June 22, 1999", "key": "/books/OL10243265M", "authors": [{"key": "/authors/OL2702713A"}], "oclc_numbers": ["236396267"], "works": [{"key": "/works/OL8112802W"}], "type": {"key": "/type/edition"}, "subjects": ["Mathematics", "Teaching of a specific subject", "England", "For National Curriculum Key Stage 1"], "physical_dimensions": "11.4 x 8 x 0.2 inches", "source_records": ["bwb:9780435165222"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-10-04T06:29:40.595691"}}
+/type/edition /books/OL10243297M 3 2021-10-04T06:42:53.988536 {"publishers": ["Heinemann Educational Books - Primary Division"], "physical_format": "Paperback", "title": "Numbers to 100 Then 1000", "isbn_13": ["9780435169732"], "isbn_10": ["0435169734"], "key": "/books/OL10243297M", "oclc_numbers": ["343825886"], "type": {"key": "/type/edition"}, "subjects": ["Mathematics"], "works": [{"key": "/works/OL25644012W"}], "source_records": ["bwb:9780435169732"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-10-04T06:42:53.988536"}}
+/type/edition /books/OL10243639M 9 2022-12-08T06:44:25.995408 {"publishers": ["Heinemann Educational Publishers"], "identifiers": {"goodreads": ["3940617"]}, "weight": "5 ounces", "covers": [2418227], "physical_format": "Paperback", "key": "/books/OL10243639M", "authors": [{"key": "/authors/OL3401814A"}], "subjects": ["English language readers", "English literature: drama texts"], "classifications": {}, "title": "The Boss", "notes": {"type": "/type/text", "value": "High Impact"}, "number_of_pages": 31, "isbn_13": ["9780435212865"], "isbn_10": ["0435212869"], "publish_date": "April 19, 2001", "oclc_numbers": ["47063591"], "works": [{"key": "/works/OL9360299W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.4 x 6.4 x 0.2 inches", "ocaid": "bossplay0000dapr", "source_records": ["ia:bossplay0000dapr", "promise:bwb_daily_pallets_2021-06-17"], "local_id": ["urn:bwbsku:KP-279-167"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-08T06:44:25.995408"}}
+/type/edition /books/OL10243789M 4 2010-04-24T17:58:37.794889 {"publishers": ["Heinemann Educational Books - Primary Division"], "physical_format": "Ring-bound", "subtitle": "Activity Support Pack (Numeracy Focus)", "key": "/books/OL10243789M", "title": "Numeracy Focus Year 6", "identifiers": {"goodreads": ["6379058"]}, "isbn_13": ["9780435217945"], "isbn_10": ["0435217941"], "publish_date": "September 15, 1999", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T17:58:37.794889"}, "authors": [{"key": "/authors/OL2702901A"}, {"key": "/authors/OL2702902A"}, {"key": "/authors/OL866934A"}, {"key": "/authors/OL2702904A"}], "latest_revision": 4, "type": {"key": "/type/edition"}, "subjects": ["Arithmetic", "For National Curriculum Key Stage 2"], "revision": 4}
+/type/edition /books/OL10243920M 8 2022-12-09T04:30:48.177456 {"publishers": ["Heinemann Educational Publishers"], "identifiers": {"goodreads": ["5859892"]}, "physical_format": "Hardcover", "key": "/books/OL10243920M", "authors": [{"key": "/authors/OL2764833A"}], "subjects": ["English literature: drama texts"], "classifications": {}, "title": "Opportunity Knocks?", "notes": {"type": "/type/text", "value": "Heinemann Floodlights"}, "number_of_pages": 96, "isbn_13": ["9780435237264"], "isbn_10": ["0435237268"], "publish_date": "November 17, 1986", "oclc_numbers": ["18325982"], "works": [{"key": "/works/OL8319964W"}], "type": {"key": "/type/edition"}, "covers": [11424615], "ocaid": "opportunityknock0000unse", "lc_classifications": ["PR1272"], "source_records": ["ia:opportunityknock0000unse", "promise:bwb_daily_pallets_2021-01-06"], "local_id": ["urn:bwbsku:kp-070-763"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T04:30:48.177456"}}
+/type/edition /books/OL10244303M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Macmillan ELT"], "number_of_pages": 56, "isbn_13": ["9780435260491"], "isbn_10": ["0435260499"], "publish_date": "January 16, 1998", "key": "/books/OL10244303M", "title": "Kids 2 Teachers Book Judy West", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10244461M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Macmillan Education"], "title": "Wonderland 2 Teachers Castillian Read Soberon", "isbn_13": ["9780435264611"], "isbn_10": ["0435264613"], "publish_date": "August 31, 1998", "key": "/books/OL10244461M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10244609M 3 2010-08-16T21:34:46.354580 {"publishers": ["Delta Systems"], "number_of_pages": 16, "subtitle": "Starter Level (Heinemann Guided Readers)", "weight": "0.6 ounces", "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-08-16T21:34:46.354580"}, "latest_revision": 3, "key": "/books/OL10244609M", "authors": [{"key": "/authors/OL2956052A"}], "subjects": ["ELT graded readers", "General", "Language Arts / Linguistics / Literacy"], "languages": [{"key": "/languages/eng"}], "title": "The Arcade", "identifiers": {"librarything": ["5670125"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780435271619"], "isbn_10": ["043527161X"], "publish_date": "November 1999", "works": [{"key": "/works/OL8718881W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "7.9 x 4.7 x 0.2 inches", "revision": 3}
+/type/edition /books/OL10245306M 3 2011-04-26T18:35:30.743315 {"publishers": ["Macmillan ELT"], "subtitle": "Workbook 3", "last_modified": {"type": "/type/datetime", "value": "2011-04-26T18:35:30.743315"}, "title": "Smile Please!", "number_of_pages": 64, "isbn_13": ["9780435293093"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0435293095"], "publish_date": "January 15, 1999", "key": "/books/OL10245306M", "authors": [{"key": "/authors/OL2702949A"}], "latest_revision": 3, "oclc_numbers": ["227953145"], "works": [{"key": "/works/OL8113989W"}], "type": {"key": "/type/edition"}, "subjects": ["ELT: Learning Material & Coursework"], "revision": 3}
+/type/edition /books/OL1024547M 8 2022-12-05T06:06:02.774597 {"publishers": ["Leone Press"], "identifiers": {"goodreads": ["1069684"], "librarything": ["5224769"]}, "subtitle": "a missionary midwife in Sierra Leone", "isbn_10": ["0965448800"], "subject_place": ["Sierra Leone"], "pagination": "v, 246 p. :", "lc_classifications": ["BV3625.S5 O57 1996"], "key": "/books/OL1024547M", "authors": [{"key": "/authors/OL551095A"}], "publish_places": ["Milwaukee, WI"], "languages": [{"key": "/languages/eng"}], "genres": ["Biography."], "source_records": ["marc:marc_records_scriblio_net/part25.dat:219579786:821", "marc:marc_loc_updates/v35.i14.records.utf8:4153637:821", "marc:marc_loc_2016/BooksAll.2016.part25.utf8:125968452:821", "ia:contentmentisgre0000olse", "promise:bwb_daily_pallets_2022-05-25"], "title": "Contentment is great gain", "dewey_decimal_class": ["266/.0092", "B"], "number_of_pages": 246, "edition_name": "1st ed.", "lccn": ["96095021"], "subjects": ["Olsen, Lois", "Women missionaries -- Sierra Leone -- Biography", "Midwives -- Sierra Leone -- Biography", "Sierra Leone -- Missions", "Sierra Leone -- Church history"], "publish_date": "1996", "publish_country": "wiu", "by_statement": "Lois Olsen.", "works": [{"key": "/works/OL3378027W"}], "type": {"key": "/type/edition"}, "covers": [12890024], "ocaid": "contentmentisgre0000olse", "local_id": ["urn:bwbsku:O8-AZK-868"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-05T06:06:02.774597"}}
+/type/edition /books/OL10245488M 2 2011-04-29T11:20:47.533698 {"publishers": ["Delta Systems"], "languages": [{"key": "/languages/eng"}], "subtitle": "Pre-Intermediate Level", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T11:20:47.533698"}, "title": "Move Up", "number_of_pages": 96, "isbn_13": ["9780435298661"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0435298666"], "publish_date": "November 1999", "key": "/books/OL10245488M", "authors": [{"key": "/authors/OL2702920A"}, {"key": "/authors/OL2702921A"}, {"key": "/authors/OL891932A"}], "latest_revision": 2, "oclc_numbers": ["166365759"], "type": {"key": "/type/edition"}, "subjects": ["General", "Education / Teaching"], "revision": 2}
+/type/edition /books/OL10245685M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "subtitle": "Learning from Religions (Themes in RE)", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Heinemann Educational Secondary Division"], "title": "Themes in RE", "isbn_13": ["9780435307875"], "isbn_10": ["0435307878"], "publish_date": "September 29, 2002", "key": "/books/OL10245685M", "authors": [{"key": "/authors/OL2702953A"}, {"key": "/authors/OL3402094A"}], "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10245706M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Heinemann Educational Publishers"], "title": "The Modern World (Heinemann Secondary History Project)", "isbn_13": ["9780435308681"], "isbn_10": ["0435308688"], "publish_date": "September 2, 1996", "key": "/books/OL10245706M", "authors": [{"key": "/authors/OL2702411A"}, {"key": "/authors/OL2702410A"}], "type": {"key": "/type/edition"}, "subjects": ["World history: c 1500 to c 1900", "World history: from c 1900 -", "For National Curriculum Key Stage 4 & GCSE"], "revision": 1}
+/type/edition /books/OL10245707M 4 2011-06-08T09:32:38.183230 {"publishers": ["Heinemann Educational Publishers"], "identifiers": {"librarything": ["5864634"]}, "last_modified": {"type": "/type/datetime", "value": "2011-06-08T09:32:38.183230"}, "title": "Modern World (Heinemann Secondary History Project)", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "type": {"key": "/type/edition"}, "number_of_pages": 240, "covers": [2418486], "edition_name": "Foundation Ed edition", "isbn_13": ["9780435308698"], "isbn_10": ["0435308696"], "publish_date": "October 17, 1996", "key": "/books/OL10245707M", "authors": [{"key": "/authors/OL2702411A"}, {"key": "/authors/OL2702410A"}], "latest_revision": 4, "oclc_numbers": ["60279513"], "physical_format": "Paperback", "subjects": ["Special needs & learning difficulties", "World history: c 1500 to c 1900", "World history: from c 1900 -", "For National Curriculum Key Stage 4 & GCSE"], "revision": 4}
+/type/edition /books/OL10245869M 5 2013-04-02T23:54:46.011721 {"publishers": ["Heinemann Educational Publishers"], "source_records": ["amazon:0435316842"], "title": "The Making of the United Kingdom (Foundation History)", "number_of_pages": 32, "isbn_13": ["9780435316846"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Spiral-bound", "isbn_10": ["0435316842"], "publish_date": "July 8, 1994", "key": "/books/OL10245869M", "last_modified": {"type": "/type/datetime", "value": "2013-04-02T23:54:46.011721"}, "latest_revision": 5, "works": [{"key": "/works/OL159825W"}], "type": {"key": "/type/edition"}, "subjects": ["British & Irish history: c 1000 to c 1500", "United Kingdom, Great Britain", "For National Curriculum Key Stage 3"], "revision": 5}
+/type/edition /books/OL10246004M 2 2009-12-15T00:45:04.281206 {"publishers": ["Heinemann Educational Publishers"], "title": "Core Economics (Economics 16-19)", "isbn_10": ["0435331035"], "isbn_13": ["9780435331030"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:45:04.281206"}, "publish_date": "February 8, 1995", "key": "/books/OL10246004M", "authors": [{"key": "/authors/OL3402140A"}], "latest_revision": 2, "subjects": ["Designed / suitable for A & AS Level", "For GNVQ (General National Vocational Qualification)", "Economics"], "works": [{"key": "/works/OL9360859W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL1024685M 5 2020-11-24T07:53:29.428093 {"publishers": ["Plus Communications"], "number_of_pages": 510, "subtitle": "the history of the Assemblies of God of Fiji and its outreaches to other island countries throughout the South Pacific", "isbn_10": ["096563020X"], "lc_classifications": ["BX8765.5.A45 F56 1997"], "latest_revision": 5, "key": "/books/OL1024685M", "authors": [{"key": "/authors/OL551191A"}], "publish_places": ["St.Louis, MO"], "languages": [{"key": "/languages/eng"}], "pagination": "510 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part25.utf8:126090249:870"], "title": "The Spirit in paradise", "dewey_decimal_class": ["289.9/4"], "identifiers": {"goodreads": ["2893481"], "librarything": ["8385771"]}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "edition_name": "1st ed.", "lccn": ["96095442"], "subjects": ["Assemblies of God -- Fiji -- History.", "Assemblies of God -- Missions -- Oceania -- History."], "publish_date": "1997", "publish_country": "mou", "last_modified": {"type": "/type/datetime", "value": "2020-11-24T07:53:29.428093"}, "by_statement": "Lawrence R. Larson.", "oclc_numbers": ["36571098"], "works": [{"key": "/works/OL3378254W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10246965M 4 2020-08-12T06:29:56.941869 {"publishers": ["Heinemann"], "number_of_pages": 192, "subtitle": "Everybody's Business", "covers": [10334325], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2020-08-12T06:29:56.941869"}, "latest_revision": 4, "key": "/books/OL10246965M", "authors": [{"key": "/authors/OL3285282A"}, {"key": "/authors/OL3402280A"}, {"key": "/authors/OL582139A"}], "ocaid": "marketingeverybo02edneed", "subjects": ["Business studies", "Sales & marketing", "Marketing - General", "Designed / suitable for A & AS Level", "For GNVQ (General National Vocational Qualification)", "Business / Economics / Finance"], "edition_name": "2Rev Ed edition", "languages": [{"key": "/languages/eng"}], "source_records": ["ia:marketingeverybo02edneed"], "title": "Marketing", "identifiers": {"librarything": ["3679300"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780435450250"], "isbn_10": ["0435450255"], "publish_date": "December 1997", "works": [{"key": "/works/OL13265694W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10247171M 6 2011-04-22T23:56:07.913760 {"publishers": ["Heinemann Educational Secondary Division"], "number_of_pages": 108, "weight": "3 pounds", "covers": [2418941], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-22T23:56:07.913760"}, "latest_revision": 6, "key": "/books/OL10247171M", "authors": [{"key": "/authors/OL3402320A"}], "subjects": ["Personal & public health", "Social welfare & social services"], "title": "AVCE Edexcel Optional Unit", "identifiers": {"goodreads": ["5671196"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780435456900"], "isbn_10": ["0435456903"], "publish_date": "July 26, 2002", "oclc_numbers": ["50494550"], "works": [{"key": "/works/OL9361042W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "16.1 x 12.4 x 5 inches", "revision": 6}
+/type/edition /books/OL1024783M 3 2020-11-24T07:54:45.355544 {"publishers": ["F B Publications"], "subject_place": ["South Carolina"], "lc_classifications": ["CS71.K28 1996"], "latest_revision": 3, "key": "/books/OL1024783M", "authors": [{"key": "/authors/OL551251A"}], "publish_places": ["Tucson, Ariz"], "edition_name": "1st ed.", "pagination": "vi, 271 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part25.utf8:126174646:737"], "title": "Keith family of South Carolina", "dewey_decimal_class": ["929/.2/0973"], "notes": {"type": "/type/text", "value": "Includes index."}, "number_of_pages": 271, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["96096252"], "subjects": ["Keith family.", "South Carolina -- Genealogy."], "publish_date": "1996", "publish_country": "azu", "last_modified": {"type": "/type/datetime", "value": "2020-11-24T07:54:45.355544"}, "by_statement": "[Frances B. Burrows].", "oclc_numbers": ["37810417"], "works": [{"key": "/works/OL3378434W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL1024791M 6 2020-11-24T07:54:51.369116 {"publishers": ["TRB Enterprises"], "number_of_pages": 220, "subtitle": "behind the rhythm and the blues", "isbn_10": ["0963172255"], "lc_classifications": ["ML3521 .B355 1996"], "latest_revision": 6, "key": "/books/OL1024791M", "authors": [{"key": "/authors/OL551257A"}], "publish_places": ["[New Bedford, MA"], "pagination": "220 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part25.utf8:126180389:667"], "title": "Group harmony", "dewey_decimal_class": ["782.4164/3/0922", "B"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 219-220)."}, "identifiers": {"librarything": ["7812099"], "goodreads": ["4529904"]}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["96096294"], "subjects": ["Rhythm and blues music -- History and criticism."], "publish_date": "1996", "publish_country": "mau", "last_modified": {"type": "/type/datetime", "value": "2020-11-24T07:54:51.369116"}, "by_statement": "by Todd R. Baptista.", "oclc_numbers": ["35198769"], "works": [{"key": "/works/OL3378448W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL10248229M 9 2022-12-07T02:41:50.465204 {"notes": {"type": "/type/text", "value": "Heinemann School Management"}, "identifiers": {"goodreads": ["7054443"]}, "title": "Working with Parents", "authors": [{"key": "/authors/OL3402543A"}], "publish_date": "November 1, 2001", "publishers": ["Heinemann Educational Secondary Division"], "covers": [2419215], "physical_format": "Paperback", "subjects": ["Teacher training", "Teaching skills & techniques"], "edition_name": "New edition", "isbn_13": ["9780435800574"], "isbn_10": ["0435800574"], "oclc_numbers": ["48690836"], "type": {"key": "/type/edition"}, "ocaid": "workingwithparen0000shah", "source_records": ["ia:workingwithparen0000shah", "promise:bwb_daily_pallets_2022-03-17"], "key": "/books/OL10248229M", "number_of_pages": 314, "works": [{"key": "/works/OL9361230W"}], "local_id": ["urn:bwbsku:KP-102-661"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-07T02:41:50.465204"}}
+/type/edition /books/OL10248262M 8 2020-08-28T07:54:41.949309 {"publishers": ["Heinemann Educational Publishers"], "number_of_pages": 70, "weight": "6.4 ounces", "covers": [2419221], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2020-08-28T07:54:41.949309"}, "latest_revision": 8, "key": "/books/OL10248262M", "authors": [{"key": "/authors/OL193008A"}], "ocaid": "memory0000moxo", "subjects": ["Memory", "Psychology", "Designed / suitable for A & AS Level"], "classifications": {}, "source_records": ["ia:memory0000moxo"], "title": "Memory", "notes": {"type": "/type/text", "value": "Heinemann Themes in Psychology"}, "identifiers": {"goodreads": ["5435275"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780435806521"], "isbn_10": ["0435806521"], "publish_date": "June 9, 2000", "oclc_numbers": ["44654305"], "works": [{"key": "/works/OL1696841W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.2 x 7.6 x 0.2 inches", "revision": 8}
+/type/edition /books/OL10248274M 5 2022-12-09T15:37:50.719787 {"publishers": ["Heinemann Educational Publishers"], "number_of_pages": 96, "weight": "9.9 ounces", "covers": [2419230], "physical_format": "Paperback", "key": "/books/OL10248274M", "authors": [{"key": "/authors/OL530979A"}], "subjects": ["Citizenship", "For National Curriculum Key Stage 3"], "title": "Citizenship in Action", "identifiers": {"librarything": ["5948170"]}, "isbn_13": ["9780435808020"], "isbn_10": ["0435808028"], "publish_date": "January 27, 2003", "works": [{"key": "/works/OL3258482W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.2 x 8.4 x 0.3 inches", "local_id": ["urn:bwbsku:KO-496-266"], "source_records": ["promise:bwb_daily_pallets_2020-11-19"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T15:37:50.719787"}}
+/type/edition /books/OL10248416M 6 2020-10-12T03:11:47.435500 {"publishers": ["Heinemann"], "covers": [2419283], "physical_format": "Paperback", "lc_classifications": [""], "latest_revision": 6, "key": "/books/OL10248416M", "authors": [{"key": "/authors/OL411830A"}], "subjects": ["People & Places - Africa", "English", "English language readers", "Fiction", "Children's Books/All Ages"], "isbn_13": ["9780435892357"], "source_records": ["bwb:9780435892357"], "title": "Lindiwi Finds a Way", "number_of_pages": 58, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0435892355"], "publish_date": "May 1992", "last_modified": {"type": "/type/datetime", "value": "2020-10-12T03:11:47.435500"}, "oclc_numbers": ["29263126"], "works": [{"key": "/works/OL2786430W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL10248500M 2 2010-04-13T05:18:12.526393 {"publishers": ["Heinemann International Literature and Textbooks"], "subtitle": "Monday Morning (Junior African Writers)", "isbn_10": ["0435896792"], "number_of_pages": 16, "isbn_13": ["9780435896799"], "covers": [2419313], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:18:12.526393"}, "publish_date": "January 17, 1995", "key": "/books/OL10248500M", "authors": [{"key": "/authors/OL3402637A"}, {"key": "/authors/OL3402638A"}], "title": "JAWS Starters, Level 1", "latest_revision": 2, "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10248532M 5 2012-06-01T04:33:05.390597 {"publishers": ["Heinemann (Txt)"], "identifiers": {"goodreads": ["969777"]}, "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2012-06-01T04:33:05.390597"}, "latest_revision": 5, "key": "/books/OL10248532M", "authors": [{"key": "/authors/OL362529A"}], "subjects": ["Africa", "Engineers", "Fiction", "Nigeria"], "isbn_13": ["9780435900328"], "classifications": {}, "title": "Kinsman and Foreman", "notes": {"type": "/type/text", "value": "African Writers"}, "number_of_pages": 208, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0435900323"], "publish_date": "June 1966", "works": [{"key": "/works/OL2553470W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10248625M 8 2022-12-09T15:45:37.529373 {"publishers": ["Heinemann Educational Books - Primary Division"], "physical_format": "Paperback", "lc_classifications": [""], "source_records": ["bwb:9780435910839", "ia:junglequest0000burc", "promise:bwb_daily_pallets_2020-11-19"], "title": "Jungle Quest (Rapid)", "identifiers": {"goodreads": ["992660"]}, "isbn_13": ["9780435910839"], "isbn_10": ["0435910833"], "publish_date": "September 3, 2007", "key": "/books/OL10248625M", "authors": [{"key": "/authors/OL2678439A"}, {"key": "/authors/OL2678440A"}], "oclc_numbers": ["236412516"], "works": [{"key": "/works/OL21014692W"}], "type": {"key": "/type/edition"}, "subjects": ["English language reading schemes"], "covers": [10621195], "ocaid": "junglequest0000burc", "local_id": ["urn:bwbsku:KO-274-766"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T15:45:37.529373"}}
+/type/edition /books/OL10248717M 2 2009-12-15T00:45:05.463253 {"publishers": ["Heinemann International Literature & Textbooks"], "key": "/books/OL10248717M", "title": "The Bluest of Moons", "isbn_13": ["9780435935115"], "physical_format": "Paperback", "isbn_10": ["0435935119"], "publish_date": "December 16, 1994", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:45:05.463253"}, "authors": [{"key": "/authors/OL3402708A"}], "latest_revision": 2, "works": [{"key": "/works/OL9361490W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10248857M 3 2022-11-17T20:47:16.764233 {"publishers": ["Secker & Warburg"], "key": "/books/OL10248857M", "title": "Skull Charlotte Corday (436203464", "isbn_13": ["9780436200151"], "physical_format": "Hardcover", "isbn_10": ["0436200155"], "authors": [{"key": "/authors/OL382255A"}], "works": [{"key": "/works/OL2623872W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780436200151"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T20:47:16.764233"}}
+/type/edition /books/OL10248907M 9 2022-12-08T06:28:20.773913 {"publishers": ["Trafalgar Square Publishing"], "identifiers": {"librarything": ["8235998"], "goodreads": ["1821942"]}, "languages": [{"key": "/languages/eng"}], "number_of_pages": 64, "isbn_13": ["9780436242359"], "physical_format": "Paperback", "isbn_10": ["0436242354"], "publish_date": "July 1988", "key": "/books/OL10248907M", "authors": [{"key": "/authors/OL3402761A"}], "title": "Legend of True Labour", "oclc_numbers": ["16094584"], "works": [{"key": "/works/OL9361542W"}], "type": {"key": "/type/edition"}, "subjects": ["Works by individual poets: from c 1900 -", "General", "20th Century English Poetry", "Fiction - General", "English", "Poetry"], "covers": [12291738], "ocaid": "legendoftruelabo0000lapi", "lc_classifications": ["PR6062.A6", "PR6062.A6/"], "source_records": ["ia:legendoftruelabo0000lapi", "bwb:9780436242359", "promise:bwb_daily_pallets_2021-06-17"], "local_id": ["urn:bwbsku:KP-830-535"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-08T06:28:20.773913"}}
+/type/edition /books/OL10249392M 10 2022-12-17T03:45:44.725232 {"publishers": ["Scholastic Point"], "number_of_pages": 208, "weight": "5.6 ounces", "covers": [2419429], "physical_format": "Paperback", "key": "/books/OL10249392M", "authors": [{"key": "/authors/OL235631A"}], "contributions": ["Polly Dunbar (Illustrator)"], "subjects": ["Modern language learning material", "For National Curriculum Key Stage 4 & GCSE", "French"], "title": "French (Alternative GCSE Guides)", "identifiers": {"librarything": ["8544241"], "goodreads": ["6866285"]}, "isbn_13": ["9780439012683"], "isbn_10": ["0439012686"], "publish_date": "January 19, 2001", "oclc_numbers": ["45314763"], "works": [{"key": "/works/OL1962898W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "7.7 x 5 x 0.7 inches", "ocaid": "frenchexamsucces0000wrig", "source_records": ["ia:frenchexamsucces0000wrig", "promise:bwb_daily_pallets_2022-03-17", "bwb:9780439012683"], "local_id": ["urn:bwbsku:KP-104-255"], "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T03:45:44.725232"}}
+/type/edition /books/OL10250046M 5 2022-02-28T15:35:12.034846 {"publishers": ["Scholastic"], "weight": "6.6 ounces", "covers": [2419673], "physical_format": "Paperback", "key": "/books/OL10250046M", "authors": [{"key": "/authors/OL3402895A"}], "subjects": ["Computers & Technology", "Elementary", "Teaching Methods & Materials - Classroom Planning", "Teaching Methods & Materials - General", "Education", "Education / Teaching"], "isbn_13": ["9780439138970"], "languages": [{"key": "/languages/eng"}], "title": "HyperStudio Made Very Easy! (Grades 3-5)", "number_of_pages": 64, "first_sentence": {"type": "/type/text", "value": "Students learn about HyperStudio, including how to use some basic tools."}, "isbn_10": ["0439138973"], "publish_date": "August 1, 2000", "oclc_numbers": ["45695962"], "works": [{"key": "/works/OL9361776W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.8 x 8.4 x 0.2 inches", "source_records": ["bwb:9780439138970"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-28T15:35:12.034846"}}
+/type/edition /books/OL1025008M 4 2020-11-24T08:47:19.946117 {"publishers": ["R.G. Chesley"], "subtitle": "grandpa's war stories", "lc_classifications": ["MLCM 97/08738 (D)"], "latest_revision": 4, "key": "/books/OL1025008M", "authors": [{"key": "/authors/OL551350A"}], "publish_places": ["Wakefield, Mass"], "pagination": "xviii, 154 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part25.utf8:126375785:494"], "title": "Surrender, armistice", "lccn": ["96096951"], "number_of_pages": 154, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["096541440X"], "publish_date": "1996", "publish_country": "mau", "last_modified": {"type": "/type/datetime", "value": "2020-11-24T08:47:19.946117"}, "by_statement": "by Raymond G. Chesley.", "oclc_numbers": ["37293105"], "works": [{"key": "/works/OL3378720W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10250840M 8 2018-09-29T05:45:48.961448 {"publishers": ["Scholastic"], "number_of_pages": 30, "covers": [8255057], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2018-09-29T05:45:48.961448"}, "latest_revision": 8, "key": "/books/OL10250840M", "authors": [{"key": "/authors/OL329907A"}], "ocaid": "letstalkaboutbei0000berr_k6j8", "isbn_13": ["9780439341608"], "source_records": ["ia:letstalkaboutbei0000berr_k6j8"], "title": "Let's Talk about Being Shy (Let's Talk About...)", "identifiers": {"goodreads": ["1412581"], "librarything": ["3435753"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0439341604"], "publish_date": "January 2002", "oclc_numbers": ["57229556"], "works": [{"key": "/works/OL4142096W"}], "type": {"key": "/type/edition"}, "revision": 8}
+/type/edition /books/OL10250862M 13 2022-12-17T16:15:26.217494 {"publishers": ["Scholastic"], "number_of_pages": 16, "covers": [10064658], "physical_format": "Hardcover", "key": "/books/OL10250862M", "authors": [{"key": "/authors/OL30892A"}], "ocaid": "verybigpotato0000cher", "subjects": ["Juvenile fiction", "Potatoes"], "isbn_13": ["9780439350761"], "source_records": ["ia:verybigpotato0000cher", "marc:marc_loc_2016/BooksAll.2016.part30.utf8:223349791:560", "promise:bwb_daily_pallets_2021-03-08", "promise:bwb_daily_pallets_2020-12-15", "bwb:9780439350761"], "title": "The Very Big Potato", "identifiers": {"goodreads": ["3003100"], "librarything": ["5718079"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["043935076X"], "publish_date": "January 2002", "oclc_numbers": ["53097143"], "works": [{"key": "/works/OL15126405W"}], "type": {"key": "/type/edition"}, "lccn": ["2003270821"], "lc_classifications": ["PZ7.C41985 Ve 2002", "PZ7.C41985Ve 2002"], "local_id": ["urn:bwbsku:O7-ABH-307", "urn:bwbsku:O7-AEX-003", "urn:bwbsku:O7-AFS-878"], "latest_revision": 13, "revision": 13, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T16:15:26.217494"}}
+/type/edition /books/OL10251054M 5 2020-10-12T04:20:55.371687 {"publishers": ["Teaching Resources"], "subtitle": "Welcome School Of Fish (Scholastic Bulletin Boards)", "weight": "9.6 ounces", "covers": [2419916], "physical_format": "Paperback", "lc_classifications": [""], "latest_revision": 5, "key": "/books/OL10251054M", "authors": [{"key": "/authors/OL2703403A"}], "subjects": ["Education", "Teaching Methods & Materials - General", "Education / Teaching Methods & Materials / General", "Education / Teaching"], "isbn_13": ["9780439391771"], "source_records": ["bwb:9780439391771"], "title": "Welcome School Of Fish", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0439391776"], "publish_date": "May 1, 2002", "last_modified": {"type": "/type/datetime", "value": "2020-10-12T04:20:55.371687"}, "works": [{"key": "/works/OL8115778W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "21.9 x 17.9 x 0.3 inches", "revision": 5}
+/type/edition /books/OL1025119M 4 2020-11-24T23:27:05.686611 {"publishers": ["Jornal de Cultura Publicac\u0327o\u0303es e Artes Gra\u0301ficas"], "subtitle": "o 1\u2080 movimento autonomista", "isbn_10": ["9727550010"], "subject_place": ["Azores"], "lc_classifications": ["JN8661.A952 L45 1995", "DP702.A81 C66 1938b"], "latest_revision": 4, "key": "/books/OL1025119M", "authors": [{"key": "/authors/OL551415A"}], "publish_places": ["Ponta Delgada"], "pagination": "502 p. ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part25.utf8:126473785:1093", "marc:marc_loc_2016/BooksAll.2016.part25.utf8:158235149:855"], "title": "Poli\u0301tica e administrac\u0327a\u0303o nos Ac\u0327ores de 1890 a 1910", "lccn": ["96100070", "96144466"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 451-502).\nOriginally presented as the author's thesis (doctoral)--Univesidade dos Ac\u0327ores.\nAccompanied by: Anexos. 89 p. : ill. ; 23 cm."}, "number_of_pages": 502, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/por"}], "subjects": ["Elections -- Azores -- History.", "Azores -- Politics and government.", "Azores -- History -- Autonomy and independence movements."], "publish_date": "1995", "publish_country": "po ", "last_modified": {"type": "/type/datetime", "value": "2020-11-24T23:27:05.686611"}, "series": ["Colecc\u0327a\u0303o Autonomia ;", "11", "Colecc\u0327a\u0303o Autonomia (Azores) ;", "11."], "by_statement": "Jose\u0301 Guilherme Reis Leite.", "works": [{"key": "/works/OL3378880W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL1025124M 2 2020-11-24T08:48:42.312822 {"publishers": ["Die Kunstsammlungen"], "subtitle": "Ausstellung des Kupferstich-Kabinetts der Staatlichen Kunstsammlungen Dresden vom 28. Ma\u0308rz bis 5. Juni 1995 im Albertinum", "series": ["Sammeln und bewahren ;", "73"], "lc_classifications": ["NE491 .E75 1995"], "latest_revision": 2, "key": "/books/OL1025124M", "publish_places": ["[Dresden"], "contributions": ["Schmidt, Werner, art critic.", "Dittrich, Christian.", "Staatliche Kunstsammlungen Dresden. Kupferstich-Kabinett.", "Albertinum (Dresden, Germany)"], "subject_time": ["20th century"], "pagination": "63 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part25.utf8:126478164:1161"], "title": "Erwerbungen, 1959-1990", "lccn": ["96100076"], "number_of_pages": 63, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/ger"}], "subjects": ["Staatliche Kunstsammlungen Dresden. Kupferstich-Kabinett -- Exhibitions.", "Prints -- 20th century -- Exhibitions.", "Prints -- Germany -- Dresden -- Exhibitions.", "Drawing -- 20th century -- Exhibitions.", "Drawing -- Germany -- Dresden -- Exhibitions."], "publish_date": "1995", "publish_country": "gw ", "last_modified": {"type": "/type/datetime", "value": "2020-11-24T08:48:42.312822"}, "subject_place": ["Germany", "Dresden"], "by_statement": "[Auswahl und Ausstellung], Werner Schmidt ; [Katalogbearbeitung, Christian Dittrich].", "works": [{"key": "/works/OL23614212W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10251562M 5 2020-08-28T08:33:20.564749 {"publishers": ["Scholastic Teaching Resources"], "weight": "11.2 ounces", "covers": [2420076], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2020-08-28T08:33:20.564749"}, "latest_revision": 5, "key": "/books/OL10251562M", "authors": [{"key": "/authors/OL2703421A"}], "subjects": ["General", "Education / General", "Teaching Methods & Materials - General", "Education", "Education / Teaching"], "isbn_13": ["9780439492874"], "source_records": ["bwb:9780439492874"], "title": "Character Signs! Bulletin Board", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0439492874"], "publish_date": "April 1, 2002", "oclc_numbers": ["58748003"], "works": [{"key": "/works/OL8116043W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "24 x 18.2 x 0.4 inches", "revision": 5}
+/type/edition /books/OL10252019M 8 2022-12-05T19:43:54.453850 {"publishers": ["Scholastic"], "identifiers": {"librarything": ["3309423"], "goodreads": ["1860003"]}, "languages": [{"key": "/languages/eng"}], "number_of_pages": 81, "isbn_13": ["9780439587501"], "physical_format": "Hardcover", "isbn_10": ["0439587506"], "publish_date": "January 2005", "key": "/books/OL10252019M", "authors": [{"key": "/authors/OL247142A"}], "title": "Robert and the Stolen Bike", "oclc_numbers": ["65220372"], "works": [{"key": "/works/OL2040631W"}], "type": {"key": "/type/edition"}, "covers": [12829229], "ocaid": "robertstolenbike0000seul", "lc_classifications": ["PZ7.S5135 Rm 2005"], "source_records": ["ia:robertstolenbike0000seul", "promise:bwb_daily_pallets_2022-04-01"], "local_id": ["urn:bwbsku:T2-COB-426"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-05T19:43:54.453850"}}
+/type/edition /books/OL10252444M 9 2022-12-17T16:42:15.678545 {"publishers": ["Scholastic Press"], "identifiers": {"librarything": ["4172860"], "goodreads": ["3163377"]}, "covers": [2420385], "physical_format": "Hardcover", "key": "/books/OL10252444M", "authors": [{"key": "/authors/OL29042A"}], "ocaid": "gogoamerica0000yacc", "subjects": ["Juvenile Nonfiction", "Children's Books/Ages 9-12 Nonfiction", "Children: Grades 3-4", "People & Places - United States", "Juvenile Nonfiction / Travel", "Travel"], "edition_name": "Har/Rei edition", "languages": [{"key": "/languages/eng"}], "source_records": ["amazon:0439703387", "ia:gogoamerica0000yacc", "marc:marc_loc_2016/BooksAll.2016.part34.utf8:107212300:2129", "bwb:9780439703383"], "title": "Go, Go America", "number_of_pages": 80, "isbn_13": ["9780439703383"], "isbn_10": ["0439703387"], "publish_date": "April 1, 2008", "works": [{"key": "/works/OL80553W"}], "type": {"key": "/type/edition"}, "lccn": ["2007005733"], "lc_classifications": ["E180 .Y24 2008", "E180.Y24 2008"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T16:42:15.678545"}}
+/type/edition /books/OL10252808M 3 2011-04-28T21:19:06.806703 {"publishers": ["Scholastic"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-28T21:19:06.806703"}, "title": "The Day Nobody Shared (Friendship Club)", "identifiers": {"librarything": ["4449978"]}, "isbn_13": ["9780439799904"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0439799902"], "publish_date": "2005", "key": "/books/OL10252808M", "latest_revision": 3, "oclc_numbers": ["71230299"], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10252879M 2 2009-12-15T00:45:08.323808 {"publishers": ["Scholastic"], "subtitle": "Professional Guide, Level 1 (2006 Spiral-Bound Edition w. Teacher Resources CD)", "title": "Scholastic Zip Zoom English", "isbn_10": ["0439815258"], "number_of_pages": 269, "physical_format": "Spiral-bound", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:45:08.323808"}, "publish_date": "2006", "key": "/books/OL10252879M", "authors": [{"key": "/authors/OL2703421A"}], "latest_revision": 2, "works": [{"key": "/works/OL8116270W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10252890M 9 2022-11-15T13:34:32.076170 {"subtitle": "Dragons of Deltora #3", "weight": "4 ounces", "series": ["Dragons of Deltora (3)"], "covers": [9451899], "physical_format": "Mass Market Paperback", "key": "/books/OL10252890M", "authors": [{"key": "/authors/OL437811A"}], "ocaid": "dragonsofdeltora00emil", "classifications": {}, "title": "Isle of the Dead", "identifiers": {"librarything": ["111137"], "goodreads": ["1804804"]}, "isbn_10": ["0439821053"], "oclc_numbers": ["56980829"], "works": [{"key": "/works/OL2887019W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "7.5 x 5 x 0.6 inches", "source_records": ["amazon:0439821053"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-15T13:34:32.076170"}}
+/type/edition /books/OL10253090M 11 2020-10-12T13:50:13.242058 {"publishers": ["GRAPHIX"], "number_of_pages": 112, "isbn_10": ["0439879957"], "covers": [2420627], "physical_format": "Paperback", "lc_classifications": [""], "latest_revision": 11, "key": "/books/OL10253090M", "authors": [{"key": "/authors/OL1421858A"}], "ocaid": "magicpicklegraph00scot", "subjects": ["Comics & Graphic Novels - General", "Juvenile Fiction / Comics & Graphic Novels", "Juvenile Fiction", "Children's Books/Ages 9-12 Graphic Novels", "Children: Grades 3-4"], "isbn_13": ["9780439879958"], "source_records": ["ia:magicpicklegraph00mors", "marc:marc_openlibraries_sanfranciscopubliclibrary/sfpl_chq_2018_12_24_run04.mrc:362263453:3624", "bwb:9780439879958"], "title": "Magic Pickle Graphic Novel", "identifiers": {"goodreads": ["3003044"], "librarything": ["4552928"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "local_id": ["urn:sfpl:31223110527729", "urn:sfpl:31223106486492", "urn:sfpl:31223110527760", "urn:sfpl:31223107225329", "urn:sfpl:31223107225345", "urn:sfpl:31223110527737", "urn:sfpl:31223107225303", "urn:sfpl:31223110527745"], "publish_date": "May 1, 2008", "last_modified": {"type": "/type/datetime", "value": "2020-10-12T13:50:13.242058"}, "works": [{"key": "/works/OL5801005W"}], "type": {"key": "/type/edition"}, "revision": 11}
+/type/edition /books/OL10253223M 6 2022-12-03T21:32:43.462390 {"publishers": ["Scholastic, Inc."], "languages": [{"key": "/languages/eng"}], "classifications": {}, "title": "Goosebumps Megapack", "notes": {"type": "/type/text", "value": "Goosebumps"}, "identifiers": {"goodreads": ["791824"]}, "physical_format": "Paperback", "isbn_10": ["043992099X"], "publish_date": "2001", "key": "/books/OL10253223M", "authors": [{"key": "/authors/OL35524A"}], "works": [{"key": "/works/OL9362123W"}], "type": {"key": "/type/edition"}, "source_records": ["amazon:043992099X"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-03T21:32:43.462390"}}
+/type/edition /books/OL10253316M 8 2022-12-17T04:46:56.687487 {"publishers": ["Scholastic"], "identifiers": {"goodreads": ["3138473"]}, "covers": [2420783], "physical_format": "Paperback", "key": "/books/OL10253316M", "authors": [{"key": "/authors/OL19897A"}], "contributions": ["Colin Elgie (Illustrator)", "Laszlo Veres (Illustrator)", "Linda Jones (Illustrator)"], "subjects": ["Inventions", "Teaching of a specific subject"], "title": "Inventions (Hot Topics)", "number_of_pages": 80, "isbn_13": ["9780439945110"], "isbn_10": ["0439945119"], "publish_date": "January 7, 2008", "oclc_numbers": ["181068832"], "works": [{"key": "/works/OL15118689W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:KQ-145-135"], "source_records": ["promise:bwb_daily_pallets_2022-03-17", "bwb:9780439945110"], "lc_classifications": ["LB1585.5"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T04:46:56.687487"}}
+/type/edition /books/OL10253701M 3 2022-12-17T03:13:29.852502 {"publishers": ["Scholastic"], "physical_format": "Hardcover", "weight": "15.5 ounces", "title": "My Story Boys Slipcase (My Story)", "number_of_pages": 448, "isbn_13": ["9780439980654"], "isbn_10": ["0439980658"], "publish_date": "November 15, 2002", "key": "/books/OL10253701M", "oclc_numbers": ["50580854"], "type": {"key": "/type/edition"}, "subjects": ["European history (ie other than Britain & Ireland)", "Fiction"], "physical_dimensions": "7 x 5.2 x 1.6 inches", "works": [{"key": "/works/OL32343515W"}], "source_records": ["bwb:9780439980654"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T03:13:29.852502"}}
+/type/edition /books/OL10253705M 9 2022-12-17T03:46:36.555560 {"publishers": ["Scholastic"], "number_of_pages": 48, "weight": "3.5 ounces", "covers": [2421046], "physical_format": "Paperback", "key": "/books/OL10253705M", "authors": [{"key": "/authors/OL225113A"}], "contributions": ["Lesley Harker (Illustrator)"], "subjects": ["Fiction"], "title": "Beetle and Lulu (Colour Young Hippo: Beetle & Friends)", "identifiers": {"goodreads": ["1971080"], "amazon": [""]}, "isbn_13": ["9780439981019"], "isbn_10": ["0439981018"], "publish_date": "June 21, 2002", "oclc_numbers": ["49240181"], "works": [{"key": "/works/OL1880455W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8 x 5.7 x 0.2 inches", "ocaid": "beetlelulu0000mcka", "source_records": ["ia:beetlelulu0000mcka", "promise:bwb_daily_pallets_2020-09-09", "bwb:9780439981019"], "local_id": ["urn:bwbsku:KN-565-659"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T03:46:36.555560"}}
+/type/edition /books/OL10253853M 6 2022-12-17T05:40:49.680385 {"publishers": ["Scholastic Hippo"], "physical_format": "Paperback", "title": "The Very Sticky Christmas Book", "number_of_pages": 16, "covers": [2421179], "edition_name": "New Ed edition", "isbn_13": ["9780439992350"], "isbn_10": ["0439992354"], "publish_date": "October 19, 2001", "key": "/books/OL10253853M", "authors": [{"key": "/authors/OL26657A"}], "oclc_numbers": ["316545288"], "type": {"key": "/type/edition"}, "subjects": ["Christmas books", "Picture books", "Sticker & stamp books"], "works": [{"key": "/works/OL26451157W"}], "ocaid": "verystickychrist0000shar", "source_records": ["ia:verystickychrist0000shar", "promise:bwb_daily_pallets_2021-04-01", "bwb:9780439992350"], "local_id": ["urn:bwbsku:P7-AUL-350"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T05:40:49.680385"}}
+/type/edition /books/OL10253924M 9 2022-12-17T03:12:26.203028 {"publishers": ["Scholastic Point"], "number_of_pages": 224, "title": "Dissolvers (Mutant Point Horror)", "physical_format": "Paperback", "identifiers": {"librarything": ["6207143"], "goodreads": ["1520438"]}, "covers": [2421241], "isbn_13": ["9780439996389"], "isbn_10": ["0439996384"], "publish_date": "September 15, 2000", "key": "/books/OL10253924M", "authors": [{"key": "/authors/OL1930884A"}, {"key": "/authors/OL541654A"}], "oclc_numbers": ["45316322"], "type": {"key": "/type/edition"}, "subjects": ["Fiction"], "works": [{"key": "/works/OL31374127W"}], "local_id": ["urn:bwbsku:KP-444-702"], "source_records": ["promise:bwb_daily_pallets_2022-03-17", "bwb:9780439996389"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T03:12:26.203028"}}
+/type/edition /books/OL10254090M 7 2020-12-23T11:34:56.196717 {"publishers": ["Dell Publishing"], "physical_format": "Paperback", "source_records": ["amazon:0440016630", "marc:marc_loc_updates/v37.i03.records.utf8:9841968:896", "marc:marc_loc_2016/BooksAll.2016.part36.utf8:218990802:896"], "title": "Darkness at Dawn", "identifiers": {"goodreads": ["1750414"]}, "isbn_13": ["9780440016632"], "isbn_10": ["0440016630"], "publish_date": "January 1983", "key": "/books/OL10254090M", "authors": [{"key": "/authors/OL3065654A"}], "oclc_numbers": ["9329030"], "works": [{"key": "/works/OL8898725W"}], "type": {"key": "/type/edition"}, "subjects": ["Fiction"], "lccn": ["2009358296"], "lc_classifications": ["CPB Box no. 2827 vol. 9"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-23T11:34:56.196717"}}
+/type/edition /books/OL10254238M 5 2018-01-30T05:05:41.177167 {"publishers": ["Dell Publishing"], "physical_format": "Paperback", "source_records": ["ia:lostladyoflarami0000will"], "title": "Lost Lady of Laramie", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2018-01-30T05:05:41.177167"}, "covers": [5047053], "isbn_13": ["9780440050346"], "isbn_10": ["0440050340"], "publish_date": "April 1982", "latest_revision": 5, "key": "/books/OL10254238M", "authors": [{"key": "/authors/OL3403287A"}], "ocaid": "lostladyoflarami0000will", "oclc_numbers": ["8422084"], "works": [{"key": "/works/OL9362275W"}], "type": {"key": "/type/edition"}, "subjects": ["Fiction"], "revision": 5}
+/type/edition /books/OL10254510M 8 2022-12-08T09:31:02.225007 {"publishers": ["Dell Publishing"], "physical_format": "Paperback", "title": "Adam's Child", "identifiers": {"librarything": ["3420061"], "goodreads": ["1683921"]}, "isbn_13": ["9780440109174"], "isbn_10": ["0440109175"], "publish_date": "October 1, 1978", "key": "/books/OL10254510M", "authors": [{"key": "/authors/OL2345710A"}], "oclc_numbers": ["4734050"], "works": [{"key": "/works/OL7640414W"}], "type": {"key": "/type/edition"}, "subjects": ["Fiction", "General"], "local_id": ["urn:bwbsku:P7-AGP-315"], "source_records": ["promise:bwb_daily_pallets_2021-06-03"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-08T09:31:02.225007"}}
+/type/edition /books/OL10255103M 5 2020-05-20T23:59:55.976720 {"publishers": ["Dell Publishing"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2020-05-20T23:59:55.976720"}, "title": "Portrait of Love", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "covers": [9860704], "isbn_13": ["9780440170136"], "isbn_10": ["0440170133"], "publish_date": "February 1, 1981", "latest_revision": 5, "key": "/books/OL10255103M", "authors": [{"key": "/authors/OL33117A"}], "ocaid": "portraitoflove00jean", "oclc_numbers": ["7338420"], "works": [{"key": "/works/OL497585W"}], "type": {"key": "/type/edition"}, "subjects": ["Fiction", "General"], "revision": 5}
+/type/edition /books/OL10255122M 8 2020-11-30T01:30:44.666271 {"publishers": ["Dell Publishing"], "isbn_10": ["044017189X"], "physical_format": "Paperback", "lc_classifications": ["CPB Box no. 1192 vol. 10"], "latest_revision": 8, "key": "/books/OL10255122M", "authors": [{"key": "/authors/OL371636A"}], "source_records": ["amazon:044017189X", "marc:marc_loc_updates/v38.i33.records.utf8:16921752:699", "marc:marc_loc_2016/BooksAll.2016.part27.utf8:175089211:699"], "title": "A Question of Honor (Supreme No 68)", "lccn": ["98815246"], "identifiers": {"goodreads": ["652028"], "librarything": ["4960536"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780440171898"], "subjects": ["Romance: Regency"], "publish_date": "March 1985", "last_modified": {"type": "/type/datetime", "value": "2020-11-30T01:30:44.666271"}, "oclc_numbers": ["25046464"], "works": [{"key": "/works/OL2590082W"}], "type": {"key": "/type/edition"}, "revision": 8}
+/type/edition /books/OL1025537M 5 2020-11-24T08:54:16.441781 {"publishers": ["Rabe\u0301n & Sjo\u0308gren"], "lc_classifications": ["PZ59.H36 F46 1980"], "latest_revision": 5, "key": "/books/OL1025537M", "authors": [{"key": "/authors/OL71119A"}], "publish_places": ["Stockholm"], "contributions": ["Olsen, Ib Spang, ill."], "pagination": "1 v. (unpaged) :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part25.utf8:126838437:530"], "title": "Fem prinsar", "lccn": ["96100587"], "identifiers": {"goodreads": ["343268"], "librarything": ["4189451"]}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/swe"}], "isbn_10": ["9129533538"], "publish_date": "1980", "publish_country": "sw ", "last_modified": {"type": "/type/datetime", "value": "2020-11-24T08:54:16.441781"}, "by_statement": "Lennart Hellsing ; tecknat av Ib Spang Olsen.", "works": [{"key": "/works/OL832342W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10255579M 3 2010-08-17T12:22:45.911544 {"publishers": ["Dell Publishing Company"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-08-17T12:22:45.911544"}, "title": "Danielle Steel, No 2", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780440360490"], "edition_name": "Boxed edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0440360498"], "publish_date": "November 1992", "key": "/books/OL10255579M", "authors": [{"key": "/authors/OL24452A"}], "latest_revision": 3, "works": [{"key": "/works/OL14873368W"}], "type": {"key": "/type/edition"}, "subjects": ["Romance - Contemporary", "General", "Fiction - General", "Fiction"], "physical_dimensions": "6.7 x 4.3 x 3.5 inches", "revision": 3}
+/type/edition /books/OL10255894M 5 2022-12-10T11:33:05.465255 {"publishers": ["Trumpet Club"], "title": "Roland The Minstel Pig", "contributions": ["Illustrated (Illustrator)"], "identifiers": {"goodreads": ["3275222"], "librarything": ["5560278"], "amazon": [""]}, "physical_format": "Paperback", "isbn_10": ["0440840570"], "publish_date": "1968", "key": "/books/OL10255894M", "authors": [{"key": "/authors/OL3403561A"}], "works": [{"key": "/works/OL9362697W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:O6-BUN-444"], "source_records": ["promise:bwb_daily_pallets_2020-04-09"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T11:33:05.465255"}}
+/type/edition /books/OL10256559M 7 2022-12-07T14:39:50.895254 {"publishers": ["Bobbs-Merril"], "languages": [{"key": "/languages/eng"}], "title": "The Fox Valley Murders", "identifiers": {"librarything": ["2308795"], "goodreads": ["468016"]}, "isbn_13": ["9780441249756"], "edition_name": "First edition", "physical_format": "Hardcover", "isbn_10": ["0441249752"], "publish_date": "1966", "key": "/books/OL10256559M", "authors": [{"key": "/authors/OL253641A"}], "works": [{"key": "/works/OL9362812W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:P7-DCF-480"], "source_records": ["promise:bwb_daily_pallets_2022-03-17"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-07T14:39:50.895254"}}
+/type/edition /books/OL10256859M 3 2022-12-17T20:36:37.058864 {"publishers": ["Ace"], "title": "Matt Reagans Lady", "isbn_10": ["044152222X"], "isbn_13": ["9780441522224"], "physical_format": "Paperback", "publish_date": "November 1, 1981", "key": "/books/OL10256859M", "authors": [{"key": "/authors/OL3403697A"}], "subjects": ["Fiction"], "works": [{"key": "/works/OL9362866W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780441522224"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T20:36:37.058864"}}
+/type/edition /books/OL10256865M 4 2022-12-17T15:16:32.208302 {"publishers": ["Ace Books"], "physical_format": "Mass Market Paperback", "title": "Minaret of Clay", "isbn_13": ["9780441532865"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0441532861"], "publish_date": "January 1980", "key": "/books/OL10256865M", "authors": [{"key": "/authors/OL3403635A"}], "oclc_numbers": ["10000366"], "works": [{"key": "/works/OL9362783W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780441532865"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T15:16:32.208302"}}
+/type/edition /books/OL10257095M 4 2022-12-17T14:23:24.864122 {"publishers": ["Ace Books"], "physical_format": "Paperback", "title": "Sweet Fire", "number_of_pages": 272, "isbn_13": ["9780441791194"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0441791190"], "publish_date": "March 1983", "key": "/books/OL10257095M", "authors": [{"key": "/authors/OL3403733A"}], "oclc_numbers": ["9358121"], "works": [{"key": "/works/OL9362915W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Romance - General", "Fiction", "Fiction - General", "Romance: Regency"], "source_records": ["bwb:9780441791194"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T14:23:24.864122"}}
+/type/edition /books/OL10257293M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780441972678"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "publishers": ["Ace Books"], "title": "Heathcliff Cartoons", "edition_name": "Rei Bxd St edition", "isbn_10": ["0441972675"], "publish_date": "April 1986", "key": "/books/OL10257293M", "type": {"key": "/type/edition"}, "subjects": ["Fiction"], "revision": 1}
+/type/edition /books/OL10257323M 3 2010-10-17T07:04:39.772642 {"publishers": ["Ace"], "last_modified": {"type": "/type/datetime", "value": "2010-10-17T07:04:39.772642"}, "title": "Herbert 15mxpk", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780441976065"], "physical_format": "Unknown Binding", "isbn_10": ["0441976069"], "publish_date": "July 1, 1987", "key": "/books/OL10257323M", "authors": [{"key": "/authors/OL79034A"}], "latest_revision": 3, "works": [{"key": "/works/OL893489W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10257422M 4 2022-11-11T06:16:29.076304 {"publishers": ["John Wiley & Sons"], "weight": "11.2 ounces", "physical_format": "Paperback", "key": "/books/OL10257422M", "authors": [{"key": "/authors/OL3403787A"}], "subjects": ["Industrial Health", "Diet / Health / Fitness", "Reference", "Safety", "Occupational / industrial health & safety", "Personal & Practical Guides"], "languages": [{"key": "/languages/eng"}], "title": "Respiratory Protection Program and Record Keeping Kit", "number_of_pages": 250, "isbn_13": ["9780442008024"], "isbn_10": ["0442008023"], "publish_date": "June 1991", "works": [{"key": "/works/OL9362964W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "11.5 x 9 x 0.5 inches", "source_records": ["bwb:9780442008024", "ia:respiratoryprote0000prit"], "covers": [12995367], "ocaid": "respiratoryprote0000prit", "lc_classifications": ["T55.3.G3 P75 1992"], "oclc_numbers": ["24564142"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-11T06:16:29.076304"}}
+/type/edition /books/OL10257738M 2 2011-04-26T22:44:33.997328 {"publishers": ["Chapman & Hall"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-26T22:44:33.997328"}, "title": "Towers of Ancient China", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780442200787"], "isbn_10": ["0442200781"], "publish_date": "May 2000", "key": "/books/OL10257738M", "latest_revision": 2, "oclc_numbers": ["234288576"], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10257924M 7 2022-12-08T09:08:38.617242 {"publishers": ["Van Nostrand Reinhold"], "number_of_pages": 136, "title": "Ways With Watercolor", "type": {"key": "/type/edition"}, "identifiers": {"librarything": ["526766"]}, "isbn_13": ["9780442242770"], "isbn_10": ["0442242778"], "publish_date": "November 1977", "key": "/books/OL10257924M", "authors": [{"key": "/authors/OL2746648A"}], "oclc_numbers": ["500181638"], "works": [{"key": "/works/OL8254453W"}], "physical_format": "Paperback", "subjects": ["Art"], "covers": [12134087], "ocaid": "wayswithwatercol0000kaut_o1g0", "lc_classifications": ["ND2420 .K38"], "source_records": ["ia:wayswithwatercol0000kaut_o1g0", "amazon:0442242778", "promise:bwb_daily_pallets_2021-06-03"], "local_id": ["urn:bwbsku:P7-AZS-667"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-08T09:08:38.617242"}}
+/type/edition /books/OL10258350M 4 2022-10-17T02:12:08.635672 {"publishers": ["Chapman & Hall"], "physical_format": "Paperback", "title": "Accountancy (Bank Notes)", "number_of_pages": 224, "isbn_13": ["9780442317492"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0442317492"], "publish_date": "April 1987", "key": "/books/OL10258350M", "authors": [{"key": "/authors/OL2627751A"}], "oclc_numbers": ["16081612"], "works": [{"key": "/works/OL7909980W"}], "type": {"key": "/type/edition"}, "subjects": ["Accounting", "Accounting - General", "Business & Economics", "Business / Economics / Finance", "Business/Economics"], "lc_classifications": ["HF5661"], "source_records": ["bwb:9780442317492"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T02:12:08.635672"}}
+/type/edition /books/OL10258792M 9 2023-01-06T16:59:46.030186 {"publishers": ["Churchill Livingstone"], "identifiers": {"goodreads": ["2523592"], "librarything": ["3059890"]}, "covers": [6278396], "physical_format": "Hardcover", "key": "/books/OL10258792M", "authors": [{"key": "/authors/OL3404422A"}], "ocaid": "walterisraelgene0000walt", "subjects": ["Pathology", "Medical", "Medical / Nursing"], "edition_name": "7 edition", "languages": [{"key": "/languages/eng"}], "source_records": ["ia:walterisraelgene0000walt", "amazon:0443042969", "marc:marc_columbia/Columbia-extract-20221130-009.mrc:58492580:3948"], "title": "Walter & Israel General Pathology", "number_of_pages": 952, "isbn_13": ["9780443042966"], "isbn_10": ["0443042969"], "publish_date": "January 15, 1996", "works": [{"key": "/works/OL9363649W"}], "type": {"key": "/type/edition"}, "oclc_numbers": ["34372233"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2023-01-06T16:59:46.030186"}}
+/type/edition /books/OL10259267M 10 2022-12-27T05:41:20.073693 {"publishers": ["Churchill Livingstone"], "number_of_pages": 280, "weight": "2 pounds", "covers": [2421576], "physical_format": "Hardcover", "lc_classifications": ["RD559.T438 2007", "RD559 .T438 2007", "RD559 .T438 2008"], "key": "/books/OL10259267M", "authors": [{"key": "/authors/OL2706756A"}, {"key": "/authors/OL3404729A"}], "subjects": ["Orthopaedics & fractures", "Surgical techniques", "Orthopedics", "Medical / Orthopedics", "Medical", "Medical / Nursing", "Arthroscopy", "Endoscopic surgery", "Hand", "Wrist"], "edition_name": "1 edition", "languages": [{"key": "/languages/eng"}], "source_records": ["bwb:9780443066979", "marc:marc_loc_2016/BooksAll.2016.part34.utf8:133615326:1221", "promise:bwb_daily_pallets_2022-08-29", "marc:marc_columbia/Columbia-extract-20221130-014.mrc:23961341:5134"], "title": "Techniques in Wrist and Hand Arthroscopy with DVD", "identifiers": {"goodreads": ["3052624"]}, "isbn_13": ["9780443066979"], "isbn_10": ["0443066973"], "publish_date": "October 31, 2007", "works": [{"key": "/works/OL16986885W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "11.1 x 8.7 x 0.6 inches", "lccn": ["2007026202"], "local_id": ["urn:bwbsku:W7-DBC-875"], "oclc_numbers": ["145942137"], "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-27T05:41:20.073693"}}
+/type/edition /books/OL10259282M 12 2023-01-06T20:39:08.615362 {"identifiers": {"goodreads": ["5154582"], "librarything": ["4679463"]}, "title": "Myofascial Pain and Fibromyalgia Syndromes", "subtitle": "A Clinical Guide to Diagnosis and Management", "authors": [{"key": "/authors/OL3404747A"}], "publish_date": "April 20, 2001", "publishers": ["Churchill Livingstone"], "weight": "2.2 pounds", "isbn_10": ["0443070032"], "covers": [2421590], "physical_format": "Hardcover", "lc_classifications": ["RC927.3.B35 2001"], "languages": [{"key": "/languages/eng"}], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part01.utf8:45800256:1034", "bwb:9780443070037", "ia:myofascialpainfi0000bald", "marc:marc_columbia/Columbia-extract-20221130-009.mrc:84184433:1802"], "lccn": ["00064544"], "isbn_13": ["9780443070037"], "edition_name": "1 edition", "subjects": ["Pain & pain management", "Musculoskeletal Diseases", "Medical", "Medical / Nursing", "Dentistry - General", "Diagnosis", "Internal Medicine", "Medical / Alternative Medicine", "Orthopedics", "Rheumatology", "Myofascial Pain Syndromes", "physiopathology", "therapy"], "type": {"key": "/type/edition"}, "physical_dimensions": "10 x 7.5 x 1.2 inches", "ocaid": "myofascialpainfi0000bald", "key": "/books/OL10259282M", "number_of_pages": 432, "works": [{"key": "/works/OL9363835W"}], "oclc_numbers": ["45059214"], "latest_revision": 12, "revision": 12, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2023-01-06T20:39:08.615362"}}
+/type/edition /books/OL10259292M 11 2022-12-07T07:57:57.765997 {"publishers": ["Churchill Livingstone"], "identifiers": {"goodreads": ["5486986"]}, "subtitle": "Guidelines for Wellness in the 21st Century", "weight": "1.6 pounds", "isbn_10": ["0443070601"], "covers": [5047348], "physical_format": "Paperback", "lc_classifications": ["RA427.8", "RA427.8 .J36 2001"], "key": "/books/OL10259292M", "authors": [{"key": "/authors/OL226035A"}], "languages": [{"key": "/languages/eng"}], "source_records": ["bwb:9780443070600", "marc:marc_loc_2016/BooksAll.2016.part33.utf8:172062818:1141", "ia:maintaininghealt0000jami", "promise:bwb_daily_pallets_2022-03-17"], "title": "Maintaining Health in Primary Care", "number_of_pages": 400, "isbn_13": ["9780443070600"], "edition_name": "1 edition", "subjects": ["Nursing", "Family Medicine", "Medical", "Medical / Nursing", "Family & General Practice", "General", "Medical / Family & General Practice"], "publish_date": "September 19, 2001", "oclc_numbers": ["47638156"], "works": [{"key": "/works/OL1887893W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.6 x 7.4 x 0.9 inches", "lccn": ["2006284683"], "ocaid": "maintaininghealt0000jami", "local_id": ["urn:bwbsku:KQ-171-443"], "latest_revision": 11, "revision": 11, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-07T07:57:57.765997"}}
+/type/edition /books/OL1025963M 3 2020-11-24T08:59:10.672700 {"publishers": ["Govt. Information Services"], "subtitle": "a story for children", "subject_place": ["Guyana", "Guyana."], "lc_classifications": ["PZ7.A44355 Tal 1960"], "latest_revision": 3, "key": "/books/OL1025963M", "authors": [{"key": "/authors/OL551805A"}], "publish_places": ["British Guiana"], "pagination": "16 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part25.utf8:127196414:807"], "title": "The tale of Teddy the toucan", "dewey_decimal_class": ["[E]"], "notes": {"type": "/type/text", "value": "\"This story is one of a series of stories based on some of the legends of the Amerindian tribes of British Guiana.\""}, "number_of_pages": 16, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["96101100"], "subjects": ["Toucans -- Fiction.", "Toucans -- Folklore.", "Indians of South America -- Guyana -- Folklore.", "Folklore -- Guyana."], "publish_date": "1960", "publish_country": "gy ", "last_modified": {"type": "/type/datetime", "value": "2020-11-24T08:59:10.672700"}, "by_statement": "by Joy Allsopp.", "works": [{"key": "/works/OL3380180W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10259671M 3 2011-04-29T21:02:27.734469 {"publishers": ["Elsevier Science Ltd"], "last_modified": {"type": "/type/datetime", "value": "2011-04-29T21:02:27.734469"}, "title": "Progress in Bulk Semiconductors Crystal Growth", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780444008961"], "physical_format": "Hardcover", "isbn_10": ["0444008969"], "publish_date": "May 2000", "key": "/books/OL10259671M", "authors": [{"key": "/authors/OL3404987A"}], "latest_revision": 3, "oclc_numbers": ["234288843"], "works": [{"key": "/works/OL9363998W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10259932M 4 2022-12-04T06:51:54.955880 {"publishers": ["Elsevier Science Ltd"], "identifiers": {"librarything": ["4370734"]}, "subtitle": "Sedimentation, Estuaries, Tides, Effluents, Modelling (Developments in Geotechnical Engineering Series, Vol 4b)", "title": "Coastal Engineering", "physical_format": "Hardcover", "number_of_pages": 338, "isbn_13": ["9780444411020"], "isbn_10": ["044441102X"], "publish_date": "August 1974", "key": "/books/OL10259932M", "authors": [{"key": "/authors/OL3405105A"}], "works": [{"key": "/works/OL9364138W"}], "type": {"key": "/type/edition"}, "subjects": ["Science/Mathematics"], "local_id": ["urn:bwbsku:KR-459-698"], "source_records": ["promise:bwb_daily_pallets_2022-11-10"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T06:51:54.955880"}}
+/type/edition /books/OL10260151M 11 2020-09-10T09:35:26.646917 {"publishers": ["Elsevier Science"], "number_of_pages": 264, "weight": "1.5 pounds", "isbn_10": ["0444502769"], "covers": [2421791], "physical_format": "Hardcover", "lc_classifications": ["QE685 .C8676 2000"], "latest_revision": 11, "key": "/books/OL10260151M", "ocaid": "cretaceousenviro00okad_902", "contributions": ["H. Okada (Editor)", "N.-J. Mateer (Editor)"], "languages": [{"key": "/languages/eng"}], "source_records": ["ia:cretaceousenviro00okad_902", "ia:cretaceousenviro00okad", "ia:cretaceousenviro00okad_784", "marc:marc_loc_2016/BooksAll.2016.part01.utf8:9334674:1155"], "title": "Cretaceous Environments of Asia (Developments in Palaeontology and Stratigraphy)", "lccn": ["00023203"], "identifiers": {"goodreads": ["2168345"]}, "isbn_13": ["9780444502766"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "first_sentence": {"type": "/type/text", "value": "Cretaceous deposits of East Russia occupy a broad area extending from Chukotka to Primorye, a distance of more than 4500 km."}, "subjects": ["Geology & the lithosphere", "Stratigraphic Geology", "Stratigraphic Paleontology", "Science", "Science/Mathematics", "Earth Sciences - Geology", "Science / Geology", "Paleontology", "Asia", "Cretaceous", "Geology", "Geology, Stratigraphic"], "publish_date": "March 1, 2000", "last_modified": {"type": "/type/datetime", "value": "2020-09-10T09:35:26.646917"}, "works": [{"key": "/works/OL19616955W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.6 x 6.8 x 0.7 inches", "revision": 11}
+/type/edition /books/OL1026020M 3 2020-11-24T08:59:49.246446 {"publishers": ["S. Watson"], "subtitle": "builder of the nation", "subject_place": ["United States"], "lc_classifications": ["TF23 .W38 1995"], "latest_revision": 3, "key": "/books/OL1026020M", "authors": [{"key": "/authors/OL551830A"}], "publish_places": ["[Watsonville, CA] (513 Suncrest Way, Watsonville 95076)"], "pagination": "vi, 110, 5 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part25.utf8:127243313:732"], "title": "The steam locomotive", "dewey_decimal_class": ["385/.0973"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (addendum, p. 1).\nAddendum (p. 1-5, second group)"}, "number_of_pages": 110, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["96101166"], "subjects": ["Railroads -- United States -- History."], "publish_date": "1995", "publish_country": "cau", "last_modified": {"type": "/type/datetime", "value": "2020-11-24T08:59:49.246446"}, "by_statement": "by Sherrell Watson.", "works": [{"key": "/works/OL3380265W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL1026025M 6 2020-11-24T08:59:53.447289 {"publishers": ["Prometheus"], "number_of_pages": 247, "lc_classifications": ["PT5881.2.A27 T65 1995"], "latest_revision": 6, "key": "/books/OL1026025M", "authors": [{"key": "/authors/OL551832A"}], "publish_places": ["Amsterdam"], "pagination": "247 p. ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part25.utf8:127247392:444"], "title": "De tol van de roem", "lccn": ["96101171"], "identifiers": {"librarything": ["3382251"], "goodreads": ["1464715"]}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/dut"}], "isbn_10": ["9053333622"], "publish_date": "1995", "publish_country": "ne ", "last_modified": {"type": "/type/datetime", "value": "2020-11-24T08:59:53.447289"}, "by_statement": "Adriaan Jaeggi.", "oclc_numbers": ["34746151"], "works": [{"key": "/works/OL3380281W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL10260541M 2 2019-05-30T23:14:20.054142 {"publishers": ["Elsevier Science Ltd"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2019-05-30T23:14:20.054142"}, "title": "Trends in Ergonomics", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780444700353"], "physical_format": "Hardcover", "isbn_10": ["0444700358"], "publish_date": "May 2000", "key": "/books/OL10260541M", "latest_revision": 2, "works": [{"key": "/works/OL13275045W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL1026066M 5 2020-11-24T09:00:21.464995 {"publishers": ["Harmattan"], "identifiers": {"goodreads": ["3702063"]}, "subtitle": "histoire diplomatique", "isbn_10": ["2738434630"], "subject_place": ["France", "China"], "covers": [3865648], "lc_classifications": ["D752 .M47 1995"], "latest_revision": 5, "key": "/books/OL1026066M", "authors": [{"key": "/authors/OL551858A"}], "publish_places": ["Paris"], "pagination": "335 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part25.utf8:127277061:811"], "title": "Vichy face a\u0300 Chiang Kai-Shek", "dewey_decimal_class": ["940.53/2544"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 321-325) and index."}, "number_of_pages": 335, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/fre"}], "lccn": ["96101218"], "subjects": ["World War, 1939-1945 -- Diplomatic history.", "France -- Foreign relations -- China.", "China -- Foreign relations -- France."], "publish_date": "1995", "publish_country": "fr ", "last_modified": {"type": "/type/datetime", "value": "2020-11-24T09:00:21.464995"}, "series": ["Recherches asiatiques"], "by_statement": "Fabienne Mercier.", "works": [{"key": "/works/OL3380371W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10260853M 2 2009-12-15T00:45:17.195414 {"physical_format": "Hardcover", "publishers": ["Elsevier Science Health Science Div"], "isbn_10": ["044482622X"], "number_of_pages": 2034, "isbn_13": ["9780444826220"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:45:17.195414"}, "publish_date": "January 1997", "latest_revision": 2, "key": "/books/OL10260853M", "authors": [{"key": "/authors/OL2708758A"}], "title": "Emtree Thesaurus", "subjects": ["Medicine", "Thesauri", "General", "Reference"], "works": [{"key": "/works/OL8131649W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10261077M 5 2019-04-03T20:02:30.015840 {"publishers": ["Elsevier Science"], "physical_format": "Paperback", "subtitle": "Part 1 (Les Houches Summer School Proceedings, Vol 40)", "source_records": ["marc:talis_openlibrary_contribution/talis-openlibrary-contribution.mrc:592042186:1087"], "title": "Relativity, Groups and Topology, II", "identifiers": {"goodreads": ["6704539"]}, "last_modified": {"type": "/type/datetime", "value": "2019-04-03T20:02:30.015840"}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780444870193"], "isbn_10": ["0444870199"], "publish_date": "December 1986", "key": "/books/OL10261077M", "authors": [{"key": "/authors/OL3405726A"}], "latest_revision": 5, "works": [{"key": "/works/OL9364585W"}], "type": {"key": "/type/edition"}, "subjects": ["Science/Mathematics"], "revision": 5}
+/type/edition /books/OL10261167M 3 2022-12-11T22:29:01.372402 {"physical_format": "Hardcover", "title": "Proceedings of the 2nd International Conference on Robots in the Automotive Industry", "isbn_10": ["044487769X"], "publishers": ["Elsevier Science Ltd"], "isbn_13": ["9780444877697"], "languages": [{"key": "/languages/eng"}], "publish_date": "November 1985", "key": "/books/OL10261167M", "authors": [{"key": "/authors/OL3405763A"}], "subjects": ["Automotive Engineering (Specific Aspects)", "Industrial Robotics"], "works": [{"key": "/works/OL9364629W"}], "type": {"key": "/type/edition"}, "oclc_numbers": ["15658283"], "source_records": ["marc:marc_columbia/Columbia-extract-20221130-001.mrc:595433034:1536"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-11T22:29:01.372402"}}
+/type/edition /books/OL10261245M 3 2010-04-13T05:35:06.802234 {"publishers": ["Elsevier Science Publishing Company"], "subtitle": "Heterocyclic Compounds (Rodd's Chemistry of Carbon Compounds 2nd Edition)", "weight": "2.6 pounds", "covers": [5048090], "edition_name": "2 edition", "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:35:06.802234"}, "latest_revision": 3, "key": "/books/OL10261245M", "authors": [{"key": "/authors/OL2707490A"}], "subjects": ["Biochemistry", "Nuclear chemistry, photochemistry & radiation", "Organic chemistry", "Chemistry - Organic", "Heterocyclic Chemistry", "Science", "Science/Mathematics"], "isbn_13": ["9780444886118"], "title": "Rodd's Chemistry of Carbon Compounds", "number_of_pages": 640, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0444886117"], "publish_date": "June 1990", "physical_dimensions": "9.2 x 6.5 x 1.5 inches", "works": [{"key": "/works/OL8130197W"}], "type": {"key": "/type/edition"}, "first_sentence": {"type": "/type/text", "value": "The action of Na/Hg on 1,2-dibromobenzene at 120 C gives a product originally believed to be (1) (L. Vechiotti, Ber., 1930, 63, 2275) but later (1977) shown to be the trimer (2a) (A.G. Massey, J. Organometal. Chem., 1986, 316, 25, and refs therein)."}, "revision": 3}
+/type/edition /books/OL1026172M 4 2020-11-24T09:51:29.516102 {"publishers": ["Tellerup"], "number_of_pages": 152, "subtitle": "analyser af dansk ungdomslitteratur i slutningen af 1970'erne", "isbn_10": ["8785191310"], "subject_place": ["Denmark."], "lc_classifications": ["PT7862 .B45 1979"], "latest_revision": 4, "key": "/books/OL1026172M", "authors": [{"key": "/authors/OL551907A"}], "publish_places": ["Gentofte"], "pagination": "152 p. ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part25.utf8:127357192:708"], "title": "Er piger sa\u030adan?", "lccn": ["96101345"], "identifiers": {"goodreads": ["2237354"]}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/dan"}], "subjects": ["Young adult fiction, Danish -- History and criticism.", "Youth -- Books and reading -- Denmark.", "Sex role in literature.", "Girls in literature."], "publish_date": "1979", "publish_country": "dk ", "last_modified": {"type": "/type/datetime", "value": "2020-11-24T09:51:29.516102"}, "by_statement": "Keld Belert.", "works": [{"key": "/works/OL3380556W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10261869M 4 2010-04-24T17:58:37.794889 {"publishers": ["Warner Books"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T17:58:37.794889"}, "title": "Old Bones", "identifiers": {"goodreads": ["2462633"]}, "isbn_13": ["9780445773189"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0445773189"], "publish_date": "September 1990", "key": "/books/OL10261869M", "authors": [{"key": "/authors/OL3278233A"}], "latest_revision": 4, "works": [{"key": "/works/OL9215539W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10261892M 2 2009-12-15T00:45:19.048427 {"physical_format": "Paperback", "title": "Big Box of Super Trivia", "isbn_10": ["0446112410"], "publishers": ["Warner Books Inc (P)"], "isbn_13": ["9780446112413"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:45:19.048427"}, "publish_date": "October 1984", "key": "/books/OL10261892M", "authors": [{"key": "/authors/OL2701696A"}], "latest_revision": 2, "subjects": ["Reference"], "works": [{"key": "/works/OL8108505W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10261929M 4 2009-12-15T00:45:19.048427 {"physical_format": "Hardcover", "weight": "2.7 ounces", "title": "Bernard of Hollywood Pin-Ups", "isbn_10": ["0446159115"], "publishers": ["Warner Books"], "isbn_13": ["9780446159111"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:45:19.048427"}, "publish_date": "March 1995", "key": "/books/OL10261929M", "authors": [{"key": "/authors/OL578508A"}], "latest_revision": 4, "subjects": ["Acting & Auditioning", "Pop Arts / Pop Culture"], "works": [{"key": "/works/OL3470828W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.3 x 5.2 x 0.2 inches", "revision": 4}
+/type/edition /books/OL10261972M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Warner Books"], "number_of_pages": 384, "isbn_13": ["9780446173711"], "isbn_10": ["0446173711"], "publish_date": "April 2003", "key": "/books/OL10261972M", "title": "Six Gift Book Series", "type": {"key": "/type/edition"}, "subjects": ["Motivational & Inspirational", "Inspirational"], "revision": 1}
+/type/edition /books/OL10262141M 4 2010-04-24T17:58:37.794889 {"publishers": ["Warner Books Inc"], "number_of_pages": 178, "last_modified": {"type": "/type/datetime", "value": "2010-04-24T17:58:37.794889"}, "title": "Hello, I'm God and I'm Here to Help You", "type": {"key": "/type/edition"}, "identifiers": {"goodreads": ["481940"]}, "isbn_13": ["9780446305976"], "edition_name": "Reissue edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0446305979"], "publish_date": "December 1, 1982", "key": "/books/OL10262141M", "authors": [{"key": "/authors/OL716501A"}], "latest_revision": 4, "works": [{"key": "/works/OL3931914W"}], "physical_format": "Paperback", "subjects": ["Religion"], "revision": 4}
+/type/edition /books/OL10262223M 8 2022-11-17T08:43:44.120665 {"publishers": ["Warner Books"], "identifiers": {"librarything": ["3252646"], "goodreads": ["1482209"]}, "languages": [{"key": "/languages/eng"}], "number_of_pages": 512, "isbn_13": ["9780446313681"], "physical_format": "Paperback", "isbn_10": ["0446313688"], "publish_date": "April 1986", "key": "/books/OL10262223M", "authors": [{"key": "/authors/OL4341639A"}], "title": "The Berlin Connection", "oclc_numbers": ["13315289"], "works": [{"key": "/works/OL1258768W"}], "type": {"key": "/type/edition"}, "subjects": ["Modern fiction", "General", "Fiction - General", "Fiction"], "source_records": ["bwb:9780446313681"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T08:43:44.120665"}}
+/type/edition /books/OL10262648M 6 2022-11-19T00:38:15.807851 {"publishers": ["Educational Testing Serv"], "weight": "1.4 pounds", "edition_name": "14th edition", "physical_format": "Paperback", "key": "/books/OL10262648M", "authors": [{"key": "/authors/OL4521350A"}], "subjects": ["Graduate School Guides", "Higher", "Biology (General)", "Graduate Departments And Schools", "Study Guides", "Directories", "Graduate work", "United States", "Universities and colleges", "Education"], "isbn_13": ["9780446395472"], "source_records": ["marc:marc_claremont_school_theology/CSTMARC1_barcode.mrc:206256991:1957", "marc:marc_claremont_school_theology/CSTMARC1_multibarcode.mrc:206519894:1957", "bwb:9780446395472"], "title": "The Official Gre/Cgs Directory of Graduate Programs: Natural Sciences (Directory of Graduate Programs: Vol. A: Natural Sciences)", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0446395471"], "publish_date": "October 1993", "works": [{"key": "/works/OL4132314W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "11 x 8.5 x 0.8 inches", "lccn": ["82642078"], "lc_classifications": ["LB2371 .O44 1993"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T00:38:15.807851"}}
+/type/edition /books/OL10262828M 16 2021-09-16T15:19:49.403368 {"publishers": ["Springboard Press"], "identifiers": {"librarything": ["5839544"], "goodreads": ["3893273"]}, "subtitle": "The Surprising Rewards of Staying Together", "ia_box_id": ["IA144112"], "covers": [2422309], "physical_format": "Hardcover", "ia_loaded_id": ["marriagebenefitt00ocon"], "key": "/books/OL10262828M", "authors": [{"key": "/authors/OL2820499A"}, {"key": "/authors/OL7021966A"}], "ocaid": "marriagebenefitt00ocon", "subjects": ["Family Relationships", "Marriage", "Family & Relationships / Marriage", "Family & Relationships", "Love / Sex / Marriage", "Family/Marriage"], "isbn_13": ["9780446581110"], "source_records": ["amazon:0446581119", "marc:marc_loc_updates/v36.i31.records.utf8:10751863:1417", "marc:marc_loc_updates/v36.i38.records.utf8:10264363:1417", "marc:marc_loc_updates/v37.i35.records.utf8:29949323:1511", "ia:marriagebenefitt00ocon", "marc:marc_loc_2016/BooksAll.2016.part34.utf8:155854359:1511", "ia:marriagebenefits0000ocon", "ia:marriagebenefits0000ocon_k4n2", "bwb:9780446581110"], "title": "The Marriage Benefit", "number_of_pages": 224, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0446581119"], "publish_date": "July 21, 2008", "oclc_numbers": ["180190803"], "works": [{"key": "/works/OL8453702W"}], "type": {"key": "/type/edition"}, "lccn": ["2007043658"], "lc_classifications": ["HQ734 .O28885 2008", "HQ734.O28885 2008"], "latest_revision": 16, "revision": 16, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-09-16T15:19:49.403368"}}
+/type/edition /books/OL10262860M 2 2022-12-04T14:07:41.351803 {"isbn_13": ["9780446596145"], "physical_format": "Mass Market Paperback", "languages": [{"key": "/languages/eng"}], "publishers": ["Warner Books, Inc."], "title": "In Search of Ali Mahmoud", "edition_name": "1st Paperback Printing edition", "isbn_10": ["0446596140"], "publish_date": "1973", "key": "/books/OL10262860M", "type": {"key": "/type/edition"}, "works": [{"key": "/works/OL31248556W"}], "local_id": ["urn:bwbsku:O8-CFX-723"], "source_records": ["promise:bwb_daily_pallets_2022-08-30"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T14:07:41.351803"}}
+/type/edition /books/OL10263258M 2 2009-12-15T00:45:20.689141 {"publishers": ["Warner Books"], "subtitle": "Connie Ha", "title": "Naked Face", "isbn_10": ["0446734373"], "isbn_13": ["9780446734370"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:45:20.689141"}, "publish_date": "November 1986", "key": "/books/OL10263258M", "authors": [{"key": "/authors/OL2711402A"}], "latest_revision": 2, "works": [{"key": "/works/OL8136529W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10263279M 2 2009-12-15T00:45:20.689141 {"physical_format": "Hardcover", "subtitle": "First", "title": "Cardinal Sins", "isbn_10": ["0446735213"], "publishers": ["Warner Books"], "isbn_13": ["9780446735216"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:45:20.689141"}, "latest_revision": 2, "key": "/books/OL10263279M", "authors": [{"key": "/authors/OL2711402A"}], "works": [{"key": "/works/OL8136506W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL1026357M 7 2020-11-24T09:53:45.665137 {"other_titles": ["Russian aircraft, 1875-1995"], "publishers": ["Motorbooks International"], "number_of_pages": 526, "isbn_10": ["0760300275"], "subject_place": ["Russia (Federation)", "Soviet Union"], "lc_classifications": ["TL526.R9 G83 1995"], "latest_revision": 7, "key": "/books/OL1026357M", "authors": [{"key": "/authors/OL64144A"}], "publish_places": ["Osceola, WI"], "pagination": "xxxiii, 526 p. :", "source_records": ["marc:marc_records_scriblio_net/part25.dat:221066957:1055", "marc:marc_loc_updates/v37.i49.records.utf8:3424750:1054", "marc:marc_loc_2016/BooksAll.2016.part25.utf8:127518254:1054"], "title": "The encyclopedia of Russian aircraft, 1875-1995", "dewey_decimal_class": ["623.7/461/0947"], "notes": {"type": "/type/text", "value": "\"Originally published in Great Britain in 1995 by Osprey, an imprint of Reed Consumer Books Limited\"--T.p. verso."}, "identifiers": {"goodreads": ["2640197"], "librarything": ["1008997"]}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["96101592"], "subjects": ["Airplanes -- Russia (Federation) -- Encyclopedias", "Airplanes -- Soviet Union -- Encyclopedias", "Airplanes, Military -- Russia (Federation) -- Encyclopedias", "Airplanes, Military -- Soviet Union -- Encyclopedias"], "publish_date": "1995", "publish_country": "wiu", "last_modified": {"type": "/type/datetime", "value": "2020-11-24T09:53:45.665137"}, "by_statement": "Bill Gunston.", "oclc_numbers": ["33973405"], "works": [{"key": "/works/OL18316465W"}], "type": {"key": "/type/edition"}, "revision": 7}
+/type/edition /books/OL10264665M 3 2022-12-17T14:46:50.980030 {"publishers": ["Grosset & Dunlap"], "title": "Big Book Wild Animal", "isbn_10": ["0448042436"], "isbn_13": ["9780448042435"], "physical_format": "Paperback", "publish_date": "April 1, 1982", "key": "/books/OL10264665M", "authors": [{"key": "/authors/OL1089600A"}], "subjects": ["Nature", "Animals / Pets", "Animals", "Habits and behavior", "Juvenile literature"], "works": [{"key": "/works/OL5016648W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780448042435"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T14:46:50.980030"}}
+/type/edition /books/OL10264918M 10 2022-12-17T11:21:03.207089 {"publishers": ["Grosset & Dunlap"], "number_of_pages": 18, "weight": "3.5 ounces", "covers": [5048311], "physical_format": "Paperback", "key": "/books/OL10264918M", "authors": [{"key": "/authors/OL897588A"}], "ocaid": "pudgybookofbabie0000wilb", "subjects": ["General", "Juvenile Fiction / General", "Children's Books/Baby-Preschool", "Fiction", "Infants", "Children: Babies & Toddlers"], "isbn_13": ["9780448102078"], "source_records": ["ia:pudgybookofbabie0000wilb", "amazon:0448102072", "bwb:9780448102078"], "title": "The Pudgy Book of Babies", "identifiers": {"librarything": ["5141427"], "goodreads": ["2103336"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0448102072"], "publish_date": "April 6, 1984", "oclc_numbers": ["10688701"], "works": [{"key": "/works/OL4492698W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "4.8 x 4.1 x 0.5 inches", "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T11:21:03.207089"}}
+/type/edition /books/OL10265008M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Putnam Pub Group (Paper)"], "title": "Investment Guide for Singles", "isbn_13": ["9780448119878"], "isbn_10": ["0448119870"], "publish_date": "October 1981", "key": "/books/OL10265008M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL102650M 4 2020-12-02T08:05:29.006900 {"identifiers": {"goodreads": ["254370"]}, "subject_place": ["United States"], "lc_classifications": ["PG3476.E8 Z7117 1998"], "subject_time": ["20th century"], "genres": ["Biography."], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part28.utf8:91308385:759"], "title": "Ai\u0306sedora Dunkan--Sergei\u0306 Esenin", "languages": [{"key": "/languages/rus"}], "subjects": ["Esenin, Sergei\u0306 Aleksandrovich, 1895-1925.", "Duncan, Isadora, 1877-1927.", "Poets, Russian -- 20th century -- Biography.", "Women dancers -- United States -- Biography."], "publish_country": "ru ", "series": ["Istorii\u0361a\ufe21 li\u0361u\ufe21bvi"], "by_statement": "Nonna Golikova.", "type": {"key": "/type/edition"}, "publishers": ["Zakharov", "AST"], "key": "/books/OL102650M", "authors": [{"key": "/authors/OL68946A"}], "publish_places": ["Moskva"], "pagination": "140 p. :", "lccn": ["99218148"], "number_of_pages": 140, "isbn_10": ["5815900117"], "publish_date": "1998", "works": [{"key": "/works/OL817365W"}], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-02T08:05:29.006900"}}
+/type/edition /books/OL10265114M 2 2011-04-28T04:43:33.763337 {"publishers": ["Price Stern Sloan Pub"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-28T04:43:33.763337"}, "title": "Noisy and Quiet", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780448125855"], "isbn_10": ["0448125854"], "publish_date": "June 1977", "key": "/books/OL10265114M", "latest_revision": 2, "oclc_numbers": ["3333525"], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10265273M 4 2021-03-27T04:25:27.337046 {"publishers": ["Price Stern Sloan Pub"], "title": "Time (Ready to Book)(13346)", "isbn_13": ["9780448133461"], "physical_format": "School & Library Binding", "isbn_10": ["0448133466"], "publish_date": "June 1976", "key": "/books/OL10265273M", "authors": [{"key": "/authors/OL2674196A"}], "oclc_numbers": ["2352467"], "works": [{"key": "/works/OL8028286W"}], "type": {"key": "/type/edition"}, "covers": [10767432], "ocaid": "isbn_0448121948", "lccn": ["75034982"], "lc_classifications": ["QB209.5.R81976x"], "source_records": ["ia:isbn_0448121948"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-03-27T04:25:27.337046"}}
+/type/edition /books/OL10265351M 9 2022-12-17T11:37:47.685242 {"publishers": ["Grosset & Dunlap"], "title": "Jerry Muskrat Hom Gb", "identifiers": {"librarything": ["525934"], "goodreads": ["4660395"]}, "physical_format": "Paperback", "publish_date": "April 1, 1976", "key": "/books/OL10265351M", "authors": [{"key": "/authors/OL19164A"}], "type": {"key": "/type/edition"}, "subjects": ["Children: Babies & Toddlers"], "isbn_10": ["0448137399"], "isbn_13": ["9780448137391"], "oclc_numbers": ["3099541"], "classifications": {}, "works": [{"key": "/works/OL121218W"}], "covers": [12874545], "ocaid": "jerrymuskratatho0000burg", "lc_classifications": ["PZ10.3.B8"], "source_records": ["ia:jerrymuskratatho0000burg", "amazon:0448137399", "bwb:9780448137391"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T11:37:47.685242"}}
+/type/edition /books/OL10265356M 7 2022-12-17T15:29:54.230645 {"publishers": ["Ace Books"], "physical_format": "Paperback", "subtitle": "Guardians Adventure", "title": "One Way Trip", "identifiers": {"goodreads": ["5908985"]}, "isbn_13": ["9780448137759"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0448137755"], "publish_date": "September 1982", "key": "/books/OL10265356M", "authors": [{"key": "/authors/OL2869320A"}], "oclc_numbers": ["9823138"], "works": [{"key": "/works/OL8558834W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Fiction - General", "Fiction"], "lccn": ["2006597277"], "lc_classifications": ["CPB Box no. 2510 vol. 21"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part34.utf8:81418875:775", "bwb:9780448137759"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T15:29:54.230645"}}
+/type/edition /books/OL10265360M 5 2022-12-17T13:22:36.859666 {"publishers": ["Grosset & Dunlap"], "title": "Santa Mouse GB", "isbn_13": ["9780448139142"], "physical_format": "Paperback", "isbn_10": ["0448139146"], "publish_date": "October 1, 1980", "key": "/books/OL10265360M", "authors": [{"key": "/authors/OL827562A"}], "oclc_numbers": ["234147168"], "works": [{"key": "/works/OL4271647W"}], "type": {"key": "/type/edition"}, "subjects": ["Animals - Mice Hamsters Guinea Pigs etc.", "Unassigned Title"], "source_records": ["bwb:9780448139142"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T13:22:36.859666"}}
+/type/edition /books/OL10265567M 2 2009-12-15T00:45:21.921630 {"physical_format": "Paperback", "title": "Pm Magazine Budge-Stretching Cookbook", "isbn_10": ["044815790X"], "publishers": ["Putnam Pub Group (T)"], "isbn_13": ["9780448157900"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:45:21.921630"}, "publish_date": "February 1983", "key": "/books/OL10265567M", "authors": [{"key": "/authors/OL3406605A"}], "latest_revision": 2, "subjects": ["Cooking"], "works": [{"key": "/works/OL9365596W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10265624M 3 2022-12-17T14:52:32.776035 {"publishers": ["Grosset & Dunlap"], "physical_format": "Paperback", "title": "Happy And Sad", "isbn_13": ["9780448162805"], "isbn_10": ["0448162806"], "publish_date": "March 1, 1979", "key": "/books/OL10265624M", "oclc_numbers": ["5828397"], "type": {"key": "/type/edition"}, "works": [{"key": "/works/OL32438199W"}], "source_records": ["bwb:9780448162805"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T14:52:32.776035"}}
+/type/edition /books/OL10266873M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["New English Library Ltd"], "title": "Walt Disney Super Dad Npb", "isbn_13": ["9780450045028"], "isbn_10": ["0450045021"], "publish_date": "April 1, 1979", "key": "/books/OL10266873M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10267102M 8 2022-12-09T15:30:39.731091 {"publishers": ["Hodder & Stoughton General Division"], "number_of_pages": 224, "title": "Mastering the Microwave", "type": {"key": "/type/edition"}, "identifiers": {"goodreads": ["6967081"], "librarything": ["8431581"]}, "isbn_13": ["9780450536588"], "isbn_10": ["0450536580"], "publish_date": "October 17, 1991", "key": "/books/OL10267102M", "authors": [{"key": "/authors/OL2797516A"}], "works": [{"key": "/works/OL8392660W"}], "physical_format": "Hardcover", "subjects": ["Gadget cookery"], "covers": [10621183], "ocaid": "masteringmicrowa0000page", "source_records": ["ia:masteringmicrowa0000page", "amazon:0450536580", "promise:bwb_daily_pallets_2020-11-19"], "local_id": ["urn:bwbsku:KO-482-153"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T15:30:39.731091"}}
+/type/edition /books/OL10267648M 3 2022-12-17T12:50:43.350202 {"publishers": ["Signet"], "title": "Lovers", "isbn_10": ["0451012275"], "isbn_13": ["9780451012272"], "physical_format": "Paperback", "publish_date": "February 1, 1968", "key": "/books/OL10267648M", "authors": [{"key": "/authors/OL117832A"}], "subjects": ["Fiction / General"], "works": [{"key": "/works/OL1164849W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780451012272"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T12:50:43.350202"}}
+/type/edition /books/OL10267719M 2 2022-12-17T16:26:50.853742 {"physical_format": "Paperback", "title": "Delay Enroute", "publishers": ["Signet"], "isbn_13": ["9780451013248"], "isbn_10": ["0451013247"], "key": "/books/OL10267719M", "type": {"key": "/type/edition"}, "works": [{"key": "/works/OL32448570W"}], "source_records": ["bwb:9780451013248"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T16:26:50.853742"}}
+/type/edition /books/OL10268365M 8 2022-11-12T03:31:35.490702 {"publishers": ["Signet"], "source_records": ["amazon:0451023323", "bwb:9780451023322", "promise:bwb_daily_pallets_2022-10-17"], "title": "Forever Amber", "identifiers": {"goodreads": ["7147689"]}, "isbn_13": ["9780451023322"], "physical_format": "Paperback", "isbn_10": ["0451023323"], "publish_date": "February 1, 1971", "key": "/books/OL10268365M", "authors": [{"key": "/authors/OL32283A"}], "works": [{"key": "/works/OL100278W"}], "type": {"key": "/type/edition"}, "subjects": ["Fiction / General"], "first_sentence": {"type": "/type/text", "value": "THE SMALL ROOM was warm and moist."}, "local_id": ["urn:bwbsku:W7-CFQ-257"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-12T03:31:35.490702"}}
+/type/edition /books/OL1026842M 5 2020-11-24T09:59:38.260266 {"publishers": ["Het Spinhuis"], "number_of_pages": 353, "subtitle": "Nederlandse pedagogen over opvoeding in het gezin 1845-1925", "isbn_10": ["9055890111"], "subject_place": ["Netherlands"], "covers": [3865825], "lc_classifications": ["HQ769 .B3117 1995"], "latest_revision": 5, "key": "/books/OL1026842M", "authors": [{"key": "/authors/OL552213A"}], "publish_places": ["Amsterdam"], "pagination": "353 p. ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part25.utf8:127923897:762"], "title": "Kind en karakter", "lccn": ["96102191"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. [321]-346) and index."}, "identifiers": {"goodreads": ["3109489"]}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/dut"}], "subjects": ["Child rearing -- Netherlands -- History.", "Parent and child -- Netherlands -- History.", "Moral education -- Netherlands -- History."], "publish_date": "1995", "publish_country": "ne ", "last_modified": {"type": "/type/datetime", "value": "2020-11-24T09:59:38.260266"}, "by_statement": "Nelleke Bakker.", "works": [{"key": "/works/OL3381757W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10268659M 2 2022-12-17T16:15:24.875631 {"physical_format": "Paperback", "title": "Reluctant Space Far", "publishers": ["Signet"], "isbn_13": ["9780451028877"], "isbn_10": ["0451028872"], "key": "/books/OL10268659M", "type": {"key": "/type/edition"}, "works": [{"key": "/works/OL32447341W"}], "source_records": ["bwb:9780451028877"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T16:15:24.875631"}}
+/type/edition /books/OL10268734M 2 2022-12-17T17:09:27.636193 {"physical_format": "Paperback", "title": "Moon", "publishers": ["Signet"], "isbn_13": ["9780451029850"], "isbn_10": ["0451029852"], "key": "/books/OL10268734M", "type": {"key": "/type/edition"}, "works": [{"key": "/works/OL32454378W"}], "source_records": ["bwb:9780451029850"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T17:09:27.636193"}}
+/type/edition /books/OL10268789M 2 2022-12-17T14:44:21.584861 {"physical_format": "Paperback", "publishers": ["Signet"], "title": "W. C. Fields", "isbn_13": ["9780451030641"], "isbn_10": ["0451030648"], "publish_date": "August 1, 1970", "key": "/books/OL10268789M", "type": {"key": "/type/edition"}, "subjects": ["Biography & Autobiography / General"], "works": [{"key": "/works/OL32437599W"}], "source_records": ["bwb:9780451030641"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T14:44:21.584861"}}
+/type/edition /books/OL10269069M 6 2022-12-17T12:51:34.707031 {"publishers": ["Signet"], "physical_format": "Paperback", "title": "Three Ring Mad", "identifiers": {"goodreads": ["2104798"], "librarything": ["1572151"]}, "isbn_13": ["9780451034939"], "isbn_10": ["0451034937"], "publish_date": "March 1, 1968", "key": "/books/OL10269069M", "authors": [{"key": "/authors/OL2710592A"}], "works": [{"key": "/works/OL8133905W"}], "type": {"key": "/type/edition"}, "subjects": ["Humor / General"], "source_records": ["bwb:9780451034939"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T12:51:34.707031"}}
+/type/edition /books/OL10269295M 2 2022-12-17T15:21:42.208775 {"physical_format": "Paperback", "publishers": ["Signet"], "title": "Honest Sex", "isbn_13": ["9780451038579"], "isbn_10": ["0451038576"], "publish_date": "May 1, 1969", "key": "/books/OL10269295M", "type": {"key": "/type/edition"}, "works": [{"key": "/works/OL32440993W"}], "source_records": ["bwb:9780451038579"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T15:21:42.208775"}}
+/type/edition /books/OL10269365M 2 2022-12-17T14:00:03.877942 {"physical_format": "Paperback", "publishers": ["Signet"], "title": "Salesman", "isbn_13": ["9780451039668"], "isbn_10": ["0451039661"], "publish_date": "August 1, 1969", "key": "/books/OL10269365M", "type": {"key": "/type/edition"}, "works": [{"key": "/works/OL32434130W"}], "source_records": ["bwb:9780451039668"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T14:00:03.877942"}}
+/type/edition /books/OL10269498M 4 2022-12-17T11:35:42.742039 {"publishers": ["Signet"], "title": "Crossword Dictionary, The New American", "isbn_10": ["0451041771"], "isbn_13": ["9780451041777"], "physical_format": "Paperback", "publish_date": "September 1, 1969", "key": "/books/OL10269498M", "authors": [{"key": "/authors/OL2689063A"}], "subjects": ["Reference / General"], "works": [{"key": "/works/OL8077269W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:P6-BQT-632"], "source_records": ["promise:bwb_daily_pallets_2020-08-06", "bwb:9780451041777"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T11:35:42.742039"}}
+/type/edition /books/OL10269531M 4 2022-12-17T11:23:38.932910 {"publishers": ["Signet"], "physical_format": "Paperback", "key": "/books/OL10269531M", "title": "Teenagers' Astrology Guide 1971 (Omarr Astrology)", "identifiers": {"goodreads": ["2185440"]}, "isbn_13": ["9780451042255"], "isbn_10": ["0451042255"], "publish_date": "March 1, 1971", "authors": [{"key": "/authors/OL23725A"}], "type": {"key": "/type/edition"}, "subjects": ["Body, Mind & Spirit / General"], "works": [{"key": "/works/OL32421623W"}], "source_records": ["bwb:9780451042255"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T11:23:38.932910"}}
+/type/edition /books/OL10269649M 3 2022-12-17T15:43:46.565564 {"publishers": ["Signet"], "title": "Selected Crossword Puzzle 10", "isbn_10": ["0451043936"], "isbn_13": ["9780451043931"], "physical_format": "Paperback", "publish_date": "October 1, 1970", "key": "/books/OL10269649M", "authors": [{"key": "/authors/OL2689063A"}], "subjects": ["Games / General"], "works": [{"key": "/works/OL8077280W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780451043931"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T15:43:46.565564"}}
+/type/edition /books/OL10270099M 2 2022-12-17T15:16:29.816328 {"physical_format": "Paperback", "publishers": ["Signet"], "title": "Overlord", "isbn_13": ["9780451051264"], "isbn_10": ["0451051262"], "publish_date": "September 1, 1972", "key": "/books/OL10270099M", "type": {"key": "/type/edition"}, "works": [{"key": "/works/OL32440449W"}], "source_records": ["bwb:9780451051264"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T15:16:29.816328"}}
+/type/edition /books/OL10270374M 3 2022-12-17T15:17:33.014289 {"publishers": ["Signet"], "source_records": ["amazon:045105587X", "bwb:9780451055873"], "title": "Last Summer", "isbn_10": ["045105587X"], "isbn_13": ["9780451055873"], "physical_format": "Paperback", "publish_date": "April 1, 1969", "key": "/books/OL10270374M", "authors": [{"key": "/authors/OL2622774A"}], "works": [{"key": "/works/OL260992W"}], "type": {"key": "/type/edition"}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T15:17:33.014289"}}
+/type/edition /books/OL10270532M 2 2022-12-17T15:17:56.066362 {"physical_format": "Paperback", "publishers": ["Signet"], "title": "Poisoned Power", "isbn_13": ["9780451058614"], "isbn_10": ["0451058615"], "publish_date": "April 16, 1974", "key": "/books/OL10270532M", "type": {"key": "/type/edition"}, "works": [{"key": "/works/OL32440559W"}], "source_records": ["bwb:9780451058614"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T15:17:56.066362"}}
+/type/edition /books/OL10270667M 4 2022-12-17T15:44:14.172517 {"publishers": ["Signet"], "title": "Mad Vertising", "isbn_10": ["0451060865"], "isbn_13": ["9780451060860"], "physical_format": "Paperback", "publish_date": "July 31, 1972", "key": "/books/OL10270667M", "authors": [{"key": "/authors/OL317102A"}], "subjects": ["Humor / General"], "works": [{"key": "/works/OL2342641W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:P7-DEN-418"], "source_records": ["promise:bwb_daily_pallets_2022-03-17", "bwb:9780451060860"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T15:44:14.172517"}}
+/type/edition /books/OL10270859M 3 2022-12-17T16:11:29.360478 {"publishers": ["Signet"], "physical_format": "Paperback", "subtitle": "Happy Birthday (Wee Pals)", "title": "Wee Pals", "isbn_13": ["9780451064424"], "isbn_10": ["0451064429"], "publish_date": "March 4, 1975", "key": "/books/OL10270859M", "works": [{"key": "/works/OL3634319W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780451064424"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T16:11:29.360478"}}
+/type/edition /books/OL10271071M 3 2023-01-10T22:14:48.658001 {"physical_format": "Paperback", "publishers": ["Signet"], "title": "The Shadow box", "isbn_13": ["9780451068439"], "isbn_10": ["0451068432"], "publish_date": "January 6, 1976", "key": "/books/OL10271071M", "type": {"key": "/type/edition"}, "works": [{"key": "/works/OL32443658W"}], "source_records": ["bwb:9780451068439", "promise:bwb_daily_pallets_2022-12-22"], "local_id": ["urn:bwbsku:P8-AUP-095"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2023-01-10T22:14:48.658001"}}
+/type/edition /books/OL10271072M 2 2022-12-17T15:44:35.245965 {"physical_format": "Paperback", "publishers": ["Signet"], "title": "Legend of Blackhurst", "isbn_13": ["9780451068446"], "isbn_10": ["0451068440"], "publish_date": "January 6, 1976", "key": "/books/OL10271072M", "type": {"key": "/type/edition"}, "works": [{"key": "/works/OL32443664W"}], "source_records": ["bwb:9780451068446"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T15:44:35.245965"}}
+/type/edition /books/OL10271199M 4 2022-12-17T14:41:33.159938 {"publishers": ["Signet"], "physical_format": "Paperback", "title": "Woman in Silk and Shadow", "isbn_13": ["9780451072955"], "isbn_10": ["0451072952"], "publish_date": "January 4, 1977", "key": "/books/OL10271199M", "oclc_numbers": ["16462535"], "works": [{"key": "/works/OL15701744W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780451072955"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T14:41:33.159938"}}
+/type/edition /books/OL10271685M 10 2022-12-17T15:34:14.035913 {"publishers": ["Signet"], "number_of_pages": 297, "isbn_10": ["0451096665"], "physical_format": "Paperback", "lc_classifications": ["CPB Box no. 1125 vol. 19", "CPB"], "key": "/books/OL10271685M", "authors": [{"key": "/authors/OL3406981A"}], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part27.utf8:173090101:663", "amazon:0451096665", "promise:bwb_daily_pallets_2020-06-04", "bwb:9780451096661"], "title": "Windswept", "lccn": ["98811757"], "identifiers": {"goodreads": ["2097302"], "librarything": ["3661416"]}, "isbn_13": ["9780451096661"], "subjects": ["Fiction / General"], "publish_date": "March 3, 1981", "oclc_numbers": ["7341702"], "works": [{"key": "/works/OL9366143W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:P4-BAO-237"], "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T15:34:14.035913"}}
+/type/edition /books/OL1027173M 4 2020-11-24T10:03:30.080902 {"publishers": ["Fabrique de St.-Joseph de Maskinonge\u0301"], "number_of_pages": 1453, "subtitle": "1721 a\u0300 1993", "isbn_10": ["2980409103"], "subject_place": ["Maskinonge\u0301 (Que\u0301bec)", "Que\u0301bec (Province)", "Maskinonge\u0301."], "lc_classifications": ["CS88.M3 L87 1994"], "latest_revision": 4, "key": "/books/OL1027173M", "authors": [{"key": "/authors/OL552358A"}], "publish_places": ["[Maskinonge\u0301"], "languages": [{"key": "/languages/fre"}], "pagination": "4 v. (1453 p.) ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part25.utf8:128201752:908"], "title": "Re\u0301pertoire des naissances/bapte\u0302mes de la paroisse St-Joseph de Maskinonge\u0301", "dewey_decimal_class": ["929/.371444"], "notes": {"type": "/type/text", "value": "\"Projet De\u0301fi 90.\"\nCover title."}, "identifiers": {"goodreads": ["3644430"]}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "edition_name": "1. e\u0301d.", "lccn": ["96102593"], "subjects": ["Paroisse Saint-Joseph (Maskinonge\u0301, Que\u0301bec) -- Registers.", "Registers of births, etc. -- Que\u0301bec (Province) -- Maskinonge\u0301.", "Maskinonge\u0301 (Que\u0301bec) -- Genealogy."], "publish_date": "1994", "publish_country": "quc", "last_modified": {"type": "/type/datetime", "value": "2020-11-24T10:03:30.080902"}, "by_statement": "[Pierre Lupien].", "works": [{"key": "/works/OL3382308W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10271799M 5 2022-12-17T16:13:06.513381 {"publishers": ["Signet"], "physical_format": "Paperback", "title": "First You Cry", "identifiers": {"goodreads": ["1290854"]}, "isbn_13": ["9780451112590"], "isbn_10": ["0451112598"], "publish_date": "May 1, 1977", "key": "/books/OL10271799M", "authors": [{"key": "/authors/OL2725650A"}], "works": [{"key": "/works/OL8164915W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Biography / Autobiography"], "first_sentence": {"type": "/type/text", "value": "They don't make cards for cancer anniversaries."}, "source_records": ["bwb:9780451112590"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T16:13:06.513381"}}
+/type/edition /books/OL10271836M 9 2022-12-17T12:19:05.846237 {"publishers": ["Signet"], "physical_format": "Paperback", "source_records": ["marc:marc_loc_updates/v37.i40.records.utf8:19515536:940", "marc:marc_loc_2016/BooksAll.2016.part37.utf8:42914797:945", "promise:bwb_daily_pallets_2020-04-30", "bwb:9780451114204"], "title": "Mr. October", "lccn": ["2009484949"], "identifiers": {"goodreads": ["1927286"], "librarything": ["1239006"], "amazon": [""]}, "isbn_13": ["9780451114204"], "lc_classifications": ["CPB Box no. 2966 vol. 10"], "publish_date": "March 2, 1982", "key": "/books/OL10271836M", "authors": [{"key": "/authors/OL410359A"}], "works": [{"key": "/works/OL2780513W"}], "type": {"key": "/type/edition"}, "subjects": ["Baseball", "Baseball players", "Biography", "Jackson, Reggie", "United States", "Biography/Autobiography"], "isbn_10": ["0451114205"], "local_id": ["urn:bwbsku:O6-BZB-340"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T12:19:05.846237"}}
+/type/edition /books/OL10271975M 3 2022-12-17T15:22:09.553237 {"publishers": ["Signet"], "title": "Alien Heart and Make Way", "isbn_10": ["0451118936"], "isbn_13": ["9780451118936"], "physical_format": "Paperback", "publish_date": "October 5, 1982", "key": "/books/OL10271975M", "authors": [{"key": "/authors/OL2248578A"}], "subjects": ["Fiction / General"], "works": [{"key": "/works/OL7440026W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780451118936"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T15:22:09.553237"}}
+/type/edition /books/OL10273250M 4 2022-12-04T19:26:02.929684 {"publishers": ["Consumer Guide"], "weight": "10.7 ounces", "edition_name": "Collectors edition", "physical_format": "Paperback", "key": "/books/OL10273250M", "authors": [{"key": "/authors/OL2725440A"}], "subjects": ["Baseball - General", "General", "Reference / General", "Antiques / Collectibles", "Baseball cards", "Prices", "United States", "Antiques/Collectibles"], "isbn_13": ["9780451187390"], "title": "Baseball Card Price Guide 1996", "number_of_pages": 640, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0451187393"], "publish_date": "March 1, 1996", "oclc_numbers": ["34309036"], "works": [{"key": "/works/OL8163611W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "6.8 x 4.2 x 1.4 inches", "local_id": ["urn:bwbsku:O8-BKB-684"], "source_records": ["promise:bwb_daily_pallets_2022-08-13"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T19:26:02.929684"}}
+/type/edition /books/OL10273350M 6 2022-12-17T20:05:54.710966 {"publishers": ["Signet"], "identifiers": {"goodreads": ["2185427"]}, "subtitle": "Monthly Forecasts for Every Zodiac Sign (Omarr Astrology)", "weight": "6.1 ounces", "covers": [2422748], "physical_format": "Paperback", "key": "/books/OL10273350M", "authors": [{"key": "/authors/OL23725A"}], "subjects": ["Body, Mind & Spirit", "New Age / Body, Mind & Spirit", "New Age", "Astrology - Horoscopes", "Body, Mind & Spirit / General", "Astrology - General"], "isbn_13": ["9780451193544"], "title": "Sydney Omarr's Astrological Guide for You in 2000", "number_of_pages": 352, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0451193547"], "publish_date": "August 1, 1999", "oclc_numbers": ["41947994"], "type": {"key": "/type/edition"}, "physical_dimensions": "6.5 x 4.6 x 0.9 inches", "works": [{"key": "/works/OL32473806W"}], "source_records": ["bwb:9780451193544"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T20:05:54.710966"}}
+/type/edition /books/OL10273516M 14 2022-12-17T16:32:15.154587 {"publishers": ["Signet"], "number_of_pages": 352, "ia_box_id": ["IA119919"], "weight": "4 ounces", "isbn_10": ["0451222717"], "covers": [2422881], "physical_format": "Paperback", "key": "/books/OL10273516M", "authors": [{"key": "/authors/OL1422845A"}], "ocaid": "sweetreturn00jeff", "isbn_13": ["9780451222718"], "classifications": {}, "source_records": ["amazon:0451222717", "marc:marc_loc_updates/v36.i48.records.utf8:8040360:936", "ia:sweetreturn00jeff", "ia:sweetreturn0000jeff", "marc:marc_loc_2016/BooksAll.2016.part36.utf8:73000890:936", "promise:bwb_daily_pallets_2022-10-17", "bwb:9780451222718"], "title": "Sweet Return", "notes": {"type": "/type/text", "value": "Signet Eclipse"}, "identifiers": {"librarything": ["4322328"], "goodreads": ["762813"]}, "languages": [{"key": "/languages/eng"}], "subjects": ["American Light Romantic Fiction", "Fiction", "Fiction - Romance", "Romance: Modern", "Romance - Contemporary", "Fiction / Romance / Contemporary"], "publish_date": "December 4, 2007", "works": [{"key": "/works/OL5805326W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "6.7 x 4.2 x 1.1 inches", "lccn": ["2008577285"], "lc_classifications": ["CPB Box no. 2772 vol. 14"], "local_id": ["urn:bwbsku:W7-AAX-520"], "latest_revision": 14, "revision": 14, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T16:32:15.154587"}}
+/type/edition /books/OL10274008M 9 2022-12-17T11:59:19.862294 {"publishers": ["Signet Classics"], "physical_format": "Paperback", "subtitle": "Volume 1", "source_records": ["amazon:0451506863", "bwb:9780451506863"], "title": "Four Major Plays", "identifiers": {"goodreads": ["3032364"]}, "isbn_13": ["9780451506863"], "isbn_10": ["0451506863"], "publish_date": "January 31, 1965", "key": "/books/OL10274008M", "authors": [{"key": "/authors/OL13192A"}], "works": [{"key": "/works/OL15086279W"}], "type": {"key": "/type/edition"}, "subjects": ["Drama / General"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T11:59:19.862294"}}
+/type/edition /books/OL10274207M 9 2022-12-19T15:49:41.387801 {"publishers": ["Signet Classics"], "physical_format": "Paperback", "source_records": ["amazon:0451515366", "marc:marc_columbia/Columbia-extract-20221130-001.mrc:107010567:1004", "bwb:9780451515360"], "title": "Main Street", "identifiers": {"librarything": ["106960"], "goodreads": ["2229463"]}, "isbn_13": ["9780451515360"], "isbn_10": ["0451515366"], "publish_date": "October 1, 1961", "key": "/books/OL10274207M", "authors": [{"key": "/authors/OL19493A"}], "oclc_numbers": ["213785417"], "works": [{"key": "/works/OL51117W"}], "type": {"key": "/type/edition"}, "subjects": ["Fiction / General"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-19T15:49:41.387801"}}
+/type/edition /books/OL10274210M 8 2022-12-17T11:34:40.703239 {"publishers": ["Signet Classics"], "source_records": ["amazon:0451515692", "bwb:9780451515698"], "title": "Williams, Three by Tennessee", "identifiers": {"goodreads": ["7098130"]}, "isbn_13": ["9780451515698"], "physical_format": "Paperback", "isbn_10": ["0451515692"], "publish_date": "August 1, 1976", "key": "/books/OL10274210M", "authors": [{"key": "/authors/OL27524A"}], "oclc_numbers": ["228434570"], "works": [{"key": "/works/OL278342W"}], "type": {"key": "/type/edition"}, "subjects": ["Drama / General"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T11:34:40.703239"}}
+/type/edition /books/OL10274638M 2 2022-12-17T15:43:39.735768 {"physical_format": "Paperback", "publishers": ["Signet"], "title": "Proud Peoples", "isbn_13": ["9780451612434"], "isbn_10": ["0451612434"], "publish_date": "September 18, 1973", "key": "/books/OL10274638M", "type": {"key": "/type/edition"}, "works": [{"key": "/works/OL32443484W"}], "source_records": ["bwb:9780451612434"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T15:43:39.735768"}}
+/type/edition /books/OL10275291M 2 2022-12-17T16:15:45.239489 {"physical_format": "Paperback", "title": "One for the Devil", "publishers": ["Plume"], "isbn_13": ["9780452002951"], "isbn_10": ["0452002958"], "key": "/books/OL10275291M", "type": {"key": "/type/edition"}, "works": [{"key": "/works/OL32447409W"}], "source_records": ["bwb:9780452002951"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T16:15:45.239489"}}
+/type/edition /books/OL10275400M 6 2022-12-17T13:47:47.467706 {"publishers": ["Plume"], "physical_format": "Paperback", "title": "Babel, The Collected Stories of Isaac", "identifiers": {"goodreads": ["97336"], "librarything": ["161719"]}, "isbn_13": ["9780452005945"], "isbn_10": ["0452005949"], "publish_date": "March 1, 1974", "key": "/books/OL10275400M", "authors": [{"key": "/authors/OL2657666A"}], "works": [{"key": "/works/OL7973508W"}], "type": {"key": "/type/edition"}, "subjects": ["Fiction / General"], "source_records": ["bwb:9780452005945"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T13:47:47.467706"}}
+/type/edition /books/OL10276449M 3 2022-01-25T16:15:42.444368 {"publishers": ["Canadian Cataloguing"], "weight": "2.1 pounds", "isbn_10": ["0459275534"], "number_of_pages": 666, "isbn_13": ["9780459275532"], "physical_format": "Paperback", "publish_date": "2004", "key": "/books/OL10276449M", "authors": [{"key": "/authors/OL603786A"}], "title": "The 2005 Annotated Indian Act and Aboriginal Constitutional Provsions", "works": [{"key": "/works/OL3576578W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.8 x 5.8 x 1.1 inches", "covers": [12572855], "ocaid": "2005annotatedind0000cana", "source_records": ["ia:2005annotatedind0000cana"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-25T16:15:42.444368"}}
+/type/edition /books/OL10276983M 6 2010-08-16T21:51:22.212110 {"publishers": ["J M Dent & Sons Ltd"], "physical_format": "Paperback", "revision": 6, "last_modified": {"type": "/type/datetime", "value": "2010-08-16T21:51:22.212110"}, "title": "Ruth", "number_of_pages": 480, "isbn_13": ["9780460016735"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0460016733"], "publish_date": "September 1982", "key": "/books/OL10276983M", "authors": [{"key": "/authors/OL113828A"}], "latest_revision": 6, "works": [{"key": "/works/OL1103201W"}], "type": {"key": "/type/edition"}, "identifiers": {"goodreads": ["4577542"], "librarything": ["107001"]}}
+/type/edition /books/OL10277102M 2 2009-12-15T00:45:31.521983 {"publishers": ["Phoenix House Ltd"], "key": "/books/OL10277102M", "title": "The Children's Picture Book of Ballet", "number_of_pages": 64, "isbn_13": ["9780460066792"], "physical_format": "Hardcover", "isbn_10": ["046006679X"], "publish_date": "1955", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:45:31.521983"}, "authors": [{"key": "/authors/OL2260925A"}], "latest_revision": 2, "works": [{"key": "/works/OL7464285W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10277304M 5 2011-04-29T14:00:50.998713 {"publishers": ["J.M.Dent & Sons Ltd"], "number_of_pages": 32, "last_modified": {"type": "/type/datetime", "value": "2011-04-29T14:00:50.998713"}, "title": "A Day for the Lighthouse", "identifiers": {"goodreads": ["5691935"]}, "isbn_13": ["9780460880015"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Hardcover", "isbn_10": ["0460880012"], "publish_date": "July 12, 1990", "key": "/books/OL10277304M", "authors": [{"key": "/authors/OL340329A"}, {"key": "/authors/OL3407754A"}], "latest_revision": 5, "oclc_numbers": ["59235264"], "type": {"key": "/type/edition"}, "subjects": ["Fiction", "Picture books"], "revision": 5}
+/type/edition /books/OL10277423M 4 2022-12-05T10:36:35.206557 {"physical_format": "Paperback", "weight": "14.1 ounces", "publishers": ["Marshall Cavendish"], "title": "English for Business Life Self-Study Guide", "isbn_13": ["9780462007687"], "isbn_10": ["0462007685"], "publish_date": "November 1, 2006", "key": "/books/OL10277423M", "authors": [{"key": "/authors/OL2729215A"}, {"key": "/authors/OL2729216A"}], "type": {"key": "/type/edition"}, "subjects": ["ELT: English for business"], "physical_dimensions": "9.1 x 8.1 x 0.5 inches", "works": [{"key": "/works/OL25107454W"}], "source_records": ["bwb:9780462007687", "ia:englishforbusine0000badg_n2j4", "promise:bwb_daily_pallets_2022-04-20"], "covers": [12831286], "ocaid": "englishforbusine0000badg_n2j4", "oclc_numbers": ["175283357"], "local_id": ["urn:bwbsku:KQ-634-431"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-05T10:36:35.206557"}}
+/type/edition /books/OL10277503M 5 2011-04-28T16:17:03.804335 {"publishers": ["Perseus Books"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-28T16:17:03.804335"}, "title": "African-American Workers", "identifiers": {"goodreads": ["2829344"]}, "isbn_13": ["9780465001781"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0465001785"], "publish_date": "September 2005", "key": "/books/OL10277503M", "authors": [{"key": "/authors/OL400903A"}], "latest_revision": 5, "oclc_numbers": ["149069394"], "works": [{"key": "/works/OL2735502W"}], "type": {"key": "/type/edition"}, "subjects": ["Ethnic Studies - African American Studies - General", "Blacks In The U.S.", "History Of Labor", "Social Science", "Sociology"], "revision": 5}
+/type/edition /books/OL10277633M 5 2010-08-16T21:53:57.996154 {"publishers": ["Basic Books"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2010-08-16T21:53:57.996154"}, "title": "Institutional Transformation of American Culture", "identifiers": {"goodreads": ["5070894"], "librarything": ["9738435"]}, "isbn_13": ["9780465033218"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0465033210"], "publish_date": "August 30, 2000", "key": "/books/OL10277633M", "authors": [{"key": "/authors/OL836159A"}], "latest_revision": 5, "works": [{"key": "/works/OL4303167W"}], "type": {"key": "/type/edition"}, "subjects": ["Anthropology", "Customs & Traditions", "Sociology"], "revision": 5}
+/type/edition /books/OL10277914M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780470004111"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "publishers": ["Wiley"], "number_of_pages": 926, "edition_name": "Har/Cdr edition", "isbn_10": ["0470004118"], "publish_date": "November 30, 2001", "key": "/books/OL10277914M", "authors": [{"key": "/authors/OL2627447A"}, {"key": "/authors/OL2729616A"}, {"key": "/authors/OL541079A"}, {"key": "/authors/OL2627271A"}], "title": "Paroles,(Instructor's Annotated Edition with the Intro French Multimedia-Interactive CD, and the Student Audio CD)", "type": {"key": "/type/edition"}, "subjects": ["Language & Linguistics", "Foreign Language Study", "Foreign Language - Dictionaries / Phrase Books", "Spanish", "Language", "French", "Foreign Language Study / French"], "revision": 1}
+/type/edition /books/OL10277930M 2 2022-10-18T08:39:28.940907 {"isbn_13": ["9780470004449"], "physical_format": "Hardcover", "languages": [{"key": "/languages/eng"}], "publishers": ["John Wiley & Sons Inc"], "number_of_pages": 1090, "edition_name": "7I.S.ed edition", "isbn_10": ["0470004444"], "publish_date": "May 5, 1999", "key": "/books/OL10277930M", "authors": [{"key": "/authors/OL3407869A"}, {"key": "/authors/OL391550A"}], "title": "Adjustment and Growth", "type": {"key": "/type/edition"}, "subjects": ["Child & developmental psychology"], "works": [{"key": "/works/OL29058371W"}], "source_records": ["bwb:9780470004449"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T08:39:28.940907"}}
+/type/edition /books/OL10278125M 4 2021-09-16T09:08:46.289044 {"publishers": ["John Wiley & Sons Inc"], "physical_format": "Hardcover", "subtitle": "Services With Initiative", "title": "Towards 4g Technologies", "number_of_pages": 384, "isbn_13": ["9780470010334"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0470010339"], "publish_date": "August 30, 2007", "key": "/books/OL10278125M", "authors": [{"key": "/authors/OL3407897A"}], "oclc_numbers": ["232612024"], "works": [{"key": "/works/OL9367272W"}], "type": {"key": "/type/edition"}, "subjects": ["Communications engineering / telecommunications", "Telecommunications", "Technology & Engineering", "Science/Mathematics"], "source_records": ["bwb:9780470010334"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-09-16T09:08:46.289044"}}
+/type/edition /books/OL10278229M 10 2022-12-08T02:14:39.466615 {"publishers": ["Wiley-Interscience"], "number_of_pages": 396, "subtitle": "General, Organic and Natural Product Chemistry", "weight": "1.7 pounds", "covers": [2423281], "physical_format": "Paperback", "key": "/books/OL10278229M", "authors": [{"key": "/authors/OL3407960A"}, {"key": "/authors/OL3407961A"}], "subjects": ["Pharmacy / dispensing", "Science", "Science/Mathematics", "Chemistry - General", "Chemistry - Industrial & Technical", "Pharmacy", "Science / Chemistry / Technical & Industrial", "Chemistry - Clinical", "Chemistry", "Chemistry, Pharmaceutical", "Textbooks"], "edition_name": "1 edition", "languages": [{"key": "/languages/eng"}], "title": "Chemistry for Pharmacy Students", "identifiers": {"goodreads": ["2427452"], "librarything": ["5081281"]}, "isbn_13": ["9780470017814"], "isbn_10": ["0470017813"], "publish_date": "August 24, 2007", "works": [{"key": "/works/OL12103280W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.5 x 6.6 x 1 inches", "lccn": ["2007017895"], "lc_classifications": ["QD31.3 .S377 2007", "RS403"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part34.utf8:122784692:1544", "ia:chemistryforphar0000sark", "bwb:9780470017814", "promise:bwb_daily_pallets_2021-08-24"], "ocaid": "chemistryforphar0000sark", "local_id": ["urn:bwbsku:P7-EQZ-583"], "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-08T02:14:39.466615"}}
+/type/edition /books/OL10278264M 8 2022-10-18T15:04:17.027070 {"publishers": ["John Wiley & Sons Inc"], "identifiers": {"goodreads": ["4796719"], "librarything": ["1267461"]}, "physical_format": "Paperback", "lc_classifications": ["HG1615 .B45713 2010", "HG1615.25"], "key": "/books/OL10278264M", "authors": [{"key": "/authors/OL3407985A"}], "subjects": ["Banking", "Banks & Banking", "Business & Economics", "Business/Economics"], "edition_name": "3 edition", "languages": [{"key": "/languages/eng"}], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part38.utf8:242084733:750", "bwb:9780470019139"], "title": "Risk Management in Banking", "lccn": ["2011288737"], "number_of_pages": 800, "isbn_13": ["9780470019139"], "isbn_10": ["0470019131"], "publish_date": "December 2008", "oclc_numbers": ["373480169"], "works": [{"key": "/works/OL9367347W"}], "type": {"key": "/type/edition"}, "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T15:04:17.027070"}}
+/type/edition /books/OL10278883M 3 2022-10-18T13:00:42.554940 {"isbn_13": ["9780470067383"], "physical_format": "Paperback", "languages": [{"key": "/languages/eng"}], "publishers": ["John Wiley & Sons Inc"], "title": "ServSafe Essentials", "first_sentence": {"type": "/type/text", "value": "When diners eat out, they expect safe food, clean surroundings, and well-groomed workers."}, "isbn_10": ["0470067381"], "publish_date": "April 6, 2006", "key": "/books/OL10278883M", "authors": [{"key": "/authors/OL396655A"}, {"key": "/authors/OL2737357A"}, {"key": "/authors/OL2632454A"}, {"key": "/authors/OL2737088A"}, {"key": "/authors/OL716686A"}], "type": {"key": "/type/edition"}, "subjects": ["Food & Drink / Cookery"], "works": [{"key": "/works/OL29064712W"}], "source_records": ["bwb:9780470067383"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T13:00:42.554940"}}
+/type/edition /books/OL10279102M 2 2009-12-15T00:45:32.942364 {"physical_format": "Hardcover", "title": "Research in Psychology", "isbn_10": ["0470088168"], "publishers": ["John Wiley and Sons (WIE)"], "edition_name": "4International Ed edition", "isbn_13": ["9780470088166"], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:45:32.942364"}, "publish_date": "October 4, 2006", "key": "/books/OL10279102M", "authors": [{"key": "/authors/OL217872A"}], "latest_revision": 2, "subjects": ["Psychology"], "works": [{"key": "/works/OL1816849W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10279305M 3 2009-12-15T00:45:32.942364 {"physical_format": "Paperback", "languages": [{"key": "/languages/eng"}], "publishers": ["John Wiley & Sons Inc"], "isbn_10": ["0470103345"], "title": "Fundamentals of Physics (Wiley Plus Products)", "edition_name": "7Rev Ed edition", "isbn_13": ["9780470103340"], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:45:32.942364"}, "publish_date": "January 30, 2008", "key": "/books/OL10279305M", "authors": [{"key": "/authors/OL359271A"}], "latest_revision": 3, "subjects": ["PHYSICS"], "works": [{"key": "/works/OL2538488W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10279642M 4 2010-04-24T17:59:08.477307 {"publishers": ["John Wiley & Sons Inc"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T17:59:08.477307"}, "title": "Business Statistics", "identifiers": {"goodreads": ["2787433"]}, "isbn_13": ["9780470123218"], "edition_name": "4Rev Ed edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0470123214"], "publish_date": "August 10, 2007", "key": "/books/OL10279642M", "authors": [{"key": "/authors/OL425147A"}], "latest_revision": 4, "works": [{"key": "/works/OL2838069W"}], "type": {"key": "/type/edition"}, "subjects": ["Business mathematics", "Probability & statistics"], "revision": 4}
+/type/edition /books/OL1027970M 3 2020-11-24T10:13:17.864810 {"publishers": ["Edition Leipzig"], "identifiers": {"librarything": ["4854395"]}, "isbn_10": ["3361001439"], "series": ["Museum in der DDR"], "lc_classifications": ["N2310 .M872 1987"], "latest_revision": 3, "key": "/books/OL1027970M", "publish_places": ["Leipzig"], "contributions": ["Gleisberg, Dieter."], "pagination": "129 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part25.utf8:128897233:973"], "title": "Museum der Bildenden Ku\u0308nste Leipzig", "lccn": ["96103670"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 128-129).\n\"Dieser Band erscheint gleichzeitig in der Reihe Museum, deren Titel- und Gestaltungsrechte beim Magazinpresse Verlag, Mu\u0308nchen, liegen\"--Colophon."}, "number_of_pages": 129, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/ger"}], "subjects": ["Museum der Bildenden Ku\u0308nste (Leipzig, Germany)", "Art -- Germany -- Leipzig."], "publish_date": "1987", "publish_country": "gw ", "last_modified": {"type": "/type/datetime", "value": "2020-11-24T10:13:17.864810"}, "subject_place": ["Germany", "Leipzig."], "by_statement": "[Autoren dieser Ausgabe, Dieter Gleisberg ... et al.].", "oclc_numbers": ["27296450"], "works": [{"key": "/works/OL23614727W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10279M 4 2022-08-19T00:00:57.182867 {"notes": {"type": "/type/text", "value": "List of Tagores\u0315 poetical works: p. [777]-783.\nIn Bengali."}, "title": "Rabi\u0304ndra-ka\u0304bya-parikrama\u0304", "authors": [{"key": "/authors/OL3281A"}], "publish_date": "1965", "lc_classifications": ["PK1727.P6 B47 1965"], "pagination": "14, 810 p.", "source_records": ["marc:marc_records_scriblio_net/part29.dat:6086745:604", "marc:marc_loc_2016/BooksAll.2016.part43.utf8:13820772:613"], "lccn": ["sa66008036"], "languages": [{"key": "/languages/ben"}], "subjects": ["Tagore, Rabindranath, 1861-1941"], "publish_country": "ii ", "oclc_numbers": ["20175806"], "type": {"key": "/type/edition"}, "key": "/books/OL10279M", "number_of_pages": 810, "works": [{"key": "/works/OL321677W"}], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-19T00:00:57.182867"}}
+/type/edition /books/OL10280071M 14 2022-10-18T15:05:50.629088 {"publishers": ["Wiley"], "number_of_pages": 352, "subtitle": "Everything You Need to Know about Living Part-Time in the USA and Mexico", "covers": [2423943], "physical_format": "Paperback", "lc_classifications": ["HQ1063.2.C2", "HQ1063.2.C2 G73 2007", "HQ1063.2.C2G73 2017"], "key": "/books/OL10280071M", "authors": [{"key": "/authors/OL2641204A"}], "ocaid": "canadiansnowbird0000gray", "subjects": ["Personal Finance", "Travel Guides", "Travel", "Consumer Finance", "Personal Finance - Retirement Planning", "Business & Economics / Personal Finance / Retirement Planning", "North America", "Personal Finance - General"], "edition_name": "4 edition", "languages": [{"key": "/languages/eng"}], "source_records": ["amazon:047015375X", "marc:marc_loc_updates/v36.i41.records.utf8:9236711:1123", "marc:marc_loc_updates/v36.i44.records.utf8:13416820:1123", "marc:marc_loc_updates/v37.i47.records.utf8:11920196:1216", "marc:marc_loc_updates/v38.i04.records.utf8:8322395:1437", "ia:canadiansnowbird0000gray", "marc:marc_loc_2016/BooksAll.2016.part42.utf8:106903466:1787", "marc:marc_loc_2016/BooksAll.2016.part36.utf8:481275:1444", "ia:canadiansnowbird0000gray_x0n3", "bwb:9780470153758"], "title": "The Canadian Snowbird Guide", "lccn": ["2015299216", "2008428243"], "identifiers": {"goodreads": ["2405533"]}, "isbn_13": ["9780470153758"], "isbn_10": ["047015375X"], "publish_date": "December 4, 2007", "works": [{"key": "/works/OL284504W"}], "type": {"key": "/type/edition"}, "latest_revision": 14, "revision": 14, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T15:05:50.629088"}}
+/type/edition /books/OL10280111M 11 2022-12-10T10:45:37.515523 {"publishers": ["Howell Book House"], "number_of_pages": 128, "subtitle": "Your Happy Healthy Pet", "weight": "10.4 ounces", "covers": [2423974], "local_id": ["urn:sfpl:31223075828260", "urn:sfpl:31223075828062", "urn:sfpl:31223075828617", "urn:sfpl:31223075828252", "urn:bwbsku:316-ABB-061"], "physical_format": "Hardcover", "key": "/books/OL10280111M", "authors": [{"key": "/authors/OL2730141A"}], "subjects": ["Fishes & aquaria", "Freshwater Fish - Individual Species", "Pets", "Fish & Aquariums", "Pets / Fish", "Goldfish"], "edition_name": "2 edition", "languages": [{"key": "/languages/eng"}], "source_records": ["marc:marc_openlibraries_sanfranciscopubliclibrary/sfpl_chq_2018_12_24_run03.mrc:215558864:2327", "marc:marc_loc_2016/BooksAll.2016.part34.utf8:125744080:1053", "ia:goldfish0000skom", "bwb:9780470165126", "promise:bwb_daily_pallets_2020-04-09"], "title": "Goldfish", "identifiers": {"goodreads": ["1616016"], "librarything": ["6503703"], "amazon": [""]}, "isbn_13": ["9780470165126"], "isbn_10": ["047016512X"], "publish_date": "October 22, 2007", "works": [{"key": "/works/OL8204567W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.4 x 5.5 x 0.5 inches", "lccn": ["2007020115"], "lc_classifications": ["SF458.G6 D4 2008", "SF458.G6D4 2007"], "ocaid": "goldfish0000skom", "latest_revision": 11, "revision": 11, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T10:45:37.515523"}}
+/type/edition /books/OL10280576M 6 2011-02-17T08:56:17.755241 {"physical_format": "Paperback", "publishers": ["NY"], "identifiers": {"librarything": ["1690654"], "goodreads": ["695352"]}, "classifications": {}, "last_modified": {"type": "/type/datetime", "value": "2011-02-17T08:56:17.755241"}, "title": "Engaged to Jarrod Stone", "series": ["Harlequin Presents, #388"], "number_of_pages": 192, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780263734034"], "isbn_10": ["026373403X"], "publish_date": "1980", "key": "/books/OL10280576M", "authors": [{"key": "/authors/OL666139A"}], "latest_revision": 6, "works": [{"key": "/works/OL3775290W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL10281169M 4 2020-08-19T22:45:49.900188 {"publishers": ["Harlequin Mills & Boon"], "physical_format": "Paperback", "source_records": ["bwb:9780263782608"], "title": "A Part of Heaven", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 192, "last_modified": {"type": "/type/datetime", "value": "2020-08-19T22:45:49.900188"}, "edition_name": "New Ed edition", "isbn_13": ["9780263782608"], "isbn_10": ["0263782603"], "publish_date": "October 8, 1993", "key": "/books/OL10281169M", "authors": [{"key": "/authors/OL659974A"}], "latest_revision": 4, "oclc_numbers": ["28715942"], "works": [{"key": "/works/OL3754993W"}], "type": {"key": "/type/edition"}, "subjects": ["Romance"], "revision": 4}
+/type/edition /books/OL10281177M 7 2022-12-08T23:07:17.935333 {"publishers": ["Harlequin Mills & Boon"], "number_of_pages": 192, "covers": [2343361], "physical_format": "Paperback", "key": "/books/OL10281177M", "authors": [{"key": "/authors/OL798384A"}], "subjects": ["Romance"], "edition_name": "New Ed edition", "source_records": ["bwb:9780263782820", "promise:bwb_daily_pallets_2021-02-04"], "title": "Close Captivity", "identifiers": {"librarything": ["9139968"]}, "isbn_13": ["9780263782820"], "isbn_10": ["0263782824"], "publish_date": "November 5, 1993", "oclc_numbers": ["29017849"], "works": [{"key": "/works/OL4197605W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:KO-577-217"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-08T23:07:17.935333"}}
+/type/edition /books/OL10281773M 4 2022-11-14T17:58:38.799502 {"publishers": ["Harlequin Mills & Boon"], "physical_format": "Paperback", "source_records": ["bwb:9780263794519", "promise:bwb_daily_pallets_2022-10-11"], "title": "Heart's Refuge (Stolen Moments)", "number_of_pages": 192, "edition_name": "New Ed edition", "isbn_13": ["9780263794519"], "isbn_10": ["0263794512"], "publish_date": "April 5, 1996", "key": "/books/OL10281773M", "authors": [{"key": "/authors/OL672337A"}], "works": [{"key": "/works/OL3797347W"}], "type": {"key": "/type/edition"}, "subjects": ["Romance"], "local_id": ["urn:bwbsku:KR-411-187"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-14T17:58:38.799502"}}
+/type/edition /books/OL10281814M 8 2020-08-19T05:48:03.961975 {"publishers": ["Harlequin Mills & Boon"], "number_of_pages": 192, "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2020-08-19T05:48:03.961975"}, "latest_revision": 8, "key": "/books/OL10281814M", "authors": [{"key": "/authors/OL1385992A"}], "subjects": ["Romance"], "classifications": {}, "source_records": ["bwb:9780263795424"], "title": "Tender Touch", "notes": {"type": "/type/text", "value": "Medical Romance"}, "identifiers": {"goodreads": ["6275684"], "librarything": ["9087008"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780263795424"], "isbn_10": ["026379542X"], "publish_date": "May 10, 1996", "oclc_numbers": ["43132608"], "works": [{"key": "/works/OL5691806W"}], "type": {"key": "/type/edition"}, "revision": 8}
+/type/edition /books/OL10281852M 4 2010-04-24T17:59:08.477307 {"publishers": ["Harlequin Mills & Boon"], "last_modified": {"type": "/type/datetime", "value": "2010-04-24T17:59:08.477307"}, "title": "Romance Mixed 20 Pack (Trade Only) (Romance)", "identifiers": {"goodreads": ["1586380"]}, "isbn_13": ["9780263796377"], "physical_format": "Paperback", "isbn_10": ["026379637X"], "publish_date": "February 9, 1996", "key": "/books/OL10281852M", "authors": [{"key": "/authors/OL3408623A"}], "latest_revision": 4, "works": [{"key": "/works/OL9367997W"}], "type": {"key": "/type/edition"}, "subjects": ["Romance"], "revision": 4}
+/type/edition /books/OL10282117M 7 2022-12-05T13:13:43.839314 {"publishers": ["Harlequin Mills & Boon"], "covers": [6596062], "physical_format": "Paperback", "key": "/books/OL10282117M", "authors": [{"key": "/authors/OL3318919A"}], "subjects": ["Romance"], "edition_name": "New Ed edition", "source_records": ["bwb:9780263805468", "ia:helpwanteddaddy0000gree", "promise:bwb_daily_pallets_2022-04-20"], "title": "Help Wanted, Daddy (Enchanted)", "number_of_pages": 192, "isbn_13": ["9780263805468"], "isbn_10": ["0263805468"], "publish_date": "January 16, 1998", "oclc_numbers": ["60139953"], "works": [{"key": "/works/OL9264066W"}], "type": {"key": "/type/edition"}, "ocaid": "helpwanteddaddy0000gree", "local_id": ["urn:bwbsku:KQ-735-650"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-05T13:13:43.839314"}}
+/type/edition /books/OL10282240M 8 2020-08-19T04:59:17.936525 {"publishers": ["Harlequin Mills & Boon"], "identifiers": {"librarything": ["8288524"], "goodreads": ["3084749"]}, "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2020-08-19T04:59:17.936525"}, "latest_revision": 8, "key": "/books/OL10282240M", "authors": [{"key": "/authors/OL666139A"}, {"key": "/authors/OL792856A"}, {"key": "/authors/OL785666A"}], "subjects": ["Fiction anthologies & collections", "Romance"], "classifications": {}, "source_records": ["bwb:9780263815368"], "title": "Trials by Marriage", "notes": {"type": "/type/text", "value": "By Request"}, "number_of_pages": 384, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780263815368"], "isbn_10": ["0263815366"], "publish_date": "April 2, 1999", "oclc_numbers": ["40682834"], "works": [{"key": "/works/OL15334859W"}], "type": {"key": "/type/edition"}, "revision": 8}
+/type/edition /books/OL10282381M 7 2022-12-08T20:42:48.031518 {"publishers": ["Harlequin Mills & Boon"], "covers": [2343515], "physical_format": "Paperback", "key": "/books/OL10282381M", "authors": [{"key": "/authors/OL1386146A"}], "subjects": ["Romance", "Genre Fiction"], "edition_name": "New Ed edition", "source_records": ["bwb:9780263822663", "promise:bwb_daily_pallets_2021-03-04"], "title": "Lifting Suspicion", "number_of_pages": 192, "publish_date": "October 6, 2000", "works": [{"key": "/works/OL5694184W"}], "type": {"key": "/type/edition"}, "identifiers": {}, "isbn_10": ["0263822664"], "isbn_13": ["9780263822663"], "oclc_numbers": ["43717781"], "classifications": {}, "local_id": ["urn:bwbsku:KO-864-038"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-08T20:42:48.031518"}}
+/type/edition /books/OL1028243M 4 2020-11-24T10:16:36.398479 {"publishers": ["Tirant Lo Blanch"], "number_of_pages": 413, "isbn_10": ["8480022302"], "subject_place": ["Spain."], "lc_classifications": ["KKT4612 .V58 1995"], "latest_revision": 4, "key": "/books/OL1028243M", "authors": [{"key": "/authors/OL368668A"}], "publish_places": ["Valencia"], "pagination": "413 p. ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part25.utf8:129127521:841"], "title": "La libertad como pretexto", "dewey_decimal_class": ["345.46/05"], "notes": {"type": "/type/text", "value": "Includes bibliographical references."}, "identifiers": {"goodreads": ["3472592"]}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/spa"}], "lccn": ["96104001"], "subjects": ["Criminal procedure -- Spain.", "Due process of law -- Spain.", "Civil rights -- Spain."], "publish_date": "1995", "publish_country": "sp ", "last_modified": {"type": "/type/datetime", "value": "2020-11-24T10:16:36.398479"}, "series": ["Alternativa / Tirant lo Blanch ;", "v", "Alternativa (Valencia, Spain) ;", "v."], "by_statement": "Toma\u0301s S. Vives Anto\u0301n.", "works": [{"key": "/works/OL2577603W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10282868M 11 2021-08-19T07:13:19.282429 {"publishers": ["Mills & Boon"], "identifiers": {"librarything": ["2174886"], "goodreads": ["3652521"]}, "weight": "9.9 ounces", "covers": [2344229], "physical_format": "Paperback", "key": "/books/OL10282868M", "authors": [{"key": "/authors/OL5849440A"}], "source_records": ["bwb:9780263849837"], "title": "Latin Lovers", "number_of_pages": 476, "isbn_13": ["9780263849837"], "isbn_10": ["026384983X"], "publish_date": "February 3, 2006", "oclc_numbers": ["62265238"], "works": [{"key": "/works/OL9265171W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "6.8 x 4.2 x 1.5 inches", "latest_revision": 11, "revision": 11, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-08-19T07:13:19.282429"}}
+/type/edition /books/OL1028304M 5 2020-11-24T10:17:23.255054 {"other_titles": ["Media pavilion"], "publishers": ["Springer-Verlag"], "subtitle": "eine neue Gleichung zwischen Kunst und Architektur : Coop Himmelb(l)au (Wolf D. Prix, Helmut Swiczinsky), Peter Kogler, Richard Kriesche, Constanze Ruhm, Peter Sandbichler, Eva Schlegel, Ruth Schnell : O\u0308sterreichs Beitrag zur 46. Biennale di Venezia 1995", "isbn_10": ["3211827226"], "subject_place": ["Austria"], "pagination": "1 v. (unpaged) :", "covers": [4876495, 3865828], "lc_classifications": ["N6808 .B54 1995"], "latest_revision": 5, "key": "/books/OL1028304M", "authors": [{"key": "/authors/OL498961A"}], "ocaid": "mediapavilionder00swic", "publish_places": ["Wien", "New York"], "contributions": ["Weibel, Peter.", "Austria. Bundesministerium fu\u0308r Wissenschaft, Forschung und Kunst."], "subject_time": ["20th century"], "genres": ["Exhibitions."], "source_records": ["ia:mediapavilionder00swic", "marc:marc_loc_2016/BooksAll.2016.part25.utf8:129180355:1498"], "title": "Der Pavillon der Medien", "lccn": ["96104077"], "notes": {"type": "/type/text", "value": "German and English.\nIncludes bibliographical references.\n\"The Austrian exhibition for the Biennale of Venice 1995 is organized by the Austrian Federal Ministry of Science, Research and the Arts\"--T.p. verso."}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/ger"}], "subjects": ["Art, Austrian -- 20th century -- Exhibitions.", "Computer art -- Austria -- Exhibitions."], "publish_date": "1995", "publish_country": "au ", "last_modified": {"type": "/type/datetime", "value": "2020-11-24T10:17:23.255054"}, "by_statement": "[Herausgeber, Peter Weibel ; Fotografie, Markus Pillhofer ... et al. ; U\u0308bersetzungen, M. Nievoli ... et al.].", "oclc_numbers": ["34133012"], "works": [{"key": "/works/OL3143340W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10283114M 5 2021-10-08T05:46:05.354093 {"publishers": ["Geoffrey Chapman Publishers"], "physical_format": "Hardcover", "title": "Pastoral Prayers", "number_of_pages": 136, "isbn_13": ["9780264674001"], "covers": [2344466], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0264674006"], "publish_date": "March 1997", "key": "/books/OL10283114M", "authors": [{"key": "/authors/OL2923575A"}], "works": [{"key": "/works/OL8663626W"}], "type": {"key": "/type/edition"}, "subjects": ["Christian ministry & pastoral activity", "Christian prayerbooks", "Personal Christian testimony & popular inspirational works", "Inspirational", "Religion"], "identifiers": {"librarything": ["841735"]}, "source_records": ["bwb:9780264674001"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-10-08T05:46:05.354093"}}
+/type/edition /books/OL10283357M 4 2011-04-26T12:42:44.122785 {"publishers": ["University of Notre Dame Press"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2011-04-26T12:42:44.122785"}, "title": "Gangs & Guns, Drugs & Death", "type": {"key": "/type/edition"}, "identifiers": {"goodreads": ["6291557"]}, "isbn_13": ["9780268010348"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["026801034X"], "publish_date": "March 1998", "key": "/books/OL10283357M", "latest_revision": 4, "oclc_numbers": ["228268768"], "contributions": ["Edward M. McGlynn (Editor)", "Richard G. Hatcher (Editor)"], "subjects": ["General", "Sociology"], "revision": 4}
+/type/edition /books/OL10283414M 2 2009-12-15T00:45:38.430492 {"publishers": ["University of Notre Dame Press"], "weight": "1.1 pounds", "isbn_10": ["0268013349"], "number_of_pages": 320, "isbn_13": ["9780268013349"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:45:38.430492"}, "publish_date": "December 31, 1998", "latest_revision": 2, "key": "/books/OL10283414M", "authors": [{"key": "/authors/OL887166A"}], "title": "Loneliness (Boston University Studies in Philosophy & Religion)", "subjects": ["Philosophy"], "works": [{"key": "/works/OL4453502W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.9 x 6.1 x 0.9 inches", "revision": 2}
+/type/edition /books/OL10283510M 8 2022-05-29T06:29:52.864396 {"publishers": ["Univ of Notre Dame Pr"], "number_of_pages": 312, "subtitle": "Poets from Notre Dame, 1950-1990", "weight": "1.8 pounds", "covers": [5049005, 3975675], "physical_format": "Hardcover", "lc_classifications": ["PS572.N68 S63 1991"], "key": "/books/OL10283510M", "authors": [{"key": "/authors/OL2352606A"}], "subjects": ["Poetry & poets: from c 1900 -", "Works by individual poets: from c 1900 -", "20th Century American Poetry", "English", "Poetry", "USA", "American", "20th century", "American poetry", "Catholic authors", "Indiana", "Notre Dame"], "isbn_13": ["9780268017439"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part21.utf8:32144598:903", "ia:spacebetweenpoet0000unse"], "title": "The Space Between", "lccn": ["91050578"], "identifiers": {"goodreads": ["4469410"], "librarything": ["9774717"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0268017433"], "publish_date": "November 1991", "works": [{"key": "/works/OL7653053W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.5 x 6.5 x 1.5 inches", "ocaid": "spacebetweenpoet0000unse", "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-29T06:29:52.864396"}}
+/type/edition /books/OL10284527M 10 2022-12-27T19:55:21.632719 {"publishers": ["Pennsylvania State University Press"], "number_of_pages": 207, "subtitle": "One Black Man's Story of Imprisonment in America", "weight": "1.2 pounds", "covers": [2345912], "physical_format": "Hardcover", "lc_classifications": ["R853.H8H67 2007", "R853.H8 H67 2007"], "key": "/books/OL10284527M", "authors": [{"key": "/authors/OL400153A"}], "subjects": ["Black studies", "History of medicine", "Medical ethics", "Medical research", "Offenders", "c 1945 to c 1960", "c 1960 to c 1970", "Science", "Consumer Health", "Science/Mathematics", "USA", "Healing", "Penology", "Criminal Law - General", "Experiments & Projects", "Science & Technology", "Anecdotes", "Human Experimentation", "Human experimentation in medicine", "Pennsylvania", "Personal Narratives", "Philadelphia", "Prisoners"], "isbn_13": ["9780271033365"], "source_records": ["bwb:9780271033365", "marc:marc_loc_2016/BooksAll.2016.part34.utf8:122237855:2101", "marc:marc_columbia/Columbia-extract-20221130-014.mrc:123278206:4232"], "title": "Sentenced to Science", "identifiers": {"goodreads": ["2041214"], "librarything": ["4492068"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0271033363"], "publish_date": "December 30, 2007", "works": [{"key": "/works/OL2731748W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.3 x 6.4 x 0.9 inches", "lccn": ["2007017451"], "oclc_numbers": ["123955084"], "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-27T19:55:21.632719"}}
+/type/edition /books/OL1028493M 5 2020-11-24T10:19:30.466831 {"publishers": ["Brandsta\u0308tter"], "number_of_pages": 128, "isbn_10": ["385447587X"], "covers": [8416587], "lc_classifications": ["BM700 .O9314 1995"], "latest_revision": 5, "key": "/books/OL1028493M", "authors": [{"key": "/authors/OL50869A"}], "publish_places": ["Wien"], "contributions": ["Hamani, Laziz."], "languages": [{"key": "/languages/ger"}], "pagination": "128 p. :", "source_records": ["amazon:385447587X", "marc:marc_loc_2016/BooksAll.2016.part25.utf8:129337609:801"], "title": "Symbole des Judentums", "dewey_decimal_class": ["296.4/6"], "identifiers": {"goodreads": ["7112646"], "librarything": ["44046"]}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "edition_name": "1. Aufl.", "lccn": ["96104298"], "subjects": ["Judaism -- Customs and practices.", "Judaism -- Liturgical objects -- Pictorial works."], "publish_date": "1995", "publish_country": "au ", "last_modified": {"type": "/type/datetime", "value": "2020-11-24T10:19:30.466831"}, "by_statement": "Text von Marc-Alain Ouaknin ; Photographien von Laziz Hamani ; u\u0308bersetzt von Daniel Krochmalnik.", "work_title": ["Symboles du judaisme."], "works": [{"key": "/works/OL19098050W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10285391M 8 2022-12-04T22:37:03.942661 {"publishers": ["Pearson Professional Education"], "identifiers": {"goodreads": ["626109"], "amazon": ["B0011D6LS0"], "better_world_books": ["BWB26328899"]}, "subtitle": "Managing Growth (Nat West Business Bookshelf)", "source_records": ["bwb:9780273036258", "promise:bwb_daily_pallets_2022-07-19"], "title": "NatWest Business Handbooks", "type": {"key": "/type/edition"}, "number_of_pages": 208, "isbn_13": ["9780273036258"], "isbn_10": ["0273036254"], "publish_date": "June 17, 1991", "key": "/books/OL10285391M", "authors": [{"key": "/authors/OL3044144A"}], "works": [{"key": "/works/OL8862918W"}], "physical_format": "Paperback", "subjects": ["Management & management techniques"], "local_id": ["urn:bwbsku:KR-376-684", "urn:bwbsku:KR-357-084"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T22:37:03.942661"}}
+/type/edition /books/OL10285492M 3 2020-08-19T12:54:37.549926 {"publishers": ["Financial Times Prentice Hall"], "last_modified": {"type": "/type/datetime", "value": "2020-08-19T12:54:37.549926"}, "source_records": ["bwb:9780273038559"], "title": "Workshop C (Including C Compiler) Book", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780273038559"], "physical_format": "Paperback", "isbn_10": ["0273038559"], "latest_revision": 3, "key": "/books/OL10285492M", "authors": [{"key": "/authors/OL3409434A"}], "works": [{"key": "/works/OL9369033W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10285743M 4 2020-08-18T14:20:11.067124 {"publishers": ["Trans-Atlantic Publications"], "subtitle": "Winning New Business in the '90s (Financial Times/Pitman Publishing Series)", "weight": "1.1 pounds", "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2020-08-18T14:20:11.067124"}, "latest_revision": 4, "key": "/books/OL10285743M", "authors": [{"key": "/authors/OL3409534A"}, {"key": "/authors/OL2954483A"}], "subjects": ["Sales & marketing", "Organization Development", "Business/Economics"], "isbn_13": ["9780273601708"], "source_records": ["bwb:9780273601708"], "title": "Proposals, Pitches, and Beauty Parades", "number_of_pages": 224, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0273601709"], "publish_date": "December 1993", "oclc_numbers": ["32045436"], "works": [{"key": "/works/OL9369215W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.8 x 6.5 x 0.8 inches", "revision": 4}
+/type/edition /books/OL10285836M 7 2022-12-09T06:36:38.924859 {"publishers": ["Financial Times Prentice Hall"], "physical_format": "Hardcover", "source_records": ["bwb:9780273604099", "ia:masteringspreads0000secr_u0y7", "promise:bwb_daily_pallets_2020-12-22"], "title": "Mastering Spreadsheet Budget Forecasts (Wyvern Edn Only)", "number_of_pages": 224, "isbn_13": ["9780273604099"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0273604090"], "publish_date": "May 14, 1993", "key": "/books/OL10285836M", "authors": [{"key": "/authors/OL760015A"}], "works": [{"key": "/works/OL4068412W"}], "type": {"key": "/type/edition"}, "identifiers": {"goodreads": ["866059"]}, "covers": [11020337], "ocaid": "masteringspreads0000secr_u0y7", "local_id": ["urn:bwbsku:P6-AUK-430"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T06:36:38.924859"}}
+/type/edition /books/OL10285840M 4 2011-04-30T08:01:35.166001 {"publishers": ["Financial Times Prentice Hall"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2011-04-30T08:01:35.166001"}, "title": "Microsoft Access (Training Guide)", "number_of_pages": 128, "isbn_13": ["9780273604174"], "covers": [2346005], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0273604171"], "publish_date": "June 30, 1994", "key": "/books/OL10285840M", "authors": [{"key": "/authors/OL3409568A"}], "latest_revision": 4, "oclc_numbers": ["29258129"], "works": [{"key": "/works/OL9369282W"}], "type": {"key": "/type/edition"}, "subjects": ["Access"], "revision": 4}
+/type/edition /books/OL10286630M 4 2020-08-19T12:08:07.828405 {"publishers": ["Financial Times Prentice Hall"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2020-08-19T12:08:07.828405"}, "source_records": ["marc:talis_openlibrary_contribution/talis-openlibrary-contribution.mrc:1267385303:685", "bwb:9780273626053"], "title": "Finance of Foreign Trade (FT)", "number_of_pages": 46, "isbn_13": ["9780273626053"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0273626051"], "publish_date": "May 31, 1996", "key": "/books/OL10286630M", "authors": [{"key": "/authors/OL3409729A"}], "latest_revision": 4, "works": [{"key": "/works/OL9369509W"}], "type": {"key": "/type/edition"}, "subjects": ["Finance & Accounting", "International trade"], "revision": 4}
+/type/edition /books/OL1028664M 3 2020-11-24T10:21:33.800028 {"publishers": ["G. Agraphio\u0304te\u0304s"], "subject_place": ["Agrapha Region (Greece)", "Greece", "Agrapha Region."], "lc_classifications": ["DF951.A7 A37 1994"], "latest_revision": 3, "key": "/books/OL1028664M", "authors": [{"key": "/authors/OL553033A"}], "publish_places": ["Athe\u0304na"], "pagination": "296 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part25.utf8:129481624:674"], "title": "Hoi Sarakatsianaioi to\u0304n Agrapho\u0304n", "lccn": ["96104506"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 296)."}, "number_of_pages": 296, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/gre"}], "subjects": ["Sarakatsans -- Greece -- Agrapha Region.", "Agrapha Region (Greece) -- Ethnic relations."], "publish_date": "1994", "publish_country": "gr ", "last_modified": {"type": "/type/datetime", "value": "2020-11-24T10:21:33.800028"}, "by_statement": "Geo\u0304rgios N. Agraphio\u0304te\u0304s.", "works": [{"key": "/works/OL3384938W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10286710M 4 2022-10-26T05:49:30.702197 {"publishers": ["Financial Times Prentice Hall"], "physical_format": "Paperback", "source_records": ["bwb:9780273627623", "ia:directoryofvocat0000unse_d1p0"], "title": "Directory of Vocational and Further Education", "isbn_13": ["9780273627623"], "isbn_10": ["0273627627"], "publish_date": "April 28, 1997", "key": "/books/OL10286710M", "oclc_numbers": ["655418754"], "works": [{"key": "/works/OL21394868W"}], "type": {"key": "/type/edition"}, "subjects": ["Higher & further education", "Industrial or vocational training", "Yearbooks, annuals, almanacs", "c 1990 to c 2000"], "covers": [12972553], "ocaid": "directoryofvocat0000unse_d1p0", "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-26T05:49:30.702197"}}
+/type/edition /books/OL10287110M 2 2020-08-19T12:58:55.784706 {"publishers": ["Financial Times Prentice Hall (a Pearson Education company)"], "physical_format": "Hardcover", "subtitle": "NTU S3 Service Quality Pack", "source_records": ["bwb:9780273636502"], "title": "Nottingham Trent University Service Quality Pack", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780273636502"], "isbn_10": ["0273636502"], "publish_date": "June 4, 1998", "key": "/books/OL10287110M", "last_modified": {"type": "/type/datetime", "value": "2020-08-19T12:58:55.784706"}, "latest_revision": 2, "works": [{"key": "/works/OL21388461W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10287532M 6 2020-08-19T00:07:12.195852 {"publishers": ["Financial Times Prentice Hall"], "identifiers": {"goodreads": ["4004485"]}, "weight": "11.2 ounces", "covers": [2346518], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2020-08-19T00:07:12.195852"}, "latest_revision": 6, "key": "/books/OL10287532M", "authors": [{"key": "/authors/OL3409974A"}, {"key": "/authors/OL3409975A"}], "subjects": ["Computer fraud & hacking", "Privacy & data protection"], "isbn_13": ["9780273647102"], "source_records": ["bwb:9780273647102"], "title": "The Computer Security and Fraud Prevention Audit (\"Financial Times\" Audit)", "number_of_pages": 124, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0273647105"], "publish_date": "November 5, 1999", "oclc_numbers": ["60360843"], "works": [{"key": "/works/OL21372577W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "11.4 x 7.9 x 0.4 inches", "revision": 6}
+/type/edition /books/OL10287627M 7 2020-08-19T00:14:03.408491 {"publishers": ["Financial Times Management"], "number_of_pages": 272, "weight": "14.9 ounces", "covers": [2346568], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2020-08-19T00:14:03.408491"}, "latest_revision": 7, "key": "/books/OL10287627M", "authors": [{"key": "/authors/OL2667285A"}], "ocaid": "headteacherin21s0000gree", "subjects": ["Organization & management of education", "General", "Education"], "isbn_13": ["9780273650966"], "source_records": ["ia:headteacherin21s0000gree", "bwb:9780273650966"], "title": "Head Teacher in the 21st Century (\"Financial Times\")", "identifiers": {"goodreads": ["798793"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0273650963"], "publish_date": "December 2000", "works": [{"key": "/works/OL8011846W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.1 x 6.1 x 0.6 inches", "revision": 7}
+/type/edition /books/OL10287878M 4 2020-08-19T13:26:45.313140 {"publishers": ["Financial Times Prentice Hall"], "weight": "13.4 ounces", "covers": [2346778], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2020-08-19T13:26:45.313140"}, "latest_revision": 4, "key": "/books/OL10287878M", "authors": [{"key": "/authors/OL219549A"}], "subjects": ["Corporate finance", "Takeovers, mergers & buy-outs", "Business/Economics"], "isbn_13": ["9780273659228"], "source_records": ["bwb:9780273659228"], "title": "Selling an Unquoted Company Successfully (Management Briefings Finance)", "number_of_pages": 128, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0273659227"], "publish_date": "April 18, 2002", "works": [{"key": "/works/OL1833476W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "11.4 x 8 x 0.6 inches", "revision": 4}
+/type/edition /books/OL10288331M 10 2022-11-18T15:47:08.672868 {"publishers": ["Praeger Publishers Inc.,U.S."], "number_of_pages": 250, "covers": [5049372, 4486864], "physical_format": "Hardcover", "lc_classifications": ["HC106.7 .F84", "HC106.6 .F84", "HD5724"], "key": "/books/OL10288331M", "authors": [{"key": "/authors/OL883461A"}], "isbn_13": ["9780275228101"], "source_records": ["marc:marc_records_scriblio_net/part08.dat:141549910:873", "marc:marc_ithaca_college/ic_marc.mrc:126282562:900", "marc:marc_loc_2016/BooksAll.2016.part09.utf8:40267555:867", "ia:fullemploymentpr0000unse", "bwb:9780275228101"], "title": "Full Employment Programme for the Seventies (Praeger special studies in U.S. economic, social, and political issues)", "lccn": ["75036408"], "identifiers": {"goodreads": ["3962582"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["027522810X"], "publish_date": "June 1976", "works": [{"key": "/works/OL4439774W"}], "type": {"key": "/type/edition"}, "ocaid": "fullemploymentpr0000unse", "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-18T15:47:08.672868"}}
+/type/edition /books/OL10288592M 4 2021-09-15T18:09:15.331239 {"publishers": ["Praeger Publishers"], "number_of_pages": 501, "subtitle": "Progress and Prospects", "key": "/books/OL10288592M", "languages": [{"key": "/languages/eng"}], "title": "Behavioral Community Psychology", "identifiers": {"goodreads": ["4851789"]}, "isbn_13": ["9780275904883"], "physical_format": "Hardcover", "isbn_10": ["0275904881"], "publish_date": "May 15, 1980", "type": {"key": "/type/edition"}, "contributions": ["Leonard A. Jason (Adapter)", "David Glenwick (Editor)"], "subjects": ["Personal & public health", "Psychology", "Social Work", "Applied Psychology", "Community Mental Health", "Social Science", "Sociology", "Industrial & Organizational Psychology", "Social Science / Social Work", "Addresses, essays, lectures", "Behavior modification", "Community psychology"], "works": [{"key": "/works/OL25078076W"}], "lc_classifications": ["HM299"], "source_records": ["bwb:9780275904883"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-09-15T18:09:15.331239"}}
+/type/edition /books/OL1028903M 3 2020-11-24T10:24:15.681000 {"publishers": ["Universidad Nacional Auto\u0301noma de Me\u0301xico", "Centro de Investigaciones Interdisciplinarias en Humanidades, Coordinacio\u0301n de Humanidades"], "isbn_10": ["9683640362"], "series": ["El Mundo actual", "Mundo actual (Mexico City, Mexico)"], "lc_classifications": ["HD85.S7 I23 1994"], "latest_revision": 3, "key": "/books/OL1028903M", "authors": [{"key": "/authors/OL187771A"}], "publish_places": ["Me\u0301xico"], "languages": [{"key": "/languages/spa"}], "pagination": "49 p. ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part25.utf8:129689662:830"], "title": "Interdependencia y desarrollo", "lccn": ["96104793"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 40-49)."}, "number_of_pages": 49, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "edition_name": "1. ed.", "subjects": ["Economic development.", "International economic relations."], "publish_date": "1994", "publish_country": "mx ", "last_modified": {"type": "/type/datetime", "value": "2020-11-24T10:24:15.681000"}, "by_statement": "David Ibarra.", "works": [{"key": "/works/OL1670216W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10289269M 7 2021-08-13T20:25:07.640251 {"publishers": ["Praeger Publishers"], "identifiers": {"goodreads": ["1686821"]}, "subtitle": "Our Criminal Injustice System", "weight": "1.2 pounds", "covers": [5049632], "physical_format": "Hardcover", "key": "/books/OL10289269M", "authors": [{"key": "/authors/OL3341119A"}], "subjects": ["Crime & criminology", "Jurisprudence & philosophy of law", "Laws of Other Jurisdictions & General Law", "Criminal Justice Administration", "Law", "Sociology", "USA", "Criminology", "Criminal Law - General", "Criminal justice, Administration of", "Criminal law", "Imprisonment", "Moral and ethical aspects", "United States"], "isbn_13": ["9780275964757"], "title": "Cruel and Usual", "number_of_pages": 248, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0275964752"], "publish_date": "November 1999", "oclc_numbers": ["41035343"], "works": [{"key": "/works/OL9287282W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.8 x 6.8 x 0.8 inches", "ocaid": "cruelusualourcri0000gerb", "lccn": ["99014853"], "lc_classifications": ["HV9950 .G47 1999"], "source_records": ["ia:cruelusualourcri0000gerb"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-08-13T20:25:07.640251"}}
+/type/edition /books/OL10289713M 9 2022-12-05T09:53:15.588275 {"publishers": ["Praeger Publishers"], "languages": [{"key": "/languages/eng"}], "identifiers": {"goodreads": ["3525839"]}, "weight": "1.2 pounds", "title": "The Manager as Motivator (The Manager as ...)", "number_of_pages": 264, "isbn_13": ["9780275990183"], "covers": [2349731], "physical_format": "Hardcover", "authors": [{"key": "/authors/OL2805728A"}], "isbn_10": ["0275990184"], "key": "/books/OL10289713M", "publish_date": "December 30, 2006", "works": [{"key": "/works/OL8412182W"}], "type": {"key": "/type/edition"}, "subjects": ["Management & management techniques", "Personnel & human resources management", "Employee Training And Development", "Management", "Business & Economics", "Business / Economics / Finance", "Business/Economics", "Management - General", "Business & Economics / Management", "Development - Business Development", "Physiological Psychology", "Employee motivation"], "physical_dimensions": "9.4 x 6.2 x 1.4 inches", "lccn": ["2006028063"], "lc_classifications": ["HF5549.5.M63 K764 2007", "HF5549.5.M63K764"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part33.utf8:126433694:954", "bwb:9780275990183", "ia:managerasmotivat0000krot", "promise:bwb_daily_pallets_2022-05-11"], "ocaid": "managerasmotivat0000krot", "oclc_numbers": ["71210177"], "local_id": ["urn:bwbsku:W7-CAA-876"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-05T09:53:15.588275"}}
+/type/edition /books/OL10289973M 9 2022-11-11T22:52:01.619918 {"publishers": ["Praeger Publishers"], "number_of_pages": 256, "subtitle": "Putting That Powerful Emotion to Good Use", "weight": "1.2 pounds", "covers": [2349992], "physical_format": "Hardcover", "key": "/books/OL10289973M", "authors": [{"key": "/authors/OL3410675A"}, {"key": "/authors/OL3410676A"}, {"key": "/authors/OL534411A"}], "subjects": ["Anger", "General", "Psychology & Psychiatry / General", "Emotions", "Psychology"], "edition_name": "1 edition", "languages": [{"key": "/languages/eng"}], "title": "Creative Anger", "identifiers": {"librarything": ["6171253"], "goodreads": ["2279693"]}, "isbn_13": ["9780275998745"], "isbn_10": ["0275998746"], "publish_date": "November 30, 2007", "works": [{"key": "/works/OL12301549W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.4 x 6.3 x 1.2 inches", "lccn": ["2007026122"], "lc_classifications": ["BF575.A5 B373 2008", "BF575"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part34.utf8:133503786:867", "bwb:9780275998745", "promise:bwb_daily_pallets_2022-10-26"], "local_id": ["urn:bwbsku:T2-EFU-956"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-11T22:52:01.619918"}}
+/type/edition /books/OL10290101M 9 2022-12-09T14:52:57.401371 {"publishers": ["Reader's Digest"], "identifiers": {"goodreads": ["1465045"], "librarything": ["1490684"]}, "covers": [2350051, 155394], "physical_format": "Hardcover", "key": "/books/OL10290101M", "authors": [{"key": "/authors/OL2684663A"}], "subjects": ["Garden design & planning"], "classifications": {}, "title": "Good Ideas for Your Garden", "notes": {"type": "/type/text", "value": "Readers Digest"}, "number_of_pages": 384, "isbn_13": ["9780276421419"], "isbn_10": ["0276421418"], "publish_date": "May 31, 1995", "works": [{"key": "/works/OL8060808W"}], "type": {"key": "/type/edition"}, "ocaid": "goodideasforyour0000unse", "source_records": ["ia:goodideasforyour0000unse", "promise:bwb_daily_pallets_2020-11-19"], "local_id": ["urn:bwbsku:KO-328-930"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T14:52:57.401371"}}
+/type/edition /books/OL10290588M 2 2009-12-15T00:45:46.547621 {"publishers": ["Van Nostrand Reinhold"], "key": "/books/OL10290588M", "title": "Intercommunications Book 6", "isbn_13": ["9780278499379"], "physical_format": "Paperback", "isbn_10": ["0278499376"], "publish_date": "January 1977", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:45:46.547621"}, "authors": [{"key": "/authors/OL3410764A"}], "latest_revision": 2, "works": [{"key": "/works/OL9370764W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10291225M 5 2021-09-15T10:54:52.725971 {"publishers": ["Society for Promoting Christian Knowledge"], "number_of_pages": 144, "weight": "9.1 ounces", "physical_format": "Paperback", "key": "/books/OL10291225M", "authors": [{"key": "/authors/OL719341A"}], "subjects": ["Biblical studies, criticism & exegesis", "Books of the Old Testament", "Bible - Study - Old Testament", "Bible - Topical Studies", "Biblical Studies - Old Testament", "Biblical Studies - Topical", "Religion - Biblical Studies"], "isbn_13": ["9780281052035"], "title": "Face to Face With God", "identifiers": {"librarything": ["8969003"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0281052034"], "publish_date": "1999", "oclc_numbers": ["40682588"], "works": [{"key": "/works/OL3945149W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.3 x 5.4 x 0.5 inches", "source_records": ["bwb:9780281052035"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-09-15T10:54:52.725971"}}
+/type/edition /books/OL10291328M 5 2021-09-15T21:35:17.048524 {"publishers": ["SPCK Publishing"], "number_of_pages": 96, "weight": "5 ounces", "covers": [2350707, 155788], "physical_format": "Paperback", "key": "/books/OL10291328M", "authors": [{"key": "/authors/OL667955A"}], "subjects": ["Christian liturgy, prayerbooks & hymnals", "Christian ministry & pastoral activity", "Christian worship"], "title": "Memorial Services (Alcuin Liturgy Guides)", "identifiers": {"librarything": ["2228445"]}, "isbn_13": ["9780281054060"], "isbn_10": ["0281054061"], "publish_date": "April 19, 2002", "works": [{"key": "/works/OL3781722W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.4 x 5.6 x 0.3 inches", "source_records": ["bwb:9780281054060"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-09-15T21:35:17.048524"}}
+/type/edition /books/OL10291355M 6 2021-09-15T21:38:00.977075 {"publishers": ["Society for Promoting Christian Knowledge"], "number_of_pages": 239, "weight": "15.8 ounces", "covers": [2350738, 155804], "physical_format": "Hardcover", "key": "/books/OL10291355M", "authors": [{"key": "/authors/OL3410930A"}], "subjects": ["Christian liturgy, prayerbooks & hymnals", "Christian Rituals & Practice - General", "Christianity - Ritual & Practice", "Christian Life - General", "Christianity - Episcopalian", "Christianity - Protestant", "Religion", "Religion - Church Music"], "isbn_13": ["9780281054466"], "title": "Seasonal Worship from the Countryside", "identifiers": {"librarything": ["2267246"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0281054460"], "publish_date": "November 2002", "oclc_numbers": ["51781860"], "works": [{"key": "/works/OL9371035W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.7 x 5.8 x 1 inches", "lc_classifications": ["BV199"], "source_records": ["bwb:9780281054466"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-09-15T21:38:00.977075"}}
+/type/edition /books/OL10291401M 11 2022-12-09T09:46:55.953929 {"publishers": ["Wood Lake Books"], "number_of_pages": 144, "subtitle": "Year A", "weight": "8.5 ounces", "isbn_10": ["0281055270"], "covers": [2350775], "physical_format": "Paperback", "key": "/books/OL10291401M", "authors": [{"key": "/authors/OL918782A"}], "subjects": ["Bible readings or selections", "Christian Ministry - Preaching", "Christianity - General", "Religion", "Religion - Worship - Preaching"], "isbn_13": ["9780281055272"], "source_records": ["marc:marc_claremont_school_theology/CSTMARC2_barcode.mrc:40120148:1691", "marc:marc_claremont_school_theology/CSTMARC2_multibarcode.mrc:40135803:1691", "ia:lectionaryreflec0000_yearawill_f6r5", "bwb:9780281055272", "promise:bwb_daily_pallets_2020-12-02"], "title": "Lectionary Reflections", "identifiers": {"librarything": ["3457687"]}, "languages": [{"key": "/languages/eng"}], "local_id": ["urn:cst:10017022802", "urn:bwbsku:KO-658-256"], "publish_date": "November 16, 2004", "oclc_numbers": ["56540184"], "works": [{"key": "/works/OL4550412W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.4 x 5.4 x 0.6 inches", "lc_classifications": ["BX5147.L4 W54 2003 year A", "BX5147.L4"], "ocaid": "lectionaryreflec0000_yearawill_f6r5", "latest_revision": 11, "revision": 11, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T09:46:55.953929"}}
+/type/edition /books/OL10291481M 6 2021-09-16T18:35:38.170908 {"publishers": ["Spck"], "number_of_pages": 192, "weight": "9.1 ounces", "covers": [2350848], "physical_format": "Paperback", "key": "/books/OL10291481M", "authors": [{"key": "/authors/OL3410954A"}], "title": "Embodying the Word", "identifiers": {"librarything": ["2736395"]}, "isbn_13": ["9780281056897"], "isbn_10": ["0281056897"], "publish_date": "August 19, 2005", "oclc_numbers": ["71089757"], "works": [{"key": "/works/OL9371067W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.2 x 5.8 x 0.6 inches", "source_records": ["bwb:9780281056897"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-09-16T18:35:38.170908"}}
+/type/edition /books/OL10291540M 7 2022-12-07T08:34:12.830214 {"publishers": ["Pan Macmillan"], "number_of_pages": 192, "title": "Annie Lennox", "type": {"key": "/type/edition"}, "identifiers": {"goodreads": ["431895"], "librarything": ["2378028"]}, "isbn_13": ["9780283060144"], "isbn_10": ["028306014X"], "publish_date": "April 11, 1991", "key": "/books/OL10291540M", "authors": [{"key": "/authors/OL452810A"}], "works": [{"key": "/works/OL2963574W"}], "physical_format": "Hardcover", "subjects": ["Rock & pop", "Biography: film, television & music"], "covers": [12695025], "ocaid": "annielennox0000obri", "oclc_numbers": ["48866626"], "source_records": ["ia:annielennox0000obri", "promise:bwb_daily_pallets_2022-03-17"], "local_id": ["urn:bwbsku:KQ-054-076"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-07T08:34:12.830214"}}
+/type/edition /books/OL10291864M 7 2022-11-11T20:09:25.527359 {"publishers": ["Pan Macmillan"], "number_of_pages": 352, "subtitle": "Volume 2 1967-1980", "title": "John Ono Lennon", "physical_format": "Hardcover", "identifiers": {"goodreads": ["233916"], "librarything": ["1541026"]}, "isbn_13": ["9780283990823"], "isbn_10": ["0283990821"], "publish_date": "March 25, 1986", "key": "/books/OL10291864M", "authors": [{"key": "/authors/OL291568A"}], "works": [{"key": "/works/OL2248117W"}], "type": {"key": "/type/edition"}, "subjects": ["Musical instruments & instrumental ensembles"], "source_records": ["amazon:0283990821", "promise:bwb_daily_pallets_2022-11-02"], "local_id": ["urn:bwbsku:KR-666-023"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-11T20:09:25.527359"}}
+/type/edition /books/OL10291918M 6 2022-11-15T08:48:33.369781 {"publishers": ["Sidgwich Jackson Ltd"], "number_of_pages": 256, "title": "Joan Kennedy Story", "identifiers": {"goodreads": ["2732152"]}, "isbn_13": ["9780283993039"], "physical_format": "Hardcover", "isbn_10": ["0283993030"], "key": "/books/OL10291918M", "authors": [{"key": "/authors/OL767841A"}], "oclc_numbers": ["59792915"], "works": [{"key": "/works/OL4098527W"}], "type": {"key": "/type/edition"}, "source_records": ["amazon:0283993030"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-15T08:48:33.369781"}}
+/type/edition /books/OL10292476M 5 2011-04-29T22:54:40.319107 {"publishers": ["Souvenir Press Ltd"], "number_of_pages": 208, "last_modified": {"type": "/type/datetime", "value": "2011-04-29T22:54:40.319107"}, "weight": "1.2 pounds", "title": "General Reflections", "identifiers": {"goodreads": ["82734"]}, "isbn_13": ["9780285630475"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Hardcover", "isbn_10": ["0285630474"], "publish_date": "September 26, 1991", "key": "/books/OL10292476M", "authors": [{"key": "/authors/OL3411196A"}], "latest_revision": 5, "oclc_numbers": ["26261016"], "works": [{"key": "/works/OL9371360W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8 x 6.4 x 0.9 inches", "revision": 5}
+/type/edition /books/OL10292726M 7 2022-12-10T02:07:11.971843 {"publishers": ["Souvenir Press"], "number_of_pages": 112, "subtitle": "For Enhanced Fitness, Strength and Health", "weight": "8 ounces", "covers": [2351228], "physical_format": "Paperback", "key": "/books/OL10292726M", "authors": [{"key": "/authors/OL1566636A"}], "subjects": ["Yoga for exercise", "Yoga", "Health & Fitness", "Diet / Health / Fitness", "Health/Fitness"], "isbn_13": ["9780285636200"], "title": "Slow Yoga", "identifiers": {"librarything": ["4894803"], "amazon": [""]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0285636200"], "publish_date": "April 2002", "oclc_numbers": ["47063244"], "works": [{"key": "/works/OL6131176W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.7 x 6.8 x 0.3 inches", "ocaid": "slowyogaforenhan0000payn", "lc_classifications": ["RA781.7 P346 2001"], "source_records": ["ia:slowyogaforenhan0000payn", "promise:bwb_daily_pallets_2020-07-30"], "local_id": ["urn:bwbsku:KN-886-999"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T02:07:11.971843"}}
+/type/edition /books/OL10292793M 8 2022-11-30T16:40:16.144122 {"publishers": ["Souvenir Press Ltd"], "number_of_pages": 370, "weight": "1 pounds", "covers": [2351306, 156200], "physical_format": "Paperback", "key": "/books/OL10292793M", "authors": [{"key": "/authors/OL89930A"}], "contributions": ["H. St.Martin (Translator)"], "subjects": ["Biography & Autobiography", "Literature: History & Criticism", "Biography/Autobiography"], "first_sentence": {"type": "/type/text", "value": "UNDER the volcanoes, besides the snow-capped mountains, among the huge lakes, the fragrant, the silent, the tangled Chilean forest . . . My feet sink down into the dead leaves, a fragile twig crackles, the giant rauli trees rise in all their bristling height, a bird from the cold jungle passes over, flaps its wings, and stops in the sunless branches."}, "title": "Memoirs (Condor Books)", "identifiers": {"librarything": ["38021"], "goodreads": ["5938"]}, "isbn_13": ["9780285648111"], "isbn_10": ["028564811X"], "publish_date": "June 24, 2004", "oclc_numbers": ["224582338"], "works": [{"key": "/works/OL979578W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.4 x 5.3 x 1.2 inches", "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-30T16:40:16.144122"}}
+/type/edition /books/OL10292934M 1 2008-04-30T09:38:13.731961 {"physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["HarperCollins Publishers Ltd"], "title": "Astro Nav Poc Com She Hou", "isbn_13": ["9780286136297"], "isbn_10": ["0286136295"], "publish_date": "May 10, 1989", "key": "/books/OL10292934M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10293256M 10 2022-12-04T14:54:39.375992 {"publishers": ["Center for Middle Eastern Studies, The University of Texas at Austin"], "identifiers": {"goodreads": ["858963"]}, "weight": "7.8 ounces", "isbn_10": ["0292702825"], "series": ["CMES Modern Middle Eastern Literature in Translation Series"], "covers": [2351398], "physical_format": "Paperback", "lc_classifications": ["PJ7838", "PJ7838.K5 M313 2004"], "key": "/books/OL10293256M", "authors": [{"key": "/authors/OL3411421A"}], "contributions": ["Elizabeth Warnock Fernea (Introduction)", "Asmahan Sallah (Translator)", "Chris Ellery (Translator)"], "isbn_13": ["9780292702820"], "classifications": {}, "source_records": ["bwb:9780292702820", "marc:marc_loc_2016/BooksAll.2016.part31.utf8:199422544:1143", "promise:bwb_daily_pallets_2022-08-30"], "title": "Whatever Happened to Antara? and Other Stories", "number_of_pages": 120, "languages": [{"key": "/languages/eng"}], "subjects": ["Short stories", "Fiction", "Fiction - General", "Short Stories (single author)", "Literary Criticism & Collections / Spanish & Portuguese"], "publish_date": "August 1, 2004", "works": [{"key": "/works/OL9371637W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.4 x 5.5 x 0.4 inches", "lccn": ["2004105607"], "local_id": ["urn:bwbsku:O8-BXJ-286"], "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T14:54:39.375992"}}
+/type/edition /books/OL10294923M 6 2022-10-18T12:11:09.582050 {"publishers": ["Longman Scientific and Technical"], "number_of_pages": 300, "key": "/books/OL10294923M", "languages": [{"key": "/languages/eng"}], "title": "Numerical Analysis, 1987 (Pitman Research Notes in Mathematics Series)", "identifiers": {"goodreads": ["7263116"]}, "isbn_13": ["9780470210123"], "physical_format": "Hardcover", "isbn_10": ["0470210125"], "publish_date": "July 1988", "authors": [{"key": "/authors/OL542163A"}, {"key": "/authors/OL1762677A"}], "type": {"key": "/type/edition"}, "subjects": ["Applied", "Unassigned Title"], "works": [{"key": "/works/OL26169359W"}], "covers": [12706484, 12129024], "ocaid": "numericalanalysi0000unse_h7w7", "lccn": ["88179848"], "lc_classifications": ["QA297 .N828 1988", "QA297"], "source_records": ["ia:numericalanalysi0000unse_h7w7", "bwb:9780470210123"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T12:11:09.582050"}}
+/type/edition /books/OL10295245M 4 2022-10-18T10:02:11.287698 {"publishers": ["John Wiley & Sons Inc"], "subtitle": "A Reader", "weight": "2 pounds", "physical_format": "Paperback", "key": "/books/OL10295245M", "authors": [{"key": "/authors/OL832600A"}], "subjects": ["Development studies", "Sociology, Social Studies", "Development Studies (Social Sciences)", "Politics/International Relations"], "isbn_13": ["9780470235294"], "title": "Development Studies", "number_of_pages": 475, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0470235292"], "publish_date": "July 1995", "oclc_numbers": ["231725015"], "works": [{"key": "/works/OL4289994W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.5 x 6.2 x 1.8 inches", "source_records": ["bwb:9780470235294"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T10:02:11.287698"}}
+/type/edition /books/OL1029534M 2 2020-11-24T11:21:47.698888 {"publishers": ["Instituto Colombiano de Cultura"], "description": {"type": "/type/text", "value": "\"Museum catalog sets high standard as first in a series intended to reflect the completion of comprehensive inventories of art collections undertaken by the Instituto Colombiano de Cultura. Fully documents art collection of the 17th-century church of Santa Clara in Bogota, the first major restoration work completed by the Instituto between 1969-83. Specially noteworthy are the nave elevation drawings used to locate the paintings, sculptures, and altarpieces within their architectural context. Individual catalog entries by Jaime Gutie\u0301rrez Vallejo provide basic curatorial and descriptive information, complemented by good quality b/w and color photographs. Two sections discuss iconography of angels in colonial painting and different columnar supports of the altarpieces\"--Handbook of Latin American Studies, v. 58."}, "subject_place": ["Colombia", "Bogota\u0301"], "lc_classifications": ["N7935.B64 I44 1995"], "latest_revision": 2, "key": "/books/OL1029534M", "publish_places": ["Santafe\u0301 de Bogota\u0301"], "contributions": ["Iglesia Museo Santa Clara (Bogota\u0301, Colombia)", "Instituto Colombiano de Cultura."], "pagination": "160 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part25.utf8:130241205:1750"], "title": "Iglesia Museo Santa Clara, 1647.", "lccn": ["96105629"], "notes": {"type": "/type/text", "value": "Includes index."}, "number_of_pages": 160, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/spa"}], "subjects": ["Iglesia Museo Santa Clara (Bogota\u0301, Colombia) -- Catalogs.", "Christian art and symbolism -- Colombia -- Bogota\u0301 -- Catalogs.", "Art, Colonial -- Colombia -- Bogota\u0301 -- Catalogs.", "Church decoration and ornament -- Colombia -- Bogota\u0301 -- Catalogs."], "publish_date": "1995", "publish_country": "ck ", "last_modified": {"type": "/type/datetime", "value": "2020-11-24T11:21:47.698888"}, "works": [{"key": "/works/OL23615348W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10295537M 2 2010-04-13T05:38:38.587955 {"publishers": ["Ellis Horwood Ltd"], "key": "/books/OL10295537M", "title": "Machine Intelligence", "isbn_13": ["9780470267141"], "covers": [5050429], "physical_format": "Hardcover", "isbn_10": ["0470267143"], "publish_date": "June 1979", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:38:38.587955"}, "latest_revision": 2, "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10295851M 4 2022-12-04T14:18:48.482469 {"publishers": ["John Wiley & Sons Inc"], "languages": [{"key": "/languages/eng"}], "source_records": ["bwb:9780470484203", "promise:bwb_daily_pallets_2022-08-30"], "title": "Encyclopaedia of Chemical Technology", "number_of_pages": 884, "isbn_13": ["9780470484203"], "edition_name": "2Rev Ed edition", "physical_format": "Hardcover", "isbn_10": ["0470484209"], "publish_date": "January 1, 1966", "key": "/books/OL10295851M", "works": [{"key": "/works/OL21268280W"}], "type": {"key": "/type/edition"}, "subjects": ["Chemistry"], "local_id": ["urn:bwbsku:O8-DAQ-947", "urn:bwbsku:O8-DBM-135"], "identifiers": {"amazon": ["B001AFUW4S"], "better_world_books": ["BWBM51858717"]}, "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T14:18:48.482469"}}
+/type/edition /books/OL10295932M 9 2021-09-29T05:03:00.127824 {"publishers": ["Wiley-Interscience"], "number_of_pages": 502, "subtitle": "Pitfalls and Opportunities (Wiley Series in Psychology of Crime, Policing and Law)", "weight": "1.8 pounds", "isbn_10": ["0470516240"], "covers": [2424666], "local_id": ["urn:mgc:31927000829736"], "physical_format": "Hardcover", "key": "/books/OL10295932M", "authors": [{"key": "/authors/OL303099A"}], "ocaid": "detectingliesdec00vrij", "languages": [{"key": "/languages/eng"}], "source_records": ["ia:detectingliesdec00vrij", "marc:marc_marygrove/marygrovecollegelibrary.full.D20191108.T213022.internetarchive2nd_REPACK.mrc:172392826:5545", "ia:detectingliesdec0963vrij_p5q7", "bwb:9780470516249"], "title": "Detecting Lies and Deceit", "identifiers": {"librarything": ["1612878"]}, "isbn_13": ["9780470516249"], "edition_name": "2 edition", "subjects": ["Cognition & cognitive psychology", "Psychology", "Forensic Psychology", "Psychology & Psychiatry / Forensic Psychology", "Behavioral assessment", "Psychological aspects", "Truthfulness and falsehood"], "publish_date": "March 14, 2008", "works": [{"key": "/works/OL2299155W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 1.3 inches", "lccn": ["2008273336"], "lc_classifications": ["HV8078 .V75 2008", "BF637.T77V75 2008"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-09-29T05:03:00.127824"}}
+/type/edition /books/OL10295979M 2 2010-04-13T05:38:38.587955 {"physical_format": "Paperback", "weight": "1.2 pounds", "publishers": ["Wiley"], "isbn_10": ["0470518790"], "number_of_pages": 24, "isbn_13": ["9780470518793"], "covers": [2424699], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:38:38.587955"}, "publish_date": "February 11, 2008", "latest_revision": 2, "key": "/books/OL10295979M", "authors": [{"key": "/authors/OL2213778A"}], "title": "Nautical Calculation Companion", "subjects": ["Mathematics", "Sports & Recreation / Sailing", "Sailing - General", "Sports & Recreation", "Sports"], "type": {"key": "/type/edition"}, "physical_dimensions": "8.5 x 2.9 x 0.2 inches", "revision": 2}
+/type/edition /books/OL10296121M 4 2022-10-18T10:35:21.416404 {"publishers": ["John Wiley & Sons Inc"], "physical_format": "Hardcover", "title": "Introduction to Geology - Later (Later Stages of Earth History)", "number_of_pages": 372, "isbn_13": ["9780470711668"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0470711663"], "publish_date": "June 1978", "key": "/books/OL10296121M", "authors": [{"key": "/authors/OL2755803A"}], "oclc_numbers": ["317775677"], "works": [{"key": "/works/OL8296569W"}], "type": {"key": "/type/edition"}, "subjects": ["Earth Sciences", "Unassigned Title"], "source_records": ["bwb:9780470711668"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T10:35:21.416404"}}
+/type/edition /books/OL10296707M 6 2022-10-18T13:05:57.839421 {"publishers": ["Wiley"], "languages": [{"key": "/languages/eng"}], "physical_format": "Hardcover", "source_records": ["amazon:0470985690", "marc:marc_loc_updates/v37.i04.records.utf8:7353409:867", "marc:marc_loc_2016/BooksAll.2016.part36.utf8:1028734:867", "bwb:9780470985694"], "isbn_10": ["0470985690"], "title": "West Country Cruising Companion", "number_of_pages": 256, "isbn_13": ["9780470985694"], "covers": [2424948], "edition_name": "7 edition", "key": "/books/OL10296707M", "authors": [{"key": "/authors/OL3412673A"}], "publish_date": "June 20, 2008", "works": [{"key": "/works/OL9372793W"}], "type": {"key": "/type/edition"}, "subjects": ["Navigation", "Sailing", "Boating And Sailing", "Sports & Recreation", "Sports", "South West England", "Sailing - General", "Sports & Recreation / Sailing", "Boats and boating", "England", "Pilot guides", "West Country"], "lccn": ["2008428787"], "lc_classifications": ["GV776.44.A3 F57 2008", "GV776.44"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T13:05:57.839421"}}
+/type/edition /books/OL10296733M 2 2009-12-15T00:45:53.936616 {"publishers": ["John Wiley & Sons Inc"], "isbn_10": ["0470989823"], "number_of_pages": 534, "isbn_13": ["9780470989821"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:45:53.936616"}, "latest_revision": 2, "key": "/books/OL10296733M", "authors": [{"key": "/authors/OL3412689A"}], "title": "Medvedev Seismic", "subjects": ["Earth Sciences"], "works": [{"key": "/works/OL9372809W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10297257M 4 2022-10-18T10:01:22.744020 {"publishers": ["John Wiley & Sons"], "weight": "11.8 ounces", "physical_format": "Hardcover", "key": "/books/OL10297257M", "authors": [{"key": "/authors/OL1321819A"}], "subjects": ["CPA (Certified Public Accountant)", "Accounting", "Study Guides"], "isbn_13": ["9780471012917"], "classifications": {}, "title": "Wiley CPA Micro-Pass V. Set Complete", "notes": {"type": "/type/text", "value": "Wiley CPA Micro-Pass"}, "identifiers": {}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0471012912"], "publish_date": "February 1994", "works": [{"key": "/works/OL5539193W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.6 x 6.4 x 1.9 inches", "source_records": ["bwb:9780471012917"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T10:01:22.744020"}}
+/type/edition /books/OL10297606M 3 2022-10-18T20:21:48.794454 {"physical_format": "Hardcover", "subtitle": "An audio-tutorial approach", "publishers": ["J. Wiley"], "isbn_10": ["047102399X"], "number_of_pages": 250, "isbn_13": ["9780471023999"], "languages": [{"key": "/languages/eng"}], "publish_date": "1976", "key": "/books/OL10297606M", "authors": [{"key": "/authors/OL3413075A"}], "title": "Hands on botany", "subjects": ["Botany", "Technique", "Science"], "works": [{"key": "/works/OL9373774W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780471023999"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T20:21:48.794454"}}
+/type/edition /books/OL10298047M 2 2009-12-15T00:45:57.249792 {"publishers": ["John Wiley & Sons Inc"], "title": "Digital", "isbn_10": ["0471037672"], "isbn_13": ["9780471037675"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:45:57.249792"}, "latest_revision": 2, "key": "/books/OL10298047M", "authors": [{"key": "/authors/OL2695998A"}], "subjects": ["Electronics & Communications Engineering"], "works": [{"key": "/works/OL8096457W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10298066M 3 2011-02-07T07:04:39.850591 {"publishers": ["John Wiley & Sons Inc"], "identifiers": {}, "classifications": {}, "last_modified": {"type": "/type/datetime", "value": "2011-02-07T07:04:39.850591"}, "title": "Ausubel John Bright", "physical_format": "Hardcover", "notes": {"type": "/type/text", "value": "Cl"}, "number_of_pages": 250, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780471038306"], "isbn_10": ["047103830X"], "latest_revision": 3, "key": "/books/OL10298066M", "authors": [{"key": "/authors/OL3413313A"}], "works": [{"key": "/works/OL9374370W"}], "type": {"key": "/type/edition"}, "subjects": ["History"], "revision": 3}
+/type/edition /books/OL102980M 3 2020-12-02T08:10:03.823132 {"subtitle": "Dunajska\u0301 Streda, 1898-1998 = Niedermarkt, 1898-1998", "series": ["Sza\u0301z e\u0301v, sza\u0301z ke\u0301peslap ;", "2"], "lc_classifications": ["MLCM 2000/02930 (D)"], "contributions": ["Liszka, Jo\u0301zsef.", "Zsigmond, Tibor."], "source_records": ["marc:marc_records_scriblio_net/part28.dat:65312006:706", "marc:marc_loc_2016/BooksAll.2016.part28.utf8:91645718:722"], "title": "Dunaszerdahely, 1898-1998 =", "languages": [{"key": "/languages/hun"}], "publish_country": "xo ", "by_statement": "[elo\u030bszo\u0301, Liszka Jo\u0301zsef ; a bevezeto\u030b tanulma\u0301nyt i\u0301rta, a ke\u0301peket va\u0301logatta e\u0301s meghata\u0301rozta, Zsigmond Tibor].", "type": {"key": "/type/edition"}, "publishers": ["Lilium Aurum"], "key": "/books/OL102980M", "publish_places": ["Dunaszerdahely"], "pagination": "155 p. :", "lccn": ["99218598"], "number_of_pages": 155, "isbn_10": ["808570496X"], "publish_date": "1998", "works": [{"key": "/works/OL19445246W"}], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-02T08:10:03.823132"}}
+/type/edition /books/OL10298106M 2 2009-12-15T00:45:57.249792 {"publishers": ["John Wiley & Sons Inc"], "key": "/books/OL10298106M", "title": "Psychobiology V 11 1978m", "isbn_13": ["9780471039389"], "physical_format": "Hardcover", "isbn_10": ["0471039381"], "latest_revision": 2, "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:45:57.249792"}, "authors": [{"key": "/authors/OL3386091A"}], "works": [{"key": "/works/OL9340951W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10298300M 2 2009-12-15T00:45:57.249792 {"publishers": ["John Wiley & Sons Inc"], "title": "Mechanical Properties of Ceramics", "isbn_10": ["0471046299"], "isbn_13": ["9780471046295"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:45:57.249792"}, "latest_revision": 2, "key": "/books/OL10298300M", "authors": [{"key": "/authors/OL3413391A"}], "subjects": ["Mechanical Engineering & Materials"], "works": [{"key": "/works/OL9374481W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10298863M 3 2022-12-04T18:04:59.442340 {"publishers": ["Wiley, John Sons"], "isbn_10": ["0471066559"], "number_of_pages": 508, "isbn_13": ["9780471066552"], "physical_format": "Hardcover", "key": "/books/OL10298863M", "authors": [{"key": "/authors/OL3413652A"}], "title": "Probability and Statistics In Engineering and Edition", "subjects": ["Mechanical Engineering & Materials"], "works": [{"key": "/works/OL9375220W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:O8-CBQ-136"], "source_records": ["promise:bwb_daily_pallets_2022-08-13"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T18:04:59.442340"}}
+/type/edition /books/OL10299163M 2 2009-12-15T00:45:58.262401 {"publishers": ["John Wiley & Sons Inc"], "key": "/books/OL10299163M", "title": "Communications Back Vols", "isbn_13": ["9780471070795"], "physical_format": "Hardcover", "isbn_10": ["0471070793"], "latest_revision": 2, "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:45:58.262401"}, "authors": [{"key": "/authors/OL3413890A"}], "works": [{"key": "/works/OL9375490W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10299290M 3 2022-12-03T19:28:28.073419 {"publishers": ["John Wiley & Sons Inc"], "title": "Biotechnology", "isbn_10": ["0471073164"], "isbn_13": ["9780471073161"], "physical_format": "Unknown Binding", "publish_date": "January 1, 1972", "key": "/books/OL10299290M", "authors": [{"key": "/authors/OL3413995A"}], "subjects": ["Biology, Life Sciences", "Biotechnology"], "works": [{"key": "/works/OL9375599W"}], "type": {"key": "/type/edition"}, "source_records": ["amazon:0471073164"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-03T19:28:28.073419"}}
+/type/edition /books/OL10299489M 2 2022-10-18T22:46:02.162995 {"languages": [{"key": "/languages/eng"}], "physical_format": "Paperback", "publishers": ["Wiley Law Pubns"], "number_of_pages": 114, "isbn_13": ["9780471076308"], "isbn_10": ["0471076309"], "publish_date": "May 1994", "key": "/books/OL10299489M", "authors": [{"key": "/authors/OL32185A"}, {"key": "/authors/OL3414107A"}], "title": "Protecting Trade Dress/1994 Cumulative Supplement", "type": {"key": "/type/edition"}, "subjects": ["Intellectual property, copyright & patents", "Jurisprudence & General Issues", "USA", "Reference"], "works": [{"key": "/works/OL29094064W"}], "source_records": ["bwb:9780471076308"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T22:46:02.162995"}}
+/type/edition /books/OL10299496M 2 2009-12-15T00:45:58.262401 {"publishers": ["John Wiley & Sons Inc"], "title": "Ctb Mac3 Sciences", "isbn_10": ["0471076465"], "isbn_13": ["9780471076469"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:45:58.262401"}, "publish_date": "November 30, 1994", "key": "/books/OL10299496M", "authors": [{"key": "/authors/OL3414110A"}], "latest_revision": 2, "subjects": ["PHYSICS"], "works": [{"key": "/works/OL9375788W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10299729M 4 2010-04-24T18:00:55.352456 {"publishers": ["John Wiley & Sons Inc"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:00:55.352456"}, "title": "Insertion Reactions", "identifiers": {"goodreads": ["3810082"]}, "isbn_13": ["9780471088097"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0471088099"], "publish_date": "February 22, 2008", "key": "/books/OL10299729M", "authors": [{"key": "/authors/OL3414187A"}], "latest_revision": 4, "works": [{"key": "/works/OL9375978W"}], "type": {"key": "/type/edition"}, "subjects": ["Physical chemistry"], "revision": 4}
+/type/edition /books/OL1029974M 6 2021-11-02T05:47:44.299821 {"publishers": ["Gynergy Books"], "identifiers": {"goodreads": ["3885338"], "librarything": ["1597725"]}, "isbn_10": ["0921881355"], "subject_place": ["Canada"], "lc_classifications": ["PR9199.3.A547 B67 1995", "PR9199.3.A547B67"], "key": "/books/OL1029974M", "authors": [{"key": "/authors/OL321790A"}], "publish_places": ["Charlottetown, P.E.I"], "pagination": "175 p. ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part25.utf8:130611290:623", "bwb:9780921881353"], "title": "Bordering", "dewey_decimal_class": ["813/.54"], "number_of_pages": 175, "languages": [{"key": "/languages/eng"}], "lccn": ["96106218"], "subjects": ["Lesbians -- Fiction.", "Canada -- Fiction."], "publish_date": "1995", "publish_country": "pic", "by_statement": "Luanne Armstrong.", "works": [{"key": "/works/OL2365125W"}], "type": {"key": "/type/edition"}, "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2021-11-02T05:47:44.299821"}}
+/type/edition /books/OL10300391M 2 2009-12-15T00:45:59.466230 {"publishers": ["John Wiley & Sons Inc"], "title": "Fundamentals of Risk and Insurance Cfp 7", "isbn_10": ["0471110329"], "isbn_13": ["9780471110323"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:45:59.466230"}, "latest_revision": 2, "key": "/books/OL10300391M", "authors": [{"key": "/authors/OL2743627A"}], "subjects": ["Finance & Accounting"], "works": [{"key": "/works/OL8244057W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10300395M 5 2011-05-06T22:20:19.673853 {"publishers": ["John Wiley & Sons Inc"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-05-06T22:20:19.673853"}, "title": "Pascal Genie MAC D3", "identifiers": {"goodreads": ["2435184"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780471110446"], "isbn_10": ["0471110442"], "publish_date": "October 30, 1998", "key": "/books/OL10300395M", "authors": [{"key": "/authors/OL891915A"}], "latest_revision": 5, "works": [{"key": "/works/OL9325552W"}], "type": {"key": "/type/edition"}, "subjects": ["General Theory of Computing"], "revision": 5}
+/type/edition /books/OL10300442M 6 2022-10-18T10:02:48.470491 {"publishers": ["John Wiley & Sons"], "identifiers": {"goodreads": ["6650876"]}, "physical_format": "Paperback", "key": "/books/OL10300442M", "authors": [{"key": "/authors/OL225203A"}, {"key": "/authors/OL392357A"}, {"key": "/authors/OL2736588A"}], "subjects": ["Study Skills", "Accounting", "Education / Teaching", "Business/Economics"], "edition_name": "4th edition", "languages": [{"key": "/languages/eng"}], "title": "Accounting Principles, 4th Edition - Chapters 13-27", "number_of_pages": 464, "isbn_13": ["9780471111351"], "isbn_10": ["047111135X"], "publish_date": "June 12, 1996", "oclc_numbers": ["36084323"], "works": [{"key": "/works/OL15693158W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780471111351"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T10:02:48.470491"}}
+/type/edition /books/OL10300942M 2 2022-10-18T10:47:22.636078 {"languages": [{"key": "/languages/eng"}], "physical_format": "Hardcover", "publishers": ["John Wiley & Sons"], "number_of_pages": 1032, "isbn_13": ["9780471121541"], "isbn_10": ["0471121541"], "publish_date": "November 1994", "key": "/books/OL10300942M", "authors": [{"key": "/authors/OL2737914A"}, {"key": "/authors/OL202060A"}], "title": "Physics Third Edition and Interactive Conceptual Examples Set", "type": {"key": "/type/edition"}, "subjects": ["Physics", "Science"], "works": [{"key": "/works/OL29061536W"}], "source_records": ["bwb:9780471121541"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T10:47:22.636078"}}
+/type/edition /books/OL1030117M 6 2020-11-24T11:28:15.280897 {"publishers": ["Vosa"], "number_of_pages": 269, "subtitle": "espan\u0303oles en los campos de exterminio nazis", "isbn_10": ["8482180126"], "subject_place": ["Germany.", "Spain."], "covers": [3866231], "lc_classifications": ["D805.G3 P649 1995"], "latest_revision": 6, "key": "/books/OL1030117M", "authors": [{"key": "/authors/OL268758A"}], "publish_places": ["Madrid"], "languages": [{"key": "/languages/spa"}], "pagination": "269 p. :", "source_records": ["amazon:8482180126", "marc:marc_loc_2016/BooksAll.2016.part25.utf8:130733052:939"], "title": "Morir por libertad", "dewey_decimal_class": ["940.54/7243"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 263-265)."}, "identifiers": {"librarything": ["4707237"]}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "edition_name": "1. ed.", "lccn": ["96106400"], "subjects": ["World War, 1939-1945 -- Prisoners and prisons, German.", "World War, 1939-1945 -- Personal narratives, Spanish.", "Prisoners of war -- Germany.", "Prisoners of war -- Spain."], "publish_date": "1995", "publish_country": "sp ", "last_modified": {"type": "/type/datetime", "value": "2020-11-24T11:28:15.280897"}, "series": ["Documentos, sociedad"], "by_statement": "Eduardo Pons Prades.", "works": [{"key": "/works/OL2144568W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL10301210M 5 2021-12-09T23:30:02.533061 {"publishers": ["John Wiley & Sons Inc"], "physical_format": "Hardcover", "lc_classifications": [""], "source_records": ["bwb:9780471128281"], "title": "Urban Stream Restoration", "number_of_pages": 300, "isbn_13": ["9780471128281"], "isbn_10": ["0471128287"], "publish_date": "September 27, 1996", "key": "/books/OL10301210M", "authors": [{"key": "/authors/OL3323024A"}], "works": [{"key": "/works/OL9268843W"}], "type": {"key": "/type/edition"}, "subjects": ["Earth Sciences"], "covers": [12411930], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-09T23:30:02.533061"}}
+/type/edition /books/OL10301328M 4 2010-04-24T18:00:55.352456 {"publishers": ["John Wiley & Sons Inc"], "identifiers": {"goodreads": ["5967544"]}, "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:00:55.352456"}, "title": "Copers & Lybrand Llp Set 22e", "number_of_pages": 2624, "isbn_13": ["9780471131038"], "physical_format": "Hardcover", "isbn_10": ["0471131032"], "publish_date": "September 7, 1996", "key": "/books/OL10301328M", "authors": [{"key": "/authors/OL3294315A"}], "latest_revision": 4, "works": [{"key": "/works/OL9235598W"}], "type": {"key": "/type/edition"}, "subjects": ["Finance & Accounting"], "revision": 4}
+/type/edition /books/OL10301620M 2 2009-12-15T00:46:01.811579 {"publishers": ["John Wiley & Sons Inc"], "title": "Immer Software", "isbn_10": ["0471138010"], "isbn_13": ["9780471138013"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:46:01.811579"}, "latest_revision": 2, "key": "/books/OL10301620M", "authors": [{"key": "/authors/OL2665089A"}], "subjects": ["Language & Linguistics"], "works": [{"key": "/works/OL8005894W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10301942M 2 2009-12-15T00:46:01.811579 {"publishers": ["John Wiley & Sons Inc"], "title": "Cacon V2 Ntwk", "isbn_10": ["0471145513"], "isbn_13": ["9780471145516"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:46:01.811579"}, "latest_revision": 2, "key": "/books/OL10301942M", "authors": [{"key": "/authors/OL2738266A"}], "subjects": ["Mathematics"], "works": [{"key": "/works/OL8228356W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10302191M 3 2011-03-02T08:02:12.786348 {"publishers": ["John Wiley & Sons Inc"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-03-02T08:02:12.786348"}, "title": "Accounting Principles with CD 6e and Heritage Home A Narrative Practice Set", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780471151449"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0471151440"], "publish_date": "April 23, 2001", "key": "/books/OL10302191M", "authors": [{"key": "/authors/OL225203A"}], "latest_revision": 3, "works": [{"key": "/works/OL8228528W"}], "type": {"key": "/type/edition"}, "subjects": ["Finance & Accounting"], "revision": 3}
+/type/edition /books/OL10302396M 2 2009-12-15T00:46:01.811579 {"publishers": ["John Wiley & Sons Inc"], "title": "Math6 Disk Set", "isbn_10": ["0471156698"], "isbn_13": ["9780471156697"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:46:01.811579"}, "latest_revision": 2, "key": "/books/OL10302396M", "authors": [{"key": "/authors/OL3359335A"}], "subjects": ["Mathematics"], "works": [{"key": "/works/OL9310150W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10302864M 3 2011-03-28T23:02:05.295702 {"publishers": ["John Wiley & Sons Inc"], "physical_format": "Paperback", "subtitle": "An Interactive Guide to Mastering Accounting Principles, Fourth Edition", "last_modified": {"type": "/type/datetime", "value": "2011-03-28T23:02:05.295702"}, "title": "Accounting Principles, Fourth Edition and Overture", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 1252, "isbn_13": ["9780471167426"], "edition_name": "4Rev Ed edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0471167428"], "publish_date": "April 1996", "key": "/books/OL10302864M", "authors": [{"key": "/authors/OL225203A"}], "latest_revision": 3, "works": [{"key": "/works/OL1881082W"}], "type": {"key": "/type/edition"}, "subjects": ["Financial accounting"], "revision": 3}
+/type/edition /books/OL10302983M 5 2022-10-17T18:48:25.580366 {"publishers": ["Wiley Law Pubns"], "number_of_pages": 274, "subtitle": "1996 Cumulative Supplement (Personal Injury Library)", "title": "Evaluating Tmj Injuries", "type": {"key": "/type/edition"}, "identifiers": {"goodreads": ["4124470"]}, "isbn_13": ["9780471169741"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0471169749"], "publish_date": "September 1996", "key": "/books/OL10302983M", "authors": [{"key": "/authors/OL396672A"}], "works": [{"key": "/works/OL2711970W"}], "physical_format": "Paperback", "subjects": ["Civil law (general works)", "Law as it applies to other professions", "Medicolegal issues", "USA", "Medical Law & Legislation", "Law", "Reference"], "source_records": ["bwb:9780471169741"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T18:48:25.580366"}}
+/type/edition /books/OL10303493M 5 2011-02-04T21:08:10.895869 {"publishers": ["John Wiley & Sons Inc"], "languages": [{"key": "/languages/eng"}], "identifiers": {"goodreads": ["2933104"]}, "last_modified": {"type": "/type/datetime", "value": "2011-02-04T21:08:10.895869"}, "title": "Fundamentals of Physics Fifth Edition with Fundamentals Fifth Edition Volume One and Fundamentals Fifth Edition Part Three and Fundamentals Fifth Edition Part Four Set", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "type": {"key": "/type/edition"}, "number_of_pages": 1614, "isbn_13": ["9780471180470"], "edition_name": "5Rev Ed edition", "physical_format": "Paperback", "isbn_10": ["0471180475"], "publish_date": "September 1996", "key": "/books/OL10303493M", "authors": [{"key": "/authors/OL359271A"}, {"key": "/authors/OL769057A"}], "latest_revision": 5, "contributions": ["Jearl Walker (Editor)"], "subjects": ["PHYSICS"], "revision": 5}
+/type/edition /books/OL10303650M 3 2011-06-08T01:32:03.310674 {"publishers": ["John Wiley & Sons Inc (Computers)"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2011-06-08T01:32:03.310674"}, "title": "Web Server Toolkit for Windows 95 and Nt 4", "number_of_pages": 544, "isbn_13": ["9780471183327"], "edition_name": "Bk&CD-Rom edition", "physical_format": "Paperback", "isbn_10": ["0471183326"], "publish_date": "September 1997", "key": "/books/OL10303650M", "authors": [{"key": "/authors/OL1055079A"}, {"key": "/authors/OL3415082A"}], "latest_revision": 3, "oclc_numbers": ["230774661"], "type": {"key": "/type/edition"}, "subjects": ["Microsoft Windows", "Operating Systems - Windows", "Microcomputer Operating Environments", "Computers", "Computer Books And Software"], "revision": 3}
+/type/edition /books/OL10303686M 4 2020-10-12T12:10:29.401176 {"publishers": ["John Wiley & Sons Inc"], "physical_format": "Paperback", "lc_classifications": [""], "source_records": ["bwb:9780471184546"], "title": "Dicho Y Hecho - Beginning Spanish 5e Mulitmedia Guide", "number_of_pages": 228, "last_modified": {"type": "/type/datetime", "value": "2020-10-12T12:10:29.401176"}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780471184546"], "isbn_10": ["0471184543"], "publish_date": "March 17, 1998", "key": "/books/OL10303686M", "authors": [{"key": "/authors/OL2747363A"}], "latest_revision": 4, "works": [{"key": "/works/OL8256132W"}], "type": {"key": "/type/edition"}, "subjects": ["Language & Linguistics"], "revision": 4}
+/type/edition /books/OL10303908M 5 2022-12-17T04:01:19.685188 {"publishers": ["John Wiley & Sons Inc"], "weight": "1.7 pounds", "title": "Paralegal Litigation - Forms & Procedures 2e 1997 Cumulative Supplement D3", "identifiers": {"goodreads": ["6853927"]}, "isbn_13": ["9780471192510"], "physical_format": "Unknown Binding", "authors": [{"key": "/authors/OL2736462A"}], "isbn_10": ["0471192511"], "publish_date": "August 4, 1997", "key": "/books/OL10303908M", "works": [{"key": "/works/OL8225472W"}], "type": {"key": "/type/edition"}, "subjects": ["Jurisprudence & General Issues"], "source_records": ["bwb:9780471192510"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T04:01:19.685188"}}
+/type/edition /books/OL10304224M 2 2009-12-15T00:46:02.873500 {"publishers": ["John Wiley & Sons Inc"], "isbn_10": ["0471199877"], "number_of_pages": 210, "isbn_13": ["9780471199878"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:46:02.873500"}, "latest_revision": 2, "key": "/books/OL10304224M", "authors": [{"key": "/authors/OL3322485A"}], "title": "Membrane Organization and Phospholipid", "subjects": ["Chemistry"], "works": [{"key": "/works/OL9268269W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10304389M 3 2022-10-18T07:50:33.917537 {"physical_format": "Paperback", "languages": [{"key": "/languages/eng"}], "publishers": ["John Wiley & Sons Inc"], "isbn_10": ["0471206148"], "title": "ServSafe(r) Essentials with Exam Answer Sheet plus State of Texas Department of Health Certification Fee (fee included in price of product)", "edition_name": "1 edition", "isbn_13": ["9780471206149"], "publish_date": "May 17, 2001", "key": "/books/OL10304389M", "authors": [{"key": "/authors/OL2737031A"}], "subjects": ["Food & Drink / Cookery", "Food Science", "Technology", "Business/Economics"], "works": [{"key": "/works/OL8226585W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780471206149"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T07:50:33.917537"}}
+/type/edition /books/OL10304976M 5 2011-01-18T11:35:34.946063 {"publishers": ["John Wiley & Sons Inc"], "weight": "1.7 pounds", "physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2011-01-18T11:35:34.946063"}, "latest_revision": 5, "key": "/books/OL10304976M", "authors": [{"key": "/authors/OL3349232A"}], "subjects": ["Applications of Computing"], "edition_name": "2nd Edition", "classifications": {}, "title": "Website to Accompany Introduction to Information Technology", "notes": {"type": "/type/text", "value": "2nd Edition"}, "identifiers": {"goodreads": ["2727016"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780471232162"], "isbn_10": ["0471232165"], "publish_date": "October 11, 2002", "works": [{"key": "/works/OL9297495W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10305035M 3 2011-02-27T21:27:10.829658 {"publishers": ["John Wiley & Sons Inc"], "classifications": {}, "last_modified": {"type": "/type/datetime", "value": "2011-02-27T21:27:10.829658"}, "weight": "1.7 pounds", "title": "Website to Accompany the Analysis and Design of Li Near Circuits", "notes": {"type": "/type/text", "value": "3e"}, "identifiers": {}, "isbn_13": ["9780471233824"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Unknown Binding", "isbn_10": ["047123382X"], "publish_date": "January 30, 2003", "key": "/books/OL10305035M", "authors": [{"key": "/authors/OL460099A"}], "latest_revision": 3, "works": [{"key": "/works/OL2999964W"}], "type": {"key": "/type/edition"}, "subjects": ["Electronics & Communications Engineering"], "revision": 3}
+/type/edition /books/OL10305326M 3 2011-03-02T08:02:12.786348 {"publishers": ["John Wiley & Sons Inc"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2011-03-02T08:02:12.786348"}, "title": "Accounting Principles 4e V2 Glw", "number_of_pages": 706, "isbn_13": ["9780471240174"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0471240176"], "publish_date": "May 16, 1997", "key": "/books/OL10305326M", "authors": [{"key": "/authors/OL225203A"}], "latest_revision": 3, "works": [{"key": "/works/OL8228451W"}], "type": {"key": "/type/edition"}, "subjects": ["Finance & Accounting"], "revision": 3}
+/type/edition /books/OL10305338M 3 2009-12-15T00:46:03.957035 {"publishers": ["Wiley Law Pubns"], "subtitle": "1997 Cumulative Supplement (Employment Law Library)", "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:46:03.957035"}, "latest_revision": 3, "key": "/books/OL10305338M", "authors": [{"key": "/authors/OL1652814A"}], "subjects": ["Employment & labour law", "USA", "c 1990 to c 2000", "Labor & Employment", "Law"], "edition_name": "2nd edition", "title": "Public Employee Discharge and Discipline", "number_of_pages": 584, "isbn_13": ["9780471240419"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0471240419"], "publish_date": "August 1997", "works": [{"key": "/works/OL6323158W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL1030566M 5 2020-11-17T19:35:46.497248 {"publishers": ["G. Olms"], "subtitle": "eine Bibliographie", "isbn_10": ["3487096862"], "covers": [3866217], "lc_classifications": ["Z2233 .H8 1993", "PT405 .H8 1993"], "latest_revision": 5, "key": "/books/OL1030566M", "authors": [{"key": "/authors/OL553933A"}], "publish_places": ["Hildesheim", "New York"], "contributions": ["Josting, Petra."], "subject_time": ["20th century"], "pagination": "2 v. ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:61380084:879"], "title": "Literaturlenkung im \"Dritten Reich\"", "dewey_decimal_class": ["016.8309/00912"], "notes": {"type": "/type/text", "value": "Vol. 2 has subtitle: Eine annotierte Bibliographie von Bibliographien.\nIncludes indexes."}, "identifiers": {"goodreads": ["4721331"]}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/ger"}], "lccn": ["93222833"], "subjects": ["German literature -- 20th century -- History and criticism -- Bibliography.", "National socialism and literature -- Bibliography."], "publish_date": "1993", "publish_country": "gw ", "last_modified": {"type": "/type/datetime", "value": "2020-11-17T19:35:46.497248"}, "by_statement": "Norbert Hopster, Petra Josting.", "works": [{"key": "/works/OL3388043W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10305860M 2 2009-12-15T00:46:05.018268 {"publishers": ["John Wiley & Sons Inc"], "isbn_10": ["0471253278"], "number_of_pages": 206, "isbn_13": ["9780471253273"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:46:05.018268"}, "publish_date": "March 24, 1998", "latest_revision": 2, "key": "/books/OL10305860M", "authors": [{"key": "/authors/OL3415484A"}], "title": "Operations Management - A Process Approach with Spreadsheets TB", "subjects": ["Business & Management"], "works": [{"key": "/works/OL9378199W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10306164M 6 2020-10-12T05:00:53.252634 {"publishers": ["John Wiley and Sons Ltd"], "number_of_pages": 6, "physical_format": "Hardcover", "lc_classifications": [""], "latest_revision": 6, "key": "/books/OL10306164M", "authors": [{"key": "/authors/OL3415592A"}], "subjects": ["Chemistry"], "isbn_13": ["9780471259251"], "source_records": ["bwb:9780471259251"], "title": "Ocma Dfcp 1 Drilling Fluid Materials Salt Water Clay", "identifiers": {"goodreads": ["2511728"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["047125925X"], "publish_date": "December 6, 1973", "last_modified": {"type": "/type/datetime", "value": "2020-10-12T05:00:53.252634"}, "works": [{"key": "/works/OL9378349W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL10306333M 2 2009-12-15T00:46:05.018268 {"physical_format": "Hardcover", "title": "Goldup Gas Chromatography 1964", "isbn_10": ["0471261580"], "publishers": ["John Wiley and Sons / Institute of Petroleum"], "isbn_13": ["9780471261582"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:46:05.018268"}, "publish_date": "May 6, 1964", "key": "/books/OL10306333M", "authors": [{"key": "/authors/OL3415654A"}], "latest_revision": 2, "subjects": ["Chemistry"], "works": [{"key": "/works/OL9378484W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10306854M 2 2009-12-15T00:46:11.915192 {"publishers": ["John Wiley & Sons Inc"], "key": "/books/OL10306854M", "title": "Polymer V6 1968 Pt A2 #9", "isbn_13": ["9780471282464"], "physical_format": "Hardcover", "isbn_10": ["0471282464"], "latest_revision": 2, "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:46:11.915192"}, "authors": [{"key": "/authors/OL3413155A"}], "works": [{"key": "/works/OL9374052W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10307203M 3 2010-04-24T18:00:55.352456 {"publishers": ["John Wiley & Sons Inc"], "number_of_pages": 960, "key": "/books/OL10307203M", "languages": [{"key": "/languages/eng"}], "title": "Vision Y Voz 2e with Workbook & Lab Manual & Student Audio CD T/a Vision", "identifiers": {"goodreads": ["6603137"]}, "isbn_13": ["9780471298106"], "physical_format": "Paperback", "isbn_10": ["0471298107"], "publish_date": "January 27, 1998", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:00:55.352456"}, "authors": [{"key": "/authors/OL2625392A"}], "latest_revision": 3, "type": {"key": "/type/edition"}, "subjects": ["Language & Linguistics"], "revision": 3}
+/type/edition /books/OL10307264M 2 2009-12-15T00:46:11.915192 {"publishers": ["John Wiley & Sons Inc"], "title": "Information Resources Web Site", "isbn_10": ["0471299235"], "isbn_13": ["9780471299233"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:46:11.915192"}, "latest_revision": 2, "key": "/books/OL10307264M", "authors": [{"key": "/authors/OL3415358A"}], "subjects": ["Applications of Computing"], "works": [{"key": "/works/OL9378054W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10307759M 2 2009-12-15T00:46:11.915192 {"publishers": ["John Wiley & Sons Inc"], "weight": "13 ounces", "title": "Consumer Behavior 3e Ctb Ibm3", "isbn_10": ["0471307041"], "isbn_13": ["9780471307044"], "physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:46:11.915192"}, "publish_date": "April 6, 1995", "key": "/books/OL10307759M", "authors": [{"key": "/authors/OL3288105A"}], "latest_revision": 2, "subjects": ["Business & Management"], "works": [{"key": "/works/OL9227678W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10308147M 2 2022-12-17T03:58:28.440395 {"physical_format": "Software", "subtitle": "The Complete System for Donor Development", "weight": "13.9 ounces", "publishers": ["John Wiley & Sons Inc"], "title": "Wiley Fund RaiserTM", "isbn_13": ["9780471314486"], "isbn_10": ["047131448X"], "publish_date": "April 1998", "key": "/books/OL10308147M", "authors": [{"key": "/authors/OL3412909A"}, {"key": "/authors/OL3414379A"}], "type": {"key": "/type/edition"}, "subjects": ["Finance & Accounting"], "works": [{"key": "/works/OL32347646W"}], "source_records": ["bwb:9780471314486"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T03:58:28.440395"}}
+/type/edition /books/OL10308361M 2 2022-12-17T03:23:52.523965 {"isbn_13": ["9780471318439"], "physical_format": "Software", "weight": "3.8 ounces", "publishers": ["John Wiley & Sons Inc"], "title": "For Value Express 5.0, ValuWrite Report Template", "edition_name": "1 edition", "isbn_10": ["0471318434"], "publish_date": "April 16, 1998", "key": "/books/OL10308361M", "authors": [{"key": "/authors/OL3412909A"}, {"key": "/authors/OL3414379A"}], "type": {"key": "/type/edition"}, "subjects": ["Finance & Accounting"], "works": [{"key": "/works/OL32344149W"}], "source_records": ["bwb:9780471318439"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T03:23:52.523965"}}
+/type/edition /books/OL10308397M 5 2022-10-18T10:50:37.882525 {"publishers": ["Wiley-Interscience"], "languages": [{"key": "/languages/eng"}], "physical_format": "Hardcover", "weight": "42.4 pounds", "title": "Patty's Industrial Hygiene + Patty's Toxicology (13 Volume Set) 12 vols plus Toxicology Index", "isbn_10": ["0471319457"], "identifiers": {"goodreads": ["4741962"]}, "isbn_13": ["9780471319450"], "covers": [2425253], "edition_name": "5 edition", "number_of_pages": 1056, "key": "/books/OL10308397M", "authors": [{"key": "/authors/OL1669406A"}, {"key": "/authors/OL2737975A"}, {"key": "/authors/OL2737976A"}], "publish_date": "February 15, 2001", "type": {"key": "/type/edition"}, "subjects": ["Medical toxicology", "Occupational / industrial health & safety", "Science", "Medical / Nursing", "Science/Mathematics", "Chemistry - Industrial & Technical", "Industrial Health & Safety", "Toxicology", "Medical / Toxicology", "Science / Chemistry / General", "Chemistry - General"], "physical_dimensions": "24.2 x 9.7 x 6.5 inches", "works": [{"key": "/works/OL29061598W"}], "lc_classifications": ["RC967.P37 1991"], "source_records": ["bwb:9780471319450"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T10:50:37.882525"}}
+/type/edition /books/OL10308549M 5 2022-10-17T16:38:18.106740 {"publishers": ["John Wiley & Sons Inc"], "classifications": {}, "title": "Sg II Spanish Prin.", "notes": {"type": "/type/text", "value": "5e"}, "identifiers": {}, "isbn_13": ["9780471322245"], "physical_format": "Hardcover", "isbn_10": ["0471322245"], "publish_date": "October 27, 1998", "key": "/books/OL10308549M", "authors": [{"key": "/authors/OL225203A"}], "works": [{"key": "/works/OL8228876W"}], "type": {"key": "/type/edition"}, "subjects": ["Finance & Accounting"], "source_records": ["bwb:9780471322245"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T16:38:18.106740"}}
+/type/edition /books/OL10308630M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Spiral-bound", "weight": "2.7 pounds", "publishers": ["John Wiley & Sons Inc"], "number_of_pages": 452, "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780471323686"], "isbn_10": ["0471323683"], "publish_date": "January 1, 1998", "key": "/books/OL10308630M", "authors": [{"key": "/authors/OL3416027A"}, {"key": "/authors/OL3416028A"}], "title": "Nothin' But Net - Computers, The Internet, Research & You", "type": {"key": "/type/edition"}, "physical_dimensions": "11.2 x 9.2 x 1 inches", "revision": 1}
+/type/edition /books/OL10308798M 2 2009-12-15T00:46:19.783224 {"publishers": ["John Wiley & Sons Inc"], "isbn_10": ["047132664X"], "number_of_pages": 1322, "isbn_13": ["9780471326649"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:46:19.783224"}, "latest_revision": 2, "key": "/books/OL10308798M", "authors": [{"key": "/authors/OL3414363A"}], "title": "Environmental Science 2e Set", "subjects": ["Biology, Life Sciences"], "works": [{"key": "/works/OL9376280W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10308838M 5 2022-10-17T03:23:08.467747 {"publishers": ["John Wiley & Sons Inc"], "number_of_pages": 600, "title": "Greulach Plants -an Intro to Modern Bot", "identifiers": {"goodreads": ["5472110"]}, "isbn_13": ["9780471327653"], "edition_name": "International 2 Revised Ed edition", "physical_format": "Hardcover", "isbn_10": ["0471327654"], "publish_date": "March 1976", "key": "/books/OL10308838M", "authors": [{"key": "/authors/OL3321317A"}, {"key": "/authors/OL3321318A"}], "oclc_numbers": ["183125"], "type": {"key": "/type/edition"}, "subjects": ["Biology, Life Sciences"], "works": [{"key": "/works/OL28969355W"}], "lc_classifications": ["QK45.2"], "source_records": ["bwb:9780471327653"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T03:23:08.467747"}}
+/type/edition /books/OL10309309M 2 2009-12-15T00:46:31.219514 {"publishers": ["John Wiley & Sons Australia Ltd"], "key": "/books/OL10309309M", "title": "Chief Finacial Officer Ch1-7 + Appends", "isbn_13": ["9780471339519"], "physical_format": "Hardcover", "isbn_10": ["0471339512"], "publish_date": "July 4, 1997", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:46:31.219514"}, "authors": [{"key": "/authors/OL2879386A"}], "latest_revision": 2, "works": [{"key": "/works/OL8578215W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10309731M 4 2022-10-17T16:38:27.506011 {"languages": [{"key": "/languages/eng"}], "subtitle": "Cationics, Amphoterics, Amides, and Related Products - 1996 - 2001 - 2006", "key": "/books/OL10309731M", "title": "The World's Nitrogen Containing Surfactants Industry", "publishers": ["John Wiley & Sons Inc"], "isbn_13": ["9780471353775"], "covers": [5051011], "edition_name": "1 edition", "physical_format": "Paperback", "isbn_10": ["0471353779"], "publish_date": "March 12, 1999", "authors": [{"key": "/authors/OL3416187A"}], "works": [{"key": "/works/OL9379319W"}], "type": {"key": "/type/edition"}, "subjects": ["Chemistry", "Chemistry - General", "Industrial Design - General", "Science", "Science/Mathematics"], "source_records": ["bwb:9780471353775"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T16:38:27.506011"}}
+/type/edition /books/OL10309897M 2 2022-10-17T15:52:25.729919 {"physical_format": "Paperback", "publishers": ["John Wiley & Sons Inc"], "number_of_pages": 256, "isbn_13": ["9780471357698"], "isbn_10": ["0471357693"], "publish_date": "January 31, 2000", "key": "/books/OL10309897M", "authors": [{"key": "/authors/OL2162098A"}], "title": "Mechanical & Electrical Equipment for Buildings 9e TM", "type": {"key": "/type/edition"}, "subjects": ["Architecture"], "works": [{"key": "/works/OL29013940W"}], "source_records": ["bwb:9780471357698"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T15:52:25.729919"}}
+/type/edition /books/OL10310378M 2 2009-12-15T00:46:31.219514 {"publishers": ["John Wiley & Sons Inc"], "isbn_10": ["0471367346"], "number_of_pages": 394, "isbn_13": ["9780471367345"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:46:31.219514"}, "latest_revision": 2, "key": "/books/OL10310378M", "authors": [{"key": "/authors/OL2751337A"}], "title": "Multi Finan Mngt 5e Instr Man Test File", "subjects": ["Finance & Accounting"], "works": [{"key": "/works/OL8269710W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10310522M 2 2009-12-15T00:46:31.219514 {"publishers": ["John Wiley & Sons Inc"], "title": "Cobol 9e Set", "isbn_10": ["0471369918"], "isbn_13": ["9780471369912"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:46:31.219514"}, "latest_revision": 2, "key": "/books/OL10310522M", "authors": [{"key": "/authors/OL2736768A"}], "subjects": ["Computer Programming"], "works": [{"key": "/works/OL8226275W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10310778M 2 2009-12-15T00:46:38.139789 {"publishers": ["John Wiley & Sons Inc"], "title": "Intro Mgmt Web Site with Ppts", "isbn_10": ["0471375365"], "isbn_13": ["9780471375364"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:46:38.139789"}, "publish_date": "December 1, 1999", "key": "/books/OL10310778M", "authors": [{"key": "/authors/OL3011877A"}], "latest_revision": 2, "subjects": ["Business & Management"], "works": [{"key": "/works/OL8813163W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10310869M 3 2022-10-17T15:05:53.870200 {"publishers": ["John Wiley & Sons Inc"], "title": "Physics 4e V1 Stud Sg Stud Sol Man Set", "isbn_10": ["0471377503"], "isbn_13": ["9780471377504"], "physical_format": "Hardcover", "publish_date": "August 31, 1999", "key": "/books/OL10310869M", "authors": [{"key": "/authors/OL3414364A"}], "subjects": ["PHYSICS"], "works": [{"key": "/works/OL9376334W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780471377504"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T15:05:53.870200"}}
+/type/edition /books/OL10310989M 2 2009-12-15T00:46:38.139789 {"publishers": ["John Wiley & Sons Inc"], "title": "Organ Behavior 7e Stud Video CD-Rom Set", "isbn_10": ["0471380571"], "isbn_13": ["9780471380573"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:46:38.139789"}, "publish_date": "April 7, 2000", "key": "/books/OL10310989M", "authors": [{"key": "/authors/OL3011877A"}], "latest_revision": 2, "subjects": ["Business & Management"], "works": [{"key": "/works/OL8813208W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10311085M 2 2009-12-15T00:46:38.139789 {"publishers": ["John Wiley and Sons"], "title": "Env Sci 3e Env Csbk Iss Canada Set", "isbn_10": ["0471383163"], "isbn_13": ["9780471383161"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:46:38.139789"}, "publish_date": "March 27, 2000", "key": "/books/OL10311085M", "authors": [{"key": "/authors/OL3414363A"}], "latest_revision": 2, "subjects": ["Earth Sciences"], "works": [{"key": "/works/OL9376272W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10311515M 3 2022-10-17T04:33:27.433584 {"publishers": ["John Wiley & Sons Inc"], "title": "Managerial Accounting with Wsj Com Password Set", "isbn_10": ["047139663X"], "isbn_13": ["9780471396635"], "physical_format": "Hardcover", "publish_date": "May 16, 2000", "key": "/books/OL10311515M", "authors": [{"key": "/authors/OL3414827A"}], "subjects": ["Finance & Accounting"], "works": [{"key": "/works/OL9377270W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780471396635"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T04:33:27.433584"}}
+/type/edition /books/OL10311564M 5 2022-10-17T04:06:32.251160 {"number_of_pages": 800, "subtitle": "Financial Accounting and Reporting (Wiley Cpa Examination Review. Financial Accounting and Reporting)", "weight": "3.2 pounds", "covers": [2425511], "edition_name": "Rev Ed edition", "title": "Wiley Cpa Examination Review, 2001", "languages": [{"key": "/languages/eng"}], "subjects": ["Business & Economics", "Study Guides", "Business/Economics", "Accounting - General", "21st century", "Accounting", "Study guides, home study & revision notes", "Yearbooks, annuals, almanacs", "Accounting - Financial", "CPA (Certified Public Accountant)"], "type": {"key": "/type/edition"}, "physical_dimensions": "11 x 8.5 x 1.5 inches", "publishers": ["John Wiley & Sons"], "physical_format": "Paperback", "key": "/books/OL10311564M", "authors": [{"key": "/authors/OL1321819A"}, {"key": "/authors/OL2730170A"}], "identifiers": {"goodreads": ["2217834"]}, "isbn_13": ["9780471397908"], "isbn_10": ["0471397903"], "publish_date": "December 15, 2000", "works": [{"key": "/works/OL28970132W"}], "source_records": ["bwb:9780471397908"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T04:06:32.251160"}}
+/type/edition /books/OL1031176M 6 2020-11-17T19:43:38.734237 {"publishers": ["Beacon Hill Press"], "number_of_pages": 87, "table_of_contents": [{"title": "A never-married adult's view of the Church / Joe Bentz - Divorce and the Church", "type": {"key": "/type/toc_item"}, "level": 0}, {"title": "new beginnings / Elizabeth Hilbun Rigdon - Single because of death / Phil Jones - The ministry challenge of the single-parent family / Carol J. Millenson - How to begin single adult ministries in the local church / Mike Platter - Outreach to and for single adults / Dennis Apple.", "type": {"key": "/type/toc_item"}, "level": 0}], "isbn_10": ["0834113627"], "covers": [1578866], "lc_classifications": ["MLCS 93/04882 (B)"], "latest_revision": 6, "key": "/books/OL1031176M", "publish_places": ["Kansas City, Mo"], "contributions": ["Hardin, Linda G."], "subjects": ["Single Adult Ministries (Organization)", "Church work with divorced people.", "Church work with single parents.", "Church work with single people."], "pagination": "87 p. :", "source_records": ["marc:marc_evangelical_seminary/Evangelical_Seminary_20200728.mrc:28366091:1318", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:61999195:1203"], "title": "The Faces of single adult ministries", "dewey_decimal_class": ["259.25"], "notes": {"type": "/type/text", "value": "Includes bibliographical references."}, "identifiers": {"goodreads": ["3818900"], "librarything": ["3457641"]}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["93223743"], "local_id": ["urn:evs:39663100103530"], "publish_date": "1990", "publish_country": "mou", "last_modified": {"type": "/type/datetime", "value": "2020-11-17T19:43:38.734237"}, "by_statement": "edited by Linda G. Hardin.", "oclc_numbers": ["22499194"], "works": [{"key": "/works/OL21171660W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL1031177M 1 2008-04-01T03:28:50.625462 {"isbn_invalid": ["5268014229"], "series": ["Rossii\u0361a\ufe21 v lit\u0361s\ufe21akh, dokumentakh, dnevnikakh"], "lc_classifications": ["D764 .S55 1992"], "subtitle": "1941 god : neizvestnye dokumenty", "contributions": ["Knyshevskii\u0306, P. N."], "title": "Skrytai\u0361a\ufe21 pravda voi\u0306ny", "languages": [{"key": "/languages/rus"}], "subjects": ["World War, 1939-1945 -- Campaigns -- Eastern Front -- Sources.", "World War, 1939-1945 -- Soviet Union -- Sources."], "publish_country": "ru ", "subject_place": ["Eastern Front", "Soviet Union"], "by_statement": "[sostaviteli P.N. Knyshevskii\u0306 ... et al.].", "oclc_numbers": ["27986022"], "type": {"key": "/type/edition"}, "revision": 1, "publishers": ["Russkai\u0361a\ufe21 kniga"], "last_modified": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "key": "/books/OL1031177M", "publish_places": ["Moskva"], "pagination": "380 p., [32] p. of plates :", "lccn": ["93223745"], "notes": {"type": "/type/text", "value": "Includes bibliographical references."}, "number_of_pages": 380, "publish_date": "1992"}
+/type/edition /books/OL10311976M 5 2020-10-08T04:31:16.842390 {"publishers": ["John Wiley & Sons"], "weight": "1.4 pounds", "physical_format": "Hardcover", "lc_classifications": [""], "latest_revision": 5, "key": "/books/OL10311976M", "authors": [{"key": "/authors/OL48933A"}], "subjects": ["Coping with drug & alcohol abuse", "Psychology", "General", "Neurology - General", "Substance Abuse & Addictions - General", "Self-Help"], "edition_name": "1 edition", "languages": [{"key": "/languages/eng"}], "source_records": ["bwb:9780471409397"], "title": "Healing Journey Through Addiction and Clinician's Guide (Healing Journey)", "number_of_pages": 340, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780471409397"], "isbn_10": ["0471409391"], "publish_date": "January 2000", "last_modified": {"type": "/type/datetime", "value": "2020-10-08T04:31:16.842390"}, "oclc_numbers": ["228135048"], "works": [{"key": "/works/OL637133W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.2 x 7.4 x 1 inches", "revision": 5}
+/type/edition /books/OL10312080M 5 2022-10-17T02:50:31.273126 {"publishers": ["John Wiley & Sons"], "languages": [{"key": "/languages/eng"}], "physical_format": "Hardcover", "weight": "2.8 pounds", "title": "CRB Commodity Yearbook 2001", "isbn_10": ["0471412678"], "identifiers": {"goodreads": ["7079681"]}, "isbn_13": ["9780471412670"], "covers": [2425543], "edition_name": "1st edition", "number_of_pages": 315, "key": "/books/OL10312080M", "authors": [{"key": "/authors/OL3416447A"}, {"key": "/authors/OL3416326A"}, {"key": "/authors/OL3415279A"}], "publish_date": "January 15, 2001", "type": {"key": "/type/edition"}, "subjects": ["Yearbooks, annuals, almanacs", "Commodities And Commodity Exchanges", "Business & Economics", "Business / Economics / Finance", "Business/Economics", "Commodities", "Investments & Securities - General", "Reference - Almanacs/Yearbooks", "Finance"], "physical_dimensions": "11.3 x 8.8 x 1.2 inches", "works": [{"key": "/works/OL28968676W"}], "source_records": ["bwb:9780471412670"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T02:50:31.273126"}}
+/type/edition /books/OL10312196M 2 2009-12-15T00:46:40.785320 {"publishers": ["John Wiley & Sons Inc"], "title": "Mechanical and Structural Vibrations", "isbn_10": ["0471416959"], "isbn_13": ["9780471416951"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:46:40.785320"}, "publish_date": "December 6, 2001", "key": "/books/OL10312196M", "authors": [{"key": "/authors/OL2869656A"}], "latest_revision": 2, "subjects": ["Materials science"], "works": [{"key": "/works/OL8559469W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10312429M 2 2009-12-15T00:46:40.785320 {"publishers": ["John Wiley & Sons Inc"], "key": "/books/OL10312429M", "title": "Ppul Vols 6 7 1989", "isbn_13": ["9780471424390"], "physical_format": "Hardcover", "isbn_10": ["0471424390"], "latest_revision": 2, "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:46:40.785320"}, "authors": [{"key": "/authors/OL3416524A"}], "works": [{"key": "/works/OL9379801W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL1031254M 4 2020-11-17T19:44:35.853423 {"publishers": ["American Congress on Surveying and Mapping"], "number_of_pages": 219, "subtitle": "a compendium", "isbn_10": ["0961345969"], "lc_classifications": ["G70.2 .G435 1990"], "latest_revision": 4, "key": "/books/OL1031254M", "publish_places": ["Bethesda, Md"], "contributions": ["Onsrud, Harlan Joseph.", "Cook, David W., 1931-"], "pagination": "v, 219 p. ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:62071799:733"], "title": "Geographic and land information systems for practicing surveyors", "lccn": ["93223855"], "notes": {"type": "/type/text", "value": "Includes bibliographical references."}, "identifiers": {"goodreads": ["6221010"]}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "subjects": ["Geographic information systems.", "Surveying."], "publish_date": "1990", "publish_country": "mdu", "last_modified": {"type": "/type/datetime", "value": "2020-11-17T19:44:35.853423"}, "by_statement": "editors, Harlan J. Onsrud, David W. Cook.", "works": [{"key": "/works/OL6603268W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10312823M 6 2019-07-06T00:41:48.570120 {"publishers": ["Wiley"], "weight": "1 ounces", "covers": [8701586], "physical_format": "CD-ROM", "last_modified": {"type": "/type/datetime", "value": "2019-07-06T00:41:48.570120"}, "latest_revision": 6, "key": "/books/OL10312823M", "authors": [{"key": "/authors/OL2736803A"}], "ocaid": "odearchitectcomp00code", "subjects": ["Differential Equations", "Mathematics / Differential Equations", "Mathematics", "Science/Mathematics"], "edition_name": "Cdr edition", "languages": [{"key": "/languages/eng"}], "source_records": ["ia:odearchitectcomp00code"], "title": "ODE Architect CD ROM Version 1.5", "identifiers": {"goodreads": ["2929188"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780471439554"], "isbn_10": ["047143955X"], "publish_date": "July 4, 2001", "oclc_numbers": ["154672966"], "works": [{"key": "/works/OL8226316W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "14.8 x 14 x 1 inches", "revision": 6}
+/type/edition /books/OL1031326M 3 2020-11-17T19:45:38.171288 {"publishers": ["Izd. Issl. in-ta nauch. pedagogiki pri II MGU"], "lc_classifications": ["MLCM 93/05668 (L)"], "latest_revision": 3, "key": "/books/OL1031326M", "authors": [{"key": "/authors/OL554323A"}], "publish_places": ["Moskva"], "pagination": "260 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:62145473:556"], "title": "Gramota v detskom sadu i nulevoi\u0306 gruppe", "lccn": ["93223957"], "number_of_pages": 260, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/rus"}], "last_modified": {"type": "/type/datetime", "value": "2020-11-17T19:45:38.171288"}, "publish_date": "1929", "publish_country": "ru ", "by_statement": "F.N. Blekher ; s predisloviem A.P. Pinkevicha.", "works": [{"key": "/works/OL3389547W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10313620M 2 2009-12-15T00:46:41.790274 {"physical_format": "Hardcover", "title": "Foundations College Chemistry 11e with Study Guide Set", "isbn_10": ["0471471720"], "publishers": ["John Wiley & Sons Inc"], "isbn_13": ["9780471471721"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:46:41.790274"}, "publish_date": "September 29, 2003", "key": "/books/OL10313620M", "authors": [{"key": "/authors/OL2776917A"}], "latest_revision": 2, "subjects": ["Chemistry"], "works": [{"key": "/works/OL8344854W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10313703M 2 2009-12-15T00:46:41.790274 {"physical_format": "Paperback", "languages": [{"key": "/languages/eng"}], "publishers": ["John Wiley & Sons Inc"], "isbn_10": ["0471474606"], "title": "Calculus", "edition_name": "3Rev Ed edition", "isbn_13": ["9780471474609"], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:46:41.790274"}, "publish_date": "August 30, 2007", "key": "/books/OL10313703M", "authors": [{"key": "/authors/OL1762006A"}], "latest_revision": 2, "subjects": ["Calculus & mathematical analysis"], "works": [{"key": "/works/OL6571110W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10313753M 2 2009-12-15T00:46:41.790274 {"physical_format": "Hardcover", "title": "Intermediate Accounting 11e with Study Guide Volum E 1 Set", "isbn_10": ["0471476412"], "publishers": ["John Wiley & Sons Inc"], "isbn_13": ["9780471476412"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:46:41.790274"}, "publish_date": "April 8, 2003", "key": "/books/OL10313753M", "authors": [{"key": "/authors/OL3011774A"}], "latest_revision": 2, "subjects": ["Finance & Accounting"], "works": [{"key": "/works/OL8812685W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10313964M 2 2022-12-04T19:32:01.350816 {"isbn_13": ["9780471484516"], "physical_format": "Hardcover", "subtitle": "Volume # 22 Water [Desalination] to Zone Refining", "languages": [{"key": "/languages/eng"}], "publishers": ["John Wiley & Sons Inc"], "number_of_pages": 780, "edition_name": "2Rev Ed edition", "isbn_10": ["0471484512"], "publish_date": "January 1, 1971", "key": "/books/OL10313964M", "title": "Encyclopedia of Chemical Technology", "type": {"key": "/type/edition"}, "subjects": ["Industrial Chemistry & Manufacturing Technologies"], "works": [{"key": "/works/OL31270996W"}], "local_id": ["urn:bwbsku:O8-BKY-032"], "source_records": ["promise:bwb_daily_pallets_2022-08-13"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T19:32:01.350816"}}
+/type/edition /books/OL10314065M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Spiral-bound", "subtitle": "Objectives and Outlines for General Psychology 2003-2004 Edition", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Wiley Custom Services"], "title": "Psychology 201", "isbn_13": ["9780471488620"], "isbn_10": ["0471488623"], "publish_date": "2004", "key": "/books/OL10314065M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10314401M 5 2011-04-27T10:59:05.012868 {"publishers": ["Univ of Washington Pr"], "number_of_pages": 256, "subtitle": "The Plains Indian Collection of the Haffenreffer Museum of Anthropology", "weight": "2.2 pounds", "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T10:59:05.012868"}, "latest_revision": 5, "key": "/books/OL10314401M", "authors": [{"key": "/authors/OL1013890A"}], "subjects": ["Art of indigenous peoples", "Ethnography", "North America", "Archaeological Museums And Collections", "Native American Art", "Sociology"], "isbn_13": ["9780295961064"], "title": "Hau, Kola", "identifiers": {"goodreads": ["6637303"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0295961066"], "publish_date": "April 1989", "oclc_numbers": ["234215599"], "works": [{"key": "/works/OL4812228W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "11.2 x 9.2 x 0.8 inches", "revision": 5}
+/type/edition /books/OL10314817M 5 2022-12-10T10:41:23.797302 {"publishers": ["Univ of Washington Pr"], "identifiers": {"goodreads": ["1511890"]}, "subtitle": "September 14-December 10, 1993", "key": "/books/OL10314817M", "weight": "1 pounds", "title": "Iberian Antiquities from the Collection of Leon Levy and Shelby White", "type": {"key": "/type/edition"}, "number_of_pages": 136, "isbn_13": ["9780295973531"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0295973536"], "authors": [{"key": "/authors/OL1122083A"}], "publish_date": "January 1994", "works": [{"key": "/works/OL5096858W"}], "physical_format": "Paperback", "subjects": ["Antiques & Collectables", "History of art: BCE to c 500 CE, ancient & classical world", "Museum, historic sites, gallery & art guides", "Spain", "Reference - General", "Ancient Art", "Permanent Collection Catalogs", "Antiques & Collectibles", "Antiques/Collectibles"], "physical_dimensions": "8.8 x 8.8 x 0.5 inches", "local_id": ["urn:bwbsku:O6-EDK-544"], "source_records": ["promise:bwb_daily_pallets_2020-04-30"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T10:41:23.797302"}}
+/type/edition /books/OL10314849M 7 2020-10-12T01:58:33.658205 {"publishers": ["University of Washington Press"], "identifiers": {"goodreads": ["2983964"], "librarything": ["1137395"]}, "subtitle": "Germany and the Reconstruction of Postcommunist Societies (Jackson School Publications in International Studies)", "weight": "10.4 ounces", "covers": [5051378, 3808745], "physical_format": "Hardcover", "lc_classifications": ["JSI"], "latest_revision": 7, "key": "/books/OL10314849M", "contributions": ["Henry M. Jackson School of International Studies (Corporate Author)", "Deutscher Akademischer Austauschdienst (Corporate Author)", "Stephen E. Hanson (Editor)", "Willfried Spohn (Editor)"], "subjects": ["Political structure & processes", "Contemporary Politics - Europe", "Politics / Current Events", "Politics/International Relations", "Political Process - General", "1989-", "Europe", "Nationalism", "Politics and government", "Post-communism"], "isbn_13": ["9780295974606"], "source_records": ["bwb:9780295974606"], "title": "Can Europe Work?", "number_of_pages": 238, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0295974605"], "publish_date": "October 1995", "last_modified": {"type": "/type/datetime", "value": "2020-10-12T01:58:33.658205"}, "works": [{"key": "/works/OL21219633W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.4 x 6.2 x 1 inches", "revision": 7}
+/type/edition /books/OL10314932M 10 2021-09-18T23:07:10.846467 {"publishers": ["University of Washington Press"], "number_of_pages": 665, "subtitle": "Tlingit Culture and Russian Orthodox Christianity Through Two Centuries", "weight": "2.7 pounds", "covers": [2352363, 157318], "physical_format": "Hardcover", "lc_classifications": ["E99.T6 K339 1999", "E99.T6K339 1999"], "key": "/books/OL10314932M", "authors": [{"key": "/authors/OL955193A"}], "subjects": ["Anthropology", "Cultural studies", "Orthodox Churches", "20th century", "c 1700 to c 1800", "c 1800 to c 1900", "Eastern Christian Churches", "Native Americans - Northwest", "Religion", "Archaeology / Anthropology", "Anthropology - Cultural", "Christianity - Orthodox", "Native American", "Alaska", "Missions", "Rites and ceremonies", "Sitka", "Tlingit Indians"], "isbn_13": ["9780295978062"], "source_records": ["bwb:9780295978062", "marc:marc_loc_2016/BooksAll.2016.part27.utf8:42494648:1048", "ia:memoryeternaltli0000kans"], "title": "Memory Eternal", "lccn": ["98052344"], "identifiers": {"goodreads": ["1421413"], "librarything": ["2818008"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0295978066"], "publish_date": "October 1999", "works": [{"key": "/works/OL4648472W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.3 x 6.4 x 2 inches", "ocaid": "memoryeternaltli0000kans", "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-09-18T23:07:10.846467"}}
+/type/edition /books/OL10314974M 7 2020-10-13T01:44:08.120268 {"publishers": ["University of Washington Press"], "physical_format": "Hardcover", "lc_classifications": [""], "latest_revision": 7, "key": "/books/OL10314974M", "authors": [{"key": "/authors/OL3417041A"}, {"key": "/authors/OL3417042A"}], "subjects": ["American - African American", "Individual Artist", "Art & Art Instruction"], "isbn_13": ["9780295979687"], "source_records": ["bwb:9780295979687"], "title": "The Complete Jacob Lawrence", "identifiers": {"librarything": ["4392356"], "goodreads": ["1671955"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0295979682"], "publish_date": "October 2000", "last_modified": {"type": "/type/datetime", "value": "2020-10-13T01:44:08.120268"}, "oclc_numbers": ["45193323"], "works": [{"key": "/works/OL21236258W"}], "type": {"key": "/type/edition"}, "revision": 7}
+/type/edition /books/OL10315254M 3 2010-04-16T07:18:25.582622 {"identifiers": {"goodreads": ["1294783"]}, "publishers": ["R.C. Gladwell"], "number_of_pages": 90, "subtitle": "Travel, Tourist, & Visitor Guide for the San Bernardino Mountains in Southern California, USA (2007 Edition)", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0296820075"], "type": {"key": "/type/edition"}, "title": "The Arrowhead Business Guide 2007: Your Essential Guide to Mountain-wide Businesses, Dining, Services, & Activities", "edition_name": "2007 edition", "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-16T07:18:25.582622"}, "latest_revision": 3, "key": "/books/OL10315254M", "authors": [{"key": "/authors/OL3417133A"}], "publish_date": "2007", "works": [{"key": "/works/OL9380411W"}], "contributions": ["Lake Arrowhead (Editor)", "Big Bear (Editor)", "Crestline (Editor)", "Running Springs (Editor)", "Blue Jay (Editor)", "Sky Forest (Editor)", "Lucia Ferreira (Editor)", "Don Ferreira (Editor)", "HAL (Editor)", "ABG (Editor)", "Lake House (Illustrator)"], "subjects": ["Travel - Americas"], "revision": 3}
+/type/edition /books/OL10315402M 5 2022-12-09T12:25:51.700811 {"publishers": ["Weidenfeld and Nicolson"], "subtitle": "The inside story", "isbn_10": ["0297771140"], "physical_format": "Unknown Binding", "lc_classifications": ["TL685.7 .K58 1976b"], "key": "/books/OL10315402M", "authors": [{"key": "/authors/OL1909379A"}], "isbn_13": ["9780297771142"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part10.utf8:24894306:640", "promise:bwb_daily_pallets_2020-11-19"], "title": "Concorde", "lccn": ["76367229"], "number_of_pages": 174, "languages": [{"key": "/languages/eng"}], "subjects": ["Concorde (Jet transports)"], "publish_date": "1976", "works": [{"key": "/works/OL6902696W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:KO-044-340"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T12:25:51.700811"}}
+/type/edition /books/OL10316264M 2 2008-09-04T05:07:14.67577 {"physical_format": "Hardcover", "subtitle": "1000 Years", "last_modified": {"type": "/type/datetime", "value": "2008-09-04T05:07:14.67577"}, "publishers": ["Weidenfeld Nicolson Illustrated"], "title": "London", "isbn_13": ["9780297833840"], "isbn_10": ["0297833847"], "key": "/books/OL10316264M", "authors": [{"key": "/authors/OL2525955A"}], "type": {"key": "/type/edition"}, "subjects": ["European history (ie other than Britain & Ireland)", "London, Greater London"], "revision": 2}
+/type/edition /books/OL10316679M 7 2022-02-26T19:01:17.851463 {"publishers": ["University of Wisconsin Press"], "number_of_pages": 560, "subtitle": "Proceedings of the Institute for the History Of Science, 1957", "weight": "13.4 ounces", "covers": [2353456, 158588], "physical_format": "Paperback", "key": "/books/OL10316679M", "authors": [{"key": "/authors/OL1014663A"}], "subjects": ["History of science", "History", "Science / History", "Science", "Science/Mathematics"], "edition_name": "New Ed edition", "languages": [{"key": "/languages/eng"}], "title": "Critical Problems in the History of Science", "identifiers": {"goodreads": ["2661946"], "librarything": ["1505686"]}, "isbn_13": ["9780299018740"], "isbn_10": ["0299018741"], "publish_date": "March 15, 1969", "works": [{"key": "/works/OL4814318W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.5 x 5.3 x 0.5 inches", "lc_classifications": ["Q125"], "source_records": ["bwb:9780299018740"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-26T19:01:17.851463"}}
+/type/edition /books/OL10316932M 6 2010-08-17T01:10:59.492410 {"publishers": ["University of Wisconsin Press"], "identifiers": {"goodreads": ["2171731"], "librarything": ["4667197"]}, "weight": "10.4 ounces", "covers": [2353520], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-08-17T01:10:59.492410"}, "latest_revision": 6, "key": "/books/OL10316932M", "authors": [{"key": "/authors/OL3417546A"}], "subjects": ["Literary studies: 19th century", "Literary Criticism"], "isbn_13": ["9780299119041"], "title": "Gothic Manners/Classic Engl Novel", "number_of_pages": 248, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0299119041"], "publish_date": "September 15, 1988", "works": [{"key": "/works/OL9380902W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.8 x 5.8 x 0.8 inches", "revision": 6}
+/type/edition /books/OL10317021M 8 2021-10-05T09:40:41.130539 {"publishers": ["University of Wisconsin Press"], "number_of_pages": 592, "subtitle": "Morality, Hunting and Identity Among the Huaulu of the Moluccas", "weight": "1.3 pounds", "covers": [2353656, 158893], "physical_format": "Paperback", "lc_classifications": ["DS646.66.H82 V35 1999", "DS646.66.H82V35 1999"], "key": "/books/OL10317021M", "authors": [{"key": "/authors/OL1237369A"}], "subjects": ["Ethnography", "Social Science", "Archaeology / Anthropology", "Sociology", "Indonesia", "Anthropology - Cultural", "Asia - General", "Ethnic identity", "Huaulu (Indonesian people)", "Hunting", "Psychology", "Taboo"], "isbn_13": ["9780299162146"], "source_records": ["amazon:0299162141", "marc:marc_loc_2016/BooksAll.2016.part27.utf8:39009950:1043", "bwb:9780299162146"], "title": "The Forest of Taboos", "lccn": ["98048152"], "identifiers": {"goodreads": ["1337252"], "librarything": ["1206948"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0299162141"], "publish_date": "May 2000", "works": [{"key": "/works/OL120510W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.8 x 6 x 1.1 inches", "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-10-05T09:40:41.130539"}}
+/type/edition /books/OL10317028M 8 2022-12-09T00:46:26.905777 {"publishers": ["University of Wisconsin Press"], "number_of_pages": 1099, "subtitle": " A Boyhood among the Nazis", "weight": "12.6 ounces", "covers": [2353669, 158908], "edition_name": "New Ed edition", "physical_format": "Paperback", "key": "/books/OL10317028M", "authors": [{"key": "/authors/OL21891A"}], "subjects": ["Biography: general", "European history: Second World War", "Fascism & Nazism", "Second World War, 1939-1945", "Germany - History - Third Reich (1933-1945)", "Biography & Autobiography", "Biography / Autobiography", "Biography/Autobiography", "General", "Europe - Germany", "Historical - General", "Biography", "Childhood and youth", "Germany", "Herbst, Jurgen", "National socialism", "Personal narratives, German", "World War, 1939-1945", "Youth"], "isbn_13": ["9780299164140"], "source_records": ["amazon:0299164144", "ia:requiemforgerman0000herb_i0x7", "promise:bwb_daily_pallets_2021-01-26"], "title": "Requiem for a German Past", "identifiers": {"goodreads": ["616334"], "librarything": ["564571"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0299164144"], "publish_date": "March 12, 2002", "works": [{"key": "/works/OL83438W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.7 x 6.5 x 0.6 inches", "ocaid": "requiemforgerman0000herb_i0x7", "lc_classifications": ["DD247.H365 A3 1999eb"], "local_id": ["urn:bwbsku:437-BAA-960"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T00:46:26.905777"}}
+/type/edition /books/OL10317123M 12 2022-02-25T12:30:05.381006 {"publishers": ["University of Wisconsin Press"], "number_of_pages": 176, "subtitle": "Fulfilling the Promise", "weight": "14.4 ounces", "isbn_10": ["0299180409"], "covers": [2353791, 159017], "local_id": ["urn:sfpl:31223062998209"], "physical_format": "Hardcover", "key": "/books/OL10317123M", "authors": [{"key": "/authors/OL1775894A"}, {"key": "/authors/OL443204A"}, {"key": "/authors/OL3417584A"}], "ocaid": "beyondearthdayfu00nels", "languages": [{"key": "/languages/eng"}], "source_records": ["amazon:0299180409", "marc:marc_ithaca_college/ic_marc.mrc:198945116:867", "marc:marc_loc_updates/v37.i36.records.utf8:5229897:1895", "ia:beyondearthdayfu00nels", "marc:marc_openlibraries_sanfranciscopubliclibrary/sfpl_chq_2018_12_24_run03.mrc:20626175:1656", "marc:marc_loc_2016/BooksAll.2016.part29.utf8:166106929:1895", "bwb:9780299180409"], "title": "Beyond Earth Day", "identifiers": {"librarything": ["2918918"], "goodreads": ["249722"]}, "isbn_13": ["9780299180409"], "edition_name": "1 edition", "subjects": ["Conservation of the environment", "Ecological Politics", "Nature", "Environmental Studies", "Nature/Ecology", "Development - Sustainable Development", "Environmental Science", "Science / Environmental Science", "Environmental Conservation & Protection - General", "Earth Day", "Environmentalism"], "publish_date": "October 4, 2002", "works": [{"key": "/works/OL16973378W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.1 x 6.1 x 0.7 inches", "lccn": ["2002002806"], "lc_classifications": ["GE195 .N45 2002", "GE195.N45 2002"], "latest_revision": 12, "revision": 12, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-25T12:30:05.381006"}}
+/type/edition /books/OL10317183M 10 2020-12-07T23:35:47.429933 {"publishers": ["Popular Press 2"], "identifiers": {"goodreads": ["3033725"], "librarything": ["371120"]}, "subtitle": "From the Renaissance to Cyberspace (Ray and Pat Browne Book)", "weight": "11.2 ounces", "covers": [5438155, 5435751, 5051953], "physical_format": "Paperback", "key": "/books/OL10317183M", "authors": [{"key": "/authors/OL2463096A"}], "subjects": ["Cultural studies", "Social Science", "Art & Art Instruction", "Sociology", "Criticism", "Essays", "History - General", "Social Science / Popular Culture", "Popular Culture - General", "Arts, European", "Dead in art", "Dead in literature"], "edition_name": "1st edition", "languages": [{"key": "/languages/eng"}], "source_records": ["amazon:0299197948", "marc:marc_oregon_summit_records/catalog_files/washs02192008.mrc_revrev.mrc:1741540967:2088", "marc:marc_university_of_toronto/uoft.marc:4768081138:600", "marc:bcl_marc/bcl_open.04.mrc:390745311:1036", "marc:marc_loc_2016/BooksAll.2016.part30.utf8:172782865:1189"], "title": "Images of the Corpse", "number_of_pages": 264, "isbn_13": ["9780299197940"], "isbn_10": ["0299197948"], "publish_date": "April 15, 2004", "works": [{"key": "/works/OL221980W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.7 inches", "lccn": ["2003020575"], "lc_classifications": ["NX650.D4 I46 2004"], "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-07T23:35:47.429933"}}
+/type/edition /books/OL10317457M 7 2022-12-07T13:29:30.665294 {"publishers": ["Yale University Press"], "subtitle": "July 1, 1753 through March 31, 1755 (The Papers of Benjamin Franklin Series)", "weight": "2.6 pounds", "physical_format": "Hardcover", "lc_classifications": [""], "key": "/books/OL10317457M", "authors": [{"key": "/authors/OL26170A"}], "contributions": ["Leonard W. Labaree (Editor)"], "subjects": ["American history: c 1500 to c 1800", "Other prose: 16th to 18th centuries", "POLITICS & GOVERNMENT", "USA", "c 1700 to c 1800", "General", "Biography & Autobiography / General", "Biography / Autobiography"], "isbn_13": ["9780300006544"], "source_records": ["bwb:9780300006544", "promise:bwb_daily_pallets_2022-03-17"], "title": "The Papers of Benjamin Franklin, Vol. 5: Volume 5", "number_of_pages": 601, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0300006543"], "publish_date": "September 10, 1962", "works": [{"key": "/works/OL2514707W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6.3 x 1.8 inches", "local_id": ["urn:bwbsku:P7-DYB-101"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-07T13:29:30.665294"}}
+/type/edition /books/OL10317557M 11 2022-12-31T09:41:14.398894 {"publishers": ["Yale University Press"], "number_of_pages": 400, "isbn_10": ["0300011105"], "covers": [9843039], "physical_format": "Hardcover", "lc_classifications": ["QC16.R8 A43", "QC16.R8A/"], "key": "/books/OL10317557M", "authors": [{"key": "/authors/OL3417680A"}, {"key": "/authors/OL3417681A"}], "ocaid": "rutherfordboltwo0000ruth", "subjects": ["Physicists", "Correspondence", "Radioactivity"], "isbn_13": ["9780300011104"], "source_records": ["marc:marc_openlibraries_phillipsacademy/PANO_FOR_IA_05072019.mrc:51419418:1170", "marc:marc_openlibraries_sanfranciscopubliclibrary/sfpl_chq_2018_12_24_run01.mrc:185809903:1648", "ia:rutherfordboltwo0000ruth", "bwb:9780300011104", "marc:marc_loc_2016/BooksAll.2016.part11.utf8:76474086:828", "marc:marc_columbia/Columbia-extract-20221130-011.mrc:191603893:1800"], "title": "Letters on Radioactivity (History of Science & Medicine)", "lccn": ["78081411"], "identifiers": {"goodreads": ["4790809"]}, "languages": [{"key": "/languages/eng"}], "local_id": ["urn:phillips:31867000075643", "urn:sfpl:31223001596171"], "publish_date": "November 1969", "works": [{"key": "/works/OL19666981W"}], "type": {"key": "/type/edition"}, "oclc_numbers": ["49031"], "latest_revision": 11, "revision": 11, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-31T09:41:14.398894"}}
+/type/edition /books/OL10317649M 7 2021-08-18T13:19:20.519900 {"publishers": ["Yale University Press"], "subtitle": "January 1 through December 31, 1772 (The Papers of Benjamin Franklin Series)", "weight": "2.3 pounds", "physical_format": "Hardcover", "lc_classifications": ["E302.6.F75"], "key": "/books/OL10317649M", "authors": [{"key": "/authors/OL26170A"}], "contributions": ["William B. Willcox (Editor)"], "subjects": ["American history: c 1500 to c 1800", "USA", "General", "Biography & Autobiography / General", "Biography / Autobiography"], "isbn_13": ["9780300018653"], "source_records": ["bwb:9780300018653", "ia:papersofbenjamin0019unse"], "title": "The Papers of Benjamin Franklin, Vol. 19: Volume 19", "number_of_pages": 529, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0300018657"], "publish_date": "September 10, 1976", "works": [{"key": "/works/OL2514685W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.9 x 6.3 x 1.8 inches", "covers": [11692223], "ocaid": "papersofbenjamin0019unse", "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-08-18T13:19:20.519900"}}
+/type/edition /books/OL10317872M 5 2020-08-20T07:26:22.873523 {"publishers": ["Yale University Press"], "identifiers": {"goodreads": ["4871190"]}, "subtitle": "Alfred Stieglitz Talking", "source_records": ["bwb:9780300035759"], "title": "Seligmann", "type": {"key": "/type/edition"}, "number_of_pages": 150, "last_modified": {"type": "/type/datetime", "value": "2020-08-20T07:26:22.873523"}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780300035759"], "isbn_10": ["0300035756"], "publish_date": "July 1, 1981", "key": "/books/OL10317872M", "authors": [{"key": "/authors/OL3417730A"}], "latest_revision": 5, "works": [{"key": "/works/OL9381104W"}], "physical_format": "Hardcover", "revision": 5}
+/type/edition /books/OL10318008M 10 2022-12-10T15:18:11.827419 {"identifiers": {"goodreads": ["4753117"]}, "title": "Melanie Klein and Critical Social Theory", "subtitle": "An Account of Politics, Art, and Reason Based on Her Psychoanalytic Theory", "authors": [{"key": "/authors/OL386026A"}], "publish_date": "September 10, 1990", "publishers": ["Yale University Press"], "weight": "1.4 pounds", "isbn_10": ["0300045069"], "physical_format": "Hardcover", "lc_classifications": ["BF175.4.C84 A4 1989", "BF175.4.C84A4 1989"], "isbn_13": ["9780300045062"], "source_records": ["bwb:9780300045062", "marc:marc_loc_2016/BooksAll.2016.part19.utf8:93455030:925", "promise:bwb_daily_pallets_2022-09-07", "ia:melaniekleincrit0000alfo"], "lccn": ["89008903"], "languages": [{"key": "/languages/eng"}], "subjects": ["Psychology", "Movements - Psychoanalysis", "Psychology & Psychiatry / General", "Psychoanalysis", "Literature - Classics / Criticism", "20th century", "Civilization, Modern", "Klein, Melanie", "Psychoanalysis and culture", "Psychological aspects", "Reparation (Psychoanalysis)", "Social aspects"], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6.5 x 0.8 inches", "local_id": ["urn:bwbsku:O8-CIW-889"], "ocaid": "melaniekleincrit0000alfo", "key": "/books/OL10318008M", "number_of_pages": 256, "works": [{"key": "/works/OL2648011W"}], "covers": [13032750], "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T15:18:11.827419"}}
+/type/edition /books/OL10318180M 8 2020-11-17T01:36:51.363569 {"publishers": ["Yale University Press"], "identifiers": {"goodreads": ["646869"]}, "subtitle": "Models, Applications, and Comparisons", "weight": "1.3 pounds", "isbn_10": ["0300057598"], "covers": [2354365], "physical_format": "Hardcover", "lc_classifications": ["H97.E86 1994", "H97 .E86 1994"], "latest_revision": 8, "key": "/books/OL10318180M", "ocaid": "europeancommunit0000unse_n4i8", "contributions": ["Bruce Bueno de Mesquita (Editor)", "Frans N. Stokman (Editor)"], "isbn_13": ["9780300057591"], "source_records": ["ia:europeancommunit0000unse_n4i8", "bwb:9780300057591", "marc:marc_loc_2016/BooksAll.2016.part22.utf8:183791139:896"], "title": "European Community Decision Making", "lccn": ["93043875"], "number_of_pages": 272, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "subjects": ["EU & European institutions", "Political science & theory", "European Community", "Public Policy", "Politics / Current Events", "Politics/International Relations", "EU (European Union)", "General", "Political Science / General", "Decision making", "European Economic Community co", "European Economic Community countries", "Political planning"], "publish_date": "June 22, 1994", "last_modified": {"type": "/type/datetime", "value": "2020-11-17T01:36:51.363569"}, "works": [{"key": "/works/OL20630264W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.6 x 6.4 x 0.9 inches", "revision": 8}
+/type/edition /books/OL10318397M 9 2022-06-18T13:30:54.087416 {"publishers": ["Yale University Press"], "number_of_pages": 302, "weight": "15.5 ounces", "covers": [2354690, 160535], "physical_format": "Hardcover", "lc_classifications": ["JC480 .H35 1999", "JC480.H35 1999"], "key": "/books/OL10318397M", "authors": [{"key": "/authors/OL1857952A"}], "subjects": ["Political ideologies", "Political science & theory", "Political structures: totalitarianism & dictatorship", "Liberalism", "Political Philosophy", "Political Science", "Philosophy", "Politics/International Relations", "General", "Political", "Philosophy / Political", "Totalitarianism"], "isbn_13": ["9780300071801"], "source_records": ["bwb:9780300071801", "marc:marc_loc_2016/BooksAll.2016.part28.utf8:3704200:794"], "title": "Totalitarianism and the Modern Conception of Politics", "lccn": ["99034499"], "identifiers": {"goodreads": ["1304645"], "librarything": ["105174"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0300071809"], "publish_date": "January 11, 2000", "works": [{"key": "/works/OL6796216W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.6 x 5.8 x 0.9 inches", "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-18T13:30:54.087416"}}
+/type/edition /books/OL10318893M 11 2023-01-07T09:46:12.597432 {"publishers": ["Yale University Press"], "number_of_pages": 278, "subtitle": "Vico's New Science and Finnegan's Wake", "weight": "1 pounds", "covers": [2355316], "physical_format": "Hardcover", "lc_classifications": ["B3581.P73V47 2003", "B3581.P73 V47 2003"], "key": "/books/OL10318893M", "authors": [{"key": "/authors/OL384822A"}], "ocaid": "knowledgethingsh00vere", "subjects": ["Literary studies: general", "Novels, other prose & writers: from c 1900 -", "Western philosophy, c 1600 to c 1800", "Philosophy", "English", "English, Irish, Scottish, Welsh", "History & Surveys - Modern", "Philosophy / Modern", "General", "1668-1744", "Myth", "Principi di una scienza nuova", "Social sciences", "Vico, Giambattista,"], "isbn_13": ["9780300099584"], "source_records": ["ia:knowledgethingsh00vere", "bwb:9780300099584", "marc:marc_loc_2016/BooksAll.2016.part30.utf8:190336031:844", "marc:marc_columbia/Columbia-extract-20221130-009.mrc:184775389:2415"], "title": "Knowledge of Things Human and Divine", "identifiers": {"goodreads": ["218352"], "librarything": ["1215252"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0300099584"], "publish_date": "October 1, 2003", "works": [{"key": "/works/OL2640656W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.5 x 6.2 x 0.9 inches", "lccn": ["2003050052"], "oclc_numbers": ["52001674"], "latest_revision": 11, "revision": 11, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2023-01-07T09:46:12.597432"}}
+/type/edition /books/OL10318926M 6 2021-10-04T12:03:17.969765 {"publishers": ["Yale University Press"], "physical_format": "Hardcover", "source_records": ["bwb:9780300100976"], "title": "The People's Revolt", "identifiers": {"goodreads": ["429043"]}, "isbn_13": ["9780300100976"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0300100973"], "publish_date": "September 10, 2007", "key": "/books/OL10318926M", "authors": [{"key": "/authors/OL241118A"}], "works": [{"key": "/works/OL2002225W"}], "type": {"key": "/type/edition"}, "lc_classifications": ["JK2374.T4C36 2020"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-10-04T12:03:17.969765"}}
+/type/edition /books/OL10318986M 14 2022-12-28T05:48:48.355724 {"publishers": ["Yale University Press"], "number_of_pages": 400, "weight": "1.9 pounds", "covers": [2355407], "physical_format": "Hardcover", "lc_classifications": ["TH1111.U47 2006", "TH1111 .U47 2007"], "key": "/books/OL10318986M", "authors": [{"key": "/authors/OL3417944A"}], "ocaid": "romanwoodworking00ulri", "subjects": ["Furniture & cabinetmaking", "History of art: BCE to c 500 CE, ancient & classical world", "History", "House & Home", "History: World", "Ancient Rome", "Ancient, Classical & Medieval", "Woodworking", "Literary Collections / Ancient, Classical & Medieval", "Ancient - Rome", "Woodwork - General", "Building, Wooden", "Carpentry", "Rome", "To 1500", "Woodwork"], "isbn_13": ["9780300103410"], "source_records": ["amazon:0300103417", "marc:marc_loc_updates/v35.i11.records.utf8:8275509:1305", "marc:marc_loc_updates/v35.i13.records.utf8:6636742:1305", "ia:romanwoodworking00ulri", "bwb:9780300103410", "marc:marc_loc_2016/BooksAll.2016.part33.utf8:95229771:1305", "marc:marc_columbia/Columbia-extract-20221130-013.mrc:23405707:2054"], "title": "Roman Woodworking", "identifiers": {"librarything": ["2500118"], "goodreads": ["1433195"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0300103417"], "publish_date": "January 2, 2007", "works": [{"key": "/works/OL9381284W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.1 x 7 x 1.4 inches", "lccn": ["2006003784"], "oclc_numbers": ["64083838"], "latest_revision": 14, "revision": 14, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-28T05:48:48.355724"}}
+/type/edition /books/OL10319537M 11 2022-12-27T19:35:55.848042 {"identifiers": {"librarything": ["1144238"], "goodreads": ["1366924"], "wikidata": ["Q19944777"]}, "title": "A Biographical Dictionary of British Architects, 1600-1840", "subtitle": "Fourth Edition (Paul Mellon Centre for Studies in Britis)", "authors": [{"key": "/authors/OL2778489A"}], "publish_date": "April 28, 2008", "publishers": ["Paul Mellon Centre BA"], "weight": "1.4 pounds", "covers": [5051716], "physical_format": "Hardcover", "lc_classifications": ["NA996", "NA996 .C6 2007"], "subjects": ["Dictionaries of biography (Who's Who)", "c 1600 to c 1700", "c 1700 to c 1800", "c 1800 to c 1900", "Biography And Autobiography", "History Of Architecture", "Architecture", "Biography / Autobiography", "British Isles", "Artists, Architects, Photographers", "Reference", "History / General", "History - General", "Architects", "Biography", "Dictionaries", "Great Britain"], "edition_name": "4 edition", "languages": [{"key": "/languages/eng"}], "source_records": ["bwb:9780300125085", "marc:marc_loc_2016/BooksAll.2016.part34.utf8:130782251:827", "marc:marc_columbia/Columbia-extract-20221130-014.mrc:119660530:2726"], "isbn_13": ["9780300125085"], "isbn_10": ["0300125089"], "type": {"key": "/type/edition"}, "physical_dimensions": "8.5 x 5.5 x 0.8 inches", "lccn": ["2007024026"], "key": "/books/OL10319537M", "number_of_pages": 1264, "works": [{"key": "/works/OL8347220W"}], "oclc_numbers": ["84996007"], "latest_revision": 11, "revision": 11, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-27T19:35:55.848042"}}
+/type/edition /books/OL10319870M 5 2020-05-21T16:04:49.665267 {"publishers": ["Sterling*+ Publishing Company"], "number_of_pages": 139, "source_records": ["ia:traditionrevolti0000unse"], "title": "Tradition and Revolt the Rise and Fall of Em", "physical_format": "Hardcover", "identifiers": {"librarything": ["6167067"]}, "last_modified": {"type": "/type/datetime", "value": "2020-05-21T16:04:49.665267"}, "covers": [9913919], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780304307234"], "isbn_10": ["0304307238"], "latest_revision": 5, "key": "/books/OL10319870M", "authors": [{"key": "/authors/OL19785A"}], "ocaid": "traditionrevolti0000unse", "works": [{"key": "/works/OL15212474W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10320423M 8 2022-12-09T13:02:21.452202 {"publishers": ["Cassell Academic"], "number_of_pages": 128, "weight": "5.6 ounces", "physical_format": "Paperback", "key": "/books/OL10320423M", "authors": [{"key": "/authors/OL216672A"}], "subjects": ["Abuse - General", "Child abuse", "Family / Parenting / Childbirth", "Education"], "isbn_13": ["9780304326631"], "title": "The Facts About Child Physical Abuse (The Facts About Series)", "identifiers": {"goodreads": ["308879"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0304326631"], "publish_date": "February 1994", "oclc_numbers": ["59851964"], "works": [{"key": "/works/OL1806137W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.8 x 5.5 x 0.5 inches", "covers": [11630126], "ocaid": "factsaboutchildp0000gill", "lc_classifications": ["HV713 .G53 1994x"], "source_records": ["ia:factsaboutchildp0000gill", "promise:bwb_daily_pallets_2020-11-19"], "local_id": ["urn:bwbsku:KO-200-007"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T13:02:21.452202"}}
+/type/edition /books/OL10320924M 8 2022-12-04T23:25:09.014023 {"publishers": ["Cassell PLC"], "identifiers": {"librarything": ["9024239"], "goodreads": ["3384445"]}, "subtitle": "German (Cassell Language Guides)", "covers": [5425318, 5052038], "physical_format": "Hardcover", "key": "/books/OL10320924M", "authors": [{"key": "/authors/OL836529A"}], "subjects": ["German", "Language teaching & learning material & coursework", "Foreign Language - Dictionaries / Phrase Books", "Language"], "isbn_13": ["9780304340491"], "title": "Cassell Language Guides", "number_of_pages": 592, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0304340499"], "publish_date": "March 1992", "oclc_numbers": ["27429371"], "works": [{"key": "/works/OL4304540W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:KR-056-641"], "source_records": ["promise:bwb_daily_pallets_2022-07-11"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T23:25:09.014023"}}
+/type/edition /books/OL10320955M 6 2012-06-19T04:46:22.042380 {"publishers": ["Cassell"], "identifiers": {"librarything": ["6337285"], "goodreads": ["3223907"]}, "series": ["Cassell Film Studies"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2012-06-19T04:46:22.042380"}, "latest_revision": 6, "key": "/books/OL10320955M", "authors": [{"key": "/authors/OL296542A"}], "subjects": ["20th century", "Europe", "Films, cinema", "Reference works", "c 1800 to c 1900", "Film Criticism", "Cinema/Film: Book"], "isbn_13": ["9780304341641"], "classifications": {}, "title": "The Bfi Companion to European Cinema", "number_of_pages": 496, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0304341649"], "publish_date": "January 1995", "works": [{"key": "/works/OL2270974W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL10321363M 10 2022-12-17T12:36:07.577779 {"publishers": ["Cassell"], "number_of_pages": 112, "subtitle": "Instant Reference to More Than 250 Plants", "weight": "1.6 pounds", "isbn_10": ["0304356026"], "covers": [2356596, 163442], "physical_format": "Hardcover", "key": "/books/OL10321363M", "authors": [{"key": "/authors/OL231153A"}], "ocaid": "cassellsdirector0000cour", "contributions": ["Lucy Huntington (Editor)"], "isbn_13": ["9780304356027"], "source_records": ["ia:cassellsdirector0000cour", "marc:marc_loc_2016/BooksAll.2016.part01.utf8:214745951:1104", "bwb:9780304356027"], "title": "Courtyard and Patio Plants", "identifiers": {"goodreads": ["5149156"], "librarything": ["1590522"]}, "languages": [{"key": "/languages/eng"}], "subjects": ["Greenhouses, conservatories, patios", "Gardening", "Gardening / Horticulture", "Gardening/Plants", "Garden Design", "Landscape", "Ornamental Plants", "BG-JUVENILE PROP - BG-JUVY ACTIVITY", "Gardening / Reference", "Reference"], "publish_date": "December 2000", "oclc_numbers": ["44058833"], "works": [{"key": "/works/OL1927817W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.6 x 8.3 x 0.6 inches", "lc_classifications": ["SB473.2.C668 2000"], "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T12:36:07.577779"}}
+/type/edition /books/OL10321912M 3 2011-04-27T18:38:53.410190 {"publishers": ["Continuum International Publishing Group Ltd."], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T18:38:53.410190"}, "title": "Principles of Business for CXC", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 192, "edition_name": "4Rev Ed edition", "isbn_13": ["9780304705092"], "isbn_10": ["0304705098"], "publish_date": "March 18, 1999", "key": "/books/OL10321912M", "authors": [{"key": "/authors/OL3418212A"}], "latest_revision": 3, "oclc_numbers": ["40645692"], "works": [{"key": "/works/OL9381558W"}], "type": {"key": "/type/edition"}, "subjects": ["Business & Management", "Business studies", "Economics"], "revision": 3}
+/type/edition /books/OL10322019M 6 2020-10-13T23:44:10.974595 {"publishers": ["Cassell"], "number_of_pages": 212, "subtitle": "The story of the British sailor", "physical_format": "Unknown Binding", "lc_classifications": ["VA454 .L25"], "latest_revision": 6, "key": "/books/OL10322019M", "authors": [{"key": "/authors/OL67719A"}], "subjects": ["Great Britain", "Sailors"], "isbn_13": ["9780304932740"], "source_records": ["amazon:0304932744", "marc:marc_upei/marc-for-openlibrary-bigset.mrc:123803832:632", "marc:marc_loc_2016/BooksAll.2016.part10.utf8:164680499:664"], "title": "Jack Tar", "lccn": ["77386824"], "identifiers": {"goodreads": ["4617012"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0304932744"], "publish_date": "1969", "last_modified": {"type": "/type/datetime", "value": "2020-10-13T23:44:10.974595"}, "works": [{"key": "/works/OL804459W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL10322590M 3 2011-04-27T10:03:03.082701 {"publishers": ["Springer"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T10:03:03.082701"}, "title": "Anisotropy in Single-Crystal Refractory Compounds", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780306370380"], "edition_name": "1 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0306370387"], "publish_date": "December 31, 1995", "key": "/books/OL10322590M", "authors": [{"key": "/authors/OL3418873A"}], "latest_revision": 3, "oclc_numbers": ["441394"], "works": [{"key": "/works/OL9382356W"}], "type": {"key": "/type/edition"}, "subjects": ["Metallurgy", "Technology / Metallurgy", "Technology & Industrial Arts"], "revision": 3}
+/type/edition /books/OL10322964M 7 2022-10-30T09:43:52.851229 {"publishers": ["Springer"], "number_of_pages": 423, "isbn_10": ["0306404575"], "covers": [6308044], "physical_format": "Hardcover", "lc_classifications": ["TK3226 .B77 1979"], "key": "/books/OL10322964M", "authors": [{"key": "/authors/OL3418952A"}], "edition_name": "1 edition", "languages": [{"key": "/languages/eng"}], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part12.utf8:154621566:1127", "amazon:0306404575"], "title": "Surges in High-Voltage Networks", "lccn": ["80016117"], "identifiers": {"goodreads": ["3752820"]}, "isbn_13": ["9780306404573"], "subjects": ["Electricity", "Technology / Engineering / Electrical", "Electric Power Systems", "Technology & Industrial Arts", "Congresses", "Electric lines", "Electric substations", "Protection", "Transients (Electricity)"], "publish_date": "June 1, 1980", "works": [{"key": "/works/OL9382448W"}], "type": {"key": "/type/edition"}, "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-30T09:43:52.851229"}}
+/type/edition /books/OL10323046M 8 2021-05-08T10:41:15.091130 {"publishers": ["Springer"], "number_of_pages": 232, "weight": "12 ounces", "isbn_10": ["0306406772"], "physical_format": "Hardcover", "lc_classifications": ["BF575.S75 E88", "BF575.S75 E88x"], "key": "/books/OL10323046M", "authors": [{"key": "/authors/OL3286836A"}, {"key": "/authors/OL3419072A"}], "subjects": ["Physiological & neuro-psychology", "Diseases", "General", "Psychology & Psychiatry / General", "Psychology", "Stress (Physiology)", "Stress (Psychology)", "Stress, Psychological", "Therapy"], "edition_name": "1 edition", "languages": [{"key": "/languages/eng"}], "source_records": ["marc:marc_claremont_school_theology/CSTMARC1_barcode.mrc:115794311:2785", "marc:marc_loc_2016/BooksAll.2016.part12.utf8:164227365:906", "marc:marc_claremont_school_theology/CSTMARC1_multibarcode.mrc:115956600:2785", "ia:naturetreatmento0000ever"], "title": "The Nature and Treatment of the Stress Response", "lccn": ["80028550"], "identifiers": {"goodreads": ["3591305"]}, "isbn_13": ["9780306406775"], "local_id": ["urn:cst:10011438510"], "publish_date": "March 31, 1981", "works": [{"key": "/works/OL1717054W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.7 inches", "covers": [10980836], "ocaid": "naturetreatmento0000ever", "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-05-08T10:41:15.091130"}}
+/type/edition /books/OL10323660M 4 2022-12-09T05:29:18.303656 {"publishers": ["Springer"], "weight": "1.5 pounds", "edition_name": "1 edition", "physical_format": "Hardcover", "key": "/books/OL10323660M", "authors": [{"key": "/authors/OL3303049A"}], "subjects": ["Science / Biology", "Life Sciences - Biology - General", "Organic Evolution", "Science"], "isbn_13": ["9780306421341"], "title": "Evolutionary Biology", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0306421348"], "publish_date": "January 1, 1986", "physical_dimensions": "9.5 x 6.5 x 1.2 inches", "works": [{"key": "/works/OL9246106W"}], "type": {"key": "/type/edition"}, "covers": [10994581], "ocaid": "evolutionarybiol0000unse_i7n9", "lc_classifications": ["QH366.A1 E9 v.19"], "source_records": ["ia:evolutionarybiol0000unse_i7n9", "promise:bwb_daily_pallets_2020-12-22"], "local_id": ["urn:bwbsku:P6-AVA-885"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T05:29:18.303656"}}
+/type/edition /books/OL10323677M 5 2020-11-06T07:29:17.188015 {"publishers": ["Springer"], "identifiers": {"goodreads": ["1972715"]}, "subtitle": "Principles, Practices, and Materials (Microdevices)", "weight": "4 pounds", "isbn_10": ["0306421852"], "edition_name": "1 edition", "physical_format": "Paperback", "lc_classifications": ["TK7871.85 .M583 1988"], "latest_revision": 5, "key": "/books/OL10323677M", "authors": [{"key": "/authors/OL1076195A"}], "isbn_13": ["9780306421853"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part18.utf8:14376945:680"], "title": "Semiconductor Lithography", "lccn": ["87029077"], "number_of_pages": 952, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "subjects": ["Electronic devices & materials", "Semiconductors", "Technology & Industrial Arts", "Science/Mathematics", "Electricity", "Electronics - Semiconductors", "Engineering - Electrical & Electronic", "Optics", "Technology / Engineering / Electrical", "Microlithography", "Photoresists"], "publish_date": "December 31, 1987", "last_modified": {"type": "/type/datetime", "value": "2020-11-06T07:29:17.188015"}, "works": [{"key": "/works/OL4980162W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.5 x 7 x 2 inches", "revision": 5}
+/type/edition /books/OL10323680M 8 2021-01-23T13:15:11.888440 {"publishers": ["Springer"], "isbn_10": ["0306422018"], "covers": [9446310], "physical_format": "Hardcover", "lc_classifications": ["QD146-197QD415-436", "QD474 .R38 1986"], "key": "/books/OL10323680M", "authors": [{"key": "/authors/OL3419383A"}], "ocaid": "reactionsofcoord0001unse", "edition_name": "1 edition", "languages": [{"key": "/languages/eng"}], "source_records": ["ia:reactionsofcoord0001unse", "bwb:9780306422010", "marc:marc_loc_2016/BooksAll.2016.part16.utf8:94929358:682", "ia:reactionsofcoord0000unse"], "title": "Reactions of Coordinated Ligands", "lccn": ["85024443"], "number_of_pages": 1064, "isbn_13": ["9780306422010"], "subjects": ["Inorganic chemistry", "Coordination Chemistry", "Science", "Science/Mathematics", "Chemistry - Organic", "Chemistry - Physical & Theoretical", "Science / Chemistry / Inorganic", "Chemistry - Inorganic", "Coordination compounds", "Ligands", "Reactivity (Chemistry)"], "publish_date": "September 30, 1987", "works": [{"key": "/works/OL9382799W"}], "type": {"key": "/type/edition"}, "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-01-23T13:15:11.888440"}}
+/type/edition /books/OL1032408M 5 2020-11-17T19:59:38.911200 {"publishers": ["Ediciones Toledo", "Direccio\u0301n General de Culturas Populares", "Consejo Nacional para la Cultura y las Artes"], "isbn_10": ["9682924715"], "series": ["Serie Testimonios", "Serie Testimonios (Mexico. Direccio\u0301n General de Culturas Populares)"], "covers": [3866406, -1], "lc_classifications": ["F1234.C49 R45 1989"], "latest_revision": 5, "key": "/books/OL1032408M", "publish_places": ["San Angel, Me\u0301xico, D.F"], "contributions": ["Cruz, Vi\u0301ctor de la, 1948-"], "subject_time": ["Revolution, 1910-1920."], "pagination": "81 p. ;", "source_records": ["marc:marc_records_scriblio_net/part24.dat:1696056:1095", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:63215672:1103"], "title": "Relatos sobre el general Charis", "lccn": ["93225564"], "notes": {"type": "/type/text", "value": "Some texts translated from Zapotec; includes poems in Zapotec with parallel translation."}, "number_of_pages": 81, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/spa"}], "subjects": ["Charis Castro, Heliodoro, 1896-1964.", "Generals -- Mexico.", "Mexico -- History -- Revolution, 1910-1920."], "publish_date": "1989", "publish_country": "mx ", "last_modified": {"type": "/type/datetime", "value": "2020-11-17T19:59:38.911200"}, "subject_place": ["Mexico", "Mexico."], "by_statement": "[traduccio\u0301n, edicio\u0301n y revisio\u0301n, Vi\u0301ctor de la Cruz].", "oclc_numbers": ["23029624"], "works": [{"key": "/works/OL19418533W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10324117M 9 2021-05-08T19:34:06.326073 {"publishers": ["Springer"], "identifiers": {"goodreads": ["4386127"]}, "covers": [5053559, 4084240], "physical_format": "Hardcover", "lc_classifications": ["QD450-882", "QD549 .S985 1987"], "key": "/books/OL10324117M", "authors": [{"key": "/authors/OL2870778A"}], "subjects": ["Physical chemistry", "Environmental Engineering (Specific Aspects)", "Science", "Science/Mathematics", "Science / Chemistry / Physical & Theoretical", "Chemistry - Physical & Theoretical", "Colloids", "Congresses", "Particles"], "edition_name": "1 edition", "languages": [{"key": "/languages/eng"}], "source_records": ["bwb:9780306431517", "marc:marc_loc_2016/BooksAll.2016.part19.utf8:93167687:1138", "ia:particlesingases0000symp"], "title": "Particles in Gases and Liquids 1: Detection, Characterization, and Control (Symposium on Particles in Gases and Liquids: Detection, Characterization, and Control//Particles in Gases and Liquids)", "lccn": ["89008550"], "number_of_pages": 312, "isbn_13": ["9780306431517"], "isbn_10": ["0306431513"], "publish_date": "June 30, 1989", "works": [{"key": "/works/OL8561692W"}], "type": {"key": "/type/edition"}, "ocaid": "particlesingases0000symp", "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-05-08T19:34:06.326073"}}
+/type/edition /books/OL10324924M 9 2023-01-06T18:18:38.271676 {"publishers": ["Springer"], "identifiers": {"goodreads": ["4523320"]}, "subtitle": "Molecular Determinants of Microbial Immunity", "weight": "1.4 pounds", "isbn_10": ["0306460335"], "covers": [5053417, 3737852], "physical_format": "Hardcover", "lc_classifications": ["QR186 .M42 1998"], "key": "/books/OL10324924M", "ocaid": "mechanismsoflymp00sudh", "contributions": ["Sudhir Gupta (Editor)", "Alan Sher (Editor)", "Rafi Ahmed (Editor)"], "languages": [{"key": "/languages/eng"}], "source_records": ["ia:mechanismsoflymp00sudh", "marc:marc_records_scriblio_net/part27.dat:89239490:1283", "ia:mechanismsoflymp0452unse", "marc:marc_loc_2016/BooksAll.2016.part27.utf8:32402186:1283", "marc:marc_columbia/Columbia-extract-20221130-009.mrc:72191295:5280"], "title": "Mechanisms of Lymphocyte Activation and Immune Regulation Vii", "lccn": ["98040455"], "number_of_pages": 223, "isbn_13": ["9780306460333"], "edition_name": "1 edition", "subjects": ["Mechanisms Of Immune Response", "Science", "Medical / Nursing", "Medical", "Science/Mathematics", "Anatomy", "Immunology", "Microbiology", "Medical / Immunology", "Life Sciences - Biology - Microbiology", "Bacterial diseases", "Congresses", "Immune response", "Immunological aspects", "Natural immunity", "Regulation"], "publish_date": "September 30, 1998", "works": [{"key": "/works/OL17817169W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.2 x 6.8 x 0.8 inches", "oclc_numbers": ["39700040"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2023-01-06T18:18:38.271676"}}
+/type/edition /books/OL10325698M 6 2020-05-16T07:20:14.783599 {"publishers": ["Western Pub. Co"], "covers": [9542800], "physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2020-05-16T07:20:14.783599"}, "latest_revision": 6, "key": "/books/OL10325698M", "authors": [{"key": "/authors/OL1241763A"}], "ocaid": "rainbowbritebro00lesl", "subjects": ["Deer", "Fiction", "Rainbow"], "languages": [{"key": "/languages/eng"}], "source_records": ["ia:rainbowbritebro00lesl"], "title": "Rainbow Brite and the Brook Meadow deer (A Golden book)", "identifiers": {"goodreads": ["1232530"], "librarything": ["1914738"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780307003270"], "isbn_10": ["0307003272"], "publish_date": "1984", "works": [{"key": "/works/OL17034224W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL1032608M 5 2020-11-17T20:02:06.777881 {"publishers": ["Instituto Nacional de Antropologi\u0301a e Historia"], "isbn_invalid": ["9682937505", "9682937525", "9682937505"], "description": {"type": "/type/text", "value": "\"Vol. 2 presents descriptions and analysis of artifacts from excavations at the site of Ojo de Agua, occupied ca. AD 1200-1640. Vol. 3 describes archaeological sites of the Curcurpe area, including artifacts from El Ranchito, and surveys of the Ri\u0301os San Miguel, Dolores, Sarachic, Remedios, Coco\u0301spera, Bacanuchi, and San Pedro. Other articles discuss the ethnobotany of Ri\u0301o San Miguel, ceramics in the Wasley collection (Arizona State Museum), and classification of historic period artifacts from Sonora\"--Handbook of Latin American Studies, v. 57."}, "isbn_10": ["9682937493"], "subject_place": ["Sonora (Mexico : State)"], "covers": [3866415], "lc_classifications": ["F1221.O6 B73 1992"], "latest_revision": 5, "key": "/books/OL1032608M", "authors": [{"key": "/authors/OL41368A"}], "subtitle": "proposiciones arqueolo\u0301gicas preliminares", "publish_places": ["Me\u0301xico, D.F"], "languages": [{"key": "/languages/spa"}], "pagination": "v. <1-3 > :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:63411112:2013"], "title": "La frontera protohisto\u0301rica Pima-O\u0301pata en Sonora, Me\u0301xico", "dewey_decimal_class": ["972/.1701"], "notes": {"type": "/type/text", "value": "Chiefly in Spanish with one article (in vol. 3) in English.\nIncludes bibliographical references."}, "identifiers": {"goodreads": ["2392802"]}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "edition_name": "1. ed.", "lccn": ["93225838"], "subjects": ["Opata Indians -- History.", "Opata Indians -- Social life and customs.", "Sonora (Mexico : State) -- History.", "Sonora (Mexico : State) -- Antiquities."], "publish_date": "1992", "publish_country": "mx ", "last_modified": {"type": "/type/datetime", "value": "2020-11-17T20:02:06.777881"}, "series": ["Coleccio\u0301n cienti\u0301fica ;", "240-<242 >", "Serie Arqueologi\u0301a", "Coleccio\u0301n cienti\u0301fica (Instituto Nacional de Antropologi\u0301a e Historia (Mexico)) ;", "240-<242 >.", "Serie Arqueologi\u0301a (Mexico City, Mexico)"], "by_statement": "Beatriz Braniff Cornejo.", "works": [{"key": "/works/OL567190W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL1032626M 3 2020-11-17T20:02:24.978230 {"publishers": ["R. Trauner"], "subtitle": "Sammlung aller fu\u0308r die Praxis wichtigen Landesgesetze und -verordnungen : mit einem Sachverzeichnis von zirka 25.000 Stichwo\u0308rtern im Anhang", "isbn_10": ["3853203302"], "subject_place": ["Austria", "Upper Austria."], "lc_classifications": ["KJJ7402.3 1992"], "latest_revision": 3, "key": "/books/OL1032626M", "authors": [{"key": "/authors/OL554942A"}], "publish_places": ["Linz"], "contributions": ["Oberndorfer, Peter.", "Binder, Bruno."], "languages": [{"key": "/languages/ger"}], "pagination": "1 v. (unpaged) ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:63432999:952"], "title": "Das obero\u0308sterreichische Landesrecht", "dewey_decimal_class": ["348.436/2022", "344.3620822"], "identifiers": {"goodreads": ["4940459"]}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "edition_name": "2., erw. und u\u0308berarbeitete Aufl., Stand, 1. Sept. 1992.", "lccn": ["93225867"], "subjects": ["Law -- Austria -- Upper Austria."], "publish_date": "1992", "publish_country": "au ", "last_modified": {"type": "/type/datetime", "value": "2020-11-17T20:02:24.978230"}, "by_statement": "Peter Oberndorfer, Bruno Binder (Hrsg.).", "work_title": ["Laws, etc. (Obero\u0308sterreichische Landesrecht)"], "works": [{"key": "/works/OL23520834W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10326274M 2 2009-12-15T00:46:54.495425 {"physical_format": "Board book", "title": "So Easy 48pg Preschool Color", "isbn_10": ["0307027066"], "publishers": ["Golden Books"], "isbn_13": ["9780307027061"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:46:54.495425"}, "publish_date": "February 1, 1991", "key": "/books/OL10326274M", "authors": [{"key": "/authors/OL2675811A"}], "latest_revision": 2, "subjects": ["General", "Juvenile Fiction / General", "Children's 9-12"], "works": [{"key": "/works/OL8042854W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10326611M 4 2022-04-06T23:26:56.174435 {"publishers": ["Golden Books"], "languages": [{"key": "/languages/eng"}], "title": "Looney Tunes #3 Chky Clr-Mrgld (Jumbo Coloring Book)", "number_of_pages": 256, "isbn_13": ["9780307034076"], "physical_format": "Paperback", "isbn_10": ["0307034070"], "publish_date": "October 6, 1989", "key": "/books/OL10326611M", "authors": [{"key": "/authors/OL27452A"}], "works": [{"key": "/works/OL8043606W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Juvenile Fiction / General", "Children's 9-12"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-04-06T23:26:56.174435"}}
+/type/edition /books/OL10327330M 5 2022-10-18T10:50:42.283458 {"publishers": ["John Wiley & Sons, Ltd. (UK)"], "physical_format": "Hardcover", "subtitle": "Design and Specification of the Unified Mobile Telefoning Systems", "title": "UMTS", "number_of_pages": 544, "isbn_13": ["9780471490005"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0471490008"], "publish_date": "August 13, 2002", "key": "/books/OL10327330M", "authors": [{"key": "/authors/OL1617925A"}], "oclc_numbers": ["228125256"], "works": [{"key": "/works/OL6239946W"}], "type": {"key": "/type/edition"}, "subjects": ["Electronics & Communications Engineering", "Cellular Communication Technology", "Technology", "Computers - Other Applications", "Science/Mathematics", "Miscellaneous Software", "Telecommunications", "Engineering - Electrical & Electronic"], "source_records": ["bwb:9780471490005"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T10:50:42.283458"}}
+/type/edition /books/OL10327494M 3 2011-04-18T16:02:14.857760 {"publishers": ["John Wiley and Sons Ltd"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2011-04-18T16:02:14.857760"}, "title": "Respiratory Infections, Asthma & Allergy", "number_of_pages": 550, "isbn_13": ["9780471496076"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Hardcover", "isbn_10": ["0471496073"], "publish_date": "March 31, 2002", "key": "/books/OL10327494M", "authors": [{"key": "/authors/OL2630326A"}], "latest_revision": 3, "works": [{"key": "/works/OL8138024W"}], "type": {"key": "/type/edition"}, "subjects": ["Biology, Life Sciences", "Clinical & Internal Medicine"], "revision": 3}
+/type/edition /books/OL10327499M 2 2009-12-15T00:46:56.918068 {"publishers": ["John Wiley and Sons Ltd"], "isbn_10": ["0471496383"], "number_of_pages": 250, "isbn_13": ["9780471496380"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:46:56.918068"}, "latest_revision": 2, "key": "/books/OL10327499M", "authors": [{"key": "/authors/OL3420223A"}], "title": "CE Method Development & Validation for Pharmaceutical & Biological Separations", "subjects": ["Chemistry"], "works": [{"key": "/works/OL9383530W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL1032786M 7 2022-11-01T03:29:54.046900 {"notes": {"type": "/type/text", "value": "Includes bibliographical references and index."}, "identifiers": {"goodreads": ["5550980"]}, "title": "The adhesion molecules", "authors": [{"key": "/authors/OL555021A"}], "publish_date": "1993", "publishers": ["Academic Press London"], "isbn_10": ["0125551800"], "series": ["Factsbook series"], "covers": [1099838], "lc_classifications": ["QP552.C42 P54 1993"], "publish_places": ["London", "San Diego"], "contributions": ["Power, Christine."], "pagination": "viii, 190 p. ;", "source_records": ["marc:marc_upei/marc-for-openlibrary-bigset.mrc:138587887:710", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:63619245:685", "ia:isbn_9780125551809"], "dewey_decimal_class": ["574.87"], "languages": [{"key": "/languages/eng"}], "lccn": ["93226115"], "subjects": ["Cell adhesion molecules."], "publish_country": "enk", "by_statement": "Rod Pigott, Christine Power.", "type": {"key": "/type/edition"}, "ocaid": "isbn_9780125551809", "key": "/books/OL1032786M", "number_of_pages": 190, "works": [{"key": "/works/OL3391927W"}], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-01T03:29:54.046900"}}
+/type/edition /books/OL10327896M 3 2011-04-27T23:55:34.635580 {"publishers": ["John Wiley & Sons Inc"], "last_modified": {"type": "/type/datetime", "value": "2011-04-27T23:55:34.635580"}, "title": "Students Solution Manual to Accompany Calculus With Analytical Geometry, Late Trigonometry Version", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780471506720"], "physical_format": "Paperback", "isbn_10": ["0471506729"], "publish_date": "June 1990", "key": "/books/OL10327896M", "authors": [{"key": "/authors/OL30353A"}], "latest_revision": 3, "oclc_numbers": ["233532486"], "works": [{"key": "/works/OL485840W"}], "type": {"key": "/type/edition"}, "subjects": ["Mathematics and Science", "Topology", "Science/Mathematics"], "revision": 3}
+/type/edition /books/OL10327900M 2 2009-12-15T00:46:56.918068 {"publishers": ["John Wiley & Sons Inc"], "title": "Solutions for Solving Principles of Accounting Pro Blems Using Lotus 1 2 3", "isbn_10": ["0471506818"], "isbn_13": ["9780471506812"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:46:56.918068"}, "latest_revision": 2, "key": "/books/OL10327900M", "authors": [{"key": "/authors/OL3412844A"}], "subjects": ["Finance & Accounting"], "works": [{"key": "/works/OL9373122W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10328020M 2 2009-12-15T00:46:56.918068 {"publishers": ["John Wiley & Sons Inc"], "title": "Africa", "isbn_10": ["0471510130"], "isbn_13": ["9780471510130"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:46:56.918068"}, "publish_date": "July 12, 1998", "key": "/books/OL10328020M", "authors": [{"key": "/authors/OL3414377A"}], "latest_revision": 2, "subjects": ["Geography"], "works": [{"key": "/works/OL9376464W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10328622M 3 2011-04-27T09:08:05.787822 {"publishers": ["John Wiley & Sons Inc"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T09:08:05.787822"}, "title": "The Complete Guide to Object-Oriented Systems", "number_of_pages": 300, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780471524137"], "isbn_10": ["0471524131"], "latest_revision": 3, "key": "/books/OL10328622M", "authors": [{"key": "/authors/OL575676A"}], "oclc_numbers": ["230947270"], "works": [{"key": "/works/OL3456211W"}], "type": {"key": "/type/edition"}, "subjects": ["Object-oriented programming (OOP)", "Operating systems & graphical user interfaces (GUIs)"], "revision": 3}
+/type/edition /books/OL10328842M 2 2009-12-15T00:46:58.012557 {"publishers": ["John Wiley & Sons Inc"], "title": "Solutions to Lotus Problems to Accompany Manageria L Accounting", "isbn_10": ["0471530832"], "isbn_13": ["9780471530831"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:46:58.012557"}, "latest_revision": 2, "key": "/books/OL10328842M", "authors": [{"key": "/authors/OL3260613A"}], "subjects": ["Finance & Accounting"], "works": [{"key": "/works/OL9194019W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10329040M 6 2022-10-17T01:51:49.366062 {"publishers": ["John Wiley & Sons Inc"], "title": "Pascal & Turbo Pascal Tm T/A", "identifiers": {"goodreads": ["4268409"]}, "isbn_13": ["9780471535515"], "physical_format": "Paperback", "isbn_10": ["0471535516"], "publish_date": "August 27, 1992", "key": "/books/OL10329040M", "authors": [{"key": "/authors/OL891915A"}], "works": [{"key": "/works/OL9384197W"}], "type": {"key": "/type/edition"}, "subjects": ["General Theory of Computing"], "source_records": ["bwb:9780471535515"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T01:51:49.366062"}}
+/type/edition /books/OL10329133M 3 2022-10-18T09:17:53.716863 {"publishers": ["John Wiley & Sons"], "subtitle": "The Evolving Universe", "weight": "2.3 pounds", "physical_format": "Hardcover", "key": "/books/OL10329133M", "authors": [{"key": "/authors/OL406483A"}], "subjects": ["Astronomy", "Astronomy - General", "Science"], "languages": [{"key": "/languages/eng"}], "title": "Astronomy", "isbn_13": ["9780471537359"], "isbn_10": ["0471537357"], "publish_date": "May 2000", "works": [{"key": "/works/OL2764669W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.6 x 8 x 1 inches", "lc_classifications": ["QB45.Z428 1991"], "source_records": ["bwb:9780471537359"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T09:17:53.716863"}}
+/type/edition /books/OL10329578M 6 2022-10-18T07:31:33.113819 {"publishers": ["John Wiley & Sons Inc"], "number_of_pages": 152, "subtitle": "1991 Cumulative Supplement", "weight": "8 ounces", "physical_format": "Paperback", "key": "/books/OL10329578M", "authors": [{"key": "/authors/OL3278159A"}], "subjects": ["Trial Practice", "Courts & procedure", "USA", "Unassigned Title"], "isbn_13": ["9780471545934"], "title": "Making Trial Objections", "identifiers": {"goodreads": ["6397444"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0471545937"], "publish_date": "May 2000", "oclc_numbers": ["232721199"], "works": [{"key": "/works/OL9215473W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.9 x 6 x 0.8 inches", "source_records": ["bwb:9780471545934"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T07:31:33.113819"}}
+/type/edition /books/OL10329672M 3 2022-10-17T04:54:18.379127 {"publishers": ["John Wiley & Sons Inc"], "title": "Real Estate 3e Im TB Tr", "isbn_10": ["0471548472"], "isbn_13": ["9780471548478"], "physical_format": "Paperback", "publish_date": "August 19, 1992", "key": "/books/OL10329672M", "authors": [{"key": "/authors/OL3420826A"}], "subjects": ["Business & Management"], "works": [{"key": "/works/OL9384375W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780471548478"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T04:54:18.379127"}}
+/type/edition /books/OL10330080M 4 2011-04-30T13:53:29.196633 {"publishers": ["John Wiley & Sons Inc"], "subtitle": "Transparency Acetates T/A Physics 2ed (Manual)", "last_modified": {"type": "/type/datetime", "value": "2011-04-30T13:53:29.196633"}, "title": "Cutnell", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780471558347"], "physical_format": "Paperback", "isbn_10": ["0471558346"], "publish_date": "June 4, 1992", "key": "/books/OL10330080M", "authors": [{"key": "/authors/OL273593A"}], "latest_revision": 4, "oclc_numbers": ["24590068"], "works": [{"key": "/works/OL2166735W"}], "type": {"key": "/type/edition"}, "subjects": ["PHYSICS"], "revision": 4}
+/type/edition /books/OL10330361M 4 2020-10-12T11:08:18.022521 {"publishers": ["John Wiley & Sons Inc"], "physical_format": "Hardcover", "lc_classifications": [""], "last_modified": {"type": "/type/datetime", "value": "2020-10-12T11:08:18.022521"}, "source_records": ["bwb:9780471564102"], "title": "Grassi Antibiotics and Hospitals", "number_of_pages": 238, "isbn_13": ["9780471564102"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0471564109"], "publish_date": "May 6, 1979", "key": "/books/OL10330361M", "authors": [{"key": "/authors/OL3421015A"}], "latest_revision": 4, "works": [{"key": "/works/OL9384645W"}], "type": {"key": "/type/edition"}, "subjects": ["Clinical & Internal Medicine"], "revision": 4}
+/type/edition /books/OL10330397M 4 2020-10-12T08:26:58.703152 {"publishers": ["John Wiley & Sons Inc"], "physical_format": "Hardcover", "lc_classifications": [""], "last_modified": {"type": "/type/datetime", "value": "2020-10-12T08:26:58.703152"}, "source_records": ["bwb:9780471564560"], "title": "Marchesi Membranes and Neoplasia - New Approaches and Strategies", "number_of_pages": 292, "isbn_13": ["9780471564560"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0471564567"], "publish_date": "May 6, 1976", "key": "/books/OL10330397M", "authors": [{"key": "/authors/OL3421042A"}], "latest_revision": 4, "works": [{"key": "/works/OL9384684W"}], "type": {"key": "/type/edition"}, "subjects": ["Clinical & Internal Medicine"], "revision": 4}
+/type/edition /books/OL10330512M 4 2020-10-12T11:08:22.320706 {"publishers": ["John Wiley & Sons Inc"], "physical_format": "Hardcover", "lc_classifications": [""], "last_modified": {"type": "/type/datetime", "value": "2020-10-12T11:08:22.320706"}, "source_records": ["bwb:9780471566267"], "title": "Sandler Immunobiology of the Erythrocyte", "number_of_pages": 360, "isbn_13": ["9780471566267"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0471566268"], "publish_date": "May 6, 1980", "key": "/books/OL10330512M", "authors": [{"key": "/authors/OL3421097A"}], "latest_revision": 4, "works": [{"key": "/works/OL9384757W"}], "type": {"key": "/type/edition"}, "subjects": ["Clinical & Internal Medicine"], "revision": 4}
+/type/edition /books/OL10330564M 2 2009-12-15T00:46:59.093822 {"physical_format": "Paperback", "title": "Human Resource Managment 6e with Wall Street Journ Al Student Handbook Set", "isbn_10": ["0471567744"], "publishers": ["John Wiley & Sons Inc"], "isbn_13": ["9780471567745"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:46:59.093822"}, "publish_date": "June 17, 2003", "key": "/books/OL10330564M", "authors": [{"key": "/authors/OL3414576A"}], "latest_revision": 2, "subjects": ["Personnel & human resources management"], "works": [{"key": "/works/OL9376894W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10330841M 6 2022-12-03T19:47:05.625163 {"publishers": ["John Wiley & Sons Inc"], "number_of_pages": 100, "weight": "2.1 pounds", "physical_format": "Paperback", "key": "/books/OL10330841M", "authors": [{"key": "/authors/OL2068690A"}, {"key": "/authors/OL548700A"}], "subjects": ["Language self-study & phrasebooks", "Spanish", "Foreign Language Study", "Spanish: Adult Nonfiction"], "edition_name": "2 ed edition", "title": "Spanish in Review, Textbook and Workbook", "identifiers": {"goodreads": ["4203539"], "librarything": ["4187343"]}, "isbn_13": ["9780471576457"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["047157645X"], "publish_date": "March 1995", "type": {"key": "/type/edition"}, "physical_dimensions": "10 x 7.5 x 1 inches", "works": [{"key": "/works/OL28969593W"}], "source_records": ["bwb:9780471576457", "amazon:047157645X"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-03T19:47:05.625163"}}
+/type/edition /books/OL10331155M 4 2022-10-17T03:46:43.458301 {"publishers": ["John Wiley & Sons Inc"], "subtitle": "Microtest Ctb Ibm3 to Accompany Accounting Principles 3ed (Booklet Plus 4 Disks)", "weight": "1 pounds", "title": "Weygandt", "isbn_13": ["9780471584193"], "physical_format": "Unknown Binding", "isbn_10": ["0471584193"], "publish_date": "December 10, 1993", "key": "/books/OL10331155M", "authors": [{"key": "/authors/OL225203A"}], "works": [{"key": "/works/OL1881225W"}], "type": {"key": "/type/edition"}, "subjects": ["Finance & Accounting"], "source_records": ["bwb:9780471584193"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T03:46:43.458301"}}
+/type/edition /books/OL10331176M 2 2009-12-15T00:47:00.095358 {"publishers": ["John Wiley & Sons Inc"], "title": "Polymer Reaction Engineering", "isbn_10": ["0471584932"], "isbn_13": ["9780471584933"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:47:00.095358"}, "latest_revision": 2, "key": "/books/OL10331176M", "authors": [{"key": "/authors/OL1790291A"}], "subjects": ["Chemistry"], "works": [{"key": "/works/OL6644000W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL1033122M 2 2020-11-17T20:10:31.754040 {"other_titles": ["Kindergarten education in colkhoses."], "publishers": ["Minusinskii\u0306 okruzhnoi\u0306 ped. kabinet"], "lc_classifications": ["MLCM 93/11846 (L)"], "latest_revision": 2, "key": "/books/OL1033122M", "publish_places": ["[Minusinsk]"], "pagination": "103 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:64062673:609"], "title": "Doshkol\u02b9noe vospitanie v kolkhoze.", "lccn": ["93226729"], "notes": {"type": "/type/text", "value": "Added t.p.: Kindergarten education in colkhoses."}, "number_of_pages": 103, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/rus"}], "last_modified": {"type": "/type/datetime", "value": "2020-11-17T20:10:31.754040"}, "publish_date": "1930", "publish_country": "ru ", "works": [{"key": "/works/OL23520983W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10331721M 6 2021-10-04T01:40:28.326796 {"publishers": ["Wiley-Interscience"], "weight": "1.2 pounds", "covers": [9489547], "physical_format": "Paperback", "key": "/books/OL10331721M", "authors": [{"key": "/authors/OL3421319A"}], "ocaid": "topicsinstereoch0000unse", "subjects": ["Organic chemistry", "Stereochemistry", "Science", "Unassigned Title", "Science/Mathematics", "Chemistry - Organic", "Science / Chemistry / Physical & Theoretical", "Chemistry - General"], "isbn_13": ["9780471600268"], "source_records": ["ia:topicsinstereoch0000unse", "bwb:9780471600268"], "title": "Topics In Sterochemistry (Topics in Stereochemistry)", "number_of_pages": 346, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0471600261"], "publish_date": "April 14, 1988", "oclc_numbers": ["229911765"], "works": [{"key": "/works/OL9385004W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.3 x 6.2 x 0.8 inches", "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-10-04T01:40:28.326796"}}
+/type/edition /books/OL10332351M 2 2009-12-15T00:47:01.244414 {"publishers": ["John Wiley & Sons Inc"], "subtitle": "Transparencies Chapters 16-29", "isbn_10": ["0471613800"], "number_of_pages": 210, "isbn_13": ["9780471613800"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:47:01.244414"}, "publish_date": "June 30, 1989", "latest_revision": 2, "key": "/books/OL10332351M", "authors": [{"key": "/authors/OL3421445A"}], "title": "Newell", "subjects": ["Finance & Accounting"], "works": [{"key": "/works/OL9385158W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10332487M 6 2012-05-31T21:12:45.456612 {"publishers": ["John Wiley & Sons Inc"], "physical_format": "Hardcover", "classifications": {}, "last_modified": {"type": "/type/datetime", "value": "2012-05-31T21:12:45.456612"}, "title": "Introduction To Probability Theory And Statistical Inference", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "notes": {"type": "/type/text", "value": "Fourth Edition"}, "identifiers": {"goodreads": ["2765836"]}, "edition_name": "4th edition", "isbn_13": ["9780471617532"], "isbn_10": ["0471617539"], "latest_revision": 6, "key": "/books/OL10332487M", "authors": [{"key": "/authors/OL2648745A"}], "works": [{"key": "/works/OL15694507W"}], "type": {"key": "/type/edition"}, "subjects": ["Mathematics"], "revision": 6}
+/type/edition /books/OL10333302M 2 2009-12-15T00:47:01.244414 {"publishers": ["John Wiley & Sons Inc"], "title": "Roles of Crops in Enhancing Fertilizer Efficiency", "isbn_10": ["0471637017"], "isbn_13": ["9780471637011"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:47:01.244414"}, "latest_revision": 2, "key": "/books/OL10333302M", "authors": [{"key": "/authors/OL3421842A"}], "subjects": ["Earth Sciences"], "works": [{"key": "/works/OL9385656W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10333414M 4 2022-10-18T11:15:57.650405 {"publishers": ["John Wiley & Sons"], "languages": [{"key": "/languages/eng"}], "subtitle": "ITT Delhi Laboratory Manual for Electromechanics", "title": "Curriculum Development Cell", "isbn_13": ["9780471639381"], "physical_format": "Hardcover", "isbn_10": ["0471639389"], "publish_date": "January 1982", "key": "/books/OL10333414M", "authors": [{"key": "/authors/OL2737538A"}], "works": [{"key": "/works/OL3539200W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Technology", "Technology & Industrial Arts"], "source_records": ["bwb:9780471639381"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T11:15:57.650405"}}
+/type/edition /books/OL10333666M 2 2009-12-15T00:47:02.377805 {"publishers": ["John Wiley & Sons Inc"], "isbn_10": ["0471651222"], "number_of_pages": 246, "isbn_13": ["9780471651222"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:47:02.377805"}, "publish_date": "September 24, 2003", "latest_revision": 2, "key": "/books/OL10333666M", "authors": [{"key": "/authors/OL3421313A"}], "title": "Financial Accounting 3e Student Solutions Manual (Wcs)", "subjects": ["Finance & Accounting"], "works": [{"key": "/works/OL9384998W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10333917M 3 2011-04-27T03:22:58.297716 {"publishers": ["Wiley"], "physical_format": "CD-ROM", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T03:22:58.297716"}, "title": "IR Hummel Industrial Polymers (SpecInfo)", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780471662211"], "edition_name": "Cdr edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0471662216"], "publish_date": "November 30, 2005", "key": "/books/OL10333917M", "authors": [{"key": "/authors/OL454957A"}], "latest_revision": 3, "oclc_numbers": ["149510623"], "works": [{"key": "/works/OL2974628W"}], "type": {"key": "/type/edition"}, "subjects": ["Chemistry", "Science", "Technology & Industrial Arts", "Science/Mathematics", "Chemical & Biochemical", "Engineering - Chemical & Biochemical", "Technology", "Technology / Engineering / Chemical & Biochemical", "General"], "revision": 3}
+/type/edition /books/OL10333979M 3 2022-10-17T08:52:44.154631 {"physical_format": "Hardcover", "title": "Design Linear Circuits 4e with Egrade Student Lear Ning Guide 2 Term Set", "isbn_10": ["047166409X"], "publishers": ["John Wiley & Sons Inc"], "isbn_13": ["9780471664093"], "languages": [{"key": "/languages/eng"}], "key": "/books/OL10333979M", "authors": [{"key": "/authors/OL460099A"}], "subjects": ["Electronics & Communications Engineering"], "works": [{"key": "/works/OL2999972W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780471664093"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T08:52:44.154631"}}
+/type/edition /books/OL10334043M 3 2022-10-17T04:43:19.996194 {"physical_format": "Hardcover", "languages": [{"key": "/languages/eng"}], "publishers": ["John Wiley & Sons Inc"], "isbn_10": ["0471665827"], "number_of_pages": 928, "edition_name": "7Rev Ed edition", "isbn_13": ["9780471665823"], "publish_date": "December 3, 2003", "key": "/books/OL10334043M", "authors": [{"key": "/authors/OL2730663A"}], "title": "Engineering Fluid Mechanics", "subjects": ["Mechanical Engineering & Materials"], "works": [{"key": "/works/OL8205707W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780471665823"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T04:43:19.996194"}}
+/type/edition /books/OL10334159M 3 2022-10-17T03:53:38.399994 {"physical_format": "Hardcover", "publishers": ["John Wiley and Sons Ltd"], "isbn_10": ["0471671967"], "number_of_pages": 416, "isbn_13": ["9780471671961"], "languages": [{"key": "/languages/eng"}], "key": "/books/OL10334159M", "authors": [{"key": "/authors/OL3421984A"}], "title": "Securities Litigation Handbook", "subjects": ["Investment & securities"], "works": [{"key": "/works/OL9385813W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780471671961"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T03:53:38.399994"}}
+/type/edition /books/OL10334439M 2 2009-12-15T00:47:02.377805 {"publishers": ["John Wiley & Sons Inc"], "isbn_10": ["0471691100"], "number_of_pages": 1516, "isbn_13": ["9780471691105"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:47:02.377805"}, "publish_date": "March 1965", "latest_revision": 2, "key": "/books/OL10334439M", "authors": [{"key": "/authors/OL3293075A"}], "title": "Systematics of the Electronic Spectra of Conjugated Molecules", "subjects": ["Chemistry"], "works": [{"key": "/works/OL9233878W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10334682M 3 2009-11-12T00:06:36.380602 {"languages": [{"key": "/languages/eng"}], "key": "/books/OL10334682M", "publishers": ["John Wiley & Sons Inc"], "title": "Cell Mollecular Biology", "number_of_pages": 1100, "isbn_13": ["9780471704324"], "edition_name": "4Rev Ed edition", "physical_format": "Hardcover", "isbn_10": ["0471704326"], "publish_date": "September 14, 2004", "last_modified": {"type": "/type/datetime", "value": "2009-11-12T00:06:36.380602"}, "authors": [{"key": "/authors/OL404599A"}], "latest_revision": 3, "works": [{"key": "/works/OL3269837W"}], "type": {"key": "/type/edition"}, "subjects": ["Cellular biology"], "revision": 3}
+/type/edition /books/OL10334862M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["John Wiley & Sons Inc"], "number_of_pages": 1414, "isbn_13": ["9780471716587"], "isbn_10": ["0471716588"], "publish_date": "September 15, 2004", "key": "/books/OL10334862M", "authors": [{"key": "/authors/OL402967A"}, {"key": "/authors/OL2740417A"}], "title": "Principles Accounting 1st Edition EGrade Plus Version with Excel Workbook & Template Set", "type": {"key": "/type/edition"}, "subjects": ["Finance & Accounting"], "revision": 1}
+/type/edition /books/OL10335607M 2 2009-12-15T00:47:03.486615 {"physical_format": "Paperback", "title": "Anatomy and Physiology", "isbn_10": ["0471757799"], "publishers": ["John Wiley & Sons Inc"], "edition_name": "2Rev Ed edition", "isbn_13": ["9780471757795"], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:47:03.486615"}, "publish_date": "November 27, 2005", "key": "/books/OL10335607M", "authors": [{"key": "/authors/OL1399695A"}], "latest_revision": 2, "subjects": ["Anatomy", "Physiology"], "works": [{"key": "/works/OL5753355W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10335790M 3 2010-04-24T18:01:20.932163 {"publishers": ["John Wiley & Sons Inc"], "physical_format": "Paperback", "key": "/books/OL10335790M", "title": "EGrade Plus 1 Semester E--commerce Password Stand Alone Psychology 4th Edition (Term 1)", "identifiers": {"goodreads": ["853666"]}, "isbn_13": ["9780471764557"], "isbn_10": ["0471764558"], "publish_date": "June 6, 2005", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:01:20.932163"}, "authors": [{"key": "/authors/OL1401343A"}, {"key": "/authors/OL403900A"}], "latest_revision": 3, "type": {"key": "/type/edition"}, "subjects": ["Psychology"], "revision": 3}
+/type/edition /books/OL10335942M 4 2010-04-24T18:01:20.932163 {"publishers": ["John Wiley & Sons Inc"], "number_of_pages": 720, "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:01:20.932163"}, "title": "Horizontes", "type": {"key": "/type/edition"}, "identifiers": {"goodreads": ["3080955"]}, "isbn_13": ["9780471774983"], "edition_name": "5Rev Ed edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0471774987"], "publish_date": "September 15, 2005", "key": "/books/OL10335942M", "authors": [{"key": "/authors/OL2729619A"}], "latest_revision": 4, "works": [{"key": "/works/OL8203788W"}], "physical_format": "Paperback", "subjects": ["Language teaching & learning material & coursework", "Spanish"], "revision": 4}
+/type/edition /books/OL10335969M 12 2022-12-29T22:28:45.892755 {"publishers": ["Wiley"], "identifiers": {"goodreads": ["1164831"], "librarything": ["4317222"]}, "subtitle": "Urban Design With Nature", "weight": "1.8 pounds", "covers": [2426219], "physical_format": "Hardcover", "lc_classifications": ["HT241.S8736 2007", "HT241 .S8736 2008", "HT241 .F37 2008"], "key": "/books/OL10335969M", "authors": [{"key": "/authors/OL3422332A"}], "subjects": ["City & town planning - architectural aspects", "Architecture", "Design, Drafting, Drawing & Presentation", "Planning", "Sustainable/Environmental", "Architecture / Planning", "City planning", "Environmental aspects", "United States", "Urban ecology"], "isbn_13": ["9780471777519"], "source_records": ["bwb:9780471777519", "marc:marc_loc_2016/BooksAll.2016.part34.utf8:137358774:5397", "ia:sustainableurban0000farr", "promise:bwb_daily_pallets_2022-03-17", "marc:marc_columbia/Columbia-extract-20221130-013.mrc:322563505:4247"], "title": "Sustainable Urbanism", "number_of_pages": 256, "languages": [{"key": "/languages/eng"}], "isbn_10": ["047177751X"], "publish_date": "November 16, 2007", "works": [{"key": "/works/OL9386119W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.1 x 8.3 x 1 inches", "lccn": ["2007029064"], "ocaid": "sustainableurban0000farr", "local_id": ["urn:bwbsku:P7-EJG-478"], "oclc_numbers": ["156975221"], "latest_revision": 12, "revision": 12, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-29T22:28:45.892755"}}
+/type/edition /books/OL10336044M 3 2022-10-17T05:14:48.952532 {"physical_format": "Hardcover", "title": "Fundamentals of Intermediate Accounting", "isbn_10": ["0471783064"], "publishers": ["John Wiley & Sons Inc"], "isbn_13": ["9780471783060"], "languages": [{"key": "/languages/eng"}], "publish_date": "February 7, 2008", "key": "/books/OL10336044M", "authors": [{"key": "/authors/OL392357A"}], "subjects": ["Accounting"], "works": [{"key": "/works/OL2686537W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780471783060"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T05:14:48.952532"}}
+/type/edition /books/OL10336388M 3 2011-02-05T06:58:20.189775 {"publishers": ["John Wiley & Sons Inc"], "number_of_pages": 320, "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-02-05T06:58:20.189775"}, "latest_revision": 3, "key": "/books/OL10336388M", "authors": [{"key": "/authors/OL3422446A"}], "subjects": ["Business & Management"], "isbn_13": ["9780471800484"], "classifications": {}, "title": "Bolen (Tm) Advertising", "notes": {"type": "/type/text", "value": "2ed"}, "identifiers": {}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0471800481"], "publish_date": "April 11, 1984", "works": [{"key": "/works/OL9386235W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10336710M 3 2011-04-26T05:07:32.220143 {"publishers": ["John Wiley & Sons Inc"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-26T05:07:32.220143"}, "title": "Workbook 3 to Accompany the Graphic Language of Engineering", "number_of_pages": 116, "isbn_13": ["9780471808510"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0471808512"], "publish_date": "January 1985", "key": "/books/OL10336710M", "authors": [{"key": "/authors/OL3422577A"}], "latest_revision": 3, "oclc_numbers": ["234289236"], "works": [{"key": "/works/OL9386431W"}], "type": {"key": "/type/edition"}, "subjects": ["Architecture"], "revision": 3}
+/type/edition /books/OL10336828M 3 2011-04-29T13:32:09.856123 {"publishers": ["John Wiley & Sons Inc"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T13:32:09.856123"}, "title": "Commodore 64 Programs for the Home", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780471811510"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0471811513"], "publish_date": "November 1985", "key": "/books/OL10336828M", "authors": [{"key": "/authors/OL3422624A"}], "latest_revision": 3, "oclc_numbers": ["234289254"], "works": [{"key": "/works/OL9386482W"}], "type": {"key": "/type/edition"}, "subjects": ["Programming Languages - General", "Computer Programs", "Microcomputer Programming", "Computer Bks - Languages / Programming", "Computer Books: Operating Systems"], "revision": 3}
+/type/edition /books/OL1033700M 3 2020-11-17T20:19:39.788892 {"publishers": ["Instituto Nacional de Estadi\u0301stica e Informa\u0301tica (INEI), Oficina Departamental de Apuri\u0301mac", "Centro de Estudios Regionales Andinos Bartolome\u0301 de Las Casas (CBC)"], "subtitle": "la problema\u0301tica de los asentamientos humanos : migraciones interiores en Apuri\u0301mac : ana\u0301lisis socioecono\u0301mico, datos y gra\u0301ficos", "subject_place": ["Abancay Region (Peru)", "Peru", "Apuri\u0301mac"], "lc_classifications": ["HA1069.A22 P33 1992"], "latest_revision": 3, "key": "/books/OL1033700M", "authors": [{"key": "/authors/OL555492A"}], "publish_places": ["Cusco, Peru\u0301"], "contributions": ["Magallanes, Juan."], "pagination": "81 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:64779254:1167"], "title": "Abancay", "lccn": ["93227723"], "number_of_pages": 81, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/spa"}], "subjects": ["Migration, Internal -- Peru -- Apuri\u0301mac -- Statistics.", "Abancay Region (Peru) -- Population -- Statistics.", "Abancay Region (Peru) -- Social conditions -- Statistics.", "Abancay Region (Peru) -- Economic conditions -- Statistics."], "publish_date": "1992", "publish_country": "pe ", "last_modified": {"type": "/type/datetime", "value": "2020-11-17T20:19:39.788892"}, "series": ["Documentos regionales ;", "4"], "by_statement": "Silvia Pacheco, Juan Magallanes.", "oclc_numbers": ["29248909"], "works": [{"key": "/works/OL3393454W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10337057M 3 2010-04-24T18:01:20.932163 {"languages": [{"key": "/languages/eng"}], "number_of_pages": 174, "key": "/books/OL10337057M", "publishers": ["John Wiley & Sons Inc"], "title": "Accounting Theory", "identifiers": {"goodreads": ["4667127"]}, "isbn_13": ["9780471818908"], "physical_format": "Paperback", "isbn_10": ["0471818909"], "publish_date": "May 27, 1987", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:01:20.932163"}, "authors": [{"key": "/authors/OL2737896A"}, {"key": "/authors/OL1962454A"}, {"key": "/authors/OL547831A"}], "latest_revision": 3, "type": {"key": "/type/edition"}, "subjects": ["Finance & Accounting"], "first_sentence": {"type": "/type/text", "value": "Accounting records dating back several thousand years have been found in various parts of the world."}, "revision": 3}
+/type/edition /books/OL10337257M 4 2022-10-17T05:42:39.530955 {"publishers": ["John Wiley & Sons"], "physical_format": "Paperback", "subtitle": "Practices Sets I-III", "title": "Principles of Accounting", "number_of_pages": 200, "isbn_13": ["9780471824473"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["047182447X"], "publish_date": "May 2000", "key": "/books/OL10337257M", "authors": [{"key": "/authors/OL3011949A"}], "oclc_numbers": ["234289322"], "works": [{"key": "/works/OL8813413W"}], "type": {"key": "/type/edition"}, "subjects": ["Economics - General", "Business strategy", "Business / Economics / Finance"], "source_records": ["bwb:9780471824473"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T05:42:39.530955"}}
+/type/edition /books/OL10337299M 3 2011-04-29T04:38:17.207004 {"publishers": ["John Wiley & Sons Inc"], "last_modified": {"type": "/type/datetime", "value": "2011-04-29T04:38:17.207004"}, "title": "Pathogens & Toxins in the Marine Enviro", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780471825937"], "physical_format": "Hardcover", "isbn_10": ["047182593X"], "latest_revision": 3, "key": "/books/OL10337299M", "authors": [{"key": "/authors/OL3422824A"}], "oclc_numbers": ["234289356"], "works": [{"key": "/works/OL9386716W"}], "type": {"key": "/type/edition"}, "subjects": ["Biology, Life Sciences"], "revision": 3}
+/type/edition /books/OL10337349M 2 2009-12-15T00:47:04.774310 {"publishers": ["John Wiley & Sons Inc"], "key": "/books/OL10337349M", "title": "Jnl-Networks V15 1985", "isbn_13": ["9780471826941"], "physical_format": "Hardcover", "isbn_10": ["0471826944"], "latest_revision": 2, "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:47:04.774310"}, "authors": [{"key": "/authors/OL3422849A"}], "works": [{"key": "/works/OL9386744W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10337542M 4 2022-10-18T11:11:22.575588 {"publishers": ["John Wiley & Sons Inc"], "key": "/books/OL10337542M", "languages": [{"key": "/languages/eng"}], "title": "Aerial Discovery Manual", "number_of_pages": 266, "isbn_13": ["9780471831709"], "covers": [5055203], "physical_format": "Hardcover", "isbn_10": ["0471831700"], "publish_date": "June 1988", "authors": [{"key": "/authors/OL2054404A"}], "works": [{"key": "/works/OL7179011W"}], "type": {"key": "/type/edition"}, "subjects": ["Geological surface processes (geomorphology)", "Physical geography", "Geomorphology", "Science/Mathematics"], "source_records": ["bwb:9780471831709"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T11:11:22.575588"}}
+/type/edition /books/OL1033756M 5 2020-11-19T13:36:38.353579 {"publishers": ["Izd-vo \"Sofii\u0361a\ufe21\""], "subtitle": "izbrannye stat\u02b9i po filosofii russkoi\u0306 istorii i kul\u02b9tury", "isbn_10": ["5873160023"], "subject_place": ["Russia", "Soviet Union"], "lc_classifications": ["DK32 .F4 1991", "D34.R9 R67 1992"], "latest_revision": 5, "key": "/books/OL1033756M", "authors": [{"key": "/authors/OL87065A"}], "publish_places": ["Sankt-Peterburg"], "contributions": ["Boi\u0306kov, V. F."], "pagination": "2 v. ;", "source_records": ["marc:marc_records_scriblio_net/part24.dat:153013536:944", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:64834137:896", "marc:marc_loc_2016/BooksAll.2016.part24.utf8:7948790:955"], "title": "Sud\u02b9ba i gri\u0361e\ufe21khi Rossii", "lccn": ["93227800", "94200591"], "notes": {"type": "/type/text", "value": "Includes bibliographical references."}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/rus"}], "subjects": ["Russia -- Civilization -- Philosophy.", "Soviet Union -- Civilization -- Philosophy."], "publish_date": "1991", "publish_country": "ru ", "last_modified": {"type": "/type/datetime", "value": "2020-11-19T13:36:38.353579"}, "by_statement": "G.P. Fedotov ; [sostavlenie, vstupitel\u02b9nai\u0361a\ufe21 stat\u02b9i\u0361a\ufe21, primechanii\u0361a\ufe21 Boi\u0306kova V.F.].", "work_title": ["Sud\u02b9ba i grekhi Rossii"], "works": [{"key": "/works/OL965169W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10337763M 5 2022-10-18T09:44:26.178644 {"publishers": ["Wiley-Liss"], "number_of_pages": 304, "subtitle": "From Basic Research to Policy Implications", "title": "Diet, Nutrition, and Cancer", "type": {"key": "/type/edition"}, "identifiers": {"goodreads": ["4594406"]}, "isbn_13": ["9780471835929"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0471835927"], "publish_date": "July 1983", "key": "/books/OL10337763M", "authors": [{"key": "/authors/OL586943A"}], "works": [{"key": "/works/OL3509764W"}], "physical_format": "Hardcover", "subjects": ["Dietetics & nutrition", "Physiology", "Meal Management", "Nutrition Physiology", "Cancer", "Carcinogenesis", "Congresses", "Nutritional aspects", "Prevention"], "source_records": ["bwb:9780471835929"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T09:44:26.178644"}}
+/type/edition /books/OL10337777M 3 2022-10-18T12:06:35.528879 {"physical_format": "Hardcover", "publishers": ["John Wiley & Sons Inc"], "isbn_10": ["0471836230"], "number_of_pages": 490, "isbn_13": ["9780471836230"], "languages": [{"key": "/languages/eng"}], "publish_date": "July 31, 1985", "key": "/books/OL10337777M", "authors": [{"key": "/authors/OL3423048A"}], "title": "Dodd Infection Immunity and Blood Transfusion", "subjects": ["Clinical & Internal Medicine"], "works": [{"key": "/works/OL9386971W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780471836230"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T12:06:35.528879"}}
+/type/edition /books/OL10339176M 4 2010-04-24T18:01:20.932163 {"publishers": ["John Wiley & Sons Inc"], "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:01:20.932163"}, "title": "Management of Maintenance and Engineering Systems in Hospitality Industries 2nd Edition", "identifiers": {"goodreads": ["4691710"]}, "isbn_13": ["9780471874287"], "physical_format": "Hardcover", "isbn_10": ["0471874280"], "latest_revision": 4, "key": "/books/OL10339176M", "authors": [{"key": "/authors/OL3416546A"}], "works": [{"key": "/works/OL9379837W"}], "type": {"key": "/type/edition"}, "subjects": ["TRAVEL & HOLIDAY"], "revision": 4}
+/type/edition /books/OL10339377M 2 2009-12-15T00:47:07.055207 {"publishers": ["John Wiley & Sons Inc"], "isbn_10": ["0471880442"], "number_of_pages": 118, "isbn_13": ["9780471880448"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:47:07.055207"}, "publish_date": "July 24, 1973", "latest_revision": 2, "key": "/books/OL10339377M", "authors": [{"key": "/authors/OL3423642A"}], "title": "Toughness Metals", "subjects": ["Mechanical Engineering & Materials"], "works": [{"key": "/works/OL9387645W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10339501M 4 2022-10-18T07:29:26.443657 {"publishers": ["John Wiley & Sons Inc"], "weight": "1.7 pounds", "title": "Fitzgerald Instructor'S Manual T/A Bus", "number_of_pages": 186, "isbn_13": ["9780471883272"], "physical_format": "Unknown Binding", "isbn_10": ["0471883271"], "publish_date": "December 31, 1984", "key": "/books/OL10339501M", "authors": [{"key": "/authors/OL3423681A"}], "oclc_numbers": ["234289527"], "works": [{"key": "/works/OL9387693W"}], "type": {"key": "/type/edition"}, "subjects": ["Applications of Computing"], "source_records": ["bwb:9780471883272"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T07:29:26.443657"}}
+/type/edition /books/OL10340164M 4 2020-10-12T11:44:09.294377 {"publishers": ["John Wiley and Sons Ltd"], "physical_format": "Paperback", "lc_classifications": ["TN880"], "source_records": ["marc:marc_university_of_toronto/uoft.marc:47664608:1004", "bwb:9780471904274"], "title": "Classification and Nomenclature Systems for Petroleum and Petroleum Reserves", "contributions": ["A.R. Martinez (Editor)", "et al (Editor)"], "number_of_pages": 38, "isbn_13": ["9780471904274"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0471904279"], "publish_date": "July 4, 1984", "key": "/books/OL10340164M", "last_modified": {"type": "/type/datetime", "value": "2020-10-12T11:44:09.294377"}, "latest_revision": 4, "works": [{"key": "/works/OL19493074W"}], "type": {"key": "/type/edition"}, "subjects": ["Management of land & natural resources", "Real Estate", "Business / Economics / Finance"], "revision": 4}
+/type/edition /books/OL10340177M 2 2009-12-15T00:47:08.136285 {"physical_format": "Hardcover", "publishers": ["John Wiley and Sons Ltd"], "isbn_10": ["0471904929"], "number_of_pages": 164, "edition_name": "2Rev Ed edition", "isbn_13": ["9780471904922"], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:47:08.136285"}, "publish_date": "March 14, 1984", "latest_revision": 2, "key": "/books/OL10340177M", "authors": [{"key": "/authors/OL1873519A"}], "title": "Programmable Calculator S5-110A", "subjects": ["Electronics & Communications Engineering"], "works": [{"key": "/works/OL6840328W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10340318M 5 2022-10-18T10:37:57.821342 {"publishers": ["John Wiley & Sons"], "weight": "1.4 pounds", "covers": [5055227], "physical_format": "Hardcover", "key": "/books/OL10340318M", "authors": [{"key": "/authors/OL2743964A"}], "subjects": ["Animal physiology", "Endocrinology", "Hormones", "Neuroendocrinology", "Medical", "Unassigned Title", "Neuroscience", "Medical / Neuroscience"], "edition_name": "1 edition", "languages": [{"key": "/languages/eng"}], "title": "Photoperiodism, Melatonin and the Pineal - Symposium No. 117", "number_of_pages": 320, "isbn_13": ["9780471910862"], "isbn_10": ["0471910864"], "publish_date": "March 12, 1985", "oclc_numbers": ["14376824"], "works": [{"key": "/works/OL8245011W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.7 x 6.1 x 1 inches", "source_records": ["bwb:9780471910862"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T10:37:57.821342"}}
+/type/edition /books/OL10340732M 2 2009-12-15T00:47:08.136285 {"publishers": ["John Wiley & Sons Inc"], "isbn_10": ["0471937797"], "number_of_pages": 128, "isbn_13": ["9780471937791"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:47:08.136285"}, "publish_date": "April 27, 1973", "latest_revision": 2, "key": "/books/OL10340732M", "authors": [{"key": "/authors/OL3424126A"}], "title": "Whipkey Ins Man Calculus", "subjects": ["Mathematics"], "works": [{"key": "/works/OL9388188W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10340790M 6 2022-10-27T23:05:21.626405 {"publishers": ["John Wiley & Sons"], "number_of_pages": 1008, "subtitle": "SIMS IX", "weight": "3.7 pounds", "physical_format": "Hardcover", "key": "/books/OL10340790M", "authors": [{"key": "/authors/OL1190193A"}, {"key": "/authors/OL3424145A"}, {"key": "/authors/OL3379946A"}], "contributions": ["H. W. Werner (Editor)"], "subjects": ["Mass Spectrometry", "Chemistry - Industrial & Technical", "Physics", "Science", "Science/Mathematics"], "edition_name": "1 edition", "languages": [{"key": "/languages/eng"}], "title": "Secondary Ion Mass Spectrometry", "identifiers": {"goodreads": ["4354838"]}, "isbn_13": ["9780471942184"], "isbn_10": ["0471942189"], "publish_date": "November 30, 1994", "works": [{"key": "/works/OL13568377W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.5 x 6.5 x 2 inches", "source_records": ["bwb:9780471942184", "amazon:0471942189"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-27T23:05:21.626405"}}
+/type/edition /books/OL10341518M 2 2009-12-15T00:47:09.171747 {"publishers": ["John Wiley & Sons Inc"], "title": "Zorbach Nucleic 2 Vl Set", "isbn_10": ["0471984205"], "isbn_13": ["9780471984207"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:47:09.171747"}, "publish_date": "October 27, 1972", "key": "/books/OL10341518M", "authors": [{"key": "/authors/OL3424419A"}], "latest_revision": 2, "subjects": ["Chemistry"], "works": [{"key": "/works/OL9388488W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL1034159M 2 2020-11-17T20:26:05.137880 {"publishers": ["Magazin"], "isbn_invalid": ["9639374029"], "subject_place": ["Hungary"], "lc_classifications": ["HC241.25.H9 R44 1992"], "latest_revision": 2, "key": "/books/OL1034159M", "publish_places": ["[Hungary]"], "contributions": ["Szu\u030bcs, Istva\u0301n, Dr.", "Bala\u0301zsne\u0301 Varga, Margit.", "Ga\u0301spa\u0301r, Tibor.", "Budapest Town Planning and Design Company Limited. Office for Regional Research and Urban Development."], "pagination": "47, 58 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:65242329:1171"], "title": "Regional relationships of the European integration and modernization in Hungary", "lccn": ["93228407"], "notes": {"type": "/type/text", "value": "\"Manuscript closed: August, 1992\"--P. 8."}, "number_of_pages": 58, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "subjects": ["European Economic Community -- Hungary.", "Hungary -- Foreign economic relations."], "publish_date": "1992", "publish_country": "hu ", "last_modified": {"type": "/type/datetime", "value": "2020-11-17T20:26:05.137880"}, "by_statement": "prepared by Office for Regional Research and Urban Development of Budapest Town Planning and Design Co., Ltd. ; with the support of Ministry of Industry and Trade ... [et. al. ; edited by, Istva\u0301n Szu\u030bcs, Bala\u0301zsne\u0301 Margit Varga, Tibor Ga\u0301spa\u0301r].", "works": [{"key": "/works/OL23521266W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL1034170M 6 2020-11-17T20:26:14.707632 {"other_titles": ["Dylan Thomas", "Filmscripts"], "publishers": ["J.M. Dent"], "identifiers": {"goodreads": ["3126593"]}, "isbn_10": ["0460860674"], "covers": [1237528], "lc_classifications": ["PR6039.H52 A6 1995"], "latest_revision": 6, "url": ["http://www.loc.gov/catdir/description/orion051/93228424.html", "http://www.loc.gov/catdir/bios/orion051/93228424.html"], "key": "/books/OL1034170M", "authors": [{"key": "/authors/OL139074A"}], "publish_places": ["London"], "contributions": ["Ackerman, John, 1934-"], "uri_descriptions": ["Publisher description", "Contributor biographical information"], "pagination": "xxvii, 414 p. ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:65251128:1019"], "title": "Dylan Thomas, the filmscripts", "dewey_decimal_class": ["791.43/75"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. [413]-414)."}, "number_of_pages": 414, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["93228424"], "subjects": ["Motion picture plays."], "publish_date": "1995", "publish_country": "enk", "last_modified": {"type": "/type/datetime", "value": "2020-11-17T20:26:14.707632"}, "by_statement": "edited by John Ackerman.", "oclc_numbers": ["33260422"], "works": [{"key": "/works/OL1358839W"}], "type": {"key": "/type/edition"}, "uris": ["http://www.loc.gov/catdir/description/orion051/93228424.html", "http://www.loc.gov/catdir/bios/orion051/93228424.html"], "revision": 6}
+/type/edition /books/OL10341989M 6 2022-02-26T00:45:06.029577 {"publishers": ["University of Michigan Press"], "languages": [{"key": "/languages/eng"}], "identifiers": {"goodreads": ["7159129"]}, "weight": "1 pounds", "title": "You Work Tomorrow: An Anthology of American Labor Poetry, 1929-41 (Class : Culture)", "number_of_pages": 248, "isbn_13": ["9780472070008"], "covers": [5420021, 5055528], "physical_format": "Hardcover", "authors": [{"key": "/authors/OL2657475A"}], "isbn_10": ["0472070002"], "key": "/books/OL10341989M", "publish_date": "December 26, 2007", "works": [{"key": "/works/OL7971866W"}], "type": {"key": "/type/edition"}, "subjects": ["Poetry anthologies: from c 1900 -", "Work & labour", "American - General", "Anthologies (multiple authors)", "Labor & Industrial Relations - General", "Political Science / Labor & Industrial Relations", "Poetry", "Politics / Current Events", "20th century", "American poetry", "Working class", "Working class writings, American"], "physical_dimensions": "9.2 x 6 x 0.8 inches", "lc_classifications": ["PS591.W65Y68 2007"], "source_records": ["bwb:9780472070008"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-26T00:45:06.029577"}}
+/type/edition /books/OL10342186M 6 2022-02-25T12:48:35.274653 {"publishers": ["University of Michigan Press"], "number_of_pages": 352, "subtitle": "Frontier, Immigration, and Empire in Han China, 130 B.C.-A.D.157", "weight": "1.6 pounds", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0472115340"], "identifiers": {"goodreads": ["2148152"]}, "isbn_13": ["9780472115341"], "covers": [2426458], "physical_format": "Hardcover", "key": "/books/OL10342186M", "authors": [{"key": "/authors/OL400920A"}], "publish_date": "April 18, 2007", "title": "The Rise of the Chinese Empire", "works": [{"key": "/works/OL2735635W"}], "type": {"key": "/type/edition"}, "subjects": ["Asian / Middle Eastern history: BCE to c 500 CE", "History", "History - General History", "History: World", "Ancient World", "Ancient - General", "Asia - China", "History / China", "China", "Han dynasty, 202 B.C.-220 A.D", "Qin dynasty, 221-207 B.C", "To 221 B.C"], "physical_dimensions": "9.4 x 5.7 x 1.4 inches", "lc_classifications": ["DS741.5.C41616 2006"], "source_records": ["bwb:9780472115341"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-25T12:48:35.274653"}}
+/type/edition /books/OL10342245M 3 2022-02-28T12:03:36.297801 {"physical_format": "Paperback", "subtitle": "Collected Papers", "publishers": ["Centers for South and Southeast Asia, Th"], "isbn_10": ["0472530518"], "number_of_pages": 592, "isbn_13": ["9780472530519"], "languages": [{"key": "/languages/eng"}], "publish_date": "August 1, 1999", "key": "/books/OL10342245M", "authors": [{"key": "/authors/OL3424621A"}], "title": "The Ram Khamaeng Controversy", "subjects": ["Asian / Middle Eastern history", "ASIA", "Social Science / Ethnic Studies", "Ethnic Studies - General", "Social Science", "Multicultural Nonfiction"], "works": [{"key": "/works/OL9388723W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780472530519"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-28T12:03:36.297801"}}
+/type/edition /books/OL10342404M 4 2021-01-23T21:53:57.386549 {"publishers": ["Harmony Healing"], "weight": "6.2 ounces", "covers": [2426524], "physical_format": "Paperback", "key": "/books/OL10342404M", "authors": [{"key": "/authors/OL2745418A"}, {"key": "/authors/OL2745419A"}], "subjects": ["General & Literary Fiction", "General", "Fiction", "Fiction - General"], "isbn_13": ["9780473096069"], "title": "The Journey Within", "number_of_pages": 156, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0473096064"], "publish_date": "June 30, 2003", "oclc_numbers": ["156262828"], "type": {"key": "/type/edition"}, "physical_dimensions": "8 x 5 x 0.7 inches", "works": [{"key": "/works/OL24161913W"}], "ocaid": "journeywithin0000mein", "source_records": ["ia:journeywithin0000mein"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-01-23T21:53:57.386549"}}
+/type/edition /books/OL10342590M 4 2022-12-04T11:44:00.899282 {"publishers": ["Pacific Learning"], "languages": [{"key": "/languages/eng"}], "title": "The Apple Star (First Stories, Set B)", "contributions": ["Adrian Heke (Photographer)"], "number_of_pages": 16, "physical_format": "Paperback", "isbn_10": ["047812595X"], "publish_date": "2000", "key": "/books/OL10342590M", "authors": [{"key": "/authors/OL3424797A"}], "oclc_numbers": ["61211501"], "works": [{"key": "/works/OL9388899W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:O8-CTX-788"], "source_records": ["promise:bwb_daily_pallets_2022-09-07"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T11:44:00.899282"}}
+/type/edition /books/OL10342712M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Amer Society for Testing &"], "title": "Refractory Metals and Their Industrial Applications", "isbn_13": ["9780484900003"], "isbn_10": ["0484900005"], "publish_date": "April 1985", "key": "/books/OL10342712M", "type": {"key": "/type/edition"}, "subjects": ["Congresses", "Heat resistant alloys"], "revision": 1}
+/type/edition /books/OL10343050M 2 2010-04-19T23:47:48.402915 {"publishers": ["Dover Pubns"], "weight": "6.4 ounces", "title": "The Flopsy Bunnies and Friends", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780486248844"], "physical_format": "Paperback", "authors": [{"key": "/authors/OL32541A"}], "isbn_10": ["0486248844"], "publish_date": "July 1987", "key": "/books/OL10343050M", "last_modified": {"type": "/type/datetime", "value": "2010-04-19T23:47:48.402915"}, "latest_revision": 2, "subjects": ["Children: Babies & Toddlers"], "works": [{"key": "/works/OL15067610W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "5.8 x 4.5 x 0.8 inches", "revision": 2}
+/type/edition /books/OL10343407M 5 2022-06-17T04:34:02.916225 {"publishers": ["Dover Pubns"], "physical_format": "Paperback", "weight": "0.8 ounces", "title": "Katie Kitten Paper Doll", "identifiers": {"goodreads": ["1798604"]}, "isbn_13": ["9780486268309"], "languages": [{"key": "/languages/eng"}], "authors": [{"key": "/authors/OL2745969A"}], "isbn_10": ["0486268306"], "publish_date": "September 1991", "key": "/books/OL10343407M", "works": [{"key": "/works/OL8251235W"}], "type": {"key": "/type/edition"}, "subjects": ["Crafts & Hobbies", "General", "Early learning / early learning concepts", "Children's Books/Ages 4-8 Fiction", "Children: Preschool"], "physical_dimensions": "5.8 x 4.2 x 0.2 inches", "source_records": ["bwb:9780486268309"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-17T04:34:02.916225"}}
+/type/edition /books/OL10343586M 4 2022-06-17T05:13:16.651756 {"publishers": ["Dover Pubns"], "weight": "1.6 ounces", "title": "Audubon Diary", "number_of_pages": 64, "isbn_13": ["9780486276243"], "physical_format": "Stationery", "isbn_10": ["0486276244"], "publish_date": "March 1993", "key": "/books/OL10343586M", "authors": [{"key": "/authors/OL21824A"}], "works": [{"key": "/works/OL15007851W"}], "type": {"key": "/type/edition"}, "subjects": ["Birds & Birdwatching", "Stationery items", "Blank Books / Diaries / Memory Books", "Blank Books/Journals"], "physical_dimensions": "0.2 x 4.5 x 5.8 inches", "source_records": ["bwb:9780486276243"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-17T05:13:16.651756"}}
+/type/edition /books/OL10344273M 6 2022-06-17T04:04:55.744242 {"publishers": ["Dover Publications"], "languages": [{"key": "/languages/eng"}], "identifiers": {"goodreads": ["6405553"]}, "weight": "0.8 ounces", "title": "Classic Motorcycles", "number_of_pages": 4, "isbn_13": ["9780486406039"], "covers": [2427172], "physical_format": "Pamphlet", "authors": [{"key": "/authors/OL2745976A"}], "isbn_10": ["0486406032"], "key": "/books/OL10344273M", "publish_date": "December 31, 1998", "works": [{"key": "/works/OL8251264W"}], "type": {"key": "/type/edition"}, "subjects": ["Stationery items", "Crafts & Hobbies", "Stationery / Gift Wrap", "Hobbies/Crafts", "Non-Classifiable", "Crafts & Hobbies / Papercrafts", "Papercrafts"], "physical_dimensions": "5.4 x 4.1 x 0.1 inches", "source_records": ["bwb:9780486406039"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-17T04:04:55.744242"}}
+/type/edition /books/OL1034463M 2 2020-11-17T20:29:48.269729 {"publishers": ["The Division"], "subtitle": "its scope and implications for North America's lawyers, businesses, and policymakers", "subject_place": ["North America.", "United States."], "lc_classifications": ["KDZ944.A41992 N675 1993"], "latest_revision": 2, "key": "/books/OL1034463M", "publish_places": ["[Chicago, IL]"], "contributions": ["American Bar Association. Section of International Law and Practice.", "American Bar Association. Division of Professional Education.", "American Bar Association. Section of Business Law."], "pagination": "1 v. (various pagings) :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:65516098:1462"], "title": "The North American Free Trade Agreement", "dewey_decimal_class": ["343.7/087", "347.03877"], "notes": {"type": "/type/text", "value": "\"National Institute\"--Cover.\n\"PC 576-0286\"--Back cover."}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["93228824"], "subjects": ["Canada.", "Tariff -- Law and legislation -- North America.", "Free trade -- North America.", "Free trade -- United States.", "Tariff -- Law and legislation -- United States."], "publish_date": "1993", "publish_country": "ilu", "last_modified": {"type": "/type/datetime", "value": "2020-11-17T20:29:48.269729"}, "by_statement": "a publication of the American Bar Association, Section of International Law and Practice and the Division for Professional Education ; in cooperation with the ABA Section of Business Law ... [et al.].", "oclc_numbers": ["27700523"], "works": [{"key": "/works/OL23521325W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10344822M 3 2019-02-19T06:50:26.239203 {"publishers": ["Dover Publications"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2019-02-19T06:50:26.239203"}, "source_records": ["marc:talis_openlibrary_contribution/talis-openlibrary-contribution.mrc:606403153:520"], "title": "Listen & Learn Portuguese", "number_of_pages": 180, "isbn_13": ["9780486999050"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["048699905X"], "publish_date": "October 1982", "key": "/books/OL10344822M", "authors": [{"key": "/authors/OL1806929A"}], "latest_revision": 3, "works": [{"key": "/works/OL6684694W"}], "type": {"key": "/type/edition"}, "subjects": ["Portuguese", "Foreign Language - Dictionaries / Phrase Books"], "revision": 3}
+/type/edition /books/OL10344866M 2 2009-10-15T19:42:06.322559 {"publishers": ["W.H Allen"], "source_records": ["amazon:0491010508"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_10": ["0491010508"], "number_of_pages": 276, "isbn_13": ["9780491010504"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2009-10-15T19:42:06.322559"}, "publish_date": "1973", "key": "/books/OL10344866M", "authors": [{"key": "/authors/OL34355A"}], "title": "On Cukor", "latest_revision": 2, "works": [{"key": "/works/OL53130W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10345917M 3 2011-04-30T04:46:14.878342 {"publishers": ["Icon Group International, Inc."], "last_modified": {"type": "/type/datetime", "value": "2011-04-30T04:46:14.878342"}, "title": "The 2006-2011 World Outlook for Ready-To-Serve Oat Breakfast Foods without Fruit and Nuts Excluding Infant Cereals", "number_of_pages": 199, "isbn_13": ["9780497014803"], "covers": [2428116], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Spiral-bound", "isbn_10": ["0497014807"], "publish_date": "April 14, 2005", "key": "/books/OL10345917M", "latest_revision": 3, "oclc_numbers": ["469077153"], "type": {"key": "/type/edition"}, "subjects": ["Business & Economics / General"], "revision": 3}
+/type/edition /books/OL10346156M 3 2011-04-28T05:47:53.748736 {"publishers": ["Icon Group International, Inc."], "last_modified": {"type": "/type/datetime", "value": "2011-04-28T05:47:53.748736"}, "title": "The 2006-2011 World Outlook for Consumer-Type Canned Milk-Based Dietary Supplements and Weight Control Products Excluding Substitutes", "number_of_pages": 198, "isbn_13": ["9780497017644"], "covers": [2428327], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Spiral-bound", "isbn_10": ["0497017644"], "publish_date": "April 14, 2005", "key": "/books/OL10346156M", "latest_revision": 3, "oclc_numbers": ["469076257"], "type": {"key": "/type/edition"}, "subjects": ["Business & Economics / General"], "revision": 3}
+/type/edition /books/OL10346523M 2 2010-04-13T05:50:23.081550 {"publishers": ["Icon Group International, Inc."], "isbn_10": ["0497021838"], "number_of_pages": 187, "isbn_13": ["9780497021832"], "covers": [2428668], "physical_format": "Spiral-bound", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:50:23.081550"}, "publish_date": "April 14, 2005", "latest_revision": 2, "key": "/books/OL10346523M", "title": "The 2006-2011 World Outlook for Bottled Unprocessed Whiskey", "subjects": ["Business & Economics / General"], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10346593M 1 2008-04-30T09:38:13.731961 {"physical_format": "Spiral-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Icon Group International, Inc."], "number_of_pages": 197, "isbn_13": ["9780497022662"], "isbn_10": ["0497022664"], "publish_date": "April 14, 2005", "key": "/books/OL10346593M", "title": "The 2006-2011 World Outlook for Finished Twill-Weave Manmade Fiber and Silk Broadwoven Fabrics Made from at Least 85-Percent Spun Yarn Finished in Weaving Mills Excluding Pile", "type": {"key": "/type/edition"}, "subjects": ["Business & Economics / General"], "revision": 1}
+/type/edition /books/OL10346752M 2 2010-04-13T05:50:23.081550 {"publishers": ["Icon Group International, Inc."], "isbn_10": ["0497024659"], "number_of_pages": 188, "isbn_13": ["9780497024659"], "covers": [2428878], "physical_format": "Spiral-bound", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:50:23.081550"}, "publish_date": "April 14, 2005", "latest_revision": 2, "key": "/books/OL10346752M", "title": "The 2006-2011 World Outlook for Foam Rubber Pillows and Cushions Excluding Bed and Fancy", "subjects": ["Business & Economics / General"], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10346834M 2 2010-04-13T05:50:23.081550 {"publishers": ["Icon Group International, Inc."], "isbn_10": ["0497025701"], "number_of_pages": 188, "isbn_13": ["9780497025700"], "covers": [2428955], "physical_format": "Spiral-bound", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:50:23.081550"}, "publish_date": "April 14, 2005", "latest_revision": 2, "key": "/books/OL10346834M", "title": "The 2006-2011 World Outlook for Men's and Junior Boys' Knit Shirts Made in Knitting Mills", "subjects": ["Business & Economics / General"], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10346953M 2 2010-04-13T05:50:23.081550 {"publishers": ["Icon Group International, Inc."], "isbn_10": ["0497027267"], "number_of_pages": 197, "isbn_13": ["9780497027261"], "covers": [2429069], "physical_format": "Spiral-bound", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:50:23.081550"}, "publish_date": "April 14, 2005", "latest_revision": 2, "key": "/books/OL10346953M", "title": "The 2006-2011 World Outlook for Softwood Rough Lumber of Less Than 2 Inches in Nominal Thickness Not Edge Worked Made in Sawmills", "subjects": ["Business & Economics / General"], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10347008M 2 2010-04-13T05:50:23.081550 {"publishers": ["Icon Group International, Inc."], "isbn_10": ["0497027968"], "number_of_pages": 186, "isbn_13": ["9780497027964"], "covers": [2429123], "physical_format": "Spiral-bound", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:50:23.081550"}, "publish_date": "April 14, 2005", "latest_revision": 2, "key": "/books/OL10347008M", "title": "The 2006-2011 World Outlook for Waferboard and Oriented Strandboard", "subjects": ["Business & Economics / General"], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10347362M 2 2010-04-13T05:50:23.081550 {"publishers": ["Icon Group International, Inc."], "isbn_10": ["0497032228"], "number_of_pages": 187, "isbn_13": ["9780497032227"], "covers": [2429462], "physical_format": "Spiral-bound", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:50:23.081550"}, "publish_date": "April 14, 2005", "latest_revision": 2, "key": "/books/OL10347362M", "title": "The 2006-2011 World Outlook for Printing and Binding of Hardbound Reference Books", "subjects": ["Business & Economics / General"], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10347634M 2 2010-04-13T05:50:23.081550 {"publishers": ["Icon Group International, Inc."], "isbn_10": ["049703543X"], "number_of_pages": 188, "isbn_13": ["9780497035433"], "covers": [2429723], "physical_format": "Spiral-bound", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:50:23.081550"}, "publish_date": "April 14, 2005", "latest_revision": 2, "key": "/books/OL10347634M", "title": "The 2006-2011 World Outlook for Anti-Neoplastic Radioactive Isotopes for Internal Pharmaceutical Use", "subjects": ["Business & Economics / General"], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10348300M 2 2010-04-13T05:50:23.081550 {"publishers": ["Icon Group International, Inc."], "isbn_10": ["049704322X"], "number_of_pages": 199, "isbn_13": ["9780497043223"], "covers": [2430259], "physical_format": "Spiral-bound", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:50:23.081550"}, "publish_date": "April 14, 2005", "latest_revision": 2, "key": "/books/OL10348300M", "title": "The 2006-2011 World Outlook for Swinging Residential Aluminum Doors Excluding Shower Doors, Tub Enclosures, and Storm Doors", "subjects": ["Business & Economics / General"], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10348662M 4 2019-07-30T19:46:52.678453 {"publishers": ["Golden books"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2019-07-30T19:46:52.678453"}, "title": "Here We Go", "identifiers": {"librarything": ["8085690"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780307060723"], "isbn_10": ["0307060721"], "publish_date": "February 1981", "key": "/books/OL10348662M", "latest_revision": 4, "oclc_numbers": ["8232577"], "works": [{"key": "/works/OL16041970W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10349103M 7 2022-04-07T21:12:07.283339 {"publishers": ["Golden Books Publishing Company"], "identifiers": {"goodreads": ["2289855"]}, "subtitle": "Coloring Book", "weight": "2.6 ounces", "covers": [2358668], "physical_format": "Paperback", "key": "/books/OL10349103M", "authors": [{"key": "/authors/OL27452A"}], "subjects": ["Activity Books - Coloring Books", "Children's 4-8 - Coloring & Design Books"], "languages": [{"key": "/languages/eng"}], "title": "Sleeping Beauty", "number_of_pages": 32, "isbn_13": ["9780307087195"], "isbn_10": ["0307087190"], "publish_date": "February 1997", "works": [{"key": "/works/OL8043641W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.9 x 7.9 x 0.1 inches", "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-04-07T21:12:07.283339"}}
+/type/edition /books/OL1034914M 3 2020-11-17T20:36:11.267211 {"publishers": ["Oblastni\u0301 galerie Vysoc\u030ciny v Jihlave\u030c"], "subtitle": "obrazy z let 1970-1984.", "lc_classifications": ["MLCS 93/13723 (N)"], "latest_revision": 3, "key": "/books/OL1034914M", "authors": [{"key": "/authors/OL556066A"}], "publish_places": ["Jihlava"], "contributions": ["Oblastni\u0301 galerie Vysoc\u030ciny v Jihlave\u030c."], "pagination": "[20] p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:66014000:571"], "title": "J. M. Najmr", "lccn": ["93229562"], "number_of_pages": 20, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/cze"}], "last_modified": {"type": "/type/datetime", "value": "2020-11-17T20:36:11.267211"}, "publish_date": "1985", "publish_country": "cs ", "works": [{"key": "/works/OL3395564W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10349846M 6 2020-03-11T16:54:43.235692 {"publishers": ["Goldencraft"], "classifications": {}, "last_modified": {"type": "/type/datetime", "value": "2020-03-11T16:54:43.235692"}, "title": "I Want to Read", "identifiers": {"goodreads": ["6519707"], "librarything": ["437826"]}, "isbn_13": ["9780307108791"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "School & Library Binding", "isbn_10": ["0307108791"], "publish_date": "September 1965", "key": "/books/OL10349846M", "latest_revision": 6, "oclc_numbers": ["30704356"], "works": [{"key": "/works/OL32480W"}], "type": {"key": "/type/edition"}, "subjects": ["1950-", "Primers"], "revision": 6}
+/type/edition /books/OL10349984M 5 2022-03-29T00:13:12.543545 {"publishers": ["Western Pub. Co"], "languages": [{"key": "/languages/eng"}], "title": "My first golden dictionary", "identifiers": {"librarything": ["71262"]}, "isbn_13": ["9780307114174"], "physical_format": "Unknown Binding", "isbn_10": ["0307114171"], "publish_date": "1949", "key": "/books/OL10349984M", "authors": [{"key": "/authors/OL834240A"}], "works": [{"key": "/works/OL4296120W"}], "type": {"key": "/type/edition"}, "subjects": ["Dictionaries", "English language", "Picture dictionaries"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-29T00:13:12.543545"}}
+/type/edition /books/OL10350054M 6 2020-09-10T00:33:26.143205 {"publishers": ["Golden Pr"], "identifiers": {"goodreads": ["3397715"], "librarything": ["15445"]}, "ia_box_id": ["IA112909"], "weight": "9 ounces", "covers": [6997204], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2020-09-10T00:33:26.143205"}, "latest_revision": 6, "key": "/books/OL10350054M", "authors": [{"key": "/authors/OL35198A"}], "ocaid": "noahsarkgenesis600brou", "subjects": ["Bible - Study - Old Testament", "Religion - Biblical Studies", "Bible stories", "Bible stories, English", "Juvenile literature", "Noah's ark", "O.T. Genesis", "Children: Babies & Toddlers"], "isbn_13": ["9780307116215"], "source_records": ["ia:noahsarkgenesis600brou", "marc:marc_loc_2016/BooksAll.2016.part01.utf8:60524696:1000"], "title": "Noah's Ark: Genesis 6:5-9:17 (Golden Bible Stories/Pbn 11621)", "number_of_pages": 24, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0307116212"], "publish_date": "August 1985", "works": [{"key": "/works/OL16336472W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8 x 6.8 x 0.6 inches", "revision": 6}
+/type/edition /books/OL10350265M 3 2010-08-17T01:27:18.515894 {"publishers": ["Golden books"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-08-17T01:27:18.515894"}, "title": "Who Lives Here?", "identifiers": {"librarything": ["2173140"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780307121479"], "isbn_10": ["030712147X"], "publish_date": "October 1974", "key": "/books/OL10350265M", "authors": [{"key": "/authors/OL3425327A"}], "latest_revision": 3, "works": [{"key": "/works/OL9389528W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10350284M 12 2022-12-09T17:45:06.745331 {"publishers": ["Golden Pr"], "number_of_pages": 29, "ia_box_id": ["IA103620"], "weight": "11.2 ounces", "isbn_10": ["030712181X"], "covers": [7161710], "physical_format": "Hardcover", "ia_loaded_id": ["disneystwominute00pack"], "lc_classifications": ["MLCM 92/01270 (P)"], "key": "/books/OL10350284M", "authors": [{"key": "/authors/OL26444A"}, {"key": "/authors/OL3425330A"}, {"key": "/authors/OL3041567A"}], "ocaid": "disneystwominute00pack", "contributions": ["Patricia Keppler (Illustrator)"], "languages": [{"key": "/languages/eng"}], "source_records": ["ia:disneystwominute00pack", "marc:marc_loc_2016/BooksAll.2016.part18.utf8:29658542:890", "promise:bwb_daily_pallets_2021-03-08", "promise:bwb_daily_pallets_2020-11-20", "promise:bwb_daily_pallets_2020-11-10"], "title": "Disney's Two-Minute Good Night Stories (Two-minute stories)", "lccn": ["87083200"], "identifiers": {"librarything": ["2553412"], "goodreads": ["166737"]}, "isbn_13": ["9780307121813"], "edition_name": "Revised edition", "subjects": ["General", "Children's 4-8", "Children's stories", "Short stories", "Children: Grades 1-2"], "publish_date": "July 1994", "oclc_numbers": ["18513618"], "works": [{"key": "/works/OL15125929W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "11.2 x 8.2 x 0.5 inches", "local_id": ["urn:bwbsku:O7-ACP-768", "urn:bwbsku:O7-BIN-458", "urn:bwbsku:P6-AUJ-490"], "latest_revision": 12, "revision": 12, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T17:45:06.745331"}}
+/type/edition /books/OL10350909M 4 2010-04-24T18:01:45.306254 {"publishers": ["Golden Pr Audio"], "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:01:45.306254"}, "title": "My Pet Monster Goes to School/Audio Cassette (My Pet Monster)", "identifiers": {"goodreads": ["3012973"]}, "isbn_13": ["9780307139351"], "physical_format": "Audio Cassette", "isbn_10": ["0307139352"], "publish_date": "October 1986", "key": "/books/OL10350909M", "authors": [{"key": "/authors/OL2898976A"}], "latest_revision": 4, "works": [{"key": "/works/OL8619188W"}], "type": {"key": "/type/edition"}, "subjects": ["Audio: Juvenile"], "revision": 4}
+/type/edition /books/OL10350943M 4 2018-09-11T15:49:27.955162 {"publishers": ["Golden Press Audio", "Western Publishing Co."], "contributors": [{"role": "Illustrator", "name": "Norman Green"}], "series": ["Muppet Babies"], "edition_name": "Book&Cassette edition", "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2018-09-11T15:49:27.955162"}, "latest_revision": 4, "key": "/books/OL10350943M", "authors": [{"key": "/authors/OL1128665A"}, {"key": "/authors/OL1436184A"}], "publish_places": ["New York", "Racine, Wisconsin"], "subjects": ["Audio: Juvenile"], "isbn_13": ["9780307139801"], "classifications": {}, "title": "Jim Henson presents the giant next door", "identifiers": {}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0307139808"], "publish_date": "July 1986", "oclc_numbers": ["15648871", "18010137"], "works": [{"key": "/works/OL17919550W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10351358M 7 2012-06-13T05:49:58.223460 {"publishers": ["Golden Books"], "identifiers": {"librarything": ["1262399"], "goodreads": ["2921436"]}, "weight": "6.4 ounces", "covers": [2359426, 166384], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2012-06-13T05:49:58.223460"}, "latest_revision": 7, "key": "/books/OL10351358M", "authors": [{"key": "/authors/OL241975A"}], "subjects": ["Religious - General", "Juvenile Fiction / Religious / General", "Children's 4-8", "Children's Books/Ages 4-8 Fiction", "Easter", "Fiction", "Stories in rhyme", "Children: Kindergarten"], "isbn_13": ["9780307161468"], "classifications": {}, "title": "The Wonder of Easter", "notes": {"type": "/type/text", "value": "Little Golden Storybook"}, "number_of_pages": 24, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0307161463"], "publish_date": "January 1, 1998", "works": [{"key": "/works/OL2008858W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.8 x 7.2 x 0.5 inches", "revision": 7}
+/type/edition /books/OL10351798M 4 2022-10-28T16:57:09.551121 {"publishers": ["Golden Books"], "languages": [{"key": "/languages/eng"}], "weight": "5.6 ounces", "title": "SpongeBob (Spongebob)", "isbn_10": ["030720054X"], "number_of_pages": 12, "isbn_13": ["9780307200549"], "covers": [2359550, 166511], "edition_name": "Toy edition", "physical_format": "Board book", "key": "/books/OL10351798M", "authors": [{"key": "/authors/OL2675811A"}], "publish_date": "June 1, 2001", "works": [{"key": "/works/OL8042918W"}], "type": {"key": "/type/edition"}, "subjects": ["Activity Books - General", "Juvenile Fiction / Movie or Television Tie-In", "Media Tie-In", "Juvenile Fiction", "Children's Books/Ages 4-8 Nonfiction", "Children: Grades 1-2"], "physical_dimensions": "9.1 x 7.6 x 1 inches", "source_records": ["amazon:030720054X"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-28T16:57:09.551121"}}
+/type/edition /books/OL10352168M 2 2009-12-15T00:47:16.945279 {"physical_format": "Paperback", "publishers": ["Golden Books"], "isbn_10": ["0307235734"], "number_of_pages": 32, "isbn_13": ["9780307235732"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:47:16.945279"}, "publish_date": "September 25, 1983", "latest_revision": 2, "key": "/books/OL10352168M", "authors": [{"key": "/authors/OL2675811A"}], "title": "Story Problems", "subjects": ["General", "Juvenile Fiction / General", "Children's 9-12"], "works": [{"key": "/works/OL8042991W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10352300M 7 2022-12-10T11:43:17.332908 {"publishers": ["Golden Books"], "identifiers": {"goodreads": ["638857"], "librarything": ["2763597"], "amazon": [""]}, "weight": "5.3 ounces", "covers": [2359803, 166977], "physical_format": "Paperback", "key": "/books/OL10352300M", "authors": [{"key": "/authors/OL720558A"}], "contributions": ["Phil Wilson (Illustrator)"], "subjects": ["Activity Books", "Activity Books - General", "Animals - Dinosaurs", "Juvenile Nonfiction / Activity Books", "Animals - Dinosaurs & Prehistoric Creatures", "Juvenile Nonfiction", "Children's 4-8 - Activity Books", "Children's Books/Ages 4-8 Nonfiction", "Children: Grades 2-3"], "isbn_13": ["9780307252029"], "title": "Totally Amazing Dinosaurs (Full-Color Activity Book)", "number_of_pages": 48, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0307252027"], "publish_date": "March 1, 2000", "works": [{"key": "/works/OL3949821W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "11 x 8.5 x 0.2 inches", "local_id": ["urn:bwbsku:W3-DAG-060"], "source_records": ["promise:bwb_daily_pallets_2020-04-09"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T11:43:17.332908"}}
+/type/edition /books/OL10352747M 8 2011-04-30T08:28:00.434471 {"publishers": ["Listening Library"], "covers": [2360077], "physical_format": "Audio Cassette", "last_modified": {"type": "/type/datetime", "value": "2011-04-30T08:28:00.434471"}, "latest_revision": 8, "key": "/books/OL10352747M", "authors": [{"key": "/authors/OL25794A"}, {"key": "/authors/OL216307A"}], "contributions": ["Cassandra Morris (Narrator)", "Alison Larkin (Narrator)"], "subjects": ["Social Issues - General", "Children's Audio - 9-12"], "languages": [{"key": "/languages/eng"}], "title": "The Disney Fairies Collection #1 - The Trouble with Tink and Beck and the Great Berry Battle", "identifiers": {"librarything": ["1806931"], "goodreads": ["645312"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780307285614"], "isbn_10": ["0307285618"], "publish_date": "January 2006", "oclc_numbers": ["62322211"], "works": [{"key": "/works/OL15072463W"}], "type": {"key": "/type/edition"}, "revision": 8}
+/type/edition /books/OL10352986M 3 2010-08-17T01:29:09.931005 {"publishers": ["Golden Books Publishing Company"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2010-08-17T01:29:09.931005"}, "weight": "5 ounces", "title": "Snow White Deluxe Pap", "identifiers": {"librarything": ["1932794"]}, "isbn_13": ["9780307302441"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Hardcover", "isbn_10": ["030730244X"], "publish_date": "March 1999", "key": "/books/OL10352986M", "authors": [{"key": "/authors/OL2675811A"}], "latest_revision": 3, "works": [{"key": "/works/OL8042835W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "11.9 x 9.9 x 0.1 inches", "revision": 3}
+/type/edition /books/OL10353594M 11 2022-12-27T13:52:42.529507 {"publishers": ["Vintage"], "number_of_pages": 128, "isbn_10": ["0307388808"], "physical_format": "Paperback", "lc_classifications": ["", "PS3563.A4345 N68 2008"], "key": "/books/OL10353594M", "authors": [{"key": "/authors/OL19697A"}], "subjects": ["Mamet, David - Plays & Criticism", "Drama", "Plays / Drama", "Plays", "American", "Drama / American"], "languages": [{"key": "/languages/eng"}], "source_records": ["marc:marc_openlibraries_sanfranciscopubliclibrary/sfpl_chq_2018_12_24_run03.mrc:330621512:2642", "bwb:9780307388803", "marc:marc_loc_2016/BooksAll.2016.part35.utf8:98236299:608", "marc:marc_columbia/Columbia-extract-20221130-014.mrc:81394814:940"], "title": "November (Vintage)", "identifiers": {"librarything": ["5829470"], "goodreads": ["1419418"]}, "isbn_13": ["9780307388803"], "local_id": ["urn:sfpl:31223086749166", "urn:sfpl:31223086749158", "urn:sfpl:31223086749133", "urn:sfpl:31223086749125", "urn:sfpl:31223086749141"], "publish_date": "June 24, 2008", "works": [{"key": "/works/OL14912222W"}], "type": {"key": "/type/edition"}, "lccn": ["2008004925"], "oclc_numbers": ["191865722"], "latest_revision": 11, "revision": 11, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-27T13:52:42.529507"}}
+/type/edition /books/OL10353609M 9 2020-04-05T13:23:37.668450 {"publishers": ["Random House Mondadori"], "number_of_pages": 160, "weight": "9.6 ounces", "covers": [2360566, 168431], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2020-04-05T13:23:37.668450"}, "latest_revision": 9, "key": "/books/OL10353609M", "authors": [{"key": "/authors/OL4327308A"}], "subjects": ["Roth, Philip - Prose & Criticism", "Spanish (Language) Contemporary Fiction", "Fiction", "Fiction - General", "Spanish: Adult Fiction", "General", "Fiction / General", "Literary"], "isbn_13": ["9780307391117"], "source_records": ["amazon:0307391116"], "title": "Elegia (Literatura Mondadori)", "identifiers": {"librarything": ["3774085"], "goodreads": ["29736"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/spa"}], "isbn_10": ["0307391116"], "publish_date": "February 6, 2007", "oclc_numbers": ["85847646"], "works": [{"key": "/works/OL74656W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.9 x 5.5 x 0.7 inches", "revision": 9}
+/type/edition /books/OL10353664M 8 2020-07-09T05:52:40.431594 {"publishers": ["Grijalbo"], "identifiers": {"goodreads": ["2897743"], "librarything": ["6618516"]}, "weight": "8 ounces", "isbn_10": ["0307392244"], "covers": [2360616], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2020-07-09T05:52:40.431594"}, "latest_revision": 8, "key": "/books/OL10353664M", "authors": [{"key": "/authors/OL3425628A"}], "ocaid": "larevolucinrebel0000alon", "subjects": ["Biography And Autobiography", "Biography & Autobiography", "Biography / Autobiography", "Spanish: Adult Nonfiction", "Entertainment & Performing Arts - General", "Biography & Autobiography / Entertainment & Performing Arts", "Rich & Famous", "Rebelde (Television program)"], "isbn_13": ["9780307392244"], "source_records": ["marc:marc_openlibraries_sanfranciscopubliclibrary/sfpl_chq_2018_12_24_run04.mrc:68384302:2508", "ia:larevolucinrebel0000alon"], "title": "La Revolucion Rebelde", "number_of_pages": 224, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/spa"}], "local_id": ["urn:sfpl:31223091276130", "urn:sfpl:31223091276114"], "publish_date": "December 4, 2007", "works": [{"key": "/works/OL9389933W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.1 x 5.9 x 0.9 inches", "revision": 8}
+/type/edition /books/OL10353763M 9 2021-02-24T04:59:50.679272 {"publishers": ["Crown"], "number_of_pages": 320, "subtitle": "Toppling the Big Myths of Republican Politics", "local_id": ["urn:sfpl:31223081349004", "urn:sfpl:31223081348998", "urn:mgc:31927000820123"], "physical_format": "Hardcover", "key": "/books/OL10353763M", "authors": [{"key": "/authors/OL3034696A"}], "subjects": ["Political Process - Political Parties", "Political Science / Political Parties", "Political Science", "Politics / Current Events", "Politics/International Relations"], "isbn_13": ["9780307408020"], "source_records": ["marc:marc_openlibraries_sanfranciscopubliclibrary/sfpl_chq_2018_12_24_run03.mrc:238417106:2169", "marc:marc_marygrove/marygrovecollegelibrary.full.D20191108.T213022.internetarchive2nd_REPACK.mrc:174366010:2723", "marc:marc_loc_2016/BooksAll.2016.part35.utf8:103500570:1615", "ia:greatamericanhyp0000gree"], "title": "Great American Hypocrites", "identifiers": {"librarything": ["4154204"], "goodreads": ["2004823"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0307408027"], "publish_date": "April 15, 2008", "works": [{"key": "/works/OL8848150W"}], "type": {"key": "/type/edition"}, "lccn": ["2008009179"], "lc_classifications": ["JK2356 .G73 2008"], "covers": [10658012], "ocaid": "greatamericanhyp0000gree", "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-02-24T04:59:50.679272"}}
+/type/edition /books/OL10353815M 2 2009-12-15T00:47:19.830723 {"physical_format": "Paperback", "publishers": ["Golden Books"], "isbn_10": ["0307412784"], "number_of_pages": 1, "isbn_13": ["9780307412782"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:47:19.830723"}, "publish_date": "May 28, 1999", "latest_revision": 2, "key": "/books/OL10353815M", "authors": [{"key": "/authors/OL2675811A"}], "title": "Noah's Ark #1", "subjects": ["General", "Juvenile Fiction", "Juvenile Fiction / General", "Children's 9-12", "Children's All Ages"], "works": [{"key": "/works/OL8041968W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10353843M 6 2022-12-04T14:21:13.651738 {"publishers": ["Golden books"], "physical_format": "Paperback", "title": "Step by Step Ceramics", "identifiers": {"goodreads": ["1889147"], "librarything": ["334589"]}, "isbn_13": ["9780307420015"], "isbn_10": ["0307420019"], "publish_date": "September 1972", "key": "/books/OL10353843M", "authors": [{"key": "/authors/OL3425664A"}], "works": [{"key": "/works/OL9389968W"}], "type": {"key": "/type/edition"}, "subjects": ["Pottery"], "local_id": ["urn:bwbsku:O8-DCM-309"], "source_records": ["promise:bwb_daily_pallets_2022-08-30"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T14:21:13.651738"}}
+/type/edition /books/OL10353955M 6 2014-04-05T20:09:35.203121 {"publishers": ["Golden Books"], "number_of_pages": 48, "subtitle": "Barbie (Road to Writing Mile 2)", "weight": "3.7 ounces", "covers": [2360732, 168544], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2014-04-05T20:09:35.203121"}, "latest_revision": 6, "key": "/books/OL10353955M", "authors": [{"key": "/authors/OL2675811A"}], "ocaid": "sunfun00gold", "subjects": ["General", "Juvenile Nonfiction / Language Arts / General", "Girls & Women", "Juvenile Fiction", "Children's 4-8 - Language Arts", "Children: Kindergarten"], "isbn_13": ["9780307456090"], "title": "Sun and Fun", "identifiers": {"goodreads": ["1306550"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0307456099"], "publish_date": "February 1, 2002", "works": [{"key": "/works/OL8043004W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.6 x 6.6 x 0.2 inches", "revision": 6}
+/type/edition /books/OL10354610M 5 2010-08-17T01:32:15.489166 {"publishers": ["Goldencraft"], "physical_format": "School & Library Binding", "last_modified": {"type": "/type/datetime", "value": "2010-08-17T01:32:15.489166"}, "title": "Trixie Belden and the Mystery at Bob-White Cave", "identifiers": {"goodreads": ["1279746"], "librarything": ["96555"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780307615862"], "isbn_10": ["0307615863"], "publish_date": "April 1979", "key": "/books/OL10354610M", "authors": [{"key": "/authors/OL805639A"}], "latest_revision": 5, "works": [{"key": "/works/OL4217068W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10354777M 6 2011-04-28T17:37:27.740708 {"publishers": ["Goldencraft"], "languages": [{"key": "/languages/eng"}], "subtitle": "The Great Lost Treasure Hunt (Golden Look-Look Books)", "last_modified": {"type": "/type/datetime", "value": "2011-04-28T17:37:27.740708"}, "title": "Disney's Duck Tales", "identifiers": {"librarything": ["3973576"], "goodreads": ["7018038"]}, "isbn_13": ["9780307625656"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Hardcover", "isbn_10": ["0307625656"], "publish_date": "June 1989", "key": "/books/OL10354777M", "authors": [{"key": "/authors/OL2348071A"}], "latest_revision": 6, "oclc_numbers": ["19767938"], "works": [{"key": "/works/OL7644550W"}], "type": {"key": "/type/edition"}, "subjects": ["Adventure and adventurers", "Fiction", "Children: Babies & Toddlers"], "revision": 6}
+/type/edition /books/OL10354908M 3 2010-08-17T01:32:15.489166 {"publishers": ["Goldencraft"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2010-08-17T01:32:15.489166"}, "title": "The Big Golden Book of Fairy Tales (Read-to/Primary Reading Books)", "identifiers": {"librarything": ["665545"]}, "isbn_13": ["9780307655455"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Hardcover", "isbn_10": ["0307655458"], "publish_date": "April 1985", "key": "/books/OL10354908M", "authors": [{"key": "/authors/OL1455022A"}], "latest_revision": 3, "works": [{"key": "/works/OL5896854W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10355816M 6 2022-11-15T14:54:46.954972 {"publishers": ["Golden Books"], "languages": [{"key": "/languages/eng"}], "title": "Willie Wonka & the Chocolate Factory", "identifiers": {"goodreads": ["967761"], "librarything": ["1283238"]}, "isbn_13": ["9780307901453"], "physical_format": "Hardcover", "isbn_10": ["0307901459"], "publish_date": "December 8, 1993", "key": "/books/OL10355816M", "authors": [{"key": "/authors/OL2675811A"}], "works": [{"key": "/works/OL8043464W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Juvenile Fiction / General", "Children's 9-12"], "source_records": ["amazon:0307901459"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-15T14:54:46.954972"}}
+/type/edition /books/OL10356341M 6 2020-10-07T00:52:46.392625 {"number_of_pages": 49, "subtitle": "4 reports prepared for the 52nd annual meeting (Highway research record)", "isbn_10": ["030902188X"], "physical_format": "Unknown Binding", "lc_classifications": ["TE7 .H5 no. 455", "HE333 .H5 no. 455"], "latest_revision": 6, "key": "/books/OL10356341M", "authors": [{"key": "/authors/OL1901196A"}], "isbn_13": ["9780309021883"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part08.utf8:9107917:786"], "title": "Application of interactive graphics to transportation systems planning;", "lccn": ["73015104"], "identifiers": {"goodreads": ["3826854"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "subjects": ["Data processing", "Traffic engineering"], "last_modified": {"type": "/type/datetime", "value": "2020-10-07T00:52:46.392625"}, "works": [{"key": "/works/OL2206969W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL10356363M 6 2020-10-09T06:13:43.204073 {"publishers": ["Natl Academy Pr"], "identifiers": {"goodreads": ["4036701"]}, "isbn_10": ["0309022304"], "covers": [5056539, 4467646], "physical_format": "Paperback", "lc_classifications": ["GC41 .N37 1974"], "latest_revision": 6, "key": "/books/OL10356363M", "authors": [{"key": "/authors/OL1660476A"}], "isbn_13": ["9780309022309"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part08.utf8:104824505:698"], "title": "Directions for Data Buoy Technology, 1978-1983", "lccn": ["74007082"], "number_of_pages": 101, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "subjects": ["Oceanographic buoys"], "publish_date": "June 1984", "last_modified": {"type": "/type/datetime", "value": "2020-10-09T06:13:43.204073"}, "works": [{"key": "/works/OL6345454W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL10356437M 6 2020-10-08T01:27:29.936955 {"publishers": ["Transportation Research Board, National Research Council"], "number_of_pages": 47, "subtitle": "4 reports prepared for the 53rd annual meeting of the Highway Research Board (Transportation research record)", "physical_format": "Unknown Binding", "lc_classifications": ["TE7 .H5 no. 520", "TL152.3 .H5 no. 520"], "latest_revision": 6, "key": "/books/OL10356437M", "authors": [{"key": "/authors/OL1901196A"}], "languages": [{"key": "/languages/eng"}], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part09.utf8:19992554:819"], "title": "Driver performance", "lccn": ["75001461"], "identifiers": {"goodreads": ["5876098"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780309023658"], "isbn_10": ["0309023653"], "publish_date": "1974", "last_modified": {"type": "/type/datetime", "value": "2020-10-08T01:27:29.936955"}, "works": [{"key": "/works/OL2207043W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL10356688M 9 2022-12-14T07:45:07.197800 {"identifiers": {"goodreads": ["5043164"], "librarything": ["4245285"]}, "title": "Research Priorities in Tropical Biology", "authors": [{"key": "/authors/OL3425982A"}], "publish_date": "December 1980", "publishers": ["Natl Academy Pr"], "physical_format": "Paperback", "lc_classifications": ["QH84.5 .N37 1980"], "subjects": ["Biological Research", "Biology", "Ecology", "Research", "Tropics"], "languages": [{"key": "/languages/eng"}], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part12.utf8:154358769:968", "ia:researchprioriti0000asse", "marc:marc_columbia/Columbia-extract-20221130-001.mrc:246194500:1424"], "lccn": ["80015773"], "isbn_13": ["9780309030434"], "isbn_10": ["0309030439"], "type": {"key": "/type/edition"}, "ocaid": "researchprioriti0000asse", "key": "/books/OL10356688M", "number_of_pages": 116, "works": [{"key": "/works/OL9390352W"}], "oclc_numbers": ["6356514"], "covers": [13077534], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-14T07:45:07.197800"}}
+/type/edition /books/OL10356718M 4 2022-12-08T02:54:22.843060 {"publishers": ["National Academy Press"], "identifiers": {"librarything": ["3503351"]}, "source_records": ["marc:marc_loc_2016/BooksAll.2016.part13.utf8:90970781:956", "marc:marc_columbia/Columbia-extract-20221130-001.mrc:100242232:1447"], "title": "Techniques for the Study of Primate Population Today", "lccn": ["81011345"], "type": {"key": "/type/edition"}, "number_of_pages": 233, "isbn_13": ["9780309031790"], "languages": [{"key": "/languages/eng"}], "lc_classifications": ["QL737.P9 T43"], "publish_date": "May 1982", "key": "/books/OL10356718M", "works": [{"key": "/works/OL22678966W"}], "physical_format": "Paperback", "isbn_10": ["0309031796"], "oclc_numbers": ["7741130"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-08T02:54:22.843060"}}
+/type/edition /books/OL10356968M 8 2020-11-02T19:06:25.682886 {"publishers": ["Transportation Research Board National Resear"], "number_of_pages": 60, "physical_format": "Paperback", "lc_classifications": ["TE7 .N25 no. 278", "TG340 .N25 no. 278"], "latest_revision": 8, "key": "/books/OL10356968M", "authors": [{"key": "/authors/OL3426119A"}], "subjects": ["Engineering - Civil", "Bridge Engineering", "Concrete Structures", "Technology & Industrial Arts", "Bridges, Concrete", "Cathodic protection", "Foundations and piers"], "isbn_13": ["9780309038621"], "classifications": {}, "source_records": ["marc:marc_records_scriblio_net/part18.dat:20087450:990", "marc:marc_loc_updates/v36.i50.records.utf8:1843439:1019", "marc:marc_loc_2016/BooksAll.2016.part16.utf8:104581011:1019"], "title": "Cathodic Protection of Concrete Bridge Substructures", "lccn": ["85051793"], "notes": {"type": "/type/text", "value": "Report (National Cooperative Highway Research Program"}, "identifiers": {"goodreads": ["4016489"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0309038626"], "publish_date": "September 1985", "last_modified": {"type": "/type/datetime", "value": "2020-11-02T19:06:25.682886"}, "works": [{"key": "/works/OL9390468W"}], "type": {"key": "/type/edition"}, "revision": 8}
+/type/edition /books/OL10357138M 10 2020-11-13T15:45:31.031679 {"publishers": ["National Academies Press"], "identifiers": {"goodreads": ["3519245"]}, "weight": "12.6 ounces", "isbn_10": ["0309044448"], "series": ["Natural Disaster Studies: A Series"], "covers": [5057302, 3977501], "physical_format": "Paperback", "lc_classifications": ["", "QE535.2.E2 M37 1991"], "latest_revision": 10, "key": "/books/OL10357138M", "authors": [{"key": "/authors/OL3426226A"}, {"key": "/authors/OL1901196A"}], "isbn_13": ["9780309044448"], "classifications": {}, "source_records": ["marc:marc_records_scriblio_net/part22.dat:37328069:1208", "bwb:9780309044448", "marc:marc_loc_2016/BooksAll.2016.part21.utf8:37110566:1210"], "title": "The March 5, 1987, Ecuador Earthquakes: Mass Wasting and Socioeconomic Effects", "lccn": ["91067348"], "number_of_pages": 184, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "subjects": ["Vulcanology & seismology", "Earth Sciences - Geology", "Economic Conditions", "Science / Earth Sciences", "Science", "Earthquakes", "Economic aspects", "Ecuador", "Napo (Province)", "Social aspects", "Science/Mathematics"], "publish_date": "January 1, 1991", "last_modified": {"type": "/type/datetime", "value": "2020-11-13T15:45:31.031679"}, "works": [{"key": "/works/OL14986594W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.5 inches", "revision": 10}
+/type/edition /books/OL10357259M 7 2020-11-15T13:22:03.067835 {"publishers": ["National Academies Press"], "subtitle": "Bioprocess Engineering", "weight": "8 ounces", "isbn_10": ["0309047854"], "covers": [2361379], "physical_format": "Paperback", "lc_classifications": ["", "TP248.3 .N38 1992"], "latest_revision": 7, "key": "/books/OL10357259M", "authors": [{"key": "/authors/OL3426310A"}, {"key": "/authors/OL1901196A"}], "ocaid": "puttingbiotechno00engi", "isbn_13": ["9780309047852"], "source_records": ["ia:puttingbiotechno00engi", "bwb:9780309047852", "marc:marc_loc_2016/BooksAll.2016.part21.utf8:223890277:834"], "title": "Putting Biotechnology to Work", "lccn": ["92061717"], "number_of_pages": 132, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "subjects": ["Chemical & Biochemical", "Science / Life Sciences / General", "Biotechnological Processes And Operations", "Medical / Nursing", "Biochemical engineering", "Biotechnology", "Science/Mathematics"], "publish_date": "January 1, 1992", "last_modified": {"type": "/type/datetime", "value": "2020-11-15T13:22:03.067835"}, "works": [{"key": "/works/OL14986759W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.2 x 6 x 0.2 inches", "revision": 7}
+/type/edition /books/OL10357286M 8 2021-03-09T10:32:03.874925 {"publishers": ["National Academies Press"], "weight": "1.6 ounces", "isbn_10": ["0309048427"], "covers": [5056976, 3949313], "physical_format": "Paperback", "lc_classifications": ["TH3351.N38 1993", "TH3351 .N38 1993"], "key": "/books/OL10357286M", "authors": [{"key": "/authors/OL3426324A"}, {"key": "/authors/OL3426135A"}, {"key": "/authors/OL1901196A"}], "isbn_13": ["9780309048422"], "source_records": ["marc:talis_openlibrary_contribution/talis-openlibrary-contribution.mrc:531261773:940", "bwb:9780309048422", "marc:marc_loc_2016/BooksAll.2016.part22.utf8:195353820:1481", "ia:fourthdimensioni0000unse"], "title": "Fourth Dimension in Building: Strategies for Avoiding Obsolescence (Studies in Management of Building Technology: A Series)", "lccn": ["93083826"], "number_of_pages": 126, "languages": [{"key": "/languages/eng"}], "subjects": ["Conservation of buildings & building materials", "Construction - General", "Engineering Construction Management", "Technology & Industrial Arts", "Buildings", "Maintenance", "Repair and reconstruction", "Reference"], "publish_date": "January 1, 1993", "works": [{"key": "/works/OL14986404W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.8 x 5.7 x 0.3 inches", "ocaid": "fourthdimensioni0000unse", "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-03-09T10:32:03.874925"}}
+/type/edition /books/OL1035734M 6 2020-11-17T20:47:35.840285 {"other_titles": ["Nikon F4, F4S, F4E, and F3 complete user's guide."], "publishers": ["Hove-Fountain Books", "Satter Inc. [distributor]"], "identifiers": {"librarything": ["1560016"], "goodreads": ["510052"]}, "isbn_10": ["0906447976"], "lc_classifications": ["TR263.N5 H4613 1991"], "latest_revision": 6, "key": "/books/OL1035734M", "authors": [{"key": "/authors/OL440787A"}], "publish_places": ["Surbition, Surrey", "Denver, Colo"], "work_title": ["Nikon F4."], "languages": [{"key": "/languages/eng"}], "pagination": "195 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:66945759:962"], "title": "Nikon F4 and F3", "dewey_decimal_class": ["771.3/1"], "notes": {"type": "/type/text", "value": "Cover title: Nikon F4, F4S, F4E, and F3 complete user's guide.\n\"Hove Foto Books\"--Cover.\nDistributor from label mounted on cover."}, "number_of_pages": 195, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "edition_name": "New rev. ed., 2nd English ed.", "lccn": ["93230845"], "subjects": ["Nikon camera."], "publish_date": "1991", "publish_country": "enk", "last_modified": {"type": "/type/datetime", "value": "2020-11-17T20:47:35.840285"}, "by_statement": "Heiner Henni[n]ges ; [English translation, Rols Kruger].", "oclc_numbers": ["29475532"], "works": [{"key": "/works/OL2898085W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL1035744M 3 2020-11-17T20:47:43.209276 {"publishers": ["The Foundation"], "subtitle": "a proposal by the Electronic Frontier Foundation for a national telecommunications infrastructure.", "subject_place": ["United States."], "lc_classifications": ["TK5105.87 .E43 1992"], "latest_revision": 3, "key": "/books/OL1035744M", "authors": [{"key": "/authors/OL556442A"}], "publish_places": ["Washington, D.C. (666 Pennsylvania Ave, SE, Washington)"], "pagination": "12 p. ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:66957363:802"], "title": "The Open platform", "dewey_decimal_class": ["384.6/5/0973"], "notes": {"type": "/type/text", "value": "Includes bibliographical references."}, "number_of_pages": 12, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["93230856"], "subjects": ["Wide area networks (Computer networks) -- Standards -- United States.", "Integrated services digital networks."], "publish_date": "1992", "publish_country": "dcu", "last_modified": {"type": "/type/datetime", "value": "2020-11-17T20:47:43.209276"}, "works": [{"key": "/works/OL3396944W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10357755M 5 2010-04-24T18:01:45.306254 {"publishers": ["National Academy Press"], "languages": [{"key": "/languages/eng"}], "identifiers": {"goodreads": ["1554905"]}, "title": "Customer information at bus stops (Synthesis of transit practice)", "isbn_10": ["0309058732"], "number_of_pages": 64, "isbn_13": ["9780309058735"], "covers": [5057472], "physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:01:45.306254"}, "publish_date": "1996", "key": "/books/OL10357755M", "authors": [{"key": "/authors/OL3426609A"}], "latest_revision": 5, "works": [{"key": "/works/OL9390617W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10358483M 9 2020-12-05T18:23:31.899411 {"publishers": ["National Academies Press"], "identifiers": {"librarything": ["708001"], "goodreads": ["4329366"]}, "subtitle": "Proceedings of a Russian-American Workshop", "weight": "1 pounds", "covers": [2362906, 169058], "physical_format": "Paperback", "lc_classifications": ["HV6431.W633 2002", "HV6431 .W633 2002"], "key": "/books/OL10358483M", "authors": [{"key": "/authors/OL3427061A"}, {"key": "/authors/OL3427036A"}, {"key": "/authors/OL3427062A"}], "ocaid": "highimpactterror0000work", "subjects": ["International relations", "Terrorism, freedom fighters, armed struggle", "Crime Prevention", "Political Science", "Politics / Current Events", "Politics/International Relations", "Political Freedom & Security - Law Enforcement", "Political Freedom & Security - Terrorism", "Political Science / Political Freedom & Security / General", "Warfare & Defence", "Criminology", "International Relations - General", "Bioterrorism", "Congresses", "International Cooperation", "Prevention", "Terrorism"], "isbn_13": ["9780309082709"], "source_records": ["ia:highimpactterror0000work", "bwb:9780309082709", "marc:marc_loc_2016/BooksAll.2016.part29.utf8:214411355:2337"], "title": "High-Impact Terrorism", "number_of_pages": 296, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0309082706"], "publish_date": "May 14, 2002", "works": [{"key": "/works/OL18010144W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.2 x 6.5 x 0.8 inches", "lccn": ["2002102001"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-05T18:23:31.899411"}}
+/type/edition /books/OL10358579M 7 2022-11-17T15:26:00.026615 {"publishers": ["National Academies Press"], "subtitle": "Reports on Leading-Edge Engineering from the 2001 NAE Symposium on Frontiers of Engineering", "covers": [2363068], "physical_format": "Paperback", "key": "/books/OL10358579M", "authors": [{"key": "/authors/OL1660476A"}], "ocaid": "frontiersenginee00engi_759", "subjects": ["Engineering: general", "Technology", "Technology & Industrial Arts", "Science/Mathematics", "Engineering (General)", "Engineering - General", "Technology: General Issues", "Congresses", "Engineering", "Research", "Technological innovations", "United States"], "isbn_13": ["9780309084987"], "source_records": ["ia:frontiersenginee00engi_759", "ia:thannualsymposiu00engi", "marc:marc_loc_2016/BooksAll.2016.part31.utf8:117050474:1179", "bwb:9780309084987"], "title": "Frontiers of Engineering", "number_of_pages": 138, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0309084989"], "publish_date": "September 10, 2002", "works": [{"key": "/works/OL6345480W"}], "type": {"key": "/type/edition"}, "lccn": ["2003544887"], "lc_classifications": ["TA160.4 .S96 2002", "TA160.4.S96 2002"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T15:26:00.026615"}}
+/type/edition /books/OL10358996M 10 2022-11-18T00:15:30.483316 {"publishers": ["National Academies Press"], "identifiers": {"goodreads": ["3003973"], "librarything": ["8151414"]}, "weight": "8 ounces", "covers": [2363644], "physical_format": "Paperback", "key": "/books/OL10358996M", "authors": [{"key": "/authors/OL3427395A"}, {"key": "/authors/OL1901196A"}], "subjects": ["Materials science", "Plastics & polymers technology", "Technology", "Technology & Industrial Arts", "Science/Mathematics", "Material Science", "Technology / Material Science", "Textiles & Polymers", "Fibrous composites", "Polymeric composites"], "isbn_13": ["9780309096140"], "source_records": ["marc:marc_loc_updates/v37.i35.records.utf8:13583961:1084", "bwb:9780309096140", "marc:marc_loc_2016/BooksAll.2016.part33.utf8:175605278:1084"], "title": "High-Performance Structural Fibers for Advanced Polymer Matrix Composites", "number_of_pages": 70, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0309096146"], "publish_date": "May 17, 2005", "works": [{"key": "/works/OL14986466W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.8 x 8.4 x 0.2 inches", "lccn": ["2006295552"], "lc_classifications": ["TA418.9.C6 H5425 2005", "TA418.9.C6H5425 2005"], "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-18T00:15:30.483316"}}
+/type/edition /books/OL10359428M 5 2022-11-17T18:23:13.364801 {"publishers": ["National Academy Press"], "identifiers": {"librarything": ["4908736"]}, "subtitle": "Reflections on the Field, Reflections from the Field", "covers": [5057544, 4249274], "physical_format": "Hardcover", "key": "/books/OL10359428M", "authors": [{"key": "/authors/OL1901196A"}], "subjects": ["Computer Science", "Computers - General Information", "Computer Bks - General Information"], "isbn_13": ["9780309545297"], "title": "Computer Science", "number_of_pages": 194, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0309545293"], "publish_date": "January 2004", "works": [{"key": "/works/OL6887218W"}], "type": {"key": "/type/edition"}, "lc_classifications": ["QA76.C66 2004"], "source_records": ["bwb:9780309545297"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T18:23:13.364801"}}
+/type/edition /books/OL10360001M 9 2022-12-04T11:29:09.251002 {"publishers": ["Zondervan Publishing Company"], "identifiers": {"librarything": ["694575"], "goodreads": ["277492"]}, "weight": "1.5 pounds", "covers": [2364273, 170243], "physical_format": "Paperback", "key": "/books/OL10360001M", "authors": [{"key": "/authors/OL24339A"}], "subjects": ["Bible - Study - General", "Reference", "Religion - Biblical Studies", "Bible", "Commentaries", "Religion"], "languages": [{"key": "/languages/eng"}], "first_sentence": {"type": "/type/text", "value": "With the book of Genesis, the curtain lifts over the stage of world history."}, "title": "Understand Your Bible from Adam to Zion", "number_of_pages": 448, "isbn_13": ["9780310240044"], "isbn_10": ["0310240042"], "publish_date": "August 1, 2001", "oclc_numbers": ["46883040"], "type": {"key": "/type/edition"}, "physical_dimensions": "9.2 x 6.5 x 1.2 inches", "works": [{"key": "/works/OL23743616W"}], "lccn": ["2001026342"], "lc_classifications": ["BS491.2 .M38 2001"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part28.utf8:204429105:821", "ia:understandyourbi0000mcgr", "promise:bwb_daily_pallets_2022-09-07"], "ocaid": "understandyourbi0000mcgr", "local_id": ["urn:bwbsku:O8-CXJ-241"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T11:29:09.251002"}}
+/type/edition /books/OL1036011M 8 2023-01-06T10:10:22.174671 {"other_titles": ["Dictionary of occupational titles."], "publishers": ["U.S. Dept. of Labor, Employment and Training Administration", "For sale by the U.S. G.P.O., Supt. of Docs."], "isbn_10": ["0160382025"], "subject_place": ["United States"], "covers": [3866813], "lc_classifications": ["HB2595 .S45 1993"], "key": "/books/OL1036011M", "publish_places": ["Washington, DC"], "contributions": ["United States. Employment and Training Administration."], "pagination": "1 v. (various pagings) ;", "source_records": ["amazon:0160382025", "marc:marc_records_scriblio_net/part24.dat:4778760:1026", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:67240266:1026", "marc:marc_columbia/Columbia-extract-20221130-008.mrc:21135680:1232"], "title": "Selected characteristics of occupations defined in the revised Dictionary of occupational titles.", "dewey_decimal_class": ["331.7/0012"], "notes": {"type": "/type/text", "value": "Shipping list no.: 93-0191-P.\nIncludes index."}, "identifiers": {"librarything": ["8340634"], "goodreads": ["4142051"]}, "languages": [{"key": "/languages/eng"}], "lccn": ["93231193"], "subjects": ["Occupations -- United States -- Dictionaries.", "Occupations -- United States -- Classification."], "publish_date": "1993", "publish_country": "dcu", "works": [{"key": "/works/OL18824318W"}], "type": {"key": "/type/edition"}, "oclc_numbers": ["28233759"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2023-01-06T10:10:22.174671"}}
+/type/edition /books/OL103606M 8 2022-12-17T08:25:52.607855 {"number_of_pages": 289, "subject_place": ["Wales", "Texas"], "covers": [2051239], "lc_classifications": ["PR6062.E966 T35 1998", "PR6062.E966T35 1998"], "genres": ["Fiction."], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part28.utf8:92356832:877", "ia:takingronnietopi0000leyg", "bwb:9781854111937"], "title": "Taking Ronnie to the pictures", "languages": [{"key": "/languages/eng"}], "subjects": ["Sexually abused children -- Fiction.", "Welsh -- Texas -- Fiction.", "Young men -- Fiction.", "Farm life -- Fiction.", "Wales -- Fiction.", "Texas -- Fiction."], "publish_country": "wlk", "by_statement": "Gary Ley.", "oclc_numbers": ["40225252"], "type": {"key": "/type/edition"}, "publishers": ["Seren"], "key": "/books/OL103606M", "authors": [{"key": "/authors/OL69508A"}], "publish_places": ["Bridgend, Wales"], "pagination": "289 p. ;", "dewey_decimal_class": ["823/.914"], "identifiers": {"wikidata": ["Q76984254"], "goodreads": ["3866828"]}, "lccn": ["99219541"], "isbn_10": ["1854111930"], "publish_date": "1998", "works": [{"key": "/works/OL821623W"}], "ocaid": "takingronnietopi0000leyg", "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T08:25:52.607855"}}
+/type/edition /books/OL10360786M 11 2022-12-09T09:49:12.693867 {"publishers": ["Zondervan"], "identifiers": {"librarything": ["2211283"], "goodreads": ["4641724"]}, "subtitle": "75 Photographers Celebrate Faith and Family", "weight": "3.2 pounds", "isbn_10": ["0310410606"], "covers": [2364887, 171277], "physical_format": "Hardcover", "lc_classifications": ["BR517 .S86 1997"], "key": "/books/OL10360786M", "authors": [{"key": "/authors/OL3319300A"}], "languages": [{"key": "/languages/eng"}], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part26.utf8:53491874:1101", "promise:bwb_daily_pallets_2021-06-28", "promise:bwb_daily_pallets_2020-12-02"], "title": "Sunday in America", "lccn": ["97022578"], "number_of_pages": 168, "isbn_13": ["9780310410607"], "edition_name": "1st ed edition", "subjects": ["Christianity - History", "Inspirational", "Collections, Catalogs, Exhibitions", "Documentary Photo Collections", "Photography", "Christianity", "Family", "Pictorial works", "Religious aspects", "United States", "Photo Essays"], "publish_date": "October 1997", "oclc_numbers": ["37180857"], "works": [{"key": "/works/OL9264671W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "12.5 x 10.5 x 0.8 inches", "local_id": ["urn:bwbsku:W6-BEF-985", "urn:bwbsku:W6-BBG-880", "urn:bwbsku:O7-BLR-626"], "latest_revision": 11, "revision": 11, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T09:49:12.693867"}}
+/type/edition /books/OL10360812M 2 2009-12-15T00:47:25.415289 {"physical_format": "Audio Cassette", "weight": "5.1 ounces", "title": "First Years Forever", "isbn_10": ["0310425387"], "publishers": ["Zondervan Publishing Company"], "isbn_13": ["9780310425380"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:47:25.415289"}, "publish_date": "November 1988", "key": "/books/OL10360812M", "authors": [{"key": "/authors/OL3427894A"}], "latest_revision": 2, "subjects": ["Inspirational - General", "Motivational", "Abridged Audio - Inspirational/Philosophy", "Audio - Inspiration / Philosophy", "Audio Adult: Other"], "works": [{"key": "/works/OL9391126W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.2 x 6.2 x 0.7 inches", "revision": 2}
+/type/edition /books/OL10361410M 5 2013-08-04T18:41:41.919970 {"publishers": ["Zondervan"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2013-08-04T18:41:41.919970"}, "title": "NIV Thinline Pink/Black Duo Tone - GM", "number_of_pages": 1152, "isbn_13": ["9780310605874"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Leather-bound", "isbn_10": ["0310605873"], "publish_date": "June 1, 2006", "key": "/books/OL10361410M", "latest_revision": 5, "works": [{"key": "/works/OL8590239W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10361759M 3 2010-11-25T18:04:51.798210 {"publishers": ["Zondervan Publishing Company"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-11-25T18:04:51.798210"}, "title": "KJV Gift and Award Bible in White, Case of 20 Zcs", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780310645627"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["031064562X"], "publish_date": "September 2003", "key": "/books/OL10361759M", "authors": [{"key": "/authors/OL3319300A"}], "latest_revision": 3, "works": [{"key": "/works/OL8594464W"}], "type": {"key": "/type/edition"}, "subjects": ["Non-Classifiable", "Children's All Ages"], "revision": 3}
+/type/edition /books/OL10362076M 3 2010-11-25T18:04:51.798210 {"publishers": ["ZonderKidz"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-11-25T18:04:51.798210"}, "title": "Christmas BB Filleddisp 03 Grocery", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780310707745"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0310707749"], "publish_date": "November 2003", "key": "/books/OL10362076M", "authors": [{"key": "/authors/OL3319300A"}], "latest_revision": 3, "works": [{"key": "/works/OL8594270W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10362182M 9 2020-12-14T01:53:49.236115 {"publishers": ["Zonderkidz"], "number_of_pages": 32, "subtitle": "Let Us Go on a Mommy Date", "covers": [2365345], "physical_format": "Hardcover", "key": "/books/OL10362182M", "authors": [{"key": "/authors/OL32066A"}], "ocaid": "letsgoonmommydat0000king", "contributions": ["Dan Andreasen (Illustrator)"], "subjects": ["Religious - Christian", "Family - Parents", "Juvenile Fiction", "Children's Books/Ages 4-8 Fiction", "Fiction", "Mother and child", "Stories in rhyme", "Children: Kindergarten"], "isbn_13": ["9780310712145"], "source_records": ["amazon:0310712149", "ia:letsgoonmommydat0000king", "marc:marc_loc_2016/BooksAll.2016.part33.utf8:96140723:1189"], "title": "Let's Go on a Mommy Date", "identifiers": {"goodreads": ["1384727"], "librarything": ["5236701"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0310712149"], "publish_date": "March 2008", "oclc_numbers": ["65197720"], "works": [{"key": "/works/OL94263W"}], "type": {"key": "/type/edition"}, "lccn": ["2006004528"], "lc_classifications": ["PZ8.3.K6145 Le 2008"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-14T01:53:49.236115"}}
+/type/edition /books/OL10362311M 11 2021-09-16T06:40:01.765038 {"publishers": ["Zonderkidz"], "number_of_pages": 32, "covers": [2365463], "physical_format": "Paperback", "key": "/books/OL10362311M", "authors": [{"key": "/authors/OL512086A"}], "ocaid": "howiewantstoplay0000hend", "subjects": ["General", "Religious - Christian", "Juvenile Fiction", "Children's Books/Ages 4-8 Fiction", "Animals", "Christian life", "Dogs", "Fiction", "Infancy", "Children: Kindergarten"], "isbn_13": ["9780310716044"], "source_records": ["amazon:0310716047", "marc:marc_loc_updates/v36.i35.records.utf8:5599630:1215", "ia:howiewantstoplay0000hend", "marc:marc_loc_2016/BooksAll.2016.part34.utf8:143987719:1215", "bwb:9780310716044"], "title": "Howie Wants to Play! (I Can Read! / Howie Series)", "identifiers": {"librarything": ["8247380"], "goodreads": ["3429175"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0310716047"], "publish_date": "May 2008", "oclc_numbers": ["173809006"], "works": [{"key": "/works/OL3188455W"}], "type": {"key": "/type/edition"}, "lccn": ["2007034316"], "lc_classifications": ["PZ7.H3835 Hoy 2008", "PZ7.H3835Hoy 2008"], "latest_revision": 11, "revision": 11, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-09-16T06:40:01.765038"}}
+/type/edition /books/OL10362324M 3 2011-04-26T18:35:30.743315 {"publishers": ["Zondervan"], "physical_format": "Hardcover", "subtitle": "Episodes 3-4 (The Storykeepers Collection)", "last_modified": {"type": "/type/datetime", "value": "2011-04-26T18:35:30.743315"}, "title": "Catacomb Rescue & Ready, Aim, Fire", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780310716549"], "covers": [2365476], "edition_name": "DVD edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0310716543"], "publish_date": "July 2008", "key": "/books/OL10362324M", "latest_revision": 3, "oclc_numbers": ["320088760"], "type": {"key": "/type/edition"}, "subjects": ["Religious - Christian", "Juvenile Fiction", "Video - Inspirational", "Children: Grades 1-2"], "revision": 3}
+/type/edition /books/OL10362374M 4 2022-04-07T22:41:39.889082 {"publishers": ["Inspirio"], "languages": [{"key": "/languages/eng"}], "key": "/books/OL10362374M", "weight": "1.9 pounds", "title": "Celtic Cross", "isbn_13": ["9780310801269"], "covers": [2365505], "physical_format": "Paperback", "isbn_10": ["0310801265"], "publish_date": "March 1, 2003", "authors": [{"key": "/authors/OL3319300A"}], "works": [{"key": "/works/OL8589600W"}], "type": {"key": "/type/edition"}, "subjects": ["Christian Church - Church Administration - Program Resources", "Christian Interest", "Non-Classifiable", "Church Supplies", "Christianity - Church Admin. - Program Resources"], "physical_dimensions": "12.4 x 9.3 x 2.6 inches", "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-04-07T22:41:39.889082"}}
+/type/edition /books/OL10362457M 4 2010-11-25T18:04:51.798210 {"publishers": ["Inspirio"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2010-11-25T18:04:51.798210"}, "weight": "1.1 pounds", "title": "Dual-Compartment Organizer Black Med", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780310802600"], "covers": [2365582], "physical_format": "Unknown Binding", "isbn_10": ["0310802601"], "publish_date": "August 1, 2004", "key": "/books/OL10362457M", "authors": [{"key": "/authors/OL3319300A"}], "latest_revision": 4, "works": [{"key": "/works/OL8589692W"}], "type": {"key": "/type/edition"}, "subjects": ["Christian Interest", "Non-Classifiable"], "physical_dimensions": "12.5 x 8.4 x 3.5 inches", "revision": 4}
+/type/edition /books/OL10362706M 9 2013-08-04T18:41:41.919970 {"publishers": ["Inspirio"], "identifiers": {"goodreads": ["457560"]}, "weight": "1 pounds", "covers": [2365800], "physical_format": "Leather-bound", "last_modified": {"type": "/type/datetime", "value": "2013-08-04T18:41:41.919970"}, "latest_revision": 9, "key": "/books/OL10362706M", "subjects": ["The Bible", "Christian Life - General", "Christian Interest", "Religion / Christian Life", "Children's Books/Young Adult Religion"], "edition_name": "De Luxe Ed edition", "languages": [{"key": "/languages/eng"}], "title": "NIV Student Bible Deluxe Journal Graduation (Journals)", "number_of_pages": 160, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780310807612"], "isbn_10": ["0310807611"], "publish_date": "April 1, 2004", "oclc_numbers": ["191810872"], "works": [{"key": "/works/OL8590207W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.4 x 6.3 x 0.7 inches", "revision": 9}
+/type/edition /books/OL10362992M 3 2022-04-07T22:43:09.294020 {"physical_format": "Unknown Binding", "weight": "2.1 ounces", "title": "Peace be with You Mini Pewter Heart", "isbn_10": ["0310814057"], "publishers": ["Inspirio"], "isbn_13": ["9780310814054"], "languages": [{"key": "/languages/eng"}], "publish_date": "September 1, 2006", "key": "/books/OL10362992M", "authors": [{"key": "/authors/OL3319300A"}], "subjects": ["Christian Interest", "Non-Classifiable"], "works": [{"key": "/works/OL8590362W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "2.9 x 2.6 x 0.4 inches", "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-04-07T22:43:09.294020"}}
+/type/edition /books/OL10363111M 5 2010-08-17T01:41:45.221141 {"publishers": ["Zondervan"], "weight": "2.4 pounds", "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-08-17T01:41:45.221141"}, "latest_revision": 5, "key": "/books/OL10363111M", "authors": [{"key": "/authors/OL502854A"}], "subjects": ["Bible - Apocrypha", "Bibles - New Revised Standard", "Religion", "Bibles"], "edition_name": "Leather edition", "languages": [{"key": "/languages/eng"}], "title": "Nrsv Reference Bible With Apocrypha", "identifiers": {"goodreads": ["2610419"], "librarything": ["6142824"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780310903093"], "isbn_10": ["0310903092"], "publish_date": "March 1993", "works": [{"key": "/works/OL3156524W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6.2 x 1.5 inches", "revision": 5}
+/type/edition /books/OL10363128M 5 2022-12-07T03:14:39.489301 {"publishers": ["Zondervan"], "identifiers": {"librarything": ["5502464"]}, "subtitle": "Gift Bible, Leather-Look, Blue", "weight": "1.4 pounds", "title": "Holy Bible, New International Version", "type": {"key": "/type/edition"}, "number_of_pages": 960, "isbn_13": ["9780310903826"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0310903823"], "publish_date": "March 1985", "key": "/books/OL10363128M", "physical_format": "Hardcover", "subjects": ["The Bible", "Bibles - New International", "Religion", "Bibles"], "physical_dimensions": "8.8 x 5.8 x 1 inches", "works": [{"key": "/works/OL17732W"}], "covers": [12644892], "ocaid": "holybiblenewinte0000rius", "source_records": ["ia:holybiblenewinte0000rius", "promise:bwb_daily_pallets_2022-03-17"], "local_id": ["urn:bwbsku:T2-AXI-315"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-07T03:14:39.489301"}}
+/type/edition /books/OL10363358M 2 2009-12-15T00:47:28.279505 {"physical_format": "Unknown Binding", "title": "Deluxe Bible Cover Medium Forest Green Vinyl", "isbn_10": ["031091468X"], "publishers": ["Zondervan Publishing Company"], "isbn_13": ["9780310914686"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:47:28.279505"}, "publish_date": "December 1993", "key": "/books/OL10363358M", "authors": [{"key": "/authors/OL3319300A"}], "latest_revision": 2, "subjects": ["Book Accessories"], "works": [{"key": "/works/OL9264622W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL1036350M 4 2020-11-17T20:55:54.955440 {"publishers": ["Editions Bertout"], "number_of_pages": 284, "subtitle": "canton de Routot", "isbn_10": ["2867431395"], "subject_place": ["Routot (France)"], "lc_classifications": ["DC801.R869 P47 1992"], "latest_revision": 4, "key": "/books/OL1036350M", "authors": [{"key": "/authors/OL556694A"}], "publish_places": ["Luneray"], "pagination": "284 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:67585441:687"], "title": "Miroir du temps au c\u0153ur du Roumois", "dewey_decimal_class": ["944/.24"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 275)."}, "identifiers": {"goodreads": ["3947739"]}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/fre"}], "lccn": ["93231671"], "subjects": ["Routot (France) -- History."], "publish_date": "1992", "publish_country": "fr ", "last_modified": {"type": "/type/datetime", "value": "2020-11-17T20:55:54.955440"}, "series": ["La Me\u0301moire normande"], "by_statement": "Marthe Perrier.", "works": [{"key": "/works/OL3398226W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10363760M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Hardcover", "weight": "3.6 pounds", "publishers": ["Zondervan Publishing Company"], "title": "New International Version Life Application Bible Bonded Leather Aspen Green", "isbn_13": ["9780310924869"], "isbn_10": ["0310924863"], "publish_date": "September 1994", "key": "/books/OL10363760M", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "type": {"key": "/type/edition"}, "subjects": ["Bibles - New International", "Bibles"], "physical_dimensions": "10 x 7.5 x 2 inches", "revision": 1}
+/type/edition /books/OL1036380M 4 2020-11-17T20:56:20.261191 {"publishers": ["Leega Literaria"], "number_of_pages": 90, "lc_classifications": ["PQ7298.17.A74 D53 1986"], "latest_revision": 4, "key": "/books/OL1036380M", "authors": [{"key": "/authors/OL249273A"}], "publish_places": ["Me\u0301xico"], "edition_name": "1a ed.", "pagination": " 90 p. ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:67619765:542"], "title": "Di\u0301as sin casura", "lccn": ["93231713"], "identifiers": {"goodreads": ["2476952"]}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/spa"}], "isbn_10": ["9684950357"], "publish_date": "1986", "publish_country": "mx ", "last_modified": {"type": "/type/datetime", "value": "2020-11-17T20:56:20.261191"}, "by_statement": "Francesca Gargallo.", "oclc_numbers": ["17537038"], "works": [{"key": "/works/OL2049715W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10363814M 6 2023-01-10T20:50:00.575741 {"publishers": ["Zondervan"], "languages": [{"key": "/languages/eng"}], "subtitle": "The Niv Study Bible/10th Anniversary Edition/Intro./Brown Bonded Leather", "weight": "3.4 pounds", "title": "Holy Bible ", "identifiers": {"goodreads": ["1277938"], "librarything": ["6932411"]}, "isbn_13": ["9780310925712"], "covers": [2366469, 172277], "physical_format": "Hardcover", "isbn_10": ["0310925711"], "publish_date": "December 1995", "key": "/books/OL10363814M", "type": {"key": "/type/edition"}, "subjects": ["Bibles - New International", "Religion", "Bibles"], "physical_dimensions": "11 x 7.5 x 2 inches", "works": [{"key": "/works/OL33645405W"}], "local_id": ["urn:bwbsku:T2-FOX-142"], "source_records": ["promise:bwb_daily_pallets_2023-01-05"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2023-01-10T20:50:00.575741"}}
+/type/edition /books/OL10363918M 1 2008-04-30T09:38:13.731961 {"physical_format": "Spiral-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Icon Group International, Inc."], "number_of_pages": 199, "isbn_13": ["9780497047368"], "isbn_10": ["0497047365"], "publish_date": "April 14, 2005", "key": "/books/OL10363918M", "title": "The 2006-2011 World Outlook for Money-Changing and Dispensing Machines and Other Currency Handling Machines", "type": {"key": "/type/edition"}, "subjects": ["Business & Economics / General"], "revision": 1}
+/type/edition /books/OL10363939M 1 2008-04-30T09:38:13.731961 {"physical_format": "Spiral-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Icon Group International, Inc."], "number_of_pages": 188, "isbn_13": ["9780497047610"], "isbn_10": ["0497047616"], "publish_date": "April 14, 2005", "key": "/books/OL10363939M", "title": "The 2006-2011 World Outlook for Commercial Electric Ranges, Ovens, and Broilers", "type": {"key": "/type/edition"}, "subjects": ["Business & Economics / General"], "revision": 1}
+/type/edition /books/OL10363944M 2 2010-04-13T05:52:06.612713 {"publishers": ["Icon Group International, Inc."], "isbn_10": ["0497047667"], "number_of_pages": 193, "isbn_13": ["9780497047665"], "covers": [2430522], "physical_format": "Spiral-bound", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:52:06.612713"}, "publish_date": "April 14, 2005", "latest_revision": 2, "key": "/books/OL10363944M", "title": "The 2006-2011 World Outlook for Parts and Accessories for Commercial Cooking and Food-Warming Equipment", "subjects": ["Business & Economics / General"], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10364807M 2 2010-04-13T05:52:06.612713 {"publishers": ["Icon Group International, Inc."], "isbn_10": ["0497061805"], "number_of_pages": 199, "isbn_13": ["9780497061807"], "covers": [2431104], "physical_format": "Spiral-bound", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:52:06.612713"}, "publish_date": "April 14, 2005", "latest_revision": 2, "key": "/books/OL10364807M", "title": "The 2006-2011 World Outlook for Cork and Cork Products of Natural, Waste, and Composition Cork Excluding Gaskets", "subjects": ["Business & Economics / General"], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10364932M 1 2008-04-30T09:38:13.731961 {"physical_format": "Spiral-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Icon Group International, Inc."], "number_of_pages": 188, "isbn_13": ["9780497064358"], "isbn_10": ["0497064359"], "publish_date": "April 14, 2005", "key": "/books/OL10364932M", "title": "The 2006-2011 World Outlook for Screenings and Breeze Made in Coke Oven Establishments", "type": {"key": "/type/edition"}, "subjects": ["Business & Economics / General"], "revision": 1}
+/type/edition /books/OL10365135M 2 2010-04-13T05:52:06.612713 {"publishers": ["Icon Group International, Inc."], "isbn_10": ["0497069059"], "number_of_pages": 184, "isbn_13": ["9780497069056"], "covers": [2431333], "physical_format": "Spiral-bound", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:52:06.612713"}, "publish_date": "April 14, 2005", "latest_revision": 2, "key": "/books/OL10365135M", "title": "The 2006-2011 World Outlook for Industrial Gypsum Plasters", "subjects": ["Business & Economics / General"], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10365532M 2 2010-04-13T05:52:06.612713 {"publishers": ["Icon Group International, Inc."], "isbn_10": ["0497075032"], "number_of_pages": 195, "isbn_13": ["9780497075033"], "covers": [2431621], "physical_format": "Spiral-bound", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:52:06.612713"}, "publish_date": "April 14, 2005", "latest_revision": 2, "key": "/books/OL10365532M", "title": "The 2006-2011 World Outlook for Iron and Steel Stairs, Staircases, Fire Escapes, and Expanded Metal Plaster Lath", "subjects": ["Business & Economics / General"], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10365607M 1 2008-04-30T09:38:13.731961 {"physical_format": "Spiral-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Icon Group International, Inc."], "number_of_pages": 189, "isbn_13": ["9780497076030"], "isbn_10": ["0497076039"], "publish_date": "April 14, 2005", "key": "/books/OL10365607M", "title": "The 2006-2011 World Outlook for Architectural Trim and Other Miscellaneous Closet Hardware", "type": {"key": "/type/edition"}, "subjects": ["Business & Economics / General"], "revision": 1}
+/type/edition /books/OL10365798M 1 2008-04-30T09:38:13.731961 {"physical_format": "Spiral-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Icon Group International, Inc."], "number_of_pages": 188, "isbn_13": ["9780497079048"], "isbn_10": ["0497079046"], "publish_date": "April 14, 2005", "key": "/books/OL10365798M", "title": "The 2006-2011 World Outlook for Manufacturing Enameled Iron and Metal Sanitary Ware", "type": {"key": "/type/edition"}, "subjects": ["Business & Economics / General"], "revision": 1}
+/type/edition /books/OL1036583M 5 2020-11-17T20:58:52.018505 {"publishers": ["Editorial COLEX"], "identifiers": {"goodreads": ["4622080"]}, "isbn_10": ["8478790853"], "subject_place": ["Spain."], "lc_classifications": ["KKT617 .C37 1992"], "latest_revision": 5, "key": "/books/OL1036583M", "authors": [{"key": "/authors/OL556797A"}], "publish_places": ["Madrid"], "pagination": "139 p. ;", "source_records": ["marc:marc_records_scriblio_net/part24.dat:5262795:677", "marc:marc_loc_updates/v37.i41.records.utf8:2278551:681", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:67812917:681"], "title": "La investigacio\u0301n de la paternidad", "dewey_decimal_class": ["346.4601/75", "344.606175"], "notes": {"type": "/type/text", "value": "Includes bibliographical references."}, "number_of_pages": 139, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/spa"}], "lccn": ["93231984"], "subjects": ["Paternity -- Spain"], "publish_date": "1992", "publish_country": "sp ", "last_modified": {"type": "/type/datetime", "value": "2020-11-17T20:58:52.018505"}, "series": ["Biblioteca juri\u0301dica de bolsillo ;", "9"], "by_statement": "Jaime de Castro Garci\u0301a.", "works": [{"key": "/works/OL3398563W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10366462M 2 2010-04-13T05:52:06.612713 {"publishers": ["Icon Group International, Inc."], "isbn_10": ["049708855X"], "number_of_pages": 188, "isbn_13": ["9780497088552"], "covers": [2432306], "physical_format": "Spiral-bound", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:52:06.612713"}, "publish_date": "April 14, 2005", "latest_revision": 2, "key": "/books/OL10366462M", "title": "The 2006-2011 World Outlook for Aircraft Engine Instruments Excluding Flight Instruments", "subjects": ["Business & Economics / General"], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10366578M 2 2010-04-13T05:52:06.612713 {"publishers": ["Icon Group International, Inc."], "isbn_10": ["0497090805"], "number_of_pages": 188, "isbn_13": ["9780497090807"], "covers": [2432381], "physical_format": "Spiral-bound", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:52:06.612713"}, "publish_date": "April 14, 2005", "latest_revision": 2, "key": "/books/OL10366578M", "title": "The 2006-2011 World Outlook for Van Bodies with Separate Cab Sold Separately", "subjects": ["Business & Economics / General"], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10366626M 2 2010-04-13T05:52:06.612713 {"publishers": ["Icon Group International, Inc."], "isbn_10": ["0497091461"], "number_of_pages": 187, "isbn_13": ["9780497091460"], "covers": [2432417], "physical_format": "Spiral-bound", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:52:06.612713"}, "publish_date": "April 14, 2005", "latest_revision": 2, "key": "/books/OL10366626M", "title": "The 2006-2011 World Outlook for New Gasoline Engine Fuel-Injection Systems for Motor Vehicles", "subjects": ["Business & Economics / General"], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10366896M 2 2010-04-13T05:52:06.612713 {"publishers": ["Icon Group International, Inc."], "isbn_10": ["0497095106"], "number_of_pages": 188, "isbn_13": ["9780497095109"], "covers": [2432606], "physical_format": "Spiral-bound", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:52:06.612713"}, "publish_date": "April 14, 2005", "latest_revision": 2, "key": "/books/OL10366896M", "title": "The 2006-2011 World Outlook for Wood Office Furniture Manufacturing", "subjects": ["Business & Economics / General"], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL1036701M 4 2020-11-17T21:01:02.820321 {"publishers": ["Mundi Lerner Editor"], "number_of_pages": 90, "lc_classifications": ["PQ7798.36.A73 P46 1990"], "latest_revision": 4, "key": "/books/OL1036701M", "authors": [{"key": "/authors/OL556857A"}], "publish_places": ["Cordoba, Argentina"], "pagination": "90 p. ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:67944811:524"], "title": "Penas extraordinarias", "lccn": ["93232173"], "identifiers": {"goodreads": ["4210720"]}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/spa"}], "isbn_10": ["9509426113"], "publish_date": "1990", "publish_country": "ag ", "last_modified": {"type": "/type/datetime", "value": "2020-11-17T21:01:02.820321"}, "by_statement": "Armando Za\u0301rate.", "oclc_numbers": ["23378710"], "works": [{"key": "/works/OL3398726W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10367316M 2 2010-04-13T05:52:06.612713 {"publishers": ["Icon Group International, Inc."], "isbn_10": ["0497100312"], "number_of_pages": 314, "isbn_13": ["9780497100315"], "covers": [2432913], "physical_format": "Spiral-bound", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:52:06.612713"}, "publish_date": "April 8, 2005", "latest_revision": 2, "key": "/books/OL10367316M", "title": "The 2005 Economic and Product Market Databook for Bangassou, Central African Republic", "subjects": ["Business & Economics / General"], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10367666M 2 2010-04-13T05:52:06.612713 {"publishers": ["Icon Group International, Inc."], "isbn_10": ["0497103982"], "number_of_pages": 314, "isbn_13": ["9780497103989"], "covers": [2433246], "physical_format": "Spiral-bound", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:52:06.612713"}, "publish_date": "April 8, 2005", "latest_revision": 2, "key": "/books/OL10367666M", "title": "The 2005 Economic and Product Market Databook for Dededo, Guam", "subjects": ["Business & Economics / General"], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10368037M 1 2008-04-30T09:38:13.731961 {"physical_format": "Spiral-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Icon Group International, Inc."], "number_of_pages": 314, "isbn_13": ["9780497107888"], "isbn_10": ["0497107880"], "publish_date": "April 8, 2005", "key": "/books/OL10368037M", "title": "The 2005 Economic and Product Market Databook for Khodzhent, Tajikistan", "type": {"key": "/type/edition"}, "subjects": ["Business & Economics / General"], "revision": 1}
+/type/edition /books/OL10368105M 2 2010-04-13T05:52:06.612713 {"publishers": ["Icon Group International, Inc."], "isbn_10": ["0497108569"], "number_of_pages": 314, "isbn_13": ["9780497108564"], "covers": [2433652], "physical_format": "Spiral-bound", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:52:06.612713"}, "publish_date": "April 8, 2005", "latest_revision": 2, "key": "/books/OL10368105M", "title": "The 2005 Economic and Product Market Databook for Kupang, Indonesia", "subjects": ["Business & Economics / General"], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10368879M 1 2008-04-30T09:38:13.731961 {"physical_format": "Spiral-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Icon Group International, Inc."], "number_of_pages": 314, "isbn_13": ["9780497136307"], "isbn_10": ["0497136309"], "publish_date": "April 8, 2005", "key": "/books/OL10368879M", "title": "The 2005 Economic and Product Market Databook for Seremban, Malaysia", "type": {"key": "/type/edition"}, "subjects": ["Business & Economics / General"], "revision": 1}
+/type/edition /books/OL10369008M 2 2010-04-13T05:52:06.612713 {"publishers": ["Icon Group International, Inc."], "isbn_10": ["0497137658"], "number_of_pages": 314, "isbn_13": ["9780497137656"], "covers": [2434420], "physical_format": "Spiral-bound", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:52:06.612713"}, "publish_date": "April 8, 2005", "latest_revision": 2, "key": "/books/OL10369008M", "title": "The 2005 Economic and Product Market Databook for Taunggye, Burma", "subjects": ["Business & Economics / General"], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10369013M 1 2008-04-30T09:38:13.731961 {"physical_format": "Spiral-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Icon Group International, Inc."], "number_of_pages": 314, "isbn_13": ["9780497137700"], "isbn_10": ["0497137704"], "publish_date": "April 8, 2005", "key": "/books/OL10369013M", "title": "The 2005 Economic and Product Market Databook for Teck Ghee, Singapore", "type": {"key": "/type/edition"}, "subjects": ["Business & Economics / General"], "revision": 1}
+/type/edition /books/OL10369704M 1 2008-04-30T09:38:13.731961 {"physical_format": "Spiral-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Icon Group International, Inc."], "number_of_pages": 186, "isbn_13": ["9780497200848"], "isbn_10": ["0497200848"], "publish_date": "August 17, 2005", "key": "/books/OL10369704M", "title": "The 2006-2011 World Outlook for Fabric Curtains", "type": {"key": "/type/edition"}, "subjects": ["Business & Economics / General"], "revision": 1}
+/type/edition /books/OL10370082M 1 2008-04-30T09:38:13.731961 {"physical_format": "Spiral-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Icon Group International, Inc."], "number_of_pages": 186, "isbn_13": ["9780497205232"], "isbn_10": ["0497205238"], "publish_date": "August 17, 2005", "key": "/books/OL10370082M", "title": "The 2006-2011 World Outlook for Unscented Candles", "type": {"key": "/type/edition"}, "subjects": ["Business & Economics / General"], "revision": 1}
+/type/edition /books/OL10370965M 3 2010-04-13T05:52:06.612713 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 197, "weight": "14.2 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497265958"], "title": "The 2007-2012 World Outlook for Cocoa Butter, Liquor, and Cocoa-Based Chocolate Syrup Made from Cacao Beans", "isbn_13": ["9780497265953"], "covers": [2435664], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:52:06.612713"}, "latest_revision": 3, "key": "/books/OL10370965M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "May 18, 2006", "works": [{"key": "/works/OL3320652W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Cocoa Butter, Liquor, and Cocoa-Based Chocolate Syrup Made from Cacao Beans,31132073,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.5 inches", "revision": 3}
+/type/edition /books/OL10371019M 3 2010-04-13T05:52:06.612713 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 188, "weight": "13.8 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497266504"], "title": "The 2007-2012 World Outlook for Frozen Nationality Foods Excluding Pizza", "isbn_13": ["9780497266509"], "covers": [2435718], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:52:06.612713"}, "latest_revision": 3, "key": "/books/OL10371019M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "May 18, 2006", "works": [{"key": "/works/OL3322283W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Frozen Nationality Foods Excluding Pizza,31141217,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.5 inches", "revision": 3}
+/type/edition /books/OL10371884M 3 2010-04-13T05:52:06.612713 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 199, "weight": "14.4 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497275856"], "title": "The 2007-2012 World Outlook for Industrial and Agriculture Twine Less Than 3/16-Inch Diameter Made from Manmade Fibers", "isbn_13": ["9780497275853"], "covers": [2436583], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:52:06.612713"}, "latest_revision": 3, "key": "/books/OL10371884M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "May 18, 2006", "works": [{"key": "/works/OL3322933W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Industrial and Agriculture Twine Less Than 3/16-Inch Diameter Made from Manmade Fibers,31499133,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.5 inches", "revision": 3}
+/type/edition /books/OL10372138M 3 2010-04-13T05:52:06.612713 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 200, "weight": "14.4 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497278642"], "title": "The 2007-2012 World Outlook for Softwood Rough Lumber of Less Than 2 Inches in Nominal Thickness Not Edge Worked Made in Sawmills", "isbn_13": ["9780497278649"], "covers": [2436837], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:52:06.612713"}, "latest_revision": 3, "key": "/books/OL10372138M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "May 18, 2006", "works": [{"key": "/works/OL3326498W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Softwood Rough Lumber of Less Than 2 Inches in Nominal Thickness Not Edge Worked Made in Sawmills,3211133111,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.5 inches", "revision": 3}
+/type/edition /books/OL10372467M 3 2010-04-13T05:52:06.612713 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 187, "weight": "13.6 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497282240"], "title": "The 2007-2012 World Outlook for Bleached Milk Carton Board", "isbn_13": ["9780497282240"], "covers": [2437166], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:52:06.612713"}, "latest_revision": 3, "key": "/books/OL10372467M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "May 18, 2006", "works": [{"key": "/works/OL3320006W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Bleached Milk Carton Board,32213032,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.5 inches", "revision": 3}
+/type/edition /books/OL1037270M 3 2020-11-17T21:08:58.082882 {"publishers": ["Ediciones \"El Ri\u0301o\""], "lc_classifications": ["PQ8497.C4243 S65 1986"], "latest_revision": 3, "key": "/books/OL1037270M", "authors": [{"key": "/authors/OL557122A"}], "publish_places": ["Lima, Peru\u0301"], "pagination": "[46] p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:68513895:571"], "title": "Un solo canto, el canto del camino", "lccn": ["93232975"], "notes": {"type": "/type/text", "value": "Most of alternate pages blank."}, "number_of_pages": 46, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/spa"}], "last_modified": {"type": "/type/datetime", "value": "2020-11-17T21:08:58.082882"}, "publish_date": "1986", "publish_country": "pe ", "by_statement": "Germa\u0301n Carnero.", "oclc_numbers": ["17791499"], "works": [{"key": "/works/OL3399968W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10372780M 3 2010-04-13T05:54:13.310555 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 187, "weight": "13.6 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497285835"], "title": "The 2007-2012 World Outlook for Print Engraving", "isbn_13": ["9780497285838"], "covers": [2437479], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:54:13.310555"}, "latest_revision": 3, "key": "/books/OL10372780M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "May 18, 2006", "works": [{"key": "/works/OL3325641W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Print Engraving,323119E,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.5 inches", "revision": 3}
+/type/edition /books/OL10372995M 3 2010-04-13T05:54:13.310555 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 188, "weight": "13.8 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497288265"], "title": "The 2007-2012 World Outlook for Industrial Organic Flavor Oil Mixtures and Blends", "isbn_13": ["9780497288266"], "covers": [2437694], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:54:13.310555"}, "latest_revision": 3, "key": "/books/OL10372995M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "May 18, 2006", "works": [{"key": "/works/OL3323010W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Industrial Organic Flavor Oil Mixtures and Blends,3251997,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.5 inches", "revision": 3}
+/type/edition /books/OL10373239M 3 2010-04-13T05:54:13.310555 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 185, "weight": "13.4 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497291088"], "title": "The 2007-2012 World Outlook for Architectural Lacquers", "isbn_13": ["9780497291082"], "covers": [2437938], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:54:13.310555"}, "latest_revision": 3, "key": "/books/OL10373239M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "May 18, 2006", "works": [{"key": "/works/OL3319743W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Architectural Lacquers,3255101249,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.5 inches", "revision": 3}
+/type/edition /books/OL10373286M 3 2010-04-13T05:54:13.310555 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 194, "weight": "14.1 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497291657"], "title": "The 2007-2012 World Outlook for Commercial, Industrial, and Institutional Aerosol Cleaners for Hard Surfaces", "isbn_13": ["9780497291655"], "covers": [2437985], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:54:13.310555"}, "latest_revision": 3, "key": "/books/OL10373286M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "May 18, 2006", "works": [{"key": "/works/OL3320749W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Commercial, Industrial, and Institutional Aerosol Cleaners for Hard Surfaces,3256111131,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.5 inches", "revision": 3}
+/type/edition /books/OL10373526M 3 2010-04-13T05:54:13.310555 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 187, "weight": "13.6 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497294494"], "title": "The 2007-2012 World Outlook for Unlaminated Acrylic Film and Sheet", "isbn_13": ["9780497294496"], "covers": [2438225], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:54:13.310555"}, "latest_revision": 3, "key": "/books/OL10373526M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "May 18, 2006", "works": [{"key": "/works/OL3327170W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Unlaminated Acrylic Film and Sheet,3261130451,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.5 inches", "revision": 3}
+/type/edition /books/OL10373828M 3 2010-04-13T05:54:13.310555 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 199, "weight": "14.4 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497298082"], "title": "The 2007-2012 World Outlook for Cloth, Leather, and Felt Buffing and Polishing Wheels and Laps Containing No Abrasive Grains, Powders, or Flour", "isbn_13": ["9780497298081"], "covers": [2438527], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:54:13.310555"}, "latest_revision": 3, "key": "/books/OL10373828M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "May 18, 2006", "works": [{"key": "/works/OL3320634W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Cloth, Leather, and Felt Buffing and Polishing Wheels and Laps Containing No Abrasive Grains, Powders, or Flour,3279107331,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.5 inches", "revision": 3}
+/type/edition /books/OL10373833M 5 2010-04-24T18:01:45.306254 {"publishers": ["ICON Group International, Inc."], "languages": [{"key": "/languages/eng"}], "identifiers": {"goodreads": ["6972317"]}, "weight": "14.6 ounces", "title": "The 2007-2012 World Outlook for Cutting, Shaping, and Finishing Granite, Marble, Limestone, Slate, and Other Stone for Building and Miscellaneous Uses", "number_of_pages": 202, "isbn_13": ["9780497298159"], "covers": [2438532], "physical_format": "Paperback", "authors": [{"key": "/authors/OL539875A"}], "isbn_10": ["0497298155"], "latest_revision": 5, "key": "/books/OL10373833M", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:01:45.306254"}, "publish_date": "May 18, 2006", "works": [{"key": "/works/OL3321246W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Cutting, Shaping, and Finishing Granite, Marble, Limestone, Slate, and Other Stone for Building and Miscellaneous Uses,327991,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.5 inches", "revision": 5}
+/type/edition /books/OL10373853M 3 2010-04-13T05:54:13.310555 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 190, "weight": "13.8 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497298384"], "title": "The 2007-2012 World Outlook for Coke Made in Steel Mills Excluding Coke Screenings and Breeze", "isbn_13": ["9780497298388"], "covers": [2438552], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:54:13.310555"}, "latest_revision": 3, "key": "/books/OL10373853M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "May 18, 2006", "works": [{"key": "/works/OL3320676W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Coke Made in Steel Mills Excluding Coke Screenings and Breeze,3311111101,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.5 inches", "revision": 3}
+/type/edition /books/OL10374115M 3 2010-04-13T05:54:13.310555 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 189, "weight": "13.8 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497301377"], "title": "The 2007-2012 World Outlook for Metal Window and Door Manufacturing", "isbn_13": ["9780497301378"], "covers": [2438814], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:54:13.310555"}, "latest_revision": 3, "key": "/books/OL10374115M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "May 18, 2006", "works": [{"key": "/works/OL3323989W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Metal Window and Door Manufacturing,332321,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.5 inches", "revision": 3}
+/type/edition /books/OL10374193M 3 2010-04-13T05:54:13.310555 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 187, "weight": "13.6 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["049730225X"], "title": "The 2007-2012 World Outlook for Mechanics Tools for Automotive Use Excluding Jacks", "isbn_13": ["9780497302252"], "covers": [2438892], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:54:13.310555"}, "latest_revision": 3, "key": "/books/OL10374193M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "May 18, 2006", "works": [{"key": "/works/OL3323817W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Mechanics Tools for Automotive Use Excluding Jacks,3322122361,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.5 inches", "revision": 3}
+/type/edition /books/OL10374787M 5 2010-04-24T18:01:45.306254 {"publishers": ["ICON Group International, Inc."], "languages": [{"key": "/languages/eng"}], "identifiers": {"goodreads": ["4851756"]}, "weight": "14.2 ounces", "title": "The 2007-2012 World Outlook for Agricultural Shear Bar, Basic Self-Propelled and Pull-Type Field Forage Harvesting Machinery", "number_of_pages": 197, "isbn_13": ["9780497309084"], "covers": [2439486], "physical_format": "Paperback", "authors": [{"key": "/authors/OL539875A"}], "isbn_10": ["0497309084"], "latest_revision": 5, "key": "/books/OL10374787M", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:01:45.306254"}, "publish_date": "May 18, 2006", "works": [{"key": "/works/OL3319546W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Agricultural Shear Bar, Basic Self-Propelled and Pull-Type Field Forage Harvesting Machinery,3331119141,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.5 inches", "revision": 5}
+/type/edition /books/OL10374942M 5 2010-04-24T18:01:45.306254 {"publishers": ["ICON Group International, Inc."], "languages": [{"key": "/languages/eng"}], "identifiers": {"goodreads": ["627861"]}, "weight": "14.4 ounces", "title": "The 2007-2012 World Outlook for Drill Bits Not Having a Working Part of Sintered Metal Carbide and Cermets and Base Metal Parts Thereof", "number_of_pages": 200, "isbn_13": ["9780497310882"], "covers": [2439641], "physical_format": "Paperback", "authors": [{"key": "/authors/OL539875A"}], "isbn_10": ["0497310880"], "latest_revision": 5, "key": "/books/OL10374942M", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:01:45.306254"}, "publish_date": "May 18, 2006", "works": [{"key": "/works/OL3321451W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Drill Bits Not Having a Working Part of Sintered Metal Carbide and Cermets and Base Metal Parts Thereof,33313192,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.5 inches", "revision": 5}
+/type/edition /books/OL10375065M 3 2010-04-13T05:54:13.310555 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 187, "weight": "13.6 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497312336"], "title": "The 2007-2012 World Outlook for Offset Lithographic Printing Presses", "isbn_13": ["9780497312336"], "covers": [2439764], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:54:13.310555"}, "latest_revision": 3, "key": "/books/OL10375065M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "May 18, 2006", "works": [{"key": "/works/OL3324697W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Offset Lithographic Printing Presses,3332931,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.5 inches", "revision": 3}
+/type/edition /books/OL10375318M 3 2010-04-13T05:54:13.310555 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 188, "weight": "13.8 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497315319"], "title": "The 2007-2012 World Outlook for Vertical Fan-Coil Room Air Conditioning Units", "isbn_13": ["9780497315313"], "covers": [2440017], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:54:13.310555"}, "latest_revision": 3, "key": "/books/OL10375318M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "May 18, 2006", "works": [{"key": "/works/OL3327263W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Vertical Fan-Coil Room Air Conditioning Units,3334151011,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.5 inches", "revision": 3}
+/type/edition /books/OL10375368M 5 2010-04-24T18:01:45.306254 {"publishers": ["ICON Group International, Inc."], "languages": [{"key": "/languages/eng"}], "identifiers": {"goodreads": ["2414463"]}, "weight": "13.6 ounces", "title": "The 2007-2012 World Outlook for Room Air Conditioners with 26,000 BTU Per Hour and over", "number_of_pages": 186, "isbn_13": ["9780497315894"], "covers": [2440067], "physical_format": "Paperback", "authors": [{"key": "/authors/OL539875A"}], "isbn_10": ["0497315890"], "latest_revision": 5, "key": "/books/OL10375368M", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:01:45.306254"}, "publish_date": "May 18, 2006", "works": [{"key": "/works/OL3326077W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Room Air Conditioners with 26,000 BTU Per Hour and over,3334156075,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.5 inches", "revision": 5}
+/type/edition /books/OL10375482M 5 2010-04-24T18:01:45.306254 {"publishers": ["ICON Group International, Inc."], "languages": [{"key": "/languages/eng"}], "identifiers": {"goodreads": ["1536251"]}, "weight": "14.4 ounces", "title": "The 2007-2012 World Outlook for Metal Grinding, Polishing, Buffing, Honing, and Lapping Machines Excluding Gear-Tooth Grinding, Lapping, Polishing, and Buffing Machines", "number_of_pages": 200, "isbn_13": ["9780497317249"], "covers": [2440181], "physical_format": "Paperback", "authors": [{"key": "/authors/OL539875A"}], "isbn_10": ["0497317249"], "latest_revision": 5, "key": "/books/OL10375482M", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:01:45.306254"}, "publish_date": "May 18, 2006", "works": [{"key": "/works/OL3323945W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Metal Grinding, Polishing, Buffing, Honing, and Lapping Machines Excluding Gear-Tooth Grinding, Lapping, Polishing, and Buffing Machines,3335122,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.5 inches", "revision": 5}
+/type/edition /books/OL10375503M 3 2010-04-13T05:54:13.310555 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 198, "weight": "14.4 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497317494"], "title": "The 2007-2012 World Outlook for New Stationary Centrifugal and Axial Gas Compressors Excluding Natural Gas Compressors", "isbn_13": ["9780497317492"], "covers": [2440202], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:54:13.310555"}, "latest_revision": 3, "key": "/books/OL10375503M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "May 18, 2006", "works": [{"key": "/works/OL3324352W"}], "type": {"key": "/type/edition"}, "subjects": ["market,New Stationary Centrifugal and Axial Gas Compressors Excluding Natural Gas Compressors,3339121188,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.5 inches", "revision": 3}
+/type/edition /books/OL10375567M 3 2010-04-13T05:54:13.310555 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 197, "weight": "14.2 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497318229"], "title": "The 2007-2012 World Outlook for Carbide Inserts for Machine Tools and Metalworking Machinery Excluding Indexible and Throwaway Types", "isbn_13": ["9780497318222"], "covers": [2440266], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:54:13.310555"}, "latest_revision": 3, "key": "/books/OL10375567M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "May 18, 2006", "works": [{"key": "/works/OL3320333W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Carbide Inserts for Machine Tools and Metalworking Machinery Excluding Indexible and Throwaway Types,3335151568,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.5 inches", "revision": 3}
+/type/edition /books/OL10375616M 3 2010-04-13T05:54:13.310555 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 189, "weight": "13.8 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497318741"], "title": "The 2007-2012 World Outlook for Bevel Coarse-Pitch Loose Gears with Diametral Pitch Less Than 20", "isbn_13": ["9780497318741"], "covers": [2440315], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:54:13.310555"}, "latest_revision": 3, "key": "/books/OL10375616M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "May 18, 2006", "works": [{"key": "/works/OL3319970W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Bevel Coarse-Pitch Loose Gears with Diametral Pitch Less Than 20,3336123135,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.5 inches", "revision": 3}
+/type/edition /books/OL10375676M 3 2010-04-13T05:54:13.310555 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 199, "weight": "14.4 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497319446"], "title": "The 2007-2012 World Outlook for New Water Pumps for Internal Combustion Engines Excluding Aircraft and Gasoline Automotive Engines and Gas Turbines", "isbn_13": ["9780497319441"], "covers": [2440375], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:54:13.310555"}, "latest_revision": 3, "key": "/books/OL10375676M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "May 18, 2006", "works": [{"key": "/works/OL3324367W"}], "type": {"key": "/type/edition"}, "subjects": ["market,New Water Pumps for Internal Combustion Engines Excluding Aircraft and Gasoline Automotive Engines and Gas Turbines,333618F146,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.5 inches", "revision": 3}
+/type/edition /books/OL1037599M 4 2020-11-17T21:13:22.682698 {"publishers": ["Izd-vo Nizhegorodskogo universiteta"], "number_of_pages": 126, "subtitle": "uroki Dostoevskogo", "isbn_10": ["5230041382"], "lc_classifications": ["PG3328.Z7 P567 1992"], "latest_revision": 4, "key": "/books/OL1037599M", "authors": [{"key": "/authors/OL557269A"}], "publish_places": ["Nizhnii\u0306 Novgorod"], "pagination": "126, [2] p. ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:68809906:874"], "title": "Novoe myshlenie i problema ponimanii\u0361a\ufe21", "lccn": ["93233424"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 118-[127]).\nAt head of title: Gosudarstvennyi\u0306 komitet RSFSR po delam nauki i vysshei\u0306 shkoly."}, "identifiers": {"goodreads": ["2751576"]}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/rus"}], "subjects": ["Dostoyevsky, Fyodor, 1821-1881 -- Philosophy.", "Philosophy, Marxist.", "Philosophy, Russian."], "publish_date": "1992", "publish_country": "ru ", "last_modified": {"type": "/type/datetime", "value": "2020-11-17T21:13:22.682698"}, "by_statement": "S.P. Makarychev.", "works": [{"key": "/works/OL3400550W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10376182M 3 2010-04-13T05:54:13.310555 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 185, "weight": "13.4 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497325063"], "title": "The 2007-2012 World Outlook for Non-Electric Complete Lighting Fixtures and Equipment", "isbn_13": ["9780497325060"], "covers": [2440881], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:54:13.310555"}, "latest_revision": 3, "key": "/books/OL10376182M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "May 18, 2006", "works": [{"key": "/works/OL3324499W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Non-Electric Complete Lighting Fixtures and Equipment,3351294126,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.5 inches", "revision": 3}
+/type/edition /books/OL10376221M 5 2010-04-24T18:01:45.306254 {"publishers": ["ICON Group International, Inc."], "languages": [{"key": "/languages/eng"}], "identifiers": {"goodreads": ["1865993"]}, "weight": "15.7 ounces", "title": "The 2007-2012 World Outlook for Liquid-Immersed, Single-And Three-Phase, Compartmentalized Pad-Mounted, Subsurface Underground and Conventional Subway-Type ... Power Transformers with 501 to 2500 KVA", "number_of_pages": 221, "isbn_13": ["9780497325480"], "covers": [2440920], "physical_format": "Paperback", "authors": [{"key": "/authors/OL539875A"}], "isbn_10": ["0497325489"], "latest_revision": 5, "key": "/books/OL10376221M", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:01:45.306254"}, "publish_date": "May 18, 2006", "works": [{"key": "/works/OL3323388W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Liquid-Immersed, Single-And Three-Phase, Compartmentalized Pad-Mounted, Subsurface Underground and Conventional Subway-Type Small Power Transformers with 501 to 2500 KVA,3353111419,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.6 inches", "revision": 5}
+/type/edition /books/OL10376429M 3 2010-04-13T05:54:13.310555 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 188, "weight": "13.8 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497327783"], "title": "The 2007-2012 World Outlook for New Gasoline Engines and Engine Parts for Motor Vehicles", "isbn_13": ["9780497327781"], "covers": [2441128], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:54:13.310555"}, "latest_revision": 3, "key": "/books/OL10376429M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "May 18, 2006", "works": [{"key": "/works/OL3324276W"}], "type": {"key": "/type/edition"}, "subjects": ["market,New Gasoline Engines and Engine Parts for Motor Vehicles,3363121,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.5 inches", "revision": 3}
+/type/edition /books/OL10376688M 3 2010-04-13T05:54:13.310555 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 186, "weight": "13.6 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497330539"], "title": "The 2007-2012 World Outlook for Inboard-Outdrive Houseboats", "isbn_13": ["9780497330538"], "covers": [2441387], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:54:13.310555"}, "latest_revision": 3, "key": "/books/OL10376688M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "May 18, 2006", "works": [{"key": "/works/OL3322903W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Inboard-Outdrive Houseboats,3366125201,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.5 inches", "revision": 3}
+/type/edition /books/OL10376995M 5 2010-04-24T18:01:45.306254 {"publishers": ["ICON Group International, Inc."], "languages": [{"key": "/languages/eng"}], "identifiers": {"goodreads": ["6226716"]}, "weight": "14.4 ounces", "title": "The 2007-2012 World Outlook for Horizontal and Parallel Bars, Balance Beams, Trampolines, Wrestling and Other Gymnasium Mats, and Gymnasium and Gymnastic Apparatus and Equipment", "number_of_pages": 199, "isbn_13": ["9780497333850"], "covers": [2441694], "physical_format": "Paperback", "authors": [{"key": "/authors/OL539875A"}], "isbn_10": ["0497333856"], "latest_revision": 5, "key": "/books/OL10376995M", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:01:45.306254"}, "publish_date": "May 18, 2006", "works": [{"key": "/works/OL3322722W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Horizontal and Parallel Bars, Balance Beams, Trampolines, Wrestling and Other Gymnasium Mats, and Gymnasium and Gymnastic Apparatus and Equipment,3399207101,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.5 inches", "revision": 5}
+/type/edition /books/OL10377272M 3 2010-04-13T05:54:13.310555 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 189, "weight": "13.8 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497336804"], "title": "The 2007-2012 World Outlook for Electronic and Precision Equipment Repair and Maintenance", "isbn_13": ["9780497336806"], "covers": [2441971], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:54:13.310555"}, "latest_revision": 3, "key": "/books/OL10377272M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "May 18, 2006", "works": [{"key": "/works/OL3321639W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Electronic and Precision Equipment Repair and Maintenance,8112,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.5 inches", "revision": 3}
+/type/edition /books/OL10377507M 3 2010-04-13T05:54:13.310555 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 187, "weight": "13.6 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497339404"], "title": "The 2007-2012 World Outlook for Leather and Leather Products", "isbn_13": ["9780497339401"], "covers": [2442206], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:54:13.310555"}, "latest_revision": 3, "key": "/books/OL10377507M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "June 26, 2006", "works": [{"key": "/works/OL3323313W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Leather and Leather Products,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.5 inches", "revision": 3}
+/type/edition /books/OL10377646M 3 2010-04-13T05:54:13.310555 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 186, "weight": "13.6 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497340887"], "title": "The 2007-2012 World Outlook for Weft, Lace, and Warp Knit Fabric Mills", "isbn_13": ["9780497340889"], "covers": [2442345], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:54:13.310555"}, "latest_revision": 3, "key": "/books/OL10377646M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "June 26, 2006", "works": [{"key": "/works/OL3327387W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Weft, Lace, and Warp Knit Fabric Mills,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.5 inches", "revision": 3}
+/type/edition /books/OL10377716M 3 2010-04-13T05:54:13.310555 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 185, "weight": "13.4 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497341654"], "title": "The 2007-2012 World Outlook for Carpet Cleaning Products", "isbn_13": ["9780497341657"], "covers": [2442415], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:54:13.310555"}, "latest_revision": 3, "key": "/books/OL10377716M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "June 26, 2006", "works": [{"key": "/works/OL3320385W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Carpet Cleaning Products,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.5 inches", "revision": 3}
+/type/edition /books/OL10377983M 3 2010-04-13T05:54:13.310555 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 187, "weight": "13.6 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["049734453X"], "title": "The 2007-2012 World Outlook for Activity Toys", "isbn_13": ["9780497344535"], "covers": [2442682], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:54:13.310555"}, "latest_revision": 3, "key": "/books/OL10377983M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "June 26, 2006", "works": [{"key": "/works/OL3319461W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Activity Toys,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.5 inches", "revision": 3}
+/type/edition /books/OL10378072M 3 2010-04-13T05:54:13.310555 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 187, "weight": "13.6 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["049734551X"], "title": "The 2007-2012 World Outlook for Cat Food", "isbn_13": ["9780497345518"], "covers": [2442771], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:54:13.310555"}, "latest_revision": 3, "key": "/books/OL10378072M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "June 26, 2006", "works": [{"key": "/works/OL3320431W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Cat Food,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.5 inches", "revision": 3}
+/type/edition /books/OL10378246M 3 2010-04-13T05:54:13.310555 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 188, "weight": "13.8 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497347318"], "title": "The 2007-2012 World Outlook for Concentrated Liquid Fabric Softeners", "isbn_13": ["9780497347314"], "covers": [2442945], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:54:13.310555"}, "latest_revision": 3, "key": "/books/OL10378246M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "June 26, 2006", "works": [{"key": "/works/OL3320898W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Concentrated Liquid Fabric Softeners,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.5 inches", "revision": 3}
+/type/edition /books/OL10378270M 3 2010-04-13T05:54:13.310555 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 187, "weight": "13.6 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497347563"], "title": "The 2007-2012 World Outlook for Croissants", "isbn_13": ["9780497347567"], "covers": [2442969], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:54:13.310555"}, "latest_revision": 3, "key": "/books/OL10378270M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "June 26, 2006", "works": [{"key": "/works/OL3321159W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Croissants,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.5 inches", "revision": 3}
+/type/edition /books/OL10378280M 3 2010-04-13T05:54:13.310555 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 185, "weight": "13.4 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497347660"], "title": "The 2007-2012 World Outlook for Dietary Supplements", "isbn_13": ["9780497347666"], "covers": [2442979], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:54:13.310555"}, "latest_revision": 3, "key": "/books/OL10378280M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "June 26, 2006", "works": [{"key": "/works/OL3321333W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Dietary Supplements,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.5 inches", "revision": 3}
+/type/edition /books/OL10378710M 5 2010-04-24T18:01:45.306254 {"publishers": ["ICON Group International, Inc."], "languages": [{"key": "/languages/eng"}], "identifiers": {"goodreads": ["6632029"]}, "weight": "13.4 ounces", "title": "The 2007-2012 World Outlook for Underwire Bras", "number_of_pages": 185, "isbn_13": ["9780497352394"], "covers": [2443409], "physical_format": "Paperback", "authors": [{"key": "/authors/OL539875A"}], "isbn_10": ["0497352397"], "latest_revision": 5, "key": "/books/OL10378710M", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:01:45.306254"}, "publish_date": "June 26, 2006", "works": [{"key": "/works/OL3327154W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Underwire Bras,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.5 inches", "revision": 5}
+/type/edition /books/OL103789M 5 2020-12-02T08:25:35.035488 {"identifiers": {"librarything": ["8985118"]}, "series": ["Quadrige (Presses universitaires de France),", "239"], "covers": [8374870], "lc_classifications": ["MLCS 2000/01578 (Q)"], "contributions": ["Darwin, Charles, 1809-1882."], "edition_name": "1re ed.", "source_records": ["amazon:2130484484", "marc:marc_loc_2016/BooksAll.2016.part28.utf8:92543594:634"], "title": "Darwin et le darwinisme", "languages": [{"key": "/languages/fre"}], "publish_country": "fr ", "by_statement": "Patrick Tort.", "oclc_numbers": ["37109829"], "type": {"key": "/type/edition"}, "publishers": ["Presses Universitaires de France"], "key": "/books/OL103789M", "authors": [{"key": "/authors/OL69630A"}], "publish_places": ["Paris"], "pagination": "128 p. ;", "lccn": ["99219845"], "number_of_pages": 128, "isbn_10": ["2130484484"], "publish_date": "1997", "works": [{"key": "/works/OL822897W"}], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-02T08:25:35.035488"}}
+/type/edition /books/OL10379117M 3 2010-04-13T05:54:13.310555 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 494, "weight": "2.1 pounds", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497361604"], "title": "The 2007-2012 Outlook for Canned Sauerkraut in the United States", "isbn_13": ["9780497361600"], "covers": [2443816], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:54:13.310555"}, "latest_revision": 3, "key": "/books/OL10379117M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "September 28, 2006", "works": [{"key": "/works/OL3303876W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Canned Sauerkraut in the United States,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 1.2 inches", "revision": 3}
+/type/edition /books/OL10379175M 3 2010-04-13T05:54:13.310555 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 408, "weight": "1.7 pounds", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497362236"], "title": "The 2007-2012 Outlook for Dried and Dehydrated Purchased Potatoes Packaged with Other Dried and Dehydrated Ingredients Made in Dehydration Plants in the United States", "isbn_13": ["9780497362232"], "covers": [2443874], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:54:13.310555"}, "latest_revision": 3, "key": "/books/OL10379175M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "September 28, 2006", "works": [{"key": "/works/OL3306346W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Dried and Dehydrated Purchased Potatoes Packaged with Other Dried and Dehydrated Ingredients Made in Dehydration Plants in the United States,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 1 inches", "revision": 3}
+/type/edition /books/OL1037973M 4 2020-11-17T21:18:05.814354 {"publishers": ["Fourth Dimension Pub. Co."], "number_of_pages": 404, "subtitle": "the political transition and the future of democracy", "isbn_10": ["978156296X", "9781562951"], "subject_place": ["Nigeria", "Nigeria."], "lc_classifications": ["JQ3096 .N857 1993"], "latest_revision": 4, "key": "/books/OL1037973M", "authors": [{"key": "/authors/OL61039A"}], "publish_places": ["Enugu, Nigeria"], "subject_time": ["1984-1993."], "pagination": "xx, 404 p. ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:69190791:859"], "title": "Nigeria", "dewey_decimal_class": ["320.9669"], "identifiers": {"goodreads": ["4378710"]}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["93233932"], "subjects": ["Democracy -- Nigeria.", "Democratization -- Nigeria.", "Nigeria -- Politics and government -- 1984-1993.", "Nigeria -- Economic policy."], "publish_date": "1993", "publish_country": "nr ", "last_modified": {"type": "/type/datetime", "value": "2020-11-17T21:18:05.814354"}, "by_statement": "Arthur A. Nwankwo.", "oclc_numbers": ["28971336"], "works": [{"key": "/works/OL749330W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10379742M 3 2010-04-13T05:54:13.310555 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 703, "weight": "2.9 pounds", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497368374"], "title": "The 2007-2012 Outlook for Commercial, Industrial, and Institutional Metal Cleaners in the United States", "isbn_13": ["9780497368371"], "covers": [2444441], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:54:13.310555"}, "latest_revision": 3, "key": "/books/OL10379742M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "September 28, 2006", "works": [{"key": "/works/OL3304895W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Commercial, Industrial, and Institutional Metal Cleaners in the United States,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 1.8 inches", "revision": 3}
+/type/edition /books/OL10380154M 5 2010-04-24T18:01:45.306254 {"publishers": ["ICON Group International, Inc."], "languages": [{"key": "/languages/eng"}], "identifiers": {"goodreads": ["487969"]}, "weight": "2.4 pounds", "title": "The 2007-2012 Outlook for Sidewalk Elevators, Dumb Waiters, and Man Lifts Excluding Portable Elevator-Stackers in the United States", "number_of_pages": 579, "isbn_13": ["9780497372828"], "covers": [2444853], "physical_format": "Paperback", "authors": [{"key": "/authors/OL539875A"}], "isbn_10": ["0497372827"], "latest_revision": 5, "key": "/books/OL10380154M", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:01:45.306254"}, "publish_date": "September 28, 2006", "works": [{"key": "/works/OL3315995W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Sidewalk Elevators, Dumb Waiters, and Man Lifts Excluding Portable Elevator-Stackers in the United States,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 1.4 inches", "revision": 5}
+/type/edition /books/OL10380262M 3 2010-04-13T05:54:13.310555 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 606, "weight": "2.5 pounds", "languages": [{"key": "/languages/eng"}], "isbn_10": ["049737398X"], "title": "The 2007-2012 Outlook for Wood Arm and Side Chairs in the United States", "isbn_13": ["9780497373986"], "covers": [2444961], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:54:13.310555"}, "latest_revision": 3, "key": "/books/OL10380262M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "September 28, 2006", "works": [{"key": "/works/OL3318933W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Wood Arm and Side Chairs in the United States,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 1.5 inches", "revision": 3}
+/type/edition /books/OL10380324M 3 2010-04-13T05:54:13.310555 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 719, "weight": "3 pounds", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497374633"], "title": "The 2007-2012 Outlook for Precious Metals Used for Dental Purposes in the United States", "isbn_13": ["9780497374631"], "covers": [2445023], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:54:13.310555"}, "latest_revision": 3, "key": "/books/OL10380324M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "September 28, 2006", "works": [{"key": "/works/OL3314197W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Precious Metals Used for Dental Purposes in the United States,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 1.8 inches", "revision": 3}
+/type/edition /books/OL10380602M 3 2010-04-13T05:54:13.310555 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 460, "weight": "2 pounds", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497377624"], "title": "The 2007-2012 Outlook for Semi-Moist Dog Food in the United States", "isbn_13": ["9780497377625"], "covers": [2445301], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:54:13.310555"}, "latest_revision": 3, "key": "/books/OL10380602M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "September 28, 2006", "works": [{"key": "/works/OL3315828W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Semi-Moist Dog Food in the United States,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 1.1 inches", "revision": 3}
+/type/edition /books/OL10380967M 3 2010-04-13T05:54:13.310555 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 141, "weight": "10.6 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["049738177X"], "title": "The 2007-2012 Outlook for Bottled Vodka in Japan", "isbn_13": ["9780497381776"], "covers": [2445666], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:54:13.310555"}, "latest_revision": 3, "key": "/books/OL10380967M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "September 28, 2006", "works": [{"key": "/works/OL3303127W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Bottled Vodka in Japan,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.4 inches", "revision": 3}
+/type/edition /books/OL10381019M 3 2010-04-13T05:54:13.310555 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 141, "weight": "10.6 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497382326"], "title": "The 2007-2012 Outlook for Plastics Utility Containers Excluding Foam Plastics in Japan", "isbn_13": ["9780497382322"], "covers": [2445718], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:54:13.310555"}, "latest_revision": 3, "key": "/books/OL10381019M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "September 28, 2006", "works": [{"key": "/works/OL3313914W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Plastics Utility Containers Excluding Foam Plastics in Japan,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.4 inches", "revision": 3}
+/type/edition /books/OL10381307M 3 2010-04-13T05:54:13.310555 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 173, "weight": "12.6 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497385465"], "title": "The 2007-2012 Outlook for Shoes with Soles That Are Vulcanized, Molded, or Cemented to Fabric Uppers Excluding Slippers in Japan", "isbn_13": ["9780497385460"], "covers": [2446006], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:54:13.310555"}, "latest_revision": 3, "key": "/books/OL10381307M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "September 28, 2006", "works": [{"key": "/works/OL3315979W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Shoes with Soles That Are Vulcanized, Molded, or Cemented to Fabric Uppers Excluding Slippers in Japan,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.4 inches", "revision": 3}
+/type/edition /books/OL10381809M 6 2013-08-04T18:41:01.311959 {"publishers": ["Zondervan Publishing Company"], "number_of_pages": 2198, "subtitle": "New International Version, Rich Red/camel Italian Duo-tone, Study Bible", "weight": "2.7 pounds", "covers": [2366832], "physical_format": "Leather-bound", "last_modified": {"type": "/type/datetime", "value": "2013-08-04T18:41:01.311959"}, "latest_revision": 6, "key": "/books/OL10381809M", "contributions": ["Kenneth L. Barker (Editor)", "Donald W. Burdick (Editor)", "John H. Stek (Editor)"], "subjects": ["The Bible", "Bible", "Religion", "Bibles", "Bibles - New International", "New International Version - General"], "isbn_13": ["9780310937739"], "title": "Holy Bible", "identifiers": {"goodreads": ["1203071"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0310937736"], "publish_date": "February 2007", "type": {"key": "/type/edition"}, "physical_dimensions": "9.2 x 6.5 x 1.9 inches", "revision": 6}
+/type/edition /books/OL10381870M 7 2011-04-30T14:17:32.215567 {"publishers": ["Zondervan Publishing Company"], "identifiers": {"goodreads": ["7326119"], "librarything": ["898362"]}, "last_modified": {"type": "/type/datetime", "value": "2011-04-30T14:17:32.215567"}, "languages": [{"key": "/languages/eng"}], "number_of_pages": 1120, "isbn_13": ["9780310945956"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Hardcover", "isbn_10": ["031094595X"], "publish_date": "April 2001", "latest_revision": 7, "key": "/books/OL10381870M", "authors": [{"key": "/authors/OL3319300A"}], "title": "NRSV Pew Bible, Cokesbury", "oclc_numbers": ["191922371"], "works": [{"key": "/works/OL8594836W"}], "type": {"key": "/type/edition"}, "subjects": ["The Bible", "New International Version - General", "Bibles"], "revision": 7}
+/type/edition /books/OL10382001M 1 2008-04-30T09:38:13.731961 {"physical_format": "Spiral-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Zondervan"], "title": "Daybreaks Gods Promise Women", "isbn_13": ["9780310959182"], "isbn_10": ["0310959187"], "publish_date": "September 3, 1993", "key": "/books/OL10382001M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10382182M 4 2010-11-25T18:04:51.798210 {"publishers": ["Zondervan Publishing Company"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2010-11-25T18:04:51.798210"}, "weight": "7.8 ounces", "title": "Bible Cover Large Grapevine Nantucket Canvas Collection", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780310967057"], "covers": [2366926], "physical_format": "Rag Book", "isbn_10": ["0310967058"], "publish_date": "January 1996", "key": "/books/OL10382182M", "authors": [{"key": "/authors/OL3319300A"}], "latest_revision": 4, "works": [{"key": "/works/OL8594215W"}], "type": {"key": "/type/edition"}, "subjects": ["Book Accessories"], "physical_dimensions": "10.3 x 7.4 x 1.7 inches", "revision": 4}
+/type/edition /books/OL10382306M 8 2019-02-07T05:11:34.583994 {"publishers": ["Zondervan"], "number_of_pages": 76, "weight": "5.6 ounces", "covers": [2367003], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2019-02-07T05:11:34.583994"}, "latest_revision": 8, "key": "/books/OL10382306M", "authors": [{"key": "/authors/OL3428033A"}, {"key": "/authors/OL3428034A"}], "ocaid": "littleprayersfor00anne", "contributions": ["Jesslyn Deboer (Editor)", "Comark Group (Illustrator)"], "subjects": ["Christianity - Christian Life", "General", "Religion - Devotional & Prayer", "Juvenile Nonfiction", "Children's Baby - Boardbooks", "Children: Grades 2-3"], "isbn_13": ["9780310971733"], "source_records": ["ia:littleprayersfor00anne"], "title": "Little Prayers for Little Ones", "identifiers": {"goodreads": ["6502164"], "librarything": ["3904401"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["031097173X"], "publish_date": "March 1, 1997", "oclc_numbers": ["40457532"], "works": [{"key": "/works/OL18461883W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "7.2 x 5.2 x 0.5 inches", "revision": 8}
+/type/edition /books/OL10382313M 3 2010-04-13T05:54:13.310555 {"publishers": ["Zondervan Publishing Company"], "languages": [{"key": "/languages/eng"}], "key": "/books/OL10382313M", "weight": "8.6 ounces", "title": "God's Wisdom for Men Daybreak", "isbn_13": ["9780310972006"], "covers": [2367007], "physical_format": "Paperback", "isbn_10": ["0310972000"], "publish_date": "March 1997", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:54:13.310555"}, "authors": [{"key": "/authors/OL3319300A"}], "latest_revision": 3, "works": [{"key": "/works/OL9264629W"}], "type": {"key": "/type/edition"}, "subjects": ["Inspirational", "Calendars - Inspirational"], "physical_dimensions": "5 x 4.7 x 1 inches", "revision": 3}
+/type/edition /books/OL10382322M 2 2009-12-15T00:47:41.143066 {"physical_format": "Paperback", "weight": "1.2 pounds", "title": "God's Wisdom for Women Desk Set", "isbn_10": ["0310972280"], "publishers": ["Zondervan Publishing Company"], "isbn_13": ["9780310972280"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:47:41.143066"}, "publish_date": "March 1997", "key": "/books/OL10382322M", "authors": [{"key": "/authors/OL3319300A"}], "latest_revision": 2, "subjects": ["Inspirational", "Religion"], "works": [{"key": "/works/OL9264633W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.8 x 5.4 x 1.3 inches", "revision": 2}
+/type/edition /books/OL10382558M 10 2012-08-09T12:20:22.153363 {"publishers": ["Zondervan Publishing Company"], "ia_box_id": ["IA106709"], "weight": "9.6 ounces", "covers": [2367228, 172566], "physical_format": "Hardcover", "ia_loaded_id": ["joyforwomanssoul00elli"], "last_modified": {"type": "/type/datetime", "value": "2012-08-09T12:20:22.153363"}, "latest_revision": 10, "key": "/books/OL10382558M", "authors": [{"key": "/authors/OL3319300A"}], "ocaid": "joyforwomanssoul00elli", "subjects": ["Women's Studies - General", "Sociology"], "isbn_13": ["9780310979319"], "source_records": ["ia:joyforwomanssoul00elli"], "title": "Joy for the Woman's Soul", "identifiers": {"librarything": ["1717994"], "goodreads": ["1437560"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0310979315"], "publish_date": "January 1999", "oclc_numbers": ["48584650"], "works": [{"key": "/works/OL8594435W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "7.1 x 4.1 x 0.7 inches", "revision": 10}
+/type/edition /books/OL10383323M 2 2009-10-24T12:43:48.299862 {"publishers": ["Casa Bautista de Publicaciones"], "physical_format": "Paperback", "subtitle": "Participante Libro 2 / Grow-Older Children B", "source_records": ["amazon:0311118410"], "title": "Crecer-Escolares B", "number_of_pages": 128, "isbn_13": ["9780311118410"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/spa"}], "authors": [{"key": "/authors/OL2623771A"}], "isbn_10": ["0311118410"], "publish_date": "May 2000", "key": "/books/OL10383323M", "last_modified": {"type": "/type/datetime", "value": "2009-10-24T12:43:48.299862"}, "latest_revision": 2, "subjects": ["Christian Education - General", "Religion - Christian Education - Teaching Helps / Programs", "Christianity - Education - General"], "works": [{"key": "/works/OL264241W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10383773M 7 2011-04-26T13:11:17.308546 {"publishers": ["Casa Bautista de Publicaciones"], "number_of_pages": 444, "weight": "1.2 pounds", "covers": [2367508, 172611], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-26T13:11:17.308546"}, "latest_revision": 7, "key": "/books/OL10383773M", "authors": [{"key": "/authors/OL414851A"}], "subjects": ["Biblical Reference - Language Study", "Religion - Biblical Studies - Language"], "isbn_13": ["9780311421046"], "title": "Sintaxis Exegetica del Nuevo Testamento Griego / Exegetical Sintax of the Greek N.T.", "identifiers": {"librarything": ["7713972"], "goodreads": ["4500704"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/spa"}], "isbn_10": ["0311421040"], "publish_date": "March 1997", "oclc_numbers": ["42263875"], "works": [{"key": "/works/OL2798703W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.2 x 5.5 x 0.9 inches", "revision": 7}
+/type/edition /books/OL10383921M 2 2010-08-03T01:34:24.794916 {"publishers": ["Casa Bautista de Publicaciones"], "languages": [{"key": "/languages/spa"}], "last_modified": {"type": "/type/datetime", "value": "2010-08-03T01:34:24.794916"}, "title": "Auxilio Para Los Amigos Que Sufren Porque Quieren Encontrar El Verdadero Amor (Auxilio Para los Amigos Que Sufren Porque...)", "number_of_pages": 64, "isbn_13": ["9780311463060"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0311463061"], "latest_revision": 2, "key": "/books/OL10383921M", "authors": [{"key": "/authors/OL23335A"}, {"key": "/authors/OL232046A"}], "works": [{"key": "/works/OL15285589W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10384521M 6 2020-11-08T07:41:49.306874 {"publishers": ["St. Martin's Press"], "number_of_pages": 224, "physical_format": "Hardcover", "lc_classifications": ["PN6153 .U45 1988"], "latest_revision": 6, "key": "/books/OL10384521M", "authors": [{"key": "/authors/OL3428404A"}], "subjects": ["American - General", "Literature - Classics / Criticism"], "edition_name": "1st edition", "languages": [{"key": "/languages/eng"}], "classifications": {}, "source_records": ["marc:marc_loc_2016/BooksAll.2016.part18.utf8:173119704:807"], "title": "Uncle Johns", "lccn": ["88030519"], "notes": {"type": "/type/text", "value": "10ppk"}, "identifiers": {"librarything": ["1145663"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780312026646"], "isbn_10": ["0312026641"], "publish_date": "November 1988", "last_modified": {"type": "/type/datetime", "value": "2020-11-08T07:41:49.306874"}, "oclc_numbers": ["18560963"], "works": [{"key": "/works/OL9391716W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL10384527M 4 2022-07-12T02:23:56.088737 {"publishers": ["St Martins Pr"], "physical_format": "Paperback", "title": "Art in the Age of Pluralism (Art and Design Profiles)", "identifiers": {"librarything": ["1918612"]}, "isbn_13": ["9780312026851"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0312026854"], "publish_date": "February 1989", "key": "/books/OL10384527M", "type": {"key": "/type/edition"}, "subjects": ["History - General", "Arts In General (Multi-Subject)", "20th century", "Art, Modern", "Pluralism (Social sciences) in art", "Art"], "works": [{"key": "/works/OL24814092W"}], "covers": [11590689], "ocaid": "artinageofplural0000unse", "lc_classifications": ["NX1 .A772 v.4:7-8"], "source_records": ["ia:artinageofplural0000unse", "marc:marc_uic/UIC_2022.mrc:204246032:1250"], "oclc_numbers": ["19614074"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-12T02:23:56.088737"}}
+/type/edition /books/OL10384601M 4 2022-09-17T20:54:20.832682 {"publishers": ["St. Martin's Press"], "subtitle": "A Challenge to the Gatt (Studies in International Political Economy)", "weight": "9.1 ounces", "covers": [10199260], "physical_format": "Paperback", "key": "/books/OL10384601M", "authors": [{"key": "/authors/OL189534A"}], "ocaid": "lessdevelopedcou0000tuss", "subjects": ["International - General", "Business / Economics / Finance", "Commercial policy", "Developing countries", "Economic integration", "Latin America", "Tariff", "Business/Economics"], "isbn_13": ["9780312031107"], "source_records": ["ia:lessdevelopedcou0000tuss", "bwb:9780312031107"], "title": "The Less Developed Countries and the World Trading System", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0312031106"], "publish_date": "May 1989", "works": [{"key": "/works/OL1678844W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 5.9 x 0.5 inches", "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-17T20:54:20.832682"}}
+/type/edition /books/OL10384819M 6 2022-09-17T20:13:35.844780 {"publishers": ["Palgrave Macmillan"], "number_of_pages": 270, "subtitle": "The Great Debate", "weight": "1.2 pounds", "physical_format": "Hardcover", "lc_classifications": ["DK4442 .N78 1981", "DK4442.N78 1981"], "key": "/books/OL10384819M", "authors": [{"key": "/authors/OL722018A"}], "subjects": ["Eastern Europe - Poland", "Labor Unions", "History - General History", "1980-1989", "Communism", "Congresses", "NSZZ \"Solidarno\u00e2s\u00e2c\" (Labor organization)", "NSZZ 'Solidarnosc' (Labor or", "Poland", "Politics and government", "Politics/International Relations"], "isbn_13": ["9780312044909"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part19.utf8:124154217:965", "bwb:9780312044909"], "title": "The Solidarity Congress 1981", "lccn": ["89070283"], "identifiers": {"goodreads": ["974053"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0312044909"], "publish_date": "October 1990", "works": [{"key": "/works/OL3955665W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.8 x 6.5 x 1 inches", "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-17T20:13:35.844780"}}
+/type/edition /books/OL10385216M 7 2022-09-17T21:13:09.058563 {"publishers": ["Palgrave Macmillan"], "identifiers": {"goodreads": ["684002"]}, "subtitle": "Essays in Honor of Henri Theil", "weight": "1 pounds", "isbn_10": ["0312068700"], "physical_format": "Hardcover", "lc_classifications": ["HB820 .C66 1992", "HB820.C66 1992"], "key": "/books/OL10385216M", "authors": [{"key": "/authors/OL1125952A"}], "contributions": ["Tran Van Hoa (Editor)"], "isbn_13": ["9780312068707"], "source_records": ["marc:marc_records_scriblio_net/part22.dat:14471088:863", "marc:marc_loc_2016/BooksAll.2016.part21.utf8:13882580:858", "bwb:9780312068707"], "title": "Contributions to Consumer Demand and Econometrics", "lccn": ["91025784"], "number_of_pages": 271, "languages": [{"key": "/languages/eng"}], "subjects": ["Consumer Economics (General)", "Econometrics", "Consumption (Economics)", "Demand (Economic theory)", "Econometric models", "Theil, Henri", "Business/Economics"], "publish_date": "January 1992", "works": [{"key": "/works/OL5110632W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 5.8 x 1.2 inches", "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-17T21:13:09.058563"}}
+/type/edition /books/OL10385220M 7 2022-09-17T19:47:25.418356 {"publishers": ["Palgrave Macmillan"], "identifiers": {"goodreads": ["792313"]}, "subtitle": "The Bursa Conference of 1958", "weight": "9.6 ounces", "isbn_10": ["031206876X"], "physical_format": "Hardcover", "lc_classifications": ["HF1352 .E23 1991", "HF1352.E23 1991"], "key": "/books/OL10385220M", "authors": [{"key": "/authors/OL737018A"}], "contributions": ["E. A. G. Robinson (Editor)"], "isbn_13": ["9780312068769"], "source_records": ["marc:marc_records_scriblio_net/part22.dat:11790783:1038", "marc:marc_loc_2016/BooksAll.2016.part21.utf8:11157472:1038", "bwb:9780312068769"], "title": "Early Steps in Comparing East-West Relations", "lccn": ["91022443"], "number_of_pages": 105, "languages": [{"key": "/languages/eng"}], "subjects": ["International Economics (General)", "Comparative economics", "Congresses", "East-West trade", "International economic relatio", "International economic relations", "Politics/International Relations"], "publish_date": "November 1991", "works": [{"key": "/works/OL4001360W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 5.8 x 0.8 inches", "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-17T19:47:25.418356"}}
+/type/edition /books/OL10385316M 8 2021-12-25T18:56:02.575103 {"publishers": ["St. Martin's Press"], "physical_format": "Paperback", "title": "Brightness Falls from the Air", "identifiers": {"goodreads": ["25067"], "librarything": ["48195"]}, "publish_date": "December 2000", "key": "/books/OL10385316M", "authors": [{"key": "/authors/OL2677446A"}], "works": [{"key": "/works/OL37181W"}], "type": {"key": "/type/edition"}, "isbn_10": ["0312076630"], "isbn_13": ["9780312076634"], "classifications": {}, "languages": [{"key": "/languages/eng"}], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-25T18:56:02.575103"}}
+/type/edition /books/OL10385848M 7 2022-09-17T20:08:21.903903 {"publishers": ["Palgrave Macmillan"], "identifiers": {"goodreads": ["407561"]}, "subtitle": "The Realities, the Real Options and the Agenda for Achievement", "weight": "1.4 pounds", "isbn_10": ["0312106599"], "physical_format": "Hardcover", "lc_classifications": ["HD9502.A2 E54392 1993", "HD9502.A2E54392 1993"], "key": "/books/OL10385848M", "authors": [{"key": "/authors/OL3428630A"}], "isbn_13": ["9780312106591"], "source_records": ["marc:marc_records_scriblio_net/part23.dat:117113164:790", "marc:marc_loc_2016/BooksAll.2016.part22.utf8:171639896:790", "bwb:9780312106591"], "title": "Energy for Tomorrow's World", "lccn": ["93028638"], "number_of_pages": 320, "languages": [{"key": "/languages/eng"}], "subjects": ["Energy Policy (Economic Aspects)", "Energy policy", "Sociology"], "publish_date": "November 1993", "works": [{"key": "/works/OL9391931W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "6 x 5.5 x 0.5 inches", "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-17T20:08:21.903903"}}
+/type/edition /books/OL10385899M 6 2011-04-29T09:16:19.288871 {"publishers": ["Bedford Books of St. Martin's Press"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2011-04-29T09:16:19.288871"}, "title": "The Story and Its Writer", "identifiers": {"librarything": ["75878"], "goodreads": ["424443"]}, "isbn_13": ["9780312111694"], "edition_name": "4th edition", "physical_format": "Paperback", "isbn_10": ["031211169X"], "publish_date": "1995", "key": "/books/OL10385899M", "authors": [{"key": "/authors/OL579204A"}], "latest_revision": 6, "oclc_numbers": ["503420525"], "works": [{"key": "/works/OL3474451W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL10386420M 5 2011-04-27T07:11:42.203743 {"publishers": ["St Martins Pr"], "number_of_pages": 493, "weight": "14.4 ounces", "covers": [2368100], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T07:11:42.203743"}, "latest_revision": 5, "key": "/books/OL10386420M", "contributions": ["Jeremy Wyatt Linzee (Editor)", "Maria Alexandra Ordonez (Editor)"], "subjects": ["Europe - Switzerland", "Travel Guides", "Travel", "Travel - Foreign"], "isbn_13": ["9780312146672"], "title": "Let's Go 97 Budget Guide to Switzerland & Austria 1997 (Annual)", "identifiers": {"goodreads": ["3377286"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0312146671"], "publish_date": "November 1996", "oclc_numbers": ["36164267"], "type": {"key": "/type/edition"}, "physical_dimensions": "8.5 x 5.2 x 1.2 inches", "revision": 5}
+/type/edition /books/OL10386716M 8 2022-12-22T10:03:54.960516 {"publishers": ["Palgrave Macmillan"], "number_of_pages": 276, "subtitle": "Politics and Historical Development", "physical_format": "Hardcover", "lc_classifications": ["DS247.Y48 C66 1984", "DS247.Y48.C66 1984"], "key": "/books/OL10386716M", "authors": [{"key": "/authors/OL3428786A"}], "subjects": ["Middle East - History", "Congresses", "History", "Yemen", "Yemen (People's Democratic Rep", "Yemen, North", "Yemen, South"], "isbn_13": ["9780312168575"], "source_records": ["marc:marc_records_scriblio_net/part17.dat:60311291:903", "marc:marc_loc_2016/BooksAll.2016.part15.utf8:129688569:916", "bwb:9780312168575", "promise:bwb_daily_pallets_2022-12-08"], "title": "Contemporary Yemen", "lccn": ["84017693"], "identifiers": {"goodreads": ["3447805"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0312168578"], "publish_date": "December 1984", "works": [{"key": "/works/OL9392071W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:P8-CAW-157"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-22T10:03:54.960516"}}
+/type/edition /books/OL1038673M 6 2021-12-24T23:31:05.701938 {"publishers": ["Gandon"], "identifiers": {"librarything": ["4217509"]}, "isbn_10": ["0946641323"], "series": ["Works series ;", "11"], "lc_classifications": ["PN1998.3.D384 A5 1993", "PN1998.3.D384A5 1993"], "key": "/books/OL1038673M", "authors": [{"key": "/authors/OL557786A"}], "publish_places": ["Dublin"], "pagination": "31 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:69922260:548", "bwb:9780946641321"], "title": "John T. Davis.", "lccn": ["93234977"], "notes": {"type": "/type/text", "value": "Filmography: p. 30-31."}, "number_of_pages": 31, "languages": [{"key": "/languages/eng"}], "subjects": ["Davis, John T., 1947- -- Interviews."], "publish_date": "1993", "publish_country": "ie ", "oclc_numbers": ["30438122"], "works": [{"key": "/works/OL3402704W"}], "type": {"key": "/type/edition"}, "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-24T23:31:05.701938"}}
+/type/edition /books/OL10387029M 2 2009-12-15T00:47:45.130401 {"physical_format": "Paperback", "title": "Take Ten Level 4", "isbn_10": ["0312189478"], "publishers": ["St. Martin's Press"], "isbn_13": ["9780312189471"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:47:45.130401"}, "publish_date": "December 2000", "key": "/books/OL10387029M", "authors": [{"key": "/authors/OL3428834A"}], "latest_revision": 2, "works": [{"key": "/works/OL9392119W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10387063M 3 2011-04-30T02:02:23.452188 {"publishers": ["St Martins Pr"], "identifiers": {"librarything": ["5175539"]}, "weight": "15.2 ounces", "edition_name": "3rd edition", "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-30T02:02:23.452188"}, "latest_revision": 3, "key": "/books/OL10387063M", "authors": [{"key": "/authors/OL3428836A"}, {"key": "/authors/OL3428837A"}], "subjects": ["United States - General", "History", "History: American"], "isbn_13": ["9780312191849"], "title": "Exploring America Now", "number_of_pages": 163, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0312191847"], "publish_date": "January 1999", "oclc_numbers": ["42279408"], "type": {"key": "/type/edition"}, "physical_dimensions": "11.2 x 8.5 x 0.5 inches", "revision": 3}
+/type/edition /books/OL10387376M 9 2022-09-18T02:07:15.133543 {"publishers": ["Palgrave Macmillan"], "identifiers": {"goodreads": ["3246783"]}, "subtitle": "Approaches to Childhood", "weight": "1 pounds", "isbn_10": ["0312217404"], "covers": [5058709, 3732341], "physical_format": "Hardcover", "lc_classifications": ["PN56.5.C48 C48 1998", "PN56.5.C48C48 1998"], "key": "/books/OL10387376M", "authors": [{"key": "/authors/OL719476A"}], "isbn_13": ["9780312217402"], "source_records": ["marc:marc_records_scriblio_net/part27.dat:74846676:701", "marc:marc_loc_2016/BooksAll.2016.part27.utf8:17689695:1022", "ia:childrenincultur0000unse", "bwb:9780312217402"], "title": "Children in Culture", "lccn": ["98022990"], "number_of_pages": 296, "languages": [{"key": "/languages/eng"}], "subjects": ["Psychology & Psychiatry / General", "General", "Special Subjects In Literature", "Literary Criticism", "Children in literature", "Identity (Psychology) in children"], "publish_date": "October 15, 1998", "works": [{"key": "/works/OL3945684W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.8 x 5.8 x 1.2 inches", "ocaid": "childrenincultur0000unse", "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T02:07:15.133543"}}
+/type/edition /books/OL10387705M 9 2022-09-17T20:39:48.460123 {"publishers": ["Palgrave Macmillan"], "identifiers": {"goodreads": ["6108343"]}, "subtitle": "A History of the Israeli-Palestinian Declaration of Principles on Interim Self-Government Arrangements", "weight": "1.9 pounds", "isbn_10": ["0312229534"], "covers": [2369540], "physical_format": "Hardcover", "lc_classifications": ["KMM707 .B83 2000", "KMM707.B83 2000"], "key": "/books/OL10387705M", "authors": [{"key": "/authors/OL3428951A"}], "isbn_13": ["9780312229535"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part01.utf8:15820958:1291", "bwb:9780312229535"], "title": "Peace With Justice", "lccn": ["00030582"], "number_of_pages": 449, "languages": [{"key": "/languages/eng"}], "subjects": ["International Relations - General", "Middle East - General", "Political History", "History / Middle East", "Middle East - Israel", "History", "Politics / Current Events", "1993 Sept. 13", "1993-", "Arab-Israeli conflict", "International status", "Israel", "Israel.", "Munazzamat al-Tahrir al-Fi", "Muna\u00f2z\u00f2zamat al-Ta\u00f2hr\u00e5ir al-Filas\u00f2t\u00e5in\u00e5iyah,", "Peace", "Treaties, etc", "Treaties, etc.", "West Bank", "History: World"], "publish_date": "September 30, 2000", "works": [{"key": "/works/OL9392240W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.8 x 5.7 x 1.3 inches", "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-17T20:39:48.460123"}}
+/type/edition /books/OL10388194M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780312258085"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "publishers": ["Bedford/St. Martin's"], "title": "Teaching Real Writing Practical Suggestions Second Edition", "edition_name": "2nd edition", "isbn_10": ["0312258089"], "publish_date": "2001", "key": "/books/OL10388194M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10388251M 10 2020-10-12T12:03:49.970228 {"publishers": ["St. Martin's Griffin"], "number_of_pages": 224, "subtitle": "How to Use Your Computer to Fight for ALL the Issues You Care About", "weight": "9.4 ounces", "isbn_10": ["0312263058"], "covers": [2370068, 177310], "physical_format": "Paperback", "lc_classifications": ["JK1764.K83 2000"], "latest_revision": 10, "key": "/books/OL10388251M", "authors": [{"key": "/authors/OL1515727A"}], "languages": [{"key": "/languages/eng"}], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part01.utf8:24318382:1166", "bwb:9780312263058"], "title": "Cybercitizen", "lccn": ["00040233"], "identifiers": {"goodreads": ["2393027"], "librarything": ["1518652"]}, "isbn_13": ["9780312263058"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "first_sentence": {"type": "/type/text", "value": "This was the first written constitution of North America, and perhaps the first time in what became the United States that somebody said, 'Can't we all just get along?\""}, "subjects": ["Civics & Citizenship", "Internet - General", "Political Process - General", "Political Science / Political Process / Political Advocacy", "Computers", "Politics - Current Events", "Politics / Current Events", "Computer network resources", "Internet", "Political aspects", "Political participation", "Politics and government", "United States", "World Wide Web", "Politics/International Relations"], "publish_date": "September 2, 2000", "last_modified": {"type": "/type/datetime", "value": "2020-10-12T12:03:49.970228"}, "works": [{"key": "/works/OL6031327W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.3 x 5.5 x 0.8 inches", "revision": 10}
+/type/edition /books/OL10388610M 7 2019-11-01T09:16:43.723436 {"publishers": ["Let's Go Publications"], "number_of_pages": 528, "subtitle": "New Zealand", "weight": "12.2 ounces", "covers": [2370425, 179118], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2019-11-01T09:16:43.723436"}, "latest_revision": 7, "key": "/books/OL10388610M", "authors": [{"key": "/authors/OL3234945A"}], "ocaid": "letsgonewzealand0000unse_l6b8", "subjects": ["Australia & Oceania - General", "United States - West - Pacific (General)", "Travel / Australia & Oceania", "Travel", "Travel - Foreign", "Guidebooks", "New Zealand"], "edition_name": "6th edition", "languages": [{"key": "/languages/eng"}], "source_records": ["ia:letsgonewzealand0000unse_l6b8"], "title": "Let's Go 2003", "identifiers": {"librarything": ["1879603"], "goodreads": ["1191064"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780312305864"], "isbn_10": ["0312305869"], "publish_date": "December 1, 2002", "works": [{"key": "/works/OL9158529W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "7.8 x 5.1 x 0.7 inches", "revision": 7}
+/type/edition /books/OL10388644M 8 2022-12-09T22:39:12.926034 {"publishers": ["Let's Go Publications"], "number_of_pages": 40, "weight": "0.8 ounces", "covers": [2370462], "physical_format": "Map", "key": "/books/OL10388644M", "authors": [{"key": "/authors/OL3234945A"}], "subjects": ["Travel & holiday guides", "Travel", "Travel - Foreign", "Germany", "Europe - Germany", "Maps & Road Atlases", "Personal & Practical Guides", "Travel / Europe / Germany"], "edition_name": "Pap/Map edition", "title": "Let's Go Pocket City Guide Berlin, 1st Ed. (Let's Go: Pocket City Guide Berlin)", "identifiers": {"goodreads": ["1574740"], "librarything": ["9367263"], "amazon": [""]}, "isbn_13": ["9780312311193"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0312311192"], "publish_date": "April 3, 2004", "works": [{"key": "/works/OL9158488W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.5 x 3.4 x 0.5 inches", "ocaid": "letsgoberlin0000unse", "lc_classifications": ["DD859 .L486 2004"], "source_records": ["ia:letsgoberlin0000unse", "promise:bwb_daily_pallets_2020-10-07"], "local_id": ["urn:bwbsku:P4-AFE-204"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T22:39:12.926034"}}
+/type/edition /books/OL10388925M 15 2021-12-24T04:26:34.997502 {"publishers": ["St. Martin's Minotaur"], "number_of_pages": 304, "ia_box_id": ["IA177001"], "weight": "1 pounds", "isbn_10": ["0312355386"], "covers": [2370749], "local_id": ["urn:sfpl:31223076926006"], "physical_format": "Hardcover", "ia_loaded_id": ["extracurriculara00barb"], "key": "/books/OL10388925M", "authors": [{"key": "/authors/OL2874437A"}], "ocaid": "extracurriculara00barb", "isbn_13": ["9780312355388"], "source_records": ["amazon:0312355386", "marc:marc_loc_updates/v36.i27.records.utf8:7315131:1265", "marc:marc_loc_updates/v36.i32.records.utf8:6197234:1396", "marc:marc_loc_updates/v37.i24.records.utf8:5621605:1396", "ia:extracurriculara00barb", "marc:marc_openlibraries_sanfranciscopubliclibrary/sfpl_chq_2018_12_24_run03.mrc:219357659:2022", "marc:marc_loc_2016/BooksAll.2016.part34.utf8:141515159:1396", "ia:extracurriculara0000barb"], "title": "Extracurricular Activities (Alison Bergeron Mysteries)", "identifiers": {"librarything": ["3385066"], "goodreads": ["794900"]}, "languages": [{"key": "/languages/eng"}], "subjects": ["Mystery And Suspense Fiction", "Fiction", "Fiction - Mystery/ Detective", "Mystery/Suspense", "Mystery & Detective - Women Sleuths", "Fiction / Mystery & Detective / Women Sleuths", "Divorced women", "Gangsters", "Women college teachers"], "publish_date": "November 27, 2007", "oclc_numbers": ["163605140"], "works": [{"key": "/works/OL8568614W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.2 x 5.3 x 1.4 inches", "lccn": ["2007032329"], "lc_classifications": ["PS3602.A767 E97 2007"], "latest_revision": 15, "revision": 15, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-24T04:26:34.997502"}}
+/type/edition /books/OL10389030M 11 2022-09-17T21:38:04.455738 {"publishers": ["Palgrave Macmillan"], "identifiers": {"goodreads": ["6300633"]}, "weight": "11.2 ounces", "isbn_10": ["0312363095"], "physical_format": "Hardcover", "lc_classifications": ["KJE969 .H365 1981", "LAW", "K0 H227x, 1981b"], "key": "/books/OL10389030M", "authors": [{"key": "/authors/OL2793900A"}], "isbn_13": ["9780312363093"], "source_records": ["marc:marc_records_scriblio_net/part12.dat:65008059:675", "marc:marc_loc_updates/v38.i26.records.utf8:4590395:775", "marc:talis_openlibrary_contribution/talis-openlibrary-contribution.mrc:532677493:675", "marc:marc_loc_2016/BooksAll.2016.part12.utf8:158991557:775", "marc:marc_uic/UIC_2022.mrc:135872201:923", "ia:harmonisationine0000unse", "bwb:9780312363093"], "title": "Harmonization in the Eec", "lccn": ["80021739"], "number_of_pages": 144, "languages": [{"key": "/languages/eng"}], "subjects": ["Administrative Law & Regulatory Practice", "General", "International Law", "Business / Economics / Finance", "European Economic Community co", "European Economic Community countries", "International and municipal la", "International and municipal law"], "publish_date": "June 1981", "works": [{"key": "/works/OL8384615W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.8 x 5.9 x 0.7 inches", "oclc_numbers": ["6708080", "8316010"], "covers": [12826785], "ocaid": "harmonisationine0000unse", "latest_revision": 11, "revision": 11, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-17T21:38:04.455738"}}
+/type/edition /books/OL10389130M 15 2020-12-17T07:16:30.055292 {"publishers": ["St. Martin's Griffin"], "identifiers": {"librarything": ["7183975"], "goodreads": ["1615569"]}, "ia_box_id": ["IA176501"], "weight": "7.2 ounces", "isbn_10": ["0312369093"], "covers": [2370927], "physical_format": "Paperback", "ia_loaded_id": ["everymanforherse00reid"], "lc_classifications": ["PS3618.E54E94 2007", "PS3618.E54 E94 2007"], "key": "/books/OL10389130M", "authors": [{"key": "/authors/OL1434108A"}], "ocaid": "everymanforherse00reid", "isbn_13": ["9780312369095"], "source_records": ["amazon:0312369093", "marc:marc_loc_updates/v35.i17.records.utf8:12216232:789", "marc:marc_loc_updates/v36.i01.records.utf8:14101028:1108", "marc:marc_loc_updates/v36.i42.records.utf8:13390152:1241", "ia:everymanforherse00reid", "bwb:9780312369095", "marc:marc_loc_2016/BooksAll.2016.part34.utf8:121570079:1241"], "title": "Every Man for Herself", "number_of_pages": 240, "languages": [{"key": "/languages/eng"}], "subjects": ["Romance", "American Contemporary Fiction - Individual Authors +", "Fiction", "Fiction - General", "General", "Fiction / General", "Adultery", "African American women", "Love stories", "New York", "New York (State)"], "publish_date": "August 21, 2007", "oclc_numbers": ["123485709"], "works": [{"key": "/works/OL5845238W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.2 x 5.4 x 0.7 inches", "lccn": ["2007016956"], "latest_revision": 15, "revision": 15, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-17T07:16:30.055292"}}
+/type/edition /books/OL10389196M 17 2020-12-17T10:41:07.844441 {"publishers": ["St. Martin's Griffin"], "identifiers": {"goodreads": ["2821572"], "librarything": ["5635312"]}, "subtitle": "A 5-Week Program for Living a Heart-Healthy Lifestyle", "ia_box_id": ["IA132518"], "isbn_10": ["0312372671"], "covers": [6725680, 2370983], "physical_format": "Paperback", "key": "/books/OL10389196M", "authors": [{"key": "/authors/OL3429247A"}, {"key": "/authors/OL3429248A"}, {"key": "/authors/OL221201A"}], "ocaid": "heartsmartforbla00mier", "subjects": ["Cardiovascular Diseases", "Personal Health", "Medical", "Diet / Health / Fitness", "Diseases - Heart", "Medical / Cardiology", "Cardiology", "African American women", "Cardiovascular system", "Diseases", "Heart", "Popular works", "Prevention"], "isbn_13": ["9780312372675"], "source_records": ["amazon:0312372671", "marc:marc_loc_updates/v36.i01.records.utf8:14815119:1124", "marc:marc_loc_updates/v36.i28.records.utf8:5854168:1303", "marc:marc_loc_updates/v36.i30.records.utf8:7214483:1391", "marc:marc_loc_updates/v36.i34.records.utf8:10210258:1360", "ia:heartsmartforbla00mier", "marc:marc_loc_updates/v40.i15.records.utf8:2509611:1453", "marc:marc_openlibraries_sanfranciscopubliclibrary/sfpl_chq_2018_12_24_run03.mrc:232120018:2419", "marc:marc_loc_2016/BooksAll.2016.part34.utf8:156757924:1571"], "title": "Heart Smart for Black Women and Latinas", "number_of_pages": 256, "languages": [{"key": "/languages/eng"}], "local_id": ["urn:sfpl:31223081425168", "urn:sfpl:31223081425176"], "publish_date": "February 5, 2008", "oclc_numbers": ["180080816"], "works": [{"key": "/works/OL15836891W"}], "type": {"key": "/type/edition"}, "lccn": ["2007044347"], "lc_classifications": ["RC672 .M52 2008"], "latest_revision": 17, "revision": 17, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-17T10:41:07.844441"}}
+/type/edition /books/OL10389290M 9 2022-11-15T17:58:11.832326 {"publishers": ["St. Martin's Griffin"], "number_of_pages": 192, "subtitle": "75 classic Sunday puzzles from the pages of The New York Times", "weight": "0.8 ounces", "covers": [2371060], "physical_format": "Paperback", "lc_classifications": [""], "key": "/books/OL10389290M", "authors": [{"key": "/authors/OL359191A"}], "subjects": ["Crosswords - General", "Games / Crosswords / General", "Indoor Games", "Games", "Games / Gamebooks / Crosswords", "Games/Puzzles"], "isbn_13": ["9780312376376"], "source_records": ["bwb:9780312376376", "amazon:0312376375"], "title": "The New York Times Sunday's Best: Celebrating 65 Years of America's Favorite Crossword Puzzle", "identifiers": {"goodreads": ["1582295"], "librarything": ["7603816"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0312376375"], "publish_date": "November 27, 2007", "works": [{"key": "/works/OL2537924W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6.1 x 0.6 inches", "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-15T17:58:11.832326"}}
+/type/edition /books/OL10389524M 3 2010-04-24T18:02:11.803476 {"languages": [{"key": "/languages/eng"}], "subtitle": "and Study Skills for College Writers (Kennedy, the Bedford Guide for College Writers, 4-In-1, Pape)", "key": "/books/OL10389524M", "publishers": ["Bedford/St. Martin's"], "identifiers": {"goodreads": ["5827868"]}, "isbn_13": ["9780312399535"], "edition_name": "Package edition", "physical_format": "Hardcover", "isbn_10": ["0312399537"], "publish_date": "May 14, 2001", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:02:11.803476"}, "authors": [{"key": "/authors/OL225933A"}, {"key": "/authors/OL2018064A"}, {"key": "/authors/OL1389996A"}], "title": "The Bedford Guide for College Writers 6e with Reader, Research Manual, & Handbook P", "latest_revision": 3, "type": {"key": "/type/edition"}, "subjects": ["Composition & Creative Writing - General", "Language Arts & Disciplines / Composition & Creative Writing", "Language Arts & Disciplines", "Language Arts / Linguistics / Literacy", "Language"], "revision": 3}
+/type/edition /books/OL10389647M 5 2021-10-04T02:55:38.374768 {"publishers": ["Bedford/St. Martin's"], "languages": [{"key": "/languages/eng"}], "subtitle": "The Era of Franklin D. Roosevelt", "title": "America A Concise History 2e Volume 2 and How the Other Half Lives and", "identifiers": {"goodreads": ["178182"]}, "isbn_13": ["9780312403485"], "edition_name": "Package edition", "physical_format": "Hardcover", "isbn_10": ["0312403488"], "publish_date": "November 26, 2001", "key": "/books/OL10389647M", "authors": [{"key": "/authors/OL709977A"}, {"key": "/authors/OL220263A"}, {"key": "/authors/OL35217A"}], "type": {"key": "/type/edition"}, "subjects": ["General", "History / General", "History", "History - General History", "History: World"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-10-04T02:55:38.374768"}}
+/type/edition /books/OL10389709M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["St. Martin's Press"], "title": "The Illusion of Peace", "isbn_13": ["9780312406004"], "isbn_10": ["0312406002"], "publish_date": "October 1976", "key": "/books/OL10389709M", "type": {"key": "/type/edition"}, "subjects": ["Causes", "League of Nations", "Peace", "World War, 1914-1918", "World War, 1939-1945"], "revision": 1}
+/type/edition /books/OL10389839M 4 2022-09-17T20:32:39.960457 {"publishers": ["St Martins Pr"], "languages": [{"key": "/languages/eng"}], "title": "Imperial Frontier in the Tropics Eighteen and Sixty-Five Thru Eighteen and Seventy-Five", "identifiers": {"librarything": ["1749541"]}, "isbn_13": ["9780312409852"], "physical_format": "Hardcover", "isbn_10": ["0312409850"], "publish_date": "June 1969", "key": "/books/OL10389839M", "authors": [{"key": "/authors/OL221061A"}], "works": [{"key": "/works/OL1846631W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780312409852"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-17T20:32:39.960457"}}
+/type/edition /books/OL10389873M 4 2010-04-24T18:02:11.803476 {"publishers": ["Bedford/St. Martin's"], "physical_format": "Paperback", "subtitle": "A Brief History with Documents", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:02:11.803476"}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "identifiers": {"goodreads": ["2223300"]}, "isbn_13": ["9780312410711"], "edition_name": "Package edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0312410719"], "publish_date": "October 18, 2002", "key": "/books/OL10389873M", "authors": [{"key": "/authors/OL2685049A"}, {"key": "/authors/OL442682A"}, {"key": "/authors/OL448617A"}, {"key": "/authors/OL231725A"}, {"key": "/authors/OL387852A"}], "subjects": ["History / General", "General", "History", "History - General History", "History: World"], "title": "Making of the West Concise Volume 1 and Spartacus & the Slave Wars", "latest_revision": 4, "works": [{"key": "/works/OL14954821W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10390238M 4 2011-02-13T00:25:26.449031 {"publishers": ["Bedford/St. Martin's"], "languages": [{"key": "/languages/eng"}], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "subtitle": "by Jacob A. Riis", "last_modified": {"type": "/type/datetime", "value": "2011-02-13T00:25:26.449031"}, "title": "American Promise Compact 2e Volume 2 and How the Other Half Lives", "identifiers": {"goodreads": ["90181"]}, "isbn_13": ["9780312418052"], "edition_name": "Package edition", "physical_format": "Hardcover", "isbn_10": ["0312418051"], "publish_date": "May 29, 2003", "key": "/books/OL10390238M", "authors": [{"key": "/authors/OL1914951A"}, {"key": "/authors/OL220263A"}, {"key": "/authors/OL709977A"}, {"key": "/authors/OL1232621A"}, {"key": "/authors/OL222670A"}, {"key": "/authors/OL1860304A"}, {"key": "/authors/OL1981900A"}, {"key": "/authors/OL223039A"}], "latest_revision": 4, "type": {"key": "/type/edition"}, "subjects": ["History / General", "General", "History", "History - General History", "History: World"], "revision": 4}
+/type/edition /books/OL10390390M 3 2010-08-03T00:10:27.639523 {"publishers": ["Bedford/St. Martin's"], "physical_format": "Paperback", "subtitle": "Practice in Context", "last_modified": {"type": "/type/datetime", "value": "2010-08-03T00:10:27.639523"}, "title": "Writing First with Readings 2e and Ghost Dancing", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780312430474"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0312430477"], "publish_date": "December 1, 2003", "key": "/books/OL10390390M", "authors": [{"key": "/authors/OL34612A"}, {"key": "/authors/OL2626929A"}], "latest_revision": 3, "works": [{"key": "/works/OL14950160W"}], "type": {"key": "/type/edition"}, "subjects": ["Composition & Creative Writing - General", "Language Arts & Disciplines / Composition & Creative Writing", "Language Arts & Disciplines", "Language Arts / Linguistics / Literacy", "Language"], "revision": 3}
+/type/edition /books/OL10390553M 2 2011-04-27T09:08:05.787822 {"publishers": ["Bedford/St. Martin's"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2011-04-27T09:08:05.787822"}, "title": "Writing in a Visual Age & Encarta paperback dictionary", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780312433215"], "physical_format": "Paperback", "isbn_10": ["0312433212"], "publish_date": "March 2, 2005", "key": "/books/OL10390553M", "authors": [{"key": "/authors/OL1395633A"}, {"key": "/authors/OL399775A"}], "latest_revision": 2, "oclc_numbers": ["144545184"], "type": {"key": "/type/edition"}, "subjects": ["Composition & Creative Writing - General", "Language Arts & Disciplines / Composition & Creative Writing", "Language Arts & Disciplines", "Language Arts / Linguistics / Literacy", "Language"], "revision": 2}
+/type/edition /books/OL10390713M 5 2011-04-25T18:22:00.937363 {"publishers": ["Bedford/St. Martin's"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2011-04-25T18:22:00.937363"}, "title": "Compact Reader 7e and Rules for Writers 5e", "identifiers": {"goodreads": ["364805"]}, "isbn_13": ["9780312435691"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Hardcover", "isbn_10": ["031243569X"], "publish_date": "March 31, 2004", "key": "/books/OL10390713M", "authors": [{"key": "/authors/OL25599A"}, {"key": "/authors/OL35091A"}], "latest_revision": 5, "oclc_numbers": ["144551602"], "works": [{"key": "/works/OL15288566W"}], "type": {"key": "/type/edition"}, "subjects": ["Language Arts & Disciplines / Composition & Creative Writing", "Composition & Creative Writing - General", "Language Arts & Disciplines", "Language Arts / Linguistics / Literacy", "Language"], "revision": 5}
+/type/edition /books/OL10390779M 4 2011-04-28T13:08:00.512574 {"publishers": ["Bedford/St. Martin's"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-28T13:08:00.512574"}, "title": "Making Sense 2e and Getting the Picture", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780312436773"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0312436777"], "publish_date": "December 24, 2004", "key": "/books/OL10390779M", "authors": [{"key": "/authors/OL384435A"}, {"key": "/authors/OL1515594A"}], "latest_revision": 4, "oclc_numbers": ["144545311"], "works": [{"key": "/works/OL15066817W"}], "type": {"key": "/type/edition"}, "subjects": ["Composition & Creative Writing - General", "General", "Language Arts & Disciplines / Composition & Creative Writing", "Language Arts & Disciplines", "Reference", "Language"], "revision": 4}
+/type/edition /books/OL10391097M 4 2011-04-26T18:04:09.508573 {"publishers": ["Bedford/St. Martin's"], "languages": [{"key": "/languages/eng"}], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2011-04-26T18:04:09.508573"}, "title": "Real Essays & From Practice to Mastery", "identifiers": {"goodreads": ["1507865"]}, "isbn_13": ["9780312443290"], "edition_name": "Package edition", "physical_format": "Paperback", "isbn_10": ["0312443293"], "publish_date": "December 10, 2004", "key": "/books/OL10391097M", "authors": [{"key": "/authors/OL408062A"}, {"key": "/authors/OL3299627A"}, {"key": "/authors/OL3299628A"}], "latest_revision": 4, "oclc_numbers": ["144516038"], "type": {"key": "/type/edition"}, "subjects": ["Composition & Creative Writing - Nonfiction", "Language Arts & Disciplines / General", "General", "Language Arts & Disciplines", "Language Arts / Linguistics / Literacy", "Language"], "revision": 4}
+/type/edition /books/OL1039134M 3 2020-11-17T21:34:04.665404 {"publishers": ["Editalia"], "subtitle": "interventi di restauro", "isbn_10": ["8870602613"], "subject_place": ["Rome (Italy)", "Italy", "Rome."], "lc_classifications": ["NA5620.S23 C66 1992"], "latest_revision": 3, "key": "/books/OL1039134M", "publish_places": ["Roma"], "contributions": ["Arcieri, Cosima.", "Pietrangeli, Carlo."], "pagination": "198 p. :", "source_records": ["marc:marc_records_scriblio_net/part24.dat:7431443:952", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:70449697:952"], "title": "Il Complesso dei SS. Apostoli", "lccn": ["93235647"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 189-190)."}, "number_of_pages": 198, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/ita"}], "subjects": ["Santi Apostoli (Church : Rome, Italy)", "Basilicas -- Conservation and restoration -- Italy -- Rome.", "Rome (Italy) -- Buildings, structures, etc."], "publish_date": "1992", "publish_country": "it ", "last_modified": {"type": "/type/datetime", "value": "2020-11-17T21:34:04.665404"}, "by_statement": "a cura di Cosima Arcieri ; testi di Carlo Pietrangeli ... [et al.] ; presentazione di Giovanni Spadolini ; testi introduttivi di Raffaele Minicucci, Gianfranco Ruggieri, Francesco Zurli.", "works": [{"key": "/works/OL19408406W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10391630M 4 2011-04-30T03:22:15.794037 {"publishers": ["Bedford/St. Martin's"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2011-04-30T03:22:15.794037"}, "weight": "1.6 pounds", "title": "Bedford Handbook 7e cloth & Exercise CD-Rom", "identifiers": {"goodreads": ["2732886"]}, "isbn_13": ["9780312453985"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Hardcover", "isbn_10": ["0312453981"], "publish_date": "April 10, 2006", "key": "/books/OL10391630M", "authors": [{"key": "/authors/OL35091A"}], "latest_revision": 4, "oclc_numbers": ["149579231"], "type": {"key": "/type/edition"}, "subjects": ["Language Arts & Disciplines / Composition & Creative Writing", "Composition & Creative Writing - General", "Language Arts & Disciplines", "Language Arts / Linguistics / Literacy", "Language"], "physical_dimensions": "7.2 x 5.2 x 1.2 inches", "revision": 4}
+/type/edition /books/OL10391741M 3 2011-04-28T21:19:06.806703 {"publishers": ["Bedford/St. Martin's"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-28T21:19:06.806703"}, "title": "Presence of Others 4e & Comment", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780312456047"], "edition_name": "4 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0312456042"], "publish_date": "October 28, 2005", "key": "/books/OL10391741M", "authors": [{"key": "/authors/OL62093A"}, {"key": "/authors/OL27509A"}, {"key": "/authors/OL3429267A"}], "latest_revision": 3, "oclc_numbers": ["144514412"], "works": [{"key": "/works/OL15066109W"}], "type": {"key": "/type/edition"}, "subjects": ["Language Arts & Disciplines / Composition & Creative Writing", "Composition & Creative Writing - General", "Language Arts & Disciplines", "Language Arts / Linguistics / Literacy", "Language"], "revision": 3}
+/type/edition /books/OL10391742M 4 2010-04-24T18:02:11.803476 {"publishers": ["Bedford/St. Martin's"], "physical_format": "Paperback", "weight": "2.2 pounds", "title": "Rules for Writers 5e & Bedford/St. Martin's ESL Workbook", "identifiers": {"goodreads": ["1564416"]}, "isbn_13": ["9780312456061"], "covers": [5058885], "edition_name": "5 edition", "languages": [{"key": "/languages/eng"}], "authors": [{"key": "/authors/OL35091A"}, {"key": "/authors/OL3270807A"}, {"key": "/authors/OL3270808A"}, {"key": "/authors/OL3270809A"}], "isbn_10": ["0312456069"], "publish_date": "February 28, 2006", "key": "/books/OL10391742M", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:02:11.803476"}, "latest_revision": 4, "subjects": ["Composition & Creative Writing - Academic", "Language Arts & Disciplines / Composition & Creative Writing", "Composition & Creative Writing - General", "Language Arts & Disciplines", "Language Arts / Linguistics / Literacy", "Language"], "type": {"key": "/type/edition"}, "physical_dimensions": "10.9 x 8.3 x 1.2 inches", "revision": 4}
+/type/edition /books/OL10391835M 5 2011-04-26T07:30:40.160382 {"publishers": ["Bedford/St. Martin's"], "languages": [{"key": "/languages/eng"}], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2011-04-26T07:30:40.160382"}, "title": "America A Concise History 3e V2 & Lyndon B. Johnson and American Liberalism", "identifiers": {"goodreads": ["566797"]}, "isbn_13": ["9780312457723"], "edition_name": "Package edition", "physical_format": "Paperback", "isbn_10": ["0312457723"], "publish_date": "December 1, 2005", "key": "/books/OL10391835M", "authors": [{"key": "/authors/OL765713A"}, {"key": "/authors/OL227404A"}, {"key": "/authors/OL590763A"}, {"key": "/authors/OL584526A"}], "latest_revision": 5, "oclc_numbers": ["144516138"], "works": [{"key": "/works/OL15299198W"}], "type": {"key": "/type/edition"}, "subjects": ["History / United States / General", "United States - General", "History", "History - U.S.", "History: American"], "revision": 5}
+/type/edition /books/OL10391841M 2 2011-04-29T13:33:51.043321 {"publishers": ["Bedford/St. Martin's"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2011-04-29T13:33:51.043321"}, "weight": "2.6 pounds", "title": "Everyday Writer 3e & Electronic Exercises & America Now 6e", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780312457860"], "physical_format": "Paperback", "isbn_10": ["0312457863"], "publish_date": "December 9, 2005", "key": "/books/OL10391841M", "authors": [{"key": "/authors/OL62093A"}, {"key": "/authors/OL1192074A"}], "latest_revision": 2, "oclc_numbers": ["144516144"], "type": {"key": "/type/edition"}, "subjects": ["Language Arts & Disciplines / Composition & Creative Writing", "Composition & Creative Writing - General", "Language Arts & Disciplines", "Language Arts / Linguistics / Literacy", "Language"], "physical_dimensions": "8.5 x 6.2 x 1.4 inches", "revision": 2}
+/type/edition /books/OL10392078M 7 2021-05-23T13:49:54.548086 {"publishers": ["Bedford/St. Martin's"], "weight": "6 pounds", "physical_format": "Hardcover", "key": "/books/OL10392078M", "authors": [{"key": "/authors/OL391845A"}, {"key": "/authors/OL9388A"}], "contributions": ["Gerald Graff (Editor)", "James D. Phelan (Editor)", "Frances E. Dolan (Editor)"], "subjects": ["Literature: Classics", "Literary Collections / General", "Literature - Classics / Criticism", "General", "Literary Collections"], "title": "Bedford Introduction to Drama 5e & Tempest & Taming of the Shrew", "identifiers": {"goodreads": ["1568942"]}, "languages": [{"key": "/languages/eng"}], "publish_date": "April 12, 2006", "works": [{"key": "/works/OL14915535W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.9 x 7.8 x 2.5 inches", "isbn_10": ["031246195X"], "isbn_13": ["9780312461959"], "oclc_numbers": ["144521921"], "classifications": {}, "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-05-23T13:49:54.548086"}}
+/type/edition /books/OL10392126M 3 2011-04-30T04:46:14.878342 {"publishers": ["Bedford/St. Martin's"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-30T04:46:14.878342"}, "title": "Real Skills & Exercise Central to Go", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780312462642"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0312462646"], "publish_date": "January 10, 2007", "key": "/books/OL10392126M", "authors": [{"key": "/authors/OL408062A"}], "latest_revision": 3, "oclc_numbers": ["150374183"], "works": [{"key": "/works/OL2771930W"}], "type": {"key": "/type/edition"}, "subjects": ["Language Arts & Disciplines / Composition & Creative Writing", "Composition & Creative Writing - General", "Language Arts & Disciplines", "Language Arts / Linguistics / Literacy", "Language"], "revision": 3}
+/type/edition /books/OL1039313M 4 2020-11-17T21:36:21.725122 {"other_titles": ["Mekhanika ta rui\u0306nuvanni\u0361a\ufe21 hirs\u02b9kykh porid."], "publishers": ["Nauk. dumka"], "subtitle": "sbornik nauchnykh trudov", "isbn_10": ["5120028004"], "lc_classifications": ["TA706 .M4533 1993"], "latest_revision": 4, "key": "/books/OL1039313M", "publish_places": ["Kiev"], "contributions": ["Efremov, E\u0307rnest Ivanovich.", "Institut geotekhnicheskoi\u0306 mekhaniki (Akademii\u0361a\ufe21 nauk Ukrai\u0308ny)"], "pagination": "158 p. :", "source_records": ["marc:marc_records_scriblio_net/part24.dat:7574841:1054", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:70613544:1096"], "title": "Mekhanika i razrushenie gornykh porod", "lccn": ["93235896"], "notes": {"type": "/type/text", "value": "Includes bibliographical references.\n\"Naukove vydanni\u0361a\ufe21\"--Colophon.\nTitle in colophon: Mekhanika ta rui\u0306nuvanni\u0361a\ufe21 hirs\u02b9kykh porid.\nAt head of title: Akademii\u0361a\ufe21 nauk Ukrainy. Institut geotekhnicheskoi\u0306 mekhaniki."}, "number_of_pages": 158, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/rus"}], "subjects": ["Rock mechanics.", "Fracture mechanics."], "publish_date": "1993", "publish_country": "un ", "last_modified": {"type": "/type/datetime", "value": "2020-11-17T21:36:21.725122"}, "by_statement": "[redakt\u0361s\ufe21ionnai\u0361a\ufe21 kollegii\u0361a\ufe21, E\u0307.I. Efremov (otvetstvennyi\u0306 redaktor) ... et al.].", "oclc_numbers": ["31075244"], "works": [{"key": "/works/OL19005007W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10393182M 5 2010-08-17T01:55:15.718600 {"publishers": ["St. Martin's Press"], "physical_format": "Paperback", "subtitle": "Three Victorian Children's Illustrators", "last_modified": {"type": "/type/datetime", "value": "2010-08-17T01:55:15.718600"}, "title": "Nymphets and Fairies ", "identifiers": {"goodreads": ["2639220"], "librarything": ["6131106"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780312580476"], "isbn_10": ["0312580479"], "publish_date": "February 1, 1977", "key": "/books/OL10393182M", "authors": [{"key": "/authors/OL227054A"}], "latest_revision": 5, "works": [{"key": "/works/OL1896650W"}], "type": {"key": "/type/edition"}, "subjects": ["Artists, Architects, Photographers", "Biography & Autobiography", "Children's Literature - General", "Language Arts & Disciplines", "Literary Criticism", "Publishing"], "revision": 5}
+/type/edition /books/OL10393775M 7 2022-12-05T05:32:34.665916 {"publishers": ["St Martins Mass Market Paper"], "number_of_pages": 288, "subtitle": "The Authorized Biography", "physical_format": "Paperback", "key": "/books/OL10393775M", "authors": [{"key": "/authors/OL1235620A"}], "subjects": ["1899-", "Biography", "Cagney, James", "Cagney, James,", "Moving-picture actors and actresses", "United States", "Biography/Autobiography"], "languages": [{"key": "/languages/eng"}], "title": "Cagney", "identifiers": {"librarything": ["1012587"], "goodreads": ["1749249"]}, "isbn_13": ["9780312902070"], "isbn_10": ["0312902077"], "publish_date": "February 1986", "oclc_numbers": ["13154097"], "works": [{"key": "/works/OL5364891W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:P7-CZC-152"], "source_records": ["promise:bwb_daily_pallets_2022-05-25"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-05T05:32:34.665916"}}
+/type/edition /books/OL10393785M 7 2022-12-03T21:44:55.180209 {"publishers": ["St. Martin's Press"], "identifiers": {"librarything": ["445723"], "goodreads": ["471954"]}, "subtitle": "An Autobiography of Mr. T", "physical_format": "Paperback", "key": "/books/OL10393785M", "authors": [{"key": "/authors/OL3429371A"}], "subjects": ["Entertainment & Performing Arts - General", "Biography / Autobiography", "Biography", "Entertainers", "Mr. T", "United States", "Biography/Autobiography"], "languages": [{"key": "/languages/eng"}], "title": "Mr. T: The Man With the Gold ", "number_of_pages": 320, "isbn_13": ["9780312902742"], "isbn_10": ["0312902743"], "publish_date": "April 1985", "oclc_numbers": ["12120050"], "works": [{"key": "/works/OL9392682W"}], "type": {"key": "/type/edition"}, "source_records": ["amazon:0312902743"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-03T21:44:55.180209"}}
+/type/edition /books/OL10394083M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["St. Martin's Press"], "title": "The Ultimate Owner's Manual, 1993/Glove Compartment Edition", "isbn_13": ["9780312919047"], "isbn_10": ["0312919042"], "publish_date": "December 1992", "key": "/books/OL10394083M", "type": {"key": "/type/edition"}, "subjects": ["Automobiles", "Maintenance and repair", "Purchasing"], "revision": 1}
+/type/edition /books/OL10394312M 2 2020-08-29T23:12:30.064510 {"publishers": ["St. Martin's Press"], "physical_format": "Hardcover", "source_records": ["bwb:9780312930875"], "title": "Deadlock", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2020-08-29T23:12:30.064510"}, "isbn_13": ["9780312930875"], "isbn_10": ["0312930879"], "publish_date": "August 1999", "key": "/books/OL10394312M", "authors": [{"key": "/authors/OL2621505A"}], "latest_revision": 2, "works": [{"key": "/works/OL21797437W"}], "type": {"key": "/type/edition"}, "subjects": ["Fiction", "Fiction - General"], "revision": 2}
+/type/edition /books/OL10394320M 5 2020-11-06T07:25:17.194212 {"publishers": ["Tor Books"], "isbn_10": ["0312932073"], "physical_format": "Hardcover", "lc_classifications": ["PS3558.A3223 B66 1988"], "latest_revision": 5, "key": "/books/OL10394320M", "authors": [{"key": "/authors/OL596240A"}], "languages": [{"key": "/languages/eng"}], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part18.utf8:14007419:708"], "title": "From the Ashes (Bon Marche, Vol 2)", "lccn": ["87028607"], "identifiers": {"goodreads": ["1975568"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780312932077"], "subjects": ["American Historical Fiction", "Fiction"], "publish_date": "September 1989", "last_modified": {"type": "/type/datetime", "value": "2020-11-06T07:25:17.194212"}, "works": [{"key": "/works/OL3546889W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10394679M 3 2010-04-13T05:57:04.984140 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 173, "weight": "12.6 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497390418"], "title": "The 2007-2012 Outlook for Non-Prescription Cough and Cold Preparations Excluding Lozenges, Capsules, Tablets, and Syrups in Japan", "isbn_13": ["9780497390419"], "covers": [2446462], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:57:04.984140"}, "latest_revision": 3, "key": "/books/OL10394679M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "September 28, 2006", "works": [{"key": "/works/OL3312317W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Non-Prescription Cough and Cold Preparations Excluding Lozenges, Capsules, Tablets, and Syrups in Japan,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.4 inches", "revision": 3}
+/type/edition /books/OL10394835M 3 2010-04-13T05:57:04.984140 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 172, "weight": "12.6 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497392194"], "title": "The 2007-2012 Outlook for Household Deodorant Bar Soaps Excluding Medicated Soaps in Japan", "isbn_13": ["9780497392192"], "covers": [2446618], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:57:04.984140"}, "latest_revision": 3, "key": "/books/OL10394835M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "September 28, 2006", "works": [{"key": "/works/OL3309554W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Household Deodorant Bar Soaps Excluding Medicated Soaps in Japan,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.4 inches", "revision": 3}
+/type/edition /books/OL10394878M 3 2010-04-13T05:57:04.984140 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 139, "weight": "10.4 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497392690"], "title": "The 2007-2012 Outlook for Canned Peach Pie Mixes in Greater China", "isbn_13": ["9780497392697"], "covers": [2446661], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:57:04.984140"}, "latest_revision": 3, "key": "/books/OL10394878M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "September 28, 2006", "works": [{"key": "/works/OL3303792W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Canned Peach Pie Mixes in Greater China,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.3 inches", "revision": 3}
+/type/edition /books/OL10394898M 3 2010-04-13T05:57:04.984140 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 139, "weight": "10.4 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497392925"], "title": "The 2007-2012 Outlook for Canned Barbecue Sauce in Greater China", "isbn_13": ["9780497392925"], "covers": [2446681], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:57:04.984140"}, "latest_revision": 3, "key": "/books/OL10394898M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "September 28, 2006", "works": [{"key": "/works/OL3303583W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Canned Barbecue Sauce in Greater China,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.3 inches", "revision": 3}
+/type/edition /books/OL10395350M 3 2010-04-13T05:57:04.984140 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 141, "weight": "10.6 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497398044"], "title": "The 2007-2012 Outlook for Fabricated Textile Products Made in Weaving Mills in Greater China", "isbn_13": ["9780497398040"], "covers": [2447133], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:57:04.984140"}, "latest_revision": 3, "key": "/books/OL10395350M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "September 28, 2006", "works": [{"key": "/works/OL3307127W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Fabricated Textile Products Made in Weaving Mills in Greater China,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.4 inches", "revision": 3}
+/type/edition /books/OL10396144M 3 2010-04-13T05:57:04.984140 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 139, "weight": "10.4 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["049740656X"], "title": "The 2007-2012 Outlook for Non-Prescription Cough Syrups in Greater China", "isbn_13": ["9780497406561"], "covers": [2447928], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:57:04.984140"}, "latest_revision": 3, "key": "/books/OL10396144M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "September 28, 2006", "works": [{"key": "/works/OL3312319W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Non-Prescription Cough Syrups in Greater China,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.3 inches", "revision": 3}
+/type/edition /books/OL10396177M 3 2010-04-13T05:57:04.984140 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 144, "weight": "10.9 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497406942"], "title": "The 2007-2012 Outlook for Pharmaceutical Vitamin, Nutrient, and Hematinic Preparations for Human Use in Greater China", "isbn_13": ["9780497406943"], "covers": [2447961], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:57:04.984140"}, "latest_revision": 3, "key": "/books/OL10396177M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "September 28, 2006", "works": [{"key": "/works/OL3313601W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Pharmaceutical Vitamin, Nutrient, and Hematinic Preparations for Human Use in Greater China,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.4 inches", "revision": 3}
+/type/edition /books/OL1039646M 3 2020-11-17T21:41:04.822245 {"publishers": ["Pra\u0301ce"], "series": ["Edice poezie Kli\u0301n"], "lc_classifications": ["MLCS 93/15232 (P)"], "latest_revision": 3, "key": "/books/OL1039646M", "authors": [{"key": "/authors/OL558213A"}], "publish_places": ["V Praze"], "languages": [{"key": "/languages/cze"}], "pagination": "76 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:70972718:467"], "title": "Ba\u0301sen\u030c o zemi", "lccn": ["93236384"], "number_of_pages": 76, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "edition_name": "1. vyd.", "last_modified": {"type": "/type/datetime", "value": "2020-11-17T21:41:04.822245"}, "publish_date": "1985", "publish_country": "cs ", "by_statement": "Oldr\u030cich Rafaj.", "works": [{"key": "/works/OL3404714W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10396673M 3 2010-04-13T05:57:04.984140 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 139, "weight": "10.4 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497412349"], "title": "The 2007-2012 Outlook for Metal Weather Strip in Greater China", "isbn_13": ["9780497412340"], "covers": [2448457], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:57:04.984140"}, "latest_revision": 3, "key": "/books/OL10396673M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "September 28, 2006", "works": [{"key": "/works/OL3311638W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Metal Weather Strip in Greater China,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.3 inches", "revision": 3}
+/type/edition /books/OL10397598M 3 2010-04-13T05:57:04.984140 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 140, "weight": "10.6 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497423081"], "title": "The 2007-2012 Outlook for Nursing Homes in Greater China", "isbn_13": ["9780497423087"], "covers": [2449382], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:57:04.984140"}, "latest_revision": 3, "key": "/books/OL10397598M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "September 28, 2006", "works": [{"key": "/works/OL3312550W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Nursing Homes in Greater China,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.4 inches", "revision": 3}
+/type/edition /books/OL10397962M 3 2010-04-13T05:57:04.984140 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 139, "weight": "10.4 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497427346"], "title": "The 2007-2012 Outlook for Small Pet Food in Greater China", "isbn_13": ["9780497427344"], "covers": [2449746], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:57:04.984140"}, "latest_revision": 3, "key": "/books/OL10397962M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "September 28, 2006", "works": [{"key": "/works/OL3316113W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Small Pet Food in Greater China,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.3 inches", "revision": 3}
+/type/edition /books/OL10397977M 3 2010-04-13T05:57:04.984140 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 139, "weight": "10.4 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497427516"], "title": "The 2007-2012 Outlook for Televisions in Greater China", "isbn_13": ["9780497427511"], "covers": [2449761], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:57:04.984140"}, "latest_revision": 3, "key": "/books/OL10397977M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "September 28, 2006", "works": [{"key": "/works/OL3317277W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Televisions in Greater China,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.3 inches", "revision": 3}
+/type/edition /books/OL10397986M 3 2010-04-13T05:57:04.984140 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 139, "weight": "10.4 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497427621"], "title": "The 2007-2012 Outlook for Vacuum Cleaners in Greater China", "isbn_13": ["9780497427627"], "covers": [2449770], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:57:04.984140"}, "latest_revision": 3, "key": "/books/OL10397986M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "September 28, 2006", "works": [{"key": "/works/OL3317850W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Vacuum Cleaners in Greater China,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.3 inches", "revision": 3}
+/type/edition /books/OL10398291M 3 2010-04-13T05:57:04.984140 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 139, "weight": "10.4 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497431335"], "title": "The 2007-2012 Outlook for Complete-Protection Toothpaste in Greater China", "isbn_13": ["9780497431334"], "covers": [2450075], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:57:04.984140"}, "latest_revision": 3, "key": "/books/OL10398291M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "September 28, 2006", "works": [{"key": "/works/OL3305088W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Complete-Protection Toothpaste in Greater China,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.3 inches", "revision": 3}
+/type/edition /books/OL10398620M 3 2010-04-13T05:57:04.984140 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 171, "weight": "12.5 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497435276"], "title": "The 2007-2012 Outlook for Refrigerated Flour Doughs and Batters Made in Flour Mills in Japan", "isbn_13": ["9780497435271"], "covers": [2450404], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:57:04.984140"}, "latest_revision": 3, "key": "/books/OL10398620M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "September 28, 2006", "works": [{"key": "/works/OL3315117W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Refrigerated Flour Doughs and Batters Made in Flour Mills in Japan,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.4 inches", "revision": 3}
+/type/edition /books/OL10398623M 3 2010-04-13T05:57:04.984140 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 173, "weight": "12.6 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497435306"], "title": "The 2007-2012 Outlook for Flour Mixes and Refrigerated and Frozen Doughs and Batters Made in Flour Mills in Japan", "isbn_13": ["9780497435301"], "covers": [2450407], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:57:04.984140"}, "latest_revision": 3, "key": "/books/OL10398623M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "September 28, 2006", "works": [{"key": "/works/OL3307730W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Flour Mixes and Refrigerated and Frozen Doughs and Batters Made in Flour Mills in Japan,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.4 inches", "revision": 3}
+/type/edition /books/OL10399062M 3 2010-04-13T05:57:04.984140 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 159, "weight": "11.7 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497440040"], "title": "The 2007-2012 Outlook for Edible Tallow and Stearin Made in Slaughtering Plants in Japan", "isbn_13": ["9780497440046"], "covers": [2450846], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:57:04.984140"}, "latest_revision": 3, "key": "/books/OL10399062M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "September 28, 2006", "works": [{"key": "/works/OL3306693W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Edible Tallow and Stearin Made in Slaughtering Plants in Japan,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.4 inches", "revision": 3}
+/type/edition /books/OL10399243M 5 2010-04-24T18:02:11.803476 {"publishers": ["ICON Group International, Inc."], "languages": [{"key": "/languages/eng"}], "identifiers": {"goodreads": ["2365697"]}, "weight": "12.6 ounces", "title": "The 2007-2012 Outlook for Worcestershire, Soy, Horseradish, Meat, Vegetable, Seafood, and Other Prepared Sauces Excluding Tomato Sauces and Mustard in Japan", "number_of_pages": 173, "isbn_13": ["9780497441968"], "covers": [2451027], "physical_format": "Paperback", "authors": [{"key": "/authors/OL539875A"}], "isbn_10": ["0497441969"], "latest_revision": 5, "key": "/books/OL10399243M", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:02:11.803476"}, "publish_date": "September 28, 2006", "works": [{"key": "/works/OL3319272W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Worcestershire, Soy, Horseradish, Meat, Vegetable, Seafood, and Other Prepared Sauces Excluding Tomato Sauces and Mustard in Japan,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.4 inches", "revision": 5}
+/type/edition /books/OL10399597M 5 2010-04-24T18:02:11.803476 {"publishers": ["ICON Group International, Inc."], "languages": [{"key": "/languages/eng"}], "identifiers": {"goodreads": ["1798297"]}, "weight": "12.6 ounces", "title": "The 2007-2012 Outlook for Table Cutlery for Food Serving and Eating with Handles of Materials Other Than Metal in Japan", "number_of_pages": 173, "isbn_13": ["9780497445782"], "covers": [2451381], "physical_format": "Paperback", "authors": [{"key": "/authors/OL539875A"}], "isbn_10": ["0497445786"], "latest_revision": 5, "key": "/books/OL10399597M", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:02:11.803476"}, "publish_date": "September 28, 2006", "works": [{"key": "/works/OL3317167W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Table Cutlery for Food Serving and Eating with Handles of Materials Other Than Metal in Japan,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.4 inches", "revision": 5}
+/type/edition /books/OL10399631M 3 2010-04-13T05:57:04.984140 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 173, "weight": "12.6 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497446146"], "title": "The 2007-2012 Outlook for Stamped and Spun Cooking and Kitchen Utensils Excluding Aluminum Utensils in Japan", "isbn_13": ["9780497446147"], "covers": [2451415], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:57:04.984140"}, "latest_revision": 3, "key": "/books/OL10399631M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "September 28, 2006", "works": [{"key": "/works/OL3316673W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Stamped and Spun Cooking and Kitchen Utensils Excluding Aluminum Utensils in Japan,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.4 inches", "revision": 3}
+/type/edition /books/OL10400092M 3 2010-04-13T05:57:04.984140 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 173, "weight": "12.6 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497451166"], "title": "The 2007-2012 Outlook for Alarm Clocks Excluding Clock Timers and Timing Mechanisms in Japan", "isbn_13": ["9780497451165"], "covers": [2451877], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:57:04.984140"}, "latest_revision": 3, "key": "/books/OL10400092M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "September 28, 2006", "works": [{"key": "/works/OL3301909W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Alarm Clocks Excluding Clock Timers and Timing Mechanisms in Japan,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.4 inches", "revision": 3}
+/type/edition /books/OL10400172M 3 2010-04-13T05:57:04.984140 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 173, "weight": "12.6 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497452014"], "title": "The 2007-2012 Outlook for Complete Firefighting Vehicles Produced on Purchased Chassis in Japan", "isbn_13": ["9780497452018"], "covers": [2451957], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:57:04.984140"}, "latest_revision": 3, "key": "/books/OL10400172M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "September 28, 2006", "works": [{"key": "/works/OL3305079W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Complete Firefighting Vehicles Produced on Purchased Chassis in Japan,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.4 inches", "revision": 3}
+/type/edition /books/OL10400730M 3 2010-04-13T05:57:04.984140 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 140, "weight": "10.6 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497458128"], "title": "The 2007-2012 Outlook for Bar Soap in Japan", "isbn_13": ["9780497458126"], "covers": [2452515], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:57:04.984140"}, "latest_revision": 3, "key": "/books/OL10400730M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "September 28, 2006", "works": [{"key": "/works/OL3302764W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Bar Soap in Japan,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.4 inches", "revision": 3}
+/type/edition /books/OL10401163M 3 2010-04-13T05:58:09.082313 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 140, "weight": "10.6 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["049746277X"], "title": "The 2007-2012 Outlook for General Merchandise\u00a0stores in Japan", "isbn_13": ["9780497462772"], "covers": [2452948], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:58:09.082313"}, "latest_revision": 3, "key": "/books/OL10401163M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "September 28, 2006", "works": [{"key": "/works/OL3308685W"}], "type": {"key": "/type/edition"}, "subjects": ["market,General Merchandise\u00a0stores in Japan,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.4 inches", "revision": 3}
+/type/edition /books/OL1040124M 5 2020-11-17T21:48:14.931590 {"publishers": ["U.S. G.P.O.", "For sale by the U.S. G.P.O., Supt. of Docs., Congressional Sales Office"], "subtitle": "(includes a directory of pharmaceutical manufacturer indigent patient programs) : a staff report of the Special Committee on Aging, United States Senate.", "isbn_10": ["0160401690"], "series": ["S. prt. ;", "103-16"], "pagination": "vii, 103 p. ;", "lc_classifications": ["RC953.7 .P73 1993"], "latest_revision": 5, "key": "/books/OL1040124M", "publish_places": ["Washington"], "contributions": ["United States. Congress. Senate. Special Committee on Aging."], "genres": ["Directories."], "source_records": ["amazon:0160401690", "marc:marc_records_scriblio_net/part24.dat:8290674:1505", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:71524442:1505"], "title": "Prescription drug programs for older Americans (annotated)", "lccn": ["93237100"], "notes": {"type": "/type/text", "value": "Includes bibliographical references.\nAt head of title: 103d Congress, 1st session. Committee print.\nDistributed to some depository libraries in microfiche.\nShipping list no.: 93-0181-P.\n\"March 1993.\"\n\"Serial no. 103-C.\""}, "number_of_pages": 103, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "subjects": ["Geriatric pharmacology -- United States -- Directories.", "Generic drugs -- United States -- Directories.", "Older people -- Drug use -- United States -- Directories."], "publish_date": "1993", "publish_country": "dcu", "last_modified": {"type": "/type/datetime", "value": "2020-11-17T21:48:14.931590"}, "subject_place": ["United States"], "oclc_numbers": ["28187868"], "works": [{"key": "/works/OL18824697W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10401522M 3 2010-04-13T05:58:09.082313 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 145, "weight": "10.9 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497466600"], "title": "The 2007-2012 Outlook for Filled Fresh Pasta in Japan", "isbn_13": ["9780497466602"], "covers": [2453307], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:58:09.082313"}, "latest_revision": 3, "key": "/books/OL10401522M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "September 28, 2006", "works": [{"key": "/works/OL3307338W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Filled Fresh Pasta in Japan,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.4 inches", "revision": 3}
+/type/edition /books/OL10402185M 3 2010-04-13T05:58:09.082313 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 140, "weight": "10.6 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497473755"], "title": "The 2007-2012 Outlook for Tires in Japan", "isbn_13": ["9780497473754"], "covers": [2453970], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:58:09.082313"}, "latest_revision": 3, "key": "/books/OL10402185M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "September 28, 2006", "works": [{"key": "/works/OL3317401W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Tires in Japan,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.4 inches", "revision": 3}
+/type/edition /books/OL10402265M 3 2010-04-13T05:58:09.082313 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 322, "weight": "1.4 pounds", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497474689"], "title": "The 2007-2012 Outlook for Sausages and Similar Products Produced in Slaughtering Plants in India", "isbn_13": ["9780497474683"], "covers": [2454050], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:58:09.082313"}, "latest_revision": 3, "key": "/books/OL10402265M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "September 28, 2006", "works": [{"key": "/works/OL3315681W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Sausages and Similar Products Produced in Slaughtering Plants in India,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.8 inches", "revision": 3}
+/type/edition /books/OL10402816M 3 2010-04-13T05:58:09.082313 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 164, "weight": "12.2 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497481081"], "title": "The 2007-2012 Outlook for Household and Institutional Non-Aerosol Pesticides and Chemicals for Flying Insect Excluding Fumigants in India", "isbn_13": ["9780497481087"], "covers": [2454601], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:58:09.082313"}, "latest_revision": 3, "key": "/books/OL10402816M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "September 28, 2006", "works": [{"key": "/works/OL3309644W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Household and Institutional Non-Aerosol Pesticides and Chemicals for Flying Insect Excluding Fumigants in India,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.4 inches", "revision": 3}
+/type/edition /books/OL10402940M 3 2010-04-13T05:58:09.082313 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 311, "weight": "1.4 pounds", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497482525"], "title": "The 2007-2012 Outlook for Spun Non-Cellulosic Fiber and Other Natural Fiber Yarns in India", "isbn_13": ["9780497482527"], "covers": [2454725], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:58:09.082313"}, "latest_revision": 3, "key": "/books/OL10402940M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "September 28, 2006", "works": [{"key": "/works/OL3316640W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Spun Non-Cellulosic Fiber and Other Natural Fiber Yarns in India,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.8 inches", "revision": 3}
+/type/edition /books/OL10403046M 3 2010-04-13T05:58:09.082313 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 325, "weight": "1.4 pounds", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497483750"], "title": "The 2007-2012 Outlook for Tufted Roll Goods and Modular Carpeting Measuring at Least 6-Feet and Excluding Automobile and Aircraft in India", "isbn_13": ["9780497483753"], "covers": [2454831], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:58:09.082313"}, "latest_revision": 3, "key": "/books/OL10403046M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "September 28, 2006", "works": [{"key": "/works/OL3317612W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Tufted Roll Goods and Modular Carpeting Measuring at Least 6-Feet and Excluding Automobile and Aircraft in India,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.8 inches", "revision": 3}
+/type/edition /books/OL10403283M 3 2010-04-13T05:58:09.082313 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 323, "weight": "1.4 pounds", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497486474"], "title": "The 2007-2012 Outlook for Gravure Printing of Direct Mail Advertising Circulars, Letters, Pamphlets, Cards, and Printed Envelopes in India", "isbn_13": ["9780497486471"], "covers": [2455068], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:58:09.082313"}, "latest_revision": 3, "key": "/books/OL10403283M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "September 28, 2006", "works": [{"key": "/works/OL3308848W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Gravure Printing of Direct Mail Advertising Circulars, Letters, Pamphlets, Cards, and Printed Envelopes in India,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.8 inches", "revision": 3}
+/type/edition /books/OL10403311M 3 2010-04-13T05:58:09.082313 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 241, "weight": "1.1 pounds", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497486814"], "title": "The 2007-2012 Outlook for Wood Poles, Piles, and Posts More Than 15 Feet in Length Owned and Treated with Creosote by the Same Establishment in India", "isbn_13": ["9780497486815"], "covers": [2455096], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:58:09.082313"}, "latest_revision": 3, "key": "/books/OL10403311M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "September 28, 2006", "works": [{"key": "/works/OL3319179W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Wood Poles, Piles, and Posts More Than 15 Feet in Length Owned and Treated with Creosote by the Same Establishment in India,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.6 inches", "revision": 3}
+/type/edition /books/OL10403652M 5 2010-04-24T18:02:11.803476 {"publishers": ["ICON Group International, Inc."], "languages": [{"key": "/languages/eng"}], "identifiers": {"goodreads": ["5232961"]}, "weight": "1.1 pounds", "title": "The 2007-2012 Outlook for Prenatal Vitamin Preparations in India", "number_of_pages": 249, "isbn_13": ["9780497490812"], "covers": [2455437], "physical_format": "Paperback", "authors": [{"key": "/authors/OL539875A"}], "isbn_10": ["0497490811"], "latest_revision": 5, "key": "/books/OL10403652M", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:02:11.803476"}, "publish_date": "September 28, 2006", "works": [{"key": "/works/OL3314318W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Prenatal Vitamin Preparations in India,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.6 inches", "revision": 5}
+/type/edition /books/OL10403811M 3 2010-04-13T05:58:09.082313 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 290, "weight": "1.3 pounds", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497492784"], "title": "The 2007-2012 Outlook for Professional Hair Mousse in India", "isbn_13": ["9780497492786"], "covers": [2455596], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:58:09.082313"}, "latest_revision": 3, "key": "/books/OL10403811M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "September 28, 2006", "works": [{"key": "/works/OL3314699W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Professional Hair Mousse in India,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.7 inches", "revision": 3}
+/type/edition /books/OL10404211M 3 2010-04-13T05:58:09.082313 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 321, "weight": "1.4 pounds", "languages": [{"key": "/languages/eng"}], "isbn_10": ["049749762X"], "title": "The 2007-2012 Outlook for Single Barrel Shotguns and Small Firearms, Parts, and Attachments in India", "isbn_13": ["9780497497620"], "covers": [2455996], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:58:09.082313"}, "latest_revision": 3, "key": "/books/OL10404211M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "September 28, 2006", "works": [{"key": "/works/OL3316020W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Single Barrel Shotguns and Small Firearms, Parts, and Attachments in India,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.8 inches", "revision": 3}
+/type/edition /books/OL10404218M 3 2010-04-13T05:58:09.082313 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 304, "weight": "1.3 pounds", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497497697"], "title": "The 2007-2012 Outlook for Enameled Iron and Metal Sanitary Ware in India", "isbn_13": ["9780497497699"], "covers": [2456003], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:58:09.082313"}, "latest_revision": 3, "key": "/books/OL10404218M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "September 28, 2006", "works": [{"key": "/works/OL3306942W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Enameled Iron and Metal Sanitary Ware in India,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.8 inches", "revision": 3}
+/type/edition /books/OL10404236M 3 2010-04-13T05:58:09.082313 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 273, "weight": "1.2 pounds", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497497891"], "title": "The 2007-2012 Outlook for Attachments for Commercial Turf and Grounds Mowing Equipment in India", "isbn_13": ["9780497497897"], "covers": [2456021], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:58:09.082313"}, "latest_revision": 3, "key": "/books/OL10404236M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "September 28, 2006", "works": [{"key": "/works/OL3302408W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Attachments for Commercial Turf and Grounds Mowing Equipment in India,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.7 inches", "revision": 3}
+/type/edition /books/OL10404303M 3 2010-04-13T05:58:09.082313 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 299, "weight": "1.3 pounds", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497498618"], "title": "The 2007-2012 Outlook for Commercial Deep-Fat Fryers Excluding Electric in India", "isbn_13": ["9780497498610"], "covers": [2456088], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:58:09.082313"}, "latest_revision": 3, "key": "/books/OL10404303M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "September 28, 2006", "works": [{"key": "/works/OL3304793W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Commercial Deep-Fat Fryers Excluding Electric in India,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.7 inches", "revision": 3}
+/type/edition /books/OL10404422M 3 2010-04-13T05:58:09.082313 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 205, "weight": "14.7 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497499975"], "title": "The 2007-2012 Outlook for Year-Round Unitary Single Package and Remote-Condenser Air Conditioners with 320,000 to 379,999 BTU Per Hour Excluding Heat Pumps in India", "isbn_13": ["9780497499976"], "covers": [2456207], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:58:09.082313"}, "latest_revision": 3, "key": "/books/OL10404422M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "September 28, 2006", "works": [{"key": "/works/OL3319355W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Year-Round Unitary Single Package and Remote-Condenser Air Conditioners with 320,000 to 379,999 BTU Per Hour Excluding Heat Pumps in India,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.5 inches", "revision": 3}
+/type/edition /books/OL10404934M 3 2010-04-13T05:58:09.082313 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 228, "weight": "1 pounds", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497505924"], "title": "The 2007-2012 Outlook for Puzzles in India", "isbn_13": ["9780497505929"], "covers": [2456719], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:58:09.082313"}, "latest_revision": 3, "key": "/books/OL10404934M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "September 28, 2006", "works": [{"key": "/works/OL3314788W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Puzzles in India,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.6 inches", "revision": 3}
+/type/edition /books/OL10405280M 5 2010-04-24T18:02:11.803476 {"publishers": ["ICON Group International, Inc."], "languages": [{"key": "/languages/eng"}], "identifiers": {"goodreads": ["422887"]}, "weight": "1.3 pounds", "title": "The 2007-2012 Outlook for Fresh Eggs in India", "number_of_pages": 305, "isbn_13": ["9780497509859"], "covers": [2457065], "physical_format": "Paperback", "authors": [{"key": "/authors/OL539875A"}], "isbn_10": ["0497509857"], "latest_revision": 5, "key": "/books/OL10405280M", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:02:11.803476"}, "publish_date": "September 28, 2006", "works": [{"key": "/works/OL3307886W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Fresh Eggs in India,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.8 inches", "revision": 5}
+/type/edition /books/OL10405979M 3 2010-04-13T05:58:09.082313 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 305, "weight": "1.3 pounds", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497517930"], "title": "The 2007-2012 Outlook for Mens Belts in India", "isbn_13": ["9780497517939"], "covers": [2457764], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:58:09.082313"}, "latest_revision": 3, "key": "/books/OL10405979M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "September 28, 2006", "works": [{"key": "/works/OL3311240W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Mens Belts in India,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.8 inches", "revision": 3}
+/type/edition /books/OL10406020M 3 2010-04-13T05:58:09.082313 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 305, "weight": "1.3 pounds", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497518392"], "title": "The 2007-2012 Outlook for Non-Instant Long Grain Rice in India", "isbn_13": ["9780497518394"], "covers": [2457805], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:58:09.082313"}, "latest_revision": 3, "key": "/books/OL10406020M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "September 28, 2006", "works": [{"key": "/works/OL3312273W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Non-Instant Long Grain Rice in India,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.8 inches", "revision": 3}
+/type/edition /books/OL10406273M 3 2010-04-13T05:58:09.082313 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 305, "weight": "1.3 pounds", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497521342"], "title": "The 2007-2012 Outlook for Adult Entertainment in India", "isbn_13": ["9780497521349"], "covers": [2458058], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:58:09.082313"}, "latest_revision": 3, "key": "/books/OL10406273M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "September 28, 2006", "works": [{"key": "/works/OL3301817W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Adult Entertainment in India,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.8 inches", "revision": 3}
+/type/edition /books/OL10406457M 3 2010-04-13T05:58:09.082313 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 117, "weight": "9 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497523396"], "title": "The 2007-2012 Outlook for Titanium Lacrosse Sticks in India", "isbn_13": ["9780497523398"], "covers": [2458242], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:58:09.082313"}, "latest_revision": 3, "key": "/books/OL10406457M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "September 28, 2006", "works": [{"key": "/works/OL3317413W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Titanium Lacrosse Sticks in India,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.3 inches", "revision": 3}
+/type/edition /books/OL10406658M 3 2010-04-13T05:58:09.082313 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 703, "weight": "2.9 pounds", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497525569"], "title": "The 2007-2012 Outlook for Creamy Salad Dressing in the United States", "isbn_13": ["9780497525569"], "covers": [2458443], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:58:09.082313"}, "latest_revision": 3, "key": "/books/OL10406658M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "September 28, 2006", "works": [{"key": "/works/OL3305793W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Creamy Salad Dressing in the United States,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 1.8 inches", "revision": 3}
+/type/edition /books/OL10406789M 3 2010-04-13T05:58:09.082313 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 703, "weight": "2.9 pounds", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497526956"], "title": "The 2007-2012 Outlook for Telecommunications Equipment in the United States", "isbn_13": ["9780497526955"], "covers": [2458574], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:58:09.082313"}, "latest_revision": 3, "key": "/books/OL10406789M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "September 28, 2006", "works": [{"key": "/works/OL3317254W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Telecommunications Equipment in the United States,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 1.8 inches", "revision": 3}
+/type/edition /books/OL10407132M 3 2010-04-13T05:58:09.082313 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 703, "weight": "2.9 pounds", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497530627"], "title": "The 2007-2012 Outlook for Continental and Specialty Plant Bread in the United States", "isbn_13": ["9780497530624"], "covers": [2458917], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:58:09.082313"}, "latest_revision": 3, "key": "/books/OL10407132M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "September 28, 2006", "works": [{"key": "/works/OL3305422W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Continental and Specialty Plant Bread in the United States,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 1.8 inches", "revision": 3}
+/type/edition /books/OL10407728M 3 2010-04-13T05:58:09.082313 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 696, "weight": "2.9 pounds", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497537133"], "title": "The 2007-2012 Outlook for Canned Meat-Based and Ration Meat-Based Cat Food in the United States", "isbn_13": ["9780497537135"], "covers": [2459513], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:58:09.082313"}, "latest_revision": 3, "key": "/books/OL10407728M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "September 28, 2006", "works": [{"key": "/works/OL3303736W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Canned Meat-Based and Ration Meat-Based Cat Food in the United States,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 1.7 inches", "revision": 3}
+/type/edition /books/OL10407765M 3 2010-04-13T05:58:09.082313 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 708, "weight": "3 pounds", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497537540"], "title": "The 2007-2012 Outlook for Cubes and Tablets of Refined Cane Sugar Shipped in Consumer Units Weighing 25 Pounds or Less in the United States", "isbn_13": ["9780497537548"], "covers": [2459550], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:58:09.082313"}, "latest_revision": 3, "key": "/books/OL10407765M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "September 28, 2006", "works": [{"key": "/works/OL3305835W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Cubes and Tablets of Refined Cane Sugar Shipped in Consumer Units Weighing 25 Pounds or Less in the United States,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 1.8 inches", "revision": 3}
+/type/edition /books/OL10408815M 3 2010-04-13T05:58:09.082313 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 708, "weight": "3 pounds", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497548992"], "title": "The 2007-2012 Outlook for Prefabricated Building Systems Made Primarily from Concrete and Sold As Complete Units Shipped in Panel or Modular Form in the United States", "isbn_13": ["9780497548995"], "covers": [2460600], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:58:09.082313"}, "latest_revision": 3, "key": "/books/OL10408815M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "September 28, 2006", "works": [{"key": "/works/OL3314212W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Prefabricated Building Systems Made Primarily from Concrete and Sold As Complete Units Shipped in Panel or Modular Form in the United States,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 1.8 inches", "revision": 3}
+/type/edition /books/OL10408943M 3 2010-04-13T05:58:09.082313 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 708, "weight": "3 pounds", "languages": [{"key": "/languages/eng"}], "isbn_10": ["049755044X"], "title": "The 2007-2012 Outlook for Horizontal Unitary Single Package Air Conditioners with 380,000 BTU Per Hour and over in the United States", "isbn_13": ["9780497550448"], "covers": [2460728], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:58:09.082313"}, "latest_revision": 3, "key": "/books/OL10408943M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "September 28, 2006", "works": [{"key": "/works/OL3309395W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Horizontal Unitary Single Package Air Conditioners with 380,000 BTU Per Hour and over in the United States,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 1.8 inches", "revision": 3}
+/type/edition /books/OL10408992M 3 2010-04-13T05:58:09.082313 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 709, "weight": "3 pounds", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497550938"], "title": "The 2007-2012 Outlook for Telephone and Telegraph Apparatus, Carrier Line Equipment, and Non-Consumer Modems in the United States", "isbn_13": ["9780497550936"], "covers": [2460777], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:58:09.082313"}, "latest_revision": 3, "key": "/books/OL10408992M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "September 28, 2006", "works": [{"key": "/works/OL3317270W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Telephone and Telegraph Apparatus, Carrier Line Equipment, and Non-Consumer Modems in the United States,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 1.8 inches", "revision": 3}
+/type/edition /books/OL10409042M 3 2010-04-13T05:58:09.082313 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 682, "weight": "2.8 pounds", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497551497"], "title": "The 2007-2012 Outlook for Uninterruptible Power Supply Systems in the United States", "isbn_13": ["9780497551490"], "covers": [2460827], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:58:09.082313"}, "latest_revision": 3, "key": "/books/OL10409042M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "September 28, 2006", "works": [{"key": "/works/OL3317721W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Uninterruptible Power Supply Systems in the United States,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 1.7 inches", "revision": 3}
+/type/edition /books/OL10409125M 3 2010-04-13T05:58:09.082313 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 708, "weight": "3 pounds", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497552345"], "title": "The 2007-2012 Outlook for Furniture for Bars, Bowling Centers, Cafeterias, and Restaurants in the United States", "isbn_13": ["9780497552343"], "covers": [2460910], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:58:09.082313"}, "latest_revision": 3, "key": "/books/OL10409125M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "September 28, 2006", "works": [{"key": "/works/OL3308562W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Furniture for Bars, Bowling Centers, Cafeterias, and Restaurants in the United States,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 1.8 inches", "revision": 3}
+/type/edition /books/OL1040942M 7 2020-11-17T22:00:07.571522 {"publishers": ["Allen & Unwin"], "identifiers": {"goodreads": ["1066384"], "librarything": ["8878485"]}, "subtitle": "the global agenda for the 1990's and beyond", "isbn_10": ["1863736239"], "covers": [10269343], "lc_classifications": ["JX1952 .E98 1993"], "latest_revision": 7, "key": "/books/OL1040942M", "authors": [{"key": "/authors/OL479558A"}], "ocaid": "cooperatingforpe0000evan", "publish_places": ["St. Leonards, NSW, Australia"], "pagination": "xviii, 224 p. ;", "source_records": ["ia:cooperatingforpe0000evan", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:72490242:720"], "title": "Cooperating for peace", "dewey_decimal_class": ["341.5/8"], "notes": {"type": "/type/text", "value": "Inclcudes bibliographical references (p. 191-210) and index."}, "number_of_pages": 224, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["93238435"], "subjects": ["United Nations.", "Peace.", "International cooperation."], "publish_date": "1993", "publish_country": "at ", "last_modified": {"type": "/type/datetime", "value": "2020-11-17T22:00:07.571522"}, "by_statement": "Gareth Evans.", "works": [{"key": "/works/OL3075274W"}], "type": {"key": "/type/edition"}, "revision": 7}
+/type/edition /books/OL10409707M 3 2010-04-13T05:58:09.082313 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 140, "weight": "10.6 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497558858"], "title": "The 2007-2012 Outlook for Weight Gainer and Muscle Builder Supplements in Greater China", "isbn_13": ["9780497558857"], "covers": [2461492], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:58:09.082313"}, "latest_revision": 3, "key": "/books/OL10409707M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "September 28, 2006", "works": [{"key": "/works/OL3318273W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Weight Gainer and Muscle Builder Supplements in Greater China,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.4 inches", "revision": 3}
+/type/edition /books/OL10410009M 3 2010-04-13T05:58:09.082313 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 26, "weight": "3.2 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497566370"], "title": "The 2007 Import and Export Market for Concentrated or Sweetened Milk and Cream in Jordan", "isbn_13": ["9780497566371"], "covers": [2461794], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:58:09.082313"}, "latest_revision": 3, "key": "/books/OL10410009M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "November 21, 2006", "works": [{"key": "/works/OL3328100W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Concentrated or Sweetened Milk and Cream in Jordan,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.1 inches", "revision": 3}
+/type/edition /books/OL10410399M 3 2010-04-13T05:58:09.082313 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 26, "weight": "3.2 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497574446"], "title": "The 2007 Import and Export Market for Manganese Ores and Concentrates Including Manganiferous Iron Ores and Concentrates with Dry-Weight Manganese Content of 20% or More in India", "isbn_13": ["9780497574444"], "covers": [2462184], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:58:09.082313"}, "latest_revision": 3, "key": "/books/OL10410399M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "October 24, 2006", "works": [{"key": "/works/OL3328693W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Manganese Ores and Concentrates Including Manganiferous Iron Ores and Concentrates with Dry-Weight Manganese Content of 20% or More in India,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.1 inches", "revision": 3}
+/type/edition /books/OL10410466M 5 2010-04-24T18:02:11.803476 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 147, "subtitle": "A 2007 Global Trade Perspective", "weight": "11 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497575795"], "identifiers": {"goodreads": ["1797500"]}, "isbn_13": ["9780497575793"], "covers": [2462251], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:02:11.803476"}, "latest_revision": 5, "key": "/books/OL10410466M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "September 28, 2006", "title": "The World Market for Butter", "works": [{"key": "/works/OL3330227W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Butter,import,export,live animal,livestock,dairy product,chicken egg,birds\\' egg,butter,margarine,creamery", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.4 inches", "revision": 5}
+/type/edition /books/OL10410868M 3 2010-04-13T05:59:00.323988 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 37, "subtitle": "A 2007 Global Trade Perspective", "weight": "3.8 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497580217"], "title": "The World Market for Carnallite, Slyvite, and Other Crude Natural Potassium Salts", "isbn_13": ["9780497580216"], "covers": [2462653], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:59:00.323988"}, "latest_revision": 3, "key": "/books/OL10410868M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "September 28, 2006", "works": [{"key": "/works/OL3330255W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Carnallite, Slyvite, and Other Crude Natural Potassium Salts,import,export,crude metal,crude fertilizer,crude material", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.1 inches", "revision": 3}
+/type/edition /books/OL10410981M 3 2010-04-13T05:59:00.323988 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 39, "subtitle": "A 2007 Global Trade Perspective", "weight": "4 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497581507"], "title": "The World Market for Gasoline and Other Light Oils", "isbn_13": ["9780497581503"], "covers": [2462766], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:59:00.323988"}, "latest_revision": 3, "key": "/books/OL10410981M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "September 28, 2006", "works": [{"key": "/works/OL3330743W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Gasoline and Other Light Oils,import,export,mineral fuel,lubricant,petroleum,refined petroleum,motor spirit,light oil,motor oil", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.1 inches", "revision": 3}
+/type/edition /books/OL10411021M 3 2010-04-13T05:59:00.323988 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 124, "subtitle": "A 2007 Global Trade Perspective", "weight": "9.6 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497581949"], "title": "The World Market for Olive Oil", "isbn_13": ["9780497581947"], "covers": [2462806], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:59:00.323988"}, "latest_revision": 3, "key": "/books/OL10411021M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "September 28, 2006", "works": [{"key": "/works/OL3331354W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Olive Oil,import,export,animal fat,vegetable wax,vegetable oil,vegetable fat", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.3 inches", "revision": 3}
+/type/edition /books/OL10411135M 3 2010-04-13T05:59:00.323988 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 101, "subtitle": "A 2007 Global Trade Perspective", "weight": "8 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497583143"], "title": "The World Market for Heterocyclic Compounds with Nitrogen Hetero-Atom(s) Only, Containing an Unfused Pyrazole Ring", "isbn_13": ["9780497583149"], "covers": [2462920], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:59:00.323988"}, "latest_revision": 3, "key": "/books/OL10411135M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "September 28, 2006", "works": [{"key": "/works/OL3330837W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Heterocyclic Compounds with Nitrogen Hetero-Atom(s) Only, Containing an Unfused Pyrazole Ring,import,export,organic chemical,heterocyclic compound,organo-inorganic", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.2 inches", "revision": 3}
+/type/edition /books/OL10411551M 3 2010-04-13T05:59:00.323988 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 100, "subtitle": "A 2007 Global Trade Perspective", "weight": "8 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497587815"], "title": "The World Market for Wholesale Yarn Made of Carded Wool and of under 85% Wool by Weight", "isbn_13": ["9780497587819"], "covers": [2463336], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:59:00.323988"}, "latest_revision": 3, "key": "/books/OL10411551M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "September 28, 2006", "works": [{"key": "/works/OL3332337W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Wholesale Yarn Made of Carded Wool and of under 85% Wool by Weight,import,export,manufactured good,textile yarn,textile fabric", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.2 inches", "revision": 3}
+/type/edition /books/OL10411585M 5 2010-04-24T18:02:11.803476 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 56, "subtitle": "A 2007 Global Trade Perspective", "weight": "5.1 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497588234"], "identifiers": {"goodreads": ["2348686"]}, "isbn_13": ["9780497588236"], "covers": [2463370], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:02:11.803476"}, "latest_revision": 5, "key": "/books/OL10411585M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "September 28, 2006", "title": "The World Market for Cotton Terry Toweling and Similar Terry Woven Fabrics", "works": [{"key": "/works/OL3330433W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Cotton Terry Toweling and Similar Terry Woven Fabrics,import,export,manufactured good,textile yarn,textile fabric,woven cotton,unbleached cotton,cotton fabric", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.1 inches", "revision": 5}
+/type/edition /books/OL10412086M 3 2010-04-13T05:59:00.323988 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 109, "subtitle": "A 2007 Global Trade Perspective", "weight": "8.5 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497593726"], "title": "The World Market for Outboard Motors", "isbn_13": ["9780497593728"], "covers": [2463871], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:59:00.323988"}, "latest_revision": 3, "key": "/books/OL10412086M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "September 28, 2006", "works": [{"key": "/works/OL3331374W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Outboard Motors,import,export,transport equipment,transport machinery,power generating machinery,power generating equipment,internal combustion engine,piston engine,propulsion,combustion,engine", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.3 inches", "revision": 3}
+/type/edition /books/OL10412251M 3 2010-04-13T05:59:00.323988 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 112, "subtitle": "A 2007 Global Trade Perspective", "weight": "8.8 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497595486"], "title": "The World Market for Machinery for Filtering and Purifying Beverages Excluding Water", "isbn_13": ["9780497595487"], "covers": [2464036], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:59:00.323988"}, "latest_revision": 3, "key": "/books/OL10412251M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "September 28, 2006", "works": [{"key": "/works/OL3331084W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Machinery for Filtering and Purifying Beverages Excluding Water,import,export,transport equipment,transport machinery,general industrial machinery,pump,fan,centrifuge", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.3 inches", "revision": 3}
+/type/edition /books/OL10412629M 3 2010-04-13T05:59:00.323988 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 150, "subtitle": "A 2007 Global Trade Perspective", "weight": "11.2 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497599589"], "title": "The World Market for Womens and Girls Knitted or Crocheted Swimwear", "isbn_13": ["9780497599584"], "covers": [2464414], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:59:00.323988"}, "latest_revision": 3, "key": "/books/OL10412629M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "September 28, 2006", "works": [{"key": "/works/OL3332356W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Womens and Girls Knitted or Crocheted Swimwear,import,export,apparel,clothing accessories,garments", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.4 inches", "revision": 3}
+/type/edition /books/OL10413036M 3 2010-04-13T05:59:00.323988 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 62, "weight": "5.6 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497606534"], "title": "The 2007 Import and Export Market for Cyclic Alcohols and Their Halogenated, Sulfonated, Nitrated, or Nitrosated Derivatives in China", "isbn_13": ["9780497606534"], "covers": [2464821], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:59:00.323988"}, "latest_revision": 3, "key": "/books/OL10413036M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "October 24, 2006", "works": [{"key": "/works/OL3328164W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Cyclic Alcohols and Their Halogenated, Sulfonated, Nitrated, or Nitrosated Derivatives in China,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.2 inches", "revision": 3}
+/type/edition /books/OL10413518M 3 2010-04-13T05:59:00.323988 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 114, "weight": "9 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497615401"], "title": "The 2007 Import and Export Market for Mixtures Containing Odoriferous Substances Used in the Food or Drink Industries in United States", "isbn_13": ["9780497615406"], "covers": [2465303], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:59:00.323988"}, "latest_revision": 3, "key": "/books/OL10413518M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "October 24, 2006", "works": [{"key": "/works/OL3328781W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Mixtures Containing Odoriferous Substances Used in the Food or Drink Industries in United States,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.3 inches", "revision": 3}
+/type/edition /books/OL10413863M 3 2010-04-13T05:59:00.323988 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 56, "weight": "5.1 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497682087"], "title": "The 2007 Import and Export Market for Frozen Shrimp and Prawns in India", "isbn_13": ["9780497682088"], "covers": [2465648], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:59:00.323988"}, "latest_revision": 3, "key": "/books/OL10413863M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "October 24, 2006", "works": [{"key": "/works/OL3328442W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Frozen Shrimp and Prawns in India,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.1 inches", "revision": 3}
+/type/edition /books/OL10413909M 3 2010-04-13T05:59:00.323988 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 32, "weight": "3.5 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497683237"], "title": "The 2007 Import and Export Market for Fresh or Dried Grapes in China", "isbn_13": ["9780497683238"], "covers": [2465694], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:59:00.323988"}, "latest_revision": 3, "key": "/books/OL10413909M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "October 24, 2006", "works": [{"key": "/works/OL3328365W"}], "type": {"key": "/type/edition"}, "subjects": ["market,Fresh or Dried Grapes in China,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.1 inches", "revision": 3}
+/type/edition /books/OL10414254M 3 2010-04-13T05:59:00.323988 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 330, "subtitle": "World Market Segmentation by City", "weight": "1.4 pounds", "languages": [{"key": "/languages/eng"}], "isbn_10": ["049773950X"], "title": "The 2007 Report on Polyurethane Foam Furniture and Furnishing Products", "isbn_13": ["9780497739508"], "covers": [2466039], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:59:00.323988"}, "latest_revision": 3, "key": "/books/OL10414254M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "November 13, 2006", "works": [{"key": "/works/OL3329719W"}], "type": {"key": "/type/edition"}, "subjects": ["segmentation,city,market,Polyurethane Foam Furniture and Furnishing Products,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 0.8 inches", "revision": 3}
+/type/edition /books/OL10414319M 3 2010-04-13T05:59:00.323988 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 618, "weight": "2.6 pounds", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497799901"], "title": "The 2006 Economic and Product Market Databook for Higuerote, Venezuela", "isbn_13": ["9780497799908"], "covers": [2466104], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:59:00.323988"}, "latest_revision": 3, "key": "/books/OL10414319M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "December 11, 2006", "works": [{"key": "/works/OL3300303W"}], "type": {"key": "/type/edition"}, "subjects": ["Economics,market,Higuerote,Venezuela,products,market potential,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 1.5 inches", "revision": 3}
+/type/edition /books/OL10414370M 3 2010-04-13T05:59:00.323988 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 618, "weight": "2.6 pounds", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497800411"], "title": "The 2006 Economic and Product Market Databook for Alvorada, Brazil", "isbn_13": ["9780497800413"], "covers": [2466155], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:59:00.323988"}, "latest_revision": 3, "key": "/books/OL10414370M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "December 11, 2006", "works": [{"key": "/works/OL3299642W"}], "type": {"key": "/type/edition"}, "subjects": ["Economics,market,Alvorada,Brazil,products,market potential,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 1.5 inches", "revision": 3}
+/type/edition /books/OL10414722M 3 2010-04-13T05:59:00.323988 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 618, "weight": "2.6 pounds", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497803941"], "title": "The 2006 Economic and Product Market Databook for Cologne, Germany", "isbn_13": ["9780497803940"], "covers": [2466507], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:59:00.323988"}, "latest_revision": 3, "key": "/books/OL10414722M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "December 11, 2006", "works": [{"key": "/works/OL3300000W"}], "type": {"key": "/type/edition"}, "subjects": ["Economics,market,Cologne,Germany,products,market potential,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 1.5 inches", "revision": 3}
+/type/edition /books/OL10414869M 3 2010-04-13T05:59:00.323988 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 618, "weight": "2.6 pounds", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497805421"], "title": "The 2006 Economic and Product Market Databook for Florence, Italy", "isbn_13": ["9780497805425"], "covers": [2466654], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:59:00.323988"}, "latest_revision": 3, "key": "/books/OL10414869M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "December 11, 2006", "works": [{"key": "/works/OL3300159W"}], "type": {"key": "/type/edition"}, "subjects": ["Economics,market,Florence,Italy,products,market potential,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 1.5 inches", "revision": 3}
+/type/edition /books/OL10415076M 3 2010-04-13T05:59:00.323988 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 618, "weight": "2.6 pounds", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497807491"], "title": "The 2006 Economic and Product Market Databook for Kinshasa, Congo (formerly Zaire)", "isbn_13": ["9780497807498"], "covers": [2466861], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:59:00.323988"}, "latest_revision": 3, "key": "/books/OL10415076M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "December 11, 2006", "works": [{"key": "/works/OL3300513W"}], "type": {"key": "/type/edition"}, "subjects": ["Economics,market,Kinshasa,Congo (formerly Zaire),products,market potential,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 1.5 inches", "revision": 3}
+/type/edition /books/OL10415301M 3 2010-04-13T05:59:00.323988 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 618, "weight": "2.6 pounds", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497809745"], "title": "The 2006 Economic and Product Market Databook for Mataiea, French Polynesia", "isbn_13": ["9780497809744"], "covers": [2467086], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:59:00.323988"}, "latest_revision": 3, "key": "/books/OL10415301M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "December 11, 2006", "works": [{"key": "/works/OL3300764W"}], "type": {"key": "/type/edition"}, "subjects": ["Economics,market,Mataiea,French Polynesia,products,market potential,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 1.5 inches", "revision": 3}
+/type/edition /books/OL10416383M 3 2010-04-13T05:59:00.323988 {"publishers": ["ICON Group International, Inc."], "number_of_pages": 618, "weight": "2.6 pounds", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0497820579"], "title": "The 2006 Economic and Product Market Databook for Palmerston North, New Zealand", "isbn_13": ["9780497820572"], "covers": [2468168], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:59:00.323988"}, "latest_revision": 3, "key": "/books/OL10416383M", "authors": [{"key": "/authors/OL539875A"}], "publish_date": "December 11, 2006", "works": [{"key": "/works/OL3301018W"}], "type": {"key": "/type/edition"}, "subjects": ["Economics,market,Palmerston North,New Zealand,products,market potential,statistics,analysis", "Business & Economics / Econometrics"], "physical_dimensions": "9 x 7 x 1.5 inches", "revision": 3}
+/type/edition /books/OL10417413M 2 2020-11-30T01:13:29.809156 {"publishers": ["Carlyle Books"], "languages": [{"key": "/languages/eng"}], "revision": 2, "source_records": ["marc:marc_loc_2016/BooksAll.2016.part27.utf8:174070241:543"], "title": "Inn-side Murder", "lccn": ["98813389"], "number_of_pages": 255, "isbn_13": ["9780503070656"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "lc_classifications": ["CPB Box no. 1025 vol. 12"], "publish_date": "1980", "key": "/books/OL10417413M", "last_modified": {"type": "/type/datetime", "value": "2020-11-30T01:13:29.809156"}, "latest_revision": 2, "works": [{"key": "/works/OL23693748W"}], "type": {"key": "/type/edition"}, "isbn_10": ["0503070653"]}
+/type/edition /books/OL10417562M 2 2011-04-22T20:52:43.131974 {"publishers": ["Leisure Books"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-22T20:52:43.131974"}, "title": "A Dirty Way to Die", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780505513984"], "isbn_10": ["0505513986"], "publish_date": "July 1990", "key": "/books/OL10417562M", "latest_revision": 2, "oclc_numbers": ["44880862"], "type": {"key": "/type/edition"}, "subjects": ["Westerns"], "revision": 2}
+/type/edition /books/OL10417645M 6 2020-12-22T19:38:43.101327 {"publishers": ["Dorchester Publishing Company, Incorporated"], "title": "Death of an Island", "identifiers": {"goodreads": ["5096015"]}, "isbn_13": ["9780505515575"], "physical_format": "Paperback", "isbn_10": ["0505515571"], "publish_date": "October 1, 1980", "key": "/books/OL10417645M", "authors": [{"key": "/authors/OL3429852A"}], "oclc_numbers": ["232358768"], "works": [{"key": "/works/OL9393207W"}], "type": {"key": "/type/edition"}, "subjects": ["Fiction", "General"], "lccn": ["2008572043"], "lc_classifications": ["CPB Box no. 2615 vol. 15"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part36.utf8:72197608:569"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-22T19:38:43.101327"}}
+/type/edition /books/OL10417871M 4 2012-05-31T21:06:55.480896 {"publishers": ["A & C Black Publishers Ltd"], "identifiers": {}, "classifications": {}, "last_modified": {"type": "/type/datetime", "value": "2012-05-31T21:06:55.480896"}, "title": "A New Way to Pay Old Debts", "physical_format": "Paperback", "notes": {"type": "/type/text", "value": "New Mermaid"}, "number_of_pages": 128, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780510340216"], "isbn_10": ["0510340210"], "publish_date": "January 1, 1964", "key": "/books/OL10417871M", "authors": [{"key": "/authors/OL342253A"}], "latest_revision": 4, "works": [{"key": "/works/OL2461474W"}], "type": {"key": "/type/edition"}, "subjects": ["Personal finance"], "revision": 4}
+/type/edition /books/OL10417886M 2 2009-12-15T00:48:17.349808 {"physical_format": "Paperback", "languages": [{"key": "/languages/eng"}], "publishers": ["RITTENHOUSE BOOK DISTRIBUTORS"], "isbn_10": ["0511100205"], "title": "The Rittenhouse Quarterly Report For Camex '97 (RITTENHOUSE QUARTERLY REPORT, THE)", "edition_name": "1 edition", "isbn_13": ["9780511100208"], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:48:17.349808"}, "publish_date": "1997", "key": "/books/OL10417886M", "authors": [{"key": "/authors/OL3429916A"}], "latest_revision": 2, "works": [{"key": "/works/OL9393307W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10417893M 8 2020-11-15T03:46:22.195941 {"publishers": ["St. Martin's Paperbacks"], "identifiers": {"librarything": ["4679381"], "goodreads": ["1286157"]}, "subtitle": "The True Story of a Child TV Actor and Double Murder (St. Martin's True Crime Library)", "weight": "4 ounces", "isbn_10": ["0312941978"], "covers": [2371865], "physical_format": "Mass Market Paperback", "lc_classifications": ["CPB Box no. 3079 vol. 17"], "latest_revision": 8, "key": "/books/OL10417893M", "authors": [{"key": "/authors/OL1452435A"}], "isbn_13": ["9780312941970"], "source_records": ["amazon:0312941978", "marc:marc_loc_updates/v38.i37.records.utf8:18794801:1790", "marc:marc_loc_2016/BooksAll.2016.part37.utf8:296035344:1786"], "title": "Vanished at Sea", "lccn": ["2010414544"], "number_of_pages": 256, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "subjects": ["Murder - General", "True Crime / Murder", "Infamous Crimes And Criminals", "Murder", "True Crime", "True Crime / Espionage", "California", "Case studies", "Investigation", "Murder victims"], "publish_date": "January 2, 2008", "last_modified": {"type": "/type/datetime", "value": "2020-11-15T03:46:22.195941"}, "works": [{"key": "/works/OL5888147W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "6.5 x 4.1 x 0.8 inches", "revision": 8}
+/type/edition /books/OL10417930M 6 2011-04-29T07:21:51.002042 {"publishers": ["St. Martin's Paperbacks"], "identifiers": {"goodreads": ["2838032"]}, "weight": "4 ounces", "covers": [2371876], "physical_format": "Mass Market Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T07:21:51.002042"}, "latest_revision": 6, "key": "/books/OL10417930M", "authors": [{"key": "/authors/OL3429919A"}], "subjects": ["Indoor Games", "Games", "Games / Gamebooks / Crosswords", "Games/Puzzles", "Crosswords - General", "Puzzles", "Games / Puzzles"], "languages": [{"key": "/languages/eng"}], "title": "Merv Griffin's Crosswords Pocket Volume 1", "number_of_pages": 224, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780312946890"], "isbn_10": ["0312946899"], "publish_date": "October 2, 2007", "oclc_numbers": ["154793385"], "works": [{"key": "/works/OL9393309W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "6.5 x 4.4 x 0.7 inches", "revision": 6}
+/type/edition /books/OL10418229M 8 2022-12-04T11:11:50.080597 {"publishers": ["St. Martin's Press"], "subtitle": "International Edition", "weight": "7.8 ounces", "covers": [8576821], "physical_format": "Paperback", "key": "/books/OL10418229M", "authors": [{"key": "/authors/OL388652A"}], "ocaid": "robertludlumsca00ludl", "subjects": ["Fiction", "Suspense"], "source_records": ["ia:robertludlumsca00ludl", "ia:robertludlumscas0000ludl_x9c0", "promise:bwb_daily_pallets_2022-09-08"], "title": "The Cassandra Compact ", "identifiers": {"goodreads": ["1017402"], "librarything": ["49724"]}, "isbn_13": ["9780312983260"], "isbn_10": ["0312983263"], "publish_date": "October 1, 2001", "works": [{"key": "/works/OL2664860W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "6.6 x 4.2 x 1.1 inches", "lc_classifications": ["PS3562.U26 C3 2002"], "local_id": ["urn:bwbsku:O8-BQR-481"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T11:11:50.080597"}}
+/type/edition /books/OL10418267M 4 2010-04-13T05:59:00.323988 {"physical_format": "Unknown Binding", "source_records": ["amazon:0313015759"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "title": "Encyclopedia of Modern American Extremists and Extremist Groups", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T05:59:00.323988"}, "covers": [5059403], "isbn_13": ["9780313015755"], "isbn_10": ["0313015759"], "latest_revision": 4, "key": "/books/OL10418267M", "authors": [{"key": "/authors/OL25819A"}], "works": [{"key": "/works/OL23393W"}], "type": {"key": "/type/edition"}, "subjects": ["Politics/International Relations"], "revision": 4}
+/type/edition /books/OL1041859M 3 2020-11-17T22:12:14.195193 {"publishers": ["Izd-vo Rostovskogo universiteta"], "isbn_10": ["5750703916"], "subject_place": ["Don River Region (Russia)", "Russia (Federation)", "Don River Region."], "lc_classifications": ["DK511.D8 S26 1992"], "latest_revision": 3, "key": "/books/OL1041859M", "authors": [{"key": "/authors/OL559229A"}], "publish_places": ["Rostov-na-Donu"], "contributions": ["Demeshina, E. I."], "pagination": "149 p. ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:73434945:945"], "title": "Donskai\u0361a\ufe21 burzhuazii\u0361a\ufe21 v period imperializma, 1900-1914", "lccn": ["93239845"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 132-[147]).\nAt head of title: Rostovskii\u0306 ordena Trudovogo Krasnogo Znameni gosudarstvennyi\u0306 universitet."}, "number_of_pages": 149, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/rus"}], "subjects": ["Middle class -- Russia (Federation) -- Don River Region.", "Don River Region (Russia) -- History."], "publish_date": "1992", "publish_country": "ru ", "last_modified": {"type": "/type/datetime", "value": "2020-11-17T22:12:14.195193"}, "by_statement": "N.V. Samarina ; otvetstvennyi\u0306 redaktor E.I. Demeshina.", "works": [{"key": "/works/OL3408061W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10418865M 7 2021-09-15T19:46:28.975603 {"publishers": ["Greenwood Press Reprint"], "number_of_pages": 284, "subtitle": "An Appraisal of the First Five Years of Industrialization", "covers": [2373524], "physical_format": "Hardcover", "lc_classifications": ["HC427.9 .L5 1984", "HC427"], "key": "/books/OL10418865M", "authors": [{"key": "/authors/OL3430121A"}], "subjects": ["Economics", "Development - Economic Development", "Business / Economics / Finance"], "edition_name": "New Ed edition", "languages": [{"key": "/languages/eng"}], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part15.utf8:120612972:1030", "bwb:9780313244513"], "title": "Economic Development of Communist China", "lccn": ["84006517"], "identifiers": {"goodreads": ["3501036"]}, "isbn_13": ["9780313244513"], "isbn_10": ["0313244510"], "publish_date": "June 15, 1984", "works": [{"key": "/works/OL9393570W"}], "type": {"key": "/type/edition"}, "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-09-15T19:46:28.975603"}}
+/type/edition /books/OL10418880M 9 2022-12-10T11:02:50.692822 {"publishers": ["Greenwood Press Paperback"], "identifiers": {"goodreads": ["3099363"], "librarything": ["448389"]}, "subtitle": "Interpretations of American Naval History, 1775-1984; A Second Edition (Contributions in Military Studies)", "weight": "1.2 pounds", "isbn_10": ["0313245819"], "covers": [2373598, 185896], "physical_format": "Paperback", "lc_classifications": ["VA55 .I5 1984"], "key": "/books/OL10418880M", "authors": [{"key": "/authors/OL893092A"}], "languages": [{"key": "/languages/eng"}], "first_sentence": {"type": "/type/text", "value": "During the spring and summer of 1775 clashes at Lexington and Concord, at Ticonderoga, and at Bunker Hill marked a transition in Anglo-American hostilities that would lead ultimately to the separation of the two peoples."}, "source_records": ["marc:marc_records_scriblio_net/part17.dat:51319917:885", "marc:marc_loc_2016/BooksAll.2016.part15.utf8:120638977:880", "marc:marc_columbia/Columbia-extract-20221130-001.mrc:314485490:1477"], "title": "In Peace and War", "lccn": ["84006550"], "number_of_pages": 395, "isbn_13": ["9780313245817"], "edition_name": "2 edition", "subjects": ["American history", "Warfare & Defence", "History", "History - Military / War", "Military", "USA", "Military - Naval", "Military - United States", "History / Military / United States", "History, Naval", "Navy", "United States", "United States."], "publish_date": "June 28, 1984", "works": [{"key": "/works/OL4476402W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 5.8 x 0.7 inches", "oclc_numbers": ["10605290"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T11:02:50.692822"}}
+/type/edition /books/OL10418929M 10 2021-09-15T11:04:51.929094 {"publishers": ["Greenwood Press"], "number_of_pages": 464, "subtitle": "An Annotated Bio-Bibliographical Guide (Bibliographies and Indexes in Women's Studies)", "weight": "2 pounds", "isbn_10": ["0313249695"], "covers": [9511257], "local_id": ["urn:phillips:31867001070890"], "physical_format": "Hardcover", "lc_classifications": ["Z1609.L7 W63 1987", "PQ7081 W63 1987", "Z1609"], "key": "/books/OL10418929M", "authors": [{"key": "/authors/OL2839285A"}], "ocaid": "womenwritersofsp0000unse_t6n6", "isbn_13": ["9780313249693"], "source_records": ["marc:marc_records_scriblio_net/part18.dat:170252103:896", "marc:marc_openlibraries_phillipsacademy/PANO_FOR_IA_05072019.mrc:76377029:1208", "ia:womenwritersofsp0000unse_t6n6", "marc:marc_loc_2016/BooksAll.2016.part17.utf8:64913090:896", "bwb:9780313249693"], "title": "Women Writers of Spanish America", "lccn": ["86033552"], "identifiers": {"goodreads": ["4030497"]}, "languages": [{"key": "/languages/eng"}], "subjects": ["Literary studies: general", "Latin American Literature", "Women In Literature", "Literary Criticism", "Reference", "Spanish", "Sociology", "South America", "Bibliographies & Indexes", "Ethnic Studies - General", "Literary Criticism & Collections / Women Authors", "Bibliography", "Bio-bibliography", "Biography", "Latin America", "Spanish American literature", "Women Authors", "Women and literature", "Women authors, Spanish American"], "publish_date": "August 4, 1987", "works": [{"key": "/works/OL8497011W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.8 x 6.5 x 1.5 inches", "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-09-15T11:04:51.929094"}}
+/type/edition /books/OL10419010M 9 2021-09-15T11:04:20.396364 {"publishers": ["Greenwood Press"], "identifiers": {"librarything": ["6377308"], "goodreads": ["4892546"]}, "subtitle": "Essays on Nineteenth-Century European Women Writers (Contributions in Women's Studies)", "weight": "1.9 pounds", "covers": [2374109], "local_id": ["urn:trent:0199900013715"], "physical_format": "Hardcover", "lc_classifications": ["PN471 .W55 1987", "PN471"], "key": "/books/OL10419010M", "authors": [{"key": "/authors/OL2134728A"}], "subjects": ["Literary studies: general", "Women In Literature", "Literary Criticism", "Literature - Classics / Criticism", "Sociology", "Women Authors", "Literary Criticism & Collections / Women Authors", "19th century", "Authors, European", "Biography", "Congresses", "European literature", "History and criticism", "Women authors, European"], "isbn_13": ["9780313255151"], "source_records": ["marc:OpenLibraries-Trent-MARCs/tier5.mrc:22827402:1608", "marc:marc_loc_2016/BooksAll.2016.part17.utf8:49188884:1608", "bwb:9780313255151"], "title": "Woman as Mediatrix", "lccn": ["86014236"], "number_of_pages": 210, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0313255156"], "publish_date": "May 14, 1987", "works": [{"key": "/works/OL7286796W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.8 x 6 x 0.8 inches", "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-09-15T11:04:20.396364"}}
+/type/edition /books/OL10419143M 9 2021-09-15T13:15:39.072243 {"publishers": ["Greenwood Press"], "number_of_pages": 248, "subtitle": "Japanese Automobile Investment and Economic Development in the American States (Contributions in Economics and Economic History)", "weight": "1.3 pounds", "isbn_10": ["0313263590"], "covers": [2374572], "physical_format": "Hardcover", "lc_classifications": ["HD9710.U52 P58 1990", "HD9710"], "key": "/books/OL10419143M", "ocaid": "politicsofindust0000unse", "contributions": ["Ernest J. Yanarella (Editor)", "William C. Green (Editor)"], "isbn_13": ["9780313263590"], "source_records": ["ia:politicsofindust0000unse", "ia:isbn_2800313263592", "marc:marc_records_scriblio_net/part20.dat:147945348:1097", "marc:marc_loc_2016/BooksAll.2016.part19.utf8:105843110:1097", "bwb:9780313263590"], "title": "The Politics of Industrial Recruitment", "lccn": ["89025997"], "identifiers": {"goodreads": ["4654469"]}, "languages": [{"key": "/languages/eng"}], "subjects": ["Entrepreneurship", "Road transport industries", "Automobile Industries (Economic Aspects)", "Business & Economics", "Business / Economics / Finance", "Business/Economics", "USA", "Economic History", "General", "Industries - General", "Business & Economics / Economic History", "Automobile industry and trade", "Case studies", "Foreign ownership", "Government policy", "Investments, Japanese", "States", "United States"], "publish_date": "June 15, 1990", "works": [{"key": "/works/OL17947550W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.8 x 6.8 x 1 inches", "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-09-15T13:15:39.072243"}}
+/type/edition /books/OL10419636M 7 2021-09-17T21:07:04.518897 {"publishers": ["Greenwood Press"], "number_of_pages": 224, "subtitle": "A Research Guide to Soviet Sources (Research Guides in Military Studies)", "weight": "15.8 ounces", "covers": [2375859], "physical_format": "Hardcover", "lc_classifications": ["Z6725.R9 E75 1996", "UA770 E75 1996", "Z6725"], "key": "/books/OL10419636M", "contributions": ["John Erickson (Compiler)", "Ljubica Erickson (Compiler)"], "subjects": ["Bibliographies, catalogues, discographies", "Land forces & warfare", "Inter-war period, 1918-1939", "Postwar period, 1945 to c 2000", "Second World War, 1939-1945", "Armies", "History", "Reference", "History: World", "Military", "Former Soviet Union, USSR (Europe)", "Bibliographies & Indexes", "Military - General", "History / Military / General", "Armed Forces", "Bibliography", "Politics and government", "Soviet Union"], "isbn_13": ["9780313290718"], "source_records": ["marc:marc_records_scriblio_net/part25.dat:22508406:936", "marc:marc_loc_2016/BooksAll.2016.part24.utf8:121633682:931", "bwb:9780313290718"], "title": "The Soviet Armed Forces, 1918-1992", "lccn": ["95041983"], "identifiers": {"goodreads": ["2819085"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0313290717"], "publish_date": "February 28, 1996", "works": [{"key": "/works/OL19373467W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.6 x 6.4 x 0.8 inches", "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-09-17T21:07:04.518897"}}
+/type/edition /books/OL10419896M 10 2022-11-11T07:57:47.988652 {"publishers": ["Greenwood Press"], "identifiers": {"goodreads": ["5477408"], "librarything": ["9558253"]}, "subtitle": "Frank Sinatra as Literary Conceit (Contributions to the Study of Popular Culture)", "weight": "1 pounds", "covers": [2376697], "physical_format": "Hardcover", "key": "/books/OL10419896M", "authors": [{"key": "/authors/OL3430369A"}], "subjects": ["Contemporary popular music", "Literary studies: from c 1900 -", "Social Science", "Biography / Autobiography", "Sociology", "Composers & Musicians - Country & Folk", "General", "Popular Culture - General", "Social Science / Popular Culture", "1915-", "Criticism and interpretation", "History and criticism", "Popular culture", "Popular music", "Sinatra, Frank,", "United States"], "isbn_13": ["9780313309731"], "title": "A Storied Singer", "number_of_pages": 200, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0313309736"], "publish_date": "June 30, 2002", "works": [{"key": "/works/OL9393802W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.3 x 6.2 x 0.8 inches", "lccn": ["2001055606"], "lc_classifications": ["ML420.S565 G44 2002", "ML420", "ML 420 .S565 G44 2002"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part28.utf8:232065803:938", "bwb:9780313309731", "ia:storiedsingerfra0000gigl", "marc:marc_scms/20220805_ADAM_MARC_records.mrc:104308225:1997"], "ocaid": "storiedsingerfra0000gigl", "local_id": ["urn:scms:0188600253804"], "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-11T07:57:47.988652"}}
+/type/edition /books/OL10420240M 10 2022-12-30T22:26:31.299841 {"publishers": ["Greenwood Pub Group"], "subtitle": "A Chronology", "weight": "1.6 pounds", "covers": [2377205], "physical_format": "Hardcover", "key": "/books/OL10420240M", "authors": [{"key": "/authors/OL385437A"}, {"key": "/authors/OL3258006A"}], "ocaid": "terrorism19962000000mick", "subjects": ["Chronology", "History", "Terrorism", "History: World"], "isbn_13": ["9780313324642"], "source_records": ["amazon:0313324646", "marc:marc_loc_updates/v35.i23.records.utf8:5080616:875", "ia:terrorism19962000000mick", "ia:terrorism19962000002mick", "marc:marc_loc_2016/BooksAll.2016.part29.utf8:204460830:875", "marc:marc_columbia/Columbia-extract-20221130-011.mrc:124046521:920"], "title": "Terrorism, 1996-2001", "identifiers": {"goodreads": ["4159967"], "librarything": ["4343984"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0313324646"], "publish_date": "November 2002", "works": [{"key": "/works/OL17838641W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.1 x 6.9 x 1.1 inches", "lccn": ["2002067759"], "lc_classifications": ["HV6431 .M4992 2002"], "oclc_numbers": ["49618271"], "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-30T22:26:31.299841"}}
+/type/edition /books/OL10420353M 9 2022-05-14T10:13:06.665081 {"publishers": ["Greenwood Press"], "identifiers": {"goodreads": ["445270"], "librarything": ["5150353"]}, "weight": "1 pounds", "covers": [2377318], "physical_format": "Hardcover", "key": "/books/OL10420353M", "authors": [{"key": "/authors/OL1479230A"}], "subjects": ["Literary studies: general", "Literary Criticism", "Literature - Classics / Criticism", "USA", "American - General", "Women Authors", "Literary Criticism & Collections / American", "Study guides, home study & revision notes", "1873-1947", "Cather, Willa,", "Criticism and interpretation", "Examinations", "Study guides"], "isbn_13": ["9780313328428"], "title": "Student Companion to Willa Cather (Student Companions to Classic Writers)", "number_of_pages": 232, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0313328420"], "publish_date": "June 30, 2006", "works": [{"key": "/works/OL5961081W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.3 x 6.2 x 0.9 inches", "lccn": ["2006002441"], "lc_classifications": ["PS3505.A87 Z624 2006", "PS3505"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part33.utf8:93531668:1419", "bwb:9780313328428", "ia:studentcompanion0000dero"], "ocaid": "studentcompanion0000dero", "oclc_numbers": ["63679915"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-14T10:13:06.665081"}}
+/type/edition /books/OL10420404M 5 2010-04-24T18:02:37.581999 {"publishers": ["Greenwood Press"], "physical_format": "Hardcover", "subtitle": "FOLK, POP, MODS, AND ROCKERS, 1960-1966", "title": "THE GREENWOOD ENCYCLOPEDIA OF ROCK HISTORY, VOLUME 2", "isbn_10": ["0313329605"], "identifiers": {"goodreads": ["2297733"]}, "covers": [5059214, 4259828], "isbn_13": ["9780313329609"], "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:02:37.581999"}, "publish_date": "2006", "key": "/books/OL10420404M", "authors": [{"key": "/authors/OL3430501A"}], "latest_revision": 5, "works": [{"key": "/works/OL9393941W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10420743M 6 2010-08-17T01:58:50.307830 {"publishers": ["Greenwood Press"], "physical_format": "Hardcover", "revision": 6, "last_modified": {"type": "/type/datetime", "value": "2010-08-17T01:58:50.307830"}, "title": "Encyclopedia of Modern Christian Politics", "number_of_pages": 2, "isbn_13": ["9780313338892"], "covers": [5059334], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0313338892"], "publish_date": "January 2006", "key": "/books/OL10420743M", "authors": [{"key": "/authors/OL774750A"}], "latest_revision": 6, "works": [{"key": "/works/OL4125939W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Politics / Current Events"], "identifiers": {"goodreads": ["4382065"], "librarything": ["4676540"]}}
+/type/edition /books/OL10420873M 3 2022-11-12T04:45:25.500759 {"publishers": ["West Publishing Company"], "languages": [{"key": "/languages/eng"}], "title": "Study Guide to Accompany Criminology", "isbn_13": ["9780314002228"], "edition_name": "4th edition", "physical_format": "Paperback", "isbn_10": ["0314002227"], "publish_date": "1992", "key": "/books/OL10420873M", "oclc_numbers": ["232534689"], "type": {"key": "/type/edition"}, "works": [{"key": "/works/OL29298484W"}], "local_id": ["urn:bwbsku:O8-CYD-165"], "source_records": ["promise:bwb_daily_pallets_2022-10-14"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-12T04:45:25.500759"}}
+/type/edition /books/OL10421131M 6 2011-12-13T11:10:36.053236 {"publishers": ["West Publishing Company"], "ia_box_id": ["IA112702"], "covers": [6983868], "physical_format": "Mass Market Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-12-13T11:10:36.053236"}, "latest_revision": 6, "key": "/books/OL10421131M", "authors": [{"key": "/authors/OL2777344A"}], "ocaid": "workbookstudygui00ahre", "subjects": ["Earth Sciences - Meteorology & Climatology", "Science"], "isbn_13": ["9780314020475"], "source_records": ["ia:workbookstudygui00ahre"], "title": "S.G. Essentials of Meteorology Invitatio", "identifiers": {"goodreads": ["2200334"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0314020470"], "publish_date": "June 1962", "oclc_numbers": ["36570029"], "works": [{"key": "/works/OL8345371W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL10421365M 2 2009-12-15T00:48:20.539087 {"physical_format": "Paperback", "title": "Smith & Robersons Bus Law Supplement", "isbn_10": ["0314035796"], "publishers": ["West Group"], "isbn_13": ["9780314035790"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:48:20.539087"}, "publish_date": "January 1994", "key": "/books/OL10421365M", "authors": [{"key": "/authors/OL3235043A"}], "latest_revision": 2, "subjects": ["General", "Law", "Legal Reference / Law Profession"], "works": [{"key": "/works/OL9158745W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10421602M 8 2020-11-20T11:06:11.091860 {"publishers": ["Glencoe/McGraw-Hill"], "identifiers": {"librarything": ["3935978"], "goodreads": ["2097340"]}, "weight": "15.2 ounces", "isbn_10": ["0314049436"], "covers": [2377965], "physical_format": "Paperback", "lc_classifications": ["JC571 .O27 1996"], "latest_revision": 8, "key": "/books/OL10421602M", "authors": [{"key": "/authors/OL2624612A"}], "languages": [{"key": "/languages/eng"}], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part24.utf8:113878808:1093"], "title": "Human Rights for All Student Textbook", "lccn": ["95032773"], "number_of_pages": 162, "isbn_13": ["9780314049438"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "edition_name": "1 edition", "subjects": ["Social Studies", "Juvenile Nonfiction", "Children's Books/All Ages", "Textbooks", "Political Freedom & Security - Civil Rights", "Juvenile Nonfiction / Social Science / General", "Social Science - General", "Civil rights", "Democracy", "Human rights"], "publish_date": "January 1, 1994", "last_modified": {"type": "/type/datetime", "value": "2020-11-20T11:06:11.091860"}, "oclc_numbers": ["32779310"], "works": [{"key": "/works/OL14994855W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.6 x 8.3 x 0.5 inches", "revision": 8}
+/type/edition /books/OL10421632M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Mass Market Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Thomson South-Western"], "title": "Documentation for Lotus Contemporary Fin", "isbn_13": ["9780314052803"], "isbn_10": ["0314052801"], "publish_date": "January 1999", "key": "/books/OL10421632M", "authors": [{"key": "/authors/OL3012059A"}, {"key": "/authors/OL3430865A"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Computers - General Information"], "revision": 1}
+/type/edition /books/OL1042172M 3 2020-11-17T22:16:14.572760 {"publishers": ["Alif-Editions de la Me\u0301diterrane\u0301e"], "isbn_invalid": ["12452578"], "subject_place": ["Carthage (Extinct city)"], "lc_classifications": ["DT269.C34 F36 1993"], "latest_revision": 3, "key": "/books/OL1042172M", "authors": [{"key": "/authors/OL559378A"}], "subtitle": "approche d'une civilisation", "publish_places": ["Tunis, Tunisie"], "pagination": "2 v. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:73738881:671"], "title": "Carthage", "dewey_decimal_class": ["939/.73"], "notes": {"type": "/type/text", "value": "Includes bibliographical references."}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/fre"}], "lccn": ["93240352"], "subjects": ["Carthage (Extinct city) -- Civilization."], "publish_date": "1993", "publish_country": "ti ", "last_modified": {"type": "/type/datetime", "value": "2020-11-17T22:16:14.572760"}, "by_statement": " M'hamed Hassine Fantar.", "works": [{"key": "/works/OL3408501W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10421801M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780314065162"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "publishers": ["West Publishing Company"], "title": "Study Managerial Economics 7e", "edition_name": "7Rev Ed edition", "isbn_10": ["0314065164"], "publish_date": "September 1997", "key": "/books/OL10421801M", "authors": [{"key": "/authors/OL3012059A"}, {"key": "/authors/OL226409A"}], "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10421832M 6 2020-11-23T05:39:08.324575 {"publishers": ["West Publishing Company"], "identifiers": {"goodreads": ["5030936"]}, "subtitle": "Public and Private (American Casebook Series)", "weight": "4.6 pounds", "isbn_10": ["0314067787"], "covers": [2378018], "physical_format": "Hardcover", "lc_classifications": ["KF9010.A7 R46 1996"], "latest_revision": 6, "key": "/books/OL10421832M", "authors": [{"key": "/authors/OL836381A"}, {"key": "/authors/OL2673071A"}, {"key": "/authors/OL3430912A"}], "contributions": ["David Schoenbrod (Editor)"], "languages": [{"key": "/languages/eng"}], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part25.utf8:71431319:815"], "title": "Remedies", "lccn": ["96000372"], "number_of_pages": 897, "isbn_13": ["9780314067784"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "edition_name": "2nd edition", "subjects": ["Remedies", "Law (Specific Aspects)", "Legal Reference / Law Profession", "Cases", "Remedies (Law)", "United States", "Law"], "publish_date": "May 1996", "last_modified": {"type": "/type/datetime", "value": "2020-11-23T05:39:08.324575"}, "oclc_numbers": ["34150205"], "works": [{"key": "/works/OL23611408W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.2 x 7.9 x 1.7 inches", "revision": 6}
+/type/edition /books/OL10421848M 7 2022-12-05T06:49:04.896863 {"publishers": ["West Group"], "covers": [8322011], "physical_format": "Paperback", "key": "/books/OL10421848M", "authors": [{"key": "/authors/OL1131644A"}, {"key": "/authors/OL72672A"}, {"key": "/authors/OL2976640A"}, {"key": "/authors/OL2372959A"}], "ocaid": "civilprocedure1900john", "subjects": ["Reference"], "source_records": ["ia:civilprocedure1900john", "promise:bwb_daily_pallets_2022-05-25"], "title": "Civil Procedure, 1995 Supplement (American Casebook Series)", "identifiers": {"goodreads": ["506212"]}, "isbn_13": ["9780314068613"], "isbn_10": ["0314068619"], "publish_date": "August 1995", "oclc_numbers": ["34299765"], "works": [{"key": "/works/OL18154975W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:W7-BZM-052"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-05T06:49:04.896863"}}
+/type/edition /books/OL10422178M 3 2011-04-28T10:00:27.365505 {"publishers": ["West Group"], "weight": "3.1 pounds", "title": "Selected Environmental Law Statutes", "identifiers": {"librarything": ["2181007"]}, "isbn_13": ["9780314099778"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0314099778"], "publish_date": "July 1996", "key": "/books/OL10422178M", "last_modified": {"type": "/type/datetime", "value": "2011-04-28T10:00:27.365505"}, "latest_revision": 3, "oclc_numbers": ["440934819"], "type": {"key": "/type/edition"}, "subjects": ["Environment law", "Property, real estate, land & tenancy law", "USA", "Reference"], "physical_dimensions": "9.8 x 7.5 x 1.5 inches", "revision": 3}
+/type/edition /books/OL10422197M 2 2009-10-24T04:24:25.495024 {"publishers": ["Not Avail"], "physical_format": "Unknown Binding", "source_records": ["amazon:0314100679"], "title": "Und & Use Application Softwr", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780314100672"], "languages": [{"key": "/languages/eng"}], "authors": [{"key": "/authors/OL2622356A"}], "isbn_10": ["0314100679"], "publish_date": "January 1999", "key": "/books/OL10422197M", "last_modified": {"type": "/type/datetime", "value": "2009-10-24T04:24:25.495024"}, "latest_revision": 2, "works": [{"key": "/works/OL259843W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10422368M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Thomson West"], "number_of_pages": 769, "isbn_13": ["9780314106315"], "isbn_10": ["0314106316"], "publish_date": "2003", "key": "/books/OL10422368M", "title": "Texas Rules of Civil Procedure Annotated 2003", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10422446M 2 2009-10-24T04:56:46.399725 {"publishers": ["Not Avail"], "physical_format": "Unknown Binding", "source_records": ["amazon:0314108963"], "title": "Und & Use Application Softwr", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780314108968"], "languages": [{"key": "/languages/eng"}], "authors": [{"key": "/authors/OL2622356A"}], "isbn_10": ["0314108963"], "publish_date": "January 1999", "key": "/books/OL10422446M", "last_modified": {"type": "/type/datetime", "value": "2009-10-24T04:56:46.399725"}, "latest_revision": 2, "works": [{"key": "/works/OL259843W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10422832M 4 2011-04-26T20:00:24.650394 {"publishers": ["West Group"], "number_of_pages": 2155, "weight": "5.1 pounds", "covers": [2378126, 187057], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-26T20:00:24.650394"}, "latest_revision": 4, "key": "/books/OL10422832M", "subjects": ["Commercial - General", "Law"], "languages": [{"key": "/languages/eng"}], "title": "Selected Commercial Statutes, 2003 (Selected Commercial Statutes)", "identifiers": {"librarything": ["937518"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780314146861"], "isbn_10": ["0314146865"], "publish_date": "July 2003", "oclc_numbers": ["52855462"], "type": {"key": "/type/edition"}, "physical_dimensions": "9.8 x 7.2 x 2.8 inches", "revision": 4}
+/type/edition /books/OL10423606M 3 2010-04-24T18:02:37.581999 {"publishers": ["West Group"], "languages": [{"key": "/languages/eng"}], "key": "/books/OL10423606M", "title": "Hornbook on Environmental Law from Resources to Recovery, With 1997 Pocket Part", "identifiers": {"goodreads": ["617982"]}, "isbn_13": ["9780314225559"], "physical_format": "Hardcover", "isbn_10": ["0314225552"], "publish_date": "August 1993", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:02:37.581999"}, "authors": [{"key": "/authors/OL3431220A"}, {"key": "/authors/OL3430745A"}, {"key": "/authors/OL3431221A"}], "latest_revision": 3, "type": {"key": "/type/edition"}, "subjects": ["Law"], "revision": 3}
+/type/edition /books/OL10423838M 8 2021-08-12T02:23:27.867700 {"publishers": ["West Group Publishing"], "identifiers": {"goodreads": ["4442587"]}, "subtitle": "Cases, Comments and Questions (American Casebook Series)", "weight": "3 pounds", "isbn_10": ["0314238980"], "covers": [2378617], "physical_format": "Paperback", "key": "/books/OL10423838M", "authors": [{"key": "/authors/OL3245056A"}, {"key": "/authors/OL338516A"}, {"key": "/authors/OL3245057A"}], "contributions": ["Yale Kamisar (Editor)"], "languages": [{"key": "/languages/eng"}], "source_records": ["marc:marc_records_scriblio_net/part01.dat:111276523:1046", "marc:marc_loc_2016/BooksAll.2016.part01.utf8:210948376:1046", "ia:advancedcriminal0000unse"], "title": "Advanced Criminal Procedure", "number_of_pages": 944, "isbn_13": ["9780314238986"], "edition_name": "9th edition", "subjects": ["Criminal Law", "Legal Reference / Law Profession", "Cases", "Criminal procedure", "United States", "Law"], "publish_date": "October 1999", "oclc_numbers": ["45799443"], "works": [{"key": "/works/OL19404871W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10 x 7.5 x 1.2 inches", "ocaid": "advancedcriminal0000unse", "lccn": ["00697871"], "lc_classifications": ["KF9618 .M62 1999"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-08-12T02:23:27.867700"}}
+/type/edition /books/OL10424236M 5 2010-04-24T18:02:37.581999 {"publishers": ["West Group"], "physical_format": "Paperback", "weight": "12 ounces", "title": "2001 Supplement to Property Cases and Materials, 2001", "identifiers": {"goodreads": ["2102378"]}, "isbn_13": ["9780314259929"], "languages": [{"key": "/languages/eng"}], "authors": [{"key": "/authors/OL1807472A"}], "isbn_10": ["0314259929"], "publish_date": "December 2001", "key": "/books/OL10424236M", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:02:37.581999"}, "latest_revision": 5, "works": [{"key": "/works/OL6686151W"}], "type": {"key": "/type/edition"}, "subjects": ["Law"], "physical_dimensions": "9.8 x 7.2 x 0.5 inches", "revision": 5}
+/type/edition /books/OL10424528M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["West Group"], "title": "Selected Commercial Statutes, 1988", "isbn_13": ["9780314444882"], "isbn_10": ["0314444882"], "publish_date": "November 1988", "key": "/books/OL10424528M", "type": {"key": "/type/edition"}, "subjects": ["Reference"], "revision": 1}
+/type/edition /books/OL10424946M 6 2011-04-26T11:13:33.522364 {"publishers": ["West Pub. Co"], "identifiers": {"goodreads": ["3048978"]}, "physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2011-04-26T11:13:33.522364"}, "latest_revision": 6, "key": "/books/OL10424946M", "authors": [{"key": "/authors/OL78984A"}], "subjects": ["Management science"], "edition_name": "second edition", "languages": [{"key": "/languages/eng"}], "classifications": {}, "title": "Instructor's manual with solutions to accompany Quantitative methods for business", "notes": {"type": "/type/text", "value": "second edition"}, "number_of_pages": 273, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780314710765"], "isbn_10": ["0314710760"], "publish_date": "1983", "oclc_numbers": ["16164931"], "works": [{"key": "/works/OL892902W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL10425053M 3 2011-04-26T03:03:15.072602 {"publishers": ["West Pub. Co"], "physical_format": "Unknown Binding", "subtitle": "Cases and other materials (American casebook series)", "last_modified": {"type": "/type/datetime", "value": "2011-04-26T03:03:15.072602"}, "title": "1983 supplement to Federal income taxation", "number_of_pages": 67, "isbn_13": ["9780314754172"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0314754172"], "publish_date": "1983", "key": "/books/OL10425053M", "authors": [{"key": "/authors/OL402401A"}], "latest_revision": 3, "oclc_numbers": ["9974273"], "works": [{"key": "/works/OL2743663W"}], "type": {"key": "/type/edition"}, "subjects": ["Cases", "Income tax", "Law and legislation", "United States"], "revision": 3}
+/type/edition /books/OL10425069M 4 2011-01-14T03:56:43.449927 {"publishers": ["West Pub. Co"], "number_of_pages": 268, "physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2011-01-14T03:56:43.449927"}, "latest_revision": 4, "key": "/books/OL10425069M", "authors": [{"key": "/authors/OL534866A"}], "subjects": ["Cases", "Law and legislation", "Sex discrimination", "United States"], "isbn_13": ["9780314764836"], "classifications": {}, "title": "1990 supplement to Text, cases and materials on sex-based discrimination", "notes": {"type": "/type/text", "value": "American casebook series\r\nthird edition"}, "identifiers": {}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0314764836"], "publish_date": "1990", "works": [{"key": "/works/OL3276430W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10425232M 7 2022-12-04T15:43:04.473269 {"publishers": ["West Publishing Company"], "number_of_pages": 556, "subtitle": "An Abridged Edition of How to Find the Law (American Casebook Series)", "physical_format": "Paperback", "lc_classifications": ["KF240 .C5382 1984"], "key": "/books/OL10425232M", "authors": [{"key": "/authors/OL399504A"}, {"key": "/authors/OL655945A"}], "subjects": ["Research", "Legal Reference / Law Profession"], "edition_name": "Eighth edition", "languages": [{"key": "/languages/eng"}], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part14.utf8:186288418:854", "promise:bwb_daily_pallets_2022-08-29"], "title": "Finding the Law", "lccn": ["83023463"], "identifiers": {"librarything": ["1383089"], "goodreads": ["1484395"]}, "isbn_13": ["9780314805041"], "isbn_10": ["0314805044"], "publish_date": "December 1983", "works": [{"key": "/works/OL2728377W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:W7-DCN-214"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T15:43:04.473269"}}
+/type/edition /books/OL10425577M 2 2009-12-15T00:48:24.044083 {"physical_format": "Unknown Binding", "title": "Application Software Grades 7- 9", "isbn_10": ["0314932089"], "publishers": ["Not Avail"], "isbn_13": ["9780314932082"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:48:24.044083"}, "publish_date": "January 1999", "key": "/books/OL10425577M", "authors": [{"key": "/authors/OL3293699A"}], "latest_revision": 2, "works": [{"key": "/works/OL9234692W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10425611M 5 2010-04-24T18:02:37.581999 {"publishers": ["Wadsworth Publishing Company"], "languages": [{"key": "/languages/eng"}], "weight": "14.4 ounces", "title": "Student User's Guide to Accompany Mind Scope", "identifiers": {"goodreads": ["6181058"]}, "isbn_13": ["9780314942708"], "covers": [5060072], "edition_name": "Pap/Dsk edition", "physical_format": "Paperback", "authors": [{"key": "/authors/OL3431652A"}], "isbn_10": ["031494270X"], "latest_revision": 5, "key": "/books/OL10425611M", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:02:37.581999"}, "publish_date": "January 1991", "works": [{"key": "/works/OL9394811W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Psychology"], "physical_dimensions": "11 x 8.3 x 0.9 inches", "revision": 5}
+/type/edition /books/OL10425913M 6 2022-03-24T05:37:16.342228 {"publishers": ["West Group"], "weight": "3.6 pounds", "physical_format": "Paperback", "key": "/books/OL10425913M", "authors": [{"key": "/authors/OL3260671A"}], "subjects": ["Estates & Trusts", "Law"], "isbn_13": ["9780314967923"], "title": "California Probate Code 2008 (California Probate Code)", "identifiers": {"goodreads": ["2453756"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0314967923"], "publish_date": "December 2007", "oclc_numbers": ["176927793"], "works": [{"key": "/works/OL9194101W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.8 x 7.2 x 2 inches", "covers": [12686196], "ocaid": "californiaprobat0000unse", "source_records": ["ia:californiaprobat0000unse"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-24T05:37:16.342228"}}
+/type/edition /books/OL10426044M 14 2020-12-20T00:13:52.970176 {"publishers": ["Orbit"], "identifiers": {"goodreads": ["946054"], "librarything": ["3555357"]}, "weight": "12.8 ounces", "isbn_10": ["0316003409"], "series": ["Engineer (3)"], "covers": [2378892], "local_id": ["urn:sfpl:31223080534507", "urn:sfpl:31223080534499"], "physical_format": "Paperback", "key": "/books/OL10426044M", "authors": [{"key": "/authors/OL3137978A"}], "ocaid": "escapement0000park", "isbn_13": ["9780316003407"], "source_records": ["amazon:0316003409", "marc:marc_loc_updates/v36.i11.records.utf8:20130357:605", "marc:marc_loc_updates/v36.i12.records.utf8:12203341:831", "marc:marc_loc_updates/v37.i44.records.utf8:5031523:831", "marc:marc_openlibraries_sanfranciscopubliclibrary/sfpl_chq_2018_12_24_run03.mrc:235339134:1915", "ia:escapement0000park", "bwb:9780316003407", "marc:marc_loc_2016/BooksAll.2016.part35.utf8:88468884:831"], "title": "The Escapement (Engineer Trilogy)", "number_of_pages": 432, "languages": [{"key": "/languages/eng"}], "subjects": ["English Science Fiction And Fantasy", "Fiction", "Fiction - Fantasy", "Fantasy", "Fantasy - Epic", "Fiction / Fantasy / General"], "publish_date": "December 14, 2007", "oclc_numbers": ["187417666"], "works": [{"key": "/works/OL9011405W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.1 x 5.4 x 1.3 inches", "lccn": ["2007937113"], "lc_classifications": ["PR6116.A745 E83 2007"], "latest_revision": 14, "revision": 14, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-20T00:13:52.970176"}}
+/type/edition /books/OL10426132M 6 2010-08-17T02:00:34.990612 {"publishers": ["Little, Brown Young Readers"], "physical_format": "Paperback", "subtitle": "An Astonishing Life of Benjamin Franklin by His Good Mouse Amos", "last_modified": {"type": "/type/datetime", "value": "2010-08-17T02:00:34.990612"}, "title": "Ben and Me", "identifiers": {"goodreads": ["496259"], "librarything": ["80965"]}, "isbn_13": ["9780316016360"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0316016365"], "publish_date": "September 30, 2005", "key": "/books/OL10426132M", "authors": [{"key": "/authors/OL812291A"}], "latest_revision": 6, "works": [{"key": "/works/OL4234947W"}], "type": {"key": "/type/edition"}, "subjects": ["Biographical - United States", "Classics", "Juvenile Fiction / Historical / United States / Colonial & Revolutionary Periods", "Historical - United States - Colonial", "Juvenile Fiction", "Children's Books/Ages 9-12 Fiction", "Children: Grades 2-3"], "revision": 6}
+/type/edition /books/OL10426303M 16 2021-12-26T17:30:06.141192 {"publishers": ["Little, Brown Young Readers"], "identifiers": {"goodreads": ["2159225"], "librarything": ["4517420"]}, "subtitle": "The Mysterious Benedict Society #2", "ia_box_id": ["IA179901"], "isbn_10": ["0316057800"], "series": ["The Mysterious Benedict Society"], "covers": [6274740], "physical_format": "Hardcover", "ia_loaded_id": ["mysteriousbenedi00stew_0"], "key": "/books/OL10426303M", "authors": [{"key": "/authors/OL1435217A"}], "ocaid": "mysteriousbenedi00stew_0", "contributions": ["Diana Sudyka (Illustrator)"], "subjects": ["Family - General", "Social Issues - Friendship", "Juvenile Fiction / General", "General", "Juvenile Fiction", "Children's Books/Ages 9-12 Fiction", "Children: Grades 3-4"], "isbn_13": ["9780316057806"], "classifications": {}, "source_records": ["ia:mysteriousbenedi00stew_0", "ia:isbn_9780316036733", "marc:marc_openlibraries_sanfranciscopubliclibrary/sfpl_chq_2018_12_24_run03.mrc:271652622:8198", "bwb:9780316057806", "marc:marc_loc_2016/BooksAll.2016.part34.utf8:140494898:1484"], "title": "The Mysterious Benedict Society and the Perilous Journey", "number_of_pages": 448, "languages": [{"key": "/languages/eng"}], "local_id": ["urn:sfpl:31223119377092", "urn:sfpl:31223119377126", "urn:sfpl:31223126379594", "urn:sfpl:31223126379602", "urn:sfpl:31223119377043", "urn:sfpl:31223126379560", "urn:sfpl:31223084653634", "urn:sfpl:31223091636689", "urn:sfpl:31223119377100", "urn:sfpl:31223106934004", "urn:sfpl:31223126379586", "urn:sfpl:31223126379651", "urn:sfpl:31223126379669", "urn:sfpl:31223126379677", "urn:sfpl:31223119377084", "urn:sfpl:31223126379636", "urn:sfpl:31223115167398", "urn:sfpl:31223119377076", "urn:sfpl:31223126379628", "urn:sfpl:31223119377068", "urn:sfpl:31223126379578", "urn:sfpl:31223106933980", "urn:sfpl:31223119377019", "urn:sfpl:31223126379552", "urn:sfpl:31223126379685", "urn:sfpl:31223084653543", "urn:sfpl:31223119377001", "urn:sfpl:31223125425885", "urn:sfpl:31223118219618", "urn:sfpl:31223126379644", "urn:sfpl:31223126379610"], "publish_date": "May 1, 2008", "oclc_numbers": ["171287572"], "works": [{"key": "/works/OL5848456W"}], "type": {"key": "/type/edition"}, "lccn": ["2007031540"], "lc_classifications": ["PZ7.S8513 Mye 2008", "PZ7.S8513Mye 2008"], "latest_revision": 16, "revision": 16, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-26T17:30:06.141192"}}
+/type/edition /books/OL10426521M 8 2020-11-20T13:01:49.421318 {"publishers": ["Lippincott Williams & Wilkins"], "identifiers": {"librarything": ["2147391"], "goodreads": ["617912"]}, "subtitle": "Usmle Step 2 (Litle, Brown Review Book)", "weight": "2.3 pounds", "isbn_10": ["0316106267"], "covers": [5060062, 3817923], "physical_format": "Paperback", "lc_classifications": ["R834.5 .P67 1996"], "latest_revision": 8, "key": "/books/OL10426521M", "authors": [{"key": "/authors/OL3431866A"}, {"key": "/authors/OL3431867A"}, {"key": "/authors/OL2861894A"}, {"key": "/authors/OL3431868A"}], "languages": [{"key": "/languages/eng"}], "source_records": ["marc:marc_records_scriblio_net/part25.dat:25324921:913", "marc:marc_loc_2016/BooksAll.2016.part24.utf8:124458356:913"], "title": "Prescription for the Boards", "lccn": ["95045312"], "number_of_pages": 487, "isbn_13": ["9780316106269"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "edition_name": "1st ed edition", "subjects": ["Clinical & Internal Medicine", "c 1990 to c 2000", "Medicine (General)", "Medical / Nursing", "Health/Fitness", "Internal Medicine", "Professional - General", "Study guides, home study & revision notes", "Clinical Medicine", "Examinations, questions, etc", "Licensure, Medical", "Medicine", "United States", "examination questions"], "publish_date": "October 1995", "last_modified": {"type": "/type/datetime", "value": "2020-11-20T13:01:49.421318"}, "oclc_numbers": ["33357555"], "works": [{"key": "/works/OL19011836W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "11.2 x 8.8 x 0.8 inches", "revision": 8}
+/type/edition /books/OL10426537M 8 2022-12-17T15:31:37.421482 {"publishers": ["Little Brown and Company"], "physical_format": "Hardcover", "title": "The Party (Raymond Briggs' the Snowman)", "identifiers": {"librarything": ["6503504"], "goodreads": ["489949"]}, "isbn_13": ["9780316108164"], "isbn_10": ["0316108162"], "publish_date": "October 1985", "key": "/books/OL10426537M", "authors": [{"key": "/authors/OL27042A"}], "oclc_numbers": ["12884850"], "works": [{"key": "/works/OL462770W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Games / Gamebooks / Crosswords", "Fiction", "Snow", "Snowmen", "Stories without words", "Children: Babies & Toddlers"], "local_id": ["urn:bwbsku:065-BAB-947"], "source_records": ["promise:bwb_daily_pallets_2020-07-07", "bwb:9780316108164"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T15:31:37.421482"}}
+/type/edition /books/OL10426739M 4 2021-09-15T13:53:17.197008 {"publishers": ["Little Brown & Co Law & Business"], "physical_format": "Hardcover", "title": "Evidence in Trials at Common Law (Section 219-686 Volume II)", "isbn_13": ["9780316135672"], "edition_name": "Revised edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0316135674"], "publish_date": "January 1979", "key": "/books/OL10426739M", "authors": [{"key": "/authors/OL1121114A"}], "works": [{"key": "/works/OL5093413W"}], "type": {"key": "/type/edition"}, "subjects": ["Reference"], "source_records": ["bwb:9780316135672"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-09-15T13:53:17.197008"}}
+/type/edition /books/OL10427222M 6 2020-05-17T17:32:48.113613 {"publishers": ["Pro ed"], "subtitle": "Hyperactivity, Learning Disabilities, and Mental Retardation", "weight": "1 pounds", "covers": [9628181], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2020-05-17T17:32:48.113613"}, "latest_revision": 6, "key": "/books/OL10427222M", "authors": [{"key": "/authors/OL1074317A"}], "ocaid": "childrenonmedica0002gado", "subjects": ["Education Of Exceptional Children", "Neuropsychopharmacology", "Drug Therapy", "Pediatric pharmacology", "in infancy & childhood"], "isbn_13": ["9780316301459"], "source_records": ["ia:childrenonmedica0002gado"], "title": "Children on Medication", "identifiers": {"goodreads": ["4299110"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0316301450"], "publish_date": "January 1986", "works": [{"key": "/works/OL4974258W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.5 inches", "revision": 6}
+/type/edition /books/OL10427324M 2 2009-12-15T00:48:26.081071 {"publishers": ["Marboro Books"], "subtitle": "Images of the 1980s", "title": "Henri De Toulouse-Lautrec", "isbn_10": ["0316342726"], "isbn_13": ["9780316342728"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:48:26.081071"}, "publish_date": "November 1985", "key": "/books/OL10427324M", "authors": [{"key": "/authors/OL402129A"}], "latest_revision": 2, "works": [{"key": "/works/OL2742020W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10427360M 5 2011-01-15T20:07:05.092504 {"publishers": ["Little Brown and Company"], "physical_format": "Paperback", "classifications": {}, "last_modified": {"type": "/type/datetime", "value": "2011-01-15T20:07:05.092504"}, "title": "Serpent Slayer, Snow White, Sleeping Beauty", "notes": {"type": "/type/text", "value": "Prepak"}, "identifiers": {"goodreads": ["721594"]}, "isbn_13": ["9780316352819"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0316352810"], "publish_date": "September 2000", "key": "/books/OL10427360M", "authors": [{"key": "/authors/OL449533A"}], "latest_revision": 5, "works": [{"key": "/works/OL2946763W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Children's Books - Young Adult", "Juvenile Fiction"], "revision": 5}
+/type/edition /books/OL10427932M 1 2008-04-30T09:38:13.731961 {"physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Little Brown & Co (T)"], "title": "Britain (Library of Nations)", "isbn_13": ["9780316599085"], "isbn_10": ["0316599085"], "publish_date": "November 1987", "key": "/books/OL10427932M", "type": {"key": "/type/edition"}, "subjects": ["Travel"], "revision": 1}
+/type/edition /books/OL10428170M 2 2009-12-15T00:48:27.936148 {"publishers": ["T S Denison & Co"], "key": "/books/OL10428170M", "title": "Come Along to Thailand", "isbn_13": ["9780513005358"], "physical_format": "Library Binding", "isbn_10": ["0513005358"], "publish_date": "January 2000", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:48:27.936148"}, "authors": [{"key": "/authors/OL2918089A"}], "latest_revision": 2, "works": [{"key": "/works/OL8652488W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10428330M 3 2019-01-13T04:07:42.688156 {"publishers": ["T S Denison & Co"], "subtitle": "Early Explorers", "covers": [8342390], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2019-01-13T04:07:42.688156"}, "latest_revision": 3, "key": "/books/OL10428330M", "ocaid": "unitedstateshist0000turr", "subjects": ["General", "Juvenile Nonfiction", "Children: Grades 2-3"], "isbn_13": ["9780513022195"], "source_records": ["ia:unitedstateshist0000turr"], "title": "United States History", "identifiers": {"librarything": ["2405032"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0513022198"], "publish_date": "December 2001", "works": [{"key": "/works/OL18181522W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10428571M 2 2022-12-07T11:10:39.530739 {"languages": [{"key": "/languages/eng"}], "physical_format": "Paperback", "publishers": ["Pyramid Communications Inc."], "title": "You Don't Have To Be Rich To Make Big Money In Real Estate", "isbn_13": ["9780515032765"], "isbn_10": ["051503276X"], "publish_date": "1973", "key": "/books/OL10428571M", "type": {"key": "/type/edition"}, "works": [{"key": "/works/OL31453897W"}], "local_id": ["urn:bwbsku:W7-BCS-172"], "source_records": ["promise:bwb_daily_pallets_2022-03-17"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-07T11:10:39.530739"}}
+/type/edition /books/OL10428652M 2 2011-04-27T01:05:52.775724 {"publishers": ["Pyramid"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T01:05:52.775724"}, "title": "The Cardinalli Contract , 1975", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780515035841"], "isbn_10": ["051503584X"], "publish_date": "1975", "key": "/books/OL10428652M", "latest_revision": 2, "oclc_numbers": ["17511951"], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10428903M 4 2022-12-17T12:43:52.339256 {"publishers": ["Jove"], "title": "Touch Of Wonder", "isbn_13": ["9780515048117"], "physical_format": "Paperback", "isbn_10": ["0515048119"], "publish_date": "August 1, 1978", "key": "/books/OL10428903M", "authors": [{"key": "/authors/OL368486A"}], "oclc_numbers": ["8352534"], "works": [{"key": "/works/OL2576958W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780515048117"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T12:43:52.339256"}}
+/type/edition /books/OL10429044M 7 2022-12-17T17:04:35.013560 {"publishers": ["Jove"], "title": "Steel Killer", "identifiers": {"librarything": ["4059171"]}, "isbn_13": ["9780515055436"], "physical_format": "Paperback", "isbn_10": ["0515055433"], "publish_date": "1981", "key": "/books/OL10429044M", "oclc_numbers": ["36168704"], "type": {"key": "/type/edition"}, "works": [{"key": "/works/OL24103970W"}], "lccn": ["2007570678"], "lc_classifications": ["CPB Box no. 2529 vol. 4", "CPB"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part35.utf8:66645935:723", "ia:steelkiller0000smit", "promise:bwb_daily_pallets_2020-07-30", "bwb:9780515055436"], "covers": [11720794], "ocaid": "steelkiller0000smit", "local_id": ["urn:bwbsku:O6-DRZ-268"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T17:04:35.013560"}}
+/type/edition /books/OL10429100M 3 2022-12-17T12:00:05.874567 {"publishers": ["Jove"], "key": "/books/OL10429100M", "title": "Brand Nm Guide Cal", "isbn_13": ["9780515056884"], "physical_format": "Paperback", "isbn_10": ["051505688X"], "publish_date": "June 1, 1980", "authors": [{"key": "/authors/OL2746149A"}], "works": [{"key": "/works/OL8252426W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780515056884"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T12:00:05.874567"}}
+/type/edition /books/OL10429160M 2 2022-10-05T20:11:26.083215 {"physical_format": "Paperback", "publishers": ["Jove Pubns"], "title": "Longarm and the Loggers", "publish_date": "April 1987", "key": "/books/OL10429160M", "type": {"key": "/type/edition"}, "subjects": ["Westerns"], "identifiers": {}, "isbn_10": ["0515059005"], "isbn_13": ["9780515059007"], "classifications": {}, "works": [{"key": "/works/OL28954919W"}], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-05T20:11:26.083215"}}
+/type/edition /books/OL10429487M 12 2022-12-17T20:16:52.476874 {"publishers": ["Jove Pubns"], "subtitle": "Second Chance at Love (SC) #112", "isbn_10": ["0515072001"], "covers": [8331550, 8015116], "physical_format": "Paperback", "lc_classifications": ["CPB Box no. 1274 vol. 17"], "key": "/books/OL10429487M", "authors": [{"key": "/authors/OL3432470A"}], "ocaid": "lastingtreasure00hugh_fh5", "classifications": {}, "source_records": ["amazon:0515072001", "marc:marc_loc_updates/v38.i33.records.utf8:19023795:655", "ia:lastingtreasure00hugh_fh5", "marc:marc_loc_2016/BooksAll.2016.part27.utf8:177219454:655", "bwb:9780515072006"], "title": "A Lasting Treasure", "lccn": ["98818896"], "identifiers": {"librarything": ["4962204"], "goodreads": ["5364707"]}, "isbn_13": ["9780515072006"], "subjects": ["Romance: Regency"], "publish_date": "March 1983", "oclc_numbers": ["9511973"], "works": [{"key": "/works/OL9395633W"}], "type": {"key": "/type/edition"}, "latest_revision": 12, "revision": 12, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T20:16:52.476874"}}
+/type/edition /books/OL10429532M 12 2022-12-17T15:41:38.659303 {"publishers": ["Jove"], "isbn_10": ["0515072745"], "physical_format": "Paperback", "lc_classifications": ["CPB Box no. 2919 vol. 7"], "key": "/books/OL10429532M", "authors": [{"key": "/authors/OL1428442A"}], "source_records": ["amazon:0515072745", "marc:marc_loc_updates/v37.i26.records.utf8:58317665:811", "marc:marc_loc_updates/v37.i34.records.utf8:21351114:826", "marc:marc_loc_2016/BooksAll.2016.part37.utf8:19036093:830", "promise:bwb_daily_pallets_2022-09-13", "bwb:9780515072747"], "title": "Stone Hill", "lccn": ["2009459400"], "identifiers": {"goodreads": ["1434762"]}, "isbn_13": ["9780515072747"], "subjects": ["Fiction"], "publish_date": "November 1, 1983", "oclc_numbers": ["10259584"], "works": [{"key": "/works/OL5828264W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:T2-DTK-711"], "latest_revision": 12, "revision": 12, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T15:41:38.659303"}}
+/type/edition /books/OL10430122M 4 2022-12-17T15:55:17.441100 {"publishers": ["Jove"], "subtitle": "Nevada Lin (Longarm)", "weight": "8 ounces", "physical_format": "Paperback", "key": "/books/OL10430122M", "authors": [{"key": "/authors/OL596981A"}], "subjects": ["Westerns"], "languages": [{"key": "/languages/eng"}], "title": "Longarm 076", "identifiers": {"librarything": ["2961239"]}, "isbn_13": ["9780515092813"], "isbn_10": ["0515092819"], "publish_date": "February 15, 1987", "works": [{"key": "/works/OL3550486W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "7 x 5 x 1 inches", "source_records": ["bwb:9780515092813"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T15:55:17.441100"}}
+/type/edition /books/OL10430156M 6 2022-12-17T13:06:22.275925 {"publishers": ["Jove"], "languages": [{"key": "/languages/eng"}], "weight": "8 ounces", "title": "Gods Psychiatry", "identifiers": {"librarything": ["155959"]}, "isbn_13": ["9780515094626"], "physical_format": "Paperback", "isbn_10": ["0515094625"], "publish_date": "April 15, 1987", "key": "/books/OL10430156M", "authors": [{"key": "/authors/OL57447A"}], "works": [{"key": "/works/OL2520674W"}], "type": {"key": "/type/edition"}, "subjects": ["Inspirational"], "physical_dimensions": "7 x 5 x 1 inches", "local_id": ["urn:bwbsku:P7-BVI-739"], "source_records": ["promise:bwb_daily_pallets_2021-08-18", "bwb:9780515094626"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T13:06:22.275925"}}
+/type/edition /books/OL10430291M 6 2022-12-17T12:14:12.506104 {"publishers": ["Jove"], "weight": "8 ounces", "physical_format": "Paperback", "key": "/books/OL10430291M", "authors": [{"key": "/authors/OL1348032A"}], "subjects": ["General", "Fiction - General", "Westerns"], "isbn_13": ["9780515100198"], "title": "The Grabhorn Bounty", "identifiers": {"goodreads": ["4573458"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0515100196"], "publish_date": "March 1, 1989", "oclc_numbers": ["19658511"], "works": [{"key": "/works/OL5599141W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "7 x 5 x 1 inches", "source_records": ["bwb:9780515100198"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T12:14:12.506104"}}
+/type/edition /books/OL10430297M 10 2022-12-17T13:13:53.864119 {"publishers": ["Jove"], "classifications": {}, "title": "Lonestar 83/warpath", "series": ["Lone Star, No 83"], "identifiers": {"goodreads": ["1404288"]}, "isbn_13": ["9780515100624"], "physical_format": "Paperback", "isbn_10": ["0515100625"], "publish_date": "July 1, 1989", "key": "/books/OL10430297M", "authors": [{"key": "/authors/OL596975A"}], "oclc_numbers": ["20243794"], "works": [{"key": "/works/OL3549966W"}], "type": {"key": "/type/edition"}, "subjects": ["Westerns - General", "Fiction - Western", "Westerns"], "lccn": ["2007585894"], "lc_classifications": ["CPB Box no. 2627 vol. 21"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part35.utf8:71019483:973", "ia:lonestaronwarpat0000elli", "promise:bwb_daily_pallets_2022-04-01", "bwb:9780515100624"], "covers": [12835495], "ocaid": "lonestaronwarpat0000elli", "local_id": ["urn:bwbsku:O8-AEK-411"], "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T13:13:53.864119"}}
+/type/edition /books/OL10430491M 4 2022-12-17T12:28:15.815251 {"publishers": ["Jove"], "subtitle": "Capricorn (Total Horoscopes)", "isbn_10": ["0515106291"], "physical_format": "Paperback", "lc_classifications": ["CPB Box no. 1108 vol. 8"], "key": "/books/OL10430491M", "authors": [{"key": "/authors/OL2701845A"}], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part27.utf8:173390545:552", "bwb:9780515106299"], "title": "Total Horoscopes 1992", "lccn": ["98812205"], "isbn_13": ["9780515106299"], "subjects": ["General", "New Age / Parapsychology"], "publish_date": "August 1, 1991", "works": [{"key": "/works/OL8109085W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "6.9 x 4.2 x 0.8 inches", "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T12:28:15.815251"}}
+/type/edition /books/OL10430496M 8 2022-12-17T11:17:37.872433 {"publishers": ["Jove"], "subtitle": "Lone Star Cap (Longarm)", "isbn_10": ["0515106461"], "covers": [10269362], "physical_format": "Paperback", "lc_classifications": ["CPB Box no. 1111 vol. 36"], "key": "/books/OL10430496M", "authors": [{"key": "/authors/OL596981A"}], "ocaid": "longarmlonestarc0000evan", "source_records": ["ia:longarmlonestarc0000evan", "marc:marc_loc_2016/BooksAll.2016.part27.utf8:173526884:551", "amazon:0515106461", "bwb:9780515106466"], "title": "Longarm 000", "lccn": ["98812418"], "isbn_13": ["9780515106466"], "subjects": ["Westerns - General", "Fiction - Western", "Westerns"], "publish_date": "August 1, 1991", "oclc_numbers": ["24209565"], "works": [{"key": "/works/OL3550529W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "6.6 x 4.2 x 0.7 inches", "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T11:17:37.872433"}}
+/type/edition /books/OL1043089M 2 2020-11-17T22:30:26.917672 {"publishers": ["Wydawn. Nauk. WSP"], "series": ["Prace Monograficzne Wyz\u0307szej Szko\u0142y Pedagogicznej w Krakowie,", "nr 156 =", "Etudes monographiques de l'Ecole normale supe\u0301rieure a\u0300 Cracovie", "Prace monograficzne Wyz\u0307szej Szko\u0142y Pedagogicznej w Krakowie ;", "t. 156."], "lc_classifications": ["PN5355.P6 Z84256 1993"], "latest_revision": 2, "key": "/books/OL1043089M", "publish_places": ["Krako\u0301w"], "contributions": ["Jarowiecki, Jerzy."], "pagination": "301 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:74768202:1141"], "title": "Ksia\u0328z\u0307ki, czasopisma, biblioteki Krakowa i Lwowa XIX i XX wieku", "lccn": ["93241783"], "notes": {"type": "/type/text", "value": "Includes bibliographical references."}, "number_of_pages": 301, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/pol"}], "subjects": ["Polish periodicals -- Galicia (Poland and Ukraine) -- History.", "Press -- Galicia (Poland and Ukraine) -- History.", "Libraries -- Galicia (Poland and Ukraine) -- History.", "Publishers and publishing -- Galicia (Poland and Ukraine) -- History."], "publish_date": "1993", "publish_country": "pl ", "last_modified": {"type": "/type/datetime", "value": "2020-11-17T22:30:26.917672"}, "subject_place": ["Galicia (Poland and Ukraine)"], "by_statement": "pod redakcja\u0328 Jerzego Jarowieckiego.", "works": [{"key": "/works/OL23523410W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10430944M 4 2022-12-17T20:12:35.931275 {"publishers": ["Jove"], "number_of_pages": 1, "subtitle": "Capricorn (Total Horoscopes)", "weight": "8 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0515123137"], "title": "Total Horoscopes 1999", "isbn_13": ["9780515123135"], "covers": [2468856], "physical_format": "Paperback", "key": "/books/OL10430944M", "authors": [{"key": "/authors/OL2701845A"}], "publish_date": "July 1, 1998", "works": [{"key": "/works/OL8109090W"}], "type": {"key": "/type/edition"}, "subjects": ["Astrology - Horoscopes", "New Age / Parapsychology", "New Age"], "physical_dimensions": "7 x 5 x 1 inches", "source_records": ["bwb:9780515123135"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T20:12:35.931275"}}
+/type/edition /books/OL10431234M 5 2011-04-26T10:11:08.715573 {"publishers": ["Childrens Pr"], "physical_format": "School & Library Binding", "last_modified": {"type": "/type/datetime", "value": "2011-04-26T10:11:08.715573"}, "title": "Falling Star", "identifiers": {"goodreads": ["2956139"]}, "isbn_13": ["9780516022055"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0516022059"], "publish_date": "September 1980", "key": "/books/OL10431234M", "authors": [{"key": "/authors/OL381518A"}], "latest_revision": 5, "oclc_numbers": ["6799544"], "works": [{"key": "/works/OL2619061W"}], "type": {"key": "/type/edition"}, "subjects": ["Mystery and detective stories", "Children: Babies & Toddlers"], "revision": 5}
+/type/edition /books/OL10431701M 7 2022-12-07T14:09:35.115781 {"publishers": ["Childrens Pr"], "languages": [{"key": "/languages/eng"}], "title": "How Does a Monster Count to Nine? (Just Joking)", "identifiers": {"librarything": ["8603523"], "goodreads": ["2513498"]}, "isbn_13": ["9780516083711"], "physical_format": "School & Library Binding", "isbn_10": ["0516083716"], "publish_date": "April 1990", "key": "/books/OL10431701M", "authors": [{"key": "/authors/OL2903140A"}], "oclc_numbers": ["21998123"], "works": [{"key": "/works/OL8627367W"}], "type": {"key": "/type/edition"}, "subjects": ["Juvenile Humor", "Juvenile literature", "Monsters", "Riddles", "Children: Grades 2-3"], "local_id": ["urn:bwbsku:T2-BYB-345"], "source_records": ["promise:bwb_daily_pallets_2022-03-17"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-07T14:09:35.115781"}}
+/type/edition /books/OL10431988M 2 2011-04-19T17:37:02.896494 {"physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-19T17:37:02.896494"}, "latest_revision": 2, "key": "/books/OL10431988M", "title": "Easy-to-Make Party Foods", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780516118253"], "isbn_10": ["0516118250"], "oclc_numbers": ["10079287"], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10432009M 2 2019-10-15T21:47:48.793271 {"publishers": ["Children's Press (CT)"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2019-10-15T21:47:48.793271"}, "title": "Shapes and Colors", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780516161341"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0516161342"], "publish_date": "September 1993", "key": "/books/OL10432009M", "authors": [{"key": "/authors/OL28255A"}], "latest_revision": 2, "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10432015M 4 2010-04-24T18:02:37.581999 {"publishers": ["Childrens Pr"], "physical_format": "School & Library Binding", "subtitle": "Little Brown Bear Does Not Want to Eat, Little Brown Bear Is Growing Up, Little Brown Bear Learns to Share, Little Brown Bear Wants to Be Read to", "key": "/books/OL10432015M", "weight": "13.6 ounces", "title": "Little Brown Bear Boxed Set #2", "identifiers": {"goodreads": ["6379738"]}, "isbn_13": ["9780516178035"], "edition_name": "Boxed edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0516178032"], "latest_revision": 4, "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:02:37.581999"}, "authors": [{"key": "/authors/OL448470A"}], "publish_date": "April 1996", "works": [{"key": "/works/OL2940635W"}], "type": {"key": "/type/edition"}, "subjects": ["Family - General", "Children's 4-8 - Fiction - General", "Children: Preschool"], "physical_dimensions": "6.2 x 6 x 1.2 inches", "revision": 4}
+/type/edition /books/OL10432450M 2 2009-12-15T00:48:32.418086 {"physical_format": "School & Library Binding", "publishers": ["Capstone Press"], "isbn_10": ["0516297392"], "number_of_pages": 24, "isbn_13": ["9780516297392"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:48:32.418086"}, "publish_date": "December 1998", "latest_revision": 2, "key": "/books/OL10432450M", "authors": [{"key": "/authors/OL217533A"}], "title": "Growing Flowers", "subjects": ["Life Sciences - Evolution", "Children's Books/Ages 4-8 Nonfiction", "Children: Grades 3-4"], "works": [{"key": "/works/OL1813368W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10432498M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "School & Library Binding", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Children's Press (CT)"], "title": "Rookie Readers (Accelerated Reader)", "isbn_13": ["9780516299211"], "isbn_10": ["0516299212"], "publish_date": "September 2000", "key": "/books/OL10432498M", "type": {"key": "/type/edition"}, "subjects": ["General", "Juvenile Fiction", "Children's 4-8 - Fiction - General", "Children: Grades 1-2"], "revision": 1}
+/type/edition /books/OL10432540M 1 2008-04-30T09:38:13.731961 {"physical_format": "Library Binding", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Crestwood House"], "title": "The Bermuda Triangle", "isbn_13": ["9780516303406"], "isbn_10": ["0516303406"], "publish_date": "September 1987", "key": "/books/OL10432540M", "type": {"key": "/type/edition"}, "subjects": ["Bermuda Triangle", "Juvenile literature"], "revision": 1}
+/type/edition /books/OL10433104M 4 2010-04-24T18:02:37.581999 {"publishers": ["Chinese Historical Society of"], "physical_format": "School & Library Binding", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:02:37.581999"}, "title": "Nine in One Grr! Grr!", "identifiers": {"goodreads": ["3509625"]}, "isbn_13": ["9780516800486"], "isbn_10": ["0516800485"], "publish_date": "December 1989", "key": "/books/OL10433104M", "authors": [{"key": "/authors/OL103081A"}], "latest_revision": 4, "works": [{"key": "/works/OL1044768W"}], "type": {"key": "/type/edition"}, "first_sentence": {"type": "/type/text", "value": "At last Tiger came to a stone wall."}, "revision": 4}
+/type/edition /books/OL10433403M 5 2011-04-28T00:52:09.260425 {"publishers": ["Crown Pub"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2011-04-28T00:52:09.260425"}, "title": "The Essential Winston Churchill (Library of Freedom)", "identifiers": {"goodreads": ["2358943"]}, "isbn_13": ["9780517149119"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Hardcover", "isbn_10": ["0517149117"], "publish_date": "November 1995", "key": "/books/OL10433403M", "authors": [{"key": "/authors/OL21970A"}, {"key": "/authors/OL2755476A"}], "latest_revision": 5, "oclc_numbers": ["123065013"], "type": {"key": "/type/edition"}, "subjects": ["20th century", "Great Britain", "History", "Politics and government", "History: World"], "revision": 5}
+/type/edition /books/OL10433456M 5 2022-12-05T02:43:03.818602 {"publishers": ["Weathervane Books"], "title": "James Preserves and Pickles", "identifiers": {"goodreads": ["6828092"], "librarything": ["7062751"]}, "physical_format": "Hardcover", "isbn_10": ["0517172003"], "publish_date": "1960", "key": "/books/OL10433456M", "authors": [{"key": "/authors/OL1803851A"}], "works": [{"key": "/works/OL6674608W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:O8-AXT-583"], "source_records": ["promise:bwb_daily_pallets_2022-06-13"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-05T02:43:03.818602"}}
+/type/edition /books/OL10433867M 3 2022-12-07T03:24:17.399024 {"physical_format": "Hardcover", "title": "Charlies Pets", "isbn_10": ["0517535769"], "publishers": ["Alfred A. Knopf BFYR"], "isbn_13": ["9780517535769"], "languages": [{"key": "/languages/eng"}], "publish_date": "December 12, 1988", "key": "/books/OL10433867M", "authors": [{"key": "/authors/OL2754231A"}], "subjects": ["Non-Classifiable", "Nonfiction - General"], "works": [{"key": "/works/OL8287287W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:P7-CSL-715"], "source_records": ["promise:bwb_daily_pallets_2022-03-17"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-07T03:24:17.399024"}}
+/type/edition /books/OL10434062M 2 2009-12-15T00:48:33.816539 {"physical_format": "Hardcover", "title": "Acts of Contrition-Promo Edition", "isbn_10": ["0517586169"], "publishers": ["Crown"], "isbn_13": ["9780517586167"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:48:33.816539"}, "publish_date": "April 29, 1991", "key": "/books/OL10434062M", "authors": [{"key": "/authors/OL3432892A"}], "latest_revision": 2, "subjects": ["Non-Classifiable"], "works": [{"key": "/works/OL9396285W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL1043461M 3 2020-11-17T22:35:30.888160 {"publishers": ["U.S. G.P.O.", "For sale by the U.S. G.P.O., Supt. of Docs., Congressional Sales Office"], "table_of_contents": [{"title": "v. 1. The debate and legislative and related documents", "type": {"key": "/type/toc_item"}, "level": 0}, {"title": "v. 2. Compendium of hearings and committee prints.", "type": {"key": "/type/toc_item"}, "level": 0}], "isbn_10": ["0160412285", "0160412293"], "series": ["S. prt. ;", "103-42"], "covers": [3868519, 3868515], "lc_classifications": ["KF6222.121 .A15 1993"], "latest_revision": 3, "key": "/books/OL1043461M", "subtitle": "a legislative history", "publish_places": ["Washington"], "contributions": ["United States. Congress. Senate. Committee on the Budget."], "pagination": "2 v. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:75159497:1622"], "title": "The Balanced Budget and Emergency Deficit Control Reaffirmation Act of 1987", "lccn": ["93242333"], "notes": {"type": "/type/text", "value": "Includes bibliographical references.\nAt head of title: 103d Congress, 1st session. Committee print.\nDistributed to some depository libraries in microfiche.\nShipping list no.: 93-0490-P (v. 1), 93-0462-P (v. 2)."}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "subjects": ["United States.", "Budget -- Law and legislation -- United States.", "Tax and expenditure limitations -- Law and legislation -- United States.", "Government spending policy -- United States.", "Budget deficits -- United States."], "publish_date": "1993", "publish_country": "dcu", "last_modified": {"type": "/type/datetime", "value": "2020-11-17T22:35:30.888160"}, "subject_place": ["United States."], "by_statement": "Committee on the Budget.", "works": [{"key": "/works/OL23523481W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10434791M 6 2020-05-15T14:59:26.975779 {"publishers": ["University of California Press"], "subtitle": "A Tentative Autobibliography", "covers": [9451931], "local_id": ["urn:trent:0116300298944"], "physical_format": "Textbook Binding", "last_modified": {"type": "/type/datetime", "value": "2020-05-15T14:59:26.975779"}, "latest_revision": 6, "key": "/books/OL10434791M", "authors": [{"key": "/authors/OL125388A"}], "ocaid": "tentativeautobib0000malk", "subjects": ["Linguistics (General)", "1914-", "Bibliography", "Linguistics", "Malkiel, Yakov,", "Romance languages"], "source_records": ["marc:OpenLibraries-Trent-MARCs/diff_20181207-multis.mrc:2135163:1412", "ia:tentativeautobib0000malk"], "title": "Yakov Malkiel", "identifiers": {"librarything": ["6220460"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780520065925"], "isbn_10": ["0520065921"], "publish_date": "September 1988", "works": [{"key": "/works/OL1241816W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL10434M 4 2022-08-12T06:41:31.535887 {"notes": {"type": "/type/text", "value": "In Bengali.\nPoems."}, "title": "A\u0304ka\u0304la", "authors": [{"key": "/authors/OL7338A"}], "publish_date": "1966", "subject_place": ["Bengal (India)"], "pagination": "43 p.", "lc_classifications": ["PK1714 .B552"], "genres": ["Poetry."], "source_records": ["marc:marc_records_scriblio_net/part29.dat:6179258:579", "marc:marc_loc_2016/BooksAll.2016.part43.utf8:13915712:589"], "lccn": ["sa67000093"], "languages": [{"key": "/languages/ben"}], "subjects": ["Bengali poetry", "Bengal (India) -- Famines -- Poetry"], "publish_country": "ii ", "oclc_numbers": ["20029616"], "type": {"key": "/type/edition"}, "key": "/books/OL10434M", "number_of_pages": 43, "works": [{"key": "/works/OL348755W"}], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-12T06:41:31.535887"}}
+/type/edition /books/OL10435101M 5 2021-10-04T08:38:36.014560 {"publishers": ["Cambridge University Press"], "weight": "1.2 pounds", "covers": [2469328], "physical_format": "Paperback", "key": "/books/OL10435101M", "authors": [{"key": "/authors/OL585682A"}], "subjects": ["British & Irish history: c 500 to c 1000", "History", "History - General History", "History: World", "England", "General", "Biography & Autobiography / General", "History / General"], "edition_name": "1 edition", "languages": [{"key": "/languages/eng"}], "title": "Anglo-Saxon England", "number_of_pages": 357, "isbn_13": ["9780521038331"], "isbn_10": ["0521038332"], "publish_date": "October 15, 2007", "oclc_numbers": ["263427272"], "works": [{"key": "/works/OL3504425W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.8 inches", "source_records": ["bwb:9780521038331"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-10-04T08:38:36.014560"}}
+/type/edition /books/OL10435171M 2 2009-12-15T00:48:35.492125 {"publishers": ["Cambridge University Press"], "isbn_10": ["0521046130"], "number_of_pages": 178, "isbn_13": ["9780521046138"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:48:35.492125"}, "publish_date": "December 1, 1952", "latest_revision": 2, "key": "/books/OL10435171M", "authors": [{"key": "/authors/OL3433110A"}], "title": "Statistical Calculation for Beginners", "subjects": ["Probability & statistics"], "works": [{"key": "/works/OL9396531W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10435222M 8 2021-10-04T14:38:17.481023 {"publishers": ["Cambridge University Press"], "identifiers": {"librarything": ["6086840"], "goodreads": ["6488655"]}, "subtitle": "Essays in Honour of Donald MacKinnon", "covers": [2469398], "physical_format": "Paperback", "key": "/books/OL10435222M", "authors": [{"key": "/authors/OL1120592A"}], "subjects": ["Philosophy of religion", "Religion", "Religion - Theology", "Christian Theology - General", "Christianity - General", "Religion / Christianity"], "edition_name": "1 edition", "languages": [{"key": "/languages/eng"}], "title": "Christ, Ethics and Tragedy", "number_of_pages": 218, "isbn_13": ["9780521050241"], "isbn_10": ["0521050243"], "publish_date": "May 1, 2009", "oclc_numbers": ["183260644"], "works": [{"key": "/works/OL5091745W"}], "type": {"key": "/type/edition"}, "first_sentence": {"type": "/type/text", "value": "Donald MacKinnon has been a central figure in the pursuit of theology in Britain for half a century."}, "lc_classifications": ["BX4827.M244 C48 1989"], "source_records": ["bwb:9780521050241"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-10-04T14:38:17.481023"}}
+/type/edition /books/OL10435274M 2 2009-12-15T00:48:35.492125 {"publishers": ["Cambridge University Press"], "title": "Thermodynamic Tables and Other Data", "isbn_10": ["0521052394"], "isbn_13": ["9780521052399"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:48:35.492125"}, "publish_date": "December 1, 1960", "key": "/books/OL10435274M", "authors": [{"key": "/authors/OL888627A"}], "latest_revision": 2, "subjects": ["Engineering: general"], "works": [{"key": "/works/OL4458807W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10435502M 6 2022-11-19T04:04:09.768535 {"publishers": ["Cambridge University Press"], "identifiers": {"goodreads": ["6302560"]}, "subtitle": "A View Towards Several Complex Variables (London Mathematical Society Lecture Note Series)", "physical_format": "Paperback", "key": "/books/OL10435502M", "authors": [{"key": "/authors/OL1923690A"}], "subjects": ["Geometry - General", "Functions Of Complex Variables", "Mathematics", "Science/Mathematics"], "isbn_13": ["9780521284912"], "title": "Riemann Surfaces", "number_of_pages": 260, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0521284910"], "publish_date": "April 2008", "oclc_numbers": ["149063320"], "works": [{"key": "/works/OL6938368W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780521284912"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T04:04:09.768535"}}
+/type/edition /books/OL10435618M 3 2020-08-19T02:26:08.401560 {"publishers": ["Cambridge University Press"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2020-08-19T02:26:08.401560"}, "source_records": ["bwb:9780521444231"], "title": "User Interface Architectures (Cambridge Series on Human-Computer Interaction)", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780521444231"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0521444233"], "latest_revision": 3, "key": "/books/OL10435618M", "authors": [{"key": "/authors/OL3433214A"}], "works": [{"key": "/works/OL9396669W"}], "type": {"key": "/type/edition"}, "subjects": ["Computers / Social Aspects / General"], "revision": 3}
+/type/edition /books/OL10435847M 6 2022-11-17T08:42:02.261019 {"publishers": ["Cambridge Univ Pr (Sd)"], "physical_format": "Hardcover", "title": "Plato's Timaeus", "identifiers": {"goodreads": ["6944311"]}, "isbn_13": ["9780521590167"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0521590167"], "publish_date": "January 30, 2008", "key": "/books/OL10435847M", "authors": [{"key": "/authors/OL585817A"}], "oclc_numbers": ["149107186"], "works": [{"key": "/works/OL3504938W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Philosophy"], "source_records": ["bwb:9780521590167"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T08:42:02.261019"}}
+/type/edition /books/OL10435893M 9 2020-12-17T05:57:13.204345 {"publishers": ["Cambridge University Press"], "identifiers": {"goodreads": ["1126931"], "librarything": ["4429138"]}, "subtitle": "Narratives of Political Change", "weight": "13.4 ounces", "covers": [2469529], "physical_format": "Paperback", "lc_classifications": ["JA76.A748 2007", "JA76 .A748 2007"], "key": "/books/OL10435893M", "authors": [{"key": "/authors/OL888066A"}], "subjects": ["POLITICS & GOVERNMENT", "World history", "Social Science", "History - General History", "Sociology", "Historiography", "Social Science / General", "General", "1989-", "Autobiography", "History, Modern", "Political aspects", "Political sociology"], "edition_name": "1 edition", "languages": [{"key": "/languages/eng"}], "source_records": ["bwb:9780521604697", "marc:marc_loc_2016/BooksAll.2016.part34.utf8:108545925:1217"], "title": "Shaping History", "number_of_pages": 234, "isbn_13": ["9780521604697"], "isbn_10": ["0521604699"], "publish_date": "August 13, 2007", "works": [{"key": "/works/OL4456702W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.8 x 6 x 0.6 inches", "lccn": ["2007006790"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-17T05:57:13.204345"}}
+/type/edition /books/OL10435905M 3 2020-08-20T08:30:49.588345 {"publishers": ["Cambridge University Press"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2020-08-20T08:30:49.588345"}, "source_records": ["bwb:9780521605717"], "title": "Assisted Respiration in Neonatal Intensive Care", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780521605717"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0521605717"], "publish_date": "March 1, 2008", "key": "/books/OL10435905M", "authors": [{"key": "/authors/OL3433286A"}], "latest_revision": 3, "works": [{"key": "/works/OL9396726W"}], "type": {"key": "/type/edition"}, "subjects": ["Medical / Laboratory Medicine"], "revision": 3}
+/type/edition /books/OL10436082M 8 2021-12-25T00:13:36.238094 {"publishers": ["Cambridge University Press"], "number_of_pages": 288, "subtitle": "An Introduction (Cambridge Textbooks in Linguistics)", "weight": "1.6 pounds", "isbn_10": ["0521653134"], "covers": [2469582], "physical_format": "Hardcover", "key": "/books/OL10436082M", "authors": [{"key": "/authors/OL583713A"}], "ocaid": "IndoEuropeanLinguistics", "languages": [{"key": "/languages/eng"}], "classifications": {}, "source_records": ["amazon:0521653134", "marc:marc_loc_updates/v36.i10.records.utf8:34481328:1291", "bwb:9780521653138"], "title": "Indo-European Linguistics", "identifiers": {"librarything": ["3980757"]}, "isbn_13": ["9780521653138"], "edition_name": "1 edition", "subjects": ["Language & Linguistics", "Language Arts & Disciplines", "Language Arts / Linguistics / Literacy", "Language", "Linguistics", "Language Arts & Disciplines / Linguistics"], "publish_date": "November 26, 2007", "works": [{"key": "/works/OL3494756W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.8 x 7 x 0.9 inches", "lc_classifications": ["P561 .C58 2007"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-25T00:13:36.238094"}}
+/type/edition /books/OL10436137M 2 2020-08-19T08:54:33.612080 {"publishers": ["Cambridge University Press"], "languages": [{"key": "/languages/eng"}], "source_records": ["bwb:9780521664646"], "title": "Parker Vector Roller Ball (CUP Bookshop gift)", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780521664646"], "physical_format": "Unknown Binding", "isbn_10": ["0521664640"], "publish_date": "October 1, 1998", "key": "/books/OL10436137M", "last_modified": {"type": "/type/datetime", "value": "2020-08-19T08:54:33.612080"}, "latest_revision": 2, "works": [{"key": "/works/OL21381659W"}], "type": {"key": "/type/edition"}, "subjects": ["Encyclopaedias & Reference Works", "Reference / General"], "revision": 2}
+/type/edition /books/OL10436143M 2 2020-08-19T09:04:17.758538 {"publishers": ["Cambridge University Press"], "languages": [{"key": "/languages/eng"}], "source_records": ["bwb:9780521664707"], "title": "Cross Century Fountain Pen (CUP Bookshop gift)", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780521664707"], "physical_format": "Unknown Binding", "isbn_10": ["0521664705"], "publish_date": "October 1, 1998", "key": "/books/OL10436143M", "last_modified": {"type": "/type/datetime", "value": "2020-08-19T09:04:17.758538"}, "latest_revision": 2, "works": [{"key": "/works/OL21381820W"}], "type": {"key": "/type/edition"}, "subjects": ["Encyclopaedias & Reference Works", "Reference / General", "Reference", "General"], "revision": 2}
+/type/edition /books/OL1043622M 7 2022-12-20T23:46:09.501779 {"publishers": ["Thompson & Day"], "covers": [6286752], "lc_classifications": ["MLCM 93/05518 (B)"], "key": "/books/OL1043622M", "authors": [{"key": "/authors/OL560013A"}], "ocaid": "bishopwhitehouse00kerf", "publish_places": ["Chicago"], "contributions": ["YA Pamphlet Collection (Library of Congress)"], "pagination": "55 p. ;", "source_records": ["ia:bishopwhitehouse00kerf", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:75313333:743", "marc:marc_columbia/Columbia-extract-20221130-022.mrc:20311448:830"], "title": "Bishop Whitehouse and the Diocese of Illinois", "lccn": ["93242546"], "number_of_pages": 55, "languages": [{"key": "/languages/eng"}], "subjects": ["Whitehouse, Henry John, 1803-1874", "Episcopal Church. Diocese of Illinois"], "publish_date": "1860", "publish_country": "ilu", "by_statement": "by Sam'l Kerfoot.", "oclc_numbers": ["13110602"], "works": [{"key": "/works/OL3411111W"}], "type": {"key": "/type/edition"}, "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-20T23:46:09.501779"}}
+/type/edition /books/OL10436772M 10 2022-12-26T21:01:04.744579 {"publishers": ["Cambridge University Press"], "physical_format": "Paperback", "source_records": ["ia:cambridgecompani00tabe_695", "marc:marc_loc_2016/BooksAll.2016.part36.utf8:108985609:1932", "bwb:9780521700191", "ia:cambridgecompani0000unse_j8t1", "marc:marc_columbia/Columbia-extract-20221130-015.mrc:137563018:2294"], "title": "The Cambridge Companion to Gunter Grass (Cambridge Companions to Literature)", "identifiers": {"goodreads": ["6827725"]}, "covers": [9461450], "isbn_13": ["9780521700191"], "isbn_10": ["0521700191"], "publish_date": "April 1, 2008", "key": "/books/OL10436772M", "authors": [{"key": "/authors/OL2772201A"}], "ocaid": "cambridgecompani00tabe_695", "works": [{"key": "/works/OL8332479W"}], "type": {"key": "/type/edition"}, "subjects": ["Literature: History & Criticism"], "lccn": ["2009012563"], "lc_classifications": ["PT2613.R338 Z587 2009", "PT2613.R338Z587 2009"], "oclc_numbers": ["317288669"], "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-26T21:01:04.744579"}}
+/type/edition /books/OL10436862M 8 2022-11-09T22:41:55.782224 {"publishers": ["Cambridge University Press"], "number_of_pages": 48, "subtitle": "i-read Year 1 Anthology", "covers": [2469926], "physical_format": "Paperback", "key": "/books/OL10436862M", "authors": [{"key": "/authors/OL3375394A"}, {"key": "/authors/OL244841A"}], "contributions": ["Pie Corbett (Editor)", "Ann Webley (Editor)"], "subjects": ["English language readers", "Education", "Education / Teaching", "English", "Teaching Methods & Materials - Arts & Humanities", "Education / Teaching Methods & Materials / Arts & Humanities"], "source_records": ["bwb:9780521704717"], "title": "Animal Antics", "identifiers": {"goodreads": ["2841115"]}, "languages": [{"key": "/languages/eng"}], "publish_date": "October 31, 2007", "works": [{"key": "/works/OL15050692W"}], "type": {"key": "/type/edition"}, "isbn_10": ["0521704715"], "isbn_13": ["9780521704717"], "oclc_numbers": ["526717758"], "classifications": {}, "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-09T22:41:55.782224"}}
+/type/edition /books/OL10437308M 14 2022-12-07T07:05:16.219295 {"publishers": ["Cambridge University Press"], "identifiers": {"librarything": ["4343970"], "goodreads": ["6416317"]}, "subtitle": "Concepts, Practices, Strategies", "weight": "1.6 pounds", "covers": [2470193], "physical_format": "Paperback", "lc_classifications": ["HF5549.5.R3 S47 2007"], "key": "/books/OL10437308M", "authors": [{"key": "/authors/OL2670545A"}], "ocaid": "managingemployee00shie", "subjects": ["Personnel & human resources management", "Business & Economics", "Business / Economics / Finance", "Business/Economics", "Human Resources & Personnel Management", "Business & Economics / Human Resources & Personnel Management", "Management - General", "Compensation management", "Employees", "Evaluation", "Performance", "Rating of"], "isbn_13": ["9780521820462"], "source_records": ["ia:managingemployee00jshi", "ia:managingemployee00shie", "bwb:9780521820462", "marc:marc_loc_2016/BooksAll.2016.part33.utf8:155571546:1268", "ia:managingemployee0000shie", "promise:bwb_daily_pallets_2022-03-17"], "title": "Managing Employee Performance and Reward", "number_of_pages": 612, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0521820464"], "publish_date": "July 23, 2007", "works": [{"key": "/works/OL8020856W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.9 x 6 x 1.2 inches", "lccn": ["2006101012"], "local_id": ["urn:bwbsku:KQ-066-717"], "latest_revision": 14, "revision": 14, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-07T07:05:16.219295"}}
+/type/edition /books/OL10437992M 13 2022-12-29T20:50:36.953277 {"publishers": ["Cambridge University Press"], "identifiers": {"goodreads": ["2222491"], "librarything": ["8780151"]}, "subtitle": "The Politics of War in Germany", "weight": "1.3 pounds", "covers": [2470501], "physical_format": "Hardcover", "key": "/books/OL10437992M", "authors": [{"key": "/authors/OL2769256A"}], "subjects": ["International relations", "Social history", "Postwar period, 1945 to c 2000", "Political Science", "History - General History", "Politics / Current Events", "Politics/International Relations", "Germany", "Europe - Germany", "European - German", "Political Science / Government / General", "International Relations - General"], "edition_name": "1 edition", "languages": [{"key": "/languages/eng"}], "source_records": ["amazon:0521873339", "marc:marc_loc_updates/v36.i04.records.utf8:23142878:888", "marc:marc_loc_updates/v36.i05.records.utf8:41230389:1213", "marc:marc_loc_updates/v36.i16.records.utf8:13181727:1244", "bwb:9780521873338", "marc:marc_loc_2016/BooksAll.2016.part35.utf8:170637453:1244", "marc:marc_columbia/Columbia-extract-20221130-013.mrc:307021892:1203"], "title": "Wounds of Memory", "number_of_pages": 310, "isbn_13": ["9780521873338"], "isbn_10": ["0521873339"], "publish_date": "November 19, 2007", "works": [{"key": "/works/OL8327220W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 1 inches", "lccn": ["2008295173"], "lc_classifications": ["PT772 .Z38 2007", "PT749"], "oclc_numbers": ["149011897"], "latest_revision": 13, "revision": 13, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-29T20:50:36.953277"}}
+/type/edition /books/OL10438027M 1 2008-04-30T09:38:13.731961 {"physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Cambridge University Press"], "title": "The Evolution of International Law", "isbn_13": ["9780521874021"], "isbn_10": ["0521874025"], "publish_date": "April 1, 2008", "key": "/books/OL10438027M", "type": {"key": "/type/edition"}, "subjects": ["International relations"], "revision": 1}
+/type/edition /books/OL10438525M 8 2022-07-22T17:11:58.846062 {"publishers": ["Cambridge University Press"], "number_of_pages": 464, "subtitle": "Costs and Benefits", "weight": "1.9 pounds", "covers": [2470813], "physical_format": "Hardcover", "key": "/books/OL10438525M", "authors": [{"key": "/authors/OL57451A"}], "subjects": ["Economics", "Business & Economics", "Business / Economics / Finance", "Business/Economics", "Economics - General", "Business & Economics / Economics / General", "Cost effectiveness", "Economic policy", "International cooperation"], "edition_name": "1 edition", "languages": [{"key": "/languages/eng"}], "title": "Solutions for the World's Biggest Problems", "identifiers": {"goodreads": ["1327888"], "librarything": ["4626817"]}, "isbn_13": ["9780521887724"], "isbn_10": ["0521887720"], "publish_date": "November 5, 2007", "works": [{"key": "/works/OL8305186W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 1.3 inches", "lc_classifications": ["HD87"], "source_records": ["bwb:9780521887724"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-22T17:11:58.846062"}}
+/type/edition /books/OL10438785M 7 2011-04-28T12:13:08.356867 {"publishers": ["Pinnacle"], "identifiers": {"librarything": ["6630624"], "goodreads": ["6525533"]}, "last_modified": {"type": "/type/datetime", "value": "2011-04-28T12:13:08.356867"}, "languages": [{"key": "/languages/eng"}], "number_of_pages": 182, "isbn_13": ["9780523005645"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Unknown Binding", "isbn_10": ["0523005644"], "publish_date": "1975", "latest_revision": 7, "key": "/books/OL10438785M", "authors": [{"key": "/authors/OL2029618A"}], "title": "Murder's money (Pinnacle books)", "oclc_numbers": ["37743826"], "works": [{"key": "/works/OL7134883W"}], "type": {"key": "/type/edition"}, "subjects": ["Brothers", "Fiction", "Millionaires", "Mystery fiction", "People with disabilities"], "revision": 7}
+/type/edition /books/OL10438932M 4 2018-11-18T01:18:21.177548 {"publishers": ["Pinnacle Books"], "physical_format": "Paperback", "source_records": ["marc:OpenLibraries-Trent-MARCs/tier5.mrc:38456593:567"], "title": "The Deep Six", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2018-11-18T01:18:21.177548"}, "local_id": ["urn:trent:0116403759677"], "isbn_13": ["9780523249582"], "isbn_10": ["0523009585"], "publish_date": "December 1, 1976", "key": "/books/OL10438932M", "authors": [{"key": "/authors/OL898070A"}], "latest_revision": 4, "oclc_numbers": ["3915941"], "works": [{"key": "/works/OL4493911W"}], "type": {"key": "/type/edition"}, "subjects": ["Fiction", "General"], "revision": 4}
+/type/edition /books/OL10438962M 6 2011-04-30T11:57:03.092822 {"publishers": ["Pinnacle Books"], "physical_format": "Paperback", "source_records": ["amazon:0523401418"], "title": "From Satan, with Love", "identifiers": {"librarything": ["1203963"], "goodreads": ["454976"]}, "last_modified": {"type": "/type/datetime", "value": "2011-04-30T11:57:03.092822"}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780523401416"], "isbn_10": ["0523401418"], "publish_date": "July 1, 1978", "key": "/books/OL10438962M", "authors": [{"key": "/authors/OL19181A"}], "latest_revision": 6, "oclc_numbers": ["4398959"], "works": [{"key": "/works/OL121360W"}], "type": {"key": "/type/edition"}, "subjects": ["Fiction", "Science Fiction - General"], "revision": 6}
+/type/edition /books/OL10439028M 7 2020-12-19T21:59:22.548103 {"publishers": ["Pinnacle Books"], "identifiers": {"librarything": ["5131089"], "goodreads": ["305330"]}, "languages": [{"key": "/languages/eng"}], "number_of_pages": 308, "isbn_13": ["9780523403755"], "physical_format": "Paperback", "isbn_10": ["0523403755"], "publish_date": "January 1, 1979", "key": "/books/OL10439028M", "authors": [{"key": "/authors/OL37691A"}], "title": "Killshot", "oclc_numbers": ["4607831"], "works": [{"key": "/works/OL533957W"}], "type": {"key": "/type/edition"}, "lccn": ["2007585933"], "lc_classifications": ["CPB Box no. 2629 vol. 12"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part35.utf8:71051571:720"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-19T21:59:22.548103"}}
+/type/edition /books/OL1043909M 3 2020-11-17T22:41:55.306100 {"publishers": ["CAM"], "subject_place": ["Cameroon"], "lc_classifications": ["JQ3522 .F66 1993"], "latest_revision": 3, "key": "/books/OL1043909M", "authors": [{"key": "/authors/OL560118A"}], "publish_places": ["[Yaounde\u0301?]"], "subject_time": ["1960-1982."], "pagination": "35 p. ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:75641531:725"], "title": "An open letter addressed to the government of the Republic of Cameroon on the operation of unification, Federal Republic of Cameroon, 1961-1971", "lccn": ["93242958"], "notes": {"type": "/type/text", "value": "Cover title.\nErrata slip laid in after p. 16.\n\"January 1993\"--P. 1."}, "number_of_pages": 35, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "subjects": ["Cameroon -- Politics and government -- 1960-1982."], "publish_date": "1992", "publish_country": "cm ", "last_modified": {"type": "/type/datetime", "value": "2020-11-17T22:41:55.306100"}, "by_statement": "by J.N. Foncha.", "works": [{"key": "/works/OL3411431W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10439296M 7 2022-12-05T00:53:33.697258 {"publishers": ["Pinnacle Books (Mm)"], "physical_format": "Paperback", "title": "People in Glass Houses (Bennett, No 3)", "identifiers": {"goodreads": ["3655426"]}, "isbn_13": ["9780523414379"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0523414374"], "publish_date": "March 1981", "key": "/books/OL10439296M", "authors": [{"key": "/authors/OL2772704A"}], "oclc_numbers": ["7403156"], "works": [{"key": "/works/OL8333249W"}], "type": {"key": "/type/edition"}, "subjects": ["Mystery & Detective - General", "Fiction", "Mystery/Suspense"], "covers": [12889134], "ocaid": "peopleinglasshou0000lewi", "lc_classifications": ["PS3562.E94 P4"], "source_records": ["ia:peopleinglasshou0000lewi", "promise:bwb_daily_pallets_2022-06-30"], "local_id": ["urn:bwbsku:O8-AFX-021"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-05T00:53:33.697258"}}
+/type/edition /books/OL10439515M 4 2021-08-18T09:24:05.804617 {"publishers": ["Pinnacle Books"], "title": "The One Minute Relationship", "number_of_pages": 64, "isbn_13": ["9780523421445"], "physical_format": "Paperback", "isbn_10": ["0523421443"], "publish_date": "July 1983", "key": "/books/OL10439515M", "authors": [{"key": "/authors/OL2637113A"}], "oclc_numbers": ["10283061"], "works": [{"key": "/works/OL7912630W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Philosophy", "Humor"], "covers": [11689822], "ocaid": "oneminuterelatio0000matt", "lc_classifications": ["HM132 .M32"], "source_records": ["ia:oneminuterelatio0000matt"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-08-18T09:24:05.804617"}}
+/type/edition /books/OL10439517M 7 2022-12-10T05:14:47.227867 {"publishers": ["Pinnacle Books"], "languages": [{"key": "/languages/eng"}], "identifiers": {"librarything": ["8917630"], "goodreads": ["4561044"]}, "title": "The Slender Balance", "physical_format": "Paperback", "number_of_pages": 288, "isbn_13": ["9780523421469"], "isbn_10": ["052342146X"], "publish_date": "December 1984", "key": "/books/OL10439517M", "authors": [{"key": "/authors/OL719674A"}], "oclc_numbers": ["10479460"], "works": [{"key": "/works/OL3946446W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Fiction - General"], "local_id": ["urn:bwbsku:P6-AEX-371"], "source_records": ["promise:bwb_daily_pallets_2020-07-07"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T05:14:47.227867"}}
+/type/edition /books/OL10439672M 3 2022-02-03T18:28:45.899451 {"languages": [{"key": "/languages/eng"}], "physical_format": "Paperback", "publishers": ["Pinnacle Books"], "title": "Judgement At Poisoned Well", "publish_date": "1985", "key": "/books/OL10439672M", "type": {"key": "/type/edition"}, "subjects": ["FIC033000"], "covers": [12606630], "identifiers": {}, "isbn_10": ["0523427379"], "isbn_13": ["9780523427379"], "classifications": {}, "works": [{"key": "/works/OL27281831W"}], "series": ["Diamondback 2"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-03T18:28:45.899451"}}
+/type/edition /books/OL10439751M 3 2022-05-18T09:31:32.500044 {"publishers": ["T.C. & E.C. Jack"], "source_records": ["amazon:0524010439", "marc:marc_gtu/KLF IA Export 5-5-22.mrc:44366612:1103"], "title": "Theosophy [microform]", "isbn_10": ["0524010439"], "isbn_13": ["9780524010433"], "physical_format": "Hardcover", "publish_date": "1912", "key": "/books/OL10439751M", "authors": [{"key": "/authors/OL16933A"}], "works": [{"key": "/works/OL68639W"}], "type": {"key": "/type/edition"}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-18T09:31:32.500044"}}
+/type/edition /books/OL10440282M 3 2022-12-17T16:09:15.948049 {"publishers": ["Dutton Juvenile"], "isbn_10": ["0525468501"], "number_of_pages": 48, "isbn_13": ["9780525468509"], "physical_format": "Hardcover", "publish_date": "September 2005", "key": "/books/OL10440282M", "authors": [{"key": "/authors/OL2763875A"}], "title": "UC CREATION OF EARTH", "subjects": ["General", "Juvenile Nonfiction / General"], "works": [{"key": "/works/OL8316991W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780525468509"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T16:09:15.948049"}}
+/type/edition /books/OL10440314M 4 2011-04-26T22:44:33.997328 {"publishers": ["Penguin Putnam~childrens Hc"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-26T22:44:33.997328"}, "title": "Meditate the Tantric Yoga Way", "identifiers": {"librarything": ["4819941"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780525473534"], "isbn_10": ["052547353X"], "latest_revision": 4, "key": "/books/OL10440314M", "authors": [{"key": "/authors/OL3434294A"}], "oclc_numbers": ["2310328"], "works": [{"key": "/works/OL9397653W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10440413M 8 2022-12-17T11:41:37.587049 {"publishers": ["Plume"], "covers": [5060792], "physical_format": "Paperback", "key": "/books/OL10440413M", "authors": [{"key": "/authors/OL1575254A"}, {"key": "/authors/OL3434308A"}], "ocaid": "bedbreakfastusag0000rund", "subjects": ["United States - General", "Travel / General", "Travel - United States"], "source_records": ["ia:bedbreakfastusag0000rund", "bwb:9780525481911"], "title": "Bed and Breakfast USA 1986", "identifiers": {"librarything": ["5728300"], "goodreads": ["3019480"]}, "isbn_13": ["9780525481911"], "isbn_10": ["0525481915"], "publish_date": "January 27, 1986", "oclc_numbers": ["13001627"], "works": [{"key": "/works/OL17928112W"}], "type": {"key": "/type/edition"}, "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T11:41:37.587049"}}
+/type/edition /books/OL10440471M 4 2022-12-17T15:30:12.702544 {"publishers": ["E P Dutton"], "physical_format": "Hardcover", "title": "Pop-Up Numbers", "isbn_13": ["9780525615910"], "isbn_10": ["0525615911"], "publish_date": "September 1979", "key": "/books/OL10440471M", "authors": [{"key": "/authors/OL231980A"}], "oclc_numbers": ["5828174"], "works": [{"key": "/works/OL1933816W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780525615910"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T15:30:12.702544"}}
+/type/edition /books/OL10440752M 15 2023-01-03T09:32:18.367811 {"publishers": ["Dutton Adult"], "number_of_pages": 400, "isbn_10": ["0525950583"], "covers": [7252403], "physical_format": "Hardcover", "lc_classifications": ["PS3554.I319", "PS3554.I319 T46 2010"], "key": "/books/OL10440752M", "authors": [{"key": "/authors/OL20195A"}], "isbn_13": ["9780525950585"], "classifications": {}, "source_records": ["marc:marc_openlibraries_sanfranciscopubliclibrary/sfpl_chq_2018_12_24_run04.mrc:75815989:2041", "bwb:9780525950585", "marc:marc_loc_2016/BooksAll.2016.part37.utf8:141782333:1108", "ia:temptedbytrouble0000dick_o2a4", "promise:bwb_daily_pallets_2022-06-13", "marc:harvard_bibliographic_metadata/ab.bib.12.20150123.full.mrc:423436699:1240"], "title": "Tempted by Trouble", "lccn": ["2010025169"], "identifiers": {"goodreads": ["1686166"], "librarything": ["9569314"]}, "languages": [{"key": "/languages/eng"}], "local_id": ["urn:sfpl:31223088479085", "urn:sfpl:31223088479044", "urn:bwbsku:O8-ABS-079"], "publish_date": "August 24, 2010", "oclc_numbers": ["636911535"], "works": [{"key": "/works/OL14913101W"}], "type": {"key": "/type/edition"}, "ocaid": "temptedbytrouble0000dick_o2a4", "latest_revision": 15, "revision": 15, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2023-01-03T09:32:18.367811"}}
+/type/edition /books/OL10441799M 2 2010-07-21T03:55:21.481033 {"publishers": ["Rand Mcnally"], "physical_format": "Hardcover", "subtitle": "Your Guide to What's Happening in Today's World of Business, Finance and Management", "last_modified": {"type": "/type/datetime", "value": "2010-07-21T03:55:21.481033"}, "title": "The Book of American Business", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780528810596"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0528810596"], "publish_date": "October 1985", "key": "/books/OL10441799M", "authors": [{"key": "/authors/OL2642873A"}], "latest_revision": 2, "works": [{"key": "/works/OL15247013W"}], "type": {"key": "/type/edition"}, "subjects": ["Business Administration (General)"], "revision": 2}
+/type/edition /books/OL10442047M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Rand McNally"], "title": "Passport Edition Atlas Displayx12", "isbn_13": ["9780528838842"], "isbn_10": ["0528838849"], "publish_date": "August 25, 2000", "key": "/books/OL10442047M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10442102M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Map", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Rand McNally & Company"], "title": "Rand McNally World Mural", "isbn_13": ["9780528841880"], "isbn_10": ["0528841882"], "publish_date": "January 2001", "key": "/books/OL10442102M", "type": {"key": "/type/edition"}, "subjects": ["United States - General", "Travel - United States"], "revision": 1}
+/type/edition /books/OL10442748M 2 2009-12-15T00:48:42.563079 {"physical_format": "Hardcover", "publishers": ["Rand McNally & Company"], "isbn_10": ["0528897322"], "number_of_pages": 144, "isbn_13": ["9780528897320"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:48:42.563079"}, "publish_date": "January 1987", "latest_revision": 2, "key": "/books/OL10442748M", "authors": [{"key": "/authors/OL2656742A"}], "title": "Rand McNally Family Adventure Road Atlas", "subjects": ["Atlases - U.S.", "Reference"], "works": [{"key": "/works/OL7965517W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10443455M 3 2011-04-30T08:53:13.582249 {"publishers": ["Rand McNally & Company"], "physical_format": "Map", "subtitle": "City Map (Rand McNally)", "last_modified": {"type": "/type/datetime", "value": "2011-04-30T08:53:13.582249"}, "title": "Las Cruces, New Mexico", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780528947209"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0528947206"], "publish_date": "June 1999", "key": "/books/OL10443455M", "authors": [{"key": "/authors/OL2656742A"}], "latest_revision": 3, "oclc_numbers": ["639780242"], "works": [{"key": "/works/OL7964419W"}], "type": {"key": "/type/edition"}, "subjects": ["United States - General", "New Mexico", "Travel / road maps & atlases", "Travel - United States"], "revision": 3}
+/type/edition /books/OL10443566M 2 2009-12-15T00:48:42.563079 {"publishers": ["Rand Mcnally"], "subtitle": "Denver Metro Area, Co", "weight": "14.4 ounces", "title": "Rand McNally Streetfinder", "isbn_10": ["0528952706"], "isbn_13": ["9780528952708"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:48:42.563079"}, "publish_date": "June 1994", "key": "/books/OL10443566M", "authors": [{"key": "/authors/OL2656742A"}], "latest_revision": 2, "subjects": ["Atlases", "United States - General", "United States - Mountain - Colorado", "United States - West - Mountain (General)", "Travel", "Travel - United States"], "works": [{"key": "/works/OL7965562W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "11.2 x 8.8 x 0.8 inches", "revision": 2}
+/type/edition /books/OL10443697M 2 2010-04-13T06:01:15.930385 {"physical_format": "Ring-bound", "languages": [{"key": "/languages/eng"}], "weight": "2.4 pounds", "publishers": ["Thomas Brothers Maps"], "title": "Thomas Guide 2003 Los Angeles and Ventura Counties Street Guide", "covers": [2471341], "edition_name": "Bk&CD-Rom edition", "isbn_13": ["9780528956997"], "isbn_10": ["052895699X"], "publish_date": "January 2003", "key": "/books/OL10443697M", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:01:15.930385"}, "latest_revision": 2, "subjects": ["Maps", "United States - Pacific - Los Angeles", "United States - South - West South Central (General)", "Travel - United States", "Travel"], "type": {"key": "/type/edition"}, "physical_dimensions": "11.8 x 8.6 x 1.2 inches", "revision": 2}
+/type/edition /books/OL10444198M 2 2010-04-13T06:01:15.930385 {"physical_format": "Map", "languages": [{"key": "/languages/eng"}], "weight": "2.1 ounces", "publishers": ["Rand McNally & Company"], "title": "Cleveland City Map (Rand McNally)", "covers": [5060938], "edition_name": "3Rev Ed edition", "isbn_13": ["9780528972737"], "isbn_10": ["0528972731"], "publish_date": "June 1997", "key": "/books/OL10444198M", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:01:15.930385"}, "latest_revision": 2, "subjects": ["Maps, charts & atlases", "Travel / road maps & atlases", "Travel", "Travel - United States", "North America", "Ohio", "Maps", "United States - General", "United States - Midwest - East North Central (General)"], "type": {"key": "/type/edition"}, "physical_dimensions": "9.2 x 4.4 x 0.2 inches", "revision": 2}
+/type/edition /books/OL10444272M 5 2012-06-20T15:06:26.869754 {"publishers": ["Rand Mcnally"], "weight": "2.4 ounces", "series": ["Folded-Map Series"], "covers": [2471440], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2012-06-20T15:06:26.869754"}, "latest_revision": 5, "key": "/books/OL10444272M", "authors": [{"key": "/authors/OL2656742A"}], "subjects": ["Maps, charts & atlases", "Travel / road maps & atlases", "Arizona", "North America", "Maps"], "edition_name": "Map edition", "languages": [{"key": "/languages/eng"}], "classifications": {}, "title": "Rand McNally Mesa Tempe Arizona City Map", "identifiers": {}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780528974762"], "isbn_10": ["0528974769"], "publish_date": "October 1998", "works": [{"key": "/works/OL15282864W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 4.2 x 0.2 inches", "revision": 5}
+/type/edition /books/OL10444906M 2 2011-04-30T04:46:14.878342 {"publishers": ["Rand McNally & Company"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2011-04-30T04:46:14.878342"}, "title": "Folded Map-Warren County (Rand McNally City Maps)", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780528990151"], "physical_format": "Map", "isbn_10": ["0528990152"], "publish_date": "February 2001", "key": "/books/OL10444906M", "latest_revision": 2, "oclc_numbers": ["53357012"], "type": {"key": "/type/edition"}, "subjects": ["United States - General", "Ohio", "Travel / road maps & atlases", "USA", "Travel - United States"], "revision": 2}
+/type/edition /books/OL10445159M 5 2012-03-01T22:14:57.902438 {"publishers": ["Rand McNally & Company"], "weight": "1.2 pounds", "covers": [2471781], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2012-03-01T22:14:57.902438"}, "latest_revision": 5, "key": "/books/OL10445159M", "authors": [{"key": "/authors/OL2656742A"}], "subjects": ["United States - South Atlantic - Maryland", "Maps & Road Atlases", "Travel", "Travel - United States", "Maps"], "edition_name": "Spiral edition", "languages": [{"key": "/languages/eng"}], "title": "Thomas Guide 2003 Baltimore City / County", "number_of_pages": 280, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780528996993"], "isbn_10": ["0528996991"], "publish_date": "December 2002", "oclc_numbers": ["52574757"], "works": [{"key": "/works/OL15283452W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "11 x 8.9 x 0.6 inches", "revision": 5}
+/type/edition /books/OL10445699M 7 2022-12-08T15:19:43.549654 {"publishers": ["Time Warner Books UK"], "number_of_pages": 960, "subtitle": "The Compendium of Sporting Knowledge", "weight": "2.6 pounds", "covers": [2379807], "physical_format": "Hardcover", "key": "/books/OL10445699M", "authors": [{"key": "/authors/OL3242938A"}], "subjects": ["Sports & Recreation / Reference", "Reference", "Sports & Recreation", "Sports"], "isbn_13": ["9780316729468"], "title": "A to Z of Sport", "identifiers": {"librarything": ["7927196"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0316729469"], "publish_date": "October 1, 2004", "oclc_numbers": ["224426787"], "works": [{"key": "/works/OL9170516W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.2 x 6 x 1.6 inches", "source_records": ["bwb:9780316729468", "promise:bwb_daily_pallets_2021-04-06"], "local_id": ["urn:bwbsku:KP-500-921"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-08T15:19:43.549654"}}
+/type/edition /books/OL10446290M 11 2022-12-09T22:43:50.850148 {"publishers": ["LITTLE, BROWN"], "identifiers": {"librarything": ["563357"]}, "classifications": {}, "title": "THE VINOPOLIS WORLD WINE GUIDE", "type": {"key": "/type/edition"}, "number_of_pages": 272, "covers": [2380117, 190585], "isbn_13": ["9780316852005"], "isbn_10": ["0316852007"], "publish_date": "2000", "key": "/books/OL10446290M", "authors": [{"key": "/authors/OL26925A"}], "oclc_numbers": ["42834027"], "works": [{"key": "/works/OL460341W"}], "physical_format": "Paperback", "ocaid": "vinopolisworldwi0000clar", "source_records": ["ia:vinopolisworldwi0000clar", "bwb:9780316852005", "promise:bwb_daily_pallets_2020-10-07"], "local_id": ["urn:bwbsku:O6-CYL-038"], "latest_revision": 11, "revision": 11, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T22:43:50.850148"}}
+/type/edition /books/OL10446775M 3 2011-04-30T09:43:18.566468 {"publishers": ["Little, Brown"], "languages": [{"key": "/languages/eng"}], "subtitle": "Readings and cases ; 7th ed", "last_modified": {"type": "/type/datetime", "value": "2011-04-30T09:43:18.566468"}, "title": "Instructor's manual to accompany American government", "number_of_pages": 173, "isbn_13": ["9780316951449"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Unknown Binding", "isbn_10": ["0316951447"], "publish_date": "1981", "key": "/books/OL10446775M", "authors": [{"key": "/authors/OL766219A"}], "latest_revision": 3, "oclc_numbers": ["7747961"], "works": [{"key": "/works/OL4090761W"}], "type": {"key": "/type/edition"}, "subjects": ["Study and teaching", "United States"], "revision": 3}
+/type/edition /books/OL10446950M 5 2011-04-29T05:11:39.266831 {"publishers": ["Amer Society of Mechanical"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T05:11:39.266831"}, "title": "Second Symposium on Integrated Environmental Controls for Coal-Fired Power Plants (H00252)", "identifiers": {"goodreads": ["4214352"]}, "isbn_13": ["9780317026467"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0317026461"], "publish_date": "July 1989", "key": "/books/OL10446950M", "authors": [{"key": "/authors/OL458742A"}], "latest_revision": 5, "oclc_numbers": ["234280457"], "works": [{"key": "/works/OL2993616W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10447072M 2 2009-12-15T00:48:44.928726 {"publishers": ["Univ of Kansas"], "key": "/books/OL10447072M", "title": "Directory on the Birds of Kansas", "isbn_13": ["9780317046113"], "physical_format": "Paperback", "isbn_10": ["031704611X"], "publish_date": "June 1979", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:48:44.928726"}, "authors": [{"key": "/authors/OL3435104A"}], "latest_revision": 2, "works": [{"key": "/works/OL9398642W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10447702M 7 2021-07-22T16:13:51.888001 {"publishers": ["Amereon Ltd"], "languages": [{"key": "/languages/eng"}], "source_records": ["amazon:0317281941"], "title": "The Dangerous Dandy", "identifiers": {"goodreads": ["1705522"]}, "physical_format": "Hardcover", "publish_date": "September 1988", "key": "/books/OL10447702M", "authors": [{"key": "/authors/OL22022A"}], "works": [{"key": "/works/OL137158W"}], "type": {"key": "/type/edition"}, "subjects": ["Fiction"], "isbn_10": ["0317281941"], "isbn_13": ["9780317281941"], "classifications": {}, "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-07-22T16:13:51.888001"}}
+/type/edition /books/OL10447830M 2 2011-04-27T22:29:33.057825 {"publishers": ["Free Press"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T22:29:33.057825"}, "title": "Acts of War", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780317314991"], "isbn_10": ["0317314998"], "publish_date": "April 1986", "key": "/books/OL10447830M", "latest_revision": 2, "oclc_numbers": ["234283490"], "type": {"key": "/type/edition"}, "subjects": ["Soldiers", "War"], "revision": 2}
+/type/edition /books/OL10448079M 2 2009-12-15T00:48:46.222886 {"publishers": ["Longwood Pr Ltd"], "subtitle": "The Critical Voice", "title": "Byron", "isbn_10": ["031740038X"], "isbn_13": ["9780317400380"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:48:46.222886"}, "publish_date": "June 1973", "key": "/books/OL10448079M", "authors": [{"key": "/authors/OL3259762A"}], "latest_revision": 2, "works": [{"key": "/works/OL9192946W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10448749M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["August House Pub Inc"], "title": "Southern Folk Dance", "isbn_13": ["9780317596571"], "isbn_10": ["0317596578"], "publish_date": "September 1989", "key": "/books/OL10448749M", "type": {"key": "/type/edition"}, "subjects": ["Dance - Folk", "Performing Arts", "Dance"], "revision": 1}
+/type/edition /books/OL1044894M 4 2020-11-17T22:54:58.333053 {"other_titles": ["Do. Francischini Curtii, Iunioris, Repertorium."], "publishers": ["Sumptibus ... Vincentij de Portonarijs de Tridino de Monte Ferrato ac Iacobi Giunte, Florentini, excusa ... Lugduni apud Ioannem Moylin al[ia]s de Cambray"], "subtitle": "... Francischini Curtij, Iunioris, auidissima optatissimaq[ue] ... consilia nunc primum panduntur : vna cum ... repertorio alphabetica serie curiose congesto ...", "lc_classifications": ["KJA2150.C678 A2 1534"], "latest_revision": 4, "key": "/books/OL1044894M", "authors": [{"key": "/authors/OL560414A"}], "publish_places": ["[Lyon]"], "contributions": ["Consilia Collection (Library of Congress)"], "pagination": "95, [1], 125 leaves (the 96th leaf blank) ;", "source_records": ["marc:marc_records_scriblio_net/part24.dat:12314960:1895", "marc:marc_loc_updates/v36.i38.records.utf8:5282078:1887", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:76638312:1885"], "title": "Consilia Do. Francischini Curtij, Iunioris", "lccn": ["93244365"], "notes": {"type": "/type/text", "value": "Pazzaglini & Hawks. Consilia, C-97\nThe consilia themselves are paged, signed, and part-numbered as a bipartite work (though the 2nd part has only caption title), perhaps reflecting previous publication in 2 volumes. The separately paged and signed index to the whole has a t.p. reading: Do. Francischini Curtij, Iunioris, Repertorium : repertorium, de nouo excusum, hactenus impressioni no[n] datum, iuxta originale propriu[m] libratu[m] & reuisum, Consiliorum Domini Francischini Curtij, Iunioris ... super prima & secunda partibus ...\nWith the device of Vincent de Portunaire on both title pages.\nSignatures (consilia): a-q\u2076 A-X\u2076. X6 blank?; wanting in LC copy. Signatures (index): A-C\u2076 D\u2074.\nLC copy bound in 1 v., the index first."}, "number_of_pages": 125, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/lat"}], "subjects": ["Roman law", "Consilia"], "publish_date": "1534", "publish_country": "fr ", "last_modified": {"type": "/type/datetime", "value": "2020-11-17T22:54:58.333053"}, "work_title": ["Consilia. Pars 1-2"], "works": [{"key": "/works/OL18331516W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10448960M 3 2010-08-17T02:14:10.840104 {"publishers": ["Van Nostrand Reinhold"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-08-17T02:14:10.840104"}, "title": "Aj Handbook of Building Enclosure", "identifiers": {"librarything": ["5736005"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780317637533"], "isbn_10": ["0317637533"], "publish_date": "December 1987", "key": "/books/OL10448960M", "authors": [{"key": "/authors/OL3435648A"}], "latest_revision": 3, "works": [{"key": "/works/OL9399345W"}], "type": {"key": "/type/edition"}, "subjects": ["Architecture"], "revision": 3}
+/type/edition /books/OL10449217M 4 2010-04-24T18:03:03.597284 {"publishers": ["Mingei Intl Museum of World"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:03:03.597284"}, "title": "Cultural Mosaic", "identifiers": {"goodreads": ["6031033"]}, "isbn_13": ["9780317680126"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0317680129"], "publish_date": "June 1978", "key": "/books/OL10449217M", "authors": [{"key": "/authors/OL932681A"}], "latest_revision": 4, "works": [{"key": "/works/OL4585994W"}], "type": {"key": "/type/edition"}, "subjects": ["Art"], "revision": 4}
+/type/edition /books/OL10449434M 2 2009-12-08T04:58:23.672678 {"physical_format": "Paperback", "title": "The Consumer Culture and the American Home, 1890-1930", "isbn_10": ["0317938495"], "publishers": ["Mcfaddin Ward House"], "isbn_13": ["9780317938494"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-08T04:58:23.672678"}, "publish_date": "July 1990", "key": "/books/OL10449434M", "authors": [{"key": "/authors/OL39005A"}], "latest_revision": 2, "subjects": ["Business/Economics"], "works": [{"key": "/works/OL548145W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10450730M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Consumer Energy Council of"], "title": "Compendium of Utility-Sponsored Energy Efficiency Rebate Programs", "isbn_13": ["9780318238647"], "isbn_10": ["0318238640"], "publish_date": "July 1987", "key": "/books/OL10450730M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10450860M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["American Law Institute Publishers"], "number_of_pages": 214, "isbn_13": ["9780318359892"], "isbn_10": ["0318359898"], "publish_date": "August 1988", "key": "/books/OL10450860M", "title": "The Practical Lawyer's Manual on Labor Law (Practical Lawyer's Manual on Labor Law)", "type": {"key": "/type/edition"}, "subjects": ["Labor & Employment", "Law", "Legal Reference / Law Profession"], "revision": 1}
+/type/edition /books/OL1045097M 4 2020-11-17T22:57:54.485857 {"publishers": ["Municipalidad del Qosqo"], "number_of_pages": 354, "subtitle": "la investigacio\u0301n y conservacio\u0301n del monumento arqueolo\u0301gico despue\u0301s de Hiram Bingham", "subject_place": ["Machu Picchu Site (Peru)", "Peru", "Machu Picchu Site."], "lc_classifications": ["F3429.1.M3 V35 1992"], "latest_revision": 4, "key": "/books/OL1045097M", "authors": [{"key": "/authors/OL560660A"}], "publish_places": ["Qosqo [i.e. Cuzco]"], "contributions": ["Gibaja Oviedo, Arminda."], "languages": [{"key": "/languages/spa"}], "pagination": "354 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:76857677:926"], "title": "Machu Picchu", "lccn": ["93244659"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 329-354)."}, "identifiers": {"librarything": ["2311457"]}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "edition_name": "1. ed.", "subjects": ["Inca architecture -- Conservation and restoration -- Peru -- Machu Picchu Site.", "Archaeological surveying -- Peru -- Machu Picchu Site.", "Machu Picchu Site (Peru)"], "publish_date": "1992", "publish_country": "pe ", "last_modified": {"type": "/type/datetime", "value": "2020-11-17T22:57:54.485857"}, "by_statement": "Alfredo Valencia Zegarra, Arminda Gibaja Oviedo.", "works": [{"key": "/works/OL3413361W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10450995M 3 2011-03-29T07:26:28.476786 {"publishers": ["Macmillan Publishing Company"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-03-29T07:26:28.476786"}, "title": "J. K. Lasser's Retirement Plan Handbook, 1989-1990", "number_of_pages": 272, "isbn_13": ["9780318373560"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0318373564"], "publish_date": "December 1988", "key": "/books/OL10450995M", "authors": [{"key": "/authors/OL915730A"}], "latest_revision": 3, "works": [{"key": "/works/OL4542139W"}], "type": {"key": "/type/edition"}, "subjects": ["Gerontology", "Sociology"], "revision": 3}
+/type/edition /books/OL10451025M 2 2009-12-15T00:48:47.264347 {"publishers": ["Prentice Hall Trade"], "title": "Stratigraphic Evolution of Clastic Depositional Sequences", "isbn_10": ["0318378604"], "isbn_13": ["9780318378602"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:48:47.264347"}, "publish_date": "March 1989", "key": "/books/OL10451025M", "authors": [{"key": "/authors/OL516247A"}], "latest_revision": 2, "subjects": ["Science/Mathematics"], "works": [{"key": "/works/OL3202001W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10451033M 2 2009-12-15T00:48:47.264347 {"physical_format": "Paperback", "subtitle": "Understanding the Market", "publishers": ["International City/County Management Associat"], "isbn_10": ["0318398672"], "number_of_pages": 102, "isbn_13": ["9780318398679"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:48:47.264347"}, "publish_date": "December 1986", "latest_revision": 2, "key": "/books/OL10451033M", "authors": [{"key": "/authors/OL3436355A"}], "title": "Public Officials Liability Insurance", "subjects": ["Public Affairs & Administration", "Politics - Current Events"], "works": [{"key": "/works/OL9400209W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10451625M 2 2010-03-14T17:49:29.568481 {"publishers": ["Ordnance Survey"], "key": "/books/OL10451625M", "title": "Street Atlas - Cheshire (Street Atlases)", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780319005620"], "physical_format": "Hardcover", "isbn_10": ["0319005623"], "publish_date": "December 31, 1995", "last_modified": {"type": "/type/datetime", "value": "2010-03-14T17:49:29.568481"}, "authors": [{"key": "/authors/OL2646211A"}, {"key": "/authors/OL2670727A"}], "latest_revision": 2, "subjects": ["Travel / road maps & atlases", "United Kingdom, Great Britain"], "works": [{"key": "/works/OL14941359W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10451630M 3 2012-06-24T07:03:08.315376 {"publishers": ["Ordnance Survey"], "number_of_pages": 306, "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2012-06-24T07:03:08.315376"}, "latest_revision": 3, "key": "/books/OL10451630M", "authors": [{"key": "/authors/OL2646211A"}, {"key": "/authors/OL2670727A"}], "subjects": ["Travel / road maps & atlases", "United Kingdom, Great Britain"], "edition_name": "Pocket Edition", "classifications": {}, "title": "Street Atlas - Derbyshire", "notes": {"type": "/type/text", "value": "Street Atlases\r\nPocket Edition"}, "identifiers": {}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780319005675"], "isbn_10": ["0319005674"], "publish_date": "December 31, 1995", "works": [{"key": "/works/OL14941317W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL1045216M 5 2020-11-17T22:59:27.768230 {"publishers": ["Sceptre"], "identifiers": {"goodreads": ["3990017"]}, "lc_classifications": ["PR6066.R325 P76 1993"], "latest_revision": 5, "key": "/books/OL1045216M", "authors": [{"key": "/authors/OL422055A"}], "publish_places": ["London"], "languages": [{"key": "/languages/eng"}], "pagination": "142 p. ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:76984754:511"], "title": "Proto Zoe\u0308", "dewey_decimal_class": ["823/.914"], "number_of_pages": 142, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "edition_name": "Sceptre ed.", "lccn": ["93244847"], "isbn_10": ["0340581255"], "publish_date": "1993", "publish_country": "enk", "last_modified": {"type": "/type/datetime", "value": "2020-11-17T22:59:27.768230"}, "by_statement": "Amanda Prantera.", "oclc_numbers": ["31412550"], "works": [{"key": "/works/OL2827228W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10452216M 2 2009-12-15T00:48:48.502199 {"publishers": ["Ordnance Survey"], "title": "Kelso (Pathfinder Maps)", "isbn_10": ["0319104621"], "isbn_13": ["9780319104620"], "physical_format": "Map", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:48:48.502199"}, "publish_date": "December 1978", "key": "/books/OL10452216M", "authors": [{"key": "/authors/OL2646211A"}], "latest_revision": 2, "subjects": ["Lowland Scotland & Borders", "Travel / road maps & atlases"], "works": [{"key": "/works/OL7935099W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10452272M 2 2009-12-15T00:48:48.502199 {"publishers": ["Ordnance Survey"], "title": "Newton Stewart (Pathfinder Maps)", "isbn_10": ["0319105407"], "isbn_13": ["9780319105405"], "physical_format": "Map", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:48:48.502199"}, "publish_date": "December 1983", "key": "/books/OL10452272M", "authors": [{"key": "/authors/OL2646211A"}], "latest_revision": 2, "subjects": ["Lowland Scotland & Borders", "Travel / road maps & atlases"], "works": [{"key": "/works/OL7935332W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10452315M 2 2009-12-15T00:48:48.502199 {"publishers": ["Ordnance Survey"], "title": "Bedale and Pickhill (Pathfinder Maps)", "isbn_10": ["0319106314"], "isbn_13": ["9780319106310"], "physical_format": "Map", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:48:48.502199"}, "publish_date": "December 1983", "key": "/books/OL10452315M", "authors": [{"key": "/authors/OL2646211A"}], "latest_revision": 2, "subjects": ["Travel / road maps & atlases", "Yorkshire"], "works": [{"key": "/works/OL7934677W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10452670M 3 2011-04-29T18:15:18.553115 {"publishers": ["Ordnance Survey"], "physical_format": "Map", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T18:15:18.553115"}, "title": "Torquay and Dawlish (Explorer Maps)", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "edition_name": "New Ed edition", "isbn_13": ["9780319118771"], "isbn_10": ["0319118770"], "publish_date": "September 1999", "key": "/books/OL10452670M", "authors": [{"key": "/authors/OL2646211A"}], "latest_revision": 3, "oclc_numbers": ["642454468"], "works": [{"key": "/works/OL7936048W"}], "type": {"key": "/type/edition"}, "subjects": ["Devon", "Maps, charts & atlases", "Travel / road maps & atlases"], "revision": 3}
+/type/edition /books/OL10452957M 4 2019-03-13T14:14:58.532469 {"publishers": ["Ordnance Survey"], "physical_format": "Map", "source_records": ["marc:talis_openlibrary_contribution/talis-openlibrary-contribution.mrc:1594135828:468"], "title": "Canterbury and East Kent, Dover and Margate (Landranger Maps)", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2019-03-13T14:14:58.532469"}, "edition_name": "2Rev Ed edition", "isbn_13": ["9780319123270"], "isbn_10": ["0319123278"], "publish_date": "January 1998", "key": "/books/OL10452957M", "authors": [{"key": "/authors/OL2646211A"}], "latest_revision": 4, "oclc_numbers": ["656142514"], "works": [{"key": "/works/OL7936013W"}], "type": {"key": "/type/edition"}, "subjects": ["Kent", "Maps, charts & atlases", "Travel / road maps & atlases"], "revision": 4}
+/type/edition /books/OL10453083M 2 2009-12-15T00:48:49.502232 {"physical_format": "Map", "title": "West London, Rickmansworth and Staines (Landranger Maps)", "isbn_10": ["031912522X"], "publishers": ["Ordnance Survey"], "edition_name": "4New Ed edition", "isbn_13": ["9780319125229"], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:48:49.502232"}, "publish_date": "May 3, 2001", "key": "/books/OL10453083M", "authors": [{"key": "/authors/OL2646211A"}], "latest_revision": 2, "subjects": ["London, Greater London", "Maps, charts & atlases", "Travel / road maps & atlases"], "works": [{"key": "/works/OL7936053W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10453109M 2 2009-12-15T00:48:49.502232 {"physical_format": "Map", "title": "Travelmaster (Travelmaster S.)", "isbn_10": ["0319130290"], "publishers": ["Ordnance Survey"], "edition_name": "Rev Ed edition", "isbn_13": ["9780319130292"], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:48:49.502232"}, "publish_date": "March 1997", "key": "/books/OL10453109M", "authors": [{"key": "/authors/OL2646211A"}], "latest_revision": 2, "subjects": ["Maps, charts & atlases", "South Wales", "South West England", "Travel / road maps & atlases"], "works": [{"key": "/works/OL7936093W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10454083M 3 2010-04-13T06:01:15.930385 {"publishers": ["Ordnance Survey"], "physical_format": "Map", "key": "/books/OL10454083M", "title": "Denbigh (Pathfinder Maps)", "covers": [2381060], "isbn_13": ["9780319207727"], "isbn_10": ["0319207722"], "publish_date": "December 1990", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:01:15.930385"}, "authors": [{"key": "/authors/OL2646211A"}], "latest_revision": 3, "works": [{"key": "/works/OL7934866W"}], "type": {"key": "/type/edition"}, "subjects": ["North Wales", "Travel / road maps & atlases"], "revision": 3}
+/type/edition /books/OL10454084M 3 2010-04-13T06:01:15.930385 {"publishers": ["Ordnance Survey"], "physical_format": "Map", "key": "/books/OL10454084M", "title": "Mold and Chester (West) (Pathfinder Maps)", "covers": [2381061], "isbn_13": ["9780319207734"], "isbn_10": ["0319207730"], "publish_date": "December 1991", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:01:15.930385"}, "authors": [{"key": "/authors/OL2646211A"}], "latest_revision": 3, "works": [{"key": "/works/OL7935296W"}], "type": {"key": "/type/edition"}, "subjects": ["Cheshire", "North Wales", "Travel / road maps & atlases"], "revision": 3}
+/type/edition /books/OL10454326M 3 2010-04-13T06:01:15.930385 {"publishers": ["Ordnance Survey"], "physical_format": "Map", "key": "/books/OL10454326M", "title": "Pathfinder Maps (Pathfinder Maps)", "covers": [2381237], "isbn_13": ["9780319210291"], "isbn_10": ["0319210294"], "publish_date": "December 1988", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:01:15.930385"}, "authors": [{"key": "/authors/OL2646211A"}], "latest_revision": 3, "works": [{"key": "/works/OL7936097W"}], "type": {"key": "/type/edition"}, "subjects": ["Travel / road maps & atlases", "United Kingdom, Great Britain"], "revision": 3}
+/type/edition /books/OL1045460M 5 2020-11-17T23:02:58.760729 {"publishers": ["Editorial Praxis"], "description": {"type": "/type/text", "value": "En este Sartal del tiempo el poeta Daniel Olivares Viniegra enhebra sus im\u00e1genes, alegra sus soledades y comunica la luz de sus emociones.\r\n En este poemario hay collares o sartas en los que el poeta ha logrado engarzar las piedras preciosas, los jades, las obsidianas (sin despreciar los guijarros) de las palabras, para darnos las luces y las sombras, los fulgores y los brillos, el humo y las brasas, las llamas y las cenizas del tiempo, de su tiempo, de este tiempo fausto e infausto.\r\n Sartal del tiempo es ya un fiel testimonio del oficio de este joven maestro.\r\n Otto-Ra\u00fal Gonz\u00e1lez"}, "series": ["El Cristal fugitivo ;", "17", "Coleccio\u0301n El cristal fugitivo ;", "17."], "covers": [3369004, 3369003], "lc_classifications": ["PQ7298.25.L515 S27 1992"], "latest_revision": 5, "key": "/books/OL1045460M", "authors": [{"key": "/authors/OL85851A"}], "publish_places": ["Me\u0301xico, D.F"], "languages": [{"key": "/languages/spa"}], "pagination": "64 p. ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:77248679:629"], "title": "Sartal del tiempo", "dewey_decimal_class": ["861"], "number_of_pages": 64, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "edition_name": "1. ed.", "lccn": ["93245210"], "isbn_10": ["9686509305"], "publish_date": "1992", "publish_country": "mx ", "last_modified": {"type": "/type/datetime", "value": "2020-11-17T23:02:58.760729"}, "by_statement": "Daniel Olivares Viniegra.", "works": [{"key": "/works/OL956481W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10454800M 5 2011-04-27T09:08:05.787822 {"publishers": ["Ordnance Survey"], "weight": "5 ounces", "covers": [2381397], "physical_format": "Map", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T09:08:05.787822"}, "latest_revision": 5, "key": "/books/OL10454800M", "authors": [{"key": "/authors/OL2646211A"}], "subjects": ["Travel / road maps & atlases", "Walking, hiking, trekking", "Gloucestershire", "Somerset", "Travel"], "edition_name": "Rev Ed edition", "title": "Thornbury, Dursley and Yate (Explorer Maps)", "identifiers": {"librarything": ["9606136"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780319217917"], "isbn_10": ["0319217914"], "publish_date": "March 1998", "oclc_numbers": ["61257666"], "works": [{"key": "/works/OL7935620W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.4 x 5 x 0.9 inches", "revision": 5}
+/type/edition /books/OL10455925M 6 2011-06-08T09:41:15.901540 {"publishers": ["Ordnance Survey"], "weight": "4.2 ounces", "covers": [2382208], "physical_format": "Map", "last_modified": {"type": "/type/datetime", "value": "2011-06-08T09:41:15.901540"}, "latest_revision": 6, "key": "/books/OL10455925M", "authors": [{"key": "/authors/OL2646211A"}], "subjects": ["Travel / road maps & atlases", "Walking, hiking, trekking", "Hampshire", "Science/Mathematics"], "edition_name": "N.e.of 2r.e. edition", "classifications": {}, "title": "New Forest", "notes": {"type": "/type/text", "value": "Explorer Maps"}, "identifiers": {"librarything": ["791296"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780319236161"], "isbn_10": ["0319236161"], "publish_date": "August 8, 2005", "oclc_numbers": ["61243874"], "works": [{"key": "/works/OL7933931W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.3 x 5.1 x 0.7 inches", "revision": 6}
+/type/edition /books/OL10456045M 5 2012-07-08T18:18:15.935305 {"publishers": ["Ordnance Survey"], "classifications": {}, "last_modified": {"type": "/type/datetime", "value": "2012-07-08T18:18:15.935305"}, "title": "Greater London Including M25", "series": ["Touring Maps"], "identifiers": {"librarything": ["1236038"]}, "isbn_13": ["9780319250396"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Map", "isbn_10": ["0319250393"], "publish_date": "April 4, 2002", "key": "/books/OL10456045M", "authors": [{"key": "/authors/OL2646211A"}], "latest_revision": 5, "oclc_numbers": ["50391879"], "works": [{"key": "/works/OL7933237W"}], "type": {"key": "/type/edition"}, "subjects": ["Travel / road maps & atlases", "London, Greater London"], "revision": 5}
+/type/edition /books/OL10456287M 3 2010-12-21T00:49:22.486394 {"publishers": ["Ordnance Survey"], "subtitle": "Stafford & Telford, Ironbridge", "last_modified": {"type": "/type/datetime", "value": "2010-12-21T00:49:22.486394"}, "title": "Landranger Map 0127", "notes": {"type": "/type/text", "value": "OS Landranger Map Series"}, "identifiers": {}, "isbn_13": ["9780319321270"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Map", "isbn_10": ["0319321274"], "latest_revision": 3, "key": "/books/OL10456287M", "authors": [{"key": "/authors/OL2646211A"}], "classifications": {}, "works": [{"key": "/works/OL7933514W"}], "type": {"key": "/type/edition"}, "subjects": ["Cheshire", "Shropshire", "Staffordshire", "Warwickshire", "Travel / road maps & atlases"], "revision": 3}
+/type/edition /books/OL10456303M 3 2010-12-21T00:46:07.212164 {"publishers": ["Ordnance Survey"], "subtitle": "Worcester & the Malverns, Evesham & Tewkesbury", "last_modified": {"type": "/type/datetime", "value": "2010-12-21T00:46:07.212164"}, "title": "Landranger Map 0150", "notes": {"type": "/type/text", "value": "OS Landranger Map Series"}, "identifiers": {}, "isbn_13": ["9780319321508"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Map", "isbn_10": ["0319321509"], "latest_revision": 3, "key": "/books/OL10456303M", "authors": [{"key": "/authors/OL2646211A"}], "classifications": {}, "works": [{"key": "/works/OL7933536W"}], "type": {"key": "/type/edition"}, "subjects": ["Gloucestershire", "Midlands", "Travel / road maps & atlases"], "revision": 3}
+/type/edition /books/OL10457238M 4 2010-04-24T18:03:03.597284 {"publishers": ["French and European Publishing, Inc."], "weight": "5.6 ounces", "title": "Le Livre de ma Mere / 3 audio compact discs", "identifiers": {"goodreads": ["435594"]}, "isbn_13": ["9780320039676"], "physical_format": "Audio CD", "authors": [{"key": "/authors/OL2657689A"}], "isbn_10": ["0320039676"], "publish_date": "January 1, 2000", "key": "/books/OL10457238M", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:03:03.597284"}, "latest_revision": 4, "works": [{"key": "/works/OL7973611W"}], "type": {"key": "/type/edition"}, "subjects": ["fiction"], "physical_dimensions": "5.6 x 4.9 x 0.7 inches", "revision": 4}
+/type/edition /books/OL10457680M 4 2010-04-24T18:03:03.597284 {"publishers": ["French & European Pubns"], "physical_format": "Paperback", "weight": "7.2 ounces", "title": "Entretiens Avec Michel Butor", "identifiers": {"goodreads": ["1458299"]}, "isbn_13": ["9780320053085"], "languages": [{"key": "/languages/fre"}], "authors": [{"key": "/authors/OL476964A"}], "isbn_10": ["0320053083"], "publish_date": "June 1965", "key": "/books/OL10457680M", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:03:03.597284"}, "latest_revision": 4, "works": [{"key": "/works/OL3066153W"}], "type": {"key": "/type/edition"}, "subjects": ["European - French", "Literary", "Literary Criticism"], "physical_dimensions": "7.2 x 4.7 x 0.8 inches", "revision": 4}
+/type/edition /books/OL10457762M 2 2009-12-15T00:48:53.589927 {"physical_format": "Paperback", "subtitle": "La Realite Du Reve", "title": "Creation Et Destinee", "isbn_10": ["0320054047"], "publishers": ["French & European Pubns"], "isbn_13": ["9780320054044"], "languages": [{"key": "/languages/fre"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:48:53.589927"}, "publish_date": "June 1965", "key": "/books/OL10457762M", "authors": [{"key": "/authors/OL3112500A"}], "latest_revision": 2, "subjects": ["European - French", "Literary", "Literary Criticism"], "works": [{"key": "/works/OL8968433W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL1045784M 6 2020-11-17T23:08:34.894347 {"publishers": ["Institute of International Relations, National Chengchi University"], "identifiers": {"goodreads": ["6251385"], "librarything": ["2068802"]}, "subtitle": "the Chinese use of force, 1840-1980", "isbn_10": ["9579368236"], "subject_place": ["China"], "covers": [3868713], "lc_classifications": ["DS755.2 .A34 1993"], "latest_revision": 6, "key": "/books/OL1045784M", "authors": [{"key": "/authors/OL561005A"}], "publish_places": ["Taipei, Taiwan, Republic of China"], "contributions": ["Shi, Zhiyu, 1958-"], "subject_time": ["19th century.", "20th century."], "pagination": "261 p. ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:77670992:929"], "title": "Symbolic war", "lccn": ["93245818"], "notes": {"type": "/type/text", "value": "Includes bibliographical references and index."}, "number_of_pages": 261, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "subjects": ["China -- History -- 19th century.", "China -- History -- 20th century.", "China -- History, Military."], "publish_date": "1993", "publish_country": "ch ", "last_modified": {"type": "/type/datetime", "value": "2020-11-17T23:08:34.894347"}, "series": ["Institute of International Relations English monograph series ;", "43"], "by_statement": "Jonathan R. Adelman, Chih-yu Shih.", "works": [{"key": "/works/OL3414491W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL10458002M 4 2010-04-24T18:03:03.597284 {"publishers": ["French & European Pubns"], "physical_format": "Paperback", "subtitle": "Grand Europeen", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:03:03.597284"}, "title": "Stefan Zweig", "identifiers": {"goodreads": ["2059040"]}, "isbn_13": ["9780320056673"], "languages": [{"key": "/languages/fre"}], "isbn_10": ["0320056678"], "publish_date": "June 30, 1945", "key": "/books/OL10458002M", "authors": [{"key": "/authors/OL2865473A"}], "latest_revision": 4, "works": [{"key": "/works/OL8551915W"}], "type": {"key": "/type/edition"}, "subjects": ["European - French", "Literary", "Literary Criticism"], "revision": 4}
+/type/edition /books/OL10458752M 6 2022-12-03T23:59:00.255945 {"publishers": ["French & European Pubns"], "weight": "11.2 ounces", "physical_format": "Hardcover", "key": "/books/OL10458752M", "authors": [{"key": "/authors/OL34330A"}], "subjects": ["General", "Juvenile Fiction", "Children: Kindergarten"], "isbn_13": ["9780320067051"], "classifications": {}, "title": "Kangourous Ont-ils Une Maman?", "translation_of": "Does a Kangaroo Have a Mother, Too?", "identifiers": {"goodreads": ["809200"]}, "languages": [{"key": "/languages/fre"}], "isbn_10": ["032006705X"], "publish_date": "June 30, 2001", "works": [{"key": "/works/OL53032W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.6 x 8.9 x 0.3 inches", "source_records": ["amazon:032006705X"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-03T23:59:00.255945"}}
+/type/edition /books/OL1045878M 6 2020-11-17T23:10:24.290103 {"publishers": ["U.S. G.P.O.", "For sale by the U.S. G.P.O., Supt. of Docs., Congressional Sales Office"], "number_of_pages": 133, "subtitle": "hearing before the Subcommittee on Patents, Copyrights, and Trademarks of the Committee on the Judiciary, United States Senate, One Hundred Second Congress, second session, on S. 1805, a bill to amend Title 17, United States Code, to clarify news reporting monitoring as a fair use exception to the exclusive rights of a copyright owner, June 16, 1992.", "isbn_10": ["0160413877"], "subject_place": ["United States."], "covers": [4583311, 3868686], "lc_classifications": ["KF26 .J863 1992e"], "latest_revision": 6, "key": "/books/OL1045878M", "authors": [{"key": "/authors/OL342694A"}], "publish_places": ["Washington"], "pagination": "iii, 133 p. ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:77830793:1775"], "title": "News monitoring", "dewey_decimal_class": ["346.7304/82", "347.306482"], "notes": {"type": "/type/text", "value": "Includes bibliographical references.\nDistributed to some depository libraries in microfiche.\nShipping list no.: 93-0541-P.\n\"Serial no. J-102-68.\""}, "identifiers": {"goodreads": ["5634237"]}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["93245996"], "subjects": ["Fair use (Copyright) -- United States.", "Copyright infringement -- United States.", "Copyright and electronic data processing -- United States.", "Reporters and reporting -- United States."], "publish_date": "1993", "publish_country": "dcu", "last_modified": {"type": "/type/datetime", "value": "2020-11-17T23:10:24.290103"}, "series": ["S. hrg. ;", "102-1118"], "oclc_numbers": ["28911793"], "works": [{"key": "/works/OL2463574W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL10459000M 3 2020-08-23T12:18:41.006310 {"publishers": ["Longman"], "subtitle": "A New Approach", "last_modified": {"type": "/type/datetime", "value": "2020-08-23T12:18:41.006310"}, "source_records": ["bwb:9780321014207"], "title": "Business Statistics", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780321014207"], "physical_format": "Hardcover", "isbn_10": ["0321014200"], "publish_date": "April 30, 2001", "key": "/books/OL10459000M", "authors": [{"key": "/authors/OL3437341A"}], "latest_revision": 3, "works": [{"key": "/works/OL9401979W"}], "type": {"key": "/type/edition"}, "subjects": ["Business mathematics & systems", "Business mathematics"], "revision": 3}
+/type/edition /books/OL1045914M 4 2020-11-17T23:10:58.711594 {"publishers": ["Nicolai"], "number_of_pages": 88, "subtitle": "ein Bezirk von Berlin", "isbn_10": ["3875844300"], "subject_place": ["Ko\u0308penick (Berlin, Germany)", "Berlin (Germany)"], "lc_classifications": ["DD883.K67 H36 1993"], "latest_revision": 4, "key": "/books/OL1045914M", "authors": [{"key": "/authors/OL1239660A"}], "publish_places": ["Berlin"], "contributions": ["Sprink, Claus-Dieter, 1954-"], "pagination": "88 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:77884739:807"], "title": "Ko\u0308penick", "dewey_decimal_class": ["943.1/552"], "identifiers": {"goodreads": ["4600500"]}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/ger"}], "lccn": ["93246054"], "subjects": ["Ko\u0308penick (Berlin, Germany) -- Pictorial works.", "Ko\u0308penick (Berlin, Germany) -- Description and travel.", "Berlin (Germany) -- Pictorial works."], "publish_date": "1993", "publish_country": "gw ", "last_modified": {"type": "/type/datetime", "value": "2020-11-17T23:10:58.711594"}, "by_statement": "fotografiert von Manfred Hamm ; Text von Claus-Dieter Sprink.", "oclc_numbers": ["29703036"], "works": [{"key": "/works/OL23524089W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10459164M 3 2011-02-28T05:46:43.803824 {"publishers": ["Longman"], "classifications": {}, "last_modified": {"type": "/type/datetime", "value": "2011-02-28T05:46:43.803824"}, "title": "Instructors Manual to Contemporary Reader", "notes": {"type": "/type/text", "value": "5e"}, "identifiers": {}, "isbn_13": ["9780321027467"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0321027469"], "publish_date": "February 10, 2000", "key": "/books/OL10459164M", "authors": [{"key": "/authors/OL3437387A"}], "latest_revision": 3, "works": [{"key": "/works/OL9402025W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10459241M 5 2022-12-13T07:35:05.449572 {"title": "Instructors Manual to Psychology and Life 15e", "authors": [{"key": "/authors/OL2672895A"}, {"key": "/authors/OL3437393A"}], "publish_date": "August 19, 1999", "publishers": ["Longman"], "physical_format": "Paperback", "isbn_13": ["9780321035042"], "isbn_10": ["0321035046"], "oclc_numbers": ["50680181"], "type": {"key": "/type/edition"}, "ocaid": "instructorsmanua0000boyd", "source_records": ["ia:instructorsmanua0000boyd", "amazon:0321035046"], "key": "/books/OL10459241M", "works": [{"key": "/works/OL31209905W"}], "covers": [13055518], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-13T07:35:05.449572"}}
+/type/edition /books/OL10459369M 2 2011-04-26T09:37:39.913687 {"publishers": ["Addison Wesley/Pearson Education"], "subtitle": "Conceptual Physics 9e (Conceptual Physics for High School)", "last_modified": {"type": "/type/datetime", "value": "2011-04-26T09:37:39.913687"}, "title": "Instructor's Manual", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780321052049"], "edition_name": "9th edition", "physical_format": "Paperback", "isbn_10": ["0321052048"], "publish_date": "2002", "key": "/books/OL10459369M", "latest_revision": 2, "oclc_numbers": ["229955204"], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10459405M 4 2020-08-19T23:58:52.229139 {"publishers": ["Addison-Wesley"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2020-08-19T23:58:52.229139"}, "source_records": ["bwb:9780321058546"], "title": "Ecology:the Experimental Analysis of Distribution and Abundance", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780321058546"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0321058542"], "publish_date": "March 28, 2001", "key": "/books/OL10459405M", "authors": [{"key": "/authors/OL2735594A"}], "latest_revision": 4, "oclc_numbers": ["171551169"], "works": [{"key": "/works/OL8224375W"}], "type": {"key": "/type/edition"}, "subjects": ["Law"], "revision": 4}
+/type/edition /books/OL10459564M 3 2020-08-18T22:23:57.439336 {"publishers": ["Longman"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2020-08-18T22:23:57.439336"}, "source_records": ["bwb:9780321082206"], "title": "Study Guide", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780321082206"], "edition_name": "8Rev Ed edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0321082206"], "publish_date": "March 4, 2002", "key": "/books/OL10459564M", "authors": [{"key": "/authors/OL3385189A"}], "latest_revision": 3, "works": [{"key": "/works/OL9340014W"}], "type": {"key": "/type/edition"}, "subjects": ["The Arts: General Issues"], "revision": 3}
+/type/edition /books/OL10460009M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "title": "Total Fitness and Wellness / with CD-Package", "isbn_13": ["9780321166685"], "isbn_10": ["032116668X"], "key": "/books/OL10460009M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10460689M 10 2022-11-17T13:44:17.116135 {"publishers": ["Adobe Press"], "number_of_pages": 568, "weight": "2.3 pounds", "covers": [2383648, 193822], "physical_format": "Paperback", "key": "/books/OL10460689M", "authors": [{"key": "/authors/OL2669858A"}], "ocaid": "isbn_9780321356475", "subjects": ["Photoshop", "Computers", "Computers - Desktop Publishing", "Computer Books: General", "Computer Graphics - Photoshop", "Computers / Computer Graphics / General", "Computer Animation", "Computer Graphics - General", "Computer graphics", "Digital techniques", "Image processing", "Photography"], "edition_name": "Pap/Dvdr edition", "languages": [{"key": "/languages/eng"}], "source_records": ["ia:isbn_9780321356475", "bwb:9780321356475"], "title": "Adobe Photoshop Elements 3.0 and Premiere Elements Classroom in a Book Collection (Classroom in a Book)", "identifiers": {"librarything": ["341422"], "goodreads": ["2032305"]}, "isbn_13": ["9780321356475"], "isbn_10": ["0321356470"], "publish_date": "February 12, 2005", "works": [{"key": "/works/OL8021504W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.1 x 7.3 x 1.2 inches", "lc_classifications": ["T385"], "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T13:44:17.116135"}}
+/type/edition /books/OL10460876M 2 2009-12-15T00:48:55.925277 {"publishers": ["Longman"], "key": "/books/OL10460876M", "title": "Solutions Manual to Mathematical Models and Analysis", "isbn_13": ["9780321407122"], "physical_format": "Paperback", "isbn_10": ["0321407121"], "publish_date": "April 30, 2001", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:48:55.925277"}, "authors": [{"key": "/authors/OL3437749A"}], "latest_revision": 2, "works": [{"key": "/works/OL9402282W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10460957M 7 2022-08-04T19:47:04.100378 {"publishers": ["Addison Wesley"], "number_of_pages": 700, "weight": "2.6 pounds", "covers": [2383802], "physical_format": "Hardcover", "key": "/books/OL10460957M", "authors": [{"key": "/authors/OL586858A"}, {"key": "/authors/OL949065A"}, {"key": "/authors/OL452835A"}, {"key": "/authors/OL384765A"}], "subjects": ["Compilers & interpreters", "Computers", "Computers - General Information", "Computer Books: Internet General", "Computer Architecture - General", "Computers / Computer Architecture", "Internet - General"], "isbn_13": ["9780321428905"], "source_records": ["bwb:9780321428905", "amazon:0321428900"], "title": "Compilers 1/e plus Selected Online Chapters from Compilers 2/e Update Package", "identifiers": {"librarything": ["5699832"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0321428900"], "publish_date": "January 5, 2006", "oclc_numbers": ["225279089"], "works": [{"key": "/works/OL15401431W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.4 x 6.5 x 1.5 inches", "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-04T19:47:04.100378"}}
+/type/edition /books/OL10461041M 6 2020-08-20T04:29:07.195411 {"publishers": ["Addison Wesley"], "weight": "4.2 pounds", "covers": [2383863], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2020-08-20T04:29:07.195411"}, "latest_revision": 6, "key": "/books/OL10461041M", "authors": [{"key": "/authors/OL2670866A"}, {"key": "/authors/OL2670867A"}, {"key": "/authors/OL3437651A"}], "subjects": ["Economics", "Business & Economics", "Business / Economics / Finance", "Textbooks", "Business/Economics", "Economics - General", "Business & Economics / Economics / General", "Finance"], "isbn_13": ["9780321461674"], "source_records": ["bwb:9780321461674"], "title": "Economics plus MyEconLab plus e-Book 2-Semester Student Access Kit (MyEconLab Series)", "identifiers": {"goodreads": ["1686627"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0321461673"], "publish_date": "July 22, 2006", "oclc_numbers": ["144518854"], "works": [{"key": "/works/OL21407061W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.3 x 8.6 x 1.4 inches", "revision": 6}
+/type/edition /books/OL1046113M 2 2020-11-17T23:13:51.619498 {"publishers": ["War Dept., Corps of Engineers, U.S. Lake Survey, New York Office, Military Grid Unit"], "subtitle": "Madagascar.", "lc_classifications": ["MLCM 93/11623 (G)"], "latest_revision": 2, "key": "/books/OL1046113M", "publish_places": ["[New York, N.Y.]"], "contributions": ["U.S. Lake Survey."], "pagination": "xvi, 61 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:78105892:502"], "title": "Laborde projection tables", "lccn": ["93246349"], "number_of_pages": 61, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2020-11-17T23:13:51.619498"}, "publish_date": "1944", "publish_country": "nyu", "works": [{"key": "/works/OL23524149W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10461365M 3 2011-01-12T23:45:58.327185 {"publishers": ["Wright Group"], "number_of_pages": 16, "physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2011-01-12T23:45:58.327185"}, "latest_revision": 3, "key": "/books/OL10461365M", "authors": [{"key": "/authors/OL2721673A"}], "subjects": ["Juvenile literature", "Readers (Primary)", "Wildlife rehabilitation", "Wildlife rehabilitators", "Wildlife rescue"], "isbn_13": ["9780322001787"], "classifications": {}, "title": "Wildlife helpers", "notes": {"type": "/type/text", "value": "TWiG books"}, "identifiers": {}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0322001781"], "publish_date": "1999", "works": [{"key": "/works/OL8156201W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10461562M 3 2011-04-27T08:40:15.093379 {"publishers": ["Macmillan Education Australia"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T08:40:15.093379"}, "title": "Foun Word Families Teacher Not (Foundations)", "number_of_pages": 72, "isbn_13": ["9780322028944"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0322028949"], "publish_date": "June 1, 2000", "key": "/books/OL10461562M", "authors": [{"key": "/authors/OL3437898A"}], "latest_revision": 3, "oclc_numbers": ["45274260"], "works": [{"key": "/works/OL9402506W"}], "type": {"key": "/type/edition"}, "subjects": ["Schools", "Readers (Primary)", "Reading readiness"], "revision": 3}
+/type/edition /books/OL10461693M 4 2010-04-24T18:03:03.597284 {"publishers": ["Mosby International"], "title": "Instructor's Manual to Accompany Foundations in Nursing and Adult Health", "isbn_10": ["0323001548"], "identifiers": {"goodreads": ["6256889"]}, "isbn_13": ["9780323001540"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:03:03.597284"}, "publish_date": "January 15, 1999", "key": "/books/OL10461693M", "authors": [{"key": "/authors/OL3437937A"}], "latest_revision": 4, "works": [{"key": "/works/OL9402547W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10461708M 5 2011-04-28T23:39:51.292916 {"publishers": ["C.V. Mosby"], "physical_format": "Hardcover", "table_of_contents": [{"type": {"key": "/type/toc_item"}, "class": "section"}], "last_modified": {"type": "/type/datetime", "value": "2011-04-28T23:39:51.292916"}, "title": "Maternity Nursing, Instructor's Resource Manual & Test Bank", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "identifiers": {"goodreads": ["6413669"]}, "isbn_13": ["9780323002172"], "edition_name": "9 Rev Ed edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["032300217X"], "publish_date": "November 1998", "key": "/books/OL10461708M", "authors": [{"key": "/authors/OL529635A"}, {"key": "/authors/OL3287403A"}, {"key": "/authors/OL3437947A"}], "latest_revision": 5, "oclc_numbers": ["228270221"], "type": {"key": "/type/edition"}, "subjects": ["Nursing"], "revision": 5}
+/type/edition /books/OL10461852M 2 2010-04-13T06:01:15.930385 {"physical_format": "Paperback", "languages": [{"key": "/languages/eng"}], "weight": "2.3 pounds", "publishers": ["Mosby-Year Book"], "isbn_10": ["0323007945"], "number_of_pages": 496, "covers": [2384128], "edition_name": "11th edition", "isbn_13": ["9780323007948"], "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:01:15.930385"}, "publish_date": "August 15, 2000", "latest_revision": 2, "key": "/books/OL10461852M", "authors": [{"key": "/authors/OL1247860A"}, {"key": "/authors/OL3265293A"}], "title": "Mosby's 2001 Nursing Drug Cards", "subjects": ["Nursing", "Pharmacology", "Drug Guides", "Nursing - Pharmacology", "Medical", "Medical / Nursing"], "type": {"key": "/type/edition"}, "physical_dimensions": "6.2 x 4.2 x 4.2 inches", "revision": 2}
+/type/edition /books/OL10462334M 10 2022-10-28T08:41:24.668578 {"publishers": ["C.V. Mosby"], "weight": "13 ounces", "covers": [5061599], "physical_format": "CD-ROM", "lc_classifications": [""], "key": "/books/OL10462334M", "authors": [{"key": "/authors/OL3438213A"}], "subjects": ["Nursing - Assessment & Diagnosis", "Nursing", "Nursing - General", "Software - Medical / Nursing - CDROM / Universal", "Medical"], "edition_name": "CD-Rom edition", "languages": [{"key": "/languages/eng"}], "source_records": ["bwb:9780323024020", "amazon:0323024025"], "title": "Mosby's Electronic Care Plan Constructor", "identifiers": {"goodreads": ["4397101"]}, "isbn_13": ["9780323024020"], "isbn_10": ["0323024025"], "publish_date": "October 2003", "oclc_numbers": ["54682366"], "works": [{"key": "/works/OL9402805W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.1 x 8 x 1.3 inches", "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-28T08:41:24.668578"}}
+/type/edition /books/OL10462589M 7 2020-12-08T13:38:52.913690 {"publishers": ["Mosby"], "identifiers": {"goodreads": ["7295677"]}, "subtitle": "with STUDENT CONSULT Access (Crash Course)", "weight": "14.4 ounces", "covers": [2384434, -1], "physical_format": "Paperback", "key": "/books/OL10462589M", "authors": [{"key": "/authors/OL3438289A"}], "subjects": ["Cardiovascular medicine", "Medical", "Medical / Nursing", "Cardiology", "Medical / Cardiology", "Diagnosis", "Diseases", "Heart", "Heart Diseases", "Physical Examination"], "edition_name": "1 edition", "languages": [{"key": "/languages/eng"}], "title": "Crash Course Cardiology", "number_of_pages": 222, "isbn_13": ["9780323035644"], "isbn_10": ["0323035647"], "publish_date": "July 15, 2005", "works": [{"key": "/works/OL9402836W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10 x 7.1 x 0.6 inches", "lccn": ["2004063173"], "lc_classifications": ["RC683 .B325 2005"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part31.utf8:192479285:820"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-08T13:38:52.913690"}}
+/type/edition /books/OL10462706M 2 2009-12-15T00:48:57.434180 {"publishers": ["Mosby/JEMS"], "weight": "2 pounds", "title": "Rapid Rescue Spanish", "isbn_10": ["0323043046"], "isbn_13": ["9780323043045"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:48:57.434180"}, "publish_date": "2005", "key": "/books/OL10462706M", "authors": [{"key": "/authors/OL3438344A"}], "latest_revision": 2, "works": [{"key": "/works/OL9402854W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "6.5 x 6 x 4.7 inches", "revision": 2}
+/type/edition /books/OL10462842M 7 2020-10-08T23:40:40.364873 {"publishers": ["Mosby"], "subtitle": "Concepts, Cases, and Competencies", "weight": "6.8 pounds", "covers": [5061544], "physical_format": "Hardcover", "lc_classifications": ["RK60.7"], "latest_revision": 7, "key": "/books/OL10462842M", "authors": [{"key": "/authors/OL3286960A"}, {"key": "/authors/OL3286961A"}, {"key": "/authors/OL3286962A"}], "subjects": ["Dentistry - Dental Hygiene", "Medical / Dentistry / Dental Hygiene", "Dental Hygienists", "Medical", "Medical / Nursing"], "edition_name": "2 edition", "languages": [{"key": "/languages/eng"}], "source_records": ["bwb:9780323048149"], "title": "Mosby's Dental Hygiene - Text and Study Guide Package", "identifiers": {"goodreads": ["2131384"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780323048149"], "isbn_10": ["0323048145"], "publish_date": "December 26, 2007", "last_modified": {"type": "/type/datetime", "value": "2020-10-08T23:40:40.364873"}, "oclc_numbers": ["77012248"], "works": [{"key": "/works/OL21007484W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "11.3 x 8.9 x 2.4 inches", "revision": 7}
+/type/edition /books/OL10463205M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Hardcover", "subtitle": "Black Bonded Leather (Deluxe)", "weight": "5.3 ounces", "publishers": ["Nelson Bibles"], "title": "New Testament New Revised Standard Version Slimline Rs85 Bonded Leather Black Limp Deluxe", "isbn_13": ["9780529068712"], "isbn_10": ["0529068710"], "publish_date": "June 1990", "key": "/books/OL10463205M", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "type": {"key": "/type/edition"}, "subjects": ["Bibles - New Revised Standard", "New Revised Standard Version - General", "Bibles"], "physical_dimensions": "7.3 x 3.8 x 0.8 inches", "revision": 1}
+/type/edition /books/OL10463401M 3 2013-08-04T18:40:45.254058 {"publishers": ["Nelson Bibles"], "languages": [{"key": "/languages/eng"}], "weight": "2.8 pounds", "title": "King James Version Heritage Reference Bible Large Print Genuine Morocco Black Index Overlap Gold", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780529076717"], "physical_format": "Leather-bound", "isbn_10": ["0529076713"], "publish_date": "July 1993", "key": "/books/OL10463401M", "last_modified": {"type": "/type/datetime", "value": "2013-08-04T18:40:45.254058"}, "latest_revision": 3, "type": {"key": "/type/edition"}, "subjects": ["Bibles - King James", "King James Version - General", "Bibles"], "physical_dimensions": "11.2 x 8.2 x 2 inches", "revision": 3}
+/type/edition /books/OL10463433M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Nelson Bibles"], "number_of_pages": 1024, "isbn_13": ["9780529100948"], "isbn_10": ["0529100940"], "publish_date": "April 1994", "key": "/books/OL10463433M", "title": "Ultra-Thin Reference Bible", "type": {"key": "/type/edition"}, "subjects": ["Bibles"], "physical_dimensions": "8.1 x 5.8 x 1 inches", "revision": 1}
+/type/edition /books/OL10463599M 4 2011-04-30T11:04:09.000142 {"publishers": ["World Publishing"], "weight": "4.4 pounds", "covers": [2472050], "physical_format": "Audio Cassette", "last_modified": {"type": "/type/datetime", "value": "2011-04-30T11:04:09.000142"}, "latest_revision": 4, "key": "/books/OL10463599M", "authors": [{"key": "/authors/OL2773301A"}], "subjects": ["Bibles - King James", "King James Version - General", "Religion / Bibles / King James", "Abridged Audio - Inspirational/Philosophy", "Unabridged Audio - Inspirational/Philosophy"], "languages": [{"key": "/languages/eng"}], "title": "Scourby KJV on Cassette Value Pack - Dramatized Complete Bible", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780529107244"], "isbn_10": ["0529107244"], "publish_date": "July 1, 2000", "oclc_numbers": ["317454928"], "works": [{"key": "/works/OL8335963W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.5 x 5.2 x 4.3 inches", "revision": 4}
+/type/edition /books/OL10463890M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Thomas Nelson"], "title": "Study Gear Bible Cover", "isbn_13": ["9780529118318"], "isbn_10": ["0529118319"], "publish_date": "October 15, 2002", "key": "/books/OL10463890M", "type": {"key": "/type/edition"}, "subjects": ["Non-Classifiable"], "revision": 1}
+/type/edition /books/OL10463926M 3 2022-09-17T20:46:34.031413 {"physical_format": "Hardcover", "weight": "4.8 pounds", "publishers": ["Thomas Nelson"], "number_of_pages": 560, "isbn_13": ["9780529119988"], "covers": [2472174], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0529119986"], "publish_date": "December 25, 2004", "key": "/books/OL10463926M", "title": "KJV Deluxe Family Traditions Bible with World's Visual Reference System - Christ and the Children Cover", "subjects": ["Bibles - King James", "King James Version - General", "Religion / Bibles / King James", "Bibles"], "type": {"key": "/type/edition"}, "physical_dimensions": "11.7 x 9.3 x 2.7 inches", "works": [{"key": "/works/OL28809455W"}], "source_records": ["bwb:9780529119988"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-17T20:46:34.031413"}}
+/type/edition /books/OL10463986M 4 2022-09-17T20:26:06.429886 {"publishers": ["Thomas Nelson"], "key": "/books/OL10463986M", "languages": [{"key": "/languages/eng"}], "title": "KJV Bethlehem Bible", "number_of_pages": 38, "isbn_13": ["9780529122612"], "covers": [2472203], "physical_format": "Hardcover", "isbn_10": ["0529122618"], "publish_date": "January 29, 2006", "authors": [{"key": "/authors/OL2773313A"}], "works": [{"key": "/works/OL8336047W"}], "type": {"key": "/type/edition"}, "subjects": ["King James Version - General", "Religion / Bibles / King James", "Religion - Bibles - General", "Religion - Biblical Studies", "Juvenile Nonfiction", "Bibles", "Children: Grades 2-3"], "source_records": ["bwb:9780529122612"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-17T20:26:06.429886"}}
+/type/edition /books/OL10464095M 4 2010-04-24T18:03:03.597284 {"publishers": ["Franklin Watts, Incorporated"], "title": "The Earth (1st Book Of)", "isbn_10": ["0531005194"], "identifiers": {"goodreads": ["5974839"]}, "isbn_13": ["9780531005194"], "physical_format": "School & Library Binding", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:03:03.597284"}, "publish_date": "January 1958", "key": "/books/OL10464095M", "authors": [{"key": "/authors/OL3438477A"}], "latest_revision": 4, "works": [{"key": "/works/OL9402952W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10464304M 2 2009-12-15T00:48:59.363329 {"physical_format": "School & Library Binding", "publishers": ["Franklin Watts"], "isbn_10": ["0531020096"], "number_of_pages": 320, "isbn_13": ["9780531020098"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:48:59.363329"}, "publish_date": "June 1970", "latest_revision": 2, "key": "/books/OL10464304M", "authors": [{"key": "/authors/OL3438552A"}], "title": "Instant Medical Dictionary", "subjects": ["Reference"], "works": [{"key": "/works/OL9403051W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10464778M 4 2021-08-15T05:58:16.304146 {"publishers": ["F. Watts"], "physical_format": "Unknown Binding", "subtitle": "A new view of materials and structure (Everyday science)", "title": "Science in the home", "isbn_10": ["053114142X"], "isbn_13": ["9780531141427"], "languages": [{"key": "/languages/eng"}], "publish_date": "1992", "key": "/books/OL10464778M", "authors": [{"key": "/authors/OL19897A"}], "works": [{"key": "/works/OL15118726W"}], "type": {"key": "/type/edition"}, "covers": [11638028], "ocaid": "giuseppeverdi0000tame", "lccn": ["90038303"], "lc_classifications": ["ML3930.V4 T35 1990"], "source_records": ["ia:giuseppeverdi0000tame"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-08-15T05:58:16.304146"}}
+/type/edition /books/OL10464781M 3 2011-04-22T22:46:41.793363 {"publishers": ["Franklin Watts"], "physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2011-04-22T22:46:41.793363"}, "title": "24 hours in a river (24 hours)", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780531141885"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0531141888"], "publish_date": "1991", "key": "/books/OL10464781M", "authors": [{"key": "/authors/OL534646A"}], "latest_revision": 3, "oclc_numbers": ["123054037"], "works": [{"key": "/works/OL3275323W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10465008M 8 2020-12-17T06:41:08.933075 {"publishers": ["Children's Press (CT)"], "number_of_pages": 36, "weight": "10.9 ounces", "covers": [2472400], "physical_format": "Library Binding", "key": "/books/OL10465008M", "authors": [{"key": "/authors/OL2733277A"}], "ocaid": "venomvisionsarto0000hall", "subjects": ["Juvenile Arts And Crafts", "Juvenile Nonfiction", "Children's Books/Ages 9-12 Nonfiction", "History - General History", "Children: Grades 3-4", "Art - History", "Ethnic Studies - Native American Studies", "General", "Art - General", "People & Places - United States - Native American", "Indian art", "Indians of North America", "Juvenile literature", "Social life and customs", "Southwest, New"], "isbn_13": ["9780531177884"], "source_records": ["ia:venomvisionsarto0000hall", "marc:marc_loc_2016/BooksAll.2016.part34.utf8:115537565:1321"], "title": "Venom and Visions: Art of the Southwest (Shockwave: Social Studies)", "identifiers": {"goodreads": ["3861621"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0531177882"], "publish_date": "September 2007", "oclc_numbers": ["104880765"], "works": [{"key": "/works/OL8215469W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.4 x 7.3 x 0.3 inches", "lccn": ["2007012242"], "lc_classifications": ["E78.S7 H23 2008"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-17T06:41:08.933075"}}
+/type/edition /books/OL10465550M 5 2020-11-30T00:47:11.345029 {"publishers": ["Manor Books"], "physical_format": "Mass Market Paperback", "revision": 5, "source_records": ["amazon:0532191560", "marc:marc_loc_updates/v38.i33.records.utf8:14347200:677", "marc:marc_loc_2016/BooksAll.2016.part27.utf8:172631139:677"], "title": "Divorce Syndrome", "lccn": ["98810498"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780532191568"], "lc_classifications": ["CPB Box no. 966 vol. 4"], "publish_date": "1977", "key": "/books/OL10465550M", "last_modified": {"type": "/type/datetime", "value": "2020-11-30T00:47:11.345029"}, "latest_revision": 5, "oclc_numbers": ["7826182"], "works": [{"key": "/works/OL18673408W"}], "type": {"key": "/type/edition"}, "isbn_10": ["0532191560"]}
+/type/edition /books/OL10465722M 6 2023-01-10T21:29:53.644014 {"publishers": ["Vantage Press"], "identifiers": {"goodreads": ["6245092"]}, "physical_format": "Unknown Binding", "key": "/books/OL10465722M", "authors": [{"key": "/authors/OL123031A"}], "subjects": ["Listening", "Public speaking"], "edition_name": "1st ed edition", "title": "Speech power through listening", "number_of_pages": 211, "isbn_13": ["9780533005215"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0533005213"], "publish_date": "1974", "oclc_numbers": ["2124589"], "works": [{"key": "/works/OL1217224W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:P8-BWF-659"], "source_records": ["promise:bwb_daily_pallets_2022-12-30"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2023-01-10T21:29:53.644014"}}
+/type/edition /books/OL1046588M 5 2020-11-17T23:21:07.099528 {"publishers": ["Banco Central del Ecuador"], "identifiers": {"goodreads": ["1944208"]}, "subtitle": "1934-1935", "isbn_10": ["9978722343"], "subject_place": ["Mexico"], "covers": [3869111], "lc_classifications": ["F1215 .C497 1992"], "latest_revision": 5, "key": "/books/OL1046588M", "authors": [{"key": "/authors/OL561345A"}], "publish_places": ["Quito"], "languages": [{"key": "/languages/spa"}], "pagination": "349 p. ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:78676273:703"], "title": "Cro\u0301nicas de mi viaje a Me\u0301xico", "dewey_decimal_class": ["972.08/25"], "number_of_pages": 349, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "edition_name": "1. ed.", "lccn": ["93247072"], "subjects": ["Mexico -- Description and travel.", "Mexico -- Social life and customs."], "publish_date": "1992", "publish_country": "ec ", "last_modified": {"type": "/type/datetime", "value": "2020-11-17T23:21:07.099528"}, "series": ["Los Cuadernos del caminante ;", "2"], "by_statement": "Fernando Chaves.", "works": [{"key": "/works/OL3415834W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10465998M 2 2009-12-15T00:49:00.759623 {"publishers": ["vantage"], "key": "/books/OL10465998M", "title": "Around the World on a Chinese Freighter and five years later", "physical_format": "Hardcover", "isbn_10": ["0533019702"], "publish_date": "1976", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:49:00.759623"}, "authors": [{"key": "/authors/OL3438973A"}], "latest_revision": 2, "works": [{"key": "/works/OL9403527W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10466349M 4 2010-04-24T18:03:03.597284 {"publishers": ["Vantage Press, Incorporated"], "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:03:03.597284"}, "title": "Softly We Lay and Other Poems", "identifiers": {"goodreads": ["5961816"]}, "isbn_13": ["9780533034918"], "physical_format": "Hardcover", "isbn_10": ["0533034914"], "publish_date": "June 1, 1979", "key": "/books/OL10466349M", "authors": [{"key": "/authors/OL3439226A"}], "latest_revision": 4, "works": [{"key": "/works/OL9403788W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Poetry"], "revision": 4}
+/type/edition /books/OL10466549M 3 2011-06-08T11:34:07.945873 {"publishers": ["Vantage Press"], "subtitle": "The transformation of being", "edition_name": "1st ed edition", "physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2011-06-08T11:34:07.945873"}, "latest_revision": 3, "key": "/books/OL10466549M", "authors": [{"key": "/authors/OL3439377A"}], "subjects": ["Consciousness", "Interpersonal relations", "Reality", "Self"], "isbn_13": ["9780533042289"], "title": "Raising the roof", "number_of_pages": 246, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0533042283"], "publish_date": "1979", "oclc_numbers": ["8134327"], "works": [{"key": "/works/OL9403941W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10466714M 5 2011-04-27T20:36:40.081295 {"publishers": ["Vantage Pr"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T20:36:40.081295"}, "title": "Love So Freely Given", "identifiers": {"goodreads": ["3272801"]}, "isbn_13": ["9780533048144"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0533048141"], "publish_date": "June 1981", "key": "/books/OL10466714M", "authors": [{"key": "/authors/OL1345652A"}], "latest_revision": 5, "oclc_numbers": ["8716302"], "works": [{"key": "/works/OL5591887W"}], "type": {"key": "/type/edition"}, "subjects": ["Popular American Fiction"], "revision": 5}
+/type/edition /books/OL10467223M 2 2009-12-15T00:49:01.830544 {"physical_format": "Hardcover", "publishers": ["Vantage Press"], "isbn_10": ["0533061628"], "number_of_pages": 99, "isbn_13": ["9780533061624"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:49:01.830544"}, "publish_date": "August 1985", "latest_revision": 2, "key": "/books/OL10467223M", "authors": [{"key": "/authors/OL1243458A"}], "title": "The Fall of Hitler or Where is Thy Peace", "subjects": ["Poetry", "Literary Criticism", "Literature - Classics / Criticism"], "works": [{"key": "/works/OL5376384W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10467263M 3 2011-04-27T22:29:33.057825 {"publishers": ["Vantage Pr"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T22:29:33.057825"}, "title": "Bits and Pieces of a Mans Life", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780533062546"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0533062543"], "publish_date": "June 1985", "key": "/books/OL10467263M", "authors": [{"key": "/authors/OL3439909A"}], "latest_revision": 3, "oclc_numbers": ["234290415"], "works": [{"key": "/works/OL9404508W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10467281M 8 2022-12-04T13:15:53.236025 {"publishers": ["Vantage Press"], "number_of_pages": 162, "covers": [9933804], "physical_format": "Hardcover", "key": "/books/OL10467281M", "authors": [{"key": "/authors/OL3439924A"}], "ocaid": "oddswereagainstm00kath", "subjects": ["General", "Art & Art Instruction"], "languages": [{"key": "/languages/eng"}], "title": "Odds Were Against Me", "identifiers": {"goodreads": ["4452672"]}, "isbn_13": ["9780533062966"], "isbn_10": ["0533062969"], "publish_date": "February 1985", "oclc_numbers": ["11787491"], "works": [{"key": "/works/OL9404525W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:W7-DBC-231"], "source_records": ["promise:bwb_daily_pallets_2022-09-01"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T13:15:53.236025"}}
+/type/edition /books/OL10467328M 3 2011-04-26T19:33:40.382552 {"publishers": ["Vantage Press"], "subtitle": "Its beginnings and developments to date", "edition_name": "1st ed edition", "physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2011-04-26T19:33:40.382552"}, "latest_revision": 3, "key": "/books/OL10467328M", "authors": [{"key": "/authors/OL3439958A"}], "subjects": ["Photography"], "isbn_13": ["9780533064229"], "title": "Photography in a nutshell", "number_of_pages": 70, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0533064228"], "publish_date": "1985", "oclc_numbers": ["17061542"], "works": [{"key": "/works/OL9404558W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10467705M 5 2011-04-29T05:48:36.729284 {"publishers": ["Vantage Press"], "identifiers": {"goodreads": ["2033715"]}, "subtitle": "Or, will the real Gospel please stand up?", "edition_name": "1st ed edition", "physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T05:48:36.729284"}, "latest_revision": 5, "key": "/books/OL10467705M", "authors": [{"key": "/authors/OL1259197A"}], "subjects": ["Catholic Church", "Church renewal", "Faith", "Spirituality"], "isbn_13": ["9780533071708"], "title": "The Catholic hodgepodge", "number_of_pages": 116, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0533071704"], "publish_date": "1987", "oclc_numbers": ["32100600"], "works": [{"key": "/works/OL5400150W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL1046778M 3 2020-11-17T23:24:41.918095 {"publishers": ["IADAP"], "subtitle": "ambigua experiencia en el Ecuador : industriales y fiesta popular", "isbn_10": ["9978600124"], "subject_place": ["Ecuador", "Ecuador."], "lc_classifications": ["HC202 .L87 1993"], "latest_revision": 3, "key": "/books/OL1046778M", "authors": [{"key": "/authors/OL561435A"}], "publish_places": ["Quito, Ecuador"], "pagination": "122 p.;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:78925144:787"], "title": "Modernizacio\u0301n?", "lccn": ["93247352"], "notes": {"type": "/type/text", "value": "Includes bibliographical references."}, "number_of_pages": 122, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/spa"}], "subjects": ["Industrialists -- Ecuador -- History.", "Industries -- Ecuador -- History.", "Indians of South America -- Alcohol use -- Ecuador."], "publish_date": "1993", "publish_country": "ec ", "last_modified": {"type": "/type/datetime", "value": "2020-11-17T23:24:41.918095"}, "series": ["Coleccio\u0301n Procesos ;", "v. 1"], "by_statement": "Milton Luna Tamayo.", "works": [{"key": "/works/OL3416217W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10467867M 3 2011-04-30T10:09:11.319135 {"publishers": ["Vantage Press"], "physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2011-04-30T10:09:11.319135"}, "title": "You can't go back", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 25, "isbn_13": ["9780533074679"], "edition_name": "1st ed edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0533074673"], "publish_date": "1990", "key": "/books/OL10467867M", "authors": [{"key": "/authors/OL3440380A"}], "latest_revision": 3, "oclc_numbers": ["23945896"], "works": [{"key": "/works/OL9405002W"}], "type": {"key": "/type/edition"}, "subjects": ["Biography", "Cumberland (Md.)", "Saville, Helen M"], "revision": 3}
+/type/edition /books/OL10467927M 5 2011-04-25T15:30:28.632446 {"publishers": ["Vantage Press"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-25T15:30:28.632446"}, "title": "Are You Afraid to Fly?", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "identifiers": {"goodreads": ["2877849"]}, "edition_name": "1st ed edition", "isbn_13": ["9780533075850"], "isbn_10": ["0533075858"], "publish_date": "January 1988", "key": "/books/OL10467927M", "authors": [{"key": "/authors/OL3440423A"}], "latest_revision": 5, "oclc_numbers": ["18493276"], "works": [{"key": "/works/OL9405043W"}], "type": {"key": "/type/edition"}, "subjects": ["Applied Psychology", "Fear of flying", "Psychology"], "revision": 5}
+/type/edition /books/OL10468062M 2 2011-04-30T06:22:40.447236 {"publishers": ["Vantage Pr"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2011-04-30T06:22:40.447236"}, "title": "Kissed by a Camel in Jerusalem", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780533078226"], "physical_format": "Hardcover", "isbn_10": ["0533078229"], "publish_date": "October 1989", "key": "/books/OL10468062M", "authors": [{"key": "/authors/OL3440512A"}, {"key": "/authors/OL3440513A"}], "latest_revision": 2, "oclc_numbers": ["21531457"], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL1046820M 4 2020-11-17T23:25:31.316663 {"publishers": ["Sociaal en Cultureel Planbureau", "VUGA [distributor"], "isbn_10": ["9052503362"], "subject_place": ["Netherlands", "Netherlands."], "lc_classifications": ["HV308 .C527 1993"], "latest_revision": 4, "key": "/books/OL1046820M", "authors": [{"key": "/authors/OL561456A"}], "publish_places": ["Rijswijk", "'s-Gravenhage"], "pagination": "98 p. ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:78983361:855"], "title": "Ontwikkelingen bij steunfunctie-instellingen", "lccn": ["93247428"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 97-98)."}, "number_of_pages": 98, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/dut"}], "subjects": ["Social service -- Netherlands.", "Netherlands -- Social policy."], "publish_date": "1993", "publish_country": "ne ", "last_modified": {"type": "/type/datetime", "value": "2020-11-17T23:25:31.316663"}, "series": ["Rapportage welzijnswerk ;", "d. 3", "Cahier / Sociaal en Cultureel Planbureau ;", "nr. 98", "SCP-cahier ;", "nr. 98."], "by_statement": "A.W.M. Claassen.", "oclc_numbers": ["30320947"], "works": [{"key": "/works/OL3416279W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10468235M 3 2011-04-27T02:25:22.388526 {"publishers": ["Vantage Press"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T02:25:22.388526"}, "title": "Caveat Emptor", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780533081158"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0533081157"], "publish_date": "June 1989", "key": "/books/OL10468235M", "authors": [{"key": "/authors/OL3440648A"}], "latest_revision": 3, "oclc_numbers": ["221912154"], "works": [{"key": "/works/OL9405286W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Fiction - General"], "revision": 3}
+/type/edition /books/OL10468323M 3 2011-04-30T09:19:44.135906 {"publishers": ["Vantage Pr"], "physical_format": "Hardcover", "subtitle": "A Romance of Old Detroit", "last_modified": {"type": "/type/datetime", "value": "2011-04-30T09:19:44.135906"}, "title": "The Blond Eaglet", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780533082681"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0533082684"], "publish_date": "June 1989", "key": "/books/OL10468323M", "authors": [{"key": "/authors/OL3440715A"}], "latest_revision": 3, "oclc_numbers": ["21385402"], "works": [{"key": "/works/OL9405359W"}], "type": {"key": "/type/edition"}, "subjects": ["Romance - Historical", "Fiction", "Romance: Historical"], "revision": 3}
+/type/edition /books/OL10468578M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780533087075"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "publishers": ["Vantage Press"], "number_of_pages": 69, "edition_name": "1st edition", "isbn_10": ["0533087074"], "publish_date": "1990", "key": "/books/OL10468578M", "title": "The Days of Yesteryear", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10468601M 4 2011-04-26T21:13:47.506929 {"publishers": ["Vantage Press"], "covers": [5061779], "physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2011-04-26T21:13:47.506929"}, "latest_revision": 4, "key": "/books/OL10468601M", "authors": [{"key": "/authors/OL3440914A"}], "subjects": ["Americans", "Biography", "Panama"], "edition_name": "1st ed edition", "languages": [{"key": "/languages/eng"}], "title": "The Carkeets in Panama", "number_of_pages": 48, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780533087464"], "isbn_10": ["0533087465"], "publish_date": "1990", "oclc_numbers": ["27761917"], "works": [{"key": "/works/OL9405571W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10469022M 2 2009-12-15T00:49:03.044631 {"publishers": ["Vantage Pr"], "subtitle": "My Life With Khrushchev and Stalin", "weight": "15.2 ounces", "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:49:03.044631"}, "latest_revision": 2, "key": "/books/OL10469022M", "authors": [{"key": "/authors/OL897982A"}], "subjects": ["Biography/Autobiography"], "languages": [{"key": "/languages/eng"}], "title": "The Back Room", "isbn_13": ["9780533094424"], "isbn_10": ["0533094429"], "publish_date": "January 1992", "works": [{"key": "/works/OL4493690W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.2 x 5.8 x 0.8 inches", "revision": 2}
+/type/edition /books/OL10469066M 5 2011-04-30T13:22:40.924061 {"publishers": ["Vantage Press"], "last_modified": {"type": "/type/datetime", "value": "2011-04-30T13:22:40.924061"}, "title": "Jesus' Three Days in Hell", "identifiers": {"goodreads": ["3101980"]}, "isbn_13": ["9780533095117"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Hardcover", "isbn_10": ["0533095115"], "publish_date": "October 1991", "key": "/books/OL10469066M", "authors": [{"key": "/authors/OL3441257A"}], "latest_revision": 5, "oclc_numbers": ["27707463"], "works": [{"key": "/works/OL9405958W"}], "type": {"key": "/type/edition"}, "subjects": ["Bible - Biography - New Testament", "Religion - Biblical Studies"], "revision": 5}
+/type/edition /books/OL10469353M 7 2022-12-13T17:34:15.000073 {"identifiers": {"goodreads": ["6663742"]}, "title": "After the Comet", "authors": [{"key": "/authors/OL3441475A"}], "publish_date": "November 1992", "publishers": ["Vantage Pr"], "physical_format": "Hardcover", "isbn_13": ["9780533102778"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0533102774"], "oclc_numbers": ["28571338"], "type": {"key": "/type/edition"}, "ocaid": "aftercomet0000bake", "source_records": ["ia:aftercomet0000bake"], "key": "/books/OL10469353M", "works": [{"key": "/works/OL9406206W"}], "covers": [13071686], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-13T17:34:15.000073"}}
+/type/edition /books/OL10469402M 2 2009-12-15T00:49:04.417086 {"physical_format": "Paperback", "title": "Becoming an American", "isbn_10": ["053310372X"], "publishers": ["Vantage Pr"], "isbn_13": ["9780533103720"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:49:04.417086"}, "publish_date": "April 1993", "key": "/books/OL10469402M", "authors": [{"key": "/authors/OL3441506A"}], "latest_revision": 2, "subjects": ["Reference"], "works": [{"key": "/works/OL9406240W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10469611M 2 2009-12-15T00:49:04.417086 {"physical_format": "Hardcover", "weight": "12 ounces", "title": "A Paper Prison", "isbn_10": ["0533107636"], "publishers": ["Vantage Pr"], "isbn_13": ["9780533107636"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:49:04.417086"}, "publish_date": "August 1994", "key": "/books/OL10469611M", "authors": [{"key": "/authors/OL3441671A"}], "latest_revision": 2, "subjects": ["Popular American Fiction", "Fiction"], "works": [{"key": "/works/OL9406447W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8 x 5.8 x 0.5 inches", "revision": 2}
+/type/edition /books/OL10470010M 2 2009-12-15T00:49:04.417086 {"publishers": ["Vantage Pr"], "subtitle": "Selected Poems 1974-1994", "title": "Letters from Fair Oaks", "isbn_10": ["0533113946"], "isbn_13": ["9780533113941"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:49:04.417086"}, "publish_date": "November 1995", "key": "/books/OL10470010M", "authors": [{"key": "/authors/OL3441985A"}], "latest_revision": 2, "subjects": ["Poetry"], "works": [{"key": "/works/OL9406796W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10470941M 3 2011-04-30T02:56:44.616552 {"publishers": ["Vantage Pr"], "weight": "1.3 pounds", "covers": [5061909], "edition_name": "1 edition", "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-30T02:56:44.616552"}, "latest_revision": 3, "key": "/books/OL10470941M", "authors": [{"key": "/authors/OL3442785A"}, {"key": "/authors/OL3442786A"}], "subjects": ["General", "Fiction"], "isbn_13": ["9780533128457"], "title": "Absolute Power", "number_of_pages": 300, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0533128455"], "publish_date": "May 1999", "oclc_numbers": ["45613981"], "type": {"key": "/type/edition"}, "physical_dimensions": "9.5 x 6.5 x 1 inches", "revision": 3}
+/type/edition /books/OL10471044M 5 2010-04-24T18:03:03.597284 {"number_of_pages": 25, "subtitle": "The Outing", "weight": "1.6 ounces", "covers": [2472610], "latest_revision": 5, "edition_name": "1 edition", "title": "The Exciting Adventures of Grandma and Grandpa's Children, Book 1", "languages": [{"key": "/languages/eng"}], "subjects": ["General", "Juvenile Fiction", "Children: Grades 1-2"], "type": {"key": "/type/edition"}, "physical_dimensions": "7.8 x 5 x 0.2 inches", "revision": 5, "publishers": ["Vantage Pr"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:03:03.597284"}, "key": "/books/OL10471044M", "authors": [{"key": "/authors/OL885466A"}], "identifiers": {"goodreads": ["6180473"]}, "isbn_13": ["9780533129935"], "isbn_10": ["0533129931"], "publish_date": "December 1, 1999", "works": [{"key": "/works/OL4447843W"}]}
+/type/edition /books/OL10471075M 4 2011-04-28T19:00:56.106667 {"publishers": ["Vantage Pr"], "weight": "1 pounds", "covers": [2472615], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-28T19:00:56.106667"}, "latest_revision": 4, "key": "/books/OL10471075M", "authors": [{"key": "/authors/OL2306092A"}], "subjects": ["General", "Fiction"], "edition_name": "1 edition", "languages": [{"key": "/languages/eng"}], "title": "The Warehouse", "number_of_pages": 300, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780533130399"], "isbn_10": ["0533130395"], "publish_date": "December 1, 1999", "oclc_numbers": ["44555984"], "works": [{"key": "/works/OL7538859W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.8 inches", "revision": 4}
+/type/edition /books/OL10471608M 4 2010-04-24T18:03:03.597284 {"publishers": ["Vantage Pr"], "identifiers": {"goodreads": ["6035668"]}, "key": "/books/OL10471608M", "weight": "4.8 ounces", "title": "On the Wings of Time", "type": {"key": "/type/edition"}, "number_of_pages": 78, "isbn_13": ["9780533137589"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0533137586"], "latest_revision": 4, "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:03:03.597284"}, "authors": [{"key": "/authors/OL409305A"}], "publish_date": "July 2001", "works": [{"key": "/works/OL2777462W"}], "physical_format": "Paperback", "subjects": ["American - General", "Poetry"], "physical_dimensions": "8 x 5.5 x 0.2 inches", "revision": 4}
+/type/edition /books/OL10471696M 6 2021-10-08T05:46:39.160261 {"publishers": ["Vantage Pr"], "number_of_pages": 52, "weight": "3.2 ounces", "physical_format": "Paperback", "key": "/books/OL10471696M", "authors": [{"key": "/authors/OL3443460A"}], "subjects": ["Dogs - General", "Pets"], "isbn_13": ["9780533138746"], "title": "The Adventures of Caesar", "identifiers": {"goodreads": ["2283388"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0533138744"], "publish_date": "October 2001", "oclc_numbers": ["605650238"], "works": [{"key": "/works/OL9408162W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "7.8 x 5.5 x 0.2 inches", "source_records": ["bwb:9780533138746"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-10-08T05:46:39.160261"}}
+/type/edition /books/OL10471703M 3 2011-04-26T18:35:30.743315 {"publishers": ["Vantage Pr"], "weight": "8 ounces", "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-26T18:35:30.743315"}, "latest_revision": 3, "key": "/books/OL10471703M", "authors": [{"key": "/authors/OL3443466A"}], "subjects": ["Biblical Studies - Prophecy", "Religion"], "isbn_13": ["9780533138852"], "title": "Who Is the Beast or Wicked Person", "number_of_pages": 70, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["053313885X"], "publish_date": "October 2001", "oclc_numbers": ["50038491"], "works": [{"key": "/works/OL9408169W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8 x 5.5 x 0.2 inches", "revision": 3}
+/type/edition /books/OL10471797M 4 2010-04-24T18:03:03.597284 {"publishers": ["Vantage Pr"], "identifiers": {"goodreads": ["1883848"]}, "key": "/books/OL10471797M", "weight": "13.6 ounces", "title": "Shaky", "type": {"key": "/type/edition"}, "number_of_pages": 202, "isbn_13": ["9780533140121"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0533140129"], "latest_revision": 4, "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:03:03.597284"}, "authors": [{"key": "/authors/OL3443538A"}], "publish_date": "April 2002", "works": [{"key": "/works/OL9408250W"}], "physical_format": "Paperback", "subjects": ["Mystery & Detective - General", "Fiction", "Mystery/Suspense"], "physical_dimensions": "9 x 6 x 0.5 inches", "revision": 4}
+/type/edition /books/OL10471892M 4 2010-04-24T18:03:03.597284 {"publishers": ["Vantage Pr"], "number_of_pages": 133, "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:03:03.597284"}, "title": "The Judgement of the Great Whore", "type": {"key": "/type/edition"}, "identifiers": {"goodreads": ["1306166"]}, "isbn_13": ["9780533141326"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["053314132X"], "publish_date": "August 2002", "key": "/books/OL10471892M", "authors": [{"key": "/authors/OL3443614A"}], "latest_revision": 4, "works": [{"key": "/works/OL9408326W"}], "physical_format": "Paperback", "subjects": ["Inspirational", "Religion"], "revision": 4}
+/type/edition /books/OL10472039M 5 2010-04-24T18:03:03.597284 {"publishers": ["Vantage Pr"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:03:03.597284"}, "weight": "1 pounds", "title": "Spring Rain Imperial Concubine", "identifiers": {"goodreads": ["5838966"]}, "isbn_13": ["9780533143160"], "covers": [5062012], "physical_format": "Paperback", "isbn_10": ["0533143160"], "publish_date": "February 2003", "key": "/books/OL10472039M", "authors": [{"key": "/authors/OL3443730A"}], "latest_revision": 5, "works": [{"key": "/works/OL9408459W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Fiction"], "physical_dimensions": "9 x 6 x 0.8 inches", "revision": 5}
+/type/edition /books/OL10472392M 6 2011-04-29T08:50:24.758520 {"publishers": ["Vantage Pr"], "identifiers": {"goodreads": ["1651064"]}, "subtitle": "Do's And Dont's Of Investing In Stocks And Real Estate", "weight": "5.6 ounces", "covers": [2473112], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T08:50:24.758520"}, "latest_revision": 6, "key": "/books/OL10472392M", "authors": [{"key": "/authors/OL3444001A"}], "subjects": ["Investments & Securities - General", "Business & Economics", "Business/Economics"], "isbn_13": ["9780533148257"], "title": "On The Market: A Millionaire's Advice To His Two Sons ", "number_of_pages": 81, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0533148251"], "publish_date": "November 30, 2004", "oclc_numbers": ["57580649"], "works": [{"key": "/works/OL9408755W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.8 x 6 x 0.2 inches", "revision": 6}
+/type/edition /books/OL10472556M 6 2020-08-28T03:36:20.712086 {"publishers": ["Vantage Pr"], "number_of_pages": 324, "weight": "1.4 pounds", "covers": [2473264], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2020-08-28T03:36:20.712086"}, "latest_revision": 6, "key": "/books/OL10472556M", "authors": [{"key": "/authors/OL3444137A"}], "subjects": ["General", "Fiction"], "isbn_13": ["9780533150885"], "source_records": ["bwb:9780533150885"], "title": "The Healer", "identifiers": {"librarything": ["4923052"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0533150884"], "publish_date": "December 31, 2005", "oclc_numbers": ["150329121"], "works": [{"key": "/works/OL9408916W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6.2 x 1.3 inches", "revision": 6}
+/type/edition /books/OL10472634M 10 2020-12-13T23:33:08.786496 {"publishers": ["Vantage Press"], "number_of_pages": 243, "weight": "1.2 pounds", "covers": [2473338], "physical_format": "Hardcover", "key": "/books/OL10472634M", "authors": [{"key": "/authors/OL3444197A"}], "subjects": ["General", "Political Ideologies - General", "Political Science", "Politics / Current Events", "2001-", "Politics and government", "United States", "Politics/International Relations"], "isbn_13": ["9780533152124"], "source_records": ["amazon:0533152127", "marc:marc_loc_updates/v35.i17.records.utf8:5902839:636", "marc:marc_loc_updates/v35.i21.records.utf8:12724597:729", "marc:marc_loc_updates/v37.i28.records.utf8:9725218:734", "marc:marc_loc_2016/BooksAll.2016.part33.utf8:77150764:734"], "title": "Who Will Speak for the American Ideal?", "identifiers": {"goodreads": ["117120"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0533152127"], "publish_date": "May 30, 2006", "oclc_numbers": ["123376930"], "works": [{"key": "/works/OL9408981W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.1 x 6 x 1.1 inches", "lccn": ["2005903013"], "lc_classifications": ["JK275 .O84 2006"], "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-13T23:33:08.786496"}}
+/type/edition /books/OL1047305M 2 2020-11-17T23:31:48.025884 {"publishers": ["Advantis"], "lc_classifications": ["QA76.76.O63 E9537 1993"], "latest_revision": 2, "key": "/books/OL1047305M", "publish_places": ["Tampa, FL (P.O. Box 30104, Tampa 33633)"], "contributions": ["Advantis (Firm)"], "edition_name": "3rd ed.", "pagination": "1 v. (various pagings) ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:79478885:737"], "title": "Expedite base for AIX and other UNIX systems programming guide.", "dewey_decimal_class": ["005.7/13"], "notes": {"type": "/type/text", "value": "Accompanied by booklet \"Reference guide\" (20 p. ; 19 cm) inserted at end.\nIncludes index."}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["93248139"], "subjects": ["AIX (Computer file)", "Operating systems (Computers)"], "publish_date": "1993", "publish_country": "flu", "last_modified": {"type": "/type/datetime", "value": "2020-11-17T23:31:48.025884"}, "works": [{"key": "/works/OL23524518W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10474002M 2 2011-04-26T03:03:15.072602 {"publishers": ["Wadsworth Pub Co"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2011-04-26T03:03:15.072602"}, "weight": "9.6 ounces", "title": "Introduction to Multimedia Macintosh CD-ROM", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780534311230"], "physical_format": "CD-ROM", "isbn_10": ["0534311237"], "publish_date": "January 15, 1996", "key": "/books/OL10474002M", "authors": [{"key": "/authors/OL3444768A"}, {"key": "/authors/OL3444769A"}], "latest_revision": 2, "oclc_numbers": ["34326818"], "type": {"key": "/type/edition"}, "subjects": ["Macintosh OS", "Multimedia"], "physical_dimensions": "10.2 x 6.8 x 1.8 inches", "revision": 2}
+/type/edition /books/OL10474003M 4 2011-04-27T14:29:38.147197 {"publishers": ["Not Avail"], "edition_name": "CD-Rom edition", "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T14:29:38.147197"}, "latest_revision": 4, "key": "/books/OL10474003M", "authors": [{"key": "/authors/OL3444770A"}], "subjects": ["Ibm Pc Graphics And Sound", "Multi-Media Hardware & Software", "Computer Books: General"], "isbn_13": ["9780534311247"], "classifications": {}, "title": "Multimedia University Producing Multimedia", "notes": {"type": "/type/text", "value": "Cd-Rom\r\nIBM Pc"}, "identifiers": {}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0534311245"], "publish_date": "December 1996", "oclc_numbers": ["231725316"], "works": [{"key": "/works/OL9409541W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10474065M 3 2010-04-13T06:02:20.682192 {"languages": [{"key": "/languages/eng"}], "subtitle": "A Program for Doing and Learning Mathematics", "key": "/books/OL10474065M", "title": "Math T/L ", "publishers": ["Brooks/Cole Pub Co"], "isbn_13": ["9780534342296"], "covers": [5062694], "edition_name": "1st edition", "physical_format": "Paperback", "isbn_10": ["0534342299"], "publish_date": "1996", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:02:20.682192"}, "authors": [{"key": "/authors/OL603809A"}], "latest_revision": 3, "works": [{"key": "/works/OL3576657W"}], "type": {"key": "/type/edition"}, "subjects": ["Science/Mathematics"], "revision": 3}
+/type/edition /books/OL10474163M 3 2010-04-13T06:02:20.682192 {"publishers": ["Brooks/Cole Pub Co"], "languages": [{"key": "/languages/eng"}], "key": "/books/OL10474163M", "weight": "1.2 pounds", "title": "Student Solutions Manual for Weimer's Applied Calculus With Technology", "isbn_13": ["9780534354510"], "covers": [5062555], "physical_format": "Paperback", "isbn_10": ["0534354513"], "publish_date": "January 1998", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:02:20.682192"}, "authors": [{"key": "/authors/OL3444809A"}], "latest_revision": 3, "works": [{"key": "/works/OL9409577W"}], "type": {"key": "/type/edition"}, "subjects": ["Mathematics and Science", "Science/Mathematics"], "physical_dimensions": "9.8 x 7.8 x 0.8 inches", "revision": 3}
+/type/edition /books/OL10474399M 4 2010-08-17T02:23:39.303474 {"publishers": ["Brooks/Cole"], "subtitle": "Elementary Algebra", "last_modified": {"type": "/type/datetime", "value": "2010-08-17T02:23:39.303474"}, "title": "The Learning Equation Student Workbook", "identifiers": {"goodreads": ["7086207"], "librarything": ["8220541"]}, "isbn_13": ["9780534379513"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0534379516"], "publish_date": "2001", "key": "/books/OL10474399M", "latest_revision": 4, "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10474458M 3 2011-02-27T21:07:33.510986 {"publishers": ["International Thomson Publishing"], "classifications": {}, "last_modified": {"type": "/type/datetime", "value": "2011-02-27T21:07:33.510986"}, "title": "SSM ELEM & INT ALG COMBO", "notes": {"type": "/type/text", "value": "3E"}, "identifiers": {}, "isbn_13": ["9780534387396"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["053438739X"], "publish_date": "February 22, 2002", "key": "/books/OL10474458M", "authors": [{"key": "/authors/OL2777736A"}], "latest_revision": 3, "works": [{"key": "/works/OL8345877W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10474874M 4 2022-12-07T12:36:57.335423 {"publishers": ["Wadsworth Pub Co"], "weight": "1.4 pounds", "physical_format": "Hardcover", "key": "/books/OL10474874M", "authors": [{"key": "/authors/OL25077A"}, {"key": "/authors/OL2749294A"}], "subjects": ["Criminal law", "USA", "Law"], "edition_name": "4 edition", "languages": [{"key": "/languages/eng"}], "title": "Criminal Evidence", "number_of_pages": 320, "isbn_13": ["9780534514914"], "isbn_10": ["053451491X"], "publish_date": "July 26, 2000", "oclc_numbers": ["228267107", "779658367"], "type": {"key": "/type/edition"}, "physical_dimensions": "9.2 x 7.2 x 0.8 inches", "works": [{"key": "/works/OL27702843W"}], "covers": [12692183], "ocaid": "criminalevidence0000gard_x8p5", "lc_classifications": ["KF9660.A7 G37 2001"], "source_records": ["ia:criminalevidence0000gard_x8p5", "promise:bwb_daily_pallets_2022-03-17"], "local_id": ["urn:bwbsku:KQ-327-011"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-07T12:36:57.335423"}}
+/type/edition /books/OL10474945M 4 2010-04-24T18:03:28.112452 {"publishers": ["Wadsworth Publishing"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:03:28.112452"}, "title": "Life Span Development", "identifiers": {"goodreads": ["4922318"]}, "isbn_13": ["9780534527761"], "edition_name": "1 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0534527760"], "publish_date": "August 1, 2004", "key": "/books/OL10474945M", "authors": [{"key": "/authors/OL2777254A"}], "latest_revision": 4, "works": [{"key": "/works/OL8345271W"}], "type": {"key": "/type/edition"}, "subjects": ["Children", "Developmental - General", "Developmental - Lifespan Development", "Psychology & Psychiatry / Developmental Psychology", "Psychology"], "revision": 4}
+/type/edition /books/OL10474989M 5 2011-04-30T14:17:32.215567 {"publishers": ["Wadsworth Pub Co"], "subtitle": "(info Trac Version, Passcode For Web Access)", "edition_name": "1 edition", "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-30T14:17:32.215567"}, "latest_revision": 5, "key": "/books/OL10474989M", "authors": [{"key": "/authors/OL1429812A"}], "subjects": ["Mental Health", "Medical"], "isbn_13": ["9780534533014"], "title": "Juvenile Delinquency", "identifiers": {"goodreads": ["7145552"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0534533019"], "publish_date": "April 30, 2005", "oclc_numbers": ["149294499"], "works": [{"key": "/works/OL5832398W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10475094M 4 2011-04-26T07:30:40.160382 {"publishers": ["Wadsworth Publishing Company"], "subtitle": "100 Classic Masterworks, Version 2.0", "weight": "3.2 ounces", "covers": [5062580], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-26T07:30:40.160382"}, "latest_revision": 4, "key": "/books/OL10475094M", "authors": [{"key": "/authors/OL226185A"}], "subjects": ["Education", "History & Surveys - General", "Software - Reference - CDROM / Universal", "Philosophy"], "edition_name": "Cdr edition", "languages": [{"key": "/languages/eng"}], "title": "The Philosophy Source", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780534543365"], "isbn_10": ["0534543367"], "publish_date": "February 2002", "oclc_numbers": ["53990597"], "works": [{"key": "/works/OL1889497W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "6.4 x 6.4 x 0.4 inches", "revision": 4}
+/type/edition /books/OL10475267M 1 2008-04-30T09:38:13.731961 {"physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Thomson Learning"], "title": "Criminology", "isbn_13": ["9780534562960"], "isbn_10": ["0534562965"], "key": "/books/OL10475267M", "authors": [{"key": "/authors/OL2628875A"}], "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10475509M 5 2011-04-26T08:16:29.945884 {"publishers": ["Wadsworth Pub Co"], "subtitle": "Adjustment in the 21st Century", "weight": "3.3 pounds", "covers": [5062775], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-26T08:16:29.945884"}, "latest_revision": 5, "key": "/books/OL10475509M", "authors": [{"key": "/authors/OL23991A"}, {"key": "/authors/OL1237660A"}], "subjects": ["Applied Psychology", "Psychology"], "edition_name": "7TH edition", "title": "Psychology Applied to Modern Life", "identifiers": {"goodreads": ["2336627"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780534597405"], "isbn_10": ["0534597408"], "publish_date": "July 2002", "oclc_numbers": ["228134642"], "type": {"key": "/type/edition"}, "physical_dimensions": "10.8 x 8.5 x 1 inches", "revision": 5}
+/type/edition /books/OL10475756M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780534653996"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "publishers": ["Thomson Custom Publishing"], "title": "Communicate 8th Edition SP151-Personal and Public Speech", "edition_name": "8th edition", "isbn_10": ["0534653995"], "publish_date": "2004", "key": "/books/OL10475756M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10475988M 2 2009-12-15T00:49:10.118336 {"physical_format": "Paperback", "subtitle": "A Tutorial Workbook", "title": "PC Statics", "isbn_10": ["0534920284"], "publishers": ["Wadsworth Publishing Company"], "isbn_13": ["9780534920289"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:49:10.118336"}, "publish_date": "August 1997", "key": "/books/OL10475988M", "authors": [{"key": "/authors/OL3445239A"}], "latest_revision": 2, "works": [{"key": "/works/OL9409869W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10476252M 3 2011-04-29T15:25:16.663163 {"publishers": ["Brooks/Cole Pub. Co"], "physical_format": "Unknown Binding", "subtitle": "Functions, graphs, and applications", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T15:25:16.663163"}, "title": "Test items and chapter tests for Kaufmann's intermediate algebra", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780534950576"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0534950574"], "publish_date": "1997", "key": "/books/OL10476252M", "authors": [{"key": "/authors/OL3334454A"}], "latest_revision": 3, "oclc_numbers": ["53102161"], "works": [{"key": "/works/OL9280613W"}], "type": {"key": "/type/edition"}, "subjects": ["Algebra", "Secondary"], "revision": 3}
+/type/edition /books/OL10476308M 4 2010-04-24T18:03:28.112452 {"publishers": ["PWS Pub. Co."], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:03:28.112452"}, "title": "Electrical & Electronic Fund", "identifiers": {"goodreads": ["4176524"]}, "isbn_13": ["9780534955205"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0534955207"], "publish_date": "January 1999", "key": "/books/OL10476308M", "authors": [{"key": "/authors/OL3445320A"}], "latest_revision": 4, "works": [{"key": "/works/OL9409940W"}], "type": {"key": "/type/edition"}, "subjects": ["Engineering - Electrical & Electronic", "Technology & Industrial Arts"], "revision": 4}
+/type/edition /books/OL10476449M 3 2011-04-30T07:30:04.469284 {"publishers": ["Pearson Custom Publishing"], "physical_format": "Paperback", "subtitle": "Paradigmatic Approach", "last_modified": {"type": "/type/datetime", "value": "2011-04-30T07:30:04.469284"}, "title": "General Psychology", "number_of_pages": 336, "isbn_13": ["9780536003263"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0536003262"], "publish_date": "September 1997", "key": "/books/OL10476449M", "authors": [{"key": "/authors/OL3445361A"}], "latest_revision": 3, "oclc_numbers": ["42372409"], "works": [{"key": "/works/OL9409972W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Psychology"], "revision": 3}
+/type/edition /books/OL10476896M 4 2022-12-06T23:09:43.769809 {"publishers": ["Ginn Custom Pub"], "physical_format": "Unknown Binding", "subtitle": "A collection of writings", "title": "Management forum", "number_of_pages": 271, "isbn_13": ["9780536030962"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0536030960"], "publish_date": "1979", "key": "/books/OL10476896M", "authors": [{"key": "/authors/OL3445530A"}], "oclc_numbers": ["6730446"], "works": [{"key": "/works/OL9410134W"}], "type": {"key": "/type/edition"}, "subjects": ["Management"], "local_id": ["urn:bwbsku:P7-CEG-330"], "source_records": ["promise:bwb_daily_pallets_2022-03-17"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-06T23:09:43.769809"}}
+/type/edition /books/OL10476981M 3 2011-04-28T12:13:08.356867 {"publishers": ["Ginn Press"], "physical_format": "Unknown Binding", "subtitle": "\"QA\"", "last_modified": {"type": "/type/datetime", "value": "2011-04-28T12:13:08.356867"}, "title": "Homework questions and answers for freshman chemistry", "number_of_pages": 449, "isbn_13": ["9780536054197"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0536054193"], "publish_date": "1987", "key": "/books/OL10476981M", "authors": [{"key": "/authors/OL3445572A"}], "latest_revision": 3, "oclc_numbers": ["41778830"], "works": [{"key": "/works/OL9410172W"}], "type": {"key": "/type/edition"}, "subjects": ["Chemistry", "Problems, exercises, etc"], "revision": 3}
+/type/edition /books/OL10477141M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Spiral-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Pearson"], "number_of_pages": 150, "edition_name": "4th edition", "isbn_10": ["0536211531"], "publish_date": "2006", "key": "/books/OL10477141M", "authors": [{"key": "/authors/OL2634069A"}, {"key": "/authors/OL3445624A"}], "title": "Who Moved My Ledger", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10477730M 6 2019-01-09T03:42:33.901904 {"publishers": ["Pearson Custom Publishing"], "physical_format": "Paperback", "ia_box_id": ["IA122710"], "source_records": ["ia:computerapplicat00mans"], "title": "Computer Applications in Technology", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780536609083"], "covers": [6603976], "languages": [{"key": "/languages/eng"}], "isbn_10": ["053660908X"], "publish_date": "2000", "key": "/books/OL10477730M", "last_modified": {"type": "/type/datetime", "value": "2019-01-09T03:42:33.901904"}, "ocaid": "computerapplicat00mans", "oclc_numbers": ["123418455"], "works": [{"key": "/works/OL18155429W"}], "type": {"key": "/type/edition"}, "latest_revision": 6, "revision": 6}
+/type/edition /books/OL10477753M 2 2009-12-15T00:49:11.305608 {"publishers": ["Pearson Custom"], "key": "/books/OL10477753M", "title": "MANAGING PEOPLE", "physical_format": "Paperback", "isbn_10": ["0536610835"], "publish_date": "2000", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:49:11.305608"}, "authors": [{"key": "/authors/OL3445915A"}], "latest_revision": 2, "works": [{"key": "/works/OL9410452W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10477967M 3 2011-04-26T09:37:39.913687 {"publishers": ["Pearson Custom Publishing"], "physical_format": "Paperback", "subtitle": "A Guide to the Researched Paper with Readings", "last_modified": {"type": "/type/datetime", "value": "2011-04-26T09:37:39.913687"}, "title": "Taking a Stand", "identifiers": {"librarything": ["6308264"]}, "edition_name": "3rd edition", "isbn_13": ["9780536631909"], "isbn_10": ["0536631905"], "publish_date": "1996", "key": "/books/OL10477967M", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "latest_revision": 3, "oclc_numbers": ["48806164"], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10478011M 3 2022-12-08T08:52:46.760374 {"identifiers": {"librarything": ["5720752"]}, "physical_format": "Paperback", "key": "/books/OL10478011M", "title": "English 101 Introduction to Academic Writing 2001-2002 - Freshman Writing Program Department of English - Other Format", "isbn_13": ["9780536635952"], "isbn_10": ["0536635951"], "type": {"key": "/type/edition"}, "works": [{"key": "/works/OL31656092W"}], "local_id": ["urn:bwbsku:P7-BKB-227"], "source_records": ["promise:bwb_daily_pallets_2021-06-03"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-08T08:52:46.760374"}}
+/type/edition /books/OL10478285M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Pearson Custom Publishing"], "number_of_pages": 1512, "isbn_13": ["9780536683342"], "isbn_10": ["0536683344"], "publish_date": "2000", "key": "/books/OL10478285M", "title": "University Physics Volume 1 (Custom Edition)", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10478294M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "title": "Introductory Algebra 8th Edition", "isbn_13": ["9780536684028"], "isbn_10": ["0536684022"], "key": "/books/OL10478294M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10478464M 2 2010-08-17T02:24:24.526610 {"publishers": ["Pearson Custom Publishing"], "physical_format": "Spiral-bound", "last_modified": {"type": "/type/datetime", "value": "2010-08-17T02:24:24.526610"}, "title": "Introduction to Computer Tools for Engineers", "identifiers": {"librarything": ["8520303"]}, "isbn_13": ["9780536706836"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0536706832"], "publish_date": "2003", "key": "/books/OL10478464M", "latest_revision": 2, "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL1047846M 3 2020-11-17T23:38:28.401685 {"publishers": ["State Library & Adult Education Office, Colorado Dept. of Education"], "subject_place": ["Colorado."], "lc_classifications": ["LB3044.73.C6 L36 1992"], "latest_revision": 3, "key": "/books/OL1047846M", "authors": [{"key": "/authors/OL43681A"}], "publish_places": ["[Denver, Colo.]"], "contributions": ["Welborn, Lynda.", "Hamilton-Pennell, Christine."], "pagination": "xi, 144 p. ;", "source_records": ["marc:marc_records_scriblio_net/part24.dat:14864851:949", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:80005414:949"], "title": "The impact of school library media centers on academic achievement", "dewey_decimal_class": ["027.8/09788"], "notes": {"type": "/type/text", "value": "Includes bibliographical references.\n\"September 1992.\""}, "number_of_pages": 144, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["93620318"], "subjects": ["Instructional materials centers -- Colorado", "Academic achievement -- Colorado", "Educational surveys -- Colorado"], "publish_date": "1992", "publish_country": "cou", "last_modified": {"type": "/type/datetime", "value": "2020-11-17T23:38:28.401685"}, "by_statement": "Keith Curry Lance, Lynda Welborn, Christine Hamilton-Pennell.", "works": [{"key": "/works/OL135582W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10478738M 5 2010-04-24T18:03:28.112452 {"publishers": ["Pearson Custom Publishing"], "subtitle": "Interpersonal, Job-oriented Skills (Custom Lane Community College Edition)", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:03:28.112452"}, "title": "Human Relations", "identifiers": {"goodreads": ["4086775"]}, "isbn_13": ["9780536744623"], "physical_format": "Paperback", "isbn_10": ["0536744629"], "publish_date": "2004", "key": "/books/OL10478738M", "authors": [{"key": "/authors/OL225053A"}], "latest_revision": 5, "works": [{"key": "/works/OL1880007W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10478777M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780536747822"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "publishers": ["PEARSON Custom Publishing"], "title": "A Text for Art & Visual Technology, George Mason University (Fundamentals)", "edition_name": "Taken from the Art of Seeing, Fifth Edition edition", "isbn_10": ["0536747822"], "publish_date": "2002", "key": "/books/OL10478777M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10478789M 2 2011-04-26T17:06:19.689301 {"publishers": ["Pearson Custom Publishing"], "physical_format": "Paperback", "subtitle": "Social Problems Within Wisconsin", "last_modified": {"type": "/type/datetime", "value": "2011-04-26T17:06:19.689301"}, "title": "Contemporary American Society", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780536749932"], "isbn_10": ["0536749930"], "publish_date": "2003", "key": "/books/OL10478789M", "latest_revision": 2, "oclc_numbers": ["72523050"], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10478944M 3 2010-04-24T18:03:28.112452 {"publishers": ["Pearson Custom Publishing"], "key": "/books/OL10478944M", "title": "Communication (Making Connections)", "identifiers": {"goodreads": ["5347969"]}, "isbn_13": ["9780536810267"], "edition_name": "custom edition for Abilene Christian School edition", "physical_format": "Paperback", "isbn_10": ["0536810265"], "publish_date": "2004", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:03:28.112452"}, "latest_revision": 3, "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10478947M 2 2011-04-30T00:16:03.948199 {"publishers": ["Pearson"], "physical_format": "Paperback", "weight": "3.6 pounds", "title": "News Reporting- Writing Across Media (J102 & J203 Courses)", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2011-04-30T00:16:03.948199"}, "isbn_13": ["9780536811257"], "isbn_10": ["0536811253"], "publish_date": "2004", "key": "/books/OL10478947M", "authors": [{"key": "/authors/OL3446183A"}, {"key": "/authors/OL3446184A"}], "latest_revision": 2, "oclc_numbers": ["77484602"], "type": {"key": "/type/edition"}, "physical_dimensions": "10.9 x 8.2 x 1.3 inches", "revision": 2}
+/type/edition /books/OL10478958M 3 2010-04-13T06:02:20.682192 {"publishers": ["CAIS"], "physical_format": "Hardcover", "subtitle": "An ISP based case study.", "key": "/books/OL10478958M", "title": "@Internet Speed Technical Support", "number_of_pages": 180, "covers": [2473907], "isbn_13": ["9780536813749"], "isbn_10": ["0536813744"], "publish_date": "January 21, 1998", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:02:20.682192"}, "authors": [{"key": "/authors/OL3446182A"}], "latest_revision": 3, "works": [{"key": "/works/OL9410678W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10478983M 3 2010-04-24T18:03:28.112452 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:03:28.112452"}, "title": "Research and Strategic Communication (Custom edition for Strayer University)", "identifiers": {"goodreads": ["4796356"]}, "isbn_13": ["9780536814661"], "isbn_10": ["053681466X"], "latest_revision": 3, "key": "/books/OL10478983M", "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10479121M 2 2009-12-15T00:49:12.665140 {"publishers": ["Pearson Custom Publishing"], "key": "/books/OL10479121M", "title": "Course Guide for English 101 Language and Composition Fall 2004 Edition", "physical_format": "Paperback", "isbn_10": ["0536841942"], "publish_date": "2005", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:49:12.665140"}, "authors": [{"key": "/authors/OL3446220A"}], "latest_revision": 2, "works": [{"key": "/works/OL9410712W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10479264M 3 2010-04-24T18:03:28.112452 {"publishers": ["Pearson Custom Publishing"], "languages": [{"key": "/languages/eng"}], "key": "/books/OL10479264M", "title": "New Page; New Portals to Appreciating Our Global Environment", "identifiers": {"goodreads": ["408031"]}, "isbn_13": ["9780536900753"], "physical_format": "Paperback", "isbn_10": ["0536900752"], "publish_date": "2005", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:03:28.112452"}, "latest_revision": 3, "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10479517M 2 2011-04-26T03:03:15.072602 {"publishers": ["Pearson Custom Pub"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2011-04-26T03:03:15.072602"}, "title": "CFA 06 Level 1 Curriculum Package", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780536972729"], "physical_format": "Paperback", "isbn_10": ["0536972729"], "publish_date": "July 30, 2005", "key": "/books/OL10479517M", "latest_revision": 2, "oclc_numbers": ["173163548"], "type": {"key": "/type/edition"}, "subjects": ["Personal Finance - General", "Business & Economics", "Personal Finance"], "revision": 2}
+/type/edition /books/OL10479997M 3 2011-03-12T16:26:07.536327 {"publishers": ["South-Western Educational Publishing"], "physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2011-03-12T16:26:07.536327"}, "title": "Applications PC Microtools, IBM Templa", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780538106825"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0538106824"], "publish_date": "January 1999", "key": "/books/OL10479997M", "authors": [{"key": "/authors/OL592905A"}], "latest_revision": 3, "works": [{"key": "/works/OL9410895W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10480256M 2 2009-12-15T00:49:12.665140 {"physical_format": "Unknown Binding", "languages": [{"key": "/languages/eng"}], "publishers": ["South-Western Educational Publishing"], "isbn_10": ["0538205148"], "title": "Century 21 Typewriting Performance Tests", "edition_name": "3rd edition", "isbn_13": ["9780538205146"], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:49:12.665140"}, "publish_date": "December 1999", "key": "/books/OL10480256M", "authors": [{"key": "/authors/OL2743918A"}], "latest_revision": 2, "works": [{"key": "/works/OL8244877W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10480300M 3 2011-04-29T04:38:17.207004 {"publishers": ["South-Western Educational Publishing"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T04:38:17.207004"}, "title": "Century 21 Typewriting Tests 1-3", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780538208130"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0538208139"], "publish_date": "December 1999", "key": "/books/OL10480300M", "authors": [{"key": "/authors/OL2778053A"}], "latest_revision": 3, "oclc_numbers": ["43166262"], "works": [{"key": "/works/OL8346338W"}], "type": {"key": "/type/edition"}, "subjects": ["Secretarial Aids & Training", "Reference"], "revision": 3}
+/type/edition /books/OL10480503M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["South-Western Educational Publishing"], "number_of_pages": 96, "isbn_13": ["9780538262101"], "isbn_10": ["0538262109"], "publish_date": "December 1999", "key": "/books/OL10480503M", "authors": [{"key": "/authors/OL2670420A"}, {"key": "/authors/OL2725451A"}], "title": "MLS College Typewriting, Basic Course (T", "type": {"key": "/type/edition"}, "subjects": ["Secretarial Aids & Training", "Reference"], "revision": 1}
+/type/edition /books/OL10480705M 2 2009-10-25T06:21:05.822725 {"publishers": ["South-Western Educational Publishing"], "physical_format": "Unknown Binding", "source_records": ["amazon:053840244X"], "title": "Pal Agreement", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780538402446"], "languages": [{"key": "/languages/eng"}], "authors": [{"key": "/authors/OL2629499A"}], "isbn_10": ["053840244X"], "publish_date": "December 1999", "key": "/books/OL10480705M", "last_modified": {"type": "/type/datetime", "value": "2009-10-25T06:21:05.822725"}, "latest_revision": 2, "works": [{"key": "/works/OL274031W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10480718M 2 2009-12-15T00:49:13.870720 {"physical_format": "Unknown Binding", "title": "Pal Agreement", "isbn_10": ["0538402598"], "publishers": ["South-Western Educational Publishing"], "isbn_13": ["9780538402590"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:49:13.870720"}, "publish_date": "December 1999", "key": "/books/OL10480718M", "authors": [{"key": "/authors/OL1877814A"}], "latest_revision": 2, "works": [{"key": "/works/OL6849373W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10481324M 2 2022-12-08T15:14:14.445735 {"physical_format": "Hardcover", "publishers": ["South-Western Educational Publishing"], "title": "Century 21 Dictionary of Accounting Term", "isbn_13": ["9780538606530"], "isbn_10": ["0538606533"], "publish_date": "December 1999", "key": "/books/OL10481324M", "authors": [{"key": "/authors/OL2756952A"}, {"key": "/authors/OL3446642A"}, {"key": "/authors/OL2777986A"}], "type": {"key": "/type/edition"}, "subjects": ["Accounting - General", "Business & Economics", "Business / Economics / Finance"], "works": [{"key": "/works/OL31695630W"}], "local_id": ["urn:bwbsku:O7-BAN-936"], "source_records": ["promise:bwb_daily_pallets_2021-04-06"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-08T15:14:14.445735"}}
+/type/edition /books/OL10481526M 2 2009-12-15T00:49:13.870720 {"physical_format": "Paperback", "title": "TechPro", "isbn_10": ["0538617292"], "publishers": ["International Thomson Publishing"], "edition_name": "1 edition", "isbn_13": ["9780538617291"], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:49:13.870720"}, "publish_date": "September 8, 1992", "key": "/books/OL10481526M", "authors": [{"key": "/authors/OL592892A"}], "latest_revision": 2, "works": [{"key": "/works/OL3534878W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10481635M 2 2009-12-15T00:49:13.870720 {"physical_format": "Mass Market Paperback", "title": "Wagon Wheel Apt #1, Prj in Bus Rcrd Keepg", "isbn_10": ["0538623772"], "publishers": ["Thomson South-Western"], "isbn_13": ["9780538623773"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:49:13.870720"}, "publish_date": "December 1999", "key": "/books/OL10481635M", "authors": [{"key": "/authors/OL2778017A"}], "latest_revision": 2, "subjects": ["Accounting - General", "Business / Economics / Finance"], "works": [{"key": "/works/OL8346256W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10481794M 2 2009-12-15T00:49:13.870720 {"physical_format": "Library Binding", "subtitle": "Quick Course", "publishers": ["International Thomson Publishing"], "isbn_10": ["0538634138"], "number_of_pages": 178, "edition_name": "1 edition", "isbn_13": ["9780538634137"], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:49:13.870720"}, "publish_date": "January 1900", "key": "/books/OL10481794M", "authors": [{"key": "/authors/OL292100A"}], "title": "WordPerfect 6.0/6.1 DOS ", "latest_revision": 2, "works": [{"key": "/works/OL2250612W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL1048180M 3 2020-11-17T23:42:39.915659 {"publishers": ["State of Minnesota, Office of the Attorney General"], "subtitle": "when charity calls", "subject_place": ["Minnesota."], "lc_classifications": ["HV41.9.U5 H85 1991"], "latest_revision": 3, "key": "/books/OL1048180M", "authors": [{"key": "/authors/OL372696A"}], "publish_places": ["[St. Paul]"], "contributions": ["Minnesota. Attorney General."], "pagination": "1 v. (various pagings) :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:80329305:749"], "title": "Professional telemarketing", "lccn": ["93620780"], "notes": {"type": "/type/text", "value": "Cover title.\n\"November, 1991.\""}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "subjects": ["Telephone fund raising -- Minnesota.", "Telemarketing -- Minnesota."], "publish_date": "1991", "publish_country": "mnu", "last_modified": {"type": "/type/datetime", "value": "2020-11-17T23:42:39.915659"}, "by_statement": "Hubert H. Humphrey, III.", "works": [{"key": "/works/OL2594000W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10482074M 2 2009-12-15T00:49:15.014924 {"physical_format": "Paperback", "title": "Workplace Writing Module 3 Learning Set of 15", "isbn_10": ["0538642270"], "publishers": ["South-Western Pub"], "isbn_13": ["9780538642279"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:49:15.014924"}, "publish_date": "October 1997", "key": "/books/OL10482074M", "authors": [{"key": "/authors/OL2778204A"}], "latest_revision": 2, "subjects": ["Business Communication - General", "Business & Economics", "Business / Economics / Finance", "Business/Economics"], "works": [{"key": "/works/OL8346726W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10482359M 2 2009-12-15T00:49:15.014924 {"physical_format": "Unknown Binding", "subtitle": "Env SC", "title": "Ppkg Wn Sch Site Ver, Blue Venture", "isbn_10": ["0538662255"], "publishers": ["South-Western Educational Publishing"], "isbn_13": ["9780538662253"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:49:15.014924"}, "publish_date": "December 1999", "key": "/books/OL10482359M", "authors": [{"key": "/authors/OL3446758A"}], "latest_revision": 2, "works": [{"key": "/works/OL9411441W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10482794M 3 2011-04-29T13:33:51.043321 {"isbn_13": ["9780538692106"], "last_modified": {"type": "/type/datetime", "value": "2011-04-29T13:33:51.043321"}, "title": "Intro to Business Fourth Edition (South-western) Applying Technology Data Disk, Macintosh", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "covers": [6254888], "physical_format": "Diskette", "isbn_10": ["0538692103"], "latest_revision": 3, "key": "/books/OL10482794M", "oclc_numbers": ["49706004"], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10483256M 3 2011-04-29T21:02:27.734469 {"publishers": ["International Thomson Publishing"], "physical_format": "Library Binding", "subtitle": "QuickTorial", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T21:02:27.734469"}, "title": "Claris FileMaker Pro 3.0 Mac/Windows ", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 160, "edition_name": "1 edition", "isbn_13": ["9780538715669"], "isbn_10": ["0538715669"], "publish_date": "September 4, 1996", "key": "/books/OL10483256M", "authors": [{"key": "/authors/OL3446867A"}], "latest_revision": 3, "oclc_numbers": ["36810897"], "works": [{"key": "/works/OL9411537W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10483342M 5 2019-07-31T04:10:58.907040 {"publishers": ["Course Technology"], "number_of_pages": 448, "subtitle": "Tutorial", "weight": "1.9 pounds", "physical_format": "Spiral-bound", "last_modified": {"type": "/type/datetime", "value": "2019-07-31T04:10:58.907040"}, "latest_revision": 5, "key": "/books/OL10483342M", "authors": [{"key": "/authors/OL216724A"}, {"key": "/authors/OL2734401A"}, {"key": "/authors/OL1400423A"}], "subjects": ["Macintosh", "Multimedia", "Spreadsheet software", "Storage media & peripherals", "Computers", "Computers - Certification", "Computer Books: General", "Business Software - General", "Certification Guides - General", "Computers / General", "CD-DVD Technology", "Spreadsheets - General"], "edition_name": "1 edition", "languages": [{"key": "/languages/eng"}], "title": "Clarisworks 5.0 Tutorial Macintosh and Windows 95", "identifiers": {"goodreads": ["3000641"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780538720755"], "isbn_10": ["0538720751"], "publish_date": "April 29, 1998", "oclc_numbers": ["41976325"], "works": [{"key": "/works/OL13534073W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.6 x 9 x 0.8 inches", "revision": 5}
+/type/edition /books/OL10483638M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780324008647"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "publishers": ["Southwestern Pub Co"], "title": "Std Template Disk-Mngmnt Acct", "edition_name": "4th edition", "isbn_10": ["0324008643"], "publish_date": "January 1997", "key": "/books/OL10483638M", "authors": [{"key": "/authors/OL2732483A"}, {"key": "/authors/OL3012036A"}], "type": {"key": "/type/edition"}, "subjects": ["Business/Economics"], "revision": 1}
+/type/edition /books/OL10483978M 2 2009-12-15T00:49:16.634221 {"physical_format": "Paperback", "title": "Web Tutor", "isbn_10": ["0324072597"], "publishers": ["Thomson Learning"], "isbn_13": ["9780324072594"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:49:16.634221"}, "publish_date": "June 2000", "key": "/books/OL10483978M", "authors": [{"key": "/authors/OL3012247A"}], "latest_revision": 2, "subjects": ["Internet - General", "Computers", "Computer Books: Internet General"], "works": [{"key": "/works/OL8814277W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10484444M 3 2011-02-21T07:56:56.818828 {"publishers": ["Thomson South-Western"], "weight": "4 pounds", "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-02-21T07:56:56.818828"}, "latest_revision": 3, "key": "/books/OL10484444M", "authors": [{"key": "/authors/OL3447121A"}], "subjects": ["General", "Legal Reference / Law Profession"], "edition_name": "3rd edition", "languages": [{"key": "/languages/eng"}], "classifications": {}, "title": "Understanding the Law", "notes": {"type": "/type/text", "value": "with CDROM"}, "identifiers": {}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780324179804"], "isbn_10": ["0324179804"], "publish_date": "October 2001", "works": [{"key": "/works/OL9411718W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.6 x 7.5 x 1.1 inches", "revision": 3}
+/type/edition /books/OL10484922M 6 2021-08-20T05:08:16.149473 {"publishers": ["Thomson; South- Western"], "identifiers": {"goodreads": ["2966678"]}, "physical_format": "Hardcover", "key": "/books/OL10484922M", "authors": [{"key": "/authors/OL393421A"}], "subjects": ["Business & Investing - Management", "BUSINESS & ECONOMICS / Management Science"], "edition_name": "5th edition", "title": "Spreadsheet Modeling and Decision Analysis- Text Only", "number_of_pages": 840, "isbn_13": ["9780324312508"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0324312504"], "publish_date": "2007", "oclc_numbers": ["71249125"], "works": [{"key": "/works/OL2692251W"}], "type": {"key": "/type/edition"}, "covers": [11718850], "ocaid": "spreadsheetmodel0005rags", "lccn": ["2006922918"], "lc_classifications": ["T57.62 .R34 2007"], "source_records": ["ia:spreadsheetmodel0005rags"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-08-20T05:08:16.149473"}}
+/type/edition /books/OL10485456M 10 2020-12-04T12:58:31.327431 {"publishers": ["Heinemann Drama"], "identifiers": {"librarything": ["136019"], "goodreads": ["254684"]}, "subtitle": "A Training Guide to Commedia Techniques", "weight": "15.5 ounces", "isbn_10": ["0325003467"], "covers": [2385307, 194945], "physical_format": "Paperback", "lc_classifications": ["PQ4155.G73 2000b", "PQ4155 .G73 2000b"], "key": "/books/OL10485456M", "authors": [{"key": "/authors/OL1609021A"}], "subjects": ["Acting & Auditioning", "Comedy", "General", "Performing Arts", "Commedia dell'arte", "Improvisation (Acting)", "Technique", "Performing Arts/Dance"], "isbn_13": ["9780325003467"], "source_records": ["marc:marc_openlibraries_sanfranciscopubliclibrary/sfpl_chq_2018_12_24_run02.mrc:242035880:1677", "bwb:9780325003467", "marc:marc_loc_2016/BooksAll.2016.part29.utf8:14599641:760"], "title": "Playing Commedia", "number_of_pages": 288, "languages": [{"key": "/languages/eng"}], "local_id": ["urn:sfpl:31223060895258", "urn:sfpl:31223060895266"], "publish_date": "February 21, 2001", "works": [{"key": "/works/OL6226064W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.2 x 6.2 x 0.8 inches", "lccn": ["2001278311"], "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-04T12:58:31.327431"}}
+/type/edition /books/OL10485480M 10 2022-12-10T12:04:36.169888 {"publishers": ["Heinemann"], "identifiers": {"librarything": ["1380381"], "goodreads": ["3011535"], "amazon": [""]}, "subtitle": "Lessons in Intellectual Freedom", "weight": "12.5 ounces", "covers": [2385341, 194967], "physical_format": "Paperback", "lc_classifications": ["LC72.2.P57 2002", "LC72.2 .P57 2002"], "key": "/books/OL10485480M", "authors": [{"key": "/authors/OL3237304A"}, {"key": "/authors/OL1430141A"}], "ocaid": "isbn_9780325003955", "subjects": ["Organization & management of education", "Schools", "Education", "Education / Teaching", "USA", "Secondary", "Teaching Methods & Materials - General", "Education / Professional Development", "General", "Academic freedom", "Censorship", "Public schools", "Teaching, Freedom of", "United States"], "isbn_13": ["9780325003955"], "source_records": ["ia:isbn_9780325003955", "bwb:9780325003955", "marc:marc_loc_2016/BooksAll.2016.part28.utf8:217181125:914", "promise:bwb_daily_pallets_2020-04-09"], "title": "At the Schoolhouse Gate", "number_of_pages": 256, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0325003955"], "publish_date": "January 11, 2002", "works": [{"key": "/works/OL17204211W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.1 x 6.1 x 0.6 inches", "lccn": ["2001039909"], "local_id": ["urn:bwbsku:O6-BGK-516"], "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T12:04:36.169888"}}
+/type/edition /books/OL10485620M 11 2021-09-16T08:51:12.769367 {"publishers": ["Boynton/Cook"], "identifiers": {"goodreads": ["1928933"]}, "subtitle": "Rhetoric, Writing, Teaching", "weight": "2.4 ounces", "covers": [2385506], "physical_format": "Paperback", "key": "/books/OL10485620M", "authors": [{"key": "/authors/OL2932231A"}], "subjects": ["Creative Writing", "Language Arts & Disciplines", "Language Arts / Linguistics / Literacy", "Language", "Rhetoric", "Composition & Creative Writing - General", "Emotions", "College students", "English language", "Psychological aspects", "Psychology", "Report writing", "Study and teaching (Higher)"], "isbn_13": ["9780325010991"], "source_records": ["amazon:0325010994", "marc:marc_loc_updates/v35.i26.records.utf8:12948015:1109", "marc:marc_loc_updates/v36.i04.records.utf8:16605419:1200", "marc:marc_ithaca_college/ic_marc.mrc:223871748:1125", "bwb:9780325010991", "marc:marc_loc_2016/BooksAll.2016.part34.utf8:130955496:1200"], "title": "Doing Emotion", "number_of_pages": 144, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0325010994"], "publish_date": "August 30, 2007", "works": [{"key": "/works/OL8679438W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "3.3 x 2.6 x 0.1 inches", "lccn": ["2007024170"], "lc_classifications": ["PE1404 .M53 2007", "PE1404.M53 2007"], "latest_revision": 11, "revision": 11, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-09-16T08:51:12.769367"}}
+/type/edition /books/OL10485704M 5 2022-10-27T23:12:03.509012 {"publishers": ["Penguin"], "physical_format": "Mass Market Paperback", "classifications": {}, "title": "Sammy Going South", "identifiers": {"goodreads": ["6296206"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0326565981"], "publish_date": "1963", "key": "/books/OL10485704M", "authors": [{"key": "/authors/OL3447484A"}], "works": [{"key": "/works/OL9411936W"}], "type": {"key": "/type/edition"}, "source_records": ["amazon:0326565981"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-27T23:12:03.509012"}}
+/type/edition /books/OL10485933M 3 2011-04-26T00:01:56.628173 {"publishers": ["Lexis Law Pub"], "physical_format": "Paperback", "weight": "3.3 pounds", "title": "1999 Larmac Consolidated Index to the Constitution and Laws of California", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780327063261"], "covers": [5063411], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0327063262"], "publish_date": "December 1998", "key": "/books/OL10485933M", "last_modified": {"type": "/type/datetime", "value": "2011-04-26T00:01:56.628173"}, "latest_revision": 3, "oclc_numbers": ["40666246"], "type": {"key": "/type/edition"}, "subjects": ["Government - State, Provincial & Municipal", "Law", "Reference"], "physical_dimensions": "10 x 7.5 x 1.8 inches", "revision": 3}
+/type/edition /books/OL10486252M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Mathew Bender and Company Inc."], "title": "Federal Veterans Laws, Rules and Regulations", "isbn_13": ["9780327161479"], "isbn_10": ["0327161477"], "publish_date": "2002", "key": "/books/OL10486252M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10486451M 3 2011-04-29T18:15:18.553115 {"publishers": ["Scott Foresman"], "physical_format": "Unknown Binding", "subtitle": "Early childhood", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T18:15:18.553115"}, "title": "Pre-K mathematics curriculum", "number_of_pages": 317, "isbn_13": ["9780328022984"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0328022985"], "publish_date": "2002", "key": "/books/OL10486451M", "authors": [{"key": "/authors/OL3302381A"}], "latest_revision": 3, "oclc_numbers": ["51212165"], "works": [{"key": "/works/OL9245352W"}], "type": {"key": "/type/edition"}, "subjects": ["Curricula", "Early childhood education", "Mathematics", "Study and teaching (Primary)"], "revision": 3}
+/type/edition /books/OL10486554M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "subtitle": "Social Studies", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "title": "Daily Activity Book", "isbn_13": ["9780328039180"], "isbn_10": ["0328039187"], "key": "/books/OL10486554M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10486881M 4 2022-12-07T21:30:00.505511 {"publishers": ["Scott Foreman, Addison Wesley"], "physical_format": "Paperback", "number_of_pages": 198, "identifiers": {"goodreads": ["4550154"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0328103802"], "publish_date": "2005", "key": "/books/OL10486881M", "authors": [{"key": "/authors/OL2627618A"}], "title": "Virginia Daily Practice and SOL Test Prep / Grade 5 (Mathematics)", "works": [{"key": "/works/OL14992539W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:P7-CJT-112"], "source_records": ["promise:bwb_daily_pallets_2021-09-14"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-07T21:30:00.505511"}}
+/type/edition /books/OL10487143M 6 2022-02-16T05:56:55.982500 {"publishers": ["Scott Foresman & Co"], "number_of_pages": 168, "subtitle": "Grade K", "weight": "11.2 ounces", "physical_format": "Paperback", "lc_classifications": ["LB1590 .T644 2008", "LB1590 .T48 2008"], "key": "/books/OL10487143M", "authors": [{"key": "/authors/OL3293262A"}], "subjects": ["Language Arts - Handwriting", "Juvenile Nonfiction", "Children: Kindergarten"], "edition_name": "Student edition", "languages": [{"key": "/languages/eng"}], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part42.utf8:204319595:1506", "ia:dnealianhandwrit0000thur_a8n6"], "title": "D'nealian Handwriting", "lccn": ["2015473206"], "identifiers": {"goodreads": ["4510761"]}, "isbn_13": ["9780328211968"], "isbn_10": ["0328211966"], "publish_date": "March 30, 2007", "works": [{"key": "/works/OL9234179W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.8 x 8.8 x 0.4 inches", "covers": [12633497], "ocaid": "dnealianhandwrit0000thur_a8n6", "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-16T05:56:55.982500"}}
+/type/edition /books/OL1048736M 2 2020-11-17T23:49:02.907758 {"publishers": ["The Center"], "subtitle": "a guide to program implementation", "lc_classifications": ["TD897 .P624 1993"], "latest_revision": 2, "key": "/books/OL1048736M", "publish_places": ["Champaign, IL (One E. Hazelwood Dr., Champaign 61820)"], "contributions": ["Illinois. Hazardous Waste Research and Information Center."], "pagination": "ii, 44 p. ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:80851095:828"], "title": "Pollution prevention", "dewey_decimal_class": ["658.4/08"], "notes": {"type": "/type/text", "value": "Includes bibliography (p. 44).\n\"February 1993\"--Cover.\n\"TR-009\"--Cover."}, "number_of_pages": 44, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["93621506"], "subjects": ["Factory and trade waste -- Management.", "Pollution prevention."], "publish_date": "1993", "publish_country": "ilu", "last_modified": {"type": "/type/datetime", "value": "2020-11-17T23:49:02.907758"}, "by_statement": "Illinois Hazardous Waste Research and Information Center.", "works": [{"key": "/works/OL23524946W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10488152M 7 2022-11-11T19:41:39.284819 {"publishers": ["Pan Books Ltd"], "number_of_pages": 224, "title": "Three Plays Juno and the Paycock the Shado (Pan Classics)", "identifiers": {"goodreads": ["570735"], "librarything": ["93222"]}, "isbn_13": ["9780330262712"], "covers": [2385727, 195307], "physical_format": "Paperback", "isbn_10": ["0330262718"], "publish_date": "October 10, 1980", "key": "/books/OL10488152M", "authors": [{"key": "/authors/OL123281A"}], "works": [{"key": "/works/OL1219608W"}], "type": {"key": "/type/edition"}, "subjects": ["Drama texts: from c 1900 -", "English, Irish, Scottish, Welsh", "Drama"], "local_id": ["urn:bwbsku:KR-167-314"], "source_records": ["promise:bwb_daily_pallets_2022-11-03"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-11T19:41:39.284819"}}
+/type/edition /books/OL10488458M 5 2020-11-17T16:30:21.944694 {"publishers": ["Red Sea Pr"], "identifiers": {"goodreads": ["1665238"]}, "subtitle": " Selected Poems", "physical_format": "Paperback", "lc_classifications": ["PS3573.I33 A6 1992"], "latest_revision": 5, "key": "/books/OL10488458M", "authors": [{"key": "/authors/OL757791A"}], "isbn_13": ["9780330273220"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:46741769:575"], "title": "The Last Century", "lccn": ["93202440"], "number_of_pages": 140, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0330273221"], "publish_date": "November 1996", "last_modified": {"type": "/type/datetime", "value": "2020-11-17T16:30:21.944694"}, "works": [{"key": "/works/OL4062086W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10488486M 8 2022-12-10T00:47:20.532990 {"physical_format": "Paperback", "number_of_pages": 384, "title": "Flashman and the Redskins", "identifiers": {"librarything": ["18695"], "goodreads": ["1690804"]}, "covers": [2385766, 195372], "isbn_13": ["9780330280044"], "isbn_10": ["033028004X"], "key": "/books/OL10488486M", "works": [{"key": "/works/OL1823774W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780330280044", "promise:bwb_daily_pallets_2020-09-09"], "local_id": ["urn:bwbsku:KO-195-312"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T00:47:20.532990"}}
+/type/edition /books/OL10488613M 6 2022-12-07T05:35:30.779429 {"publishers": ["Pan Books"], "identifiers": {"librarything": ["1223346"]}, "physical_format": "Paperback", "key": "/books/OL10488613M", "authors": [{"key": "/authors/OL2705393A"}], "subjects": ["Romance"], "classifications": {}, "title": "Autumn Always Comes", "notes": {"type": "/type/text", "value": "Heartlines"}, "number_of_pages": 128, "isbn_13": ["9780330284424"], "isbn_10": ["0330284428"], "publish_date": "October 12, 1984", "oclc_numbers": ["655310925"], "works": [{"key": "/works/OL8125976W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:KP-172-467"], "source_records": ["promise:bwb_daily_pallets_2022-03-17"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-07T05:35:30.779429"}}
+/type/edition /books/OL10488910M 6 2022-12-08T15:03:51.863082 {"publishers": ["Pan Books"], "identifiers": {"librarything": ["5142729"]}, "title": "Accounting (Study Aids for GCSE)", "number_of_pages": 384, "isbn_13": ["9780330294119"], "physical_format": "Paperback", "isbn_10": ["0330294113"], "publish_date": "March 11, 1988", "key": "/books/OL10488910M", "authors": [{"key": "/authors/OL2750768A"}], "oclc_numbers": ["24738701"], "works": [{"key": "/works/OL8267315W"}], "type": {"key": "/type/edition"}, "subjects": ["Business studies", "Study guides, home study & revision notes"], "covers": [12155587], "ocaid": "accounting0000herb", "source_records": ["ia:accounting0000herb", "promise:bwb_daily_pallets_2021-04-08"], "local_id": ["urn:bwbsku:KP-680-200"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-08T15:03:51.863082"}}
+/type/edition /books/OL10489015M 5 2011-04-25T14:17:14.224567 {"publishers": ["Pan Books"], "identifiers": {"goodreads": ["2368431"]}, "last_modified": {"type": "/type/datetime", "value": "2011-04-25T14:17:14.224567"}, "title": "Keeper of Dreams", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "type": {"key": "/type/edition"}, "number_of_pages": 288, "edition_name": "New Ed edition", "isbn_13": ["9780330297202"], "isbn_10": ["0330297201"], "publish_date": "February 22, 1991", "key": "/books/OL10489015M", "authors": [{"key": "/authors/OL1130096A"}], "latest_revision": 5, "oclc_numbers": ["24710079"], "works": [{"key": "/works/OL5124119W"}], "physical_format": "Paperback", "subjects": ["Modern fiction"], "revision": 5}
+/type/edition /books/OL1048912M 3 2020-11-17T23:51:05.987028 {"publishers": ["Pennsylvania State Data Center, Institute of State and Regional Affairs, Penn State Harrisburg"], "subtitle": "a demographic and economic overview : report prepared for the Future of small cities: Pennsylvania, held at Lafayette College, November 5-6, 1992", "subject_place": ["Pennsylvania"], "lc_classifications": ["HA605 .S48 1992"], "latest_revision": 3, "key": "/books/OL1048912M", "authors": [{"key": "/authors/OL562281A"}], "publish_places": ["Middletown, PA (777 W Harrisburg Pike, Middletown 17057-4898)"], "pagination": "32 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:81023881:1169"], "title": "Pennsylvania and its third class cities", "lccn": ["93621723"], "notes": {"type": "/type/text", "value": "\"Produced for presentation and as a background report for the \"Future of Small Cities\" conference\"--P. [2] of cover.\n\"November 1992.\"\nErrata slip inserted.\nChiefly tables."}, "number_of_pages": 32, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "subjects": ["Cities and towns -- Pennsylvania -- Statistics.", "Pennsylvania -- Population -- Statistics.", "Pennsylvania -- Economic conditions -- Statistics."], "publish_date": "1992", "publish_country": "pau", "last_modified": {"type": "/type/datetime", "value": "2020-11-17T23:51:05.987028"}, "by_statement": "by Diane E. Shoop.", "works": [{"key": "/works/OL3418978W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10489225M 2 2009-12-15T00:49:19.878859 {"publishers": ["Pan Macmillan"], "isbn_10": ["0330304143"], "number_of_pages": 32, "isbn_13": ["9780330304146"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:49:19.878859"}, "publish_date": "September 2, 1988", "latest_revision": 2, "key": "/books/OL10489225M", "authors": [{"key": "/authors/OL3447994A"}], "title": "Mental Arithmetic", "subjects": ["Mathematics"], "works": [{"key": "/works/OL9412627W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10489455M 7 2022-12-09T18:06:33.078151 {"publishers": ["Pan Books"], "number_of_pages": 160, "title": "Pssst....", "type": {"key": "/type/edition"}, "identifiers": {"goodreads": ["5720679"]}, "isbn_13": ["9780330311090"], "isbn_10": ["0330311093"], "publish_date": "May 1989", "key": "/books/OL10489455M", "authors": [{"key": "/authors/OL2793576A"}], "oclc_numbers": ["51551403"], "works": [{"key": "/works/OL8383701W"}], "physical_format": "Paperback", "subjects": ["Beverages"], "covers": [11700026], "ocaid": "pssstreallyusefu0000mary", "source_records": ["ia:pssstreallyusefu0000mary", "promise:bwb_daily_pallets_2020-10-26"], "local_id": ["urn:bwbsku:KO-539-505"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T18:06:33.078151"}}
+/type/edition /books/OL10489808M 6 2021-08-09T23:46:48.670342 {"publishers": ["Pan"], "number_of_pages": 352, "title": "Megatrends 2000", "physical_format": "Paperback", "identifiers": {"goodreads": ["6667751"], "librarything": ["86082"]}, "isbn_13": ["9780330321396"], "isbn_10": ["0330321390"], "publish_date": "1991", "key": "/books/OL10489808M", "authors": [{"key": "/authors/OL3448114A"}], "works": [{"key": "/works/OL9412821W"}], "type": {"key": "/type/edition"}, "covers": [11572460], "ocaid": "megatrends2000ne0000nais_b5i9", "lc_classifications": ["HN59.2 .N33 1990", "HN59.2 .N342 1990"], "source_records": ["ia:megatrends2000ne0000nais_b5i9"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-08-09T23:46:48.670342"}}
+/type/edition /books/OL10490146M 5 2010-08-17T02:30:01.813277 {"publishers": ["Picador"], "number_of_pages": 512, "last_modified": {"type": "/type/datetime", "value": "2010-08-17T02:30:01.813277"}, "title": "The Letters of William S.Burroughs, 1945-59", "identifiers": {"goodreads": ["2979850"], "librarything": ["1154995"]}, "isbn_13": ["9780330330749"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Hardcover", "isbn_10": ["0330330748"], "publish_date": "August 27, 1993", "key": "/books/OL10490146M", "authors": [{"key": "/authors/OL2621924A"}], "latest_revision": 5, "works": [{"key": "/works/OL14960462W"}], "type": {"key": "/type/edition"}, "subjects": ["Biography: general", "Novels, other prose & writers: from c 1900 -", "USA", "c 1945 to c 1960", "English"], "revision": 5}
+/type/edition /books/OL10490445M 5 2011-04-30T05:15:32.083864 {"publishers": ["Trans-Atlantic Publications"], "identifiers": {"librarything": ["1336316"]}, "covers": [2386592, 196311], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-30T05:15:32.083864"}, "latest_revision": 5, "key": "/books/OL10490445M", "authors": [{"key": "/authors/OL3448197A"}], "subjects": ["Crosswords", "Dictionaries", "Crosswords - General", "Games / Gamebooks / Crosswords", "Reference"], "edition_name": "2nd edition", "title": "The Pan Crossword Dictionary (Crossword)", "number_of_pages": 512, "isbn_13": ["9780330341257"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0330341251"], "publish_date": "December 1995", "oclc_numbers": ["60309474"], "works": [{"key": "/works/OL9412929W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10490529M 8 2022-12-09T13:48:20.476452 {"publishers": ["Pan Publishing"], "identifiers": {"goodreads": ["2346893"], "librarything": ["2988670"]}, "subtitle": "How to Stay Ahead of the Competition (Effective\u00a6 Series)", "weight": "7 ounces", "covers": [2386693], "physical_format": "Paperback", "key": "/books/OL10490529M", "authors": [{"key": "/authors/OL2729090A"}], "subjects": ["Business strategy", "Management & management techniques", "Research & development management", "Industrial Management", "Structural Adjustment", "General", "Reference", "Business / Economics / Finance"], "isbn_13": ["9780330344753"], "title": "Effective Innovation", "number_of_pages": 320, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0330344757"], "publish_date": "February 2003", "works": [{"key": "/works/OL8202459W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "7.6 x 5.1 x 0.9 inches", "ocaid": "effectiveinnovat0000adai", "lc_classifications": ["HD58.8 ADA 2003"], "source_records": ["ia:effectiveinnovat0000adai", "promise:bwb_daily_pallets_2020-11-19"], "local_id": ["urn:bwbsku:ko-301-734"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T13:48:20.476452"}}
+/type/edition /books/OL10490533M 9 2022-07-10T16:23:43.414645 {"publishers": ["Macmillan Children's Books"], "identifiers": {"goodreads": ["1690411"], "librarything": ["8085630"]}, "covers": [2386699], "physical_format": "Paperback", "key": "/books/OL10490533M", "authors": [{"key": "/authors/OL18184A"}], "ocaid": "dogerbilsgotohea0000wils", "subjects": ["Short stories", "Religion - General", "Juvenile Nonfiction", "Children: Grades 2-3"], "edition_name": "New Ed edition", "languages": [{"key": "/languages/eng"}], "source_records": ["ia:dogerbilsgotohea0000wils"], "title": "Do Gerbils Go to Heaven (Adventures with Jeremy James)", "number_of_pages": 112, "isbn_13": ["9780330345170"], "isbn_10": ["0330345176"], "publish_date": "May 1996", "works": [{"key": "/works/OL4395475W"}], "type": {"key": "/type/edition"}, "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-10T16:23:43.414645"}}
+/type/edition /books/OL10490626M 10 2022-12-17T15:06:49.876204 {"publishers": ["Macmillan UK"], "number_of_pages": 57, "weight": "1.6 ounces", "covers": [2386781], "physical_format": "Paperback", "key": "/books/OL10490626M", "authors": [{"key": "/authors/OL358605A"}], "subjects": ["Fiction", "Juvenile Fiction", "Children's Books/Ages 9-12 Fiction", "Children: Grades 2-3", "Health & Daily Living - General", "Humorous Stories", "School & Education", "Juvenile Fiction / School & Education", "General"], "edition_name": "New Ed edition", "title": "In Stitches with Ms Wiz", "identifiers": {"goodreads": ["407215"], "librarything": ["5433889"]}, "isbn_13": ["9780330347648"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0330347640"], "publish_date": "September 1, 1996", "works": [{"key": "/works/OL2535210W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "7.7 x 4.9 x 0.2 inches", "ocaid": "institcheswithms0000blac_e1d3", "source_records": ["ia:institcheswithms0000blac_e1d3", "promise:bwb_daily_pallets_2020-11-19", "bwb:9780330347648"], "local_id": ["urn:bwbsku:KO-066-813"], "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T15:06:49.876204"}}
+/type/edition /books/OL10490830M 7 2020-08-23T10:54:54.278115 {"publishers": ["Pan Books"], "number_of_pages": 293, "weight": "7.8 ounces", "covers": [2387022, 196738], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2020-08-23T10:54:54.278115"}, "latest_revision": 7, "key": "/books/OL10490830M", "authors": [{"key": "/authors/OL237257A"}], "ocaid": "intothinairperso0000krak_b4e0", "subjects": ["Climbing & mountaineering", "True stories of endurance & survival", "Himalayas", "Sports"], "edition_name": "New Ed edition", "first_sentence": {"type": "/type/text", "value": "Straddling the top of the world, one foot in China and the other in Nepal, I cleared the ice from my oxygen mask, hunched a shoulder against the wind, and stared absently down at the vastness of Tibet."}, "source_records": ["ia:intothinairperso0000krak_b4e0"], "title": "Into Thin Air", "identifiers": {"librarything": ["3756"], "goodreads": ["824054"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780330353977"], "isbn_10": ["0330353977"], "publish_date": "August 7, 1998", "works": [{"key": "/works/OL1974548W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "7.7 x 5.2 x 0.9 inches", "revision": 7}
+/type/edition /books/OL10490868M 6 2022-12-05T07:03:57.788879 {"publishers": ["Tor"], "number_of_pages": 326, "title": "Wasted Space", "identifiers": {"librarything": ["2368146"]}, "isbn_13": ["9780330355605"], "covers": [5063608], "physical_format": "Paperback", "isbn_10": ["0330355600"], "publish_date": "August 22, 1997", "key": "/books/OL10490868M", "authors": [{"key": "/authors/OL3429939A"}], "oclc_numbers": ["35622324"], "works": [{"key": "/works/OL9393332W"}], "type": {"key": "/type/edition"}, "subjects": ["Modern fiction"], "local_id": ["urn:bwbsku:110-ABA-634"], "source_records": ["promise:bwb_daily_pallets_2022-05-23"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-05T07:03:57.788879"}}
+/type/edition /books/OL10490960M 7 2021-06-23T05:23:27.199764 {"publishers": ["Pan Macmillan Australia"], "physical_format": "Unknown Binding", "subtitle": "Two candidates-- one winner", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part01.utf8:118844125:774", "ia:spintwocandidate0000mack"], "title": "The spin", "number_of_pages": 300, "isbn_13": ["9780330361439"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0330361430"], "publish_date": "1999", "key": "/books/OL10490960M", "authors": [{"key": "/authors/OL2696616A"}], "works": [{"key": "/works/OL8097867W"}], "type": {"key": "/type/edition"}, "identifiers": {"librarything": ["6658619"], "goodreads": ["2394358"]}, "covers": [11297360], "ocaid": "spintwocandidate0000mack", "lccn": ["00340439"], "lc_classifications": ["PR9619.3.M2125 S75 1999"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-06-23T05:23:27.199764"}}
+/type/edition /books/OL10491233M 10 2022-12-17T16:04:14.985438 {"publishers": ["Macmillan UK"], "number_of_pages": 280, "weight": "7 ounces", "covers": [10430913], "physical_format": "Paperback", "key": "/books/OL10491233M", "authors": [{"key": "/authors/OL3307350A"}], "ocaid": "funnystoriesforn0000unse", "subjects": ["Fiction anthologies & collections", "Short Stories", "Humorous Stories", "Juvenile Fiction / Short Stories", "General", "Juvenile Fiction", "Children's Books/Ages 9-12 Fiction", "Children: Grades 2-3"], "isbn_13": ["9780330374910"], "classifications": {}, "source_records": ["ia:funnystoriesforn0000unse", "promise:bwb_daily_pallets_2020-10-14", "bwb:9780330374910"], "title": "Funny Stories for 9 Year Olds", "identifiers": {"goodreads": ["339912"], "librarything": ["4141196"], "amazon": [""]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0330374915"], "publish_date": "September 1, 1999", "oclc_numbers": ["41466676"], "works": [{"key": "/works/OL9250969W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "7.7 x 4.9 x 0.8 inches", "local_id": ["urn:bwbsku:KN-670-307"], "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T16:04:14.985438"}}
+/type/edition /books/OL10491280M 2 2009-12-08T04:22:11.263778 {"publishers": ["Pan Books"], "title": "Paul Scofield Biography", "isbn_10": ["033037589X"], "isbn_13": ["9780330375894"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2009-12-08T04:22:11.263778"}, "publish_date": "January 10, 2003", "key": "/books/OL10491280M", "authors": [{"key": "/authors/OL36507A"}], "latest_revision": 2, "subjects": ["Biography: film, television & music"], "works": [{"key": "/works/OL521458W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10491521M 5 2022-06-16T15:34:55.830367 {"publishers": ["Macmillan Children's Books"], "physical_format": "Paperback", "title": "Just William Collections Boxed Set", "type": {"key": "/type/edition"}, "isbn_13": ["9780330396714"], "isbn_10": ["0330396714"], "publish_date": "September 8, 2000", "key": "/books/OL10491521M", "authors": [{"key": "/authors/OL4353595A"}], "oclc_numbers": ["44058158"], "works": [{"key": "/works/OL9161853W"}], "contributions": ["Thomas Henry (Illustrator)"], "subjects": ["Fiction"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-16T15:34:55.830367"}}
+/type/edition /books/OL10491554M 7 2020-10-15T14:25:38.739660 {"publishers": ["Macmillan Children's Books"], "number_of_pages": 176, "weight": "6.4 ounces", "covers": [2387691], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2020-10-15T14:25:38.739660"}, "latest_revision": 7, "key": "/books/OL10491554M", "authors": [{"key": "/authors/OL1175050A"}], "ocaid": "onerivermanycree0000unse", "subjects": ["English literature: poetry texts & anthologies", "Children: Grades 4-6"], "edition_name": "New Ed edition", "source_records": ["ia:onerivermanycree0000unse"], "title": "One River, Many Creeks (Pick a Poem)", "identifiers": {"goodreads": ["3262970"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780330397681"], "isbn_10": ["0330397680"], "publish_date": "January 2, 2004", "works": [{"key": "/works/OL5236058W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "7.6 x 5.1 x 0.6 inches", "revision": 7}
+/type/edition /books/OL10492057M 8 2011-04-27T01:57:43.748576 {"publishers": ["Macmillan Children's Books"], "number_of_pages": 64, "subtitle": "New Girl (Nina Fairy Ballerina)", "weight": "2.9 ounces", "covers": [2388202, 197987], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T01:57:43.748576"}, "latest_revision": 8, "key": "/books/OL10492057M", "authors": [{"key": "/authors/OL38635A"}], "contributions": ["Nicola Slater (Illustrator)"], "subjects": ["Fiction"], "title": "Nina Fairy Ballerina", "identifiers": {"librarything": ["1052840"], "goodreads": ["2078410"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780330439855"], "isbn_10": ["0330439855"], "publish_date": "February 3, 2006", "oclc_numbers": ["65202350"], "works": [{"key": "/works/OL544096W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "7.6 x 5 x 0.3 inches", "revision": 8}
+/type/edition /books/OL10492787M 5 2011-04-27T22:02:12.955213 {"publishers": ["Pan Macmillan"], "number_of_pages": 48, "last_modified": {"type": "/type/datetime", "value": "2011-04-27T22:02:12.955213"}, "title": "Brodie's Notes on George Johnston's My Brother Jack (Pan Revision Aids)", "identifiers": {"goodreads": ["2398896"]}, "isbn_13": ["9780330500845"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0330500848"], "publish_date": "1977", "key": "/books/OL10492787M", "authors": [{"key": "/authors/OL3447881A"}], "latest_revision": 5, "oclc_numbers": ["27509162"], "works": [{"key": "/works/OL9412433W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10493073M 2 2009-12-15T00:49:23.496988 {"publishers": ["Pan Books"], "title": "Nautical Almanac", "isbn_10": ["0330908219"], "isbn_13": ["9780330908214"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:49:23.496988"}, "latest_revision": 2, "key": "/books/OL10493073M", "authors": [{"key": "/authors/OL1561191A"}], "subjects": ["Sailing", "Yearbooks, annuals, almanacs"], "works": [{"key": "/works/OL6119859W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10493173M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Pan Books"], "title": "Shr; Making Out T3 (12-17) X 12", "isbn_13": ["9780330991407"], "isbn_10": ["033099140X"], "publish_date": "October 30, 1996", "key": "/books/OL10493173M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10493396M 5 2022-10-29T08:22:30.524497 {"publishers": ["Macmillan Education Ltd"], "identifiers": {"goodreads": ["6715565"]}, "title": "Stories from Greek Myths", "number_of_pages": 65, "isbn_13": ["9780333067420"], "physical_format": "Paperback", "isbn_10": ["0333067428"], "publish_date": "November 30, 2004", "key": "/books/OL10493396M", "authors": [{"key": "/authors/OL3448578A"}], "works": [{"key": "/works/OL9413478W"}], "type": {"key": "/type/edition"}, "subjects": ["English literature: fiction texts", "Language readers", "Myth & legend told as fiction", "Ancient Greece"], "source_records": ["amazon:0333067428"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-29T08:22:30.524497"}}
+/type/edition /books/OL10493492M 5 2022-12-17T06:09:00.979426 {"publishers": ["MACMILLAN"], "number_of_pages": 270, "title": "SCENES FROM PROVINCIAL LIFE", "type": {"key": "/type/edition"}, "identifiers": {"librarything": ["19614"]}, "isbn_13": ["9780333101568"], "isbn_10": ["0333101561"], "publish_date": "1969", "key": "/books/OL10493492M", "authors": [{"key": "/authors/OL3448654A"}], "oclc_numbers": ["559238334"], "works": [{"key": "/works/OL9413606W"}], "physical_format": "Hardcover", "source_records": ["bwb:9780333101568"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T06:09:00.979426"}}
+/type/edition /books/OL10493544M 6 2012-05-25T15:34:19.229746 {"publishers": ["Macmillan Education Ltd"], "number_of_pages": 108, "last_modified": {"type": "/type/datetime", "value": "2012-05-25T15:34:19.229746"}, "title": "Practice English Tenses", "type": {"key": "/type/edition"}, "identifiers": {"goodreads": ["6236701"], "librarything": ["3119226"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780333109274"], "isbn_10": ["0333109279"], "publish_date": "December 1970", "key": "/books/OL10493544M", "authors": [{"key": "/authors/OL2133669A"}], "latest_revision": 6, "works": [{"key": "/works/OL9350279W"}], "physical_format": "Paperback", "revision": 6}
+/type/edition /books/OL10493600M 6 2020-10-14T20:29:05.249293 {"publishers": ["Macmillan"], "number_of_pages": 226, "physical_format": "Paperback", "lc_classifications": ["PN6120.T4 R38"], "latest_revision": 6, "key": "/books/OL10493600M", "contributions": ["Don Reid (Editor)", "Frank Bladwell (Editor)"], "subjects": ["Television plays, Australian"], "isbn_13": ["9780333119570"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part11.utf8:35601769:1018"], "title": "Close-up", "lccn": ["77888130"], "identifiers": {"goodreads": ["5231643"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0333119576"], "publish_date": "December 31, 1974", "last_modified": {"type": "/type/datetime", "value": "2020-10-14T20:29:05.249293"}, "oclc_numbers": ["262805"], "works": [{"key": "/works/OL1874536W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL10493638M 6 2022-12-17T04:56:23.362632 {"publishers": ["Pan Macmillan"], "identifiers": {"librarything": ["7625485"]}, "contributors": [{"role": "Illustrator", "name": "Peter Edwards"}], "series": ["Young Ideas"], "physical_format": "Paperback", "key": "/books/OL10493638M", "authors": [{"key": "/authors/OL3299915A"}, {"key": "/authors/OL2659122A"}], "isbn_13": ["9780333121375"], "classifications": {}, "title": "In fashion", "number_of_pages": 32, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0333121376"], "publish_date": "1973", "oclc_numbers": ["16198627"], "works": [{"key": "/works/OL17723687W"}], "type": {"key": "/type/edition"}, "lc_classifications": ["PE1112"], "source_records": ["bwb:9780333121375"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T04:56:23.362632"}}
+/type/edition /books/OL10494138M 7 2011-04-26T11:13:33.522364 {"publishers": ["Macmillan Education"], "number_of_pages": 80, "description": {"type": "/type/text", "value": "Rangers are an illustrated series of graded readers at eight levels. The series includes specially written stories, adaptations of novels and folk tales, documentary narratives and informative texts.\r\nEach level from 1 to 6 introduces about 350 new lexical items. Levels 7 and 8 each introduce another 500 words, bringing the total word level for the series to 3200. The introduction of new words is carefully controlled and, up to Level 6, new items are picked out where they first appear. Other essential words relating to the topic are kept to a minimum and listed at the end of the book. Basic grammatical structures are taught within Levels 1 to 6, while at Levels 7 and 8 the learner discovers new ways of combining and connecting known words and phrases."}, "series": ["Rangers"], "covers": [6288778], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-26T11:13:33.522364"}, "latest_revision": 7, "key": "/books/OL10494138M", "authors": [{"key": "/authors/OL2186523A"}], "publish_places": ["London"], "subjects": ["ELT graded readers"], "title": "Exploring Space (Rangers)", "identifiers": {"goodreads": ["56427"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780333176313"], "isbn_10": ["0333176316"], "publish_date": "December 1, 1975", "oclc_numbers": ["22329215"], "works": [{"key": "/works/OL7360469W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "13,5x20,3 cm", "revision": 7}
+/type/edition /books/OL10494351M 5 2022-12-17T04:37:29.503699 {"publishers": ["Pan Macmillan"], "identifiers": {"goodreads": ["3174877"]}, "title": "News (Bright Ideas)", "type": {"key": "/type/edition"}, "number_of_pages": 16, "isbn_13": ["9780333196397"], "isbn_10": ["0333196392"], "publish_date": "1977", "key": "/books/OL10494351M", "authors": [{"key": "/authors/OL3299915A"}, {"key": "/authors/OL3374382A"}, {"key": "/authors/OL2946382A"}], "oclc_numbers": ["16382320"], "physical_format": "Paperback", "works": [{"key": "/works/OL32353206W"}], "lc_classifications": ["P91.2"], "source_records": ["bwb:9780333196397"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T04:37:29.503699"}}
+/type/edition /books/OL10494432M 5 2010-08-17T02:33:48.583166 {"publishers": ["Macmillan Education Ltd"], "number_of_pages": 24, "last_modified": {"type": "/type/datetime", "value": "2010-08-17T02:33:48.583166"}, "title": "Kaleidoscope", "physical_format": "Paperback", "identifiers": {"goodreads": ["5608468"], "librarything": ["7643773"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780333212592"], "isbn_10": ["0333212592"], "publish_date": "December 1977", "key": "/books/OL10494432M", "authors": [{"key": "/authors/OL1130759A"}, {"key": "/authors/OL3448929A"}, {"key": "/authors/OL3448930A"}], "latest_revision": 5, "type": {"key": "/type/edition"}, "subjects": ["Language & Linguistics"], "revision": 5}
+/type/edition /books/OL10494813M 6 2022-09-17T21:52:02.658387 {"publishers": ["Palgrave Macmillan"], "number_of_pages": 452, "title": "Foundations of a Planned Economy, 1926-1929", "identifiers": {"goodreads": ["672564"]}, "covers": [2389058], "physical_format": "Hardcover", "publish_date": "December 1969", "key": "/books/OL10494813M", "authors": [{"key": "/authors/OL118305A"}, {"key": "/authors/OL3235143A"}], "subjects": ["POLITICS & GOVERNMENT", "Political economy", "Inter-war period, 1918-1939"], "type": {"key": "/type/edition"}, "isbn_10": ["0333245709"], "isbn_13": ["9780333245705"], "classifications": {}, "subtitle": "Volume 1", "works": [{"key": "/works/OL27718393W"}], "lc_classifications": ["JA1-92JA77"], "source_records": ["bwb:9780333245705"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-17T21:52:02.658387"}}
+/type/edition /books/OL10494893M 5 2011-04-27T04:54:31.855299 {"publishers": ["MacMillan"], "number_of_pages": 32, "last_modified": {"type": "/type/datetime", "value": "2011-04-27T04:54:31.855299"}, "title": "Greg Cox, Driving Instructor (Starting Work)", "identifiers": {"goodreads": ["2431398"]}, "isbn_13": ["9780333251966"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0333251962"], "publish_date": "December 31, 1978", "key": "/books/OL10494893M", "authors": [{"key": "/authors/OL3449077A"}], "latest_revision": 5, "oclc_numbers": ["27488982"], "works": [{"key": "/works/OL9414227W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10495137M 4 2012-06-17T19:04:49.688696 {"publishers": ["Macmillan"], "identifiers": {}, "classifications": {}, "last_modified": {"type": "/type/datetime", "value": "2012-06-17T19:04:49.688696"}, "title": "Patrick White", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "type": {"key": "/type/edition"}, "notes": {"type": "/type/text", "value": "Macmillan Commonwealth Writers Series"}, "number_of_pages": 160, "edition_name": "International College edition", "isbn_13": ["9780333265505"], "isbn_10": ["0333265505"], "publish_date": "July 1980", "key": "/books/OL10495137M", "authors": [{"key": "/authors/OL1902330A"}], "latest_revision": 4, "works": [{"key": "/works/OL6890325W"}], "physical_format": "Paperback", "revision": 4}
+/type/edition /books/OL10495147M 4 2023-01-10T21:35:05.298366 {"publishers": ["Palgrave Macmillan"], "number_of_pages": 266, "title": "Vico", "physical_format": "Hardcover", "identifiers": {"librarything": ["1714835"]}, "isbn_13": ["9780333265994"], "isbn_10": ["0333265998"], "publish_date": "May 1980", "key": "/books/OL10495147M", "authors": [{"key": "/authors/OL832737A"}], "works": [{"key": "/works/OL4290506W"}], "type": {"key": "/type/edition"}, "subjects": ["Modern Western philosophy, c 1600 to the present"], "local_id": ["urn:bwbsku:KS-474-812"], "source_records": ["promise:bwb_daily_pallets_2022-12-29"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2023-01-10T21:35:05.298366"}}
+/type/edition /books/OL10495268M 1 2008-04-30T09:38:13.731961 {"physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Pan Macmillan"], "title": "Children Around the World (International Picture Charts)", "isbn_13": ["9780333272473"], "isbn_10": ["0333272471"], "publish_date": "June 28, 1979", "key": "/books/OL10495268M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10495643M 5 2010-04-24T18:03:28.112452 {"publishers": ["Palgrave Macmillan"], "identifiers": {"goodreads": ["5445777"]}, "title": "Social Power and the Labour Market (Radical Economics)", "isbn_10": ["0333291794"], "type": {"key": "/type/edition"}, "number_of_pages": 292, "covers": [5442984, 5063789], "isbn_13": ["9780333291795"], "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:03:28.112452"}, "publish_date": "November 10, 1988", "key": "/books/OL10495643M", "authors": [{"key": "/authors/OL563153A"}], "latest_revision": 5, "works": [{"key": "/works/OL3421596W"}], "physical_format": "Hardcover", "subjects": ["Labour economics", "Work & labour"], "revision": 5}
+/type/edition /books/OL10496051M 6 2022-12-06T23:49:45.797571 {"publishers": ["Palgrave Macmillan"], "number_of_pages": 88, "title": "Mechanics of Groups of Particles (Core Books in Advanced Mathematics)", "identifiers": {"goodreads": ["4519092"]}, "isbn_13": ["9780333317921"], "physical_format": "Paperback", "isbn_10": ["0333317920"], "publish_date": "June 7, 1984", "key": "/books/OL10496051M", "authors": [{"key": "/authors/OL3449376A"}, {"key": "/authors/OL3449377A"}, {"key": "/authors/OL3259242A"}], "oclc_numbers": ["11551773"], "type": {"key": "/type/edition"}, "subjects": ["Classical mechanics"], "works": [{"key": "/works/OL27304283W"}], "covers": [12637505], "ocaid": "mechanicsofgroup0000brid", "lc_classifications": ["QA809"], "source_records": ["ia:mechanicsofgroup0000brid", "promise:bwb_daily_pallets_2022-03-17"], "local_id": ["urn:bwbsku:KP-702-134"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-06T23:49:45.797571"}}
+/type/edition /books/OL10496119M 4 2010-04-24T18:03:28.112452 {"publishers": ["A & C Black (Publishers) Ltd"], "subtitle": "Omonville to Treguier", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:03:28.112452"}, "title": "French Pilot - Volume 1", "identifiers": {"goodreads": ["4877563"]}, "isbn_13": ["9780333320631"], "physical_format": "Hardcover", "isbn_10": ["0333320638"], "publish_date": "December 31, 1979", "key": "/books/OL10496119M", "authors": [{"key": "/authors/OL3449391A"}], "latest_revision": 4, "works": [{"key": "/works/OL9414715W"}], "type": {"key": "/type/edition"}, "subjects": ["Motor / power boating & cruising"], "revision": 4}
+/type/edition /books/OL10496125M 7 2022-12-17T04:57:27.861373 {"title": "1980 JCT Standard Form of Building Contract (Building & Surveying)", "authors": [{"key": "/authors/OL3449393A"}], "publish_date": "December 1981", "publishers": ["Palgrave Macmillan"], "isbn_13": ["9780333321102"], "physical_format": "Hardcover", "isbn_10": ["0333321103"], "oclc_numbers": ["15873137"], "type": {"key": "/type/edition"}, "subjects": ["Building construction & materials"], "ocaid": "1980jctstandardf0000fell_i3b5", "source_records": ["ia:1980jctstandardf0000fell_i3b5", "promise:bwb_daily_pallets_2021-02-03", "bwb:9780333321102"], "key": "/books/OL10496125M", "number_of_pages": 176, "works": [{"key": "/works/OL9414720W"}], "local_id": ["urn:bwbsku:KO-963-220"], "covers": [13080433], "lc_classifications": ["TH425"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T04:57:27.861373"}}
+/type/edition /books/OL10497172M 7 2022-12-17T05:49:18.646278 {"publishers": ["Palgrave Macmillan"], "number_of_pages": 348, "title": "Cost Accounting", "physical_format": "Hardcover", "identifiers": {"goodreads": ["4275339"]}, "isbn_13": ["9780333360699"], "isbn_10": ["0333360699"], "publish_date": "December 6, 1984", "key": "/books/OL10497172M", "authors": [{"key": "/authors/OL3449660A"}, {"key": "/authors/OL773849A"}], "works": [{"key": "/works/OL11373339W"}], "type": {"key": "/type/edition"}, "subjects": ["Cost accounting", "Accounting"], "covers": [11517621], "ocaid": "costaccountingan0000layn", "lc_classifications": ["HF5686.C8 L39 1984", "HF5686.C8"], "source_records": ["ia:costaccountingan0000layn", "amazon:0333360699", "bwb:9780333360699"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T05:49:18.646278"}}
+/type/edition /books/OL10497650M 8 2022-12-17T05:50:32.405763 {"publishers": ["Palgrave Macmillan"], "number_of_pages": 202, "source_records": ["marc:marc_oregon_summit_records/catalog_files/osu_bibs.mrc:1041643405:1033", "marc:marc_columbia/Columbia-extract-20221130-001.mrc:406196885:1312", "bwb:9780333375143"], "title": "Making of Britain (The Making of Britain)", "type": {"key": "/type/edition"}, "identifiers": {"librarything": ["1219230"], "goodreads": ["1258217"]}, "isbn_13": ["9780333375143"], "isbn_10": ["0333375149"], "publish_date": "November 15, 1984", "key": "/books/OL10497650M", "authors": [{"key": "/authors/OL2923697A"}], "works": [{"key": "/works/OL8663806W"}], "physical_format": "Paperback", "subjects": ["British & Irish history: c 500 to c 1000", "United Kingdom, Great Britain"], "oclc_numbers": ["59094169"], "lc_classifications": ["DA152"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T05:50:32.405763"}}
+/type/edition /books/OL10497748M 3 2011-04-27T00:13:12.261710 {"publishers": ["Nelson Thornes Ltd"], "last_modified": {"type": "/type/datetime", "value": "2011-04-27T00:13:12.261710"}, "title": "Post Office Life Skills (Post Office Life Skills)", "number_of_pages": 56, "isbn_13": ["9780333378915"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0333378911"], "publish_date": "July 19, 1985", "key": "/books/OL10497748M", "authors": [{"key": "/authors/OL3449444A"}], "latest_revision": 3, "oclc_numbers": ["12511941"], "works": [{"key": "/works/OL9414775W"}], "type": {"key": "/type/edition"}, "subjects": ["Schools & education centres", "Social Sciences"], "revision": 3}
+/type/edition /books/OL10498132M 6 2022-12-17T04:01:11.552776 {"publishers": ["Palgrave Macmillan"], "identifiers": {"librarything": ["7199182"]}, "physical_format": "Paperback", "key": "/books/OL10498132M", "authors": [{"key": "/authors/OL3449880A"}], "subjects": ["Applied mathematics"], "classifications": {}, "source_records": ["amazon:0333391721", "marc:marc_upei/marc-for-openlibrary-bigset.mrc:127638733:606", "bwb:9780333391723"], "title": "Mastering Statistics with Your Microcomputer", "notes": {"type": "/type/text", "value": "Macmillan Master Guides"}, "number_of_pages": 192, "isbn_13": ["9780333391723"], "isbn_10": ["0333391721"], "publish_date": "May 16, 1986", "works": [{"key": "/works/OL9415393W"}], "type": {"key": "/type/edition"}, "lc_classifications": ["QA276.4"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T04:01:11.552776"}}
+/type/edition /books/OL10498207M 6 2023-01-09T20:06:17.269502 {"publishers": ["Palgrave Macmillan"], "identifiers": {"goodreads": ["1804969"]}, "title": "Thomas Hardy (Macmillan Hardy Studies)", "number_of_pages": 184, "isbn_13": ["9780333393901"], "physical_format": "Hardcover", "isbn_10": ["0333393902"], "publish_date": "July 6, 1989", "key": "/books/OL10498207M", "authors": [{"key": "/authors/OL657063A"}], "works": [{"key": "/works/OL3743226W"}], "type": {"key": "/type/edition"}, "subjects": ["Biography: general", "Church of England", "Literary studies: 19th century", "Literary studies: from c 1900 -", "English"], "lc_classifications": ["PR4754"], "source_records": ["bwb:9780333393901", "marc:marc_columbia/Columbia-extract-20221130-009.mrc:484144925:1447"], "oclc_numbers": ["17981566"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2023-01-09T20:06:17.269502"}}
+/type/edition /books/OL10498281M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780333397169"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["MacMillan"], "title": "Third World Population Growth and Poverty (Topical JRO Map)", "edition_name": "English language ed edition", "isbn_10": ["0333397169"], "publish_date": "December 31, 1985", "key": "/books/OL10498281M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10498582M 10 2022-12-10T01:28:59.024391 {"publishers": ["Palgrave Macmillan"], "number_of_pages": 96, "weight": "3.5 ounces", "covers": [2389204, 198912], "physical_format": "Paperback", "key": "/books/OL10498582M", "authors": [{"key": "/authors/OL382036A"}], "subjects": ["Plays & playwrights", "French"], "title": "\"Waiting for Godot\" by Samuel Beckett (Master Guides)", "identifiers": {"goodreads": ["7761"], "librarything": ["1257408"], "amazon": [""]}, "isbn_13": ["9780333408650"], "isbn_10": ["0333408659"], "publish_date": "April 9, 1987", "works": [{"key": "/works/OL2622431W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.4 x 5.4 x 0.3 inches", "ocaid": "waitingforgodotb0000birk", "lc_classifications": ["PQ2603.E378E6", "PN1-PN6790"], "source_records": ["ia:waitingforgodotb0000birk", "bwb:9780333408650", "amazon:0333408659", "promise:bwb_daily_pallets_2020-09-08"], "local_id": ["urn:bwbsku:KN-996-458"], "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T01:28:59.024391"}}
+/type/edition /books/OL10498904M 4 2022-11-14T22:52:19.357777 {"publishers": ["Pan Macmillan"], "number_of_pages": 32, "title": "A School Bewitched", "type": {"key": "/type/edition"}, "identifiers": {"librarything": ["2800434"]}, "isbn_13": ["9780333419021"], "isbn_10": ["0333419022"], "publish_date": "June 19, 1986", "key": "/books/OL10498904M", "authors": [{"key": "/authors/OL542803A"}, {"key": "/authors/OL946694A"}], "oclc_numbers": ["13159343"], "physical_format": "Paperback", "works": [{"key": "/works/OL29308071W"}], "local_id": ["urn:bwbsku:O8-CQV-176"], "source_records": ["promise:bwb_daily_pallets_2022-09-30"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-14T22:52:19.357777"}}
+/type/edition /books/OL10499022M 2 2009-12-15T00:49:28.415540 {"physical_format": "Unknown Binding", "title": "Principles of Acctg Sol Manual II", "isbn_10": ["0538823933"], "publishers": ["Not Avail"], "isbn_13": ["9780538823937"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:49:28.415540"}, "publish_date": "August 1997", "key": "/books/OL10499022M", "authors": [{"key": "/authors/OL3012120A"}], "latest_revision": 2, "works": [{"key": "/works/OL8814006W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10499233M 4 2010-04-24T18:03:56.229473 {"publishers": ["South-Western Educational Publishing"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:03:56.229473"}, "title": "Admin Res Guide, Constructive Use of Pwr", "identifiers": {"goodreads": ["4154230"]}, "isbn_13": ["9780538849357"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0538849355"], "publish_date": "December 1998", "key": "/books/OL10499233M", "authors": [{"key": "/authors/OL2778417A"}], "latest_revision": 4, "works": [{"key": "/works/OL8347093W"}], "type": {"key": "/type/edition"}, "subjects": ["Human Resources & Personnel Management", "Business / Economics / Finance"], "revision": 4}
+/type/edition /books/OL1049957M 2 2020-11-18T00:03:34.326378 {"publishers": ["Labor Market and Economic Analysis Branch, Washington State Emplyment Security Dept."], "table_of_contents": [{"title": "[1] Adams, Grant counties", "type": {"key": "/type/toc_item"}, "level": 0}, {"title": "[2] Asotin, Columbia, Garfield counties", "type": {"key": "/type/toc_item"}, "level": 0}, {"title": "[3] Benton, Franklin counties", "type": {"key": "/type/toc_item"}, "level": 0}, {"title": "[4] Chelan, Douglas, Okanogan counties", "type": {"key": "/type/toc_item"}, "level": 0}, {"title": "[5] Ciallam, Jefferson counties", "type": {"key": "/type/toc_item"}, "level": 0}, {"title": "[6] Clark County", "type": {"key": "/type/toc_item"}, "level": 0}, {"title": "[7] Cowlitz, Wahkiakum counties", "type": {"key": "/type/toc_item"}, "level": 0}, {"title": "[8] Ferry, Lincoln, Pend Oreille, Stevens, Whitman counties", "type": {"key": "/type/toc_item"}, "level": 0}, {"title": "[9] Grays Harbor, Pacific counties", "type": {"key": "/type/toc_item"}, "level": 0}, {"title": "[10] Island, San Juan, Skagit counties", "type": {"key": "/type/toc_item"}, "level": 0}, {"title": "[11] King County", "type": {"key": "/type/toc_item"}, "level": 0}, {"title": "[12] Kitsap County", "type": {"key": "/type/toc_item"}, "level": 0}, {"title": "[13] Kittitas County", "type": {"key": "/type/toc_item"}, "level": 0}, {"title": "[14] Klickitat County", "type": {"key": "/type/toc_item"}, "level": 0}, {"title": "[15] Lewis County", "type": {"key": "/type/toc_item"}, "level": 0}, {"title": "[16] Mason County", "type": {"key": "/type/toc_item"}, "level": 0}, {"title": "[17] Pierce County", "type": {"key": "/type/toc_item"}, "level": 0}, {"title": "[18] Skamania County", "type": {"key": "/type/toc_item"}, "level": 0}, {"title": "[19] Snohomish County", "type": {"key": "/type/toc_item"}, "level": 0}, {"title": "[20] Spokane County", "type": {"key": "/type/toc_item"}, "level": 0}, {"title": "[21] Thurston County", "type": {"key": "/type/toc_item"}, "level": 0}, {"title": "[22] Walla Walla County", "type": {"key": "/type/toc_item"}, "level": 0}, {"title": "[23] Whatcom County", "type": {"key": "/type/toc_item"}, "level": 0}, {"title": "[24] Yakima County", "type": {"key": "/type/toc_item"}, "level": 0}, {"title": "[25] Washington State.", "type": {"key": "/type/toc_item"}, "level": 0}], "subject_place": ["Washington (State)"], "lc_classifications": ["HD5725.W2 O266 1992"], "latest_revision": 2, "key": "/books/OL1049957M", "publish_places": ["Olympia, Wash. (P.O. Box 9046, Olympia 98507-9046)"], "contributions": ["Washington (State). Employment Security Dept. Labor Market and Economic Analysis Branch."], "pagination": "25 v. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:82051105:1896"], "title": "Occupational projections, 1990-1995, [Washington State].", "dewey_decimal_class": ["331.12/5/0979701"], "notes": {"type": "/type/text", "value": "\"A labor market information publication of the Labor Market and Economic Analysis Branch, Washington State Employment Security Department.\"\n\"March 1992.\"\nChiefly tables."}, "number_of_pages": 25, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["93623013"], "subjects": ["Employment forecasting -- Washington (State)", "Job vacancies -- Washington (State) -- Statistics.", "Labor supply -- Washington (State) -- Statistics.", "Occupations -- Washington (State) -- Statistics."], "publish_date": "1992", "publish_country": "wau", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T00:03:34.326378"}, "works": [{"key": "/works/OL23525340W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10500000M 1 2008-04-30T09:38:13.731961 {"physical_format": "Hardcover", "subtitle": "1992", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Philip's"], "number_of_pages": 212, "isbn_13": ["9780540056538"], "isbn_10": ["0540056537"], "publish_date": "October 31, 1991", "key": "/books/OL10500000M", "title": "Philip's Road Atlas United Kingdom", "type": {"key": "/type/edition"}, "subjects": ["Travel / road maps & atlases", "United Kingdom, Great Britain"], "revision": 1}
+/type/edition /books/OL10500097M 4 2010-04-24T18:03:56.229473 {"publishers": ["Adlard Coles Nautical"], "identifiers": {"goodreads": ["6206352"]}, "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:03:56.229473"}, "title": "Coastwise Navigation", "type": {"key": "/type/edition"}, "number_of_pages": 124, "edition_name": "4Rev Ed edition", "isbn_13": ["9780540072828"], "isbn_10": ["0540072826"], "publish_date": "July 24, 1989", "key": "/books/OL10500097M", "authors": [{"key": "/authors/OL3450251A"}], "latest_revision": 4, "works": [{"key": "/works/OL9415840W"}], "physical_format": "Paperback", "subjects": ["Hang-gliding", "Maritime / nautical trades", "Navigation", "Sailing"], "revision": 4}
+/type/edition /books/OL10500208M 5 2022-12-08T07:45:33.687745 {"publishers": ["Philip's OS Publications"], "number_of_pages": 240, "title": "Ordnance Survey Road Atlas Britain (Road Atlas)", "type": {"key": "/type/edition"}, "identifiers": {"librarything": ["4696403"]}, "covers": [2474310], "edition_name": "2Rev Ed edition", "isbn_13": ["9780540079049"], "isbn_10": ["0540079049"], "publish_date": "December 12, 2001", "key": "/books/OL10500208M", "works": [{"key": "/works/OL7934034W"}], "physical_format": "Spiral-bound", "subjects": ["Maps, charts & atlases", "Travel / road maps & atlases", "United Kingdom, Great Britain"], "local_id": ["urn:bwbsku:KP-929-092"], "source_records": ["promise:bwb_daily_pallets_2021-06-17"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-08T07:45:33.687745"}}
+/type/edition /books/OL10500677M 7 2012-03-27T09:38:59.373878 {"publishers": ["Adamant Media Corporation"], "number_of_pages": 400, "subtitle": "A mystery", "weight": "1.2 pounds", "covers": [2474782], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2012-03-27T09:38:59.373878"}, "latest_revision": 7, "key": "/books/OL10500677M", "authors": [{"key": "/authors/OL1095760A"}], "subjects": ["Fiction / General", "Fiction / Mystery & Detective / Traditional British"], "isbn_13": ["9780543783660"], "title": "Samuel Boyd of Catchpole Square", "identifiers": {"goodreads": ["6154074"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0543783669"], "publish_date": "March 26, 2001", "oclc_numbers": ["612974664"], "works": [{"key": "/works/OL9416027W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.2 x 5.2 x 1 inches", "revision": 7}
+/type/edition /books/OL10500814M 4 2010-10-24T17:39:04.581693 {"publishers": ["Adamant Media Corporation"], "subtitle": "1710 \u00e0 1803. Nouvelle \u00e9dition, revue, corrig\u00e9e et augment\u00e9e. Tome 1", "weight": "1.3 pounds", "covers": [2474919], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-10-24T17:39:04.581693"}, "latest_revision": 4, "key": "/books/OL10500814M", "authors": [{"key": "/authors/OL2674189A"}], "subjects": ["Biography & Autobiography / General", "History / Europe / General"], "languages": [{"key": "/languages/fre"}], "title": "Souvenirs de la Marquise de Cr\u00e9quy", "number_of_pages": 420, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780543790248"], "isbn_10": ["054379024X"], "publish_date": "September 21, 2001", "works": [{"key": "/works/OL8563807W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.2 x 5.2 x 1 inches", "revision": 4}
+/type/edition /books/OL10502131M 4 2010-10-22T16:01:56.217639 {"publishers": ["Adamant Media Corporation"], "subtitle": "Mit einem Vorwort von Ludolph von Beckedorff", "weight": "1 pounds", "covers": [2476237], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-10-22T16:01:56.217639"}, "latest_revision": 4, "key": "/books/OL10502131M", "authors": [{"key": "/authors/OL49894A"}], "subjects": ["Religion / Amish", "Religion / Church History"], "languages": [{"key": "/languages/ger"}], "title": "Barlaam und Josaphat des heiligen Johannes von Damascus", "number_of_pages": 338, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780543839664"], "isbn_10": ["0543839664"], "publish_date": "April 26, 2002", "works": [{"key": "/works/OL9416599W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.2 x 5.2 x 0.8 inches", "revision": 4}
+/type/edition /books/OL10502391M 4 2010-08-12T15:12:37.393000 {"publishers": ["Adamant Media Corporation"], "subtitle": "A Tragedy", "weight": "8.8 ounces", "covers": [2476498], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-08-12T15:12:37.393000"}, "latest_revision": 4, "key": "/books/OL10502391M", "authors": [{"key": "/authors/OL116544A"}], "subjects": ["Poetry / Anthologies (multiple authors)", "Poetry / General"], "languages": [{"key": "/languages/eng"}], "title": "Marino Faliero", "number_of_pages": 164, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780543851703"], "isbn_10": ["0543851702"], "publish_date": "July 15, 2005", "works": [{"key": "/works/OL1148224W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.2 x 5.2 x 0.4 inches", "revision": 4}
+/type/edition /books/OL10502974M 6 2022-09-25T22:43:16.268738 {"publishers": ["Adamant Media Corporation"], "number_of_pages": 406, "subtitle": "Tome 3", "weight": "1.2 pounds", "languages": [{"key": "/languages/fre"}], "isbn_10": ["0543869598"], "identifiers": {"goodreads": ["4082690"]}, "isbn_13": ["9780543869593"], "covers": [2477081], "physical_format": "Paperback", "key": "/books/OL10502974M", "authors": [{"key": "/authors/OL164491A"}], "publish_date": "September 3, 2001", "title": "Th\u00e9\u00e2tre de Jules Lema\u00eetre", "works": [{"key": "/works/OL9416612W"}], "type": {"key": "/type/edition"}, "subjects": ["Drama / British & Irish", "Drama / General"], "physical_dimensions": "8.2 x 5.2 x 1 inches", "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-25T22:43:16.268738"}}
+/type/edition /books/OL10503132M 3 2010-04-13T06:03:27.457051 {"publishers": ["Adamant Media Corporation"], "number_of_pages": 354, "weight": "1.1 pounds", "languages": [{"key": "/languages/fre"}], "isbn_10": ["0543875326"], "title": "Par la femme", "isbn_13": ["9780543875327"], "covers": [2477239], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:03:27.457051"}, "latest_revision": 3, "key": "/books/OL10503132M", "authors": [{"key": "/authors/OL1385303A"}], "publish_date": "June 29, 2001", "works": [{"key": "/works/OL5682337W"}], "type": {"key": "/type/edition"}, "subjects": ["Fiction / General", "Fiction / Graphic Novels"], "physical_dimensions": "8.2 x 5.2 x 0.9 inches", "revision": 3}
+/type/edition /books/OL10503532M 3 2010-04-13T06:03:27.457051 {"publishers": ["Adamant Media Corporation"], "number_of_pages": 262, "subtitle": "Tome 3", "weight": "13.1 ounces", "languages": [{"key": "/languages/fre"}], "isbn_10": ["0543890899"], "title": "Lorimon ou L\\'homme tel qu\\'il est", "isbn_13": ["9780543890894"], "covers": [2477641], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:03:27.457051"}, "latest_revision": 3, "key": "/books/OL10503532M", "authors": [{"key": "/authors/OL3450987A"}], "publish_date": "August 22, 2001", "works": [{"key": "/works/OL9416980W"}], "type": {"key": "/type/edition"}, "subjects": ["Fiction / General", "Fiction / Graphic Novels"], "physical_dimensions": "8.2 x 5.2 x 0.6 inches", "revision": 3}
+/type/edition /books/OL10503724M 8 2010-08-17T02:37:35.179006 {"publishers": ["Adamant Media Corporation"], "number_of_pages": 416, "weight": "1.2 pounds", "covers": [2477855], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-08-17T02:37:35.179006"}, "latest_revision": 8, "key": "/books/OL10503724M", "authors": [{"key": "/authors/OL44633A"}], "subjects": ["Lucifer,Maud,Ghost,Wolf,Larsen,sea-wolf,Stories,Jack London", "Fiction / General", "Fiction / Graphic Novels"], "isbn_13": ["9780543901903"], "source_records": ["amazon:0543901904"], "title": "The Sea-Wolf and Selected Stories", "identifiers": {"goodreads": ["469411"], "librarything": ["110513"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0543901904"], "publish_date": "November 16, 2000", "works": [{"key": "/works/OL144764W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.2 x 5.2 x 1 inches", "revision": 8}
+/type/edition /books/OL10503928M 3 2010-04-13T06:03:27.457051 {"publishers": ["Adamant Media Corporation"], "number_of_pages": 395, "weight": "1.2 pounds", "languages": [{"key": "/languages/ger"}], "isbn_10": ["0543912027"], "title": "Die Wunden im Allgemeinen", "isbn_13": ["9780543912022"], "covers": [2478064], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:03:27.457051"}, "latest_revision": 3, "key": "/books/OL10503928M", "authors": [{"key": "/authors/OL3293026A"}], "publish_date": "January 25, 2001", "works": [{"key": "/works/OL9233825W"}], "type": {"key": "/type/edition"}, "subjects": ["Medical / Surgery / General"], "physical_dimensions": "8.2 x 5.2 x 1 inches", "revision": 3}
+/type/edition /books/OL10503955M 4 2021-08-30T23:28:14.680369 {"publishers": ["Adamant Media Corporation"], "number_of_pages": 496, "weight": "1.5 pounds", "languages": [{"key": "/languages/fre"}], "isbn_10": ["0543913007"], "title": "Changarnier", "isbn_13": ["9780543913005"], "covers": [2478091], "physical_format": "Paperback", "key": "/books/OL10503955M", "authors": [{"key": "/authors/OL2443949A"}], "publish_date": "May 8, 2001", "works": [{"key": "/works/OL9417155W"}], "type": {"key": "/type/edition"}, "subjects": ["Biography & Autobiography / General", "History / Europe / General"], "physical_dimensions": "8.2 x 5.2 x 1.2 inches", "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-08-30T23:28:14.680369"}}
+/type/edition /books/OL10504337M 5 2011-04-27T11:30:44.312554 {"publishers": ["Adamant Media Corporation"], "weight": "1.5 pounds", "covers": [2478474], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T11:30:44.312554"}, "latest_revision": 5, "key": "/books/OL10504337M", "authors": [{"key": "/authors/OL600546A"}], "subjects": ["novel", "Fiction / General"], "isbn_13": ["9780543927910"], "title": "Sir Brook Fossbrooke", "number_of_pages": 512, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0543927911"], "publish_date": "August 24, 2001", "oclc_numbers": ["133403035"], "works": [{"key": "/works/OL3564334W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.2 x 5.2 x 1.3 inches", "revision": 5}
+/type/edition /books/OL10504354M 4 2017-12-31T06:33:53.088414 {"publishers": ["Adamant Media Corporation"], "subtitle": "A Russian Story", "weight": "9.3 ounces", "covers": [2478491], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2017-12-31T06:33:53.088414"}, "latest_revision": 4, "key": "/books/OL10504354M", "authors": [{"key": "/authors/OL215897A"}], "subjects": ["Fiction / General", "Fiction / Graphic Novels"], "languages": [{"key": "/languages/eng"}], "title": "Michael and Theodora", "number_of_pages": 174, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780543928535"], "isbn_10": ["0543928535"], "publish_date": "February 8, 2001", "works": [{"key": "/works/OL8720114W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.2 x 5.2 x 0.4 inches", "revision": 4}
+/type/edition /books/OL10504385M 4 2017-05-18T20:43:38.554557 {"publishers": ["Adamant Media Corporation"], "weight": "1.2 pounds", "covers": [2478522], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2017-05-18T20:43:38.554557"}, "latest_revision": 4, "key": "/books/OL10504385M", "authors": [{"key": "/authors/OL1032996A"}], "subjects": ["History / Africa"], "isbn_13": ["9780543929594"], "source_records": ["amazon:0543929590"], "title": "Zizine", "number_of_pages": 386, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/fre"}], "isbn_10": ["0543929590"], "publish_date": "October 10, 2001", "works": [{"key": "/works/OL248193W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.2 x 5.2 x 1 inches", "revision": 4}
+/type/edition /books/OL10504583M 7 2019-08-23T14:54:42.660294 {"publishers": ["Adamant Media Corporation"], "number_of_pages": 550, "subtitle": "Deutscher Kommentar von Karl Lehrs", "weight": "1.6 pounds", "covers": [2478720], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2019-08-23T14:54:42.660294"}, "latest_revision": 7, "key": "/books/OL10504583M", "authors": [{"key": "/authors/OL20088A"}], "subjects": ["Dichter,Horaz,Literaturgeschichte,Gedichte,Kritik,Lyrik,Ode,Poetik,Poem,Einsch\u00e4tzung,Darlegung,Untersuchung,Analyse,Literaturwissenschaft,Horatius Flaccus,Archytas", "Literary Criticism & Collections / American", "Literary Criticism & Collections / General"], "isbn_13": ["9780543937339"], "title": "Q. Horatius Flaccus", "identifiers": {"goodreads": ["7173454"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/ger"}], "isbn_10": ["054393733X"], "publish_date": "October 16, 2000", "works": [{"key": "/works/OL8009279W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.2 x 5.2 x 1.4 inches", "revision": 7}
+/type/edition /books/OL10504799M 4 2010-08-17T02:37:35.179006 {"publishers": ["Adamant Media Corporation"], "identifiers": {"librarything": ["4605278"]}, "subtitle": "The Muhammadan Period. Volume 1", "weight": "1.7 pounds", "covers": [2478939], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-08-17T02:37:35.179006"}, "latest_revision": 4, "key": "/books/OL10504799M", "authors": [{"key": "/authors/OL3270136A"}], "subjects": ["Asia,India,history,Muhammadan period", "History / Asia", "History / Far East"], "isbn_13": ["9780543947260"], "title": "The History of India, as Told by Its Own Historians", "number_of_pages": 580, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0543947262"], "publish_date": "December 25, 2000", "works": [{"key": "/works/OL9205935W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.2 x 5.2 x 1.4 inches", "revision": 4}
+/type/edition /books/OL10505146M 7 2010-08-17T02:37:35.179006 {"publishers": ["Adamant Media Corporation"], "number_of_pages": 250, "weight": "12.6 ounces", "covers": [2479288], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-08-17T02:37:35.179006"}, "latest_revision": 7, "key": "/books/OL10505146M", "authors": [{"key": "/authors/OL68333A"}], "subjects": ["hero,legend,tragedy,myth,Book of Judges,Old Testament,spiritual", "Fiction / Folklore"], "isbn_13": ["9780543961839"], "title": "Milton\\'s Samson Agonistes", "identifiers": {"goodreads": ["107182"], "librarything": ["19608"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0543961834"], "publish_date": "November 28, 2000", "works": [{"key": "/works/OL810984W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.2 x 5.2 x 0.6 inches", "revision": 7}
+/type/edition /books/OL10505253M 6 2010-10-20T19:27:11.911756 {"publishers": ["Adamant Media Corporation"], "identifiers": {"goodreads": ["6130517"]}, "subtitle": "Ins Deutsche \u00fcbersetzt, mit Einleitung, Lebensbeschreibung des Verfassers und erl\u00e4uternden Anmerkungen versehen von C. Schaarschmidt", "weight": "2 pounds", "covers": [2479395], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-10-20T19:27:11.911756"}, "latest_revision": 6, "key": "/books/OL10505253M", "authors": [{"key": "/authors/OL116444A"}], "subjects": ["Philosophy / Movements / Utilitarianism", "Philosophy / Religious"], "languages": [{"key": "/languages/ger"}], "title": "Neue Abhandlungen \u00fcber den menschlichen Verstand", "number_of_pages": 667, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780543966384"], "isbn_10": ["0543966380"], "publish_date": "November 12, 2003", "works": [{"key": "/works/OL9265207W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.2 x 5.2 x 1.7 inches", "revision": 6}
+/type/edition /books/OL10505347M 3 2010-04-13T06:03:27.457051 {"publishers": ["Adamant Media Corporation"], "number_of_pages": 528, "subtitle": "Part 2. Personal and Political, 1865-1895. Volume 2", "weight": "1.6 pounds", "languages": [{"key": "/languages/eng"}], "isbn_10": ["054397037X"], "title": "Memorials", "isbn_13": ["9780543970374"], "covers": [2479489], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:03:27.457051"}, "latest_revision": 3, "key": "/books/OL10505347M", "authors": [{"key": "/authors/OL3451502A"}], "publish_date": "November 28, 2001", "works": [{"key": "/works/OL9417717W"}], "type": {"key": "/type/edition"}, "subjects": ["Europe,History,Great Britain,Edwin Palmer,Roundell Palmer,judicial reform,Supreme Court,biography,memorials,19th century,XIXth century,nineteenth century", "Biography & Autobiography / Political", "History / Europe / General"], "physical_dimensions": "8.2 x 5.2 x 1.3 inches", "revision": 3}
+/type/edition /books/OL10505419M 6 2010-11-22T02:20:30.012322 {"publishers": ["Adamant Media Corporation"], "identifiers": {"goodreads": ["1745493"]}, "subtitle": "Translated from the French, and abridged for the use of students", "weight": "1.6 pounds", "covers": [2479561], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-11-22T02:20:30.012322"}, "latest_revision": 6, "key": "/books/OL10505419M", "authors": [{"key": "/authors/OL155169A"}], "subjects": ["kingdom,biological sciences,animals,Cuvier", "Science / Biochemistry", "Science / Biology"], "languages": [{"key": "/languages/eng"}], "title": "Cuvier\\'s Animal Kingdom: Arranged according to its Organization", "number_of_pages": 532, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780543973283"], "isbn_10": ["054397328X"], "publish_date": "November 28, 2000", "works": [{"key": "/works/OL6843175W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.2 x 5.2 x 1.3 inches", "revision": 6}
+/type/edition /books/OL10505437M 3 2010-04-13T06:03:27.457051 {"publishers": ["Adamant Media Corporation"], "number_of_pages": 105, "weight": "6.1 ounces", "languages": [{"key": "/languages/fre"}], "isbn_10": ["0543974243"], "title": "Le g\u00e9n\u00e9ral Colson, sa mission en Russie et son voyage au Caucase", "isbn_13": ["9780543974242"], "covers": [2479579], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:03:27.457051"}, "latest_revision": 3, "key": "/books/OL10505437M", "authors": [{"key": "/authors/OL3451525A"}], "publish_date": "June 22, 2001", "works": [{"key": "/works/OL9417753W"}], "type": {"key": "/type/edition"}, "subjects": ["Nugues,Colson,mission,Russie,voyage,Caucase", "Biography & Autobiography / Military", "History / Europe / General"], "physical_dimensions": "8.2 x 5.2 x 0.3 inches", "revision": 3}
+/type/edition /books/OL10505466M 3 2010-04-13T06:03:27.457051 {"publishers": ["Adamant Media Corporation"], "number_of_pages": 472, "subtitle": "Ein Handbuch f\u00fcr Staatsbeamte und Gesch\u00e4ftsm\u00e4nner", "weight": "1.4 pounds", "languages": [{"key": "/languages/ger"}], "isbn_10": ["0543975347"], "title": "Politische Arithmetik. Anleitung zur Kenntni\u00df und Uebung aller im Staatswesen vorkommenden Berechnungen", "isbn_13": ["9780543975348"], "covers": [2479608], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:03:27.457051"}, "latest_revision": 3, "key": "/books/OL10505466M", "authors": [{"key": "/authors/OL3451537A"}], "publish_date": "May 20, 2002", "works": [{"key": "/works/OL9417768W"}], "type": {"key": "/type/edition"}, "subjects": ["politische,arithmetik,anleitung,kenntnuss,staatwesen,vorkommenden,berechnungen", "Law / Administrative Law & Regulatory Practice", "Law / Civil Procedure"], "physical_dimensions": "8.2 x 5.2 x 1.2 inches", "revision": 3}
+/type/edition /books/OL10505812M 3 2010-04-13T06:03:27.457051 {"publishers": ["Adamant Media Corporation"], "number_of_pages": 467, "subtitle": "Am Ende des Jahrhunderts (1895-1899). Musikalische Kritiken und Schilderungen", "weight": "1.4 pounds", "languages": [{"key": "/languages/ger"}], "isbn_10": ["0543989801"], "title": "Moderne Oper: Teil 8", "isbn_13": ["9780543989802"], "covers": [2479955], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:03:27.457051"}, "latest_revision": 3, "key": "/books/OL10505812M", "authors": [{"key": "/authors/OL597714A"}], "publish_date": "May 22, 2001", "works": [{"key": "/works/OL3553898W"}], "type": {"key": "/type/edition"}, "subjects": ["Composers & Musicians - Classical Composers"], "physical_dimensions": "29 x 8.2 x 5.2 inches", "revision": 3}
+/type/edition /books/OL10505985M 5 2010-04-24T18:03:56.229473 {"publishers": ["Adamant Media Corporation"], "number_of_pages": 249, "subtitle": "Eine philosophische Betrachtung", "weight": "12.5 ounces", "languages": [{"key": "/languages/ger"}], "isbn_10": ["0543996484"], "identifiers": {"goodreads": ["450547"]}, "isbn_13": ["9780543996480"], "covers": [2480128], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:03:56.229473"}, "latest_revision": 5, "key": "/books/OL10505985M", "authors": [{"key": "/authors/OL3451681A"}], "publish_date": "August 24, 2001", "title": "Der Wert des Lebens", "works": [{"key": "/works/OL9417977W"}], "type": {"key": "/type/edition"}, "subjects": ["Philosophy / History, Criticism, Surveys"], "physical_dimensions": "8.2 x 5.2 x 0.6 inches", "revision": 5}
+/type/edition /books/OL10506802M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780547076874"], "physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "publishers": ["Houghton Mifflin Company"], "title": "Aufmann Basic College Math Plus Mathspace Cd Plus Student Solutionsmanual Plus Spanish Student Solutions Manual Eighth Edition Pluseduspace", "edition_name": "8 edition", "isbn_10": ["0547076878"], "publish_date": "September 12, 2007", "key": "/books/OL10506802M", "type": {"key": "/type/edition"}, "subjects": ["General", "Mathematics / General", "Mathematics"], "revision": 1}
+/type/edition /books/OL10506961M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780547124469"], "physical_format": "Hardcover", "subtitle": "A Chronological Approach Plusstudy Guide First Edition Plus Perrin Pocket Guide To Apa Second Edition", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "publishers": ["Houghton Mifflin Company"], "title": "Bukatko Child And Adolescent Development", "edition_name": "1 edition", "isbn_10": ["0547124465"], "publish_date": "October 17, 2007", "key": "/books/OL10506961M", "type": {"key": "/type/edition"}, "subjects": ["General", "Psychology & Psychiatry / General", "Developmental - Adolescent", "Developmental - Child", "Psychology"], "revision": 1}
+/type/edition /books/OL1050724M 4 2020-11-18T00:10:24.615548 {"physical_format": "Microform", "lc_classifications": ["Microfilm 93/596 (L)"], "latest_revision": 4, "key": "/books/OL1050724M", "authors": [{"key": "/authors/OL563036A"}], "pagination": "viii, 292 leaves.", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:82802750:693"], "title": "The politics of untracking California's middle schools", "lccn": ["93629820"], "notes": {"type": "/type/text", "value": "Microfilm. Chicago, Ill. : University of Chicago, Joseph Regenstein Library, Dept. of Photoduplication, 1992. 1 microfilm reel ; 35 mm.\nThesis (Ph. D.)--University of Chicago, 1992."}, "number_of_pages": 292, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2020-11-18T00:10:24.615548"}, "publish_date": "1992", "publish_country": "ilu", "by_statement": "by Tom Scott Loveless.", "works": [{"key": "/works/OL3421160W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10507416M 4 2011-04-29T17:44:20.795793 {"publishers": ["Kessinger Publishing, LLC"], "weight": "1.5 pounds", "covers": [2480765], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T17:44:20.795793"}, "latest_revision": 4, "key": "/books/OL10507416M", "authors": [{"key": "/authors/OL215750A"}], "isbn_13": ["9780548009307"], "languages": [{"key": "/languages/eng"}], "title": "Robert Louis Stevenson a Critical Biography V2", "number_of_pages": 358, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "first_sentence": {"type": "/type/text", "value": "THE stay at Davos was prolonged into April."}, "isbn_10": ["0548009309"], "publish_date": "July 25, 2007", "oclc_numbers": ["176928941"], "works": [{"key": "/works/OL1795529W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.9 inches", "revision": 4}
+/type/edition /books/OL1050781M 5 2020-11-18T00:11:07.962598 {"publishers": ["The Institution", "Released by U.M.I."], "isbn_10": ["0835721574"], "subject_place": ["Russia", "Soviet Union"], "physical_format": "Microform", "lc_classifications": ["DK246", "Microfilm 93/4 (D)"], "latest_revision": 5, "key": "/books/OL1050781M", "publish_places": ["Stanford, CA", "[Ann Arbor, Mich.]"], "contributions": ["Nicolaevsky, Boris I., 1887-1966.", "Hoover Institution on War, Revolution, and Peace."], "subject_time": ["Nicholas II, 1894-1917"], "pagination": "41, <1-400, 442-476, 516-755 > microfilm reels", "source_records": ["marc:marc_records_scriblio_net/part24.dat:17711133:1363", "marc:marc_loc_updates/v38.i34.records.utf8:6484836:1364", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:82856850:1364"], "title": "The Boris I. Nicolaevsky Collection in the archives of the Hoover Institution on War, Revolution, and Peace", "dewey_decimal_class": ["947.08/3"], "notes": {"type": "/type/text", "value": "Chiefly in Russian.\nTitle from t.p. of guide to unit 1.\nAccompanied by a guide to each unit.\nIncludes the papers of Lev Davydovich Trotskii and Lev L\u02b9vovich Sedov, 1920-1940 (unit 1, reels 1-41)."}, "number_of_pages": 755, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/rus"}], "lccn": ["93629994"], "subjects": ["Hoover Institution on War, Revolution, and Peace -- Archives", "Revolutionaries -- Soviet Union -- History -- Sources", "Russia -- History -- Nicholas II, 1894-1917 -- Sources", "Soviet Union -- History -- Sources"], "publish_date": "1991", "publish_country": "cau", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T00:11:07.962598"}, "works": [{"key": "/works/OL18333610W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10508066M 5 2022-09-07T18:42:07.069670 {"publishers": ["Kessinger Publishing, LLC"], "weight": "13.3 ounces", "covers": [2481420], "physical_format": "Hardcover", "key": "/books/OL10508066M", "authors": [{"key": "/authors/OL581406A"}], "subjects": ["English, Irish, Scottish, Welsh", "Poetry / Single Author / British & Irish", "Poetry"], "isbn_13": ["9780548018811"], "languages": [{"key": "/languages/eng"}], "title": "The Orchard Pavilion", "number_of_pages": 138, "first_sentence": {"type": "/type/text", "value": "IT was the pavilion which had first attracted Roderick Armitage to the place; he had caught a sight of its slender stone chimney, with the queer pierced ornament at the top, above the flowering apple-trees."}, "isbn_10": ["0548018812"], "publish_date": "July 25, 2007", "oclc_numbers": ["176930094"], "works": [{"key": "/works/OL3484356W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.4 inches", "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-07T18:42:07.069670"}}
+/type/edition /books/OL10508096M 4 2018-10-01T16:30:34.059858 {"publishers": ["Kessinger Publishing, LLC"], "subtitle": "An Account of His Personal Life", "weight": "2 pounds", "covers": [2481450], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2018-10-01T16:30:34.059858"}, "latest_revision": 4, "key": "/books/OL10508096M", "authors": [{"key": "/authors/OL2014761A"}], "subjects": ["General & Literary Fiction", "General", "Fiction / General", "Fiction - General"], "languages": [{"key": "/languages/eng"}], "first_sentence": {"type": "/type/text", "value": "OF FIRST importance in the making of the American people is that great forest which once extended its mysterious labyrinth from tide-water to the prairies."}, "source_records": ["amazon:0548019339"], "title": "Lincoln", "number_of_pages": 500, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780548019337"], "isbn_10": ["0548019339"], "publish_date": "July 25, 2007", "works": [{"key": "/works/OL89322W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 1.2 inches", "revision": 4}
+/type/edition /books/OL10508517M 6 2011-04-30T02:28:53.369515 {"publishers": ["Kessinger Publishing, LLC"], "identifiers": {"goodreads": ["6292333"]}, "weight": "1.1 pounds", "covers": [2481874], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-30T02:28:53.369515"}, "latest_revision": 6, "key": "/books/OL10508517M", "authors": [{"key": "/authors/OL2958237A"}], "subjects": ["English, Irish, Scottish, Welsh", "Literary Criticism & Collections / English, Irish, Scottish, Welsh", "Literature - Classics / Criticism"], "languages": [{"key": "/languages/eng"}], "title": "Noble English from Thomas Lodge to John Milton V2", "number_of_pages": 236, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780548025857"], "isbn_10": ["0548025851"], "publish_date": "July 25, 2007", "oclc_numbers": ["176931341"], "works": [{"key": "/works/OL8721911W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.7 inches", "revision": 6}
+/type/edition /books/OL10508520M 6 2011-04-29T05:11:39.266831 {"publishers": ["Kessinger Publishing, LLC"], "weight": "1.2 pounds", "covers": [2481877], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T05:11:39.266831"}, "latest_revision": 6, "key": "/books/OL10508520M", "authors": [{"key": "/authors/OL53291A"}], "subjects": ["General", "Literary Collections", "Literature: Classics"], "isbn_13": ["9780548025901"], "source_records": ["amazon:0548025908"], "title": "The Works of Laurence Sterne V5", "number_of_pages": 248, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0548025908"], "publish_date": "July 25, 2007", "oclc_numbers": ["303646477"], "works": [{"key": "/works/OL5475762W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.7 inches", "revision": 6}
+/type/edition /books/OL10508619M 6 2021-10-04T09:41:22.044497 {"publishers": ["Kessinger Publishing, LLC"], "number_of_pages": 290, "weight": "1.3 pounds", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0548027137"], "title": "The Lady Paramount", "isbn_13": ["9780548027134"], "covers": [2481976], "physical_format": "Hardcover", "key": "/books/OL10508619M", "authors": [{"key": "/authors/OL1460816A"}], "publish_date": "July 25, 2007", "works": [{"key": "/works/OL5916185W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Fiction / General", "Fiction - General"], "physical_dimensions": "9 x 6 x 0.8 inches", "source_records": ["bwb:9780548027134"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-10-04T09:41:22.044497"}}
+/type/edition /books/OL10508634M 5 2010-04-24T18:03:56.229473 {"publishers": ["Kessinger Publishing, LLC"], "languages": [{"key": "/languages/eng"}], "identifiers": {"goodreads": ["7024595"]}, "weight": "1.6 pounds", "title": "The Obstacle Race", "number_of_pages": 374, "isbn_13": ["9780548027387"], "covers": [2481991], "physical_format": "Hardcover", "authors": [{"key": "/authors/OL1552965A"}], "isbn_10": ["0548027382"], "latest_revision": 5, "key": "/books/OL10508634M", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:03:56.229473"}, "publish_date": "July 25, 2007", "works": [{"key": "/works/OL6101379W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Fiction / General", "Fiction - General"], "physical_dimensions": "9 x 6 x 1 inches", "revision": 5}
+/type/edition /books/OL10508757M 7 2011-05-08T01:21:19.428870 {"publishers": ["Kessinger Publishing, LLC"], "weight": "13.4 ounces", "covers": [2482114], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-05-08T01:21:19.428870"}, "latest_revision": 7, "key": "/books/OL10508757M", "authors": [{"key": "/authors/OL6885182A"}], "contributions": ["Samuel Thurber (Editor)"], "subjects": ["Books & Reading", "Literary Criticism & Collections / Books & Reading", "Literature - Classics / Criticism"], "isbn_13": ["9780548029220"], "first_sentence": {"type": "/type/text", "value": "TOWARDS the close of the year 1823, Mr. Lemon, deputy keeper of the state papers, in the course of his researches among the presses of his office, met with a large Latin manuscript."}, "title": "Macaulay's Essays on Milton and Addison", "number_of_pages": 142, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0548029229"], "publish_date": "July 25, 2007", "works": [{"key": "/works/OL8815968W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.5 inches", "revision": 7}
+/type/edition /books/OL10508895M 3 2010-04-13T06:03:27.457051 {"publishers": ["Kessinger Publishing, LLC"], "number_of_pages": 324, "weight": "1.4 pounds", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0548031177"], "title": "Salthaven", "isbn_13": ["9780548031179"], "covers": [2482252], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:03:27.457051"}, "latest_revision": 3, "key": "/books/OL10508895M", "authors": [{"key": "/authors/OL160918A"}], "publish_date": "July 25, 2007", "works": [{"key": "/works/OL1515167W"}], "type": {"key": "/type/edition"}, "subjects": ["Short Stories (single author)", "Fiction / Short Stories (single author)", "Fiction - General"], "physical_dimensions": "9 x 6 x 0.9 inches", "revision": 3}
+/type/edition /books/OL10509116M 5 2011-04-30T11:04:09.000142 {"publishers": ["Kessinger Publishing, LLC"], "weight": "2.2 pounds", "covers": [2482473], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-30T11:04:09.000142"}, "latest_revision": 5, "key": "/books/OL10509116M", "authors": [{"key": "/authors/OL112771A"}, {"key": "/authors/OL429559A"}], "subjects": ["Drama texts, plays", "Drama", "Plays / Drama", "Plays", "English, Irish, Scottish, Welsh", "Drama / British & Irish"], "isbn_13": ["9780548033951"], "title": "The Works of Ben Jonson with Notes, Critical and Explanatory and a Biographical Memoir V3", "number_of_pages": 552, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0548033951"], "publish_date": "July 25, 2007", "oclc_numbers": ["172982388"], "works": [{"key": "/works/OL14948494W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 1.4 inches", "revision": 5}
+/type/edition /books/OL10509199M 4 2011-04-27T16:08:59.610723 {"publishers": ["Kessinger Publishing, LLC"], "subtitle": "The Collected Works of Theodore Parker V1", "weight": "1.6 pounds", "covers": [2482556], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T16:08:59.610723"}, "latest_revision": 4, "key": "/books/OL10509199M", "authors": [{"key": "/authors/OL2893769A"}], "subjects": ["Comparative Religion", "Unitarian Universalism", "Religion / Unitarian Universalism", "Religion : Comparative Religion", "Religion", "Religion - World Religions"], "languages": [{"key": "/languages/eng"}], "title": "A Discourse of Matters Pertaining to Religion", "number_of_pages": 386, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780548035252"], "isbn_10": ["0548035253"], "publish_date": "July 25, 2007", "oclc_numbers": ["172977083"], "works": [{"key": "/works/OL8609011W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 1 inches", "revision": 4}
+/type/edition /books/OL10509668M 8 2022-11-27T02:55:19.679598 {"publishers": ["Kessinger Publishing, LLC"], "weight": "1.8 pounds", "covers": [2483025], "physical_format": "Hardcover", "key": "/books/OL10509668M", "authors": [{"key": "/authors/OL471614A"}], "subjects": ["Historical - General", "Fiction / Historical", "Fiction - Historical"], "languages": [{"key": "/languages/eng"}], "first_sentence": {"type": "/type/text", "value": "It was the sort of window which was common in Paris about the end of the seventeenth century."}, "source_records": ["amazon:0548042330", "bwb:9780548042335"], "title": "The Refugees", "number_of_pages": 432, "isbn_13": ["9780548042335"], "isbn_10": ["0548042330"], "publish_date": "July 25, 2007", "oclc_numbers": ["178006552"], "works": [{"key": "/works/OL262591W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 1.1 inches", "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-27T02:55:19.679598"}}
+/type/edition /books/OL10509798M 4 2011-04-30T16:25:44.297584 {"publishers": ["Kessinger Publishing, LLC"], "weight": "1.6 pounds", "covers": [2483155], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-30T16:25:44.297584"}, "latest_revision": 4, "key": "/books/OL10509798M", "authors": [{"key": "/authors/OL2419848A"}], "subjects": ["Theology", "Religion / Theology", "Religion - Theology"], "isbn_13": ["9780548044216"], "source_records": ["amazon:054804421X"], "title": "Psychology And Natural Theology", "number_of_pages": 364, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["054804421X"], "publish_date": "July 25, 2007", "oclc_numbers": ["176939899"], "works": [{"key": "/works/OL210251W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.9 inches", "revision": 4}
+/type/edition /books/OL10509992M 4 2011-04-27T12:29:47.213418 {"publishers": ["Kessinger Publishing, LLC"], "weight": "11.7 ounces", "covers": [2483349], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T12:29:47.213418"}, "latest_revision": 4, "key": "/books/OL10509992M", "authors": [{"key": "/authors/OL78869A"}], "subjects": ["United States - Revolutionary War", "History / United States / Revolutionary Period (1775-1800)", "History - U.S."], "isbn_13": ["9780548047040"], "languages": [{"key": "/languages/eng"}], "title": "Sketches Of The Most Important Battles Of The Revolution Explanatory Of The Vine Of Liberty", "number_of_pages": 108, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "first_sentence": {"type": "/type/text", "value": "THIS little work is prepared to accompany a chart on which a Vine is made the emblem of Liberty in such a manner as to illustrate the history of the American Revolution."}, "isbn_10": ["0548047049"], "publish_date": "July 25, 2007", "oclc_numbers": ["176932920"], "works": [{"key": "/works/OL891259W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.4 inches", "revision": 4}
+/type/edition /books/OL10510988M 4 2011-04-26T22:15:42.386210 {"publishers": ["Kessinger Publishing, LLC"], "subtitle": "A Book of Information and Inspiration for the Sunday School Worker", "weight": "15.4 ounces", "covers": [2484346], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-26T22:15:42.386210"}, "latest_revision": 4, "key": "/books/OL10510988M", "authors": [{"key": "/authors/OL2337646A"}], "subjects": ["Religion / Inspirational", "Religion", "Inspirational"], "languages": [{"key": "/languages/eng"}], "first_sentence": {"type": "/type/text", "value": "This first message is to call adult church people into a fascinating and very remunerative occupation."}, "title": "How To Win Boys", "number_of_pages": 180, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780548062104"], "isbn_10": ["0548062102"], "publish_date": "July 25, 2007", "oclc_numbers": ["172975713"], "works": [{"key": "/works/OL7625650W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.6 inches", "revision": 4}
+/type/edition /books/OL10511615M 4 2011-04-27T15:02:50.440870 {"publishers": ["Kessinger Publishing, LLC"], "weight": "1.4 pounds", "covers": [2484973], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T15:02:50.440870"}, "latest_revision": 4, "key": "/books/OL10511615M", "authors": [{"key": "/authors/OL3452187A"}], "subjects": ["General", "Fiction / General", "Fiction - General"], "isbn_13": ["9780548070215"], "languages": [{"key": "/languages/eng"}], "title": "The Meddlings of Eve", "number_of_pages": 302, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "first_sentence": {"type": "/type/text", "value": "I WAS sitting under my great pine with my son and my daughter, giving them the instruction which I considered suited to their years."}, "isbn_10": ["0548070210"], "publish_date": "July 25, 2007", "oclc_numbers": ["176943347"], "works": [{"key": "/works/OL9418687W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.8 inches", "revision": 4}
+/type/edition /books/OL10511812M 4 2011-04-28T10:02:02.671496 {"publishers": ["Kessinger Publishing, LLC"], "weight": "12 ounces", "covers": [2485170], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-28T10:02:02.671496"}, "latest_revision": 4, "key": "/books/OL10511812M", "authors": [{"key": "/authors/OL2631914A"}], "languages": [{"key": "/languages/eng"}], "first_sentence": {"type": "/type/text", "value": "It pained me to observe that your last letter was decidedly in a minor key."}, "source_records": ["amazon:0548072957"], "title": "Uncle Bill's Letters to His Niece", "number_of_pages": 114, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780548072950"], "isbn_10": ["0548072957"], "publish_date": "July 25, 2007", "oclc_numbers": ["178021959"], "works": [{"key": "/works/OL278123W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.4 inches", "revision": 4}
+/type/edition /books/OL10512001M 3 2010-04-13T06:03:27.457051 {"publishers": ["Kessinger Publishing, LLC"], "number_of_pages": 456, "weight": "1.8 pounds", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0548075336"], "title": "The Historical And The Posthumous Memoirs Of Sir Nathaniel William Wraxall 1772 to 1784 V2", "isbn_13": ["9780548075333"], "covers": [2485359], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:03:27.457051"}, "latest_revision": 3, "key": "/books/OL10512001M", "authors": [{"key": "/authors/OL2773095A"}], "publish_date": "July 25, 2007", "works": [{"key": "/works/OL8334286W"}], "type": {"key": "/type/edition"}, "subjects": ["Europe - Great Britain - General", "History / Great Britain", "History - General History"], "physical_dimensions": "9 x 6 x 1.1 inches", "revision": 3}
+/type/edition /books/OL10512106M 6 2011-04-29T23:22:49.152176 {"publishers": ["Kessinger Publishing, LLC"], "identifiers": {"goodreads": ["2469402"]}, "subtitle": "Salve For The Sores Of Souls V2", "weight": "1 pounds", "covers": [2485465], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T23:22:49.152176"}, "latest_revision": 6, "key": "/books/OL10512106M", "authors": [{"key": "/authors/OL2346374A"}], "subjects": ["General", "Religion"], "isbn_13": ["9780548077481"], "title": "Divine Wisdom", "number_of_pages": 196, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0548077487"], "publish_date": "July 25, 2007", "oclc_numbers": ["178371660"], "works": [{"key": "/works/OL7641701W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.6 inches", "revision": 6}
+/type/edition /books/OL10512215M 7 2011-04-27T08:41:51.418965 {"publishers": ["Kessinger Publishing, LLC"], "number_of_pages": 108, "weight": "11.7 ounces", "covers": [2485574], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T08:41:51.418965"}, "latest_revision": 7, "key": "/books/OL10512215M", "authors": [{"key": "/authors/OL2305140A"}], "languages": [{"key": "/languages/eng"}], "title": "Indra In The Rig-Vega", "identifiers": {"goodreads": ["2428981"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780548080870"], "isbn_10": ["0548080879"], "publish_date": "July 25, 2007", "oclc_numbers": ["176932983"], "works": [{"key": "/works/OL7536173W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.4 inches", "revision": 7}
+/type/edition /books/OL10512234M 4 2011-04-27T16:08:59.610723 {"publishers": ["Kessinger Publishing, LLC"], "weight": "1.3 pounds", "covers": [2485593], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T16:08:59.610723"}, "latest_revision": 4, "key": "/books/OL10512234M", "authors": [{"key": "/authors/OL2228090A"}], "subjects": ["General", "Biography & Autobiography", "Biography/Autobiography"], "isbn_13": ["9780548081129"], "source_records": ["amazon:0548081123"], "title": "The Life Of Evelyn Underhill", "number_of_pages": 276, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0548081123"], "publish_date": "July 25, 2007", "oclc_numbers": ["172978214"], "works": [{"key": "/works/OL186010W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.8 inches", "revision": 4}
+/type/edition /books/OL10512597M 4 2010-10-20T03:21:33.472723 {"publishers": ["Kessinger Publishing, LLC"], "subtitle": "First Series", "weight": "13.9 ounces", "covers": [2485957], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-10-20T03:21:33.472723"}, "latest_revision": 4, "key": "/books/OL10512597M", "authors": [{"key": "/authors/OL48850A"}], "isbn_13": ["9780548085981"], "source_records": ["amazon:0548085986"], "title": "Dramatic Idyls", "number_of_pages": 152, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0548085986"], "publish_date": "July 25, 2007", "works": [{"key": "/works/OL284390W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.5 inches", "revision": 4}
+/type/edition /books/OL1051336M 1 2008-04-01T03:28:50.625462 {"pagination": "<3 > v. ;", "last_modified": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "title": "[Asaro language publications].", "lccn": ["93669401"], "notes": {"type": "/type/text", "value": "Contains material not cataloged separately."}, "languages": [{"key": "/languages/paa"}], "lc_classifications": ["Lesser-known languages"], "publish_date": "1900", "publish_country": "vp ", "key": "/books/OL1051336M", "type": {"key": "/type/edition"}, "subjects": ["Asaro language -- Texts."], "revision": 1}
+/type/edition /books/OL10513569M 4 2011-04-26T17:06:19.689301 {"publishers": ["Kessinger Publishing, LLC"], "weight": "1 pounds", "covers": [2486929], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-26T17:06:19.689301"}, "latest_revision": 4, "key": "/books/OL10513569M", "authors": [{"key": "/authors/OL1804501A"}], "subjects": ["English, Irish, Scottish, Welsh", "Literary Criticism & Collections / English, Irish, Scottish, Welsh", "Literature - Classics / Criticism"], "languages": [{"key": "/languages/eng"}], "title": "The Classical Mythology Of Milton's English Poems", "number_of_pages": 204, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780548099704"], "isbn_10": ["0548099707"], "publish_date": "July 25, 2007", "oclc_numbers": ["179775670"], "works": [{"key": "/works/OL6676775W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.6 inches", "revision": 4}
+/type/edition /books/OL10513639M 8 2011-04-26T13:11:17.308546 {"publishers": ["Kessinger Publishing, LLC"], "identifiers": {"goodreads": ["3063839"]}, "subtitle": "From Original Sources", "weight": "1.7 pounds", "covers": [2486999], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-26T13:11:17.308546"}, "latest_revision": 8, "key": "/books/OL10513639M", "authors": [{"key": "/authors/OL1460658A"}], "subjects": ["General", "Biography & Autobiography", "Biography/Autobiography"], "isbn_13": ["9780548100561"], "title": "Lives Of Simon Lord Lovat And Duncan Forbes Of Culloden", "number_of_pages": 404, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["054810056X"], "publish_date": "July 25, 2007", "oclc_numbers": ["172976231"], "works": [{"key": "/works/OL5915510W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 1.1 inches", "revision": 8}
+/type/edition /books/OL10514116M 6 2011-04-28T18:06:44.601865 {"publishers": ["Kessinger Publishing, LLC"], "identifiers": {"goodreads": ["4649069"]}, "subtitle": "The Second And Third Marquesses Of Londonderry V3", "weight": "1.6 pounds", "covers": [2487475], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-28T18:06:44.601865"}, "latest_revision": 6, "key": "/books/OL10514116M", "authors": [{"key": "/authors/OL2093447A"}], "subjects": ["General", "History", "History: World"], "isbn_13": ["9780548106884"], "source_records": ["amazon:0548106886"], "title": "The Lives Of Lord Castlereagh And Sir Charles Stewart", "number_of_pages": 388, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0548106886"], "publish_date": "July 25, 2007", "oclc_numbers": ["172982645"], "works": [{"key": "/works/OL168894W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 1 inches", "revision": 6}
+/type/edition /books/OL10514173M 4 2011-04-28T17:37:27.740708 {"publishers": ["Kessinger Publishing, LLC"], "weight": "14.4 ounces", "covers": [2487532], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-28T17:37:27.740708"}, "latest_revision": 4, "key": "/books/OL10514173M", "authors": [{"key": "/authors/OL2851773A"}], "languages": [{"key": "/languages/eng"}], "title": "What Is Success?", "number_of_pages": 160, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780548107591"], "isbn_10": ["0548107599"], "publish_date": "July 25, 2007", "oclc_numbers": ["179776451"], "works": [{"key": "/works/OL8522002W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.5 inches", "revision": 4}
+/type/edition /books/OL10514306M 4 2010-04-13T06:07:20.534000 {"publishers": ["Kessinger Publishing, LLC"], "number_of_pages": 304, "weight": "1.4 pounds", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0548109311"], "title": "The New Old Healing", "isbn_13": ["9780548109311"], "covers": [2487664], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:07:20.534000"}, "latest_revision": 4, "key": "/books/OL10514306M", "authors": [{"key": "/authors/OL1020374A"}], "publish_date": "July 25, 2007", "works": [{"key": "/works/OL4828878W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Medical"], "physical_dimensions": "9 x 6 x 0.8 inches", "revision": 4}
+/type/edition /books/OL10514390M 5 2021-11-02T08:29:30.945818 {"publishers": ["Kessinger Publishing, LLC"], "weight": "1.5 pounds", "covers": [2487748], "physical_format": "Hardcover", "key": "/books/OL10514390M", "authors": [{"key": "/authors/OL215730A"}], "subjects": ["General", "Fiction"], "isbn_13": ["9780548110416"], "title": "In Hostile Red", "number_of_pages": 340, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0548110417"], "publish_date": "July 25, 2007", "oclc_numbers": ["178433138"], "works": [{"key": "/works/OL1795182W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.9 inches", "source_records": ["bwb:9780548110416"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-11-02T08:29:30.945818"}}
+/type/edition /books/OL10514400M 6 2011-04-29T06:23:14.782811 {"publishers": ["Kessinger Publishing, LLC"], "identifiers": {"goodreads": ["6775264"]}, "subtitle": "A History Of The Indian Wars Of The Far West 1815-1875", "weight": "2.5 pounds", "covers": [2487758], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T06:23:14.782811"}, "latest_revision": 6, "key": "/books/OL10514400M", "authors": [{"key": "/authors/OL3095807A"}], "subjects": ["United States - General", "History", "History: American"], "isbn_13": ["9780548110867"], "title": "Massacres Of The Mountains", "number_of_pages": 676, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0548110867"], "publish_date": "July 25, 2007", "oclc_numbers": ["178433427"], "works": [{"key": "/works/OL8944822W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 1.6 inches", "revision": 6}
+/type/edition /books/OL10514449M 6 2011-04-22T22:11:27.922933 {"publishers": ["Kessinger Publishing, LLC"], "number_of_pages": 572, "weight": "2.2 pounds", "covers": [2487807], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-22T22:11:27.922933"}, "latest_revision": 6, "key": "/books/OL10514449M", "authors": [{"key": "/authors/OL3011412A"}], "contributions": ["Oswald J. Reichel (Translator)"], "subjects": ["General", "Philosophy"], "isbn_13": ["9780548112151"], "title": "The Stoics, Epicureans And Sceptics", "identifiers": {"goodreads": ["3055562"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0548112150"], "publish_date": "July 25, 2007", "oclc_numbers": ["172982672"], "works": [{"key": "/works/OL8811511W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 1.4 inches", "revision": 6}
+/type/edition /books/OL10514967M 5 2010-04-24T18:03:56.229473 {"publishers": ["Kessinger Publishing, LLC"], "languages": [{"key": "/languages/eng"}], "identifiers": {"goodreads": ["4372513"]}, "subtitle": "From The Defeat Of The Armada To The Death Of Elizabeth V2", "weight": "2.3 pounds", "title": "A History Of England", "number_of_pages": 600, "isbn_13": ["9780548119952"], "covers": [2488323], "physical_format": "Hardcover", "authors": [{"key": "/authors/OL3282372A"}], "isbn_10": ["0548119953"], "latest_revision": 5, "key": "/books/OL10514967M", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:03:56.229473"}, "publish_date": "July 25, 2007", "works": [{"key": "/works/OL9220343W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 1.5 inches", "revision": 5}
+/type/edition /books/OL10515048M 4 2011-04-29T01:08:54.845752 {"publishers": ["Kessinger Publishing, LLC"], "weight": "11.7 ounces", "covers": [2488402], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T01:08:54.845752"}, "latest_revision": 4, "key": "/books/OL10515048M", "authors": [{"key": "/authors/OL611603A"}], "languages": [{"key": "/languages/eng"}], "title": "Poems Of A Country Gentleman", "number_of_pages": 108, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780548120958"], "isbn_10": ["0548120951"], "publish_date": "July 25, 2007", "oclc_numbers": ["179777975"], "works": [{"key": "/works/OL3605257W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.4 inches", "revision": 4}
+/type/edition /books/OL10515147M 5 2010-04-24T18:03:56.229473 {"publishers": ["Kessinger Publishing, LLC"], "number_of_pages": 500, "weight": "2 pounds", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0548122253"], "type": {"key": "/type/edition"}, "identifiers": {"goodreads": ["5985642"]}, "isbn_13": ["9780548122259"], "covers": [2488501], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:03:56.229473"}, "latest_revision": 5, "key": "/books/OL10515147M", "authors": [{"key": "/authors/OL3011458A"}], "publish_date": "July 25, 2007", "title": "Memoirs Illustrating The History Of Napoleon I From 1802 To 1815 V2", "works": [{"key": "/works/OL8811603W"}], "contributions": ["Baron Napoleon Joseph De Meneval (Editor)"], "subjects": ["Biography: general", "Military", "Biography & Autobiography / Military", "Biography / Autobiography"], "physical_dimensions": "9 x 6 x 1.2 inches", "revision": 5}
+/type/edition /books/OL10515753M 4 2011-04-27T09:36:40.836359 {"publishers": ["Kessinger Publishing, LLC"], "subtitle": "His Life And Writings", "weight": "2.1 pounds", "covers": [2489106], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T09:36:40.836359"}, "latest_revision": 4, "key": "/books/OL10515753M", "authors": [{"key": "/authors/OL3011332A"}], "languages": [{"key": "/languages/eng"}], "title": "Studies In Chaucer V1", "number_of_pages": 536, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780548129326"], "isbn_10": ["0548129320"], "publish_date": "July 25, 2007", "oclc_numbers": ["298559103"], "works": [{"key": "/works/OL8811342W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 1.3 inches", "revision": 4}
+/type/edition /books/OL10515801M 6 2011-04-28T10:02:02.671496 {"publishers": ["Kessinger Publishing, LLC"], "identifiers": {"goodreads": ["2027419"]}, "weight": "1.8 pounds", "covers": [2489153], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-28T10:02:02.671496"}, "latest_revision": 6, "key": "/books/OL10515801M", "authors": [{"key": "/authors/OL3452898A"}], "subjects": ["Ethnic Studies - African American Studies - General", "Social Science", "Sociology"], "languages": [{"key": "/languages/eng"}], "title": "History Of The Negro Race In America From 1619-1880 V1 Negroes As Slaves, As Soldiers, And As Citizens", "number_of_pages": 508, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780548129876"], "isbn_10": ["0548129878"], "publish_date": "July 25, 2007", "oclc_numbers": ["172975192"], "works": [{"key": "/works/OL9419698W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6.1 x 1.5 inches", "revision": 6}
+/type/edition /books/OL10516191M 4 2011-04-30T12:29:39.402848 {"publishers": ["Kessinger Publishing, LLC"], "subtitle": "With Notices Of His Life", "weight": "2.2 pounds", "covers": [2489543], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-30T12:29:39.402848"}, "latest_revision": 4, "key": "/books/OL10516191M", "authors": [{"key": "/authors/OL2629011A"}], "isbn_13": ["9780548134405"], "source_records": ["amazon:0548134405"], "title": "Letters And Journals Of Lord Byron V2", "number_of_pages": 572, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0548134405"], "publish_date": "July 25, 2007", "oclc_numbers": ["179777117"], "works": [{"key": "/works/OL273284W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 1.4 inches", "revision": 4}
+/type/edition /books/OL10516215M 5 2011-04-28T17:10:27.752842 {"publishers": ["Kessinger Publishing, LLC"], "subtitle": "Edited By William Cullen Bryant With His Review Of Poets And Poetry From The Time Of Chaucer", "weight": "2.1 pounds", "covers": [2489567], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-28T17:10:27.752842"}, "latest_revision": 5, "key": "/books/OL10516215M", "authors": [{"key": "/authors/OL130624A"}], "isbn_13": ["9780548134689"], "title": "A New Library Of Poetry And Song V1", "number_of_pages": 528, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0548134685"], "publish_date": "July 25, 2007", "oclc_numbers": ["179778136"], "works": [{"key": "/works/OL1288548W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 1.3 inches", "revision": 5}
+/type/edition /books/OL10516314M 6 2011-04-30T05:15:32.083864 {"publishers": ["Kessinger Publishing, LLC"], "identifiers": {"goodreads": ["3023442"]}, "subtitle": "Heir Apparent To The Government And The Appointed Successor Of General Andrew Jackson", "weight": "1.1 pounds", "covers": [2489666], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-30T05:15:32.083864"}, "latest_revision": 6, "key": "/books/OL10516314M", "authors": [{"key": "/authors/OL729301A"}], "subjects": ["Presidents & Heads of State", "Biography & Autobiography", "Biography/Autobiography"], "isbn_13": ["9780548135778"], "title": "The Life Of Martin Van Buren", "number_of_pages": 216, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0548135770"], "publish_date": "July 25, 2007", "oclc_numbers": ["172976885"], "works": [{"key": "/works/OL3979798W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.6 inches", "revision": 6}
+/type/edition /books/OL10516485M 4 2011-04-29T22:28:34.447258 {"publishers": ["Kessinger Publishing, LLC"], "subtitle": "Sketched With The Pen From 1852 To 1881", "weight": "1.5 pounds", "covers": [2489836], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T22:28:34.447258"}, "latest_revision": 4, "key": "/books/OL10516485M", "authors": [{"key": "/authors/OL995831A"}], "isbn_13": ["9780548137949"], "title": "Pictures Of Indian Life", "number_of_pages": 360, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0548137943"], "publish_date": "July 25, 2007", "oclc_numbers": ["179778191"], "works": [{"key": "/works/OL4758556W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.9 inches", "revision": 4}
+/type/edition /books/OL10516694M 6 2011-04-27T07:11:42.203743 {"publishers": ["Kessinger Publishing, LLC"], "number_of_pages": 336, "subtitle": "An Early Poet-Pastor Of Logie And His Intimates", "weight": "1.5 pounds", "covers": [2490045], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T07:11:42.203743"}, "latest_revision": 6, "key": "/books/OL10516694M", "authors": [{"key": "/authors/OL2454919A"}], "isbn_13": ["9780548140338"], "source_records": ["amazon:0548140332"], "title": "Alexander Hume", "identifiers": {"goodreads": ["7081181"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0548140332"], "publish_date": "July 25, 2007", "oclc_numbers": ["179778242"], "works": [{"key": "/works/OL219833W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.9 inches", "revision": 6}
+/type/edition /books/OL10516745M 4 2011-04-28T23:39:51.292916 {"publishers": ["Kessinger Publishing, LLC"], "subtitle": "As Soldier And Statesman", "weight": "1.9 pounds", "covers": [2490096], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-28T23:39:51.292916"}, "latest_revision": 4, "key": "/books/OL10516745M", "authors": [{"key": "/authors/OL2399608A"}], "isbn_13": ["9780548140901"], "source_records": ["amazon:0548140901"], "title": "Life And Services Of Gen. John A. Logan", "number_of_pages": 472, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0548140901"], "publish_date": "July 25, 2007", "oclc_numbers": ["179778263"], "works": [{"key": "/works/OL199892W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 1.2 inches", "revision": 4}
+/type/edition /books/OL10516762M 4 2011-04-28T05:47:53.748736 {"publishers": ["Kessinger Publishing, LLC"], "weight": "2.4 pounds", "covers": [2490113], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-28T05:47:53.748736"}, "latest_revision": 4, "key": "/books/OL10516762M", "authors": [{"key": "/authors/OL2839478A"}], "contributions": ["Daniel Mallory (Editor)"], "languages": [{"key": "/languages/eng"}], "title": "The Life And Speeches Of The Honorable Henry Clay V1", "number_of_pages": 644, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780548141076"], "isbn_10": ["054814107X"], "publish_date": "July 25, 2007", "oclc_numbers": ["179778268"], "works": [{"key": "/works/OL8497217W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 1.6 inches", "revision": 4}
+/type/edition /books/OL10516926M 4 2011-04-25T19:37:29.742294 {"publishers": ["Kessinger Publishing, LLC"], "weight": "2.1 pounds", "covers": [2490277], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-25T19:37:29.742294"}, "latest_revision": 4, "key": "/books/OL10516926M", "authors": [{"key": "/authors/OL3453089A"}], "languages": [{"key": "/languages/eng"}], "title": "Reminiscences", "number_of_pages": 536, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780548142851"], "isbn_10": ["0548142858"], "publish_date": "July 25, 2007", "oclc_numbers": ["179778303"], "works": [{"key": "/works/OL9419980W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 1.3 inches", "revision": 4}
+/type/edition /books/OL10517110M 6 2011-04-30T03:49:16.363805 {"publishers": ["Kessinger Publishing, LLC"], "identifiers": {"goodreads": ["7248206"]}, "subtitle": "Drawn From Original Sources And Containing Many Speeches, Letters, And Telegrams Hitherto Unpublished", "weight": "1.2 pounds", "covers": [2490460], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-30T03:49:16.363805"}, "latest_revision": 6, "key": "/books/OL10517110M", "authors": [{"key": "/authors/OL113636A"}], "subjects": ["Presidents & Heads of State", "Biography & Autobiography / Presidents", "Biography / Autobiography"], "isbn_13": ["9780548144879"], "title": "The Life Of Abraham Lincoln Part Two, V1", "number_of_pages": 252, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0548144877"], "publish_date": "July 25, 2007", "oclc_numbers": ["179776371"], "works": [{"key": "/works/OL1100445W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.7 inches", "revision": 6}
+/type/edition /books/OL10517234M 4 2011-04-29T03:06:00.603381 {"publishers": ["Kessinger Publishing, LLC"], "weight": "1.4 pounds", "covers": [2490584], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T03:06:00.603381"}, "latest_revision": 4, "key": "/books/OL10517234M", "authors": [{"key": "/authors/OL2067024A"}], "subjects": ["General", "Religion"], "languages": [{"key": "/languages/eng"}], "title": "What Is Your Name? A Popular Account Of The Meanings And Derivations Of Christian Names", "number_of_pages": 328, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780548146231"], "isbn_10": ["0548146233"], "publish_date": "July 25, 2007", "oclc_numbers": ["172975034"], "works": [{"key": "/works/OL7199661W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.9 inches", "revision": 4}
+/type/edition /books/OL10517273M 4 2011-04-27T12:02:46.781035 {"publishers": ["Kessinger Publishing, LLC"], "subtitle": "His Life And Work", "weight": "1.2 pounds", "covers": [2490623], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T12:02:46.781035"}, "latest_revision": 4, "key": "/books/OL10517273M", "authors": [{"key": "/authors/OL1814256A"}], "subjects": ["Philosophers", "Biography & Autobiography / Philosophers", "Biography & Autobiography", "Biography / Autobiography", "Biography/Autobiography"], "languages": [{"key": "/languages/eng"}], "title": "Jeremy Bentham", "number_of_pages": 268, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780548146651"], "isbn_10": ["0548146659"], "publish_date": "July 25, 2007", "oclc_numbers": ["172982637"], "works": [{"key": "/works/OL6706191W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.8 inches", "revision": 4}
+/type/edition /books/OL105173M 8 2022-11-11T19:34:30.448539 {"number_of_pages": 515, "subtitle": "deaths of noted movie and television personalities, 1912-1998", "covers": [585464], "lc_classifications": ["PN1998.2 .J37 1998"], "contributions": ["Johe, Lois A."], "edition_name": "9th ed., Carol Pub. Group ed.", "source_records": ["amazon:0806520582", "marc:marc_loc_2016/BooksAll.2016.part28.utf8:94076681:861", "promise:bwb_daily_pallets_2022-11-04"], "title": "Final curtain", "languages": [{"key": "/languages/eng"}], "subjects": ["Motion picture actors and actresses -- Death.", "Television personalities -- Death."], "publish_country": "nju", "by_statement": "Everett G. Jarvis & Lois A. Johe.", "type": {"key": "/type/edition"}, "publishers": ["Carol Pub. Group"], "key": "/books/OL105173M", "authors": [{"key": "/authors/OL70576A"}], "publish_places": ["Secaucus, N.J"], "pagination": "515 p. :", "dewey_decimal_class": ["791.4/092/2"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 515).\n\"A Citadel Press book.\""}, "identifiers": {"librarything": ["720113"], "goodreads": ["2713509"]}, "lccn": ["99222089"], "isbn_10": ["0806520582"], "publish_date": "1998", "works": [{"key": "/works/OL828779W"}], "local_id": ["urn:bwbsku:748-BAC-872"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-11T19:34:30.448539"}}
+/type/edition /books/OL1051750M 8 2022-12-13T06:00:51.011951 {"identifiers": {"goodreads": ["716399"], "librarything": ["480211"]}, "title": "Bala na agulha", "authors": [{"key": "/authors/OL373171A"}], "publish_date": "1992", "publishers": ["Editora Siciliano"], "lc_classifications": ["PQ9698.26.A385 B35 1992"], "publish_places": ["Sa\u0303o Paulo, Brasil"], "pagination": "203 p. ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:87589735:491", "ia:balanaagulha0000paiv", "promise:bwb_daily_pallets_2021-04-01"], "dewey_decimal_class": ["869.3"], "languages": [{"key": "/languages/por"}], "lccn": ["93831407"], "isbn_10": ["8526705245"], "publish_country": "bl ", "by_statement": "Marcelo Rubens Paiva.", "type": {"key": "/type/edition"}, "ocaid": "balanaagulha0000paiv", "key": "/books/OL1051750M", "number_of_pages": 203, "works": [{"key": "/works/OL2595737W"}], "local_id": ["urn:bwbsku:W6-CQA-699"], "covers": [13052965], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-13T06:00:51.011951"}}
+/type/edition /books/OL10517628M 5 2011-04-29T02:37:40.317181 {"publishers": ["Kessinger Publishing, LLC"], "subtitle": "In A Series Of Letters", "weight": "1.7 pounds", "covers": [2490979], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T02:37:40.317181"}, "latest_revision": 5, "key": "/books/OL10517628M", "authors": [{"key": "/authors/OL116746A"}], "languages": [{"key": "/languages/eng"}], "title": "The History Of Clarissa Harlowe V4", "number_of_pages": 418, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780548150627"], "isbn_10": ["0548150621"], "publish_date": "July 25, 2007", "oclc_numbers": ["179779293"], "works": [{"key": "/works/OL7981224W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 1.1 inches", "revision": 5}
+/type/edition /books/OL10517836M 6 2011-04-27T18:38:53.410190 {"publishers": ["Kessinger Publishing, LLC"], "identifiers": {"goodreads": ["5937178"]}, "subtitle": "With Special Reference To The Theories Of Sir William Hamilton And M. Cousin", "weight": "1.2 pounds", "covers": [2491187], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T18:38:53.410190"}, "latest_revision": 6, "key": "/books/OL10517836M", "authors": [{"key": "/authors/OL2980814A"}], "languages": [{"key": "/languages/eng"}], "title": "The Philosophy Of The Infinite", "number_of_pages": 248, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780548152935"], "isbn_10": ["0548152934"], "publish_date": "July 25, 2007", "oclc_numbers": ["179776636"], "works": [{"key": "/works/OL8756990W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.7 inches", "revision": 6}
+/type/edition /books/OL10518199M 6 2011-04-27T09:08:05.787822 {"publishers": ["Kessinger Publishing, LLC"], "weight": "14.7 ounces", "covers": [2491550], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T09:08:05.787822"}, "latest_revision": 6, "key": "/books/OL10518199M", "authors": [{"key": "/authors/OL107388A"}], "languages": [{"key": "/languages/eng"}], "title": "The Dramatic Works Of Richard Brinsley Sheridan", "number_of_pages": 168, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780548156797"], "isbn_10": ["0548156794"], "publish_date": "July 25, 2007", "oclc_numbers": ["179776833"], "works": [{"key": "/works/OL1062652W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.5 inches", "revision": 6}
+/type/edition /books/OL1051833M 4 2020-11-25T12:15:45.561396 {"publishers": ["Editora Gra\u0301fica da Fundac\u0327a\u0303o Cultural de Belo Horizonte"], "isbn_10": ["8585477016"], "subject_place": ["Brazil"], "lc_classifications": ["MLCS 97/03112 (R)", "LA556 .G64 1995"], "latest_revision": 4, "key": "/books/OL1051833M", "authors": [{"key": "/authors/OL563589A"}], "publish_places": ["Belo Horizonte"], "pagination": "521 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:87651596:731", "marc:marc_loc_2016/BooksAll.2016.part26.utf8:7674506:910"], "title": "Vida e obra de Luigi Bogliolo", "lccn": ["93831496", "96831764"], "notes": {"type": "/type/text", "value": "Includes bibliographical references."}, "number_of_pages": 521, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/por"}], "subjects": ["Bogliolo, Luigi, 1910-", "Physicians -- Brazil -- Biography.", "Pathologists -- Brazil -- Biography."], "publish_date": "1992", "publish_country": "bl ", "last_modified": {"type": "/type/datetime", "value": "2020-11-25T12:15:45.561396"}, "by_statement": "Luiz Ota\u0301vio Savassi Rocha.", "works": [{"key": "/works/OL3423120W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10518578M 4 2010-08-19T15:52:30.409631 {"publishers": ["Kessinger Publishing, LLC"], "subtitle": "Descriptive, Narrative; What's The Use Of Poetry", "weight": "1.9 pounds", "covers": [2491929], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-08-19T15:52:30.409631"}, "latest_revision": 4, "key": "/books/OL10518578M", "authors": [{"key": "/authors/OL49566A"}], "contributions": ["Bliss Carman (Editor)"], "languages": [{"key": "/languages/eng"}], "title": "The World's Best Poetry V7", "number_of_pages": 470, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780548160794"], "isbn_10": ["0548160791"], "publish_date": "July 25, 2007", "works": [{"key": "/works/OL643450W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 1.2 inches", "revision": 4}
+/type/edition /books/OL1051861M 3 2020-11-18T01:02:30.546099 {"publishers": ["J. Scortecci Editora"], "series": ["Arquivos de Ezequiel", "Biblioteca Hiperespac\u0327o"], "lc_classifications": ["PQ9698.26.A8617 H47 1992"], "latest_revision": 3, "key": "/books/OL1051861M", "authors": [{"key": "/authors/OL563606A"}], "publish_places": ["Sa\u0303o Paulo, SP"], "languages": [{"key": "/languages/por"}], "pagination": "219 p. ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:87674092:594"], "title": "A heranc\u0327a de Elisa", "dewey_decimal_class": ["869.3"], "number_of_pages": 219, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "edition_name": "1a. ed.", "lccn": ["93831528"], "last_modified": {"type": "/type/datetime", "value": "2020-11-18T01:02:30.546099"}, "publish_date": "1992", "publish_country": "bl ", "by_statement": "Luiz Gonzaga Scortecci de Paula.", "works": [{"key": "/works/OL3423151W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10518680M 4 2018-04-23T02:58:27.332105 {"publishers": ["Kessinger Publishing, LLC"], "weight": "1.3 pounds", "covers": [2492031], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2018-04-23T02:58:27.332105"}, "latest_revision": 4, "key": "/books/OL10518680M", "authors": [{"key": "/authors/OL317388A"}], "languages": [{"key": "/languages/eng"}], "source_records": ["amazon:0548161879"], "title": "The World's Painters And Their Pictures", "number_of_pages": 290, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780548161876"], "isbn_10": ["0548161879"], "publish_date": "July 25, 2007", "works": [{"key": "/works/OL244162W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.8 inches", "revision": 4}
+/type/edition /books/OL10518902M 5 2018-04-05T21:52:09.597762 {"publishers": ["Kessinger Publishing, LLC"], "weight": "2 pounds", "covers": [2492254], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2018-04-05T21:52:09.597762"}, "latest_revision": 5, "key": "/books/OL10518902M", "authors": [{"key": "/authors/OL108123A"}], "languages": [{"key": "/languages/eng"}], "source_records": ["amazon:054816424X"], "title": "The Principles Of Ethics V2", "number_of_pages": 496, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780548164242"], "isbn_10": ["054816424X"], "publish_date": "July 25, 2007", "works": [{"key": "/works/OL117755W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 1.2 inches", "revision": 5}
+/type/edition /books/OL10518979M 4 2010-04-13T06:07:20.534000 {"publishers": ["Kessinger Publishing, LLC"], "key": "/books/OL10518979M", "weight": "2.5 pounds", "languages": [{"key": "/languages/eng"}], "number_of_pages": 666, "isbn_13": ["9780548165072"], "covers": [2492331], "physical_format": "Hardcover", "isbn_10": ["0548165076"], "publish_date": "July 25, 2007", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:07:20.534000"}, "authors": [{"key": "/authors/OL577137A"}], "title": "A Popular Introduction To The Study Of The Holy Scriptures", "latest_revision": 4, "works": [{"key": "/works/OL3463618W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 1.6 inches", "revision": 4}
+/type/edition /books/OL10519021M 4 2010-04-13T06:07:20.534000 {"publishers": ["Kessinger Publishing, LLC"], "weight": "2 pounds", "covers": [2492373], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:07:20.534000"}, "latest_revision": 4, "key": "/books/OL10519021M", "authors": [{"key": "/authors/OL2075544A"}], "isbn_13": ["9780548165539"], "source_records": ["amazon:054816553X"], "title": "A History Of Nineteenth Century Literature 1780-1895", "number_of_pages": 490, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["054816553X"], "publish_date": "July 25, 2007", "works": [{"key": "/works/OL143870W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 1.2 inches", "revision": 4}
+/type/edition /books/OL10519173M 7 2011-11-06T03:19:42.861284 {"publishers": ["Kessinger Publishing, LLC"], "number_of_pages": 418, "weight": "1.7 pounds", "covers": [2492525], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-11-06T03:19:42.861284"}, "latest_revision": 7, "key": "/books/OL10519173M", "authors": [{"key": "/authors/OL387124A"}], "languages": [{"key": "/languages/eng"}], "title": "Traditions Of The Skidi Pawnee", "identifiers": {"goodreads": ["7215663"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780548167182"], "isbn_10": ["0548167184"], "publish_date": "July 25, 2007", "works": [{"key": "/works/OL2654781W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 1.1 inches", "revision": 7}
+/type/edition /books/OL10519297M 3 2010-08-17T02:39:20.579538 {"publishers": ["Kessinger Publishing, LLC"], "identifiers": {"librarything": ["5866575"]}, "subtitle": "The End Of The Middle Ages", "weight": "2.2 pounds", "covers": [2492649], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-08-17T02:39:20.579538"}, "latest_revision": 3, "key": "/books/OL10519297M", "contributions": ["Adolphus William Ward (Editor)", "A. R. Waller (Editor)"], "languages": [{"key": "/languages/eng"}], "title": "The Cambridge History Of English Literature V2", "number_of_pages": 558, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780548168509"], "isbn_10": ["0548168504"], "publish_date": "July 25, 2007", "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 1.4 inches", "revision": 3}
+/type/edition /books/OL10519325M 5 2010-04-24T18:03:56.229473 {"publishers": ["Kessinger Publishing, LLC"], "number_of_pages": 426, "subtitle": "A History And Explanation Of Apparitions, Visions, Dreams, Ecstasy, Magnetism And Somnambulism", "weight": "1.8 pounds", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0548168784"], "type": {"key": "/type/edition"}, "identifiers": {"goodreads": ["3395379"]}, "isbn_13": ["9780548168783"], "covers": [2492677], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:03:56.229473"}, "latest_revision": 5, "key": "/books/OL10519325M", "authors": [{"key": "/authors/OL2851575A"}], "publish_date": "July 25, 2007", "title": "On Hallucinations", "works": [{"key": "/works/OL8521408W"}], "contributions": ["Robert T. Hulme (Translator)"], "physical_dimensions": "9 x 6 x 1.1 inches", "revision": 5}
+/type/edition /books/OL1051946M 5 2020-11-18T01:03:23.169160 {"publishers": ["Edoc\u0327o\u0303es Paulinas"], "number_of_pages": 177, "subtitle": "para uma histo\u0301ria da evangelizac\u0327a\u0303o", "isbn_10": ["8505014073"], "subject_place": ["Brazil"], "lc_classifications": ["BX1968 .L87 1992"], "latest_revision": 5, "key": "/books/OL1051946M", "authors": [{"key": "/authors/OL563652A"}], "publish_places": ["Sa\u0303o Paulo"], "pagination": "177 p. ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:87744138:794"], "title": "Catequese cato\u0301lica no Brasil", "lccn": ["93831627"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 170-172)."}, "identifiers": {"goodreads": ["6010286"]}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/por"}], "subjects": ["Catechetics -- Catholic Church -- History.", "Evangelistic work -- Brazil -- History."], "publish_date": "1992", "publish_country": "bl ", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T01:03:23.169160"}, "series": ["Colec\u0327a\u0303o Estudos e debates latino-americanos ;", "23"], "by_statement": "Oscar de Figueiredo Lustosa.", "oclc_numbers": ["28851309"], "works": [{"key": "/works/OL3423321W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10519486M 4 2010-04-24T18:03:56.229473 {"publishers": ["Kessinger Publishing, LLC"], "number_of_pages": 156, "subtitle": "For Use By Public-School Teachers, Parents And The Superintendents Of Junior Societies In Churches", "weight": "14.1 ounces", "title": "A Manual Of Physical Training: For Boys And Girls", "type": {"key": "/type/edition"}, "identifiers": {"goodreads": ["7324711"]}, "isbn_13": ["9780548170496"], "covers": [2492839], "languages": [{"key": "/languages/eng"}], "authors": [{"key": "/authors/OL3453710A"}, {"key": "/authors/OL3453711A"}], "isbn_10": ["0548170495"], "publish_date": "July 25, 2007", "key": "/books/OL10519486M", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:03:56.229473"}, "latest_revision": 4, "physical_format": "Hardcover", "physical_dimensions": "9 x 6 x 0.5 inches", "revision": 4}
+/type/edition /books/OL10519519M 5 2010-04-24T18:03:56.229473 {"publishers": ["Kessinger Publishing, LLC"], "languages": [{"key": "/languages/eng"}], "identifiers": {"goodreads": ["5069778"]}, "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:03:56.229473"}, "weight": "1.5 pounds", "title": "Attic And Elizabethan Tragedy", "number_of_pages": 360, "isbn_13": ["9780548170823"], "covers": [2492872], "physical_format": "Hardcover", "isbn_10": ["0548170827"], "publish_date": "July 25, 2007", "key": "/books/OL10519519M", "authors": [{"key": "/authors/OL2689783A"}], "latest_revision": 5, "works": [{"key": "/works/OL8080145W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.9 inches", "revision": 5}
+/type/edition /books/OL10519586M 5 2010-04-24T18:03:56.229473 {"publishers": ["Kessinger Publishing, LLC"], "languages": [{"key": "/languages/eng"}], "identifiers": {"goodreads": ["3029881"]}, "subtitle": "The Negro Patriot Of Hayti", "weight": "1.5 pounds", "title": "The Life Of Toussaint L'Ouverture", "number_of_pages": 348, "isbn_13": ["9780548171530"], "covers": [2492939], "physical_format": "Hardcover", "authors": [{"key": "/authors/OL3239488A"}], "isbn_10": ["054817153X"], "latest_revision": 5, "key": "/books/OL10519586M", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:03:56.229473"}, "publish_date": "July 25, 2007", "works": [{"key": "/works/OL9164993W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.9 inches", "revision": 5}
+/type/edition /books/OL10519662M 4 2010-08-17T02:39:20.579538 {"publishers": ["Kessinger Publishing, LLC"], "number_of_pages": 322, "weight": "1.4 pounds", "covers": [2493015], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-08-17T02:39:20.579538"}, "latest_revision": 4, "key": "/books/OL10519662M", "authors": [{"key": "/authors/OL3039370A"}], "isbn_13": ["9780548172360"], "title": "A Busy Year At The Old Squires", "identifiers": {"librarything": ["4546644"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0548172366"], "publish_date": "July 25, 2007", "works": [{"key": "/works/OL8855880W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.9 inches", "revision": 4}
+/type/edition /books/OL10519715M 3 2010-04-13T06:07:20.534000 {"publishers": ["Kessinger Publishing, LLC"], "key": "/books/OL10519715M", "weight": "1.8 pounds", "languages": [{"key": "/languages/eng"}], "number_of_pages": 426, "isbn_13": ["9780548172933"], "covers": [2493068], "physical_format": "Hardcover", "isbn_10": ["0548172935"], "publish_date": "July 25, 2007", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:07:20.534000"}, "authors": [{"key": "/authors/OL165314A"}], "title": "College And Commonwealth And Other Educational Papers And Addresses", "latest_revision": 3, "works": [{"key": "/works/OL1551619W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 1.1 inches", "revision": 3}
+/type/edition /books/OL10520110M 5 2011-04-30T06:57:09.949703 {"publishers": ["Kessinger Publishing, LLC"], "weight": "1.7 pounds", "covers": [2493464], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-30T06:57:09.949703"}, "latest_revision": 5, "key": "/books/OL10520110M", "authors": [{"key": "/authors/OL2544925A"}], "isbn_13": ["9780548177068"], "source_records": ["amazon:0548177066"], "title": "A Classical Tour Through Italy V1", "number_of_pages": 410, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0548177066"], "publish_date": "July 25, 2007", "oclc_numbers": ["179783834"], "works": [{"key": "/works/OL243037W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 1.1 inches", "revision": 5}
+/type/edition /books/OL10520448M 6 2022-01-04T03:23:23.626405 {"publishers": ["Kessinger Publishing, LLC"], "languages": [{"key": "/languages/eng"}], "identifiers": {"goodreads": ["5159920"]}, "subtitle": "The Settler Of Pennsylvania", "weight": "1 pounds", "title": "The Life Of William Penn", "number_of_pages": 208, "isbn_13": ["9780548180617"], "covers": [2493802], "physical_format": "Hardcover", "authors": [{"key": "/authors/OL6631573A"}], "isbn_10": ["054818061X"], "key": "/books/OL10520448M", "publish_date": "July 25, 2007", "works": [{"key": "/works/OL9420199W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.6 inches", "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-04T03:23:23.626405"}}
+/type/edition /books/OL10520489M 4 2011-04-30T05:15:32.083864 {"publishers": ["Kessinger Publishing, LLC"], "subtitle": "Jehovah Elohim", "weight": "1.4 pounds", "covers": [2493843], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-30T05:15:32.083864"}, "latest_revision": 4, "key": "/books/OL10520489M", "authors": [{"key": "/authors/OL3453947A"}], "languages": [{"key": "/languages/eng"}], "title": "Trinitarian And Unitarian Sermons V1", "number_of_pages": 306, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780548181065"], "isbn_10": ["0548181063"], "publish_date": "July 25, 2007", "oclc_numbers": ["179778979"], "works": [{"key": "/works/OL9421164W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.8 inches", "revision": 4}
+/type/edition /books/OL10520742M 3 2010-04-13T06:07:20.534000 {"publishers": ["Kessinger Publishing, LLC"], "key": "/books/OL10520742M", "weight": "1.3 pounds", "languages": [{"key": "/languages/eng"}], "number_of_pages": 282, "isbn_13": ["9780548183809"], "covers": [2494096], "physical_format": "Hardcover", "isbn_10": ["0548183805"], "publish_date": "July 25, 2007", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:07:20.534000"}, "authors": [{"key": "/authors/OL2981892A"}], "title": "Sporting Firearms Of Today In Use", "latest_revision": 3, "works": [{"key": "/works/OL8759440W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.8 inches", "revision": 3}
+/type/edition /books/OL10521051M 6 2011-06-08T02:17:37.164075 {"publishers": ["Kessinger Publishing, LLC"], "number_of_pages": 234, "subtitle": "Floriz And Blauncheflur, The Assumption Of Our Lady", "weight": "1.1 pounds", "covers": [2494405], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-06-08T02:17:37.164075"}, "latest_revision": 6, "key": "/books/OL10521051M", "authors": [{"key": "/authors/OL2141565A"}], "contributions": ["George H. McKnight (Editor)"], "isbn_13": ["9780548187067"], "title": "King Horn", "identifiers": {"goodreads": ["7279174"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0548187061"], "publish_date": "July 25, 2007", "oclc_numbers": ["179777506"], "works": [{"key": "/works/OL7299910W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.7 inches", "revision": 6}
+/type/edition /books/OL10521787M 3 2010-04-13T06:07:20.534000 {"publishers": ["Kessinger Publishing, LLC"], "number_of_pages": 134, "subtitle": "A Reply To An Inquiry", "weight": "13 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0548194904"], "title": "Universal Salvation Indefensible Upon Mr. Balfour's Ground", "isbn_13": ["9780548194904"], "covers": [2495141], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:07:20.534000"}, "latest_revision": 3, "key": "/books/OL10521787M", "authors": [{"key": "/authors/OL518339A"}], "publish_date": "July 25, 2007", "works": [{"key": "/works/OL3210504W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.4 inches", "revision": 3}
+/type/edition /books/OL10521799M 4 2011-04-27T20:08:22.799489 {"publishers": ["Kessinger Publishing, LLC"], "weight": "2 pounds", "covers": [2495153], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T20:08:22.799489"}, "latest_revision": 4, "key": "/books/OL10521799M", "authors": [{"key": "/authors/OL70158A"}], "languages": [{"key": "/languages/eng"}], "title": "The Select Works Of William Penn V1", "number_of_pages": 494, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780548195031"], "isbn_10": ["054819503X"], "publish_date": "July 25, 2007", "oclc_numbers": ["179778770"], "works": [{"key": "/works/OL826129W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 1.2 inches", "revision": 4}
+/type/edition /books/OL10521805M 7 2011-04-22T19:51:19.044559 {"publishers": ["Kessinger Publishing, LLC"], "identifiers": {"librarything": ["2843778"], "goodreads": ["4491638"]}, "weight": "1.4 pounds", "covers": [2495159], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-22T19:51:19.044559"}, "latest_revision": 7, "key": "/books/OL10521805M", "authors": [{"key": "/authors/OL317506A"}], "isbn_13": ["9780548195093"], "title": "The Life And Times Of Henry Gassaway Davis 1823-1916", "number_of_pages": 332, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0548195099"], "publish_date": "July 25, 2007", "oclc_numbers": ["179778772"], "works": [{"key": "/works/OL2345944W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6.1 x 1.1 inches", "revision": 7}
+/type/edition /books/OL10521915M 4 2011-04-26T13:11:17.308546 {"publishers": ["Kessinger Publishing, LLC"], "subtitle": "An Autobiography", "weight": "14.6 ounces", "covers": [2495269], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-26T13:11:17.308546"}, "latest_revision": 4, "key": "/books/OL10521915M", "authors": [{"key": "/authors/OL3454276A"}], "languages": [{"key": "/languages/eng"}], "title": "An Average American Army Officer", "number_of_pages": 164, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780548196397"], "isbn_10": ["0548196397"], "publish_date": "July 25, 2007", "oclc_numbers": ["179777738"], "works": [{"key": "/works/OL9421638W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.5 inches", "revision": 4}
+/type/edition /books/OL10521995M 5 2011-04-22T23:20:39.854347 {"publishers": ["Kessinger Publishing, LLC"], "number_of_pages": 360, "weight": "1.5 pounds", "covers": [2495350], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-22T23:20:39.854347"}, "latest_revision": 5, "key": "/books/OL10521995M", "contributions": ["Lord Brougham (Foreword)", "Matthew Davenport Hill (Editor)"], "isbn_13": ["9780548197387"], "title": "Our Exemplars, Poor And Rich Or, Biographical Sketches Of Men And Women", "identifiers": {"goodreads": ["4940399"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0548197385"], "publish_date": "July 25, 2007", "oclc_numbers": ["179779435"], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.9 inches", "revision": 5}
+/type/edition /books/OL10522218M 4 2011-04-26T03:40:38.004349 {"publishers": ["Kessinger Publishing, LLC"], "weight": "1.2 pounds", "covers": [2495573], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-26T03:40:38.004349"}, "latest_revision": 4, "key": "/books/OL10522218M", "authors": [{"key": "/authors/OL797173A"}], "languages": [{"key": "/languages/eng"}], "title": "The Psychology Of Functional Neuroses", "number_of_pages": 272, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780548199800"], "isbn_10": ["0548199809"], "publish_date": "July 25, 2007", "oclc_numbers": ["179777819"], "works": [{"key": "/works/OL4194324W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.8 inches", "revision": 4}
+/type/edition /books/OL10522359M 4 2011-04-30T10:09:11.319135 {"publishers": ["Kessinger Publishing, LLC"], "subtitle": "Based Partly On G. Stanley Halls Psychology Of Adolescence", "weight": "1.1 pounds", "covers": [2495714], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-30T10:09:11.319135"}, "latest_revision": 4, "key": "/books/OL10522359M", "authors": [{"key": "/authors/OL2537613A"}], "contributions": ["G. Stanley Hall (Introduction)"], "subjects": ["Developmental - Adolescent", "Psychology & Psychiatry / Adolescent Psychology", "Psychology"], "isbn_13": ["9780548201336"], "source_records": ["amazon:0548201331"], "title": "Education During Adolescence", "number_of_pages": 236, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0548201331"], "publish_date": "July 25, 2007", "oclc_numbers": ["179777858"], "works": [{"key": "/works/OL241562W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.7 inches", "revision": 4}
+/type/edition /books/OL10522404M 4 2011-04-30T14:17:32.215567 {"publishers": ["Kessinger Publishing, LLC"], "subtitle": "A Textbook Of Diagnosis And Prognosis For All Concerned In Understanding Offenders", "weight": "1.6 pounds", "covers": [2495759], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-30T14:17:32.215567"}, "latest_revision": 4, "key": "/books/OL10522404M", "authors": [{"key": "/authors/OL1090719A"}], "languages": [{"key": "/languages/eng"}], "title": "The Individual Delinquent V2", "number_of_pages": 394, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780548201824"], "isbn_10": ["054820182X"], "publish_date": "July 25, 2007", "oclc_numbers": ["179779008"], "works": [{"key": "/works/OL5019273W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 1 inches", "revision": 4}
+/type/edition /books/OL10522405M 3 2010-04-13T06:07:20.534000 {"publishers": ["Kessinger Publishing, LLC"], "number_of_pages": 526, "subtitle": "Presenting Analysis Of The Functions Of Mind, Under The Operations And Directions Of Reason", "weight": "2.1 pounds", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0548201838"], "title": "Rational Religion And Morals V2", "isbn_13": ["9780548201831"], "covers": [2495760], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:07:20.534000"}, "latest_revision": 3, "key": "/books/OL10522405M", "authors": [{"key": "/authors/OL2343906A"}], "publish_date": "July 25, 2007", "works": [{"key": "/works/OL7637214W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 1.3 inches", "revision": 3}
+/type/edition /books/OL10522602M 4 2011-04-27T23:55:34.635580 {"publishers": ["Kessinger Publishing, LLC"], "subtitle": "An Outline Of The Development Of The Evolution Idea", "weight": "1.2 pounds", "covers": [2495957], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T23:55:34.635580"}, "latest_revision": 4, "key": "/books/OL10522602M", "authors": [{"key": "/authors/OL165917A"}], "subjects": ["General", "History", "History: World"], "languages": [{"key": "/languages/eng"}], "title": "From The Greeks To Darwin", "number_of_pages": 268, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780548203897"], "isbn_10": ["054820389X"], "publish_date": "July 25, 2007", "oclc_numbers": ["172983140"], "works": [{"key": "/works/OL1556204W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.8 inches", "revision": 4}
+/type/edition /books/OL10522732M 4 2011-04-29T06:52:45.612858 {"publishers": ["Kessinger Publishing, LLC"], "subtitle": "From The Earliest Authentic Periods To The Close Of The Byzantine Era", "weight": "2.3 pounds", "covers": [2496086], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T06:52:45.612858"}, "latest_revision": 4, "key": "/books/OL10522732M", "authors": [{"key": "/authors/OL2308178A"}], "subjects": ["Literature: History & Criticism", "Ancient and Classical", "Literary Criticism & Collections / Ancient & Classical", "Literature - Classics / Criticism"], "languages": [{"key": "/languages/eng"}], "title": "A Manual Of Greek Literature", "number_of_pages": 596, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780548205228"], "isbn_10": ["0548205221"], "publish_date": "July 25, 2007", "oclc_numbers": ["179785494"], "works": [{"key": "/works/OL7544932W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 1.4 inches", "revision": 4}
+/type/edition /books/OL10522904M 6 2011-04-25T22:46:19.104277 {"publishers": ["Kessinger Publishing, LLC"], "number_of_pages": 108, "weight": "11.7 ounces", "covers": [2496258], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-25T22:46:19.104277"}, "latest_revision": 6, "key": "/books/OL10522904M", "authors": [{"key": "/authors/OL2570740A"}], "contributions": ["Albert S. Cook (Editor)"], "isbn_13": ["9780548206997"], "source_records": ["amazon:0548206996"], "title": "Studies In Jonson's Comedy", "identifiers": {"goodreads": ["5007235"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0548206996"], "publish_date": "July 25, 2007", "oclc_numbers": ["179779136"], "works": [{"key": "/works/OL248438W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.4 inches", "revision": 6}
+/type/edition /books/OL10522922M 3 2010-04-13T06:07:20.534000 {"publishers": ["Kessinger Publishing, LLC"], "languages": [{"key": "/languages/eng"}], "subtitle": "A Collection Of Plays For School And Home", "weight": "1.3 pounds", "title": "The Amateur Actor", "isbn_10": ["0548207178"], "number_of_pages": 284, "isbn_13": ["9780548207178"], "covers": [2496276], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:07:20.534000"}, "latest_revision": 3, "physical_dimensions": "9 x 6 x 0.8 inches", "key": "/books/OL10522922M", "authors": [{"key": "/authors/OL2998072A"}], "publish_date": "July 25, 2007", "works": [{"key": "/works/OL8793336W"}], "type": {"key": "/type/edition"}, "first_sentence": {"type": "/type/text", "value": "SCENE I:-A wood near Athens."}, "revision": 3}
+/type/edition /books/OL10523148M 6 2011-04-25T14:17:14.224567 {"publishers": ["Kessinger Publishing, LLC"], "identifiers": {"goodreads": ["2270574"]}, "subtitle": "A Selection Of Irish Songs By The Poets Of The Last Century", "weight": "1.4 pounds", "covers": [2496503], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-25T14:17:14.224567"}, "latest_revision": 6, "key": "/books/OL10523148M", "authors": [{"key": "/authors/OL339293A"}], "subjects": ["English, Irish, Scottish, Welsh", "Poetry / Single Author / British & Irish", "Poetry"], "isbn_13": ["9780548209530"], "title": "The Poets And Poetry Of Munster", "number_of_pages": 306, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0548209537"], "publish_date": "July 25, 2007", "oclc_numbers": ["172982764"], "works": [{"key": "/works/OL2447657W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.8 inches", "revision": 6}
+/type/edition /books/OL10523474M 7 2022-12-10T06:19:55.415552 {"publishers": ["World Book Encyclopedia"], "languages": [{"key": "/languages/eng"}], "title": "Science Year 1987 World Book Annual Science Supplement", "identifiers": {"librarything": ["5056923"], "amazon": [""]}, "isbn_13": ["9780716605874"], "physical_format": "Hardcover", "isbn_10": ["0716605872"], "publish_date": "June 1986", "key": "/books/OL10523474M", "authors": [{"key": "/authors/OL6822163A"}], "works": [{"key": "/works/OL8372504W"}], "type": {"key": "/type/edition"}, "subjects": ["Science/Mathematics"], "covers": [11710061], "ocaid": "scienceyear1987w0000unse", "source_records": ["ia:scienceyear1987w0000unse", "promise:bwb_daily_pallets_2020-07-30", "promise:bwb_daily_pallets_2020-07-07"], "local_id": ["urn:bwbsku:KN-564-097", "urn:bwbsku:P6-AYN-715"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T06:19:55.415552"}}
+/type/edition /books/OL10523481M 9 2020-05-15T15:46:31.521272 {"publishers": ["World Book"], "number_of_pages": 208, "subtitle": "The How and Why Library", "covers": [9455899], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2020-05-15T15:46:31.521272"}, "latest_revision": 9, "key": "/books/OL10523481M", "authors": [{"key": "/authors/OL2788981A"}], "ocaid": "heroeshelperssu00worl", "subjects": ["Interpersonal Relations", "Psychology", "Altruism in animals", "Animal heroes", "Helping behavior", "Heroes", "Juvenile literature", "Children: Grades 3-4"], "isbn_13": ["9780716606048"], "source_records": ["amazon:0716606046", "marc:marc_loc_updates/v35.i19.records.utf8:5042652:2144", "ia:heroeshelperssu00worl"], "title": "Heroes and Helpers: A Supplement to Childcraft ", "identifiers": {"goodreads": ["3938065"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0716606046"], "publish_date": "May 2003", "oclc_numbers": ["51607683"], "works": [{"key": "/works/OL8372704W"}], "type": {"key": "/type/edition"}, "revision": 9}
+/type/edition /books/OL10523486M 8 2020-12-11T05:40:17.272715 {"publishers": ["World Book"], "identifiers": {"librarything": ["9714147"], "goodreads": ["3312611"]}, "subtitle": "A Supplement to Childcraft--The How and Why Library", "physical_format": "Hardcover", "key": "/books/OL10523486M", "authors": [{"key": "/authors/OL6822163A"}], "subjects": ["General", "Children's Books/Ages 9-12 Fiction", "Children's 9-12"], "isbn_13": ["9780716606130"], "title": "All about Birds", "number_of_pages": 208, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0716606135"], "publish_date": "January 2005", "oclc_numbers": ["58432183"], "works": [{"key": "/works/OL8372481W"}], "type": {"key": "/type/edition"}, "lccn": ["2005005808"], "lc_classifications": ["QL676.2 .A36 2005"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part32.utf8:123694905:894"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-11T05:40:17.272715"}}
+/type/edition /books/OL10523624M 5 2022-12-04T11:18:50.205582 {"publishers": ["World Book"], "identifiers": {"librarything": ["4984654"], "amazon": ["B00278CR36"], "better_world_books": ["BWB48462262"]}, "languages": [{"key": "/languages/eng"}], "number_of_pages": 127, "isbn_13": ["9780716631897"], "physical_format": "Unknown Binding", "isbn_10": ["071663189X"], "publish_date": "1986", "key": "/books/OL10523624M", "authors": [{"key": "/authors/OL3454783A"}], "title": "Reports and term papers (World Book learning library)", "works": [{"key": "/works/OL9422317W"}], "type": {"key": "/type/edition"}, "subjects": ["Report writing"], "local_id": ["urn:bwbsku:W7-DIE-392"], "source_records": ["promise:bwb_daily_pallets_2022-09-07"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T11:18:50.205582"}}
+/type/edition /books/OL1052374M 3 2020-11-18T01:07:48.564066 {"publishers": ["Livraria e Editora Brasi\u0301lia Juri\u0301dica"], "subject_place": ["Brazil."], "lc_classifications": ["KHD2921 .M364 1992"], "latest_revision": 3, "key": "/books/OL1052374M", "authors": [{"key": "/authors/OL93198A"}], "publish_places": ["Brasi\u0301lia, DF"], "pagination": "134 p. ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:88093160:566"], "title": "A margem da constituinte", "dewey_decimal_class": ["342.81", "348.102"], "number_of_pages": 134, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/por"}], "lccn": ["93832082"], "subjects": ["Constitutional law -- Brazil."], "publish_date": "1992", "publish_country": "bl ", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T01:07:48.564066"}, "by_statement": "Josaphat Marinho.", "works": [{"key": "/works/OL1002587W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10524018M 5 2022-05-25T22:45:25.242685 {"publishers": ["W H Freeman & Co (Sd)"], "number_of_pages": 498, "weight": "2.5 pounds", "title": "General Chemistry in the Laboratory", "physical_format": "Paperback", "identifiers": {"goodreads": ["4087581"], "librarything": ["4497868"]}, "isbn_13": ["9780716721208"], "edition_name": "3rd edition", "isbn_10": ["0716721201"], "publish_date": "December 1990", "key": "/books/OL10524018M", "authors": [{"key": "/authors/OL3298899A"}, {"key": "/authors/OL3298900A"}, {"key": "/authors/OL1400011A"}], "type": {"key": "/type/edition"}, "subjects": ["Chemistry", "Laboratory manuals", "Science/Mathematics"], "physical_dimensions": "11.2 x 8.5 x 1 inches", "works": [{"key": "/works/OL27822443W"}], "source_records": ["bwb:9780716721208"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T22:45:25.242685"}}
+/type/edition /books/OL10524224M 6 2010-08-17T02:39:20.579538 {"publishers": ["St. Martin's Press"], "weight": "1.5 pounds", "covers": [5064466], "edition_name": "2nd edition", "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-08-17T02:39:20.579538"}, "latest_revision": 6, "key": "/books/OL10524224M", "authors": [{"key": "/authors/OL2834491A"}], "subjects": ["Geography", "General", "Earth Sciences - General", "Science", "Science/Mathematics"], "isbn_13": ["9780716728047"], "title": "Study Guide for Press and Siever's Understanding Earth", "identifiers": {"goodreads": ["6480865"], "librarything": ["3056114"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0716728044"], "publish_date": "August 1997", "works": [{"key": "/works/OL8487434W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "11 x 8.5 x 0.5 inches", "revision": 6}
+/type/edition /books/OL10524337M 3 2010-04-24T18:03:56.229473 {"languages": [{"key": "/languages/eng"}], "subtitle": "Environmental Geology CD-ROM", "key": "/books/OL10524337M", "publishers": ["W. H. Freeman"], "identifiers": {"goodreads": ["3021176"]}, "isbn_13": ["9780716733041"], "edition_name": "Har/Cdr edition", "physical_format": "Hardcover", "isbn_10": ["0716733048"], "publish_date": "April 15, 1998", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:03:56.229473"}, "authors": [{"key": "/authors/OL391044A"}, {"key": "/authors/OL3366053A"}, {"key": "/authors/OL3454874A"}, {"key": "/authors/OL3257917A"}, {"key": "/authors/OL3257918A"}], "title": "Environmental Geology & Earth Matters CD-Rom", "latest_revision": 3, "type": {"key": "/type/edition"}, "subjects": ["Science / Geology", "Earth Sciences - Geology", "Science", "Science/Mathematics"], "revision": 3}
+/type/edition /books/OL10524349M 3 2022-05-25T08:13:12.290042 {"publishers": ["Macmillan Education Australia Pty Ltd"], "weight": "0.2 ounces", "title": "Fundamentals of Abnormal Psych", "isbn_10": ["0716733439"], "isbn_13": ["9780716733430"], "physical_format": "Unknown Binding", "publish_date": "April 1, 2000", "key": "/books/OL10524349M", "authors": [{"key": "/authors/OL3011619A"}], "works": [{"key": "/works/OL8811978W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780716733430"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T08:13:12.290042"}}
+/type/edition /books/OL10524567M 4 2011-04-29T16:46:44.572881 {"publishers": ["W. H. Freeman"], "languages": [{"key": "/languages/eng"}], "subtitle": "The Science of Biology Volume 1 & CD-Rom", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T16:46:44.572881"}, "title": "Life", "identifiers": {"goodreads": ["1066241"]}, "isbn_13": ["9780716743514"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0716743515"], "publish_date": "May 4, 2001", "key": "/books/OL10524567M", "authors": [{"key": "/authors/OL583250A"}, {"key": "/authors/OL2789218A"}, {"key": "/authors/OL1126808A"}, {"key": "/authors/OL2707301A"}], "latest_revision": 4, "oclc_numbers": ["144517741"], "type": {"key": "/type/edition"}, "subjects": ["Life Sciences - Biology - General", "Science / Biology", "Science", "Science/Mathematics"], "revision": 4}
+/type/edition /books/OL10525019M 2 2011-04-26T02:28:55.740901 {"publishers": ["Worth Publishers"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2011-04-26T02:28:55.740901"}, "title": "Abnormal Psychology, Student CD, & Scientific American Readers", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780716760740"], "physical_format": "Paperback", "isbn_10": ["0716760746"], "publish_date": "January 17, 2006", "key": "/books/OL10525019M", "authors": [{"key": "/authors/OL246221A"}, {"key": "/authors/OL2711282A"}], "latest_revision": 2, "oclc_numbers": ["144517768"], "type": {"key": "/type/edition"}, "subjects": ["Psychology & Psychiatry / General", "General", "Psychology"], "revision": 2}
+/type/edition /books/OL10525726M 2 2009-12-15T00:49:54.091976 {"physical_format": "Paperback", "subtitle": "A Concise Introduction, The Hidden Mind, Improving the Mind and Brain & i>clicker", "title": "Psychology", "isbn_10": ["0716785129"], "publishers": ["Worth Publishers"], "isbn_13": ["9780716785125"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:49:54.091976"}, "publish_date": "December 7, 2005", "key": "/books/OL10525726M", "authors": [{"key": "/authors/OL2789334A"}], "latest_revision": 2, "subjects": ["General", "Psychology & Psychiatry / General", "Reference", "Psychology"], "works": [{"key": "/works/OL8373361W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10526005M 3 2022-05-25T23:41:39.239719 {"physical_format": "Paperback", "publishers": ["W. H. Freeman"], "isbn_10": ["0716792303"], "number_of_pages": 16, "isbn_13": ["9780716792307"], "languages": [{"key": "/languages/eng"}], "publish_date": "January 1, 1995", "key": "/books/OL10526005M", "authors": [{"key": "/authors/OL477015A"}], "title": "Dissection of Rat Nervous System & Sense Organs", "subjects": ["Life Sciences - Biology - General", "Science / Biology", "Science", "Science/Mathematics"], "works": [{"key": "/works/OL3066348W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780716792307"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T23:41:39.239719"}}
+/type/edition /books/OL10526856M 6 2022-12-09T15:21:58.206171 {"publishers": ["Gill & Macmillan Ltd"], "number_of_pages": 36, "key": "/books/OL10526856M", "languages": [{"key": "/languages/iri"}], "title": "Cead Focal", "identifiers": {"goodreads": ["869139"]}, "isbn_13": ["9780717113910"], "physical_format": "Paperback", "isbn_10": ["0717113914"], "publish_date": "February 29, 1988", "type": {"key": "/type/edition"}, "contributions": ["Heather Amery (Editor)", "Stephen Cartwright (Illustrator)"], "subjects": ["Modern fiction"], "works": [{"key": "/works/OL2989653W"}], "covers": [10621431], "ocaid": "ceadfocal0000amer", "lc_classifications": ["PB1275"], "source_records": ["ia:ceadfocal0000amer", "promise:bwb_daily_pallets_2020-11-19"], "local_id": ["urn:bwbsku:KO-431-980"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T15:21:58.206171"}}
+/type/edition /books/OL10527144M 4 2022-12-04T22:56:28.183545 {"publishers": ["Gill & Macmillan"], "number_of_pages": 216, "title": "Nealon's Guide to the 28th Dail and Seanad", "physical_format": "Paperback", "identifiers": {"librarything": ["3619544"]}, "isbn_13": ["9780717126750"], "isbn_10": ["0717126757"], "publish_date": "October 31, 1997", "key": "/books/OL10527144M", "authors": [{"key": "/authors/OL495946A"}], "works": [{"key": "/works/OL3133618W"}], "type": {"key": "/type/edition"}, "subjects": ["Elections & referenda"], "local_id": ["urn:bwbsku:KQ-758-651"], "source_records": ["promise:bwb_daily_pallets_2022-07-11"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T22:56:28.183545"}}
+/type/edition /books/OL1052822M 3 2020-11-18T01:13:59.470832 {"publishers": ["Gra\u0301fica Forense"], "subject_place": ["Brazil."], "lc_classifications": ["KHD2914 1988.A5 C37 1993"], "latest_revision": 3, "key": "/books/OL1052822M", "authors": [{"key": "/authors/OL564117A"}], "publish_places": ["Rio de Janeiro"], "edition_name": "1. ed.", "pagination": "x, 261 p. ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:88458827:806"], "title": "Revisa\u0303o da Constituic\u0327a\u0303o de 1988", "dewey_decimal_class": ["342.81/02"], "notes": {"type": "/type/text", "value": "Includes bibliographical references and index."}, "number_of_pages": 261, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/por"}], "lccn": ["93832550"], "subjects": ["Brazil.", "Constitutions -- Brazil.", "Constitutional law -- Brazil."], "publish_date": "1993", "publish_country": "bl ", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T01:13:59.470832"}, "by_statement": "Afra\u0302nio de Carvalho.", "oclc_numbers": ["35203615"], "works": [{"key": "/works/OL3424887W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL1052860M 4 2020-11-18T01:14:25.404738 {"publishers": ["Aide Editora"], "number_of_pages": 141, "isbn_10": ["8532100910"], "subject_place": ["Brazil."], "lc_classifications": ["KHD2613 .G66 1993"], "latest_revision": 4, "key": "/books/OL1052860M", "authors": [{"key": "/authors/OL564137A"}], "publish_places": ["Rio de Janeiro, RJ"], "languages": [{"key": "/languages/por"}], "pagination": "141 p. ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:88488562:771"], "title": "Nulidades no processo", "dewey_decimal_class": ["347.81/05", "348.1075"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 135-137)."}, "identifiers": {"goodreads": ["5043390"]}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "edition_name": "1. ed.", "lccn": ["93832588"], "subjects": ["Nullity -- Brazil.", "Civil procedure -- Brazil."], "publish_date": "1993", "publish_country": "bl ", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T01:14:25.404738"}, "series": ["Publicac\u0327a\u0303o ;", "no. 167"], "by_statement": "Aroldo Pli\u0301nio Gonc\u0327alves.", "works": [{"key": "/works/OL3424954W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10528975M 4 2011-04-27T14:31:32.735929 {"publishers": ["Health and Safety Executive (HSE)"], "classifications": {}, "last_modified": {"type": "/type/datetime", "value": "2011-04-27T14:31:32.735929"}, "title": "Risks from Hazardous Pipelines in the United Kingdom", "notes": {"type": "/type/text", "value": "HSE Contract Research Report"}, "identifiers": {}, "isbn_13": ["9780717610020"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0717610020"], "publish_date": "August 7, 1995", "key": "/books/OL10528975M", "authors": [{"key": "/authors/OL2646026A"}], "latest_revision": 4, "oclc_numbers": ["70519194"], "works": [{"key": "/works/OL7930162W"}], "type": {"key": "/type/edition"}, "subjects": ["Industrial Chemistry & Manufacturing Technologies", "Occupational / industrial health & safety", "United Kingdom, Great Britain"], "revision": 4}
+/type/edition /books/OL1052976M 3 2020-11-18T01:15:35.232234 {"publishers": ["Editora da FURB"], "lc_classifications": ["LE31.B55 P48 1992"], "latest_revision": 3, "key": "/books/OL1052976M", "authors": [{"key": "/authors/OL564209A"}], "publish_places": ["Blumenau, SC"], "contributions": ["Soares, Luiz Anto\u0302nio."], "pagination": "66 p. ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:88581538:706"], "title": "Uma contribuic\u0327a\u0303o para a histo\u0301ria da FURB", "dewey_decimal_class": ["378.81/642"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 63-66)."}, "number_of_pages": 66, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/por"}], "lccn": ["93832707"], "subjects": ["Universidad Regional de Blumenau -- History."], "publish_date": "1992", "publish_country": "bl ", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T01:15:35.232234"}, "by_statement": "Sueli Maria Vanzuita Petry, Luiz Anto\u0302nio Soares.", "works": [{"key": "/works/OL3425200W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10529960M 4 2018-01-10T06:06:23.095723 {"publishers": ["Health and Safety Executive (HSE)"], "identifiers": {}, "classifications": {}, "last_modified": {"type": "/type/datetime", "value": "2018-01-10T06:06:23.095723"}, "title": "Meta-Analysis of Cancer Risk Following Exposure to Airbourne Pah'S", "physical_format": "Paperback", "notes": {"type": "/type/text", "value": "Research Report"}, "number_of_pages": 70, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780717626045"], "isbn_10": ["0717626040"], "publish_date": "January 31, 2003", "key": "/books/OL10529960M", "authors": [{"key": "/authors/OL2646026A"}], "latest_revision": 4, "works": [{"key": "/works/OL8374559W"}], "type": {"key": "/type/edition"}, "subjects": ["Occupational / industrial health & safety"], "revision": 4}
+/type/edition /books/OL10530225M 4 2022-09-17T19:38:05.888425 {"publishers": ["Thomas Nelson"], "weight": "1.6 pounds", "covers": [2554824], "edition_name": "Lrg edition", "physical_format": "Hardcover", "key": "/books/OL10530225M", "subjects": ["The Bible", "Religion", "Bibles", "Bibles - King James", "King James Version - General", "Reference", "Religion / Bibles / King James"], "isbn_13": ["9780718003234"], "title": "King James Large Print Center Column Reference Bible", "number_of_pages": 1104, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0718003233"], "publish_date": "November 2002", "oclc_numbers": ["52257126"], "type": {"key": "/type/edition"}, "physical_dimensions": "9.7 x 6.4 x 0.9 inches", "works": [{"key": "/works/OL28808247W"}], "source_records": ["bwb:9780718003234"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-17T19:38:05.888425"}}
+/type/edition /books/OL10530270M 2 2011-05-04T15:50:59.659508 {"publishers": ["Thomas Nelson"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2011-05-04T15:50:59.659508"}, "title": "Essential Solids", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780718008055"], "physical_format": "Unknown Binding", "isbn_10": ["0718008057"], "publish_date": "June 7, 2004", "key": "/books/OL10530270M", "latest_revision": 2, "works": [{"key": "/works/OL8374880W"}], "type": {"key": "/type/edition"}, "subjects": ["Non-Classifiable"], "revision": 2}
+/type/edition /books/OL10530388M 5 2022-09-17T20:46:08.788725 {"publishers": ["Thomas Nelson"], "number_of_pages": 2200, "weight": "2.4 pounds", "title": "Holy Bible King James Study Bible - Personal Size", "type": {"key": "/type/edition"}, "identifiers": {"goodreads": ["1151173"]}, "isbn_13": ["9780718013615"], "covers": [2554934], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0718013611"], "publish_date": "August 31, 2005", "key": "/books/OL10530388M", "subjects": ["Bibles - King James", "King James Version - General", "King James Version - Study", "Religion / Bibles / King James", "Bibles"], "physical_format": "Imitation Leather", "physical_dimensions": "8.8 x 6 x 2 inches", "works": [{"key": "/works/OL28809441W"}], "source_records": ["bwb:9780718013615"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-17T20:46:08.788725"}}
+/type/edition /books/OL1053044M 3 2020-11-18T01:16:16.828574 {"publishers": ["s.n."], "lc_classifications": ["PQ9698.13.U38 P47 1982"], "latest_revision": 3, "key": "/books/OL1053044M", "authors": [{"key": "/authors/OL564245A"}], "publish_places": ["[Brazil"], "pagination": "116 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:88633228:556"], "title": "As peripe\u0301cias de um ex-poaieiro mato-grossense", "dewey_decimal_class": ["869.3"], "number_of_pages": 116, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/por"}], "lccn": ["93832778"], "last_modified": {"type": "/type/datetime", "value": "2020-11-18T01:16:16.828574"}, "publish_date": "1982", "publish_country": "bl ", "by_statement": "Adolpho Jorge da Cunha.", "works": [{"key": "/works/OL3425285W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10531198M 2 2009-12-15T00:49:58.806459 {"publishers": ["James Clarke & Co Ltd"], "isbn_10": ["071881911X"], "number_of_pages": 64, "isbn_13": ["9780718819118"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:49:58.806459"}, "publish_date": "December 31, 1972", "latest_revision": 2, "key": "/books/OL10531198M", "authors": [{"key": "/authors/OL3455662A"}], "title": "In the Morning", "subjects": ["Christianity", "Christian prayerbooks"], "works": [{"key": "/works/OL9423480W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10531342M 4 2011-04-29T15:25:16.663163 {"publishers": ["James Clarke & Co Ltd"], "identifiers": {"goodreads": ["2897029"]}, "last_modified": {"type": "/type/datetime", "value": "2011-04-29T15:25:16.663163"}, "title": "Family Mouse Behind the Wheel", "type": {"key": "/type/edition"}, "number_of_pages": 32, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780718828349"], "isbn_10": ["0718828348"], "publish_date": "September 30, 1992", "key": "/books/OL10531342M", "authors": [{"key": "/authors/OL770252A"}, {"key": "/authors/OL3455698A"}], "latest_revision": 4, "oclc_numbers": ["30049248"], "physical_format": "Hardcover", "revision": 4}
+/type/edition /books/OL10531424M 4 2010-04-24T18:03:56.229473 {"publishers": ["Roy Yates Books"], "number_of_pages": 32, "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:03:56.229473"}, "title": "The Proud Elephant", "type": {"key": "/type/edition"}, "identifiers": {"goodreads": ["5939084"]}, "isbn_13": ["9780718910495"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0718910494"], "publish_date": "June 12, 1986", "key": "/books/OL10531424M", "authors": [{"key": "/authors/OL3455723A"}], "latest_revision": 4, "works": [{"key": "/works/OL9423553W"}], "physical_format": "Paperback", "subjects": ["Fiction"], "revision": 4}
+/type/edition /books/OL10531467M 6 2019-09-25T15:43:51.225176 {"publishers": ["St. Martin's Press"], "number_of_pages": 304, "source_records": ["marc:marc_upei/marc-for-openlibrary-bigset.mrc:84641432:813"], "title": "Odes, Hymns and Other Poems", "physical_format": "Hardcover", "identifiers": {"goodreads": ["1244146"]}, "last_modified": {"type": "/type/datetime", "value": "2019-09-25T15:43:51.225176"}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780719006739"], "isbn_10": ["0719006732"], "publish_date": "January 1988", "key": "/books/OL10531467M", "authors": [{"key": "/authors/OL61906A"}, {"key": "/authors/OL2086880A"}], "latest_revision": 6, "oclc_numbers": ["56662567"], "works": [{"key": "/works/OL18410439W"}], "type": {"key": "/type/edition"}, "subjects": ["Continental European", "Poetry"], "revision": 6}
+/type/edition /books/OL10531660M 10 2022-12-07T19:31:34.284651 {"publishers": ["Manchester University Press"], "number_of_pages": 224, "subtitle": "Ritual and Authority in the English Industrial City, 1840-1914", "weight": "1.1 pounds", "covers": [2555346], "physical_format": "Hardcover", "lc_classifications": ["DA110.G86 2000", "DA110 .G86 2000"], "key": "/books/OL10531660M", "authors": [{"key": "/authors/OL1024336A"}], "subjects": ["Social history", "Social Science", "History - General History", "Sociology", "England", "General", "History / General", "Anthropology - Cultural"], "isbn_13": ["9780719057151"], "source_records": ["bwb:9780719057151", "ia:publiccultureofv0000gunn", "promise:bwb_daily_pallets_2022-03-17"], "title": "The Public Culture of the Victorian Middle Class", "identifiers": {"librarything": ["4256044"], "goodreads": ["2640371"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0719057159"], "publish_date": "March 7, 2001", "works": [{"key": "/works/OL4838405W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.5 x 6.5 x 1 inches", "ocaid": "publiccultureofv0000gunn", "oclc_numbers": ["45878542"], "local_id": ["urn:bwbsku:W7-ATY-801"], "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-07T19:31:34.284651"}}
+/type/edition /books/OL10532478M 4 2011-04-30T14:17:32.215567 {"publishers": ["Hodder Murray"], "number_of_pages": 176, "last_modified": {"type": "/type/datetime", "value": "2011-04-30T14:17:32.215567"}, "title": "Understanding Mathematics", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "identifiers": {"goodreads": ["5347250"]}, "isbn_13": ["9780719547553"], "edition_name": "2Rev Ed edition", "physical_format": "Spiral-bound", "isbn_10": ["0719547555"], "publish_date": "January 1, 1990", "key": "/books/OL10532478M", "authors": [{"key": "/authors/OL3455944A"}, {"key": "/authors/OL1826760A"}], "latest_revision": 4, "oclc_numbers": ["20168573"], "type": {"key": "/type/edition"}, "subjects": ["Mathematics", "For National Curriculum Key Stage 3", "For National Curriculum Key Stage 4 & GCSE"], "revision": 4}
+/type/edition /books/OL10532496M 6 2022-12-06T23:52:08.277026 {"publishers": ["John Murray"], "title": "Espanol-en-directo", "number_of_pages": 96, "isbn_13": ["9780719548109"], "physical_format": "Paperback", "isbn_10": ["0719548101"], "publish_date": "June 14, 1990", "key": "/books/OL10532496M", "authors": [{"key": "/authors/OL3449710A"}], "oclc_numbers": ["21229303"], "works": [{"key": "/works/OL9415130W"}], "type": {"key": "/type/edition"}, "subjects": ["Language teaching & learning material & coursework", "Modern languages: specific skills", "For National Curriculum Key Stage 4 & GCSE", "Spanish"], "source_records": ["bwb:9780719548109", "ia:espanolendirecto0000cumm_e3b5", "promise:bwb_daily_pallets_2022-03-17"], "covers": [12582924], "ocaid": "espanolendirecto0000cumm_e3b5", "local_id": ["urn:bwbsku:KP-678-960"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-06T23:52:08.277026"}}
+/type/edition /books/OL10532708M 5 2021-09-16T04:59:09.448349 {"publishers": ["Hodder Arnold H&S"], "identifiers": {"goodreads": ["4550426"]}, "title": "Science in Zimbabwe(2nd Edition)", "number_of_pages": 306, "isbn_13": ["9780719553974"], "physical_format": "Paperback", "isbn_10": ["0719553970"], "publish_date": "September 14, 1995", "key": "/books/OL10532708M", "authors": [{"key": "/authors/OL3456033A"}], "works": [{"key": "/works/OL9423925W"}], "type": {"key": "/type/edition"}, "subjects": ["Science: General Issues"], "source_records": ["bwb:9780719553974"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-09-16T04:59:09.448349"}}
+/type/edition /books/OL1053270M 4 2020-11-18T01:18:44.021087 {"publishers": ["Instituto Arnon de Mello"], "subject_place": ["Alagoas (Brazil)"], "lc_classifications": ["F2541 .S26 1992"], "latest_revision": 4, "key": "/books/OL1053270M", "authors": [{"key": "/authors/OL517387A"}], "publish_places": ["Maceio\u0301"], "pagination": "v. <1-2 > :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:88820765:696"], "title": "Efeme\u0301rides alagoanas", "dewey_decimal_class": ["981/.35/00202"], "notes": {"type": "/type/text", "value": "Includes indexes."}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/por"}], "lccn": ["93833018"], "subjects": ["Alagoas (Brazil) -- History -- Chronology.", "Alagoas (Brazil) -- Miscellanea."], "publish_date": "1992", "publish_country": "bl ", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T01:18:44.021087"}, "by_statement": "Moacir Medeiros de Sant'Ana.", "works": [{"key": "/works/OL3205600W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10533058M 4 2010-04-24T18:03:56.229473 {"publishers": ["John Murray"], "number_of_pages": 96, "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:03:56.229473"}, "title": "Scottish Science (Primary 2)", "identifiers": {"goodreads": ["2155462"]}, "isbn_13": ["9780719576393"], "covers": [2555679], "physical_format": "Paperback", "isbn_10": ["0719576393"], "publish_date": "October 28, 1998", "key": "/books/OL10533058M", "authors": [{"key": "/authors/OL233162A"}, {"key": "/authors/OL3456108A"}, {"key": "/authors/OL3456109A"}, {"key": "/authors/OL3455983A"}], "latest_revision": 4, "subjects": ["General science", "Teaching of a specific subject", "Designed / suitable for National Curriculum"], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10533282M 3 2011-04-30T02:02:23.452188 {"publishers": ["Christian Education Publications (CEP)"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-30T02:02:23.452188"}, "title": "Saints Alive Words", "number_of_pages": 12, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780719702976"], "isbn_10": ["0719702976"], "latest_revision": 3, "key": "/books/OL10533282M", "authors": [{"key": "/authors/OL1870288A"}], "oclc_numbers": ["16564376"], "works": [{"key": "/works/OL6826694W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10533720M 3 2011-04-26T18:35:30.743315 {"publishers": ["NCVO Publications"], "subtitle": "a Commentary on Relationships", "last_modified": {"type": "/type/datetime", "value": "2011-04-26T18:35:30.743315"}, "title": "Regionalism", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780719915680"], "physical_format": "Paperback", "isbn_10": ["0719915686"], "publish_date": "June 2000", "key": "/books/OL10533720M", "authors": [{"key": "/authors/OL3456261A"}], "latest_revision": 3, "oclc_numbers": ["49263288"], "works": [{"key": "/works/OL9424196W"}], "type": {"key": "/type/edition"}, "subjects": ["Sociology, Social Studies", "Family & Health"], "revision": 3}
+/type/edition /books/OL10533871M 2 2022-12-08T18:21:00.651086 {"physical_format": "Hardcover", "publishers": ["Gale Group"], "number_of_pages": 160, "isbn_13": ["9780720108309"], "isbn_10": ["0720108306"], "publish_date": "June 1981", "key": "/books/OL10533871M", "title": "Book World Directory of Arab Countries, Turkey and Iran", "type": {"key": "/type/edition"}, "subjects": ["Book industries and trade", "Directories", "Libraries", "Middle East", "Publishers and publishing"], "works": [{"key": "/works/OL31724578W"}], "oclc_numbers": ["7439994"], "source_records": ["marc:marc_columbia/Columbia-extract-20221130-001.mrc:148881339:1318"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-08T18:21:00.651086"}}
+/type/edition /books/OL10534115M 3 2019-07-31T09:23:27.875915 {"publishers": ["James Nisbet & Co Ltd"], "physical_format": "Paperback", "subtitle": "Something to See (Kathy and Mark)", "last_modified": {"type": "/type/datetime", "value": "2019-07-31T09:23:27.875915"}, "title": "The Basic Readers", "number_of_pages": 56, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780720210033"], "isbn_10": ["0720210038"], "latest_revision": 3, "key": "/books/OL10534115M", "oclc_numbers": ["30272090"], "works": [{"key": "/works/OL7304834W"}], "type": {"key": "/type/edition"}, "subjects": ["English", "English language readers"], "revision": 3}
+/type/edition /books/OL10534210M 5 2019-07-31T09:23:35.175142 {"publishers": ["James Nisbet & Co Ltd"], "number_of_pages": 20, "last_modified": {"type": "/type/datetime", "value": "2019-07-31T09:23:35.175142"}, "title": "The New Story Books: Lime Group: The Tiger and the Farmer (New Story Books: Lime Group)", "identifiers": {"goodreads": ["1489010"]}, "isbn_13": ["9780720212105"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0720212103"], "publish_date": "1978", "key": "/books/OL10534210M", "authors": [{"key": "/authors/OL2666449A"}, {"key": "/authors/OL3456360A"}], "latest_revision": 5, "oclc_numbers": ["16435151"], "works": [{"key": "/works/OL9424364W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10534417M 5 2022-12-09T03:12:48.052554 {"publishers": ["Peter Owen Publishers"], "identifiers": {"goodreads": ["4499598"]}, "subtitle": "One Doctor's View", "key": "/books/OL10534417M", "weight": "7.2 ounces", "title": "Smoking and Common Sense", "type": {"key": "/type/edition"}, "number_of_pages": 143, "isbn_13": ["9780720608564"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0720608562"], "authors": [{"key": "/authors/OL139138A"}], "publish_date": "February 1993", "works": [{"key": "/works/OL1359381W"}], "physical_format": "Paperback", "subjects": ["Giving up smoking", "Public health & preventive medicine", "General", "Science", "Health/Fitness"], "physical_dimensions": "8.8 x 5.8 x 0.5 inches", "local_id": ["urn:bwbsku:O7-AJY-015"], "source_records": ["promise:bwb_daily_pallets_2021-01-13"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T03:12:48.052554"}}
+/type/edition /books/OL1053469M 5 2020-11-18T01:21:03.541463 {"other_titles": ["Anais do Primeiro Congresso Latino-Americano sobre a Cultura Arquiteto\u0302nica e Urbani\u0301stica."], "publishers": ["SMC"], "subtitle": "perspectivas para a sua preservac\u0327a\u0303o : Porto Alegre, 10 a 14 de junho de 91.", "subject_place": ["Latin America"], "lc_classifications": ["NA702 .C66 1991"], "latest_revision": 5, "key": "/books/OL1053469M", "authors": [{"key": "/authors/OL564466A"}], "publish_places": ["[Porto Alegre, Brazil]"], "contributions": ["Porto Alegre (Brazil)", "Porto Alegre (Brazil). Ca\u0302mara de Vereadores.", "Universidade Federal do Rio Grande do Sul."], "pagination": "242 p. ;", "source_records": ["marc:marc_records_scriblio_net/part24.dat:20002717:1458", "marc:marc_loc_updates/v37.i50.records.utf8:2869511:1508", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:88998354:1508"], "title": "Anais do 1o. Congresso Latino-Americano sobre a Cultura Arquiteto\u0302nica e Urbani\u0301stica", "lccn": ["93833242"], "notes": {"type": "/type/text", "value": "Includes bibliographical references.\nPortuguese and Spanish.\nCongress organized by the Prefeitura Municipal de Porto Alegre, Ca\u0302mara de Vereadores de Porto Alegre, and Universidade Federal do Rio Grande do Sul."}, "number_of_pages": 242, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/por"}], "subjects": ["Architecture -- Latin America -- Congresses", "Architecture -- Conservation and restoration -- Latin America -- Congresses", "City planning -- Latin America -- Congresses"], "publish_date": "1992", "publish_country": "bl ", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T01:21:03.541463"}, "works": [{"key": "/works/OL18293569W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10534956M 5 2011-04-28T17:10:27.752842 {"publishers": ["Hyperion Books"], "number_of_pages": 128, "last_modified": {"type": "/type/datetime", "value": "2011-04-28T17:10:27.752842"}, "title": "The Corner", "physical_format": "Paperback", "identifiers": {"goodreads": ["6031697"]}, "isbn_13": ["9780721207698"], "contributions": ["Theo Lancaster (Editor)"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0721207693"], "publish_date": "December 1988", "key": "/books/OL10534956M", "authors": [{"key": "/authors/OL3456646A"}], "latest_revision": 5, "oclc_numbers": ["21228012"], "works": [{"key": "/works/OL9424705W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10535117M 7 2012-06-13T04:10:24.105634 {"publishers": ["Merry Thoughts Inc."], "number_of_pages": 52, "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2012-06-13T04:10:24.105634"}, "latest_revision": 7, "key": "/books/OL10535117M", "authors": [{"key": "/authors/OL1463628A"}, {"key": "/authors/OL2796084A"}], "contributions": ["John Berry (Illustrator)"], "subjects": ["Fire Science", "Technology & Industrial Arts"], "isbn_13": ["9780721400624"], "classifications": {}, "title": "Fireman", "notes": {"type": "/type/text", "value": "Ladybird Easy Reading Book"}, "identifiers": {"librarything": ["8407187"], "goodreads": ["3259906"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0721400620"], "publish_date": "January 1984", "oclc_numbers": ["6437978"], "works": [{"key": "/works/OL15336263W"}], "type": {"key": "/type/edition"}, "revision": 7}
+/type/edition /books/OL10535494M 7 2022-11-17T09:18:20.934709 {"publishers": ["Ladybird Books"], "number_of_pages": 32, "physical_format": "Hardcover", "key": "/books/OL10535494M", "authors": [{"key": "/authors/OL3371449A"}], "contributions": ["Leographics (Illustrator)"], "isbn_13": ["9780721410104"], "classifications": {}, "title": "Tricks and Magic - Cheeky Mouse and Cool Cat", "notes": {"type": "/type/text", "value": "Ladybird"}, "identifiers": {"goodreads": ["4117998"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0721410103"], "publish_date": "June 1940", "oclc_numbers": ["14719178"], "works": [{"key": "/works/OL9323962W"}], "type": {"key": "/type/edition"}, "lc_classifications": ["PZ7"], "source_records": ["bwb:9780721410104"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T09:18:20.934709"}}
+/type/edition /books/OL10535921M 11 2022-12-10T02:33:38.474416 {"publishers": ["Ladybird Books Ltd"], "number_of_pages": 32, "covers": [2556008], "physical_format": "Hardcover", "key": "/books/OL10535921M", "authors": [{"key": "/authors/OL219858A"}], "contributions": ["Kaye Hodges (Illustrator)"], "subjects": ["English language readers", "English"], "classifications": {}, "title": "Where Are You Wesley?", "notes": {"type": "/type/text", "value": "Read with Ladybird"}, "identifiers": {"goodreads": ["1779970"], "librarything": ["9450228"], "amazon": [""]}, "isbn_13": ["9780721419121"], "isbn_10": ["0721419127"], "publish_date": "March 25, 1999", "oclc_numbers": ["43822103"], "works": [{"key": "/works/OL1836113W"}], "type": {"key": "/type/edition"}, "ocaid": "whereareyouwesle0000dale", "lc_classifications": ["PZ7.L87734 W44 1998"], "source_records": ["ia:whereareyouwesle0000dale", "bwb:9780721419121", "promise:bwb_daily_pallets_2020-07-30"], "local_id": ["urn:bwbsku:KN-521-708"], "latest_revision": 11, "revision": 11, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T02:33:38.474416"}}
+/type/edition /books/OL10536318M 2 2022-11-17T14:17:41.934879 {"physical_format": "Paperback", "publishers": ["Ladybird Books Ltd"], "title": "Topsy and Tim and the New Puppy (Topsy & Tim)", "isbn_13": ["9780721429076"], "isbn_10": ["0721429076"], "publish_date": "January 28, 1999", "key": "/books/OL10536318M", "authors": [{"key": "/authors/OL2122216A"}, {"key": "/authors/OL2119902A"}], "type": {"key": "/type/edition"}, "subjects": ["Character books", "Fiction"], "works": [{"key": "/works/OL29338526W"}], "source_records": ["bwb:9780721429076"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T14:17:41.934879"}}
+/type/edition /books/OL10536474M 3 2011-04-25T23:24:59.977717 {"publishers": ["Ladybird Books Ltd"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-25T23:24:59.977717"}, "title": "Peter Rabbit (Colour in Storybooks)", "number_of_pages": 24, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780721432786"], "isbn_10": ["0721432786"], "publish_date": "January 30, 1992", "key": "/books/OL10536474M", "authors": [{"key": "/authors/OL32541A"}], "latest_revision": 3, "oclc_numbers": ["316084958"], "works": [{"key": "/works/OL15067842W"}], "type": {"key": "/type/edition"}, "subjects": ["Colouring & painting", "Fiction"], "revision": 3}
+/type/edition /books/OL10536543M 3 2011-04-28T06:19:26.959133 {"publishers": ["Ladybird Books"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-28T06:19:26.959133"}, "title": "Magic Painting - Dinosaurs (Magic Painting)", "number_of_pages": 24, "isbn_13": ["9780721433974"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/spa"}], "isbn_10": ["0721433979"], "publish_date": "December 1998", "key": "/books/OL10536543M", "authors": [{"key": "/authors/OL32297A"}], "latest_revision": 3, "oclc_numbers": ["316135872"], "works": [{"key": "/works/OL15126792W"}], "type": {"key": "/type/edition"}, "subjects": ["Dinosaurs & the prehistoric world", "Geology & Earth sciences", "Interactive & activity books & packs", "Interactive Adventure", "Children's Books/All Ages"], "revision": 3}
+/type/edition /books/OL10536713M 3 2011-02-19T00:21:51.726909 {"publishers": ["Ladybird Books Ltd"], "classifications": {}, "last_modified": {"type": "/type/datetime", "value": "2011-02-19T00:21:51.726909"}, "title": "Disney Merchandiser a", "series": ["Pack 2182"], "identifiers": {}, "isbn_13": ["9780721443362"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Unknown Binding", "isbn_10": ["0721443362"], "publish_date": "January 27, 1994", "key": "/books/OL10536713M", "authors": [{"key": "/authors/OL2796164A"}], "latest_revision": 3, "works": [{"key": "/works/OL8390609W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10536831M 4 2022-12-07T01:54:14.176521 {"publishers": ["Ladybird Books"], "physical_format": "Hardcover", "source_records": ["bwb:9780721451237", "promise:bwb_daily_pallets_2022-03-17"], "title": "Robinson Crusoe (Read It Yourself Level 5)", "isbn_10": ["0721451233"], "isbn_13": ["9780721451237"], "languages": [{"key": "/languages/eng"}], "lc_classifications": [""], "publish_date": "June 1940", "key": "/books/OL10536831M", "works": [{"key": "/works/OL21219577W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:P7-DQG-128"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-07T01:54:14.176521"}}
+/type/edition /books/OL10536999M 3 2022-12-17T19:03:24.777618 {"publishers": ["Dutton Juvenile"], "languages": [{"key": "/languages/spa"}], "weight": "3.7 ounces", "title": "Bella Durmiente, La (Favorite Tale, Ladybird)", "type": {"key": "/type/edition"}, "number_of_pages": 32, "isbn_13": ["9780721456614"], "physical_format": "Hardcover", "isbn_10": ["0721456618"], "publish_date": "October 1, 1996", "key": "/books/OL10536999M", "oclc_numbers": ["36179311"], "contributions": ["Nicola Baxter (Adapter)", "Gavin Rowe (Illustrator)"], "subjects": ["Fairy Tales & Folklore - European", "Juvenile Fiction / General", "Children's 4-8 - Picturebooks", "Fairy tales", "Folklore", "France", "Spanish language materials", "Spanish: Grades 1-2"], "physical_dimensions": "20 x 20 x 20 inches", "works": [{"key": "/works/OL32466283W"}], "source_records": ["bwb:9780721456614"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T19:03:24.777618"}}
+/type/edition /books/OL10537048M 3 2011-02-19T00:06:23.259760 {"publishers": ["Ladybird Books Ltd"], "classifications": {}, "last_modified": {"type": "/type/datetime", "value": "2011-02-19T00:06:23.259760"}, "title": "Pack 6612 Birds Poster Pack", "notes": {"type": "/type/text", "value": "20 Copy"}, "identifiers": {}, "isbn_13": ["9780721460666"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Unknown Binding", "isbn_10": ["0721460666"], "publish_date": "March 25, 1999", "key": "/books/OL10537048M", "authors": [{"key": "/authors/OL3026019A"}], "latest_revision": 3, "works": [{"key": "/works/OL8835765W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10537638M 10 2022-12-09T23:52:07.387703 {"notes": {"type": "/type/text", "value": "Picture Ladybirds"}, "identifiers": {"librarything": ["5657772"]}, "title": "Good Morning Baby", "authors": [{"key": "/authors/OL920380A"}], "publish_date": "May 1, 1996", "publishers": ["Ladybird Books Ltd"], "covers": [2556638], "physical_format": "Paperback", "subjects": ["Fiction", "Picture books"], "edition_name": "New edition", "isbn_13": ["9780721496825"], "isbn_10": ["0721496822"], "oclc_numbers": ["34789110"], "type": {"key": "/type/edition"}, "ocaid": "goodmorningbaby0000benn", "source_records": ["ia:goodmorningbaby0000benn", "bwb:9780721496825", "promise:bwb_daily_pallets_2020-09-09"], "key": "/books/OL10537638M", "number_of_pages": 32, "works": [{"key": "/works/OL4554629W"}], "local_id": ["urn:bwbsku:ko-065-228"], "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T23:52:07.387703"}}
+/type/edition /books/OL10537936M 5 2022-12-13T18:42:33.115526 {"title": "Arithmetic", "authors": [{"key": "/authors/OL592663A"}, {"key": "/authors/OL1620878A"}, {"key": "/authors/OL727641A"}], "publish_date": "March 1979", "publishers": ["Holt Rinehart and Winston"], "languages": [{"key": "/languages/eng"}], "isbn_13": ["9780721615516"], "physical_format": "Paperback", "isbn_10": ["0721615511"], "oclc_numbers": ["4895502"], "type": {"key": "/type/edition"}, "subjects": ["Arithmetic", "Mathematics"], "ocaid": "arithmetic0000bark", "source_records": ["ia:arithmetic0000bark"], "key": "/books/OL10537936M", "number_of_pages": 603, "covers": [13073314], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-13T18:42:33.115526"}}
+/type/edition /books/OL10537943M 4 2010-04-24T18:04:25.077294 {"publishers": ["W B Saunders Co"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:04:25.077294"}, "title": "Falconer's the Drug, the Nurse, the Patient", "identifiers": {"goodreads": ["7080695"]}, "isbn_13": ["9780721615790"], "edition_name": "8 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0721615791"], "publish_date": "February 28, 2008", "key": "/books/OL10537943M", "authors": [{"key": "/authors/OL3457002A"}], "latest_revision": 4, "works": [{"key": "/works/OL9425155W"}], "type": {"key": "/type/edition"}, "subjects": ["Oncology", "Nursing Pharmacology", "Medical", "Health/Fitness"], "revision": 4}
+/type/edition /books/OL10538059M 4 2019-04-03T22:53:58.759229 {"publishers": ["Not Applicable"], "physical_format": "Textbook Binding", "subtitle": "Bone", "source_records": ["marc:talis_openlibrary_contribution/talis-openlibrary-contribution.mrc:1767610995:696"], "title": "Atlas of Nuclear Medicine", "number_of_pages": 197, "last_modified": {"type": "/type/datetime", "value": "2019-04-03T22:53:58.759229"}, "covers": [5065059], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780721630014"], "isbn_10": ["0721630014"], "publish_date": "June 1978", "key": "/books/OL10538059M", "authors": [{"key": "/authors/OL3457056A"}], "latest_revision": 4, "works": [{"key": "/works/OL9425197W"}], "type": {"key": "/type/edition"}, "subjects": ["Atlases", "Radioisotope scanning"], "revision": 4}
+/type/edition /books/OL10538675M 1 2008-04-30T09:38:13.731961 {"physical_format": "Unknown Binding", "weight": "1 pounds", "publishers": ["Elsevier Health Sciences"], "title": "Gutierrez Pharmacotherapeutics Im", "isbn_13": ["9780721682266"], "isbn_10": ["072168226X"], "publish_date": "September 29, 1999", "key": "/books/OL10538675M", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "type": {"key": "/type/edition"}, "subjects": ["Nursing"], "physical_dimensions": "10.9 x 8.4 x 0.5 inches", "revision": 1}
+/type/edition /books/OL10538788M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Hardcover", "subtitle": "Phlebotomy (Video Series to Accompany Saunders Fundamentals for Medical Assistants, Tape 4)", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["W.B. Saunders Company"], "title": "Video Series to Accompany Saunders Fundamentals for Medical Assistants, Tape 4", "isbn_13": ["9780721688367"], "isbn_10": ["0721688365"], "publish_date": "January 2001", "key": "/books/OL10538788M", "authors": [{"key": "/authors/OL2627459A"}], "type": {"key": "/type/edition"}, "subjects": ["Allied Health Services - Medical Assistants", "Clinical & Internal Medicine", "General", "Medical", "Unabridged Audio - Misc.Nonfiction"], "revision": 1}
+/type/edition /books/OL10539018M 3 2011-04-29T05:11:39.266831 {"publishers": ["Schofield & Sims Ltd"], "last_modified": {"type": "/type/datetime", "value": "2011-04-29T05:11:39.266831"}, "title": "Through the Rainbow (Through The Rainbow; The Running Along Books)", "contributions": ["P. Cook (Illustrator)"], "number_of_pages": 16, "isbn_13": ["9780721702476"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0721702473"], "publish_date": "December 1973", "key": "/books/OL10539018M", "authors": [{"key": "/authors/OL3457479A"}], "latest_revision": 3, "oclc_numbers": ["16299834"], "works": [{"key": "/works/OL9425460W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10539187M 3 2011-04-25T19:37:29.742294 {"publishers": ["Schofield & Sims Ltd"], "last_modified": {"type": "/type/datetime", "value": "2011-04-25T19:37:29.742294"}, "weight": "4.2 ounces", "title": "Study Reading", "number_of_pages": 24, "isbn_13": ["9780721705064"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0721705065"], "publish_date": "April 1986", "key": "/books/OL10539187M", "authors": [{"key": "/authors/OL3456363A"}], "latest_revision": 3, "oclc_numbers": ["19262424"], "works": [{"key": "/works/OL9424401W"}], "type": {"key": "/type/edition"}, "subjects": ["English language readers", "English"], "physical_dimensions": "10.1 x 8 x 0.2 inches", "revision": 3}
+/type/edition /books/OL10539642M 3 2011-04-30T06:57:09.949703 {"publishers": ["Schofield & Sims Ltd"], "subtitle": "Level Five (Maths Quest)", "last_modified": {"type": "/type/datetime", "value": "2011-04-30T06:57:09.949703"}, "title": "Maths Quest: Activity Workbook B", "number_of_pages": 28, "isbn_13": ["9780721724027"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0721724027"], "publish_date": "1995", "key": "/books/OL10539642M", "authors": [{"key": "/authors/OL3456363A"}], "latest_revision": 3, "oclc_numbers": ["315889822"], "works": [{"key": "/works/OL9424399W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL1053967M 4 2020-11-18T01:26:56.049512 {"publishers": ["Edic\u0327o\u0303es CEJUP"], "number_of_pages": 72, "subtitle": "cro\u0302nicas", "lc_classifications": ["PQ9698.18.A76 P46 1993"], "latest_revision": 4, "key": "/books/OL1053967M", "authors": [{"key": "/authors/OL564312A"}], "publish_places": ["Bele\u0301m, Para\u0301"], "pagination": "72 p. ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:89452653:568"], "title": "Pensar e\u0301 preciso", "dewey_decimal_class": ["869.4"], "notes": {"type": "/type/text", "value": "Includes bibliographical references."}, "identifiers": {"goodreads": ["3475252"]}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/por"}], "lccn": ["93833837"], "isbn_10": ["853380184X"], "publish_date": "1993", "publish_country": "bl ", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T01:26:56.049512"}, "by_statement": "Haelmo Hass.", "works": [{"key": "/works/OL3425447W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10539751M 2 2009-10-20T20:36:09.925680 {"publishers": ["Schofield & Sims Ltd"], "source_records": ["amazon:0721735460"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_10": ["0721735460"], "number_of_pages": 80, "isbn_13": ["9780721735467"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2009-10-20T20:36:09.925680"}, "publish_date": "October 15, 1977", "key": "/books/OL10539751M", "authors": [{"key": "/authors/OL2221085A"}], "title": "Active Science", "latest_revision": 2, "works": [{"key": "/works/OL179779W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10540063M 4 2011-04-28T21:46:47.480494 {"publishers": ["Shaw & Sons Ltd"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-28T21:46:47.480494"}, "title": "The Conveyancers' Yearbook", "number_of_pages": 104, "covers": [2557101], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780721915616"], "isbn_10": ["0721915612"], "publish_date": "June 14, 1999", "key": "/books/OL10540063M", "authors": [{"key": "/authors/OL904131A"}], "latest_revision": 4, "oclc_numbers": ["41018690"], "works": [{"key": "/works/OL4510495W"}], "type": {"key": "/type/edition"}, "subjects": ["English law: conveyancing", "Yearbooks, annuals, almanacs", "c 1990 to c 2000"], "revision": 4}
+/type/edition /books/OL10540239M 5 2021-09-16T05:39:48.355477 {"publishers": ["Time Warner Paperbacks"], "identifiers": {"goodreads": ["1887242"]}, "title": "\"Daily Star\" Book of Crosswords", "number_of_pages": 96, "isbn_13": ["9780722156056"], "physical_format": "Paperback", "isbn_10": ["0722156057"], "publish_date": "August 1, 1990", "key": "/books/OL10540239M", "authors": [{"key": "/authors/OL3457649A"}], "works": [{"key": "/works/OL9425690W"}], "type": {"key": "/type/edition"}, "subjects": ["Crosswords"], "source_records": ["bwb:9780722156056"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-09-16T05:39:48.355477"}}
+/type/edition /books/OL10540665M 3 2012-06-06T02:59:26.842664 {"publishers": ["Library Reprints"], "languages": [{"key": "/languages/eng"}], "subtitle": "A Critical Biography", "last_modified": {"type": "/type/datetime", "value": "2012-06-06T02:59:26.842664"}, "weight": "1 pounds", "title": "Beethoven", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780722253366"], "physical_format": "Hardcover", "isbn_10": ["0722253362"], "publish_date": "January 2001", "key": "/books/OL10540665M", "authors": [{"key": "/authors/OL3517507A"}], "latest_revision": 3, "works": [{"key": "/works/OL9425930W"}], "type": {"key": "/type/edition"}, "subjects": ["Composers & Musicians - General", "Biography & Autobiography", "Biography/Autobiography"], "physical_dimensions": "9.2 x 6.1 x 0.7 inches", "revision": 3}
+/type/edition /books/OL10541008M 4 2010-04-24T18:04:25.077294 {"publishers": ["Library Reprints"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:04:25.077294"}, "title": "The Appreciation of Music", "identifiers": {"goodreads": ["1690473"]}, "isbn_13": ["9780722258279"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0722258275"], "publish_date": "January 2001", "key": "/books/OL10541008M", "authors": [{"key": "/authors/OL2689587A"}], "latest_revision": 4, "works": [{"key": "/works/OL8079205W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Music"], "revision": 4}
+/type/edition /books/OL10541113M 2 2009-12-15T00:50:06.478277 {"physical_format": "Hardcover", "title": "Well-Known Piano Solos, How to Play Them", "isbn_10": ["0722259549"], "publishers": ["Library Reprints"], "isbn_13": ["9780722259542"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:50:06.478277"}, "publish_date": "January 2001", "key": "/books/OL10541113M", "authors": [{"key": "/authors/OL2346639A"}], "latest_revision": 2, "subjects": ["General", "Music"], "works": [{"key": "/works/OL7642171W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10541382M 2 2009-12-15T00:50:06.478277 {"physical_format": "Hardcover", "weight": "13.6 ounces", "title": "The Training and Conducting of Choral Societies (Music Primers)", "isbn_10": ["0722263244"], "publishers": ["Library Reprints"], "isbn_13": ["9780722263242"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:50:06.478277"}, "publish_date": "January 2001", "key": "/books/OL10541382M", "authors": [{"key": "/authors/OL1869927A"}], "latest_revision": 2, "subjects": ["General", "Music"], "works": [{"key": "/works/OL6825883W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.3 x 7.1 x 0.6 inches", "revision": 2}
+/type/edition /books/OL10541461M 2 2009-12-15T00:50:06.478277 {"publishers": ["Arthur H.Stockwell Ltd"], "key": "/books/OL10541461M", "title": "The House of Jacob", "number_of_pages": 256, "isbn_13": ["9780722314746"], "physical_format": "Hardcover", "isbn_10": ["0722314744"], "publish_date": "December 1981", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:50:06.478277"}, "authors": [{"key": "/authors/OL416553A"}], "latest_revision": 2, "works": [{"key": "/works/OL2806322W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10541837M 3 2011-04-26T11:44:39.827093 {"publishers": ["A H Stockwell Ltd"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-26T11:44:39.827093"}, "title": "A Family Destroyed", "number_of_pages": 36, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780722326541"], "isbn_10": ["0722326548"], "publish_date": "1992", "key": "/books/OL10541837M", "authors": [{"key": "/authors/OL3458248A"}], "latest_revision": 3, "oclc_numbers": ["27106954"], "works": [{"key": "/works/OL9426557W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10542159M 2 2009-12-15T00:50:07.662274 {"publishers": ["A H Stockwell Ltd"], "isbn_10": ["0722333218"], "number_of_pages": 64, "isbn_13": ["9780722333211"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:50:07.662274"}, "publish_date": "November 8, 2000", "latest_revision": 2, "key": "/books/OL10542159M", "authors": [{"key": "/authors/OL3458452A"}], "title": "Ducks and Drakes", "subjects": ["Birds & birdwatching"], "works": [{"key": "/works/OL9426802W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10542187M 3 2011-04-29T15:52:25.391806 {"publishers": ["Arthur H.Stockwell Ltd"], "last_modified": {"type": "/type/datetime", "value": "2011-04-29T15:52:25.391806"}, "title": "There's No EFF in Petrol", "number_of_pages": 80, "isbn_13": ["9780722333709"], "covers": [2557144], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0722333706"], "publish_date": "June 27, 2001", "key": "/books/OL10542187M", "authors": [{"key": "/authors/OL2380422A"}, {"key": "/authors/OL3458490A"}], "latest_revision": 3, "oclc_numbers": ["46694612"], "type": {"key": "/type/edition"}, "subjects": ["Humour", "English"], "revision": 3}
+/type/edition /books/OL10542292M 4 2022-12-17T05:10:31.292618 {"publishers": ["Harpercollins"], "physical_format": "Hardcover", "title": "The Encyclopaedia of Digestive Disorders", "number_of_pages": 160, "isbn_13": ["9780722504550"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0722504551"], "publish_date": "June 1978", "key": "/books/OL10542292M", "authors": [{"key": "/authors/OL2954473A"}], "oclc_numbers": ["16422532"], "works": [{"key": "/works/OL8715530W"}], "type": {"key": "/type/edition"}, "subjects": ["Family & Health"], "lc_classifications": ["RC802"], "source_records": ["bwb:9780722504550"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T05:10:31.292618"}}
+/type/edition /books/OL10542496M 7 2022-12-17T04:40:14.640564 {"physical_format": "Paperback", "subtitle": "What to Do When Your Children Turn in Teenagers", "publishers": ["Harpercollins"], "isbn_10": ["0722516436"], "number_of_pages": 272, "isbn_13": ["9780722516430"], "languages": [{"key": "/languages/eng"}], "publish_date": "June 1988", "key": "/books/OL10542496M", "authors": [{"key": "/authors/OL920380A"}], "title": "Growing Pains", "subjects": ["Social groups & communities"], "works": [{"key": "/works/OL4554664W"}], "type": {"key": "/type/edition"}, "covers": [12694780], "ocaid": "growingpainswhat0000benn_u1c2", "lc_classifications": ["HQ796"], "oclc_numbers": ["17767394"], "source_records": ["ia:growingpainswhat0000benn_u1c2", "amazon:0722516436", "promise:bwb_daily_pallets_2022-03-17", "bwb:9780722516430"], "local_id": ["urn:bwbsku:KQ-538-296"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T04:40:14.640564"}}
+/type/edition /books/OL10542570M 6 2022-12-17T03:17:16.816204 {"publishers": ["Thorsons Publishers"], "identifiers": {"goodreads": ["4964682"]}, "subtitle": "A Fascinating Account of Infidelity from All Three Sides of the Triangle", "physical_format": "Paperback", "key": "/books/OL10542570M", "authors": [{"key": "/authors/OL3458617A"}], "subjects": ["Sex & sexuality", "Family Relationships", "Marriage", "Family / Parenting / Childbirth", "Adultery", "Impediments to marriage", "Self-Help"], "isbn_13": ["9780722519233"], "title": "Caught in the Act", "number_of_pages": 128, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0722519230"], "publish_date": "May 1991", "oclc_numbers": ["20932134"], "works": [{"key": "/works/OL9427024W"}], "type": {"key": "/type/edition"}, "lc_classifications": ["HQ806"], "source_records": ["bwb:9780722519233"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T03:17:16.816204"}}
+/type/edition /books/OL10542626M 1 2008-04-30T09:38:13.731961 {"physical_format": "Hardcover", "subtitle": "A Collectors Gde -Austali", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["HarperCollins Publishers Ltd"], "title": "Men", "isbn_13": ["9780722522097"], "isbn_10": ["0722522096"], "publish_date": "May 11, 1989", "key": "/books/OL10542626M", "type": {"key": "/type/edition"}, "subjects": ["Family & Health"], "revision": 1}
+/type/edition /books/OL10542960M 7 2022-12-17T03:29:39.738156 {"publishers": ["Thorsons"], "number_of_pages": 160, "title": "Principles of Christian Spirituality", "type": {"key": "/type/edition"}, "identifiers": {"goodreads": ["2400465"]}, "covers": [2557382], "isbn_13": ["9780722535165"], "isbn_10": ["0722535163"], "publish_date": "July 5, 1999", "key": "/books/OL10542960M", "authors": [{"key": "/authors/OL2010036A"}], "oclc_numbers": ["41157912"], "works": [{"key": "/works/OL7098663W"}], "physical_format": "Paperback", "subjects": ["Christian spirituality", "Religion"], "source_records": ["bwb:9780722535165"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T03:29:39.738156"}}
+/type/edition /books/OL10543196M 5 2011-04-26T17:37:07.687856 {"publishers": ["Times Books"], "number_of_pages": 256, "last_modified": {"type": "/type/datetime", "value": "2011-04-26T17:37:07.687856"}, "title": "\"Times\" Quiz Book", "type": {"key": "/type/edition"}, "identifiers": {"librarything": ["6734989"], "goodreads": ["1555756"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780723003021"], "isbn_10": ["0723003025"], "publish_date": "October 29, 1987", "key": "/books/OL10543196M", "authors": [{"key": "/authors/OL3458741A"}, {"key": "/authors/OL3458742A"}], "latest_revision": 5, "oclc_numbers": ["59180139"], "physical_format": "Paperback", "subjects": ["Puzzles & quizzes"], "revision": 5}
+/type/edition /books/OL10543548M 4 2022-11-17T13:29:36.975708 {"publishers": ["Frederick Warne Publishers Ltd"], "physical_format": "Hardcover", "title": "Great Inventions (Library 2000)", "contributions": ["C. Hillier (Translator)"], "number_of_pages": 64, "edition_name": "Open Market Ed edition", "isbn_13": ["9780723223405"], "isbn_10": ["0723223408"], "publish_date": "November 9, 1979", "key": "/books/OL10543548M", "authors": [{"key": "/authors/OL1297319A"}], "oclc_numbers": ["8357335"], "works": [{"key": "/works/OL5480469W"}], "type": {"key": "/type/edition"}, "subjects": ["Technology & Applied Sciences"], "lc_classifications": ["T15"], "source_records": ["bwb:9780723223405"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T13:29:36.975708"}}
+/type/edition /books/OL1054402M 3 2020-11-18T01:48:20.267014 {"other_titles": ["Vi\u0361e\ufe21stnik finansov, promyshlennosti i torgovli."], "publishers": ["Tip. Ministerstva finansov"], "physical_format": "Microform", "lc_classifications": ["Microfilm 98/6015 (H)"], "latest_revision": 3, "key": "/books/OL1054402M", "authors": [{"key": "/authors/OL564908A"}], "publish_places": ["[Saint Petersburg"], "contributions": ["Vitte, S. I\u0361U\ufe21. graf, 1849-1915."], "pagination": "480, 20 p.", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:91128896:1594"], "title": "Materi\u0304aly, postupivshi\u0304e v Osoboe sovi\u0361e\ufe21shchani\u0304e o nuzhdakh sel\u02b9skokhozi\u0361a\ufe21i\u0306stvennoi\u0306 promyshlennosti", "lccn": ["93845566"], "notes": {"type": "/type/text", "value": "Microfilm. Washington, D.C. : Library of Congress Preservation Microfilming Program : Available from Library of Congress Photoduplication Service, 1998. 1 microfilm reel ; 35 mm. Master microform held by: DLC.\nCaption title.\n\"Predsedatel\u02b9 Osobago sovi\u0361e\ufe21shchani\u0304i\u0361a\ufe21, stats-sekretar\u02b9 S.I\u0361U\ufe21. Vitte.\"\nProceedings of this Special Commission are to be published in the Vi\u0361e\ufe21stnik finansov, promyshlennosti i torgovli--Cf. p. 1."}, "number_of_pages": 480, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/rus"}], "last_modified": {"type": "/type/datetime", "value": "2020-11-18T01:48:20.267014"}, "publish_date": "1902", "publish_country": "ru ", "work_title": ["Materialy, postupivshie v Osoboe soveshchanie o nuzhdakh sel\u02b9skokhozi\u0361a\ufe21i\u0306stvennoi\u0306 promyshlennosti"], "works": [{"key": "/works/OL23528384W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10544607M 4 2023-01-06T16:35:44.993024 {"publishers": ["C.V. Mosby"], "weight": "3.9 pounds", "physical_format": "Hardcover", "lc_classifications": [""], "key": "/books/OL10544607M", "authors": [{"key": "/authors/OL3459144A"}, {"key": "/authors/OL3459145A"}], "subjects": ["Plastic & reconstructive surgery", "Ophthalmological Surgery", "Plastic And Reconstructive Surgery", "Medical", "Medical / Nursing", "Surgery - General", "Ophthalmology"], "edition_name": "1st edition", "languages": [{"key": "/languages/eng"}], "source_records": ["bwb:9780723419242", "marc:marc_columbia/Columbia-extract-20221130-009.mrc:54673236:2850"], "title": "Color Atlas and Text of Ocular Plastic Surgery", "number_of_pages": 311, "isbn_13": ["9780723419242"], "isbn_10": ["0723419248"], "publish_date": "January 15, 1996", "works": [{"key": "/works/OL21079649W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "12.1 x 9.8 x 0.9 inches", "oclc_numbers": ["34425877"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2023-01-06T16:35:44.993024"}}
+/type/edition /books/OL10544610M 2 2009-12-15T00:50:08.716182 {"publishers": ["Mosby International"], "key": "/books/OL10544610M", "title": "Picture Tests Oral Med *Arabic Ed*", "isbn_13": ["9780723419280"], "physical_format": "Paperback", "isbn_10": ["0723419280"], "publish_date": "August 1, 1992", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:50:08.716182"}, "authors": [{"key": "/authors/OL3459146A"}], "latest_revision": 2, "works": [{"key": "/works/OL9427551W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10544874M 2 2009-12-15T00:50:08.716182 {"physical_format": "Hardcover", "languages": [{"key": "/languages/eng"}], "publishers": ["Mosby-Year Book"], "isbn_10": ["0723427313"], "title": "Atl Clin Gastro 1.1 Inst MAC", "edition_name": "Cdr edition", "isbn_13": ["9780723427315"], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:50:08.716182"}, "publish_date": "January 1996", "key": "/books/OL10544874M", "authors": [{"key": "/authors/OL2710305A"}], "latest_revision": 2, "subjects": ["Diseases - Digestive Organs", "Gastroenterology", "Medical", "Medical / Nursing"], "works": [{"key": "/works/OL8133193W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10545470M 3 2019-03-10T11:31:01.566277 {"publishers": ["Butterworth-Heinemann Ltd"], "physical_format": "Hardcover", "source_records": ["marc:marc_oregon_summit_records/catalog_files/ohsu_ncnm_wscc_bibs.mrc:34920683:1093"], "title": "A Handbook of Surgical Diathermy", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 144, "last_modified": {"type": "/type/datetime", "value": "2019-03-10T11:31:01.566277"}, "edition_name": "2Rev Ed edition", "isbn_13": ["9780723604495"], "isbn_10": ["0723604495"], "publish_date": "September 26, 1978", "key": "/books/OL10545470M", "authors": [{"key": "/authors/OL3315850A"}, {"key": "/authors/OL3459440A"}, {"key": "/authors/OL3459441A"}], "latest_revision": 3, "oclc_numbers": ["4372925"], "works": [{"key": "/works/OL19125427W"}], "type": {"key": "/type/edition"}, "subjects": ["Surgery"], "revision": 3}
+/type/edition /books/OL10545624M 4 2010-04-24T18:04:25.077294 {"publishers": ["Butterworth-Heinemann"], "identifiers": {"goodreads": ["6168782"]}, "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:04:25.077294"}, "title": "Examination Notes on the Scientific Basis of Psychiatry", "number_of_pages": 148, "isbn_13": ["9780723608387"], "physical_format": "Paperback", "isbn_10": ["0723608385"], "publish_date": "January 1986", "key": "/books/OL10545624M", "authors": [{"key": "/authors/OL3459524A"}], "latest_revision": 4, "works": [{"key": "/works/OL9427845W"}], "type": {"key": "/type/edition"}, "subjects": ["Mental Illness", "Psychiatry", "Psychiatry (General)", "Psychology"], "revision": 4}
+/type/edition /books/OL10545858M 4 2011-06-08T04:20:45.243898 {"publishers": ["Dept. Of Agriculture & Fisheries"], "last_modified": {"type": "/type/datetime", "value": "2011-06-08T04:20:45.243898"}, "title": "Livestock from South Australia - Sheep Dairy and Beef Breeds", "identifiers": {"goodreads": ["3345387"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0724353232"], "publish_date": "1979", "key": "/books/OL10545858M", "authors": [{"key": "/authors/OL3459649A"}], "latest_revision": 4, "oclc_numbers": ["27544495"], "works": [{"key": "/works/OL9427976W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10545984M 4 2010-04-24T18:04:25.077294 {"publishers": ["Prentice-Hall (Australia)"], "identifiers": {"goodreads": ["5414839"]}, "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:04:25.077294"}, "title": "How to Handle the Media (WorkWise)", "number_of_pages": 135, "isbn_13": ["9780724805280"], "physical_format": "Paperback", "isbn_10": ["0724805281"], "publish_date": "October 31, 1996", "key": "/books/OL10545984M", "authors": [{"key": "/authors/OL3459700A"}], "latest_revision": 4, "works": [{"key": "/works/OL9428021W"}], "type": {"key": "/type/edition"}, "subjects": ["Business communication & presentation", "Public relations"], "revision": 4}
+/type/edition /books/OL10546332M 4 2011-04-29T16:46:44.572881 {"publishers": ["Horwitz Publications"], "physical_format": "Paperback", "subtitle": "Coffin Island", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T16:46:44.572881"}, "title": "Collector's Series #12", "identifiers": {"librarything": ["8290159"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780725510404"], "isbn_10": ["0725510404"], "publish_date": "1981", "key": "/books/OL10546332M", "authors": [{"key": "/authors/OL2798091A"}], "latest_revision": 4, "oclc_numbers": ["27560206"], "works": [{"key": "/works/OL8393956W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10546472M 4 2022-12-17T04:49:03.876410 {"publishers": ["Palgrave Macmillan"], "title": "Macmillan Dictionary of Building (Dictionary)", "number_of_pages": 208, "isbn_13": ["9780333424391"], "physical_format": "Hardcover", "isbn_10": ["0333424395"], "publish_date": "August 1988", "key": "/books/OL10546472M", "authors": [{"key": "/authors/OL3347364A"}], "oclc_numbers": ["14131925"], "works": [{"key": "/works/OL9294667W"}], "type": {"key": "/type/edition"}, "subjects": ["Building construction & materials", "Reference works"], "lc_classifications": ["TH9"], "source_records": ["bwb:9780333424391"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T04:49:03.876410"}}
+/type/edition /books/OL10546588M 6 2022-12-17T05:34:02.872036 {"publishers": ["Macmillan"], "physical_format": "Hardcover", "source_records": ["marc:talis_openlibrary_contribution/talis-openlibrary-contribution.mrc:1475317115:511", "marc:marc_university_of_toronto/uoft.marc:799835570:1084", "bwb:9780333427415"], "title": "The Best of \"Winter's Crimes\"", "number_of_pages": 272, "isbn_13": ["9780333427415"], "isbn_10": ["0333427416"], "publish_date": "September 18, 1986", "key": "/books/OL10546588M", "authors": [{"key": "/authors/OL2757204A"}], "oclc_numbers": ["59097664"], "works": [{"key": "/works/OL8299454W"}], "type": {"key": "/type/edition"}, "subjects": ["Crime & mystery", "Short stories"], "lc_classifications": ["PR1309.D4"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T05:34:02.872036"}}
+/type/edition /books/OL10546876M 4 2022-12-17T05:50:22.882866 {"publishers": ["Macmillan Education Ltd"], "title": "The Family Planning Clinic in Africa", "number_of_pages": 112, "isbn_13": ["9780333436585"], "covers": [5065360], "physical_format": "Hardcover", "isbn_10": ["033343658X"], "publish_date": "October 9, 1987", "key": "/books/OL10546876M", "authors": [{"key": "/authors/OL2815861A"}, {"key": "/authors/OL238162A"}], "oclc_numbers": ["59098473"], "type": {"key": "/type/edition"}, "subjects": ["Africa", "Birth control, contraception, family planning"], "works": [{"key": "/works/OL32363734W"}], "lc_classifications": ["HQ766.5.A33"], "source_records": ["bwb:9780333436585"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T05:50:22.882866"}}
+/type/edition /books/OL10547236M 5 2022-12-03T21:29:39.537420 {"publishers": ["Palgrave Macmillan"], "identifiers": {}, "physical_format": "Hardcover", "key": "/books/OL10547236M", "authors": [{"key": "/authors/OL758666A"}], "subjects": ["Civil Engineering, Surveying & Building"], "classifications": {}, "title": "Civil Engineering Quantities", "notes": {"type": "/type/text", "value": "Macmillan Building and Surveying Series"}, "number_of_pages": 288, "isbn_13": ["9780333447116"], "isbn_10": ["0333447115"], "publish_date": "May 18, 1987", "oclc_numbers": ["15662887"], "works": [{"key": "/works/OL4064446W"}], "type": {"key": "/type/edition"}, "source_records": ["amazon:0333447115"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-03T21:29:39.537420"}}
+/type/edition /books/OL10547744M 5 2011-04-30T09:43:18.566468 {"publishers": ["Nelson Thornes Ltd"], "number_of_pages": 192, "last_modified": {"type": "/type/datetime", "value": "2011-04-30T09:43:18.566468"}, "title": "Pas De Panique!", "type": {"key": "/type/edition"}, "identifiers": {"goodreads": ["1600887"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780333462232"], "isbn_10": ["0333462238"], "publish_date": "November 11, 1988", "key": "/books/OL10547744M", "authors": [{"key": "/authors/OL2651878A"}], "latest_revision": 5, "oclc_numbers": ["17774331"], "works": [{"key": "/works/OL7949507W"}], "physical_format": "Paperback", "subjects": ["Language teaching & learning material & coursework", "Modern languages (ie other than English)", "For National Curriculum Key Stage 4 & GCSE", "French"], "revision": 5}
+/type/edition /books/OL10547979M 5 2019-07-30T21:26:50.997218 {"publishers": ["Palgrave Macmillan"], "number_of_pages": 256, "last_modified": {"type": "/type/datetime", "value": "2019-07-30T21:26:50.997218"}, "title": "Body Invaders (Culture Texts)", "identifiers": {"goodreads": ["252653"], "librarything": ["1803021"]}, "isbn_13": ["9780333468418"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Hardcover", "isbn_10": ["0333468414"], "publish_date": "February 19, 1988", "key": "/books/OL10547979M", "authors": [{"key": "/authors/OL448268A"}, {"key": "/authors/OL2939919A"}], "latest_revision": 5, "works": [{"key": "/works/OL18333750W"}], "type": {"key": "/type/edition"}, "subjects": ["Sociology, Social Studies"], "revision": 5}
+/type/edition /books/OL10548563M 7 2022-12-17T04:12:37.804501 {"title": "My Home in Italy - Blue Level (My World - Red Level)", "authors": [{"key": "/authors/OL1006604A"}, {"key": "/authors/OL509055A"}], "publish_date": "September 18, 1989", "publishers": ["Nelson Thornes (Publishers) Ltd"], "physical_format": "Paperback", "isbn_13": ["9780333484036"], "isbn_10": ["0333484037"], "oclc_numbers": ["20690472"], "type": {"key": "/type/edition"}, "ocaid": "myhomeinitaly0000bail", "source_records": ["ia:myhomeinitaly0000bail", "promise:bwb_daily_pallets_2021-01-28", "bwb:9780333484036"], "key": "/books/OL10548563M", "number_of_pages": 16, "works": [{"key": "/works/OL3177584W"}], "local_id": ["urn:bwbsku:KP-079-844"], "covers": [13052061], "lc_classifications": ["PE1119"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T04:12:37.804501"}}
+/type/edition /books/OL10548902M 2 2009-12-09T05:53:06.806461 {"publishers": ["Nelson Thornes Ltd"], "subtitle": "Cassette", "title": "Shakespeare Interviews - Hamlet", "isbn_10": ["0333493516"], "isbn_13": ["9780333493519"], "physical_format": "Audio Cassette", "last_modified": {"type": "/type/datetime", "value": "2009-12-09T05:53:06.806461"}, "publish_date": "October 21, 1988", "key": "/books/OL10548902M", "authors": [{"key": "/authors/OL74819A"}], "latest_revision": 2, "subjects": ["English literature: Shakespeare texts", "Shakespeare plays, texts"], "works": [{"key": "/works/OL860199W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10548944M 3 2010-08-17T02:48:08.306523 {"publishers": ["Nelson Thornes Ltd"], "physical_format": "Hardcover", "subtitle": "Level 1", "last_modified": {"type": "/type/datetime", "value": "2010-08-17T02:48:08.306523"}, "title": "Fact and Story Book", "identifiers": {"librarything": ["4749567"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780333494639"], "isbn_10": ["0333494636"], "publish_date": "December 31, 1989", "key": "/books/OL10548944M", "authors": [{"key": "/authors/OL1771811A"}], "latest_revision": 3, "works": [{"key": "/works/OL6597067W"}], "type": {"key": "/type/edition"}, "subjects": ["English", "English language"], "revision": 3}
+/type/edition /books/OL10549266M 6 2019-02-17T11:08:25.333001 {"publishers": ["Stockton Press, 1991."], "number_of_pages": 256, "subtitle": "Novel Materials from Biological Sources.", "contributors": [{"role": "Editor", "name": "David Byrom"}], "covers": [5349608, 5065851], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2019-02-17T11:08:25.333001"}, "latest_revision": 6, "key": "/books/OL10549266M", "authors": [{"key": "/authors/OL3460405A"}], "classifications": {}, "source_records": ["marc:marc_miami_univ_ohio/allbibs0058.out:915010:799"], "title": "Biomaterials", "identifiers": {"librarything": ["6275725"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780333511756"], "isbn_10": ["0333511751"], "publish_date": "1991", "works": [{"key": "/works/OL9428836W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL10549346M 7 2011-04-27T15:02:50.440870 {"publishers": ["Papermac"], "number_of_pages": 272, "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T15:02:50.440870"}, "latest_revision": 7, "key": "/books/OL10549346M", "authors": [{"key": "/authors/OL18277A"}], "contributions": ["Carl J. Weber (Editor)"], "subjects": ["Works by individual poets: 19th century", "Works by individual poets: from c 1900 -"], "edition_name": "New Ed edition", "source_records": ["amazon:0333513584"], "title": "Love Poems", "identifiers": {"librarything": ["2039509"], "goodreads": ["6843352"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780333513583"], "isbn_10": ["0333513584"], "publish_date": "June 29, 1989", "oclc_numbers": ["19774983"], "works": [{"key": "/works/OL44940W"}], "type": {"key": "/type/edition"}, "revision": 7}
+/type/edition /books/OL10549363M 3 2011-01-15T10:56:28.605706 {"publishers": ["Palgrave Macmillan"], "classifications": {}, "last_modified": {"type": "/type/datetime", "value": "2011-01-15T10:56:28.605706"}, "title": "Easily into DOS - Practice Disk 3.5", "notes": {"type": "/type/text", "value": "Macmillan Modern Office Series"}, "identifiers": {}, "isbn_13": ["9780333513927"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Hardcover", "isbn_10": ["0333513924"], "publish_date": "June 20, 1990", "key": "/books/OL10549363M", "authors": [{"key": "/authors/OL3409194A"}], "latest_revision": 3, "works": [{"key": "/works/OL9368710W"}], "type": {"key": "/type/edition"}, "subjects": ["DOS"], "revision": 3}
+/type/edition /books/OL10549540M 8 2022-12-17T05:57:39.107097 {"publishers": ["Palgrave Macmillan"], "number_of_pages": 240, "title": "Form, Structure and Mechanism", "identifiers": {"librarything": ["3106934"]}, "isbn_13": ["9780333518861"], "covers": [5065877], "physical_format": "Paperback", "isbn_10": ["0333518861"], "publish_date": "March 10, 1992", "key": "/books/OL10549540M", "authors": [{"key": "/authors/OL883052A"}], "works": [{"key": "/works/OL4438352W"}], "type": {"key": "/type/edition"}, "ocaid": "formstructuremec0000fren", "lc_classifications": ["TA174 .F73 1992"], "source_records": ["ia:formstructuremec0000fren", "promise:bwb_daily_pallets_2021-02-04", "bwb:9780333518861"], "local_id": ["urn:bwbsku:KP-065-489"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T05:57:39.107097"}}
+/type/edition /books/OL10549945M 6 2022-12-17T04:34:47.687445 {"publishers": ["Macmillan Education"], "identifiers": {}, "classifications": {}, "title": "False Accusation - Level 4", "physical_format": "Paperback", "notes": {"type": "/type/text", "value": "Macmillan Bookshelf"}, "number_of_pages": 48, "isbn_13": ["9780333533987"], "isbn_10": ["0333533984"], "publish_date": "April 1991", "key": "/books/OL10549945M", "authors": [{"key": "/authors/OL957796A"}], "works": [{"key": "/works/OL4658030W"}], "type": {"key": "/type/edition"}, "subjects": ["ELT graded readers"], "source_records": ["bwb:9780333533987"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T04:34:47.687445"}}
+/type/edition /books/OL10550260M 2 2011-04-29T19:08:57.189849 {"publishers": ["Macmillan ELT"], "physical_format": "Paperback", "subtitle": "Carnival Teachers Book 3", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T19:08:57.189849"}, "title": "Holt R: ", "number_of_pages": 88, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780333542583"], "isbn_10": ["0333542584"], "publish_date": "May 25, 1991", "key": "/books/OL10550260M", "latest_revision": 2, "oclc_numbers": ["24793565"], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10550769M 6 2021-12-29T00:58:42.926997 {"publishers": ["Palgrave Macmillan"], "identifiers": {"goodreads": ["3928293"]}, "title": "A Shelley Chronology (Author Chronologies)", "isbn_10": ["0333557700"], "type": {"key": "/type/edition"}, "number_of_pages": 108, "covers": [2389536], "isbn_13": ["9780333557709"], "publish_date": "October 5, 1993", "key": "/books/OL10550769M", "authors": [{"key": "/authors/OL529386A"}], "works": [{"key": "/works/OL3245714W"}], "physical_format": "Hardcover", "subjects": ["Biography: general", "Poetry & poets: 19th century", "c 1700 to c 1800", "c 1800 to c 1900", "English"], "lc_classifications": ["PN1-PN6790"], "source_records": ["bwb:9780333557709"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-29T00:58:42.926997"}}
+/type/edition /books/OL10550894M 4 2022-12-17T04:48:36.362536 {"publishers": ["Pan Macmillan"], "title": "Bloody Festival", "number_of_pages": 208, "isbn_13": ["9780333564462"], "physical_format": "Hardcover", "isbn_10": ["0333564464"], "publish_date": "July 11, 1991", "key": "/books/OL10550894M", "authors": [{"key": "/authors/OL3304253A"}], "oclc_numbers": ["24741940"], "works": [{"key": "/works/OL9247457W"}], "type": {"key": "/type/edition"}, "subjects": ["Crime & mystery"], "source_records": ["bwb:9780333564462"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T04:48:36.362536"}}
+/type/edition /books/OL10550897M 2 2009-12-15T00:50:12.903543 {"publishers": ["Macmillan ELT"], "isbn_10": ["0333564510"], "number_of_pages": 64, "isbn_13": ["9780333564516"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:50:12.903543"}, "publish_date": "January 1, 1995", "latest_revision": 2, "key": "/books/OL10550897M", "authors": [{"key": "/authors/OL3460708A"}], "title": "Kid's Talk", "subjects": ["ELT graded readers"], "works": [{"key": "/works/OL9429195W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10550906M 6 2022-12-17T04:12:52.460585 {"publishers": ["Palgrave Macmillan"], "identifiers": {}, "classifications": {}, "title": "Computer-aided Draughting", "physical_format": "Paperback", "notes": {"type": "/type/text", "value": "City & Guilds/Macmillan Publishing for CAE"}, "number_of_pages": 80, "isbn_13": ["9780333565049"], "isbn_10": ["0333565045"], "publish_date": "January 1993", "key": "/books/OL10550906M", "authors": [{"key": "/authors/OL3449730A"}], "works": [{"key": "/works/OL9415152W"}], "type": {"key": "/type/edition"}, "subjects": ["Computer aided design (CAD)"], "covers": [12362553], "ocaid": "computeraideddra0000town", "lc_classifications": ["T385"], "source_records": ["ia:computeraideddra0000town", "promise:bwb_daily_pallets_2021-06-17", "bwb:9780333565049"], "local_id": ["urn:bwbsku:KP-324-052"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T04:12:52.460585"}}
+/type/edition /books/OL10551103M 6 2022-12-04T17:06:24.288905 {"publishers": ["Pan Macmillan"], "identifiers": {"goodreads": ["6642137"]}, "subtitle": "A Tommy Fox Mystery", "title": "Tom Foolery", "number_of_pages": 192, "isbn_13": ["9780333570975"], "physical_format": "Hardcover", "isbn_10": ["0333570979"], "publish_date": "January 24, 1992", "key": "/books/OL10551103M", "authors": [{"key": "/authors/OL359536A"}], "works": [{"key": "/works/OL2539335W"}], "type": {"key": "/type/edition"}, "subjects": ["Crime & mystery"], "covers": [12941792], "ocaid": "tomfoolerytommyf0000ison", "oclc_numbers": ["26312203"], "source_records": ["ia:tomfoolerytommyf0000ison", "promise:bwb_daily_pallets_2022-08-13"], "local_id": ["urn:bwbsku:W7-BWR-655"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T17:06:24.288905"}}
+/type/edition /books/OL10551571M 6 2022-12-08T21:00:43.424531 {"publishers": ["Palgrave Macmillan"], "identifiers": {"goodreads": ["159956"]}, "title": "Brodie's Notes on W.B.Yeats' Selected Poetry (Brodies Notes)", "type": {"key": "/type/edition"}, "number_of_pages": 96, "covers": [2389694], "edition_name": "New Ed edition", "isbn_13": ["9780333582237"], "isbn_10": ["0333582233"], "publish_date": "January 1, 1992", "key": "/books/OL10551571M", "authors": [{"key": "/authors/OL3448518A"}, {"key": "/authors/OL660612A"}], "subjects": ["English literature: literary criticism", "Poetry & poets: 16th to 18th centuries", "Ireland", "Designed / suitable for A & AS Level", "For National Curriculum Key Stage 4 & GCSE", "Study guides, home study & revision notes", "English"], "physical_format": "Paperback", "works": [{"key": "/works/OL24766789W"}], "ocaid": "brodiesnotesonwb0000curr", "source_records": ["ia:brodiesnotesonwb0000curr", "promise:bwb_daily_pallets_2021-03-02"], "local_id": ["urn:bwbsku:KO-837-737"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-08T21:00:43.424531"}}
+/type/edition /books/OL10551662M 4 2019-04-03T02:40:11.687068 {"publishers": ["Macmillan"], "number_of_pages": 192, "source_records": ["marc:talis_openlibrary_contribution/talis-openlibrary-contribution.mrc:1476379210:502"], "title": "Winter's Crimes", "type": {"key": "/type/edition"}, "identifiers": {"librarything": ["9413574"]}, "last_modified": {"type": "/type/datetime", "value": "2019-04-03T02:40:11.687068"}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780333584682"], "isbn_10": ["0333584686"], "publish_date": "October 23, 1992", "key": "/books/OL10551662M", "authors": [{"key": "/authors/OL3460728A"}], "latest_revision": 4, "works": [{"key": "/works/OL9429224W"}], "physical_format": "Hardcover", "subjects": ["Crime & mystery", "Short stories"], "revision": 4}
+/type/edition /books/OL1055180M 2 2020-11-18T02:08:06.998694 {"publishers": ["Le Ministe\u0300re"], "subtitle": "Remera, Kigali du 28 avril au 3 mai 1986", "subject_place": ["Rwanda"], "lc_classifications": ["HD2127.5 .C66 1986"], "latest_revision": 2, "key": "/books/OL1055180M", "publish_places": ["[Kigali]"], "contributions": ["Rwanda. Ministe\u0300re de l'agriculture, de l'e\u0301levage et des fore\u0302ts.", "Se\u0301minaire-Atelier sur la re\u0301orientation des projets (1986 : Remera, Kigali, Rwanda)"], "pagination": "141 leaves ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:92400293:926"], "title": "Conclusions du Se\u0301minaire-Atelier sur la re\u0301orientation des projets agricoles", "lccn": ["93849344"], "number_of_pages": 141, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/fre"}], "subjects": ["Agricultural development projects -- Rwanda -- Congresses.", "Agriculture and state -- Rwanda -- Congresses."], "publish_date": "1986", "publish_country": "rw ", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T02:08:06.998694"}, "by_statement": "Re\u0301publique rwandaise, Ministe\u0300re de l'agriculture, de l'e\u0301levage et des fore\u0302ts.", "works": [{"key": "/works/OL23529273W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10551899M 3 2011-04-29T02:37:40.317181 {"publishers": ["Macmillan Boleswa (Pty) Ltd"], "subtitle": "Sesotho (Mac Children's Books)", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T02:37:40.317181"}, "title": "MPHO: Sesotho", "number_of_pages": 20, "isbn_13": ["9780333591239"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Unknown Binding", "isbn_10": ["0333591232"], "latest_revision": 3, "key": "/books/OL10551899M", "authors": [{"key": "/authors/OL3460919A"}], "oclc_numbers": ["85960442"], "works": [{"key": "/works/OL9429463W"}], "type": {"key": "/type/edition"}, "subjects": ["Children's and Educational"], "revision": 3}
+/type/edition /books/OL10551927M 5 2022-12-04T06:57:26.350485 {"publishers": ["Papermac"], "number_of_pages": 288, "title": "Papermac;Estate the", "type": {"key": "/type/edition"}, "identifiers": {"librarything": ["2513509"]}, "isbn_13": ["9780333592571"], "isbn_10": ["0333592573"], "publish_date": "October 31, 1995", "key": "/books/OL10551927M", "authors": [{"key": "/authors/OL3460926A"}], "oclc_numbers": ["270107014"], "works": [{"key": "/works/OL9429487W"}], "physical_format": "Paperback", "local_id": ["urn:bwbsku:KR-508-015"], "source_records": ["promise:bwb_daily_pallets_2022-11-09"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T06:57:26.350485"}}
+/type/edition /books/OL10552057M 2 2009-12-15T00:50:13.934292 {"publishers": ["Macmillan ELT"], "isbn_10": ["033359519X"], "number_of_pages": 176, "isbn_13": ["9780333595190"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:50:13.934292"}, "publish_date": "February 15, 1994", "latest_revision": 2, "key": "/books/OL10552057M", "authors": [{"key": "/authors/OL3280364A"}], "title": "Carnival Plus 5 (Carnival Plus)", "subjects": ["ELT: Learning Material & Coursework", "English"], "works": [{"key": "/works/OL9217932W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10552779M 5 2010-08-17T02:48:52.640575 {"publishers": ["Trans-Atlantic Publications"], "number_of_pages": 446, "subtitle": "Historical Essays", "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-08-17T02:48:52.640575"}, "latest_revision": 5, "key": "/books/OL10552779M", "authors": [{"key": "/authors/OL3461093A"}], "subjects": ["British & Irish history: c 1700 to c 1900", "United Kingdom, Great Britain", "Europe - Great Britain - General", "History - General History"], "edition_name": "New Ed edition", "languages": [{"key": "/languages/eng"}], "title": "Interests & Obsessions", "identifiers": {"goodreads": ["6070495"], "librarything": ["193395"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780333616659"], "isbn_10": ["0333616650"], "publish_date": "November 1994", "works": [{"key": "/works/OL9429687W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10552906M 6 2022-12-17T03:02:33.649038 {"publishers": ["Palgrave Macmillan"], "number_of_pages": 304, "key": "/books/OL10552906M", "title": "Mastering Business Law (Macmillan Master Series)", "type": {"key": "/type/edition"}, "identifiers": {"goodreads": ["372085"]}, "covers": [2389949], "isbn_13": ["9780333620489"], "isbn_10": ["0333620488"], "publish_date": "July 19, 1995", "authors": [{"key": "/authors/OL2766955A"}], "works": [{"key": "/works/OL8324515W"}], "physical_format": "Paperback", "source_records": ["bwb:9780333620489"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T03:02:33.649038"}}
+/type/edition /books/OL10553306M 3 2010-04-24T18:04:25.077294 {"publishers": ["Macmillan Education"], "identifiers": {"goodreads": ["5311366"]}, "subtitle": "Grade 2, Term 3 (Macmillan Zambia Readers)", "key": "/books/OL10553306M", "title": "Baby in a Basket", "type": {"key": "/type/edition"}, "number_of_pages": 28, "isbn_13": ["9780333634790"], "isbn_10": ["0333634799"], "publish_date": "December 15, 1995", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:04:25.077294"}, "authors": [{"key": "/authors/OL3461193A"}, {"key": "/authors/OL3461195A"}], "latest_revision": 3, "physical_format": "Paperback", "revision": 3}
+/type/edition /books/OL1055333M 3 2020-11-18T02:10:04.407708 {"publishers": ["Editions Africaines pour la paix"], "subject_place": ["Congo (Democratic Republic)"], "lc_classifications": ["DT650.2 .K36 1991"], "latest_revision": 3, "key": "/books/OL1055333M", "authors": [{"key": "/authors/OL380417A"}], "publish_places": ["[Kinshasa?]"], "pagination": "110 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:92554245:705"], "title": "L' histoire et l'historien", "dewey_decimal_class": ["967.51/0072"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. [108]-110)."}, "number_of_pages": 110, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/fre"}], "lccn": ["93849554"], "subjects": ["Historiography.", "Congo (Democratic Republic) -- Historiography."], "publish_date": "1991", "publish_country": "cg ", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T02:10:04.407708"}, "by_statement": "par Kambayi Bwatshia L.", "works": [{"key": "/works/OL2615113W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10553720M 8 2022-12-17T03:00:16.177060 {"publishers": ["Pan Macmillan"], "identifiers": {"librarything": ["828122"], "goodreads": ["1587341"]}, "title": "The Precipice", "type": {"key": "/type/edition"}, "number_of_pages": 528, "isbn_13": ["9780333647097"], "isbn_10": ["0333647092"], "publish_date": "January 28, 1996", "key": "/books/OL10553720M", "authors": [{"key": "/authors/OL343608A"}], "oclc_numbers": ["34411445"], "works": [{"key": "/works/OL2467840W"}], "physical_format": "Hardcover", "subjects": ["Crime & mystery"], "local_id": ["urn:bwbsku:kr-536-685"], "source_records": ["promise:bwb_daily_pallets_2022-11-22", "bwb:9780333647097"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T03:00:16.177060"}}
+/type/edition /books/OL10554649M 5 2011-04-27T09:08:05.787822 {"publishers": ["Hunter Publishing (NJ)"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2011-04-27T09:08:05.787822"}, "title": "Bears at Play", "number_of_pages": 10, "isbn_13": ["9780333679432"], "covers": [2390541], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Hardcover", "isbn_10": ["0333679431"], "publish_date": "September 1997", "key": "/books/OL10554649M", "authors": [{"key": "/authors/OL1719003A"}], "latest_revision": 5, "oclc_numbers": ["57120801"], "works": [{"key": "/works/OL6477184W"}], "type": {"key": "/type/edition"}, "subjects": ["Fiction", "Pop-up & lift-the-flap books", "General", "Children's Books/Baby-Preschool"], "revision": 5}
+/type/edition /books/OL10554773M 2 2009-12-15T00:50:15.750702 {"publishers": ["Palgrave Macmillan"], "key": "/books/OL10554773M", "title": "Dummy Box", "isbn_13": ["9780333684351"], "physical_format": "Paperback", "isbn_10": ["0333684354"], "publish_date": "July 3, 1996", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:50:15.750702"}, "authors": [{"key": "/authors/OL3461430A"}], "latest_revision": 2, "works": [{"key": "/works/OL9430172W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10554787M 2 2009-12-15T00:50:15.750702 {"publishers": ["Palgrave Macmillan"], "title": "European Financial Reporting", "isbn_10": ["0333685199"], "isbn_13": ["9780333685198"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:50:15.750702"}, "publish_date": "February 28, 1998", "key": "/books/OL10554787M", "authors": [{"key": "/authors/OL2701527A"}], "latest_revision": 2, "subjects": ["Financial reporting, financial statements", "Europe"], "works": [{"key": "/works/OL8107607W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10554872M 5 2011-04-28T00:53:50.322064 {"publishers": ["Macmillan ELT"], "identifiers": {"goodreads": ["6883859"]}, "last_modified": {"type": "/type/datetime", "value": "2011-04-28T00:53:50.322064"}, "title": "Beeline I Student Edition", "type": {"key": "/type/edition"}, "number_of_pages": 112, "isbn_13": ["9780333688403"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0333688406"], "publish_date": "August 17, 1998", "key": "/books/OL10554872M", "authors": [{"key": "/authors/OL3300707A"}, {"key": "/authors/OL2897810A"}, {"key": "/authors/OL2897811A"}], "latest_revision": 5, "oclc_numbers": ["316448762"], "works": [{"key": "/works/OL15005528W"}], "physical_format": "Paperback", "subjects": ["ELT: Learning Material & Coursework", "USA", "English"], "revision": 5}
+/type/edition /books/OL10555166M 2 2009-12-15T00:50:16.949981 {"publishers": ["Macmillan Education Ltd"], "isbn_10": ["0333698851"], "number_of_pages": 16, "isbn_13": ["9780333698853"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:50:16.949981"}, "publish_date": "October 27, 1997", "latest_revision": 2, "key": "/books/OL10555166M", "authors": [{"key": "/authors/OL265003A"}], "title": "Kikki and the Storm (Ready...go (Level 2: Go))", "subjects": ["Early learning / early learning concepts", "English language readers"], "works": [{"key": "/works/OL2126143W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10555309M 3 2022-12-17T03:01:50.158663 {"publishers": ["Macmillan Caribbean"], "isbn_10": ["0333713087"], "number_of_pages": 96, "isbn_13": ["9780333713082"], "physical_format": "Paperback", "publish_date": "August 26, 1998", "key": "/books/OL10555309M", "authors": [{"key": "/authors/OL1104171A"}], "title": "Password (Macmillan Primary English Course for the Caribbean)", "subjects": ["ELT: Learning Material & Coursework"], "works": [{"key": "/works/OL5054258W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780333713082"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T03:01:50.158663"}}
+/type/edition /books/OL10556056M 1 2008-04-30T09:38:13.731961 {"physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["MacMillan"], "title": "Child Labour in Asia Falkus M & Brasted H", "isbn_13": ["9780333739976"], "isbn_10": ["0333739973"], "publish_date": "September 30, 2000", "key": "/books/OL10556056M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10556447M 3 2019-07-06T15:09:20.191433 {"publishers": ["MacMillan"], "number_of_pages": 112, "covers": [8710538], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2019-07-06T15:09:20.191433"}, "latest_revision": 3, "key": "/books/OL10556447M", "authors": [{"key": "/authors/OL2449130A"}], "ocaid": "proficiencypassk00kenn", "subjects": ["ELT: Learning Material & Coursework", "Reference - General"], "isbn_13": ["9780333755082"], "source_records": ["ia:proficiencypassk00kenn"], "title": "Proficiency Passkey - Workbook with Key", "identifiers": {"librarything": ["8131606"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/spa"}], "isbn_10": ["0333755081"], "publish_date": "December 2000", "works": [{"key": "/works/OL19897090W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10556709M 2 2009-12-15T00:50:16.949981 {"publishers": ["Macmillan ELT"], "weight": "8.2 ounces", "isbn_10": ["0333759192"], "number_of_pages": 80, "isbn_13": ["9780333759196"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:50:16.949981"}, "publish_date": "May 12, 1999", "key": "/books/OL10556709M", "authors": [{"key": "/authors/OL3461622A"}], "title": "Auf Deutsch! 3 Wb French", "latest_revision": 2, "works": [{"key": "/works/OL9430435W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10556862M 6 2022-12-17T02:52:02.806134 {"publishers": ["Macmillan"], "physical_format": "Paperback", "title": "44", "identifiers": {"goodreads": ["952696"], "librarything": ["436368"]}, "isbn_13": ["9780333765944"], "languages": [{"key": "/languages/eng"}], "number_of_pages": 304, "isbn_10": ["033376594X"], "publish_date": "February 2003", "key": "/books/OL10556862M", "authors": [{"key": "/authors/OL27945A"}], "works": [{"key": "/works/OL17873792W"}], "type": {"key": "/type/edition"}, "subjects": ["Biography: general", "General", "1952-", "20th century", "Biography", "Dramatists, Irish", "Dublin", "Homes and haunts", "Ireland", "Sheridan, Peter,", "Literary Criticism"], "lc_classifications": ["PR6069.H4575Z4614"], "source_records": ["bwb:9780333765944"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T02:52:02.806134"}}
+/type/edition /books/OL10557006M 2 2009-12-15T00:50:16.949981 {"publishers": ["Macmillan ELT"], "key": "/books/OL10557006M", "title": "Reward Upp Int Wb Adap Mid East", "number_of_pages": 80, "isbn_13": ["9780333774328"], "physical_format": "Paperback", "isbn_10": ["0333774329"], "publish_date": "February 15, 2001", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:50:16.949981"}, "authors": [{"key": "/authors/OL3461625A"}], "latest_revision": 2, "works": [{"key": "/works/OL9430451W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10557204M 7 2022-12-17T03:46:26.706090 {"publishers": ["Macmillan"], "number_of_pages": 512, "title": "The Synaptic Self", "identifiers": {"goodreads": ["1211111"], "librarything": ["177242"]}, "isbn_13": ["9780333781876"], "covers": [2391791, 199992], "physical_format": "Hardcover", "isbn_10": ["0333781872"], "publish_date": "March 8, 2002", "key": "/books/OL10557204M", "authors": [{"key": "/authors/OL2829653A"}], "works": [{"key": "/works/OL8476793W"}], "type": {"key": "/type/edition"}, "subjects": ["Neurosciences", "Popular science"], "source_records": ["bwb:9780333781876"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T03:46:26.706090"}}
+/type/edition /books/OL10557271M 2 2009-12-15T00:50:18.265057 {"publishers": ["Macmillan Education Ltd"], "key": "/books/OL10557271M", "title": "Explore English 5 TB Zambia", "number_of_pages": 92, "isbn_13": ["9780333789148"], "physical_format": "Paperback", "isbn_10": ["0333789148"], "publish_date": "September 29, 2000", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:50:18.265057"}, "authors": [{"key": "/authors/OL3460408A"}], "latest_revision": 2, "works": [{"key": "/works/OL9428841W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10557422M 4 2022-09-17T20:01:41.592691 {"publishers": ["Palgrave Macmillan"], "physical_format": "Hardcover", "subtitle": "Women, Health and Imprisonment", "title": "The Imprisoned Body", "number_of_pages": 256, "isbn_13": ["9780333793695"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0333793692"], "publish_date": "August 19, 2008", "key": "/books/OL10557422M", "authors": [{"key": "/authors/OL3461836A"}], "oclc_numbers": ["50747531"], "works": [{"key": "/works/OL9430867W"}], "type": {"key": "/type/edition"}, "subjects": ["Penology", "Women's Health - General", "Women's Studies - General", "Social Science / Criminology", "Health Services For Women", "Prison Life", "Social Science", "Sociology"], "source_records": ["bwb:9780333793695"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-17T20:01:41.592691"}}
+/type/edition /books/OL10557785M 1 2008-04-30T09:38:13.731961 {"physical_format": "Board book", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Pan Macmillan"], "title": "Zig-zag Pets", "isbn_13": ["9780333902622"], "isbn_10": ["0333902629"], "publish_date": "August 24, 2001", "key": "/books/OL10557785M", "type": {"key": "/type/edition"}, "subjects": ["Picture books"], "revision": 1}
+/type/edition /books/OL10558020M 2 2009-12-09T04:31:39.885045 {"publishers": ["Palgrave Macmillan"], "title": "Alice's Pop-up Wonderland", "isbn_10": ["0333911490"], "isbn_13": ["9780333911495"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2009-12-09T04:31:39.885045"}, "publish_date": "November 2, 2000", "key": "/books/OL10558020M", "authors": [{"key": "/authors/OL67797A"}], "latest_revision": 2, "subjects": ["Pop-up & lift-the-flap books"], "works": [{"key": "/works/OL805317W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10558106M 2 2009-12-15T00:50:18.265057 {"publishers": ["Macmillan Education"], "key": "/books/OL10558106M", "title": "Enjoy Grammar 1 Teachers Notes", "isbn_13": ["9780333915912"], "physical_format": "Paperback", "isbn_10": ["0333915917"], "publish_date": "January 31, 2000", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:50:18.265057"}, "authors": [{"key": "/authors/OL3461866A"}], "latest_revision": 2, "works": [{"key": "/works/OL9430915W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10558127M 3 2011-04-28T03:14:59.278895 {"publishers": ["Macmillan ELT"], "last_modified": {"type": "/type/datetime", "value": "2011-04-28T03:14:59.278895"}, "title": "Superworld 2", "number_of_pages": 4050, "isbn_13": ["9780333916377"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Audio Cassette", "isbn_10": ["0333916379"], "publish_date": "July 5, 2000", "key": "/books/OL10558127M", "authors": [{"key": "/authors/OL1521753A"}], "latest_revision": 3, "oclc_numbers": ["227986180"], "works": [{"key": "/works/OL6045950W"}], "type": {"key": "/type/edition"}, "subjects": ["ELT audio-visual (video & audio cassettes)"], "revision": 3}
+/type/edition /books/OL10558256M 10 2023-01-08T16:52:48.353072 {"publishers": ["Palgrave Macmillan"], "number_of_pages": 224, "weight": "12 ounces", "covers": [2392451], "physical_format": "Paperback", "key": "/books/OL10558256M", "authors": [{"key": "/authors/OL1517332A"}], "ocaid": "helenecixouswrit00bray_373", "subjects": ["Literary studies: from c 1900 -", "Plays & playwrights", "French"], "source_records": ["ia:helenecixouswrit00bray_373", "ia:helenecixouswrit00bray", "amazon:0333922387", "marc:marc_columbia/Columbia-extract-20221130-009.mrc:392965369:1814"], "title": "Helene Cixous (Transitions)", "identifiers": {"librarything": ["5143503"], "goodreads": ["1147283"]}, "isbn_13": ["9780333922385"], "isbn_10": ["0333922387"], "publish_date": "December 9, 2003", "works": [{"key": "/works/OL6035159W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.3 x 5.4 x 0.6 inches", "lccn": ["2003053673"], "lc_classifications": ["PQ2663.I9 Z53 2004"], "oclc_numbers": ["52806061"], "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2023-01-08T16:52:48.353072"}}
+/type/edition /books/OL10558413M 5 2020-11-16T16:09:47.140246 {"publishers": ["Macmillan ELT"], "identifiers": {"goodreads": ["3518893"]}, "isbn_10": ["0333926617"], "physical_format": "Paperback", "lc_classifications": ["QP1 .C74 1990"], "latest_revision": 5, "key": "/books/OL10558413M", "authors": [{"key": "/authors/OL3461997A"}], "languages": [{"key": "/languages/eng"}], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part22.utf8:132968423:952"], "title": "Imagine Eng 4 Sb Eso Catalan", "lccn": ["92909640"], "number_of_pages": 112, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780333926611"], "subjects": ["Congresses", "Physiology"], "publish_date": "April 1, 2003", "last_modified": {"type": "/type/datetime", "value": "2020-11-16T16:09:47.140246"}, "works": [{"key": "/works/OL9431171W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10559346M 2 2009-12-15T00:50:19.451994 {"publishers": ["Macmillan Education Ltd"], "title": "Okello Pri Math 3 Pb Ed 2001 Uganda", "isbn_10": ["0333958608"], "isbn_13": ["9780333958605"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:50:19.451994"}, "publish_date": "June 30, 2001", "key": "/books/OL10559346M", "authors": [{"key": "/authors/OL3462186A"}], "latest_revision": 2, "subjects": ["Mathematics"], "works": [{"key": "/works/OL9431510W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10559505M 3 2010-04-13T06:08:10.251616 {"publishers": ["Palgrave Macmillan"], "physical_format": "Hardcover", "key": "/books/OL10559505M", "title": "Making Sense of the New Europe (The New Europe)", "number_of_pages": 256, "covers": [2392776], "isbn_13": ["9780333963630"], "isbn_10": ["0333963636"], "publish_date": "September 30, 2002", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:08:10.251616"}, "authors": [{"key": "/authors/OL424361A"}], "latest_revision": 3, "works": [{"key": "/works/OL2835578W"}], "type": {"key": "/type/edition"}, "subjects": ["EU & European institutions", "EU (European Union)"], "revision": 3}
+/type/edition /books/OL10559525M 9 2023-01-07T17:32:38.177777 {"publishers": ["Palgrave Macmillan"], "number_of_pages": 272, "subtitle": "An Assessment of Labour's Reform Prgramme", "weight": "12.6 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0333964659"], "title": "Modernising British Local Government", "isbn_13": ["9780333964651"], "covers": [2392794], "physical_format": "Paperback", "key": "/books/OL10559525M", "authors": [{"key": "/authors/OL1190179A"}], "publish_date": "October 30, 2004", "works": [{"key": "/works/OL5263258W"}], "type": {"key": "/type/edition"}, "subjects": ["Local government", "21st century", "Political Science", "Politics/International Relations", "United Kingdom, Great Britain", "Labor & Industrial Relations - General", "Political"], "physical_dimensions": "8.4 x 5.4 x 0.6 inches", "lc_classifications": ["JN101-JN1371", "JS3111 .S74 2003"], "source_records": ["bwb:9780333964651", "ia:modernisingbriti0000stew", "amazon:0333964659", "promise:bwb_daily_pallets_2022-07-11", "marc:marc_columbia/Columbia-extract-20221130-009.mrc:226014223:1894"], "ocaid": "modernisingbriti0000stew", "lccn": ["2003051448"], "oclc_numbers": ["52159952"], "local_id": ["urn:bwbsku:KR-082-273"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2023-01-07T17:32:38.177777"}}
+/type/edition /books/OL10559928M 3 2011-04-30T02:28:53.369515 {"publishers": ["Macmillan ELT"], "last_modified": {"type": "/type/datetime", "value": "2011-04-30T02:28:53.369515"}, "weight": "1.4 pounds", "title": "Extending Reading Keys", "number_of_pages": 208, "isbn_13": ["9780333974629"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["033397462X"], "publish_date": "September 26, 2002", "key": "/books/OL10559928M", "authors": [{"key": "/authors/OL2766789A"}], "latest_revision": 3, "oclc_numbers": ["316638467"], "works": [{"key": "/works/OL8324305W"}], "type": {"key": "/type/edition"}, "subjects": ["ELT: reading skills", "American English"], "physical_dimensions": "10.7 x 8.6 x 0.5 inches", "revision": 3}
+/type/edition /books/OL10560161M 3 2011-04-22T22:11:27.922933 {"publishers": ["Macmillan ELT"], "physical_format": "Audio CD", "weight": "3.5 ounces", "title": "Hello Robby Rabbit 2", "number_of_pages": 2, "last_modified": {"type": "/type/datetime", "value": "2011-04-22T22:11:27.922933"}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780333988688"], "isbn_10": ["033398868X"], "publish_date": "June 30, 2002", "key": "/books/OL10560161M", "authors": [{"key": "/authors/OL2622188A"}, {"key": "/authors/OL3462321A"}, {"key": "/authors/OL2621744A"}], "latest_revision": 3, "oclc_numbers": ["58876408"], "works": [{"key": "/works/OL14947851W"}], "type": {"key": "/type/edition"}, "subjects": ["ELT software & multimedia", "English language readers"], "physical_dimensions": "5.6 x 4.6 x 0.4 inches", "revision": 3}
+/type/edition /books/OL1056023M 5 2020-11-18T02:16:22.098215 {"publishers": ["Pravi\u0304n\u0323a Pustaka Bhan\u0323d\u0323a\u0304ra"], "subtitle": "Gujara\u0304tana\u0304 lokadevo", "description": {"type": "/type/text", "value": "On the folk deities of Gujarat, India with their background folk-tales."}, "subject_place": ["Gujarat (India)", "India", "Gujarat."], "lc_classifications": ["BL1216.4.G85 J33 1992"], "latest_revision": 5, "key": "/books/OL1056023M", "authors": [{"key": "/authors/OL103692A"}], "publish_places": ["Ra\u0304jakot\u0323a"], "languages": [{"key": "/languages/guj"}], "pagination": "12, 408 p. :", "source_records": ["marc:marc_records_scriblio_net/part24.dat:22142997:928", "marc:marc_loc_updates/v37.i39.records.utf8:6010940:945", "marc:marc_loc_updates/v40.i14.records.utf8:2346460:954", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:93244407:954"], "title": "Divya mandira ma\u0304ra\u0304 devana\u0304m\u0323 re", "lccn": ["93900244"], "notes": {"type": "/type/text", "value": "Includes bibliographical references.\nIn Gujarati."}, "number_of_pages": 408, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "edition_name": "1. a\u0304vr\u0325tti.", "subjects": ["Gods, Hindu -- India -- Gujarat", "Folklore -- India -- Gujarat", "Gujarat (India) -- Religious life and customs"], "publish_date": "1992", "publish_country": "ii ", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T02:16:22.098215"}, "by_statement": "Jora\u0304varasim\u0323ha Ja\u0304dava.", "works": [{"key": "/works/OL1047331W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10560491M 2 2009-12-15T00:50:20.671988 {"publishers": ["Macmillan ELT"], "isbn_10": ["0333999797"], "number_of_pages": 112, "isbn_13": ["9780333999790"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:50:20.671988"}, "publish_date": "June 14, 2002", "latest_revision": 2, "key": "/books/OL10560491M", "authors": [{"key": "/authors/OL3401889A"}], "title": "American Shine Teens", "subjects": ["ELT: Learning Material & Coursework"], "works": [{"key": "/works/OL9360422W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10560602M 7 2021-03-12T06:24:05.516136 {"publishers": ["Alban Books"], "number_of_pages": 384, "source_records": ["marc:marc_claremont_school_theology/CSTMARC1_barcode.mrc:138630606:2858", "marc:marc_claremont_school_theology/CSTMARC1_multibarcode.mrc:138825455:2914", "ia:johncommentaryon0002haen_x4m1", "ia:johncommentaryon0001haen"], "title": "Gospel of John Vol 1 (Haenchen)", "type": {"key": "/type/edition"}, "identifiers": {"librarything": ["7027988"]}, "local_id": ["urn:cst:10011333563", "urn:cst:10011438512", "urn:cst:10011452804", "urn:cst:10011461588", "urn:cst:10011461574", "urn:cst:10011440179"], "isbn_13": ["9780334008071"], "isbn_10": ["0334008077"], "publish_date": "January 1984", "key": "/books/OL10560602M", "authors": [{"key": "/authors/OL3462414A"}], "works": [{"key": "/works/OL9431769W"}], "physical_format": "Unknown Binding", "lccn": ["82048756"], "lc_classifications": ["BS2615.2 .H2713 1984"], "covers": [10697692], "ocaid": "johncommentaryon0002haen_x4m1", "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-03-12T06:24:05.516136"}}
+/type/edition /books/OL10560760M 6 2022-12-03T22:01:58.684674 {"publishers": ["Alban Books"], "identifiers": {"librarything": ["370418"]}, "source_records": ["marc:marc_university_of_toronto/uoft.marc:1599232974:1099", "marc:talis_openlibrary_contribution/talis-openlibrary-contribution.mrc:1426079761:694", "amazon:0334024323"], "title": "Christian Spirituality III (World Spirituality Series)", "type": {"key": "/type/edition"}, "number_of_pages": 592, "covers": [5508080, 5066473], "isbn_13": ["9780334024323"], "isbn_10": ["0334024323"], "publish_date": "March 1990", "key": "/books/OL10560760M", "works": [{"key": "/works/OL19246777W"}], "physical_format": "Paperback", "subjects": ["Christianity"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-03T22:01:58.684674"}}
+/type/edition /books/OL1056077M 3 2020-11-18T02:16:57.517290 {"publishers": ["A\u0304jako Sikkima Praka\u0304s\u0301an"], "description": {"type": "/type/text", "value": "Biographies of the Gurkha (South Asian people), who participated in the Indian freedom struggle."}, "subject_place": ["India"], "lc_classifications": ["DS432.G87 R35 1992"], "latest_revision": 3, "key": "/books/OL1056077M", "authors": [{"key": "/authors/OL565703A"}], "publish_places": ["Ga\u0304ntoka"], "subject_time": ["1919-1947."], "pagination": "10, 242 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:93287422:847"], "title": "Vi\u0304ra ja\u0304tiko amara kaha\u0304ni\u0304", "lccn": ["93900298"], "notes": {"type": "/type/text", "value": "In Nepali."}, "number_of_pages": 242, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/nep"}], "subjects": ["Gurkhas -- Biography.", "Nationalists -- India -- Biography.", "India -- Politics and government -- 1919-1947."], "publish_date": "1992", "publish_country": "ii ", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T02:16:57.517290"}, "by_statement": "Ema. Pi\u0304. Ra\u0304i\u0304.", "works": [{"key": "/works/OL3429915W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10560934M 11 2022-12-30T07:37:20.407155 {"publishers": ["SCM Press"], "number_of_pages": 288, "subtitle": "Forty Years On", "weight": "6.4 ounces", "isbn_10": ["0334029392"], "covers": [2393385, 200809], "physical_format": "Paperback", "key": "/books/OL10560934M", "authors": [{"key": "/authors/OL3462505A"}], "subjects": ["Christian theology", "Christian Theology - General", "Religion", "Religion - Theology"], "isbn_13": ["9780334029397"], "source_records": ["marc:marc_university_of_toronto/uoft.marc:4757336232:399", "marc:marc_university_of_toronto/uoft.marc:4797293213:1634", "marc:marc_claremont_school_theology/CSTMARC2_barcode.mrc:42249760:3046", "marc:marc_claremont_school_theology/CSTMARC2_multibarcode.mrc:42265806:3046", "marc:marc_columbia/Columbia-extract-20221130-011.mrc:24198247:1744"], "title": "Honest To God", "identifiers": {"goodreads": ["2497473"], "librarything": ["1973268"]}, "languages": [{"key": "/languages/eng"}], "local_id": ["urn:cst:10017002757"], "publish_date": "April 2004", "works": [{"key": "/works/OL9431902W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.3 x 4.9 x 0.6 inches", "lc_classifications": ["BT102.R62 H66 2004"], "oclc_numbers": ["57403729"], "latest_revision": 11, "revision": 11, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-30T07:37:20.407155"}}
+/type/edition /books/OL10560977M 11 2022-11-11T01:44:30.261524 {"publishers": ["SCM Press"], "identifiers": {"goodreads": ["4110462"]}, "weight": "5.6 ounces", "isbn_10": ["0334030498"], "covers": [5066446], "physical_format": "Unknown Binding", "key": "/books/OL10560977M", "authors": [{"key": "/authors/OL3462527A"}], "ocaid": "womenssacredscri0000unse_no03", "source_records": ["ia:womenssacredscri0000unse_no03", "marc:marc_claremont_school_theology/CSTMARC2_barcode.mrc:2384696:3485", "marc:marc_claremont_school_theology/CSTMARC2_multibarcode.mrc:2386183:3485", "bwb:9780334030492", "marc:marc_scms/20220805_ADAM_MARC_records.mrc:28383994:2535"], "title": "Womens Sacred Scriptures Conc 1998/3", "number_of_pages": 118, "isbn_13": ["9780334030492"], "local_id": ["urn:cst:10011451783", "urn:scms:0188600059268"], "publish_date": "July 1998", "oclc_numbers": ["39485859"], "works": [{"key": "/works/OL9431928W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.4 x 6 x 0.5 inches", "lc_classifications": ["BS521.4 .W65 1998"], "latest_revision": 11, "revision": 11, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-11T01:44:30.261524"}}
+/type/edition /books/OL10561524M 9 2022-12-10T06:53:14.284649 {"publishers": ["Open University"], "number_of_pages": 228, "weight": "1 pounds", "isbn_10": ["0335156045"], "physical_format": "Hardcover", "lc_classifications": ["LC5256.G7 C54 1987"], "key": "/books/OL10561524M", "authors": [{"key": "/authors/OL3462759A"}], "languages": [{"key": "/languages/eng"}], "classifications": {}, "source_records": ["marc:marc_records_scriblio_net/part19.dat:82038437:830", "marc:marc_loc_2016/BooksAll.2016.part17.utf8:211108703:830", "ia:choosingtolearna0000unse", "promise:bwb_daily_pallets_2020-06-24"], "title": "CHOOSING TO LEARN", "lccn": ["87007632"], "notes": {"type": "/type/text", "value": "CL"}, "identifiers": {"goodreads": ["4742178"]}, "isbn_13": ["9780335156047"], "edition_name": "1 edition", "subjects": ["Social history", "Continuing Higher Education", "Adult Education", "Continuing education", "Education, Higher", "Great Britain", "Education"], "publish_date": "August 1, 1987", "works": [{"key": "/works/OL9432294W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10 x 8 x 2 inches", "covers": [11603805], "ocaid": "choosingtolearna0000unse", "local_id": ["urn:bwbsku:KN-753-627"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T06:53:14.284649"}}
+/type/edition /books/OL10561533M 5 2022-12-09T14:42:47.111141 {"publishers": ["Open University Pres"], "number_of_pages": 143, "key": "/books/OL10561533M", "weight": "1 pounds", "title": "Helping Supporting Student (C-156665 (The Society for Research Into Higher Education)", "type": {"key": "/type/edition"}, "identifiers": {"goodreads": ["2721894"]}, "isbn_13": ["9780335156658"], "edition_name": "1 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0335156657"], "authors": [{"key": "/authors/OL3462767A"}], "publish_date": "October 1, 1992", "works": [{"key": "/works/OL9432304W"}], "physical_format": "Paperback", "subjects": ["Higher & further education", "Social welfare & social services", "Higher", "Education / Teaching", "Academic advisors", "Counseling in higher education", "Great Britain", "Education"], "physical_dimensions": "10 x 8 x 2 inches", "local_id": ["urn:bwbsku:ko-333-614"], "source_records": ["promise:bwb_daily_pallets_2020-11-19"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T14:42:47.111141"}}
+/type/edition /books/OL1056155M 3 2020-11-18T02:17:47.784251 {"publishers": ["Sarasvati\u0304 Praka\u0304s\u0301ani\u0304", "S\u0301ri\u0304ra\u0304dha\u0304ka\u0304nta Mat\u0323ha"], "description": {"type": "/type/text", "value": "On the life of Chaitanya, 1486-1534, Vaishnavite religious leader of Bengal, in Puri, India."}, "subject_place": ["India"], "lc_classifications": ["BL1285.392.C53 D3935 1991"], "latest_revision": 3, "key": "/books/OL1056155M", "authors": [{"key": "/authors/OL565733A"}], "publish_places": ["Jha\u0304r\u0323agra\u0304ma, Jela\u0304 Medini\u0304pura", "Puri\u0304"], "pagination": "8, 82 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:93350041:1034"], "title": "S\u0301ri\u0304s\u0301ri\u0304gambhi\u0304ra\u0304 mahima\u0304mr\u0325ta\u0304bdhi", "lccn": ["93900397"], "notes": {"type": "/type/text", "value": "In Bengali; includes passages in Sanskrit (Sanskrit in Bengali script)."}, "number_of_pages": 82, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/ben"}], "subjects": ["Chaitanya, 1486-1534.", "Vaishnavites -- India -- Biography."], "publish_date": "1991", "publish_country": "ii ", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T02:17:47.784251"}, "by_statement": "Hema\u0304n\u0307gaprasa\u0304da Da\u0304sa S\u0301a\u0304stri\u0304 ; Pra\u0304n\u0323akis\u0301ora Gosva\u0304mi\u0304 bhu\u0304mika\u0304 sambalita.", "works": [{"key": "/works/OL3429991W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10561982M 9 2022-12-10T01:18:05.745664 {"publishers": ["Open University Press"], "identifiers": {"goodreads": ["2806200"], "librarything": ["8131785"]}, "weight": "1.8 pounds", "covers": [2394036], "physical_format": "Paperback", "lc_classifications": ["RC440"], "key": "/books/OL10561982M", "authors": [{"key": "/authors/OL3322862A"}, {"key": "/authors/OL253275A"}, {"key": "/authors/OL3462890A"}], "subjects": ["Care of the elderly", "Mental health services", "Health & Fitness", "Medical / Nursing", "Health/Fitness", "Gerontology", "Mental Health", "Nursing - General", "Medical / Geriatrics", "Health Care Issues", "Care", "Community mental health services", "Dementia", "Great Britain", "Patients", "Psychiatric nursing"], "edition_name": "1 edition", "languages": [{"key": "/languages/eng"}], "source_records": ["marc:marc_university_of_toronto/uoft.marc:5545570415:449", "bwb:9780335215812", "promise:bwb_daily_pallets_2020-09-09"], "title": "Partnerships in Community Mental Health Nursing & Dementia Care", "number_of_pages": 312, "isbn_13": ["9780335215812"], "isbn_10": ["0335215815"], "publish_date": "August 1, 2007", "works": [{"key": "/works/OL19581832W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.6 x 7.4 x 0.9 inches", "local_id": ["urn:bwbsku:KN-790-792"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T01:18:05.745664"}}
+/type/edition /books/OL10562256M 7 2022-12-05T10:17:23.173412 {"publishers": ["Open University Press"], "identifiers": {"goodreads": ["7074220"], "librarything": ["9563101"]}, "weight": "1.4 pounds", "covers": [2394301, 201209], "edition_name": "1 edition", "physical_format": "Paperback", "key": "/books/OL10562256M", "authors": [{"key": "/authors/OL2651800A"}, {"key": "/authors/OL2811037A"}], "subjects": ["Social, group or collective psychology", "Social Psychology", "Psychology & Psychiatry / Social Psychology", "Psychology"], "isbn_13": ["9780335221042"], "title": "Critical Readings in Social Psychology", "number_of_pages": 223, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0335221041"], "publish_date": "December 1, 2006", "type": {"key": "/type/edition"}, "physical_dimensions": "9.5 x 7.5 x 0.7 inches", "works": [{"key": "/works/OL26398051W"}], "ocaid": "criticalreadings0000unse_i8o9", "lc_classifications": ["HM251 .C928 2007"], "source_records": ["ia:criticalreadings0000unse_i8o9", "promise:bwb_daily_pallets_2022-04-21"], "local_id": ["urn:bwbsku:KO-597-151"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-05T10:17:23.173412"}}
+/type/edition /books/OL10562542M 2 2010-03-11T21:52:06.546501 {"publishers": ["Stationery Office Books"], "key": "/books/OL10562542M", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 27, "isbn_13": ["9780337053320"], "physical_format": "Paperback", "isbn_10": ["0337053324"], "publish_date": "December 31, 1990", "last_modified": {"type": "/type/datetime", "value": "2010-03-11T21:52:06.546501"}, "authors": [{"key": "/authors/OL46053A"}], "title": "Report on the Sea and Inland Fisheries of Northern Ireland 1989", "latest_revision": 2, "works": [{"key": "/works/OL14895169W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10563131M 3 2011-04-30T11:30:23.469611 {"publishers": ["Stationery Office Books"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-30T11:30:23.469611"}, "title": "Finding and Minding", "number_of_pages": 16, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780337082139"], "isbn_10": ["0337082138"], "publish_date": "December 31, 1987", "key": "/books/OL10563131M", "authors": [{"key": "/authors/OL46053A"}], "latest_revision": 3, "oclc_numbers": ["18454484"], "works": [{"key": "/works/OL14900371W"}], "type": {"key": "/type/edition"}, "subjects": ["European archaeology", "Northern Ireland", "c 1980 to c 1990"], "revision": 3}
+/type/edition /books/OL10563138M 5 2022-07-17T08:03:25.799958 {"publishers": ["Stationery Office Books"], "physical_format": "Paperback", "source_records": ["marc:talis_openlibrary_contribution/talis-openlibrary-contribution.mrc:547337051:906", "bwb:9780337082214"], "title": "An Evaluation of the Enterprise Zone Experiment in Northern Ireland", "number_of_pages": 80, "isbn_13": ["9780337082214"], "isbn_10": ["0337082219"], "publish_date": "December 31, 1989", "key": "/books/OL10563138M", "authors": [{"key": "/authors/OL46053A"}], "oclc_numbers": ["59106867"], "works": [{"key": "/works/OL14879985W"}], "type": {"key": "/type/edition"}, "lc_classifications": ["HD3646.G7"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T08:03:25.799958"}}
+/type/edition /books/OL10563345M 3 2022-07-17T11:53:43.642092 {"publishers": ["Stationery Office Books"], "key": "/books/OL10563345M", "title": "Consumer Protection in Northern Ireland", "number_of_pages": 14, "isbn_13": ["9780337091940"], "physical_format": "Paperback", "isbn_10": ["0337091943"], "publish_date": "December 31, 1983", "authors": [{"key": "/authors/OL3463077A"}], "works": [{"key": "/works/OL9432613W"}], "type": {"key": "/type/edition"}, "lc_classifications": ["HC257.N58"], "source_records": ["bwb:9780337091940"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T11:53:43.642092"}}
+/type/edition /books/OL10563459M 4 2022-07-17T06:37:38.481275 {"publishers": ["Stationery Office Books"], "physical_format": "Paperback", "title": "Standards of Training in Safe Gas Installation (Health & Safety Booklets: HSA 76)", "number_of_pages": 11, "isbn_13": ["9780337094200"], "isbn_10": ["0337094209"], "publish_date": "October 18, 1995", "key": "/books/OL10563459M", "authors": [{"key": "/authors/OL3463099A"}], "oclc_numbers": ["34281514"], "works": [{"key": "/works/OL9432677W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780337094200"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T06:37:38.481275"}}
+/type/edition /books/OL10563814M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Stationery Office Books"], "number_of_pages": 2, "isbn_13": ["9780337108426"], "isbn_10": ["0337108420"], "publish_date": "December 31, 1992", "key": "/books/OL10563814M", "title": "Optical Charges and Payments (Amendment) Regulations (Northern Ireland) 1992 (Statutory Rule: 1992: 242)", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10563832M 2 2022-07-17T06:24:10.445125 {"physical_format": "Paperback", "publishers": ["Stationery Office Books"], "number_of_pages": 8, "isbn_13": ["9780337108723"], "isbn_10": ["0337108722"], "publish_date": "December 31, 1992", "key": "/books/OL10563832M", "title": "Price Indications (Bureaux De Change) Regulations (Northern Ireland) 1992 (Statutory Rule: 1992: 272)", "type": {"key": "/type/edition"}, "works": [{"key": "/works/OL28228549W"}], "source_records": ["bwb:9780337108723"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T06:24:10.445125"}}
+/type/edition /books/OL10564695M 2 2010-03-12T00:15:37.098599 {"publishers": ["Stationery Office Books"], "title": "Belfast Gazette", "isbn_10": ["0337751897"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780337751899"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-03-12T00:15:37.098599"}, "publish_date": "December 31, 1991", "key": "/books/OL10564695M", "authors": [{"key": "/authors/OL46053A"}], "latest_revision": 2, "works": [{"key": "/works/OL14903465W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10565595M 2 2010-03-11T20:36:44.054799 {"publishers": ["Stationery Office Books"], "key": "/books/OL10565595M", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 8, "isbn_13": ["9780337808289"], "physical_format": "Paperback", "isbn_10": ["0337808287"], "publish_date": "December 31, 1980", "last_modified": {"type": "/type/datetime", "value": "2010-03-11T20:36:44.054799"}, "authors": [{"key": "/authors/OL46053A"}], "title": "The Homes Insulation Scheme Order (Northern Ireland), 1980 (Statutory Rules of Northern Ireland: 1980: 328)", "latest_revision": 2, "works": [{"key": "/works/OL14887730W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL105658M 6 2020-12-02T08:54:27.058255 {"number_of_pages": 375, "subtitle": "eine Biographie mit Bildern, Texten und Dokumenten", "subject_place": ["Austria"], "covers": [3709889], "lc_classifications": ["PT2647.A3 Z78 1997"], "subject_time": ["20th century"], "genres": ["Biography."], "source_records": ["amazon:3701309604", "marc:marc_loc_2016/BooksAll.2016.part28.utf8:94635356:880"], "title": "Karl Heinrich Waggerl", "languages": [{"key": "/languages/ger"}], "subjects": ["Waggerl, Karl Heinrich, 1897-1973.", "Authors, Austrian -- 20th century -- Biography.", "Nazis -- Austria -- Biography."], "publish_country": "au ", "by_statement": "Karl Mu\u0308ller.", "type": {"key": "/type/edition"}, "publishers": ["O. Mu\u0308ller"], "key": "/books/OL105658M", "authors": [{"key": "/authors/OL70900A"}], "publish_places": ["Salzburg"], "pagination": "375 p. :", "dewey_decimal_class": ["838/.91209", "B"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 359-370) and index."}, "identifiers": {"goodreads": ["5358796"]}, "lccn": ["99222877"], "isbn_10": ["3701309604"], "publish_date": "1997", "works": [{"key": "/works/OL830837W"}], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-02T08:54:27.058255"}}
+/type/edition /books/OL10566180M 4 2011-04-25T20:15:28.271589 {"publishers": ["Kessinger Publishing, LLC"], "subtitle": "Or Common School Culture", "weight": "1.1 pounds", "covers": [2496855], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-25T20:15:28.271589"}, "latest_revision": 4, "key": "/books/OL10566180M", "authors": [{"key": "/authors/OL2386497A"}], "languages": [{"key": "/languages/eng"}], "title": "The Young Idea", "number_of_pages": 222, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780548213186"], "isbn_10": ["0548213186"], "publish_date": "July 25, 2007", "oclc_numbers": ["179779578"], "works": [{"key": "/works/OL7713267W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.6 inches", "revision": 4}
+/type/edition /books/OL10566472M 4 2011-04-30T05:15:32.083864 {"publishers": ["Kessinger Publishing, LLC"], "subtitle": "Recollections Of F. Leveson Gower", "weight": "1.5 pounds", "covers": [2497147], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-30T05:15:32.083864"}, "latest_revision": 4, "key": "/books/OL10566472M", "authors": [{"key": "/authors/OL3463241A"}], "languages": [{"key": "/languages/eng"}], "title": "Bygone Years", "number_of_pages": 350, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780548216194"], "isbn_10": ["0548216193"], "publish_date": "July 25, 2007", "oclc_numbers": ["179783160"], "works": [{"key": "/works/OL9432867W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.9 inches", "revision": 4}
+/type/edition /books/OL10566674M 4 2011-04-29T14:29:43.789362 {"publishers": ["Kessinger Publishing, LLC"], "subtitle": "Late Of Plymouth, Montgomery County, Pennsylvania", "weight": "1 pounds", "covers": [2497349], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T14:29:43.789362"}, "latest_revision": 4, "key": "/books/OL10566674M", "authors": [{"key": "/authors/OL3463297A"}], "languages": [{"key": "/languages/eng"}], "title": "Memoir Of Jesse And Hannah Williams", "number_of_pages": 202, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780548218310"], "isbn_10": ["0548218315"], "publish_date": "July 25, 2007", "oclc_numbers": ["179779760"], "works": [{"key": "/works/OL9432953W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.6 inches", "revision": 4}
+/type/edition /books/OL10566988M 4 2010-04-24T18:04:53.628328 {"publishers": ["Kessinger Publishing, LLC"], "number_of_pages": 188, "subtitle": "Thoughts For A Convention; A Defense Of The Convention; An American Opinion", "weight": "15.8 ounces", "title": "The Irish Home-Rule Convention", "type": {"key": "/type/edition"}, "identifiers": {"goodreads": ["4004836"]}, "isbn_13": ["9780548221532"], "covers": [2497662], "languages": [{"key": "/languages/eng"}], "authors": [{"key": "/authors/OL2893175A"}, {"key": "/authors/OL2958463A"}], "isbn_10": ["0548221537"], "publish_date": "July 25, 2007", "key": "/books/OL10566988M", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:04:53.628328"}, "latest_revision": 4, "physical_format": "Hardcover", "physical_dimensions": "9 x 6 x 0.6 inches", "revision": 4}
+/type/edition /books/OL10567146M 6 2010-04-24T18:04:53.628328 {"publishers": ["Kessinger Publishing, LLC"], "number_of_pages": 434, "subtitle": "Text, Appendices And Glossary", "weight": "1.8 pounds", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0548223149"], "type": {"key": "/type/edition"}, "identifiers": {"goodreads": ["5096485"]}, "isbn_13": ["9780548223147"], "covers": [2497819], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:04:53.628328"}, "latest_revision": 6, "key": "/books/OL10567146M", "authors": [{"key": "/authors/OL1562454A"}], "publish_date": "July 25, 2007", "title": "Two Of The Saxon Chronicles Parallel V1", "works": [{"key": "/works/OL6122496W"}], "contributions": ["Charles Plummer (Editor)"], "physical_dimensions": "9 x 6 x 1.1 inches", "revision": 6}
+/type/edition /books/OL10567373M 5 2010-04-24T18:04:53.628328 {"number_of_pages": 338, "subtitle": "Early Sketches, Later Settlements And Further Developments", "weight": "1.5 pounds", "covers": [2498045], "latest_revision": 5, "source_records": ["amazon:0548225478"], "title": "Floral Home; Or First Years In Minnesota", "languages": [{"key": "/languages/eng"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.9 inches", "revision": 5, "publishers": ["Kessinger Publishing, LLC"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:04:53.628328"}, "key": "/books/OL10567373M", "authors": [{"key": "/authors/OL2002103A"}], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "identifiers": {"goodreads": ["5421446"]}, "isbn_13": ["9780548225479"], "isbn_10": ["0548225478"], "publish_date": "July 25, 2007", "works": [{"key": "/works/OL146463W"}]}
+/type/edition /books/OL10567467M 3 2010-04-13T06:08:10.251616 {"publishers": ["Kessinger Publishing, LLC"], "subtitle": "Being Letters From Coleridge, Wordsworth And His Sister, Southey And Walter Scott To Sir George And Lady Beaumont", "weight": "1.3 pounds", "covers": [2498139], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:08:10.251616"}, "latest_revision": 3, "key": "/books/OL10567467M", "authors": [{"key": "/authors/OL2636468A"}], "isbn_13": ["9780548226445"], "source_records": ["amazon:054822644X"], "title": "Memorials Of Coleorton V2", "number_of_pages": 298, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["054822644X"], "publish_date": "July 25, 2007", "works": [{"key": "/works/OL282342W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.8 inches", "revision": 3}
+/type/edition /books/OL10567631M 6 2011-04-26T15:37:56.460521 {"publishers": ["Kessinger Publishing, LLC"], "number_of_pages": 246, "weight": "1.2 pounds", "covers": [2498303], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-26T15:37:56.460521"}, "latest_revision": 6, "key": "/books/OL10567631M", "authors": [{"key": "/authors/OL2103906A"}], "isbn_13": ["9780548228111"], "source_records": ["amazon:0548228116"], "title": "The Career Of Dion Boucicault", "identifiers": {"goodreads": ["2804519"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0548228116"], "publish_date": "July 25, 2007", "oclc_numbers": ["463339070"], "works": [{"key": "/works/OL187778W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.7 inches", "revision": 6}
+/type/edition /books/OL10567966M 4 2017-05-16T11:59:31.558391 {"publishers": ["Kessinger Publishing, LLC"], "weight": "1.4 pounds", "covers": [2498638], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2017-05-16T11:59:31.558391"}, "latest_revision": 4, "key": "/books/OL10567966M", "authors": [{"key": "/authors/OL215897A"}], "languages": [{"key": "/languages/eng"}], "source_records": ["amazon:0548231575"], "title": "An Orkney Maid", "number_of_pages": 318, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780548231579"], "isbn_10": ["0548231575"], "publish_date": "July 25, 2007", "works": [{"key": "/works/OL249744W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.9 inches", "revision": 4}
+/type/edition /books/OL10568138M 5 2010-04-24T18:04:53.628328 {"publishers": ["Kessinger Publishing, LLC"], "number_of_pages": 280, "subtitle": "Peden, Semple, Welwood, Cameron, Cargill, Smith", "weight": "1.3 pounds", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0548233306"], "type": {"key": "/type/edition"}, "identifiers": {"goodreads": ["4213797"]}, "isbn_13": ["9780548233306"], "covers": [2498810], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:04:53.628328"}, "latest_revision": 5, "key": "/books/OL10568138M", "authors": [{"key": "/authors/OL187850A"}], "publish_date": "July 25, 2007", "title": "Six Saints Of The Covenant V2", "works": [{"key": "/works/OL1670539W"}], "contributions": ["D. Hay Fleming (Editor)"], "physical_dimensions": "9 x 6 x 0.8 inches", "revision": 5}
+/type/edition /books/OL10568218M 2 2010-04-13T06:09:06.880035 {"physical_format": "Hardcover", "subtitle": "Being An Account Of Their Respective Origin, History, Objects And Constitution", "weight": "1.7 pounds", "publishers": ["Kessinger Publishing, LLC"], "contributions": ["A. I. Evans (Contributor)", "A. Hume (Editor)"], "number_of_pages": 410, "isbn_13": ["9780548234112"], "covers": [2498885], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0548234116"], "publish_date": "July 25, 2007", "key": "/books/OL10568218M", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:09:06.880035"}, "title": "The Learned Societies And Printing Clubs Of The United Kingdom", "latest_revision": 2, "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 1.1 inches", "revision": 2}
+/type/edition /books/OL10568713M 3 2010-04-13T06:09:06.880035 {"publishers": ["Kessinger Publishing, LLC"], "key": "/books/OL10568713M", "weight": "1.8 pounds", "languages": [{"key": "/languages/eng"}], "number_of_pages": 442, "isbn_13": ["9780548239179"], "covers": [2499377], "physical_format": "Hardcover", "isbn_10": ["0548239177"], "publish_date": "July 25, 2007", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:09:06.880035"}, "authors": [{"key": "/authors/OL2843262A"}], "title": "An Essay On English Poetry, With Notices Of The British Poets", "latest_revision": 3, "works": [{"key": "/works/OL8502413W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 1.1 inches", "revision": 3}
+/type/edition /books/OL10568872M 5 2011-04-29T21:02:27.734469 {"publishers": ["Kessinger Publishing, LLC"], "weight": "1 pounds", "covers": [2499535], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T21:02:27.734469"}, "latest_revision": 5, "key": "/books/OL10568872M", "authors": [{"key": "/authors/OL2550140A"}], "isbn_13": ["9780548240809"], "source_records": ["amazon:0548240809"], "title": "George Fox, The Friends And The Early Baptists", "number_of_pages": 208, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0548240809"], "publish_date": "July 25, 2007", "oclc_numbers": ["310769010"], "works": [{"key": "/works/OL244182W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.6 inches", "revision": 5}
+/type/edition /books/OL10569030M 5 2010-04-24T18:04:53.628328 {"publishers": ["Kessinger Publishing, LLC"], "languages": [{"key": "/languages/eng"}], "identifiers": {"goodreads": ["3174919"]}, "subtitle": "Or The Sufferings Of The Heroic Little Beggar-Boy Who Afterwards Became The Great German Reformer", "weight": "1.6 pounds", "title": "The Boyhood Of Martin Luther", "number_of_pages": 392, "isbn_13": ["9780548242407"], "covers": [2499692], "physical_format": "Hardcover", "authors": [{"key": "/authors/OL412435A"}], "isbn_10": ["0548242402"], "latest_revision": 5, "key": "/books/OL10569030M", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:04:53.628328"}, "publish_date": "July 25, 2007", "works": [{"key": "/works/OL2788986W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 1 inches", "revision": 5}
+/type/edition /books/OL10569260M 3 2010-04-13T06:09:06.880035 {"publishers": ["Kessinger Publishing, LLC"], "key": "/books/OL10569260M", "weight": "1.3 pounds", "languages": [{"key": "/languages/eng"}], "number_of_pages": 282, "isbn_13": ["9780548244746"], "covers": [2499922], "physical_format": "Hardcover", "isbn_10": ["054824474X"], "publish_date": "July 25, 2007", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:09:06.880035"}, "authors": [{"key": "/authors/OL953751A"}], "title": "Lincoln, Lee, Grant And Other Biograhical Addresses", "latest_revision": 3, "works": [{"key": "/works/OL4643133W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.8 inches", "revision": 3}
+/type/edition /books/OL10569406M 3 2010-04-13T06:09:06.880035 {"publishers": ["Kessinger Publishing, LLC"], "number_of_pages": 250, "subtitle": "Librorum Patrum Latinorum", "weight": "1.2 pounds", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0548246211"], "title": "Initia", "isbn_13": ["9780548246214"], "covers": [2500067], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:09:06.880035"}, "latest_revision": 3, "key": "/books/OL10569406M", "authors": [{"key": "/authors/OL3464067A"}], "publish_date": "July 25, 2007", "works": [{"key": "/works/OL9434084W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.7 inches", "revision": 3}
+/type/edition /books/OL10569500M 3 2010-04-13T06:09:06.880035 {"publishers": ["Kessinger Publishing, LLC"], "key": "/books/OL10569500M", "weight": "1.3 pounds", "languages": [{"key": "/languages/eng"}], "number_of_pages": 288, "isbn_13": ["9780548247181"], "covers": [2500161], "physical_format": "Hardcover", "isbn_10": ["0548247188"], "publish_date": "July 25, 2007", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:09:06.880035"}, "authors": [{"key": "/authors/OL3464097A"}], "title": "Collections Of The Massachusetts Historical Society,For The Year 1800", "latest_revision": 3, "works": [{"key": "/works/OL9434128W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.8 inches", "revision": 3}
+/type/edition /books/OL10569527M 6 2022-12-19T21:47:11.072075 {"publishers": ["Kessinger Publishing, LLC"], "languages": [{"key": "/languages/eng"}], "identifiers": {"goodreads": ["4126415"]}, "subtitle": "A Tale V1", "weight": "1.1 pounds", "title": "The Hall Of Hellingsley", "number_of_pages": 216, "isbn_13": ["9780548247457"], "covers": [2500188], "physical_format": "Hardcover", "authors": [{"key": "/authors/OL2409098A"}], "isbn_10": ["0548247455"], "key": "/books/OL10569527M", "publish_date": "July 25, 2007", "works": [{"key": "/works/OL9434137W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.6 inches", "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-19T21:47:11.072075"}}
+/type/edition /books/OL10569705M 5 2011-04-29T23:51:48.861487 {"publishers": ["Kessinger Publishing, LLC"], "identifiers": {"goodreads": ["1905134"]}, "subtitle": "Or Western North Carolina", "weight": "1.6 pounds", "covers": [2500365], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T23:51:48.861487"}, "latest_revision": 5, "key": "/books/OL10569705M", "authors": [{"key": "/authors/OL1114471A"}, {"key": "/authors/OL3464165A"}], "subjects": ["United States - State & Local - South", "History", "History: American"], "isbn_13": ["9780548249277"], "title": "The Heart Of The Alleghanies", "number_of_pages": 376, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["054824927X"], "publish_date": "July 25, 2007", "oclc_numbers": ["324998481"], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 1 inches", "revision": 5}
+/type/edition /books/OL10569956M 4 2010-08-03T18:34:20.145336 {"publishers": ["Kessinger Publishing, LLC"], "subtitle": "Or A General Survey Of The Present Situation Of The Principal Powers, With Conjectures On Their Future Prospects", "weight": "1.9 pounds", "covers": [2500616], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-08-03T18:34:20.145336"}, "latest_revision": 4, "key": "/books/OL10569956M", "authors": [{"key": "/authors/OL267288A"}], "subjects": ["Political Process - General", "Europe - General", "History", "Politics / Current Events", "History: World"], "languages": [{"key": "/languages/eng"}], "title": "Europe", "number_of_pages": 472, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780548251836"], "isbn_10": ["0548251835"], "publish_date": "July 25, 2007", "works": [{"key": "/works/OL2137399W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 1.2 inches", "revision": 4}
+/type/edition /books/OL10569973M 3 2010-04-13T06:09:06.880035 {"publishers": ["Kessinger Publishing, LLC"], "subtitle": "A Novel", "weight": "1.5 pounds", "covers": [2500633], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:09:06.880035"}, "latest_revision": 3, "key": "/books/OL10569973M", "authors": [{"key": "/authors/OL2507087A"}], "isbn_13": ["9780548252000"], "source_records": ["amazon:0548252009"], "title": "Cut Adrift V1", "number_of_pages": 340, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0548252009"], "publish_date": "July 25, 2007", "works": [{"key": "/works/OL232106W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.9 inches", "revision": 3}
+/type/edition /books/OL10570232M 3 2010-04-13T06:09:06.880035 {"publishers": ["Kessinger Publishing, LLC"], "key": "/books/OL10570232M", "weight": "2.2 pounds", "languages": [{"key": "/languages/eng"}], "number_of_pages": 556, "isbn_13": ["9780548254653"], "covers": [2500892], "physical_format": "Hardcover", "isbn_10": ["0548254656"], "publish_date": "July 25, 2007", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:09:06.880035"}, "authors": [{"key": "/authors/OL3464314A"}], "title": "Watch Yourself Go By", "latest_revision": 3, "works": [{"key": "/works/OL9434387W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 1.4 inches", "revision": 3}
+/type/edition /books/OL10570412M 5 2010-04-24T18:04:53.628328 {"publishers": ["Kessinger Publishing, LLC"], "number_of_pages": 428, "subtitle": "Surnamed Aslan Or The Lion", "weight": "1.8 pounds", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0548256454"], "identifiers": {"goodreads": ["5810707"]}, "isbn_13": ["9780548256459"], "covers": [2501072], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:04:53.628328"}, "latest_revision": 5, "key": "/books/OL10570412M", "authors": [{"key": "/authors/OL3464369A"}], "publish_date": "July 25, 2007", "title": "The Life Of Ali Pasha Of Tepelini, Vizier Of Epirus", "works": [{"key": "/works/OL9434460W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Biography & Autobiography", "Biography/Autobiography"], "physical_dimensions": "9 x 6 x 1.1 inches", "revision": 5}
+/type/edition /books/OL10570579M 3 2010-04-13T06:09:06.880035 {"publishers": ["Kessinger Publishing, LLC"], "number_of_pages": 268, "subtitle": "Or Jack Hazard And His Treasure", "weight": "1.2 pounds", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0548258147"], "title": "A Chance For Himself", "isbn_13": ["9780548258149"], "covers": [2501239], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:09:06.880035"}, "latest_revision": 3, "key": "/books/OL10570579M", "authors": [{"key": "/authors/OL3464427A"}], "publish_date": "July 25, 2007", "works": [{"key": "/works/OL10420465W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.8 inches", "revision": 3}
+/type/edition /books/OL10570775M 6 2011-05-23T02:27:32.113778 {"publishers": ["Kessinger Publishing, LLC"], "number_of_pages": 110, "subtitle": "With Notes And Introduction", "weight": "11.8 ounces", "covers": [2501435], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-05-23T02:27:32.113778"}, "latest_revision": 6, "key": "/books/OL10570775M", "authors": [{"key": "/authors/OL5990427A"}], "languages": [{"key": "/languages/eng"}], "title": "The General Epistle Of St. James", "identifiers": {"goodreads": ["4138890"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780548260111"], "isbn_10": ["0548260117"], "publish_date": "July 25, 2007", "works": [{"key": "/works/OL9434656W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.4 inches", "revision": 6}
+/type/edition /books/OL10570842M 4 2012-05-26T21:23:24.288526 {"publishers": ["Kessinger Publishing, LLC"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2012-05-26T21:23:24.288526"}, "weight": "14.9 ounces", "title": "Journals Of The Conventions Of The People Of South Carolina, Held In 1832, 1833 And 1852", "number_of_pages": 170, "isbn_13": ["9780548260784"], "covers": [2501502], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Hardcover", "isbn_10": ["0548260788"], "publish_date": "July 25, 2007", "key": "/books/OL10570842M", "authors": [{"key": "/authors/OL1386424A"}], "latest_revision": 4, "works": [{"key": "/works/OL9434693W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.6 inches", "revision": 4}
+/type/edition /books/OL10570943M 5 2010-04-24T18:04:53.628328 {"publishers": ["Kessinger Publishing, LLC"], "languages": [{"key": "/languages/eng"}], "identifiers": {"goodreads": ["2454210"]}, "weight": "1.1 pounds", "title": "The Farmers Harvest Companion And Country Gentleman's Assistant", "type": {"key": "/type/edition"}, "number_of_pages": 226, "isbn_13": ["9780548261798"], "covers": [2501603], "physical_format": "Hardcover", "authors": [{"key": "/authors/OL3464531A"}], "isbn_10": ["0548261792"], "latest_revision": 5, "key": "/books/OL10570943M", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:04:53.628328"}, "publish_date": "July 25, 2007", "works": [{"key": "/works/OL9434743W"}], "contributions": ["William Burness (Editor)"], "physical_dimensions": "9 x 6 x 0.7 inches", "revision": 5}
+/type/edition /books/OL10571331M 6 2017-05-15T06:26:20.535720 {"publishers": ["Kessinger Publishing, LLC"], "number_of_pages": 444, "weight": "1.8 pounds", "covers": [2501991], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2017-05-15T06:26:20.535720"}, "latest_revision": 6, "key": "/books/OL10571331M", "authors": [{"key": "/authors/OL359425A"}], "isbn_13": ["9780548265727"], "source_records": ["amazon:0548265720"], "title": "A Practical Treatise On Foreign Bodies In The Air-Passages", "identifiers": {"goodreads": ["6749397"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0548265720"], "publish_date": "July 25, 2007", "works": [{"key": "/works/OL247963W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 1.1 inches", "revision": 6}
+/type/edition /books/OL1057196M 3 2020-11-18T02:29:25.875926 {"publishers": ["Svanta Pracuran\u0323a", "So\u0304l d\u0323ist\u0323ribyu\u0304t\u0323ars, Navo\u0304daya Bukhaus"], "subtitle": "Hecca\u0304rke kavitvam\u0323, 1987-92.", "lc_classifications": ["PL4780.9.H43 A64 1993"], "latest_revision": 3, "key": "/books/OL1057196M", "authors": [{"key": "/authors/OL566182A"}], "publish_places": ["[Hyderabad, India]"], "pagination": "50 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:94249572:593"], "title": "Abaddham\u0323", "lccn": ["93901576"], "notes": {"type": "/type/text", "value": "Poems.\nIn Telugu."}, "number_of_pages": 50, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/tel"}], "last_modified": {"type": "/type/datetime", "value": "2020-11-18T02:29:25.875926"}, "publish_date": "1993", "publish_country": "ii ", "works": [{"key": "/works/OL3431057W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10571990M 4 2010-09-01T19:58:25.639703 {"publishers": ["Kessinger Publishing, LLC"], "weight": "1 pounds", "covers": [2502650], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-09-01T19:58:25.639703"}, "latest_revision": 4, "key": "/books/OL10571990M", "authors": [{"key": "/authors/OL120625A"}], "subjects": ["General", "Fiction"], "isbn_13": ["9780548272404"], "source_records": ["amazon:0548272409"], "title": "St. Paul The Hero", "number_of_pages": 194, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0548272409"], "publish_date": "July 25, 2007", "works": [{"key": "/works/OL250528W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.6 inches", "revision": 4}
+/type/edition /books/OL1057213M 10 2022-01-31T16:50:14.073052 {"publishers": ["Orient Longman"], "number_of_pages": 116, "subtitle": "a critique of the Hindu right", "description": {"type": "/type/text", "value": "About the Rashtriya Swayam Sevak Sangh, the Vishva Hindu Parishad, and the Hindutva; based on interviews conducted by the authors at various places."}, "isbn_10": ["0863113834"], "series": ["Tracts for the times ;", "1", "Tracts for the times (New Delhi, India) ;", "1."], "covers": [12598183], "lc_classifications": ["DS480.45 .K43 1993"], "key": "/books/OL1057213M", "ocaid": "khakishortssaffr0000unse", "publish_places": ["New Delhi"], "contributions": ["Basu, Tapan."], "subject_time": ["20th century."], "pagination": "xi, 116 p. ;", "source_records": ["marc:marc_records_scriblio_net/part24.dat:23135951:1091", "amazon:0863113834", "ia:khakishortssaffr0000unse", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:94261988:1091"], "title": "Khaki shorts and saffron flags", "lccn": ["93901593"], "notes": {"type": "/type/text", "value": "Includes bibliographical references."}, "identifiers": {"goodreads": ["1490272"], "librarything": ["1268413"]}, "languages": [{"key": "/languages/eng"}], "subjects": ["Rashtriya Swayam Sevak Sangh -- History.", "Vishva Hindu Parishad -- History.", "Hinduism and politics -- India.", "India -- Politics and government -- 20th century."], "publish_date": "1993", "publish_country": "ii ", "subject_place": ["India", "India."], "by_statement": "Tapan Basu ... [et al.].", "works": [{"key": "/works/OL19514345W"}], "type": {"key": "/type/edition"}, "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-31T16:50:14.073052"}}
+/type/edition /books/OL10572187M 3 2010-04-13T06:09:06.880035 {"publishers": ["Kessinger Publishing, LLC"], "subtitle": "Being An Introduction To The Study Of American Nomenclature", "weight": "12.6 ounces", "covers": [2502847], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:09:06.880035"}, "latest_revision": 3, "key": "/books/OL10572187M", "authors": [{"key": "/authors/OL2499125A"}], "isbn_13": ["9780548274392"], "source_records": ["amazon:0548274398"], "title": "A Grammar Of American Surnames", "number_of_pages": 128, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0548274398"], "publish_date": "July 25, 2007", "works": [{"key": "/works/OL228077W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.4 inches", "revision": 3}
+/type/edition /books/OL10572598M 3 2010-04-13T06:09:06.880035 {"publishers": ["Kessinger Publishing, LLC"], "weight": "1.7 pounds", "covers": [2503256], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:09:06.880035"}, "latest_revision": 3, "key": "/books/OL10572598M", "authors": [{"key": "/authors/OL2609700A"}], "isbn_13": ["9780548278543"], "source_records": ["amazon:0548278547"], "title": "Holland's Influence On English Language And Literature", "number_of_pages": 420, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0548278547"], "publish_date": "July 25, 2007", "works": [{"key": "/works/OL255290W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 1.1 inches", "revision": 3}
+/type/edition /books/OL10572701M 5 2010-04-24T18:04:53.628328 {"number_of_pages": 238, "weight": "1 pounds", "covers": [2503359], "latest_revision": 5, "source_records": ["amazon:0548279608"], "title": "Carthage Of The Phoenicians In The Light Of Modern Excavation", "languages": [{"key": "/languages/eng"}], "subjects": ["General", "Technology", "Science/Mathematics"], "type": {"key": "/type/edition"}, "physical_dimensions": "9.1 x 6.3 x 0.9 inches", "revision": 5, "publishers": ["Kessinger Publishing, LLC"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:04:53.628328"}, "key": "/books/OL10572701M", "authors": [{"key": "/authors/OL2514237A"}], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "identifiers": {"goodreads": ["2572515"]}, "isbn_13": ["9780548279601"], "isbn_10": ["0548279608"], "publish_date": "July 25, 2007", "works": [{"key": "/works/OL234809W"}]}
+/type/edition /books/OL10572861M 4 2011-04-29T07:54:18.305013 {"publishers": ["Kessinger Publishing, LLC"], "weight": "1.1 pounds", "covers": [2503518], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T07:54:18.305013"}, "latest_revision": 4, "key": "/books/OL10572861M", "authors": [{"key": "/authors/OL3465148A"}], "languages": [{"key": "/languages/eng"}], "title": "A Physicians Tale V3", "number_of_pages": 336, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780548283165"], "isbn_10": ["0548283168"], "publish_date": "June 25, 2007", "oclc_numbers": ["166369299"], "works": [{"key": "/works/OL9435650W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.8 inches", "revision": 4}
+/type/edition /books/OL10572956M 4 2011-04-25T14:52:05.076562 {"publishers": ["Kessinger Publishing, LLC"], "subtitle": "Detached Sentences And Continuous Prose", "weight": "8.8 ounces", "covers": [2503613], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-25T14:52:05.076562"}, "latest_revision": 4, "key": "/books/OL10572956M", "authors": [{"key": "/authors/OL3465182A"}], "languages": [{"key": "/languages/eng"}], "title": "Easy Latin Prose Exercises", "number_of_pages": 164, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780548284186"], "isbn_10": ["0548284180"], "publish_date": "June 25, 2007", "oclc_numbers": ["166366398"], "works": [{"key": "/works/OL9435702W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.4 inches", "revision": 4}
+/type/edition /books/OL10573162M 5 2011-06-08T11:34:07.945873 {"publishers": ["Kessinger Publishing, LLC"], "weight": "6.4 ounces", "covers": [2503816], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-06-08T11:34:07.945873"}, "latest_revision": 5, "key": "/books/OL10573162M", "authors": [{"key": "/authors/OL2410402A"}], "isbn_13": ["9780548286371"], "source_records": ["amazon:054828637X"], "title": "The Law Of Storms Considered Practically", "number_of_pages": 116, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["054828637X"], "publish_date": "June 25, 2007", "oclc_numbers": ["166366158"], "works": [{"key": "/works/OL205629W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.3 inches", "revision": 5}
+/type/edition /books/OL10573350M 5 2011-04-29T13:03:54.145247 {"publishers": ["Kessinger Publishing, LLC"], "weight": "8.3 ounces", "covers": [2503997], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T13:03:54.145247"}, "latest_revision": 5, "key": "/books/OL10573350M", "authors": [{"key": "/authors/OL428304A"}], "subjects": ["General", "Biography & Autobiography", "Biography/Autobiography"], "languages": [{"key": "/languages/eng"}], "title": "Select Remains Of Rev. John Mason", "number_of_pages": 156, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780548288375"], "isbn_10": ["0548288372"], "publish_date": "June 25, 2007", "oclc_numbers": ["166366261"], "works": [{"key": "/works/OL2849354W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.4 inches", "revision": 5}
+/type/edition /books/OL10574554M 9 2022-10-31T12:55:01.474906 {"publishers": ["Kessinger Publishing, LLC"], "identifiers": {"goodreads": ["1878553"]}, "subtitle": "A Novel", "weight": "1.4 pounds", "covers": [2505173], "physical_format": "Paperback", "key": "/books/OL10574554M", "authors": [{"key": "/authors/OL5580111A"}], "subjects": ["General", "Fiction"], "isbn_13": ["9780548301210"], "title": "The Cherry Ribband", "number_of_pages": 424, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0548301212"], "publish_date": "June 25, 2007", "oclc_numbers": ["166376137"], "works": [{"key": "/works/OL2339045W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.9 inches", "source_records": ["amazon:0548301212"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-31T12:55:01.474906"}}
+/type/edition /books/OL10574805M 5 2011-04-30T03:49:16.363805 {"publishers": ["Kessinger Publishing, LLC"], "weight": "1.4 pounds", "covers": [2505414], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-30T03:49:16.363805"}, "latest_revision": 5, "key": "/books/OL10574805M", "authors": [{"key": "/authors/OL215627A"}], "contributions": ["Albert Shaw (Introduction)"], "subjects": ["United States - General", "History", "History: American"], "isbn_13": ["9780548303931"], "title": "President Wilson's State Papers And Addresses", "number_of_pages": 512, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0548303932"], "publish_date": "June 25, 2007", "oclc_numbers": ["166375589"], "works": [{"key": "/works/OL1793579W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 0.9 x 0.4 inches", "revision": 5}
+/type/edition /books/OL10575226M 7 2011-04-26T19:03:06.032004 {"publishers": ["Kessinger Publishing, LLC"], "identifiers": {"goodreads": ["5477420"]}, "subtitle": "And Other Poems", "weight": "6.4 ounces", "covers": [2505800], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-26T19:03:06.032004"}, "latest_revision": 7, "key": "/books/OL10575226M", "authors": [{"key": "/authors/OL2068231A"}], "subjects": ["General", "Poetry"], "isbn_13": ["9780548308462"], "title": "Asphalt", "number_of_pages": 116, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0548308462"], "publish_date": "June 25, 2007", "oclc_numbers": ["166366104"], "works": [{"key": "/works/OL7202381W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.3 inches", "revision": 7}
+/type/edition /books/OL10575265M 6 2011-04-28T21:46:47.480494 {"publishers": ["Kessinger Publishing, LLC"], "number_of_pages": 584, "weight": "1.6 pounds", "covers": [2505838], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-28T21:46:47.480494"}, "latest_revision": 6, "key": "/books/OL10575265M", "authors": [{"key": "/authors/OL3080147A"}], "contributions": ["Everett Shinn (Illustrator)"], "subjects": ["General", "Fiction"], "isbn_13": ["9780548308899"], "title": "The Salamander", "identifiers": {"goodreads": ["2429589"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0548308896"], "publish_date": "June 25, 2007", "oclc_numbers": ["173359313"], "works": [{"key": "/works/OL8921358W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.8 x 6.2 x 1.4 inches", "revision": 6}
+/type/edition /books/OL10575548M 4 2011-04-30T11:57:03.092822 {"publishers": ["Kessinger Publishing, LLC"], "weight": "12.3 ounces", "covers": [2506111], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-30T11:57:03.092822"}, "latest_revision": 4, "key": "/books/OL10575548M", "authors": [{"key": "/authors/OL367080A"}], "subjects": ["Short Stories (single author)", "Fiction"], "isbn_13": ["9780548312025"], "title": "Holiday Chaplet Of Stories", "number_of_pages": 236, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0548312028"], "publish_date": "June 25, 2007", "oclc_numbers": ["166381475"], "works": [{"key": "/works/OL2571506W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.5 inches", "revision": 4}
+/type/edition /books/OL10576175M 6 2011-04-28T16:45:26.743243 {"publishers": ["Kessinger Publishing, LLC"], "identifiers": {"goodreads": ["7067146"]}, "subtitle": "Third Series Commencing With The Accession Of William IV", "weight": "2.7 pounds", "covers": [2506714], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-28T16:45:26.743243"}, "latest_revision": 6, "key": "/books/OL10576175M", "authors": [{"key": "/authors/OL2114133A"}], "subjects": ["General", "Political Science", "Politics/International Relations"], "isbn_13": ["9780548318799"], "title": "Hansard's Parliamentary Debates", "number_of_pages": 736, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0548318794"], "publish_date": "June 25, 2007", "oclc_numbers": ["166375607"], "works": [{"key": "/works/OL7258895W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.2 x 7.5 x 1.5 inches", "revision": 6}
+/type/edition /books/OL10576384M 6 2011-04-27T17:12:26.852069 {"publishers": ["Kessinger Publishing, LLC"], "number_of_pages": 96, "subtitle": "Or The Story Of A Noble Life", "weight": "5.3 ounces", "covers": [2506906], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T17:12:26.852069"}, "latest_revision": 6, "key": "/books/OL10576384M", "authors": [{"key": "/authors/OL2507594A"}], "isbn_13": ["9780548321034"], "source_records": ["amazon:0548321035"], "title": "Katy Awa, The Bismarck Of Japan", "identifiers": {"goodreads": ["4774835"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0548321035"], "publish_date": "June 25, 2007", "oclc_numbers": ["166871637"], "works": [{"key": "/works/OL232262W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.2 inches", "revision": 6}
+/type/edition /books/OL10576866M 4 2011-04-28T10:55:05.595575 {"publishers": ["Kessinger Publishing, LLC"], "subtitle": "In Which The Duties And Character Of Women Are Considered, Chiefly With A Reference To Prevailing Opinions", "weight": "1.5 pounds", "covers": [2507348], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-28T10:55:05.595575"}, "latest_revision": 4, "key": "/books/OL10576866M", "authors": [{"key": "/authors/OL560727A"}], "subjects": ["General", "Social Science", "Sociology"], "languages": [{"key": "/languages/eng"}], "title": "Letters To A Young Lady V1", "number_of_pages": 480, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780548326152"], "isbn_10": ["0548326150"], "publish_date": "June 25, 2007", "oclc_numbers": ["166376051"], "works": [{"key": "/works/OL3413545W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 1.1 inches", "revision": 4}
+/type/edition /books/OL10577195M 5 2011-04-29T22:56:30.993654 {"publishers": ["Kessinger Publishing, LLC"], "subtitle": "A Play Of New England", "weight": "1.1 pounds", "covers": [2507674], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T22:56:30.993654"}, "latest_revision": 5, "key": "/books/OL10577195M", "authors": [{"key": "/authors/OL1099802A"}], "subjects": ["General", "Drama", "Plays"], "languages": [{"key": "/languages/eng"}], "title": "Children Of Earth", "number_of_pages": 228, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780548329931"], "isbn_10": ["0548329931"], "publish_date": "June 25, 2007", "oclc_numbers": ["166371187"], "works": [{"key": "/works/OL5043498W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.7 inches", "revision": 5}
+/type/edition /books/OL10577395M 4 2010-08-12T21:18:21.446620 {"publishers": ["Kessinger Publishing, LLC"], "subtitle": "And Other Tales", "weight": "1.6 pounds", "covers": [2507875], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-08-12T21:18:21.446620"}, "latest_revision": 4, "key": "/books/OL10577395M", "authors": [{"key": "/authors/OL115231A"}], "languages": [{"key": "/languages/eng"}], "title": "A Treasure Of The Redwoods", "number_of_pages": 368, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780548332290"], "isbn_10": ["0548332290"], "publish_date": "June 25, 2007", "works": [{"key": "/works/OL1127918W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.9 inches", "revision": 4}
+/type/edition /books/OL10578138M 5 2010-04-24T18:04:53.628328 {"publishers": ["Kessinger Publishing, LLC"], "languages": [{"key": "/languages/eng"}], "identifiers": {"goodreads": ["7325863"]}, "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:04:53.628328"}, "weight": "1.4 pounds", "title": "Legends Of The Blessed Virgin", "number_of_pages": 324, "isbn_13": ["9780548343524"], "covers": [2508618], "physical_format": "Hardcover", "isbn_10": ["0548343527"], "publish_date": "June 25, 2007", "key": "/books/OL10578138M", "authors": [{"key": "/authors/OL3465222A"}], "latest_revision": 5, "works": [{"key": "/works/OL9435768W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.9 inches", "revision": 5}
+/type/edition /books/OL10578645M 6 2011-04-28T09:34:41.655460 {"publishers": ["Kessinger Publishing, LLC"], "identifiers": {"goodreads": ["4980255"]}, "weight": "1.6 pounds", "covers": [2509125], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-28T09:34:41.655460"}, "latest_revision": 6, "key": "/books/OL10578645M", "authors": [{"key": "/authors/OL2540924A"}], "subjects": ["General", "Biography & Autobiography", "Biography/Autobiography"], "isbn_13": ["9780548349120"], "source_records": ["amazon:0548349126"], "title": "The Life Of Roger Sherman", "number_of_pages": 364, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0548349126"], "publish_date": "June 25, 2007", "oclc_numbers": ["276998072"], "works": [{"key": "/works/OL242225W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.9 inches", "revision": 6}
+/type/edition /books/OL10578775M 4 2022-06-22T14:53:55.160183 {"publishers": ["Kessinger Publishing, LLC"], "number_of_pages": 288, "subtitle": "And Other Stories", "weight": "1.3 pounds", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0548350493"], "title": "Perchance To Dream", "isbn_13": ["9780548350492"], "covers": [2509255], "physical_format": "Hardcover", "key": "/books/OL10578775M", "authors": [{"key": "/authors/OL317044A"}], "publish_date": "June 25, 2007", "works": [{"key": "/works/OL2342239W"}], "type": {"key": "/type/edition"}, "subjects": ["Short Stories (single author)", "Fiction"], "physical_dimensions": "9 x 6 x 0.8 inches", "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-22T14:53:55.160183"}}
+/type/edition /books/OL10579183M 4 2010-09-21T12:39:11.762572 {"publishers": ["Kessinger Publishing, LLC"], "weight": "1.7 pounds", "covers": [2509662], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-09-21T12:39:11.762572"}, "latest_revision": 4, "key": "/books/OL10579183M", "authors": [{"key": "/authors/OL114557A"}], "subjects": ["Jewish - General", "History", "History: World"], "languages": [{"key": "/languages/eng"}], "title": "The History Of The Jews From The Christian Era To The Dawn Of The Reformation", "number_of_pages": 412, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780548354919"], "isbn_10": ["054835491X"], "publish_date": "June 25, 2007", "works": [{"key": "/works/OL1115523W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 1.1 inches", "revision": 4}
+/type/edition /books/OL10579403M 3 2010-04-13T06:10:12.112073 {"publishers": ["Kessinger Publishing, LLC"], "number_of_pages": 256, "weight": "1.2 pounds", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0548357242"], "title": "The Meaning Of The War For Religious Education", "isbn_13": ["9780548357248"], "covers": [2509881], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:10:12.112073"}, "latest_revision": 3, "key": "/books/OL10579403M", "authors": [{"key": "/authors/OL2388319A"}], "publish_date": "June 25, 2007", "works": [{"key": "/works/OL7717830W"}], "type": {"key": "/type/edition"}, "subjects": ["Education", "Religion"], "physical_dimensions": "9 x 6 x 0.8 inches", "revision": 3}
+/type/edition /books/OL10579721M 3 2010-04-13T06:10:12.112073 {"publishers": ["Kessinger Publishing, LLC"], "weight": "2.5 pounds", "covers": [2510199], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:10:12.112073"}, "latest_revision": 3, "key": "/books/OL10579721M", "authors": [{"key": "/authors/OL2432494A"}], "subjects": ["Religious", "Biography & Autobiography", "Biography/Autobiography"], "isbn_13": ["9780548360828"], "source_records": ["amazon:0548360820"], "title": "The Life And Times Of Archbishop Sharp, Of St. Andrews", "number_of_pages": 668, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0548360820"], "publish_date": "June 25, 2007", "works": [{"key": "/works/OL214895W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 1.6 inches", "revision": 3}
+/type/edition /books/OL10579968M 4 2010-04-13T06:10:12.112073 {"publishers": ["Kessinger Publishing, LLC"], "weight": "1.4 pounds", "covers": [2510446], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:10:12.112073"}, "latest_revision": 4, "key": "/books/OL10579968M", "authors": [{"key": "/authors/OL1219006A"}], "isbn_13": ["9780548363683"], "source_records": ["amazon:0548363684"], "title": "Russell On Scientific Horse Shoeing, For Leveling And Balancing The Action And Gait Of Horses And Remedying And Curing The Different Diseases Of The Foot", "number_of_pages": 304, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0548363684"], "publish_date": "June 25, 2007", "works": [{"key": "/works/OL113855W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.8 inches", "revision": 4}
+/type/edition /books/OL10580680M 5 2022-01-05T03:05:54.088449 {"publishers": ["Kessinger Publishing, LLC"], "subtitle": "Being Chiefly Letters Addressed To Christopher, First Viscount Hatton, A.D. 1601-1704", "weight": "1.3 pounds", "covers": [2511158], "physical_format": "Hardcover", "key": "/books/OL10580680M", "authors": [{"key": "/authors/OL113015A"}], "subjects": ["General", "Biography & Autobiography", "Biography/Autobiography"], "languages": [{"key": "/languages/eng"}], "title": "Correspondence Of The Family Of Hatton V2", "number_of_pages": 280, "isbn_13": ["9780548371381"], "isbn_10": ["0548371385"], "publish_date": "June 25, 2007", "oclc_numbers": ["166385874"], "works": [{"key": "/works/OL8016838W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.8 inches", "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-05T03:05:54.088449"}}
+/type/edition /books/OL10580774M 6 2022-12-04T01:13:59.775574 {"publishers": ["Kessinger Publishing, LLC"], "languages": [{"key": "/languages/eng"}], "identifiers": {"goodreads": ["5358206"]}, "weight": "1.4 pounds", "title": "A Manual Of Clinical Diagnosis", "number_of_pages": 316, "isbn_13": ["9780548372371"], "covers": [2511252], "physical_format": "Hardcover", "isbn_10": ["0548372373"], "publish_date": "June 25, 2007", "key": "/books/OL10580774M", "authors": [{"key": "/authors/OL1810143A"}], "works": [{"key": "/works/OL6694057W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.9 inches", "source_records": ["amazon:0548372373"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T01:13:59.775574"}}
+/type/edition /books/OL10580884M 3 2010-04-13T06:10:12.112073 {"publishers": ["Kessinger Publishing, LLC"], "number_of_pages": 340, "weight": "1.5 pounds", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0548373612"], "type": {"key": "/type/edition"}, "title": "The Recording Angel", "isbn_13": ["9780548373613"], "covers": [2511362], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:10:12.112073"}, "latest_revision": 3, "key": "/books/OL10580884M", "authors": [{"key": "/authors/OL401261A"}], "publish_date": "June 25, 2007", "works": [{"key": "/works/OL2737493W"}], "contributions": ["W. H. Everett (Illustrator)"], "physical_dimensions": "9 x 6 x 0.9 inches", "revision": 3}
+/type/edition /books/OL10580916M 3 2010-04-13T06:10:12.112073 {"publishers": ["Kessinger Publishing, LLC"], "number_of_pages": 396, "subtitle": "Vol. 4, July-December, 1863", "weight": "1.6 pounds", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0548373957"], "title": "The Mining And Smelting Magazine", "isbn_13": ["9780548373958"], "covers": [2511394], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:10:12.112073"}, "latest_revision": 3, "key": "/books/OL10580916M", "authors": [{"key": "/authors/OL3466058A"}], "publish_date": "June 25, 2007", "works": [{"key": "/works/OL9436993W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 1 inches", "revision": 3}
+/type/edition /books/OL10581052M 3 2010-04-13T06:10:12.112073 {"publishers": ["Kessinger Publishing, LLC"], "number_of_pages": 108, "subtitle": "A Brief Memoir Of George Tyrrell", "weight": "11.7 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0548375488"], "title": "The Teaching Of The Spirit", "isbn_13": ["9780548375488"], "covers": [2511530], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:10:12.112073"}, "latest_revision": 3, "key": "/books/OL10581052M", "authors": [{"key": "/authors/OL3466110A"}], "publish_date": "June 25, 2007", "works": [{"key": "/works/OL9437064W"}], "type": {"key": "/type/edition"}, "subjects": ["Religious", "Biography & Autobiography", "Biography/Autobiography"], "physical_dimensions": "9 x 6 x 0.4 inches", "revision": 3}
+/type/edition /books/OL10581421M 2 2010-04-13T06:10:12.112073 {"physical_format": "Hardcover", "weight": "1.5 pounds", "publishers": ["Kessinger Publishing, LLC"], "isbn_10": ["0548379688"], "number_of_pages": 356, "isbn_13": ["9780548379684"], "covers": [2511899], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:10:12.112073"}, "publish_date": "June 25, 2007", "latest_revision": 2, "key": "/books/OL10581421M", "authors": [{"key": "/authors/OL1126014A"}, {"key": "/authors/OL3466249A"}], "title": "Son Of Power", "subjects": ["Collections & anthologies of various literary forms", "General", "Literary Collections / General", "Christian - General", "Fiction", "Literature - Classics / Criticism"], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.9 inches", "revision": 2}
+/type/edition /books/OL10581485M 4 2011-04-27T12:59:06.187915 {"publishers": ["Kessinger Publishing, LLC"], "weight": "1.1 pounds", "covers": [2511963], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T12:59:06.187915"}, "latest_revision": 4, "key": "/books/OL10581485M", "authors": [{"key": "/authors/OL3466276A"}], "subjects": ["General", "Fiction"], "languages": [{"key": "/languages/eng"}], "title": "Afoot And Afloat In Burma", "number_of_pages": 224, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780548380352"], "isbn_10": ["054838035X"], "publish_date": "June 25, 2007", "oclc_numbers": ["166385781"], "works": [{"key": "/works/OL9437277W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.6 inches", "revision": 4}
+/type/edition /books/OL10581543M 3 2010-04-13T06:10:12.112073 {"publishers": ["Kessinger Publishing, LLC"], "key": "/books/OL10581543M", "weight": "1.4 pounds", "languages": [{"key": "/languages/eng"}], "number_of_pages": 308, "isbn_13": ["9780548381021"], "covers": [2512021], "physical_format": "Hardcover", "isbn_10": ["054838102X"], "publish_date": "June 25, 2007", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:10:12.112073"}, "authors": [{"key": "/authors/OL3466304A"}], "title": "The Princess Of Sorry Valley", "latest_revision": 3, "works": [{"key": "/works/OL9437345W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.8 inches", "revision": 3}
+/type/edition /books/OL10581568M 4 2022-12-26T06:59:22.028508 {"publishers": ["Kessinger Publishing, LLC"], "number_of_pages": 444, "subtitle": "Containing Dialogues And Prayers Suited To The Various Exercises Of The Christian Life", "weight": "1.8 pounds", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0548381275"], "title": "The Christian's Manual Of Faith And Devotion", "isbn_13": ["9780548381274"], "covers": [2512046], "physical_format": "Hardcover", "key": "/books/OL10581568M", "authors": [{"key": "/authors/OL116045A"}], "publish_date": "June 25, 2007", "works": [{"key": "/works/OL9420900W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 1.1 inches", "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-26T06:59:22.028508"}}
+/type/edition /books/OL10582096M 4 2010-04-13T06:10:12.112073 {"publishers": ["Kessinger Publishing, LLC"], "key": "/books/OL10582096M", "weight": "9.4 ounces", "languages": [{"key": "/languages/eng"}], "number_of_pages": 176, "isbn_13": ["9780548387184"], "covers": [2512570], "physical_format": "Paperback", "isbn_10": ["0548387184"], "publish_date": "September 12, 2007", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:10:12.112073"}, "authors": [{"key": "/authors/OL1461411A"}], "title": "Wild Flower Gardening", "latest_revision": 4, "works": [{"key": "/works/OL5917628W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.4 inches", "revision": 4}
+/type/edition /books/OL10582217M 3 2010-04-13T06:10:12.112073 {"publishers": ["Kessinger Publishing, LLC"], "key": "/books/OL10582217M", "weight": "1.2 pounds", "languages": [{"key": "/languages/eng"}], "number_of_pages": 236, "isbn_13": ["9780548388686"], "covers": [2512691], "physical_format": "Paperback", "isbn_10": ["0548388687"], "publish_date": "September 12, 2007", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:10:12.112073"}, "authors": [{"key": "/authors/OL2246298A"}], "title": "Pioneer Harvest", "latest_revision": 3, "works": [{"key": "/works/OL7434992W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "11 x 8.2 x 0.5 inches", "revision": 3}
+/type/edition /books/OL10582589M 3 2010-04-13T06:10:12.112073 {"publishers": ["Kessinger Publishing, LLC"], "key": "/books/OL10582589M", "weight": "13.9 ounces", "languages": [{"key": "/languages/eng"}], "number_of_pages": 224, "isbn_13": ["9780548392584"], "covers": [2513062], "physical_format": "Paperback", "isbn_10": ["0548392587"], "publish_date": "September 12, 2007", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:10:12.112073"}, "authors": [{"key": "/authors/OL2343025A"}], "title": "The Story Of Papermaking", "latest_revision": 3, "works": [{"key": "/works/OL7635700W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10 x 7 x 0.5 inches", "revision": 3}
+/type/edition /books/OL10582806M 4 2011-04-27T23:55:34.635580 {"publishers": ["Kessinger Publishing, LLC"], "subtitle": "A Tale Of The Old Dominion In The Transition State", "weight": "12.8 ounces", "covers": [2513279], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T23:55:34.635580"}, "latest_revision": 4, "key": "/books/OL10582806M", "authors": [{"key": "/authors/OL2143116A"}], "subjects": ["General", "Fiction / General", "Fiction - General"], "languages": [{"key": "/languages/eng"}], "title": "A Yankee School Teacher In Virginia", "number_of_pages": 244, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780548394755"], "isbn_10": ["054839475X"], "publish_date": "August 29, 2007", "oclc_numbers": ["179776149"], "works": [{"key": "/works/OL7303094W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.6 inches", "revision": 4}
+/type/edition /books/OL10582850M 5 2010-04-24T18:04:53.628328 {"number_of_pages": 124, "subtitle": "Poems", "weight": "6.7 ounces", "covers": [2513323], "latest_revision": 5, "source_records": ["amazon:0548395195"], "title": "In The Afterglow", "languages": [{"key": "/languages/eng"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.3 inches", "revision": 5, "publishers": ["Kessinger Publishing, LLC"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:04:53.628328"}, "key": "/books/OL10582850M", "authors": [{"key": "/authors/OL2432484A"}], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "identifiers": {"goodreads": ["7010870"]}, "isbn_13": ["9780548395196"], "isbn_10": ["0548395195"], "publish_date": "August 29, 2007", "works": [{"key": "/works/OL214892W"}]}
+/type/edition /books/OL10582956M 5 2010-10-18T20:01:48.730788 {"publishers": ["Kessinger Publishing, LLC"], "weight": "8.2 ounces", "covers": [2513429], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-10-18T20:01:48.730788"}, "latest_revision": 5, "key": "/books/OL10582956M", "authors": [{"key": "/authors/OL162057A"}], "contributions": ["Charles Dana Gibson (Illustrator)"], "subjects": ["Historical - General", "Fiction / Historical", "Fiction - Historical"], "languages": [{"key": "/languages/eng"}], "title": "Blue-Bird Weather", "number_of_pages": 152, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780548396254"], "isbn_10": ["0548396256"], "publish_date": "August 29, 2007", "works": [{"key": "/works/OL1526741W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.4 inches", "revision": 5}
+/type/edition /books/OL10583077M 5 2010-08-19T06:18:39.744724 {"publishers": ["Kessinger Publishing, LLC"], "weight": "1.1 pounds", "covers": [2513549], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-08-19T06:18:39.744724"}, "latest_revision": 5, "key": "/books/OL10583077M", "authors": [{"key": "/authors/OL21001A"}], "isbn_13": ["9780548397466"], "source_records": ["amazon:0548397465"], "title": "Embarrassments", "number_of_pages": 328, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0548397465"], "publish_date": "August 29, 2007", "works": [{"key": "/works/OL276426W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.7 inches", "revision": 5}
+/type/edition /books/OL10583175M 3 2010-04-13T06:10:12.112073 {"publishers": ["Kessinger Publishing, LLC"], "number_of_pages": 380, "subtitle": "A Story Of The Great Wilderness", "weight": "1.2 pounds", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0548398445"], "type": {"key": "/type/edition"}, "title": "On The We-A Trail", "isbn_13": ["9780548398449"], "covers": [2513647], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:10:12.112073"}, "latest_revision": 3, "key": "/books/OL10583175M", "authors": [{"key": "/authors/OL3467086A"}], "publish_date": "August 29, 2007", "works": [{"key": "/works/OL9438495W"}], "contributions": ["Max Klepper (Illustrator)"], "physical_dimensions": "9 x 6 x 0.8 inches", "revision": 3}
+/type/edition /books/OL10583827M 5 2010-04-24T18:04:53.628328 {"publishers": ["Kessinger Publishing, LLC"], "languages": [{"key": "/languages/eng"}], "identifiers": {"goodreads": ["3018353"]}, "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:04:53.628328"}, "weight": "1.2 pounds", "title": "All Quiet Along The Potomac And Other Poems", "number_of_pages": 356, "isbn_13": ["9780548405833"], "covers": [2514299], "physical_format": "Paperback", "isbn_10": ["0548405832"], "publish_date": "August 29, 2007", "key": "/books/OL10583827M", "authors": [{"key": "/authors/OL1452445A"}], "latest_revision": 5, "works": [{"key": "/works/OL5888201W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.8 inches", "revision": 5}
+/type/edition /books/OL10583836M 5 2010-04-24T18:04:53.628328 {"publishers": ["Kessinger Publishing, LLC"], "languages": [{"key": "/languages/eng"}], "identifiers": {"goodreads": ["6136531"]}, "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:04:53.628328"}, "weight": "14.4 ounces", "title": "Great Mysteries And Little Plagues", "number_of_pages": 276, "isbn_13": ["9780548405925"], "covers": [2514308], "physical_format": "Paperback", "isbn_10": ["0548405921"], "publish_date": "August 29, 2007", "key": "/books/OL10583836M", "authors": [{"key": "/authors/OL120270A"}], "latest_revision": 5, "works": [{"key": "/works/OL1191102W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.6 inches", "revision": 5}
+/type/edition /books/OL10584011M 3 2010-04-13T06:10:12.112073 {"publishers": ["Kessinger Publishing, LLC"], "key": "/books/OL10584011M", "weight": "10.4 ounces", "languages": [{"key": "/languages/eng"}], "number_of_pages": 196, "isbn_13": ["9780548408551"], "covers": [2514483], "physical_format": "Paperback", "isbn_10": ["0548408556"], "publish_date": "August 29, 2007", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:10:12.112073"}, "authors": [{"key": "/authors/OL3467227A"}], "title": "Moral Tales In Prose And Verse Selected From The Best Authors", "latest_revision": 3, "works": [{"key": "/works/OL9438657W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.4 inches", "revision": 3}
+/type/edition /books/OL10584298M 3 2010-04-13T06:10:12.112073 {"publishers": ["Kessinger Publishing, LLC"], "key": "/books/OL10584298M", "weight": "8 ounces", "languages": [{"key": "/languages/eng"}], "number_of_pages": 148, "isbn_13": ["9780548414101"], "covers": [2514770], "physical_format": "Paperback", "isbn_10": ["0548414106"], "publish_date": "August 29, 2007", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:10:12.112073"}, "authors": [{"key": "/authors/OL3467331A"}], "title": "The Agricultural Papers Of George Washington", "latest_revision": 3, "works": [{"key": "/works/OL9438792W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.3 inches", "revision": 3}
+/type/edition /books/OL10584558M 5 2022-12-08T16:58:43.553856 {"publishers": ["Kessinger Publishing, LLC"], "key": "/books/OL10584558M", "weight": "15 ounces", "languages": [{"key": "/languages/eng"}], "number_of_pages": 172, "isbn_13": ["9780548417843"], "covers": [2515030], "physical_format": "Hardcover", "isbn_10": ["0548417849"], "publish_date": "August 29, 2007", "authors": [{"key": "/authors/OL243763A"}], "title": "Mrs. Hope's Husband", "works": [{"key": "/works/OL2020116W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.6 inches", "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-08T16:58:43.553856"}}
+/type/edition /books/OL10584826M 3 2010-04-13T06:10:12.112073 {"publishers": ["Kessinger Publishing, LLC"], "number_of_pages": 328, "subtitle": "Ranchman", "weight": "1.4 pounds", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0548420785"], "title": "Justin Wingate", "isbn_13": ["9780548420782"], "covers": [2515297], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:10:12.112073"}, "latest_revision": 3, "key": "/books/OL10584826M", "authors": [{"key": "/authors/OL3467071A"}], "publish_date": "August 29, 2007", "works": [{"key": "/works/OL9438476W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.9 inches", "revision": 3}
+/type/edition /books/OL10584872M 3 2010-04-13T06:10:12.112073 {"publishers": ["Kessinger Publishing, LLC"], "key": "/books/OL10584872M", "weight": "11.7 ounces", "languages": [{"key": "/languages/eng"}], "number_of_pages": 108, "isbn_13": ["9780548421253"], "covers": [2515343], "physical_format": "Hardcover", "isbn_10": ["0548421250"], "publish_date": "August 29, 2007", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:10:12.112073"}, "authors": [{"key": "/authors/OL317012A"}], "title": "Harvest Moon", "latest_revision": 3, "works": [{"key": "/works/OL2342088W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.4 inches", "revision": 3}
+/type/edition /books/OL10585000M 6 2014-03-20T20:14:35.397154 {"publishers": ["Kessinger Publishing, LLC"], "weight": "1.7 pounds", "covers": [2515471], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2014-03-20T20:14:35.397154"}, "latest_revision": 6, "key": "/books/OL10585000M", "authors": [{"key": "/authors/OL142404A"}], "contributions": ["Peter Newell (Illustrator)", "W. T. Smedley (Illustrator)"], "languages": [{"key": "/languages/eng"}], "source_records": ["amazon:0548422583"], "title": "A Storytellers Pack", "number_of_pages": 420, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780548422588"], "isbn_10": ["0548422583"], "publish_date": "August 29, 2007", "works": [{"key": "/works/OL273855W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 1.1 inches", "revision": 6}
+/type/edition /books/OL10585021M 3 2010-04-13T06:10:12.112073 {"publishers": ["Kessinger Publishing, LLC"], "subtitle": "Or A Strange Friendship", "weight": "1.4 pounds", "covers": [2515492], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:10:12.112073"}, "latest_revision": 3, "key": "/books/OL10585021M", "authors": [{"key": "/authors/OL2104019A"}], "isbn_13": ["9780548422809"], "source_records": ["amazon:054842280X"], "title": "Manulito", "number_of_pages": 328, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["054842280X"], "publish_date": "August 29, 2007", "works": [{"key": "/works/OL187887W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.9 inches", "revision": 3}
+/type/edition /books/OL10585272M 4 2010-04-13T06:10:12.112073 {"publishers": ["Kessinger Publishing, LLC"], "number_of_pages": 312, "subtitle": "Two Plays", "weight": "1.4 pounds", "languages": [{"key": "/languages/eng"}], "isbn_10": ["054842554X"], "title": "Husband And The Forbidden Guests", "isbn_13": ["9780548425541"], "covers": [2515743], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:10:12.112073"}, "latest_revision": 4, "key": "/books/OL10585272M", "authors": [{"key": "/authors/OL953252A"}], "publish_date": "August 29, 2007", "works": [{"key": "/works/OL4641351W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.8 inches", "revision": 4}
+/type/edition /books/OL10585732M 5 2010-04-24T18:04:53.628328 {"publishers": ["Kessinger Publishing, LLC"], "number_of_pages": 108, "subtitle": "A Poem Spoken Before The Phi Beta Kappa Society In Cambridge, July 19, 1849", "source_records": ["amazon:0548433976"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0548433976"], "identifiers": {"goodreads": ["6989980"]}, "isbn_13": ["9780548433973"], "covers": [2516203], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:04:53.628328"}, "latest_revision": 5, "key": "/books/OL10585732M", "authors": [{"key": "/authors/OL2410599A"}], "publish_date": "August 29, 2007", "title": "The Horse-Shoe", "works": [{"key": "/works/OL205712W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10585879M 5 2010-04-24T18:04:53.628328 {"publishers": ["Kessinger Publishing, LLC"], "languages": [{"key": "/languages/eng"}], "identifiers": {"goodreads": ["6195087"]}, "weight": "7 ounces", "title": "Children Of The Emek", "type": {"key": "/type/edition"}, "number_of_pages": 128, "isbn_13": ["9780548438190"], "covers": [2516350], "physical_format": "Paperback", "authors": [{"key": "/authors/OL1192402A"}], "isbn_10": ["0548438196"], "latest_revision": 5, "key": "/books/OL10585879M", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:04:53.628328"}, "publish_date": "September 12, 2007", "works": [{"key": "/works/OL5270042W"}], "contributions": ["Temima N. Gezari (Illustrator)"], "physical_dimensions": "9 x 6 x 0.3 inches", "revision": 5}
+/type/edition /books/OL10586020M 4 2010-04-24T18:04:53.628328 {"publishers": ["Kessinger Publishing, LLC"], "languages": [{"key": "/languages/eng"}], "number_of_pages": 368, "subtitle": "A Narrative", "weight": "1.2 pounds", "title": "Charles Freer Andrews", "isbn_10": ["0548439613"], "type": {"key": "/type/edition"}, "identifiers": {"goodreads": ["5681915"]}, "isbn_13": ["9780548439616"], "covers": [2516491], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:04:53.628328"}, "latest_revision": 4, "key": "/books/OL10586020M", "authors": [{"key": "/authors/OL3467435A"}, {"key": "/authors/OL349489A"}], "publish_date": "September 12, 2007", "contributions": ["M. K. Gandhi (Foreword)"], "physical_dimensions": "9 x 6 x 0.8 inches", "revision": 4}
+/type/edition /books/OL10586049M 6 2010-08-17T02:57:28.195504 {"publishers": ["Kessinger Publishing, LLC"], "identifiers": {"goodreads": ["2429357"], "librarything": ["1983885"]}, "weight": "5.6 ounces", "covers": [2516520], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-08-17T02:57:28.195504"}, "latest_revision": 6, "key": "/books/OL10586049M", "authors": [{"key": "/authors/OL47492A"}], "isbn_13": ["9780548439913"], "title": "The Tree That Didn't Get Trimmed", "number_of_pages": 108, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0548439915"], "publish_date": "September 12, 2007", "works": [{"key": "/works/OL619403W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.9 x 6 x 0.3 inches", "revision": 6}
+/type/edition /books/OL10586088M 4 2010-08-17T02:57:28.195504 {"publishers": ["Kessinger Publishing, LLC"], "number_of_pages": 392, "subtitle": "The Story Of The First Transcontinental Railroad", "weight": "1.3 pounds", "covers": [2516559], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-08-17T02:57:28.195504"}, "latest_revision": 4, "key": "/books/OL10586088M", "authors": [{"key": "/authors/OL1238696A"}], "isbn_13": ["9780548440308"], "source_records": ["amazon:0548440301"], "title": "The Great Iron Trail", "identifiers": {"librarything": ["2868151"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0548440301"], "publish_date": "September 12, 2007", "works": [{"key": "/works/OL122490W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.9 inches", "revision": 4}
+/type/edition /books/OL10586183M 3 2010-04-13T06:10:12.112073 {"publishers": ["Kessinger Publishing, LLC"], "key": "/books/OL10586183M", "weight": "13.4 ounces", "languages": [{"key": "/languages/eng"}], "number_of_pages": 256, "isbn_13": ["9780548441275"], "covers": [2516654], "physical_format": "Paperback", "isbn_10": ["0548441278"], "publish_date": "September 12, 2007", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:10:12.112073"}, "authors": [{"key": "/authors/OL3467499A"}], "title": "The World Of Psychic Phenomena", "latest_revision": 3, "works": [{"key": "/works/OL9438978W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.6 inches", "revision": 3}
+/type/edition /books/OL10586477M 3 2010-04-13T06:10:12.112073 {"publishers": ["Kessinger Publishing, LLC"], "key": "/books/OL10586477M", "weight": "9.8 ounces", "languages": [{"key": "/languages/eng"}], "number_of_pages": 184, "isbn_13": ["9780548444955"], "covers": [2516948], "physical_format": "Paperback", "isbn_10": ["0548444951"], "publish_date": "September 12, 2007", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:10:12.112073"}, "authors": [{"key": "/authors/OL3467581A"}], "title": "The Book Of Annuals", "latest_revision": 3, "works": [{"key": "/works/OL9439069W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.4 inches", "revision": 3}
+/type/edition /books/OL10587058M 6 2010-08-17T02:57:28.195504 {"publishers": ["Kessinger Publishing, LLC"], "identifiers": {"goodreads": ["2735209"], "librarything": ["431599"]}, "weight": "5.9 ounces", "covers": [2517529], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-08-17T02:57:28.195504"}, "latest_revision": 6, "key": "/books/OL10587058M", "authors": [{"key": "/authors/OL3467750A"}], "isbn_13": ["9780548453377"], "title": "Life With Par", "number_of_pages": 108, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0548453373"], "publish_date": "September 12, 2007", "works": [{"key": "/works/OL9439299W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.3 inches", "revision": 6}
+/type/edition /books/OL10587392M 4 2010-04-13T06:10:12.112073 {"publishers": ["Kessinger Publishing, LLC"], "number_of_pages": 108, "weight": "5.9 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["054846281X"], "title": "Thoughts I Met On The Highway", "isbn_13": ["9780548462812"], "covers": [2517863], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:10:12.112073"}, "latest_revision": 4, "key": "/books/OL10587392M", "authors": [{"key": "/authors/OL2368428A"}], "publish_date": "September 12, 2007", "works": [{"key": "/works/OL7680519W"}], "type": {"key": "/type/edition"}, "subjects": ["Literary", "Fiction"], "physical_dimensions": "9 x 6 x 0.3 inches", "revision": 4}
+/type/edition /books/OL10587765M 3 2010-04-13T06:10:55.976267 {"publishers": ["Kessinger Publishing, LLC"], "weight": "11 ounces", "covers": [2518236], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:10:55.976267"}, "latest_revision": 3, "key": "/books/OL10587765M", "authors": [{"key": "/authors/OL2530260A"}], "subjects": ["General", "Fiction / General", "Fiction", "Fiction - General"], "isbn_13": ["9780548467824"], "source_records": ["amazon:054846782X"], "title": "Dotty Dimple's Flyaway", "number_of_pages": 208, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["054846782X"], "publish_date": "September 12, 2007", "works": [{"key": "/works/OL239802W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.5 inches", "revision": 3}
+/type/edition /books/OL10588392M 5 2010-04-24T18:04:53.628328 {"publishers": ["Kessinger Publishing, LLC"], "languages": [{"key": "/languages/eng"}], "identifiers": {"goodreads": ["7290518"]}, "subtitle": "Their Formation And Management; Garden, Tennis And Croquet Lawns, Bowling And Golf Greens, Cricket Grounds, Grass Paths, Etc.", "weight": "7.2 ounces", "title": "Lawns And Greens", "number_of_pages": 132, "isbn_13": ["9780548481578"], "covers": [2518862], "physical_format": "Paperback", "authors": [{"key": "/authors/OL3468039A"}], "isbn_10": ["0548481571"], "latest_revision": 5, "key": "/books/OL10588392M", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:04:53.628328"}, "publish_date": "September 12, 2007", "works": [{"key": "/works/OL9439625W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.3 inches", "revision": 5}
+/type/edition /books/OL10588505M 1 2008-04-30T09:38:13.731961 {"physical_format": "Unknown Binding", "subtitle": "Book and CD-ROM", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Chambers Harrap Publishers Ltd"], "title": "Chambers Biographies", "isbn_13": ["9780550107510"], "isbn_10": ["0550107517"], "publish_date": "August 4, 1997", "key": "/books/OL10588505M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10588632M 1 2008-04-30T09:38:13.731961 {"physical_format": "Unknown Binding", "weight": "10.6 ounces", "publishers": ["Nelson Thornes Ltd"], "title": "World Political Systems (Ckg)", "isbn_13": ["9780550209993"], "isbn_10": ["0550209999"], "publish_date": "May 21, 1993", "key": "/books/OL10588632M", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10588647M 6 2022-12-09T14:30:45.333460 {"publishers": ["Chambers"], "physical_format": "Paperback", "title": "South-East Scotland (Chambers' Scottish Guides)", "number_of_pages": 192, "covers": [5066878], "isbn_13": ["9780550221001"], "isbn_10": ["055022100X"], "publish_date": "January 28, 1993", "key": "/books/OL10588647M", "authors": [{"key": "/authors/OL3347465A"}], "oclc_numbers": ["28340519"], "works": [{"key": "/works/OL9294786W"}], "type": {"key": "/type/edition"}, "subjects": ["British Isles", "Scotland", "Travel & holiday guides"], "ocaid": "southeastscotlan0000wool", "source_records": ["ia:southeastscotlan0000wool", "promise:bwb_daily_pallets_2020-11-19"], "local_id": ["urn:bwbsku:KO-279-197"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T14:30:45.333460"}}
+/type/edition /books/OL10588712M 3 2011-04-28T17:39:14.555038 {"publishers": ["Kingfisher Books Ltd"], "last_modified": {"type": "/type/datetime", "value": "2011-04-28T17:39:14.555038"}, "title": "Horrors and Howlers (Chambers Fun with English)", "number_of_pages": 32, "isbn_13": ["9780550325105"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0550325107"], "publish_date": "July 27, 1995", "key": "/books/OL10588712M", "authors": [{"key": "/authors/OL2644117A"}], "latest_revision": 3, "oclc_numbers": ["33243792"], "works": [{"key": "/works/OL7916971W"}], "type": {"key": "/type/edition"}, "subjects": ["English language", "English (ie as school subject)", "English"], "revision": 3}
+/type/edition /books/OL10589075M 5 2011-06-08T09:41:15.901540 {"publishers": ["HarperCollins Publishers"], "number_of_pages": 160, "last_modified": {"type": "/type/datetime", "value": "2011-06-08T09:41:15.901540"}, "title": "Turn Off the TV - Let's Have Fun Instead", "type": {"key": "/type/edition"}, "identifiers": {"goodreads": ["4740930"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780551019713"], "isbn_10": ["0551019719"], "publish_date": "March 8, 1990", "key": "/books/OL10589075M", "authors": [{"key": "/authors/OL2763066A"}], "latest_revision": 5, "oclc_numbers": ["29686742"], "works": [{"key": "/works/OL8314950W"}], "physical_format": "Paperback", "subjects": ["Christianity"], "revision": 5}
+/type/edition /books/OL10589169M 8 2022-12-13T03:55:45.093399 {"identifiers": {"librarything": ["4617505"]}, "title": "Youth Culture and the Gospel", "authors": [{"key": "/authors/OL1975231A"}], "publish_date": "February 1993", "publishers": ["Zondervan"], "languages": [{"key": "/languages/eng"}], "physical_format": "Paperback", "isbn_13": ["9780551023857"], "isbn_10": ["0551023856"], "oclc_numbers": ["27642781"], "type": {"key": "/type/edition"}, "subjects": ["Christian ministry & pastoral activity", "Christian spirituality", "Religion"], "ocaid": "youthculturegosp0000ward", "source_records": ["ia:youthculturegosp0000ward", "promise:bwb_daily_pallets_2022-03-17"], "key": "/books/OL10589169M", "number_of_pages": 160, "works": [{"key": "/works/OL7043548W"}], "local_id": ["urn:bwbsku:KQ-126-605"], "covers": [13048917], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-13T03:55:45.093399"}}
+/type/edition /books/OL10589212M 9 2022-12-10T08:46:35.554711 {"publishers": ["Zondervan"], "identifiers": {"goodreads": ["1410308"]}, "weight": "12 ounces", "isbn_10": ["0551027029"], "physical_format": "Paperback", "key": "/books/OL10589212M", "authors": [{"key": "/authors/OL2899724A"}], "subjects": ["History of religion", "Orthodox Churches", "Russia", "Christianity - History", "Church History", "Religion - Church History", "Religion"], "isbn_13": ["9780551027022"], "source_records": ["marc:marc_claremont_school_theology/CSTMARC1_barcode.mrc:212367280:2177", "marc:marc_claremont_school_theology/CSTMARC1_multibarcode.mrc:212634467:2177", "ia:russianresurrect0000rowe", "promise:bwb_daily_pallets_2020-06-04"], "title": "Russian Resurrection", "number_of_pages": 256, "languages": [{"key": "/languages/eng"}], "local_id": ["urn:cst:10011435942", "urn:bwbsku:P4-BBE-968"], "publish_date": "March 1995", "oclc_numbers": ["31127567"], "works": [{"key": "/works/OL8621218W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.8 x 5.5 x 1 inches", "lc_classifications": ["BR1642.S65 R69 1994"], "covers": [10704294], "ocaid": "russianresurrect0000rowe", "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T08:46:35.554711"}}
+/type/edition /books/OL10589280M 6 2022-12-22T08:45:49.332056 {"publishers": ["Zondervan"], "number_of_pages": 192, "title": "Charles Colson (Heroes of the Cross)", "type": {"key": "/type/edition"}, "identifiers": {"goodreads": ["5837320"]}, "isbn_13": ["9780551028975"], "isbn_10": ["0551028971"], "publish_date": "January 23, 1995", "key": "/books/OL10589280M", "authors": [{"key": "/authors/OL657836A"}], "oclc_numbers": ["32200590"], "works": [{"key": "/works/OL3746369W"}], "physical_format": "Paperback", "subjects": ["Biography: general", "Christian life & practice", "Christianity"], "local_id": ["urn:bwbsku:KS-462-984"], "source_records": ["promise:bwb_daily_pallets_2022-12-15"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-22T08:45:49.332056"}}
+/type/edition /books/OL10589342M 3 2022-11-15T11:11:32.272102 {"publishers": ["HarperCollins Publishers"], "key": "/books/OL10589342M", "title": "MY AMAZING BIBLE STORY BOOK", "number_of_pages": 160, "isbn_13": ["9780551030640"], "physical_format": "Hardcover", "isbn_10": ["055103064X"], "publish_date": "September 1, 1997", "authors": [{"key": "/authors/OL2659276A"}], "works": [{"key": "/works/OL7984261W"}], "type": {"key": "/type/edition"}, "source_records": ["amazon:055103064X"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-15T11:11:32.272102"}}
+/type/edition /books/OL10589502M 6 2010-04-24T18:04:53.628328 {"publishers": ["Corgi"], "number_of_pages": 384, "title": "Such As We", "isbn_10": ["0552082988"], "identifiers": {"goodreads": ["5624082"]}, "isbn_13": ["9780552082983"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:04:53.628328"}, "publish_date": "1969", "key": "/books/OL10589502M", "authors": [{"key": "/authors/OL136027A"}], "latest_revision": 6, "works": [{"key": "/works/OL1333755W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL10589766M 2 2009-12-15T00:51:12.532509 {"publishers": ["Transworld Publishers Ltd"], "key": "/books/OL10589766M", "title": "Number 10", "isbn_13": ["9780552138024"], "physical_format": "Paperback", "isbn_10": ["0552138029"], "latest_revision": 2, "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:51:12.532509"}, "authors": [{"key": "/authors/OL3468326A"}], "works": [{"key": "/works/OL9439960W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10589781M 8 2022-12-09T15:47:18.175024 {"publishers": ["Corgi"], "number_of_pages": 432, "title": "A Darker Shade of Love", "identifiers": {"librarything": ["1950075"], "goodreads": ["4252705"]}, "isbn_13": ["9780552138772"], "edition_name": "New Ed edition", "physical_format": "Paperback", "isbn_10": ["0552138770"], "publish_date": "September 17, 1992", "key": "/books/OL10589781M", "authors": [{"key": "/authors/OL3468327A"}], "oclc_numbers": ["59939209"], "works": [{"key": "/works/OL9439963W"}], "type": {"key": "/type/edition"}, "subjects": ["Modern fiction"], "covers": [10620034], "ocaid": "darkershadeoflov0000dunh", "source_records": ["ia:darkershadeoflov0000dunh", "promise:bwb_daily_pallets_2020-11-19"], "local_id": ["urn:bwbsku:KO-486-414"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T15:47:18.175024"}}
+/type/edition /books/OL10590057M 3 2011-04-25T22:46:19.104277 {"publishers": ["Transworld Publishers Ltd"], "subtitle": "Upper-case \"G\" (Alphabats)", "last_modified": {"type": "/type/datetime", "value": "2011-04-25T22:46:19.104277"}, "title": "Alphabats", "number_of_pages": 12, "isbn_13": ["9780552528528"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Board book", "isbn_10": ["0552528528"], "publish_date": "April 2, 1998", "key": "/books/OL10590057M", "authors": [{"key": "/authors/OL3468356A"}], "latest_revision": 3, "oclc_numbers": ["39962254"], "works": [{"key": "/works/OL9440041W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10590149M 5 2022-12-09T18:03:50.623313 {"publishers": ["Corgi Childrens"], "number_of_pages": 112, "title": "The Alien Joke Book", "physical_format": "Paperback", "identifiers": {"librarything": ["3764877"]}, "covers": [2519270], "isbn_13": ["9780552545624"], "isbn_10": ["0552545627"], "publish_date": "November 1, 1997", "key": "/books/OL10590149M", "authors": [{"key": "/authors/OL2622272A"}], "type": {"key": "/type/edition"}, "subjects": ["Jokes & riddles", "English"], "works": [{"key": "/works/OL31867461W"}], "local_id": ["urn:bwbsku:KO-362-880", "urn:bwbsku:KO-610-543"], "source_records": ["promise:bwb_daily_pallets_2020-11-19", "promise:bwb_daily_pallets_2020-10-26"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T18:03:50.623313"}}
+/type/edition /books/OL10590163M 5 2011-04-28T12:42:34.101939 {"publishers": ["Corgi Childrens"], "identifiers": {"goodreads": ["1554781"]}, "last_modified": {"type": "/type/datetime", "value": "2011-04-28T12:42:34.101939"}, "title": "The Phantom Pony", "contributions": ["Robin Lawrie (Illustrator)"], "number_of_pages": 96, "isbn_13": ["9780552546256"], "covers": [2519284], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0552546259"], "publish_date": "June 3, 1999", "key": "/books/OL10590163M", "authors": [{"key": "/authors/OL39318A"}], "latest_revision": 5, "oclc_numbers": ["59417100"], "type": {"key": "/type/edition"}, "subjects": ["Horror & ghost stories, chillers"], "revision": 5}
+/type/edition /books/OL10590343M 5 2010-04-24T18:04:53.628328 {"publishers": ["Transworld Publishers Ltd"], "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:04:53.628328"}, "title": "The Writing Game", "identifiers": {"goodreads": ["156104"]}, "isbn_13": ["9780552760652"], "physical_format": "Hardcover", "isbn_10": ["055276065X"], "publish_date": "1998", "key": "/books/OL10590343M", "authors": [{"key": "/authors/OL1058608A"}], "latest_revision": 5, "works": [{"key": "/works/OL4927269W"}], "type": {"key": "/type/edition"}, "subjects": ["Modern fiction"], "revision": 5}
+/type/edition /books/OL10590441M 6 2022-12-01T09:36:23.255697 {"publishers": ["Bantam"], "title": "Project Pendulum", "identifiers": {"goodreads": ["969005"]}, "physical_format": "Mass Market Paperback", "isbn_10": ["0552800015"], "publish_date": "1991", "key": "/books/OL10590441M", "authors": [{"key": "/authors/OL3127861A"}], "works": [{"key": "/works/OL1960463W"}], "type": {"key": "/type/edition"}, "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-01T09:36:23.255697"}}
+/type/edition /books/OL10590447M 4 2020-02-18T14:07:26.618104 {"publishers": ["Corgi Childrens"], "number_of_pages": 288, "last_modified": {"type": "/type/datetime", "value": "2020-02-18T14:07:26.618104"}, "title": "Soviet War Power", "physical_format": "Paperback", "identifiers": {"librarything": ["8200178"]}, "isbn_13": ["9780552982016"], "covers": [9274714], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "edition_name": "Corgi edition", "isbn_10": ["0552982016"], "publish_date": "January 22, 1982", "key": "/books/OL10590447M", "authors": [{"key": "/authors/OL2743234A"}], "latest_revision": 4, "works": [{"key": "/works/OL8243092W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10590670M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Dell Publishing"], "title": "The Hessian", "isbn_13": ["9780553077438"], "isbn_10": ["0553077430"], "publish_date": "September 1980", "key": "/books/OL10590670M", "type": {"key": "/type/edition"}, "subjects": ["Children: Young Adult (Gr. 7-9)"], "revision": 1}
+/type/edition /books/OL1059100M 2 2020-11-18T02:50:35.822972 {"publishers": ["Raghabi\u0304ra Racana\u0304 Praka\u0304shana"], "subtitle": "Bha\u0304rata-Pa\u0304ka g\u0332h\u0332azala-san\u0307grahi", "description": {"type": "/type/text", "value": "Collection of ghazals by Indian and Pakistani poets."}, "subject_place": ["India.", "Pakistan."], "lc_classifications": ["PK2656 .A764 1993"], "latest_revision": 2, "key": "/books/OL1059100M", "publish_places": ["Can\u0323d\u0323i\u0304gar\u0323ha"], "contributions": ["Pan\u0303ja\u0304bi\u0304 Kawi\u0304 Man\u0323d\u0323ala."], "pagination": "96 p. ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:95840998:792"], "title": "A\u0304ra pa\u0304ra", "lccn": ["93904110"], "notes": {"type": "/type/text", "value": "In Panjabi."}, "number_of_pages": 96, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/pan"}], "subjects": ["Ghazals, Panjabi -- India.", "Ghazals, Panjabi -- Pakistan."], "publish_date": "1993", "publish_country": "ii ", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T02:50:35.822972"}, "by_statement": "sampa\u0304daka Pan\u0303ja\u0304bi\u0304 Kawi\u0304 Man\u0323d\u0323ala.", "works": [{"key": "/works/OL23529936W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10591134M 5 2011-04-29T11:20:47.533698 {"publishers": ["Rigby Limited"], "last_modified": {"type": "/type/datetime", "value": "2011-04-29T11:20:47.533698"}, "title": "Woodworking & Carpentry For Australians", "identifiers": {"librarything": ["3486959"], "goodreads": ["3616259"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0727017810"], "publish_date": "1985", "key": "/books/OL10591134M", "authors": [{"key": "/authors/OL3468511A"}], "latest_revision": 5, "oclc_numbers": ["27547394"], "works": [{"key": "/works/OL9440238W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10591385M 4 2010-04-24T18:04:53.628328 {"publishers": ["Thomas Telford Ltd"], "identifiers": {"goodreads": ["3004399"]}, "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:04:53.628328"}, "title": "Ground Engineering Yearbook", "number_of_pages": 800, "isbn_13": ["9780727718440"], "physical_format": "Paperback", "isbn_10": ["0727718444"], "publish_date": "June 30, 1992", "key": "/books/OL10591385M", "authors": [{"key": "/authors/OL2714916A"}], "latest_revision": 4, "works": [{"key": "/works/OL8145621W"}], "type": {"key": "/type/edition"}, "subjects": ["Reference works", "Soil & rock mechanics", "Soil science, sedimentology"], "revision": 4}
+/type/edition /books/OL10591594M 1 2008-04-30T09:38:13.731961 {"physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Thomas Telford Ltd"], "title": "Innovation for World Class Construction", "isbn_13": ["9780727728807"], "isbn_10": ["0727728806"], "publish_date": "November 29, 2000", "key": "/books/OL10591594M", "authors": [{"key": "/authors/OL2624903A"}], "type": {"key": "/type/edition"}, "subjects": ["Civil Engineering, Surveying & Building"], "revision": 1}
+/type/edition /books/OL10591632M 7 2022-12-18T05:59:14.628987 {"publishers": ["Thomas Telford Ltd"], "number_of_pages": 112, "weight": "7.8 ounces", "covers": [2558006], "physical_format": "Paperback", "key": "/books/OL10591632M", "authors": [{"key": "/authors/OL3468682A"}], "subjects": ["Environmental impact analysis", "The Environment"], "title": "Environmental Impact Assessment", "identifiers": {"librarything": ["9782112"]}, "isbn_13": ["9780727729606"], "isbn_10": ["0727729608"], "publish_date": "January 12, 2000", "works": [{"key": "/works/OL9440429W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8 x 5.8 x 0.3 inches", "source_records": ["bwb:9780727729606", "promise:bwb_daily_pallets_2022-03-17", "marc:marc_columbia/Columbia-extract-20221130-028.mrc:130328237:3007"], "local_id": ["urn:bwbsku:KQ-191-063"], "lc_classifications": ["TD194.68.G7 G74 2000eb"], "oclc_numbers": ["893096284"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-18T05:59:14.628987"}}
+/type/edition /books/OL10591835M 3 2011-04-26T13:11:17.308546 {"publishers": ["Severn House Publishers Ltd"], "last_modified": {"type": "/type/datetime", "value": "2011-04-26T13:11:17.308546"}, "title": "Alamein Attack!", "number_of_pages": 224, "isbn_13": ["9780727808356"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Hardcover", "isbn_10": ["0727808354"], "publish_date": "October 29, 1982", "key": "/books/OL10591835M", "authors": [{"key": "/authors/OL1127993A"}], "latest_revision": 3, "oclc_numbers": ["16614207"], "works": [{"key": "/works/OL5118115W"}], "type": {"key": "/type/edition"}, "subjects": ["Second World War fiction"], "revision": 3}
+/type/edition /books/OL10591972M 5 2022-12-05T08:14:01.941200 {"publishers": ["Severn House Publishers Ltd"], "title": "Love Thing", "number_of_pages": 288, "isbn_13": ["9780727814753"], "physical_format": "Hardcover", "isbn_10": ["0727814753"], "publish_date": "March 24, 1988", "key": "/books/OL10591972M", "authors": [{"key": "/authors/OL1078730A"}], "oclc_numbers": ["59206344"], "works": [{"key": "/works/OL4988393W"}], "type": {"key": "/type/edition"}, "subjects": ["Modern fiction"], "covers": [12848521], "ocaid": "lovething0000hirs", "lc_classifications": ["PS3558.I67"], "source_records": ["ia:lovething0000hirs", "promise:bwb_daily_pallets_2022-05-23"], "local_id": ["urn:bwbsku:kq-754-696"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-05T08:14:01.941200"}}
+/type/edition /books/OL10592184M 7 2022-12-10T02:43:18.370678 {"publishers": ["Severn House Publishers"], "physical_format": "Hardcover", "title": "Tycoon", "number_of_pages": 512, "isbn_13": ["9780727844040"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0727844040"], "publish_date": "January 1993", "key": "/books/OL10592184M", "authors": [{"key": "/authors/OL3407119A"}], "oclc_numbers": ["27257784"], "works": [{"key": "/works/OL9366405W"}], "type": {"key": "/type/edition"}, "subjects": ["Modern fiction", "Romance", "Romance - General", "Popular English Fiction", "Fiction - Romance", "Fiction"], "identifiers": {"goodreads": ["3269209"], "amazon": [""]}, "covers": [11733893], "ocaid": "tycoon0000mart", "source_records": ["ia:tycoon0000mart", "promise:bwb_daily_pallets_2020-07-30"], "local_id": ["urn:bwbsku:KN-512-678"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T02:43:18.370678"}}
+/type/edition /books/OL10592440M 7 2022-12-05T10:31:05.375645 {"publishers": ["Severn House Publishers"], "number_of_pages": 320, "weight": "1.2 pounds", "physical_format": "Hardcover", "key": "/books/OL10592440M", "authors": [{"key": "/authors/OL2725364A"}], "subjects": ["Adventure / thriller", "Modern fiction", "Espionage/Intrigue", "Fiction - Espionage / Thriller"], "languages": [{"key": "/languages/eng"}], "title": "Dry", "identifiers": {"librarything": ["5687716"], "goodreads": ["4109551"]}, "isbn_13": ["9780727852724"], "isbn_10": ["0727852728"], "publish_date": "February 1998", "oclc_numbers": ["38340132"], "works": [{"key": "/works/OL8163101W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.8 x 5.7 x 1.1 inches", "local_id": ["urn:bwbsku:KQ-566-077"], "source_records": ["promise:bwb_daily_pallets_2022-04-20"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-05T10:31:05.375645"}}
+/type/edition /books/OL10592541M 4 2011-04-28T19:00:56.106667 {"publishers": ["Severn House Publishers"], "weight": "14.4 ounces", "covers": [5067152], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-28T19:00:56.106667"}, "latest_revision": 4, "key": "/books/OL10592541M", "authors": [{"key": "/authors/OL27047A"}], "subjects": ["Modern fiction", "General", "Fiction - General", "Fiction"], "languages": [{"key": "/languages/eng"}], "title": "Late Harvest", "number_of_pages": 256, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780727855831"], "isbn_10": ["0727855832"], "publish_date": "January 2001", "oclc_numbers": ["44603270"], "works": [{"key": "/works/OL462905W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 5.8 x 0.5 inches", "revision": 4}
+/type/edition /books/OL10592568M 8 2022-12-09T15:33:18.241107 {"publishers": ["Severn House Publishers"], "identifiers": {"goodreads": ["2562051"]}, "weight": "12.6 ounces", "covers": [2558128], "physical_format": "Hardcover", "key": "/books/OL10592568M", "authors": [{"key": "/authors/OL81372A"}], "subjects": ["Crime & mystery", "Modern fiction", "Psychological", "Suspense", "Mystery & Detective - General", "Fiction", "Fiction - Psychological Suspense", "Mystery/Suspense"], "languages": [{"key": "/languages/eng"}], "title": "A Touch of Suspicion", "number_of_pages": 192, "isbn_13": ["9780727857293"], "isbn_10": ["0727857290"], "publish_date": "June 2002", "oclc_numbers": ["59488515"], "works": [{"key": "/works/OL920908W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.8 x 5.8 x 0.8 inches", "ocaid": "touchofsuspicion0000hood", "lc_classifications": ["PR6058.O537 T68 2001"], "source_records": ["ia:touchofsuspicion0000hood", "promise:bwb_daily_pallets_2020-11-19"], "local_id": ["urn:bwbsku:KO-421-721"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T15:33:18.241107"}}
+/type/edition /books/OL10592990M 6 2022-12-09T23:28:11.045497 {"physical_format": "Paperback", "languages": [{"key": "/languages/eng"}], "publishers": ["Bmj Publishing Group"], "isbn_10": ["0727912577"], "contributions": ["Haines (Editor)", "Donald (Editor)"], "number_of_pages": 160, "isbn_13": ["9780727912572"], "covers": [2558350], "edition_name": "1st edition", "first_sentence": {"type": "/type/text", "value": "Spinal cord injury is a mortal condition and has been recognised as such since antiquity."}, "publish_date": "January 15, 1998", "key": "/books/OL10592990M", "authors": [{"key": "/authors/OL456881A"}, {"key": "/authors/OL2798412A"}], "title": "Getting Research Findings into Practice", "subjects": ["Emergency services", "Health systems & services", "Management & management techniques", "Medical research", "Social research & statistics", "Medical", "Medical / Nursing", "Nursing - Research & Theory", "Research", "Health Policy", "General"], "type": {"key": "/type/edition"}, "works": [{"key": "/works/OL24622616W"}], "ocaid": "healthservicesre0000unse_i4n9", "lc_classifications": ["RA440.85 .H435 1998", "RA440.85 .H435x 1998", "R850 .G47 1998"], "source_records": ["ia:healthservicesre0000unse_i4n9", "ia:gettingresearchf0000unse_m1h5", "bwb:9780727912572", "promise:bwb_daily_pallets_2020-09-09"], "local_id": ["urn:bwbsku:KN-641-358"], "identifiers": {"amazon": [""]}, "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T23:28:11.045497"}}
+/type/edition /books/OL10593026M 6 2022-12-17T03:55:35.769175 {"number_of_pages": 128, "subtitle": "A Self Assessment Programme", "weight": "3 ounces", "covers": [2558365], "edition_name": "Cdr/Sof edition", "title": "CD-Rom Questions in Paediatrics", "languages": [{"key": "/languages/eng"}], "subjects": ["Paediatric medicine", "Medical", "Medical / Nursing", "Pediatrics", "Medical / Pediatrics", "Study guides, home study & revision notes"], "type": {"key": "/type/edition"}, "physical_dimensions": "5.6 x 4.9 x 0.3 inches", "publishers": ["Wiley-Blackwell"], "physical_format": "CD-ROM", "key": "/books/OL10593026M", "authors": [{"key": "/authors/OL3257683A"}], "identifiers": {"goodreads": ["997208"]}, "isbn_13": ["9780727913937"], "isbn_10": ["072791393X"], "publish_date": "May 25, 2000", "works": [{"key": "/works/OL9190342W"}], "source_records": ["bwb:9780727913937"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T03:55:35.769175"}}
+/type/edition /books/OL10593337M 4 2020-10-09T08:33:05.080163 {"publishers": ["Estates Gazette"], "weight": "12 ounces", "covers": [2558590], "physical_format": "Hardcover", "lc_classifications": [""], "latest_revision": 4, "key": "/books/OL10593337M", "authors": [{"key": "/authors/OL962605A"}, {"key": "/authors/OL1417249A"}], "subjects": ["English law: property (real estate)", "General", "Property", "Nonfiction", "Law / Property", "Science : General", "Law", "Legal Reference / Law Profession"], "isbn_13": ["9780728204096"], "source_records": ["bwb:9780728204096"], "title": "PLR 2003", "number_of_pages": 128, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0728204096"], "publish_date": "December 11, 2003", "last_modified": {"type": "/type/datetime", "value": "2020-10-09T08:33:05.080163"}, "works": [{"key": "/works/OL21018764W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.7 x 6.1 x 0.5 inches", "revision": 4}
+/type/edition /books/OL10593444M 5 2011-04-28T16:45:26.743243 {"publishers": ["Fairacres Publications"], "last_modified": {"type": "/type/datetime", "value": "2011-04-28T16:45:26.743243"}, "weight": "1.4 ounces", "title": "Prayer (Fairacres Publication)", "number_of_pages": 24, "isbn_13": ["9780728300057"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0728300052"], "publish_date": "December 1973", "key": "/books/OL10593444M", "authors": [{"key": "/authors/OL1823216A"}], "latest_revision": 5, "oclc_numbers": ["16256568"], "works": [{"key": "/works/OL6731396W"}], "type": {"key": "/type/edition"}, "subjects": ["Personal Christian testimony & popular inspirational works", "Christianity"], "physical_dimensions": "5.8 x 3.9 x 0.2 inches", "revision": 5}
+/type/edition /books/OL10593839M 3 2021-09-16T05:37:09.826621 {"publishers": ["Voltaire Foundation"], "physical_format": "Unknown Binding", "title": "Miscellany/melanges (ST)", "isbn_13": ["9780729401371"], "isbn_10": ["0729401375"], "key": "/books/OL10593839M", "authors": [{"key": "/authors/OL3469195A"}, {"key": "/authors/OL2798669A"}], "oclc_numbers": ["264473742"], "type": {"key": "/type/edition"}, "works": [{"key": "/works/OL25087729W"}], "source_records": ["bwb:9780729401371"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-09-16T05:37:09.826621"}}
+/type/edition /books/OL10593862M 4 2021-10-04T13:02:54.187423 {"publishers": ["Voltaire Foundation"], "subtitle": "Corneille and Racine in Eighteenth-century France (Studies on Voltaire and the Eighteenth Century)", "title": "The Eagle and the Dove", "number_of_pages": 343, "isbn_13": ["9780729401814"], "physical_format": "Paperback", "isbn_10": ["0729401812"], "publish_date": "December 31, 1972", "key": "/books/OL10593862M", "authors": [{"key": "/authors/OL3469205A"}], "oclc_numbers": ["264474037"], "works": [{"key": "/works/OL9440981W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780729401814"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-10-04T13:02:54.187423"}}
+/type/edition /books/OL10594085M 4 2022-12-09T07:46:30.777304 {"title": "Leading Training Groups: a Manual of Practical Group Skills for Trainers", "subtitle": "A Manual of Practical Group Skills for Trainers", "authors": [{"key": "/authors/OL768488A"}], "publish_date": "August 20, 1991", "publishers": ["Thomson Learning"], "isbn_13": ["9780729512435"], "physical_format": "Paperback", "isbn_10": ["0729512436"], "oclc_numbers": ["27534392"], "type": {"key": "/type/edition"}, "subjects": ["Social, group or collective psychology"], "ocaid": "leadingtrainingg0000nels", "source_records": ["ia:leadingtrainingg0000nels"], "key": "/books/OL10594085M", "number_of_pages": 374, "works": [{"key": "/works/OL4101070W"}], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T07:46:30.777304"}}
+/type/edition /books/OL10594175M 4 2010-04-24T18:04:53.628328 {"publishers": ["Hyperion Books"], "number_of_pages": 276, "subtitle": "Study Guide - Marvellous Melbourne", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:04:53.628328"}, "title": "The Australian City Unit a", "type": {"key": "/type/edition"}, "identifiers": {"goodreads": ["2249544"]}, "isbn_13": ["9780730003694"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0730003698"], "publish_date": "December 1986", "key": "/books/OL10594175M", "authors": [{"key": "/authors/OL3270067A"}], "latest_revision": 4, "works": [{"key": "/works/OL9205843W"}], "physical_format": "Hardcover", "subjects": ["History - General", "Art & Art Instruction"], "revision": 4}
+/type/edition /books/OL10594291M 4 2011-04-29T11:45:13.460365 {"publishers": ["Hyperion Books"], "languages": [{"key": "/languages/eng"}], "identifiers": {"goodreads": ["4977527"]}, "last_modified": {"type": "/type/datetime", "value": "2011-04-29T11:45:13.460365"}, "title": "Introducing Modelled Variability", "physical_format": "Paperback", "number_of_pages": 58, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780730013037"], "isbn_10": ["0730013030"], "publish_date": "December 1991", "key": "/books/OL10594291M", "authors": [{"key": "/authors/OL3469372A"}, {"key": "/authors/OL1992560A"}], "latest_revision": 4, "oclc_numbers": ["27545312"], "type": {"key": "/type/edition"}, "subjects": ["Probability & Statistics - General", "Mathematics"], "revision": 4}
+/type/edition /books/OL10594740M 4 2011-04-25T14:17:14.224567 {"isbn_13": ["9780731689170"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2011-04-25T14:17:14.224567"}, "title": "Australian Sheep Dogs - Training & Handling", "identifiers": {"librarything": ["7193378"]}, "covers": [2558729], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Hardcover", "isbn_10": ["0731689178"], "latest_revision": 4, "key": "/books/OL10594740M", "oclc_numbers": ["24328277"], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10595691M 4 2011-04-27T19:09:16.405093 {"publishers": ["Rigby"], "identifiers": {"librarything": ["3503012"]}, "subtitle": "A play", "physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T19:09:16.405093"}, "latest_revision": 4, "key": "/books/OL10595691M", "authors": [{"key": "/authors/OL836145A"}], "subjects": ["Folklore"], "languages": [{"key": "/languages/eng"}], "title": "The three little pigs", "number_of_pages": 16, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780732719951"], "isbn_10": ["073271995X"], "publish_date": "1998", "oclc_numbers": ["37270392"], "works": [{"key": "/works/OL4303111W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10595740M 3 2011-01-08T00:29:07.439956 {"publishers": ["Rigby"], "physical_format": "Paperback", "classifications": {}, "last_modified": {"type": "/type/datetime", "value": "2011-01-08T00:29:07.439956"}, "title": "LT 2-C Gdr Vicky/High Jumperis", "notes": {"type": "/type/text", "value": "Surprise and Discovery/Literacy 2000 Stage 6"}, "identifiers": {}, "isbn_13": ["9780732720629"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0732720621"], "publish_date": "August 1996", "key": "/books/OL10595740M", "authors": [{"key": "/authors/OL3469741A"}], "latest_revision": 3, "works": [{"key": "/works/OL9441555W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Textbooks"], "revision": 3}
+/type/edition /books/OL10595892M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Paperback", "weight": "10.6 ounces", "publishers": ["Mimosa Publications"], "number_of_pages": 14, "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780732726317"], "isbn_10": ["073272631X"], "publish_date": "January 2001", "key": "/books/OL10595892M", "authors": [{"key": "/authors/OL2803310A"}, {"key": "/authors/OL2803314A"}], "title": "Baby Bear's Quilt (Mathtales)", "type": {"key": "/type/edition"}, "subjects": ["Mathematics", "Geometry", "Measurement", "Study and teaching (Elementary)"], "physical_dimensions": "16.8 x 12.6 x 0.3 inches", "revision": 1}
+/type/edition /books/OL10596138M 8 2022-12-08T22:12:47.237363 {"publishers": ["Mcmillian"], "source_records": ["amazon:0732910110", "ia:childrenarefromh0000gray_d3k9", "promise:bwb_daily_pallets_2021-02-15"], "title": "Children Are from Heaven", "identifiers": {"librarything": ["115871"], "goodreads": ["2671484"]}, "physical_format": "Paperback", "isbn_10": ["0732910110"], "publish_date": "1999", "key": "/books/OL10596138M", "authors": [{"key": "/authors/OL2623606A"}], "oclc_numbers": ["154652346"], "works": [{"key": "/works/OL263457W"}], "type": {"key": "/type/edition"}, "covers": [11027253], "ocaid": "childrenarefromh0000gray_d3k9", "local_id": ["urn:bwbsku:W6-ATD-365"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-08T22:12:47.237363"}}
+/type/edition /books/OL10596212M 6 2011-04-26T16:07:53.704029 {"publishers": ["Macmillan Education Ltd"], "identifiers": {"librarything": ["8550055"], "goodreads": ["1623615"]}, "last_modified": {"type": "/type/datetime", "value": "2011-04-26T16:07:53.704029"}, "title": "English Essentials", "type": {"key": "/type/edition"}, "number_of_pages": 200, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780732919122"], "isbn_10": ["0732919126"], "publish_date": "August 1, 1999", "key": "/books/OL10596212M", "authors": [{"key": "/authors/OL50556A"}], "latest_revision": 6, "oclc_numbers": ["38319201"], "works": [{"key": "/works/OL650918W"}], "physical_format": "Paperback", "subjects": ["English (ie as school subject)", "English"], "revision": 6}
+/type/edition /books/OL10596235M 5 2012-05-31T21:10:49.187112 {"publishers": ["Macmillan Education"], "physical_format": "Paperback", "classifications": {}, "last_modified": {"type": "/type/datetime", "value": "2012-05-31T21:10:49.187112"}, "title": "REPORTING IN AUSTRALIA", "notes": {"type": "/type/text", "value": "Second Edition"}, "identifiers": {"librarything": ["9264185"], "goodreads": ["2223899"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "edition_name": "Second Edition", "isbn_10": ["0732926068"], "publish_date": "1996", "key": "/books/OL10596235M", "authors": [{"key": "/authors/OL414261A"}], "latest_revision": 5, "works": [{"key": "/works/OL2796304W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10596299M 6 2011-04-30T01:36:47.200385 {"publishers": ["ABC Books"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-30T01:36:47.200385"}, "title": "Political Speak Updated For The 1993 Election", "identifiers": {"librarything": ["5006280"], "goodreads": ["5694895"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780733302909"], "isbn_10": ["0733302904"], "publish_date": "1993", "key": "/books/OL10596299M", "authors": [{"key": "/authors/OL602694A"}], "latest_revision": 6, "oclc_numbers": ["38325042"], "works": [{"key": "/works/OL3572261W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL10596407M 5 2021-10-18T10:37:47.115297 {"publishers": ["Hodder & Stoughton"], "physical_format": "Paperback", "title": "Mars & Venus Together Forever - Relationship Skills for Lasting Love", "identifiers": {"goodreads": ["1463456"]}, "publish_date": "1999", "key": "/books/OL10596407M", "authors": [{"key": "/authors/OL2623606A"}], "type": {"key": "/type/edition"}, "isbn_10": ["0733611230"], "isbn_13": ["9780733611230"], "oclc_numbers": ["154625476"], "classifications": {}, "works": [{"key": "/works/OL263482W"}], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-10-18T10:37:47.115297"}}
+/type/edition /books/OL10596735M 7 2011-06-08T04:20:45.243898 {"publishers": ["Lothian Books"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-06-08T04:20:45.243898"}, "title": "Frames", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "identifiers": {"librarything": ["3447681"], "goodreads": ["2919219"]}, "covers": [2559202], "edition_name": "1st edition", "isbn_13": ["9780734405050"], "isbn_10": ["0734405057"], "publish_date": "March 1, 2003", "key": "/books/OL10596735M", "authors": [{"key": "/authors/OL3469927A"}], "latest_revision": 7, "oclc_numbers": ["155853636"], "works": [{"key": "/works/OL9441779W"}], "type": {"key": "/type/edition"}, "revision": 7}
+/type/edition /books/OL10596841M 4 2011-04-28T14:02:14.314442 {"publishers": ["Replica Books"], "subtitle": "Miracle of Life", "weight": "1.4 pounds", "covers": [2559274], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-28T14:02:14.314442"}, "latest_revision": 4, "key": "/books/OL10596841M", "authors": [{"key": "/authors/OL617834A"}], "subjects": ["Life Sciences - Biology - General", "Science", "Desert biology", "Desert ecology", "Deserts", "Science/Mathematics"], "languages": [{"key": "/languages/eng"}], "title": "Deserts", "number_of_pages": 162, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780735102019"], "isbn_10": ["0735102015"], "publish_date": "August 2002", "oclc_numbers": ["51028744"], "works": [{"key": "/works/OL3625641W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "11.2 x 8.5 x 0.5 inches", "revision": 4}
+/type/edition /books/OL10597055M 2 2009-12-15T00:51:18.512062 {"physical_format": "Stationery", "subtitle": "Photo Albums", "title": "Where's the Bee", "isbn_10": ["0735302413"], "publishers": ["Galison Books"], "isbn_13": ["9780735302419"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:51:18.512062"}, "publish_date": "May 2001", "key": "/books/OL10597055M", "authors": [{"key": "/authors/OL831685A"}], "latest_revision": 2, "subjects": ["Non-Classifiable", "Blank Books/Journals"], "works": [{"key": "/works/OL4286639W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10597103M 2 2009-12-15T00:51:18.512062 {"physical_format": "Stationery", "subtitle": "Wire-O Journal", "title": "A Day at the Museum", "isbn_10": ["0735303215"], "publishers": ["Galison Books"], "isbn_13": ["9780735303218"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:51:18.512062"}, "publish_date": "May 2001", "key": "/books/OL10597103M", "authors": [{"key": "/authors/OL3064911A"}], "latest_revision": 2, "subjects": ["Non-Classifiable", "Blank Books/Journals"], "works": [{"key": "/works/OL8896887W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10597240M 2 2011-05-05T00:27:40.188300 {"publishers": ["Galison Books"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2011-05-05T00:27:40.188300"}, "title": "Victorian Flowers", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780735311077"], "edition_name": "Note Cards edition", "physical_format": "Paperback", "isbn_10": ["0735311072"], "publish_date": "May 2001", "key": "/books/OL10597240M", "latest_revision": 2, "works": [{"key": "/works/OL6735804W"}], "type": {"key": "/type/edition"}, "subjects": ["Non-Classifiable", "Novelty"], "revision": 2}
+/type/edition /books/OL10597367M 7 2020-12-03T19:42:19.006334 {"publishers": ["American Institute of Physics"], "number_of_pages": 577, "subtitle": "8th Conference, Prague, Czech Republic, 2-6 July 2001 (AIP Conference Proceedings)", "weight": "2.3 pounds", "covers": [2559449], "physical_format": "Hardcover", "key": "/books/OL10597367M", "contributions": ["J. Adam (Editor)", "P. Bydzovsky (Editor)", "J. Mares (Editor)"], "subjects": ["Nuclear structure physics", "Particle & high-energy physics", "Science", "Science/Mathematics", "Optics", "Physics", "Solid State Physics", "Science / Nuclear Physics", "effective field theory", "few-nucleon systems", "hadron structure", "meson dynamics", "physics of strangeness", "relativistic methods", "Congresses", "Mesons", "Nuclear Physics", "Particles (Nuclear physics)"], "edition_name": "1 edition", "languages": [{"key": "/languages/eng"}], "source_records": ["amazon:0735400474", "marc:marc_loc_updates/v36.i10.records.utf8:14419906:1217", "marc:marc_loc_2016/BooksAll.2016.part28.utf8:241717903:1217"], "title": "Mesons and Light Nuclei", "identifiers": {"goodreads": ["7289815"]}, "isbn_13": ["9780735400474"], "isbn_10": ["0735400474"], "publish_date": "December 14, 2001", "works": [{"key": "/works/OL18578425W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.4 x 6.7 x 1.4 inches", "lccn": ["2001097920"], "lc_classifications": ["QC793 .I55417 2001"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-03T19:42:19.006334"}}
+/type/edition /books/OL105975M 6 2020-12-02T08:58:31.484867 {"subtitle": "teorii\u0361a\ufe21, tekhnologii\u0361a\ufe21 i materialy", "covers": [9578664], "lc_classifications": ["TS247 .V97 1998"], "ocaid": "isbn_5895940064", "contributions": ["Vasil\u02b9ev, V. A.", "Mitin, Boris Sergeevich."], "source_records": ["marc:marc_records_scriblio_net/part28.dat:67933520:754", "ia:isbn_5895940064", "marc:marc_loc_2016/BooksAll.2016.part28.utf8:94965551:770"], "title": "Vysokoskorostnoe zatverdevanie razplava", "languages": [{"key": "/languages/rus"}], "subjects": ["Metals -- Rapid solidification processing."], "publish_country": "ru ", "by_statement": "V.A. Vasil\u02b9ev ... [et al.] ; pod nauchnoi\u0306 redakt\u0361s\ufe21iei\u0306 B.S. Mitina.", "oclc_numbers": ["41944930"], "type": {"key": "/type/edition"}, "publishers": ["\"SP Intermet Inzhiniring\""], "key": "/books/OL105975M", "publish_places": ["Moskva"], "pagination": "394, [2] p. :", "lccn": ["99223333"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. [395])."}, "number_of_pages": 394, "isbn_10": ["5895940064"], "publish_date": "1998", "works": [{"key": "/works/OL19243149W"}], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-02T08:58:31.484867"}}
+/type/edition /books/OL10597669M 5 2010-08-17T03:01:01.876326 {"publishers": ["Aspen Law & Business"], "identifiers": {"goodreads": ["6974722"], "librarything": ["5611063"]}, "subtitle": "Management, Decumentation, and Presentation of Claims (2001 Cumulative Supplement)", "weight": "9.6 ounces", "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-08-17T03:01:01.876326"}, "latest_revision": 5, "key": "/books/OL10597669M", "authors": [{"key": "/authors/OL539388A"}], "subjects": ["Construction", "Law"], "languages": [{"key": "/languages/eng"}], "title": "Construction Claims Desk Book", "number_of_pages": 124, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780735515185"], "isbn_10": ["0735515182"], "publish_date": "December 2000", "works": [{"key": "/works/OL3297109W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10 x 7 x 0.5 inches", "revision": 5}
+/type/edition /books/OL10598089M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Aspen Publishers"], "title": "Structuring Venture Capital + Mergers & Acquisitions", "isbn_13": ["9780735528765"], "isbn_10": ["0735528764"], "publish_date": "December 27, 2001", "key": "/books/OL10598089M", "authors": [{"key": "/authors/OL2666070A"}, {"key": "/authors/OL2803640A"}], "type": {"key": "/type/edition"}, "subjects": ["Taxation", "Taxation - Corporate", "Law", "Legal Reference / Law Profession"], "revision": 1}
+/type/edition /books/OL10598113M 4 2011-04-25T23:24:59.977717 {"publishers": ["Aspen Law & Business Publishers"], "weight": "11 ounces", "covers": [2559492], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-25T23:24:59.977717"}, "latest_revision": 4, "key": "/books/OL10598113M", "authors": [{"key": "/authors/OL3470197A"}], "subjects": ["Intellectual Property", "Legal Reference / Law Profession", "Law"], "languages": [{"key": "/languages/eng"}], "title": "2002 Intellectual Property Law Update", "number_of_pages": 222, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780735529403"], "isbn_10": ["073552940X"], "publish_date": "September 2002", "oclc_numbers": ["51091091"], "works": [{"key": "/works/OL9442074W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.2 x 6.1 x 0.6 inches", "revision": 4}
+/type/edition /books/OL10598191M 2 2009-12-15T00:51:19.711921 {"physical_format": "Hardcover", "publishers": ["Aspen Pub"], "isbn_10": ["0735531110"], "number_of_pages": 446, "isbn_13": ["9780735531116"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:51:19.711921"}, "publish_date": "April 2002", "latest_revision": 2, "key": "/books/OL10598191M", "authors": [{"key": "/authors/OL3470201A"}], "title": "Section 1983 Forms, 2002 Cumulative Supplement", "subjects": ["Law"], "works": [{"key": "/works/OL9442077W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10598435M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780735537354"], "physical_format": "Hardcover", "weight": "3 pounds", "languages": [{"key": "/languages/eng"}], "publishers": ["Aspen Pub"], "title": "Securities Regulation", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "edition_name": "3rd edition", "isbn_10": ["0735537356"], "publish_date": "April 2003", "key": "/books/OL10598435M", "authors": [{"key": "/authors/OL460684A"}, {"key": "/authors/OL443218A"}], "type": {"key": "/type/edition"}, "subjects": ["Law"], "physical_dimensions": "9.2 x 6.2 x 2.2 inches", "revision": 1}
+/type/edition /books/OL10598456M 4 2010-04-24T18:05:23.118702 {"publishers": ["Aspen Publishers"], "physical_format": "Paperback", "key": "/books/OL10598456M", "weight": "1.3 pounds", "title": "Executive Compensation Answer Book 2004", "identifiers": {"goodreads": ["4296631"]}, "isbn_13": ["9780735538023"], "edition_name": "Supplement edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0735538026"], "latest_revision": 4, "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:05:23.118702"}, "authors": [{"key": "/authors/OL251586A"}], "publish_date": "November 30, 2003", "works": [{"key": "/works/OL2060718W"}], "type": {"key": "/type/edition"}, "subjects": ["Labor & Employment", "Reference", "Law", "Legal Reference / Law Profession"], "physical_dimensions": "9 x 6.3 x 0.9 inches", "revision": 4}
+/type/edition /books/OL10598720M 3 2011-04-30T08:53:13.582249 {"publishers": ["Aspen Law & Business"], "subtitle": "Essay and Multiple-Choice Questions & Answers", "weight": "12 ounces", "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-30T08:53:13.582249"}, "latest_revision": 3, "key": "/books/OL10598720M", "authors": [{"key": "/authors/OL1607806A"}], "subjects": ["Constitutional", "Legal Education", "Law"], "isbn_13": ["9780735549319"], "title": "Siegel's Constitutional Law", "number_of_pages": 209, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0735549311"], "publish_date": "December 2003", "oclc_numbers": ["54443614"], "works": [{"key": "/works/OL6223054W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.9 x 6.9 x 0.6 inches", "revision": 3}
+/type/edition /books/OL10599005M 6 2011-04-30T14:43:09.282872 {"publishers": ["Aspen Publishers"], "identifiers": {"goodreads": ["2626399"]}, "subtitle": "2007 Statutory Supplement", "weight": "1.4 pounds", "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-30T14:43:09.282872"}, "latest_revision": 6, "key": "/books/OL10599005M", "authors": [{"key": "/authors/OL462208A"}], "subjects": ["Bankruptcy & Insolvency", "Law", "Legal Reference / Law Profession"], "edition_name": "Supplement edition", "languages": [{"key": "/languages/eng"}], "title": "Bankruptcy and Article 9", "number_of_pages": 422, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780735563988"], "isbn_10": ["0735563985"], "publish_date": "July 13, 2007", "oclc_numbers": ["165168378"], "works": [{"key": "/works/OL3008913W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.9 x 6.9 x 0.9 inches", "revision": 6}
+/type/edition /books/OL10599855M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780735905412"], "physical_format": "CD-ROM", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["MacAcademy / Windows Academy"], "title": "Photoshop 5.0 Training CD #3 - Macintosh / Windows", "edition_name": "1.3 edition", "isbn_10": ["073590541X"], "publish_date": "June 1, 1998", "key": "/books/OL10599855M", "authors": [{"key": "/authors/OL3470475A"}, {"key": "/authors/OL3470480A"}, {"key": "/authors/OL3470476A"}], "type": {"key": "/type/edition"}, "subjects": ["Photoshop"], "revision": 1}
+/type/edition /books/OL10599944M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780736000918"], "physical_format": "Hardcover", "subtitle": "High Performance Techniques And Training", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "publishers": ["Human Kinetics Pub"], "title": "Jumps", "edition_name": "Video edition", "isbn_10": ["0736000917"], "publish_date": "December 31, 1999", "key": "/books/OL10599944M", "type": {"key": "/type/edition"}, "subjects": ["Family & Health", "Popular medicine", "Reference works", "Reference", "Health & Fitness", "Health/Fitness"], "revision": 1}
+/type/edition /books/OL10600167M 9 2022-12-06T22:52:19.050926 {"publishers": ["Human Kinetics Publishers"], "number_of_pages": 270, "weight": "1 pounds", "covers": [2560047], "physical_format": "Paperback", "key": "/books/OL10600167M", "authors": [{"key": "/authors/OL3470563A"}, {"key": "/authors/OL3470564A"}, {"key": "/authors/OL942570A"}], "subjects": ["Sports training & coaching", "Medical", "Consumer Health", "Exercise", "Pediatrics", "Physical fitness for children"], "edition_name": "1 edition", "languages": [{"key": "/languages/eng"}], "source_records": ["bwb:9780736051323", "marc:marc_loc_2016/BooksAll.2016.part33.utf8:116720083:964", "ia:physicalactivity0000ward", "promise:bwb_daily_pallets_2022-03-17"], "title": "Physical Activity Interventions in Children And Adolescents (Physical Activity Intervention)", "identifiers": {"goodreads": ["2817014"]}, "isbn_13": ["9780736051323"], "isbn_10": ["0736051325"], "publish_date": "November 30, 2006", "works": [{"key": "/works/OL21412106W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.9 x 6 x 0.8 inches", "lccn": ["2006020608"], "lc_classifications": ["RJ133 .W37 2007", "RJ133.W37 2007"], "ocaid": "physicalactivity0000ward", "local_id": ["urn:bwbsku:KP-896-897"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-06T22:52:19.050926"}}
+/type/edition /books/OL10600236M 7 2021-09-28T20:25:35.679158 {"publishers": ["Human Kinetics Publishers"], "identifiers": {"goodreads": ["426333"]}, "weight": "1.1 pounds", "covers": [2560075], "physical_format": "Hardcover", "key": "/books/OL10600236M", "authors": [{"key": "/authors/OL3470560A"}, {"key": "/authors/OL2804890A"}, {"key": "/authors/OL2804891A"}], "subjects": ["Elementary", "Education / Teaching", "Children", "Health", "Health and hygiene", "Juvenile literature"], "isbn_13": ["9780736062305"], "source_records": ["bwb:9780736062305", "marc:marc_loc_2016/BooksAll.2016.part31.utf8:168760987:1233"], "title": "Wow! Cody Investigates The World Of Wellness (World of Wellness Health Education Series)", "number_of_pages": 1, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0736062300"], "publish_date": "March 2005", "works": [{"key": "/works/OL21712197W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "11.1 x 8.5 x 0.4 inches", "lccn": ["2004027984"], "lc_classifications": ["LB1587.A3 N93 2005", "LB1587.A3N93 2005"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-09-28T20:25:35.679158"}}
+/type/edition /books/OL10600500M 8 2021-12-26T22:32:03.064621 {"publishers": ["Hampton-Brown Books"], "number_of_pages": 8, "covers": [9503783], "physical_format": "Paperback", "key": "/books/OL10600500M", "authors": [{"key": "/authors/OL3470655A"}], "ocaid": "ride0000caso", "languages": [{"key": "/languages/eng"}], "source_records": ["ia:ride0000caso", "bwb:9780736217934"], "title": "The Ride", "identifiers": {"goodreads": ["2860316"]}, "isbn_13": ["9780736217934"], "isbn_10": ["0736217932"], "publish_date": "January 2004", "oclc_numbers": ["647989099"], "works": [{"key": "/works/OL9442607W"}], "type": {"key": "/type/edition"}, "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-26T22:32:03.064621"}}
+/type/edition /books/OL1060067M 3 2020-11-18T03:01:15.648254 {"publishers": ["Sa\u0304jha\u0304 Praka\u0304s\u0301ana"], "lc_classifications": ["PK2598.B47 K44 1992"], "latest_revision": 3, "key": "/books/OL1060067M", "authors": [{"key": "/authors/OL567428A"}], "publish_places": ["[Kathmandu]"], "languages": [{"key": "/languages/nep"}], "pagination": "151 p. ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:96664331:609"], "title": "Kehi\u0304 a\u0304tmaparaka nibandhaharu\u0304", "lccn": ["93905189"], "notes": {"type": "/type/text", "value": "Essays.\nIn Nepali."}, "number_of_pages": 151, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "edition_name": "Sam\u0323skaran\u0323a 1.", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T03:01:15.648254"}, "publish_date": "1992", "publish_country": "np ", "by_statement": "A\u0304nandadeva Bhat\u0323t\u0323a.", "works": [{"key": "/works/OL3434018W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL1060085M 3 2020-11-18T03:01:28.260855 {"publishers": ["Jn\u0303a\u0304naman\u0323d\u0323ala Limit\u0323ed\u0323a"], "description": {"type": "/type/text", "value": "Encyclopedia of Hindu religion and on Vedic literature."}, "lc_classifications": ["BL1111.4 .G38 1993"], "latest_revision": 3, "key": "/books/OL1060085M", "authors": [{"key": "/authors/OL107355A"}], "publish_places": ["Va\u0304ra\u0304n\u0323asi\u0304"], "pagination": "10, 857 p. ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:96679377:854"], "title": "Hindutva, Hindu\u0304 dharmakos\u0301a", "lccn": ["93905209"], "notes": {"type": "/type/text", "value": "In Hindi; includes passages in Sanskrit.\nIncludes index."}, "number_of_pages": 857, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/hin"}], "subjects": ["Hinduism -- Sacred books..", "Vedic literature -- History and criticism."], "publish_date": "1993", "publish_country": "ii ", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T03:01:28.260855"}, "by_statement": "Ra\u0304mada\u0304sa Gaur\u0323a.", "works": [{"key": "/works/OL1062466W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL1060128M 3 2020-11-18T03:02:01.222137 {"publishers": ["Pa\u0304rs\u0301va Praka\u0304s\u0301ana"], "lc_classifications": ["PK1859.J612 S26 1984"], "latest_revision": 3, "key": "/books/OL1060128M", "authors": [{"key": "/authors/OL308563A"}], "publish_places": ["Amada\u0304va\u0304da"], "languages": [{"key": "/languages/guj"}], "pagination": "16, 140 p. ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:96721512:556"], "title": "Samud\u0323i\u0304", "lccn": ["93905266"], "notes": {"type": "/type/text", "value": "Novel.\nIn Gujarati."}, "number_of_pages": 140, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "edition_name": "1. a\u0304vr\u0325tti.", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T03:02:01.222137"}, "publish_date": "1984", "publish_country": "ii ", "by_statement": "Yoges\u0301a Joshi\u0304.", "works": [{"key": "/works/OL2316553W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10601603M 5 2010-04-24T18:05:23.118702 {"publishers": ["Books on Tape, Inc."], "physical_format": "Audio Cassette", "key": "/books/OL10601603M", "title": "In Pharaoh's Army", "identifiers": {"goodreads": ["45781"]}, "covers": [2560546], "isbn_13": ["9780736630573"], "isbn_10": ["0736630570"], "publish_date": "May 19, 1995", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:05:23.118702"}, "authors": [{"key": "/authors/OL454029A"}], "latest_revision": 5, "works": [{"key": "/works/OL2970041W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10601703M 5 2010-04-24T18:05:23.118702 {"publishers": ["Books on Tape, Inc."], "physical_format": "Audio Cassette", "subtitle": " Ms. Behavior's Guide To Gay & Lesbian Etiquette", "title": "\"Do What I Say\"", "isbn_10": ["0736636579"], "identifiers": {"goodreads": ["421785"]}, "covers": [2560619], "isbn_13": ["9780736636575"], "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:05:23.118702"}, "publish_date": "May 1, 1997", "key": "/books/OL10601703M", "authors": [{"key": "/authors/OL658868A"}], "latest_revision": 5, "works": [{"key": "/works/OL3750576W"}], "type": {"key": "/type/edition"}, "subjects": ["Outlet"], "revision": 5}
+/type/edition /books/OL10601795M 5 2011-06-17T22:32:18.121344 {"publishers": ["Books on Tape, Inc."], "last_modified": {"type": "/type/datetime", "value": "2011-06-17T22:32:18.121344"}, "title": "The Life Of Samuel Johnson Part 2 Of 2", "identifiers": {"goodreads": ["2777902"]}, "isbn_13": ["9780736639514"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Audio Cassette", "isbn_10": ["0736639519"], "publish_date": "January 1, 1989", "key": "/books/OL10601795M", "authors": [{"key": "/authors/OL348127A"}], "latest_revision": 5, "works": [{"key": "/works/OL15342039W"}], "type": {"key": "/type/edition"}, "subjects": ["Outlet"], "revision": 5}
+/type/edition /books/OL10601949M 7 2011-04-30T11:30:23.469611 {"publishers": ["Books On Tape"], "subtitle": "A Woman's Fury, A Mother's Sacrifice", "covers": [2560717], "edition_name": "Unabridged edition", "physical_format": "Audio Cassette", "last_modified": {"type": "/type/datetime", "value": "2011-04-30T11:30:23.469611"}, "latest_revision": 7, "key": "/books/OL10601949M", "authors": [{"key": "/authors/OL78937A"}], "contributions": ["Kate Reading (Narrator)"], "isbn_13": ["9780736646277"], "title": "Bitter Harvest", "identifiers": {"librarything": ["260908"], "goodreads": ["469737"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0736646272"], "publish_date": "1999", "oclc_numbers": ["42292467"], "works": [{"key": "/works/OL892125W"}], "type": {"key": "/type/edition"}, "revision": 7}
+/type/edition /books/OL10602016M 5 2011-04-22T20:52:43.131974 {"publishers": ["Books on Tape, Inc."], "last_modified": {"type": "/type/datetime", "value": "2011-04-22T20:52:43.131974"}, "weight": "1.4 pounds", "title": "Two Lucky People Part 1 Of 2", "identifiers": {"goodreads": ["1082061"]}, "isbn_13": ["9780736650410"], "covers": [2560756], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Audio Cassette", "isbn_10": ["0736650415"], "publish_date": "February 2, 2000", "key": "/books/OL10602016M", "authors": [{"key": "/authors/OL1232274A"}, {"key": "/authors/OL2760536A"}], "latest_revision": 5, "oclc_numbers": ["43896257"], "type": {"key": "/type/edition"}, "subjects": ["Outlet"], "physical_dimensions": "9.2 x 5.9 x 2.9 inches", "revision": 5}
+/type/edition /books/OL10602140M 6 2023-01-04T13:07:05.970467 {"publishers": ["Books On Tape"], "languages": [{"key": "/languages/eng"}], "identifiers": {"goodreads": ["1143602"]}, "title": "Special Ops - Part B {Unabridged Audio on Cassette} (Brotherhood of War series, Part II)", "type": {"key": "/type/edition"}, "number_of_pages": 8, "isbn_13": ["9780736663076"], "physical_format": "Audio Cassette", "isbn_10": ["073666307X"], "publish_date": "2001", "key": "/books/OL10602140M", "authors": [{"key": "/authors/OL23338A"}], "works": [{"key": "/works/OL7989769W"}], "contributions": ["Scott Brick (Amer.) (Narrator)"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2023-01-04T13:07:05.970467"}}
+/type/edition /books/OL10602175M 3 2022-04-07T21:58:34.546125 {"publishers": ["Books on Tape"], "weight": "4.8 ounces", "title": "It's a Dog's Life (Hank the Cowdog Vol 3)", "isbn_13": ["9780736668927"], "edition_name": "Unabridged edition", "physical_format": "Audio Cassette", "isbn_10": ["0736668926"], "publish_date": "January 1, 1995", "key": "/books/OL10602175M", "authors": [{"key": "/authors/OL27452A"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Audio - Fiction - General", "Audio Adult: Books On Tape"], "physical_dimensions": "6.8 x 4.8 x 0.8 inches", "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-04-07T21:58:34.546125"}}
+/type/edition /books/OL10602210M 4 2010-04-24T18:05:23.118702 {"publishers": ["Books on Tape, Inc."], "physical_format": "Audio Cassette", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:05:23.118702"}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "contributions": ["Scott Brick (Reader)"], "identifiers": {"goodreads": ["1483997"]}, "isbn_13": ["9780736675598"], "edition_name": "Unabridged edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0736675590"], "publish_date": "June 6, 2001", "key": "/books/OL10602210M", "authors": [{"key": "/authors/OL23880A"}], "title": "Water Touching Stone Part 2 Of 2", "latest_revision": 4, "works": [{"key": "/works/OL14924903W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10602636M 7 2020-12-14T08:34:34.159288 {"publishers": ["Zaner-Bloser, Incorporated"], "identifiers": {"librarything": ["2837666"], "goodreads": ["5456938"]}, "languages": [{"key": "/languages/eng"}], "number_of_pages": 32, "isbn_13": ["9780736729536"], "physical_format": "Hardcover", "isbn_10": ["0736729534"], "publish_date": "January 2005", "key": "/books/OL10602636M", "authors": [{"key": "/authors/OL1422231A"}], "title": "Sequoyah and the Cherokee Alphabet (Voices Reading)", "oclc_numbers": ["70131236"], "works": [{"key": "/works/OL5802156W"}], "type": {"key": "/type/edition"}, "subjects": ["Biography & Autobiography - General", "Children's Books/Ages 9-12 Fiction"], "lccn": ["2006271972"], "lc_classifications": ["E99.C5 S38913 2005"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part33.utf8:159905269:985"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-14T08:34:34.159288"}}
+/type/edition /books/OL10602872M 10 2022-07-18T22:38:44.058631 {"publishers": ["Capstone Press"], "identifiers": {"goodreads": ["2929254"]}, "weight": "7.4 ounces", "isbn_10": ["0736809066"], "covers": [5068415], "physical_format": "Library Binding", "lc_classifications": ["GV811.13 .T63 2002", "GV811.13.T63 2002"], "key": "/books/OL10602872M", "authors": [{"key": "/authors/OL1476151A"}], "isbn_13": ["9780736809061"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part01.utf8:6287848:725", "bwb:9780736809061"], "title": "Sailing Adventures (Dangerous Adventures)", "lccn": ["00013091"], "number_of_pages": 48, "languages": [{"key": "/languages/eng"}], "subjects": ["Sports & Recreation - Water Sports", "Juvenile Nonfiction", "Children's Books/Ages 9-12 Nonfiction", "Juvenile literature", "Sailing", "Children: Grades 3-4"], "publish_date": "August 2001", "oclc_numbers": ["45667823"], "works": [{"key": "/works/OL5951915W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.9 x 6.3 x 0.3 inches", "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-18T22:38:44.058631"}}
+/type/edition /books/OL10603060M 2 2009-12-08T01:41:45.946845 {"publishers": ["Pebble Plus"], "physical_format": "School & Library Binding", "subjects": ["General", "Animals - Insects, Spiders, etc.", "Juvenile Nonfiction", "Children's Books/Ages 4-8 Nonfiction", "Children: Grades 1-2"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_10": ["073682538X"], "number_of_pages": 24, "isbn_13": ["9780736825382"], "last_modified": {"type": "/type/datetime", "value": "2009-12-08T01:41:45.946845"}, "publish_date": "January 2004", "key": "/books/OL10603060M", "authors": [{"key": "/authors/OL24926A"}], "title": "Animal Homes", "latest_revision": 2, "works": [{"key": "/works/OL14872534W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL106030M 3 2020-12-02T08:59:17.504483 {"subject_place": ["Mexico", "San Luis Potosi\u0301"], "lc_classifications": ["F1219.1.S22 M43 1945"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part28.utf8:95012893:957"], "title": "Panorama indiano de San Luis Potosi\u0301 en la e\u0301poca prehispa\u0301nica", "languages": [{"key": "/languages/spa"}], "subjects": ["Indians of Mexico -- Mexico -- San Luis Potosi\u0301 -- History.", "Indians of Mexico -- Mexico -- San Luis Potosi\u0301 -- Social life and customs."], "publish_country": "mx ", "by_statement": "Joaqui\u0301n Meade.", "type": {"key": "/type/edition"}, "other_titles": ["Boleti\u0301n de la Sociedad Mexicana de Geografi\u0301a y Estadi\u0301stica ; t. 60, num. 4."], "publishers": ["Artes Gra\u0301ficas del Estado"], "key": "/books/OL106030M", "authors": [{"key": "/authors/OL71142A"}], "publish_places": ["Me\u0301xico"], "pagination": "p. 622-642 ;", "dewey_decimal_class": ["972/.4400497"], "notes": {"type": "/type/text", "value": "Cover title.\n\"Sobretiro de Tomo LX, Nu\u0301m. 4 del Boleti\u0301n de la Sociedad Mexicana de Geografi\u0301a y Estadi\u0301stica.\""}, "number_of_pages": 642, "lccn": ["99223406"], "publish_date": "1945", "works": [{"key": "/works/OL832485W"}], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-02T08:59:17.504483"}}
+/type/edition /books/OL10603401M 7 2022-07-18T22:33:33.108743 {"publishers": ["Yellow Umbrella Books"], "number_of_pages": 16, "weight": "4.8 ounces", "covers": [2561102], "physical_format": "Library Binding", "key": "/books/OL10603401M", "authors": [{"key": "/authors/OL26639A"}], "subjects": ["People & Places - General", "People & Places - United States", "Science & Nature - Earth Sciences", "Juvenile Nonfiction", "Children's Books/Ages 4-8 Fiction", "Spanish: Kindergarten"], "edition_name": "Tra edition", "languages": [{"key": "/languages/spa"}], "classifications": {}, "title": "Parques Nacionales/national Parks", "notes": {"type": "/type/text", "value": "Yellow Umbrella Books (Spanish)"}, "identifiers": {}, "isbn_13": ["9780736873567"], "isbn_10": ["0736873562"], "publish_date": "July 15, 2006", "oclc_numbers": ["76901903"], "works": [{"key": "/works/OL15039282W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "7.8 x 6.1 x 0.3 inches", "ocaid": "parquesnacionale0000trum", "lc_classifications": ["E160 .T7818 2006"], "source_records": ["ia:parquesnacionale0000trum", "bwb:9780736873567"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-18T22:33:33.108743"}}
+/type/edition /books/OL10603563M 7 2022-12-10T13:27:06.051362 {"publishers": ["Harvest House Publishers"], "number_of_pages": 112, "subtitle": "Etiquette for Making the Day Perfect", "weight": "9.9 ounces", "covers": [2561204], "physical_format": "Hardcover", "key": "/books/OL10603563M", "authors": [{"key": "/authors/OL22040A"}, {"key": "/authors/OL1515852A"}], "contributions": ["Kathryn Andrews Fincher (Illustrator)"], "subjects": ["Etiquette", "Weddings", "Christian Life - General", "Entertaining - General", "Marriage", "Family & Relationships", "Gifts", "Wedding etiquette", "Family/Marriage"], "isbn_13": ["9780736905664"], "title": "Social Graces for Your Wedding", "identifiers": {"goodreads": ["1479148"], "amazon": [""]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0736905669"], "publish_date": "January 2002", "oclc_numbers": ["47785576"], "type": {"key": "/type/edition"}, "physical_dimensions": "7.8 x 5.3 x 0.6 inches", "works": [{"key": "/works/OL23744050W"}], "lccn": ["2001038501"], "lc_classifications": ["BJ2051 .P53 2002"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part28.utf8:215816711:680", "promise:bwb_daily_pallets_2020-04-02"], "local_id": ["urn:bwbsku:527-BAA-918"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T13:27:06.051362"}}
+/type/edition /books/OL10603769M 6 2020-12-17T07:50:40.876590 {"number_of_pages": 144, "subtitle": "Making Your Home Beautiful and Your Life Clutter Free", "weight": "2.4 ounces", "covers": [2561385], "source_records": ["amazon:0736921346", "marc:marc_loc_2016/BooksAll.2016.part34.utf8:127438765:1071"], "title": "The One-Minute Home Organizer", "languages": [{"key": "/languages/eng"}], "subjects": ["Christian Life - Women's Issues", "General", "Christian Life", "Home Management", "Religion", "Christian women", "Home economics", "Homemakers", "Miscellanea", "Religious life"], "type": {"key": "/type/edition"}, "physical_dimensions": "8.1 x 5.3 x 0.4 inches", "publishers": ["Harvest House Publishers"], "physical_format": "Paperback", "key": "/books/OL10603769M", "authors": [{"key": "/authors/OL23155A"}], "identifiers": {"goodreads": ["2161625"]}, "isbn_13": ["9780736921343"], "isbn_10": ["0736921346"], "publish_date": "September 1, 2007", "works": [{"key": "/works/OL16061W"}], "lccn": ["2007021431"], "lc_classifications": ["TX309 .B37 2008"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-17T07:50:40.876590"}}
+/type/edition /books/OL10604080M 4 2010-04-24T18:05:23.118702 {"publishers": ["Cachet+products Inc"], "title": "Gel Expressions Rainbow Notepad", "isbn_10": ["073760624X"], "identifiers": {"goodreads": ["4718479"]}, "isbn_13": ["9780737606249"], "physical_format": "Spiral-bound", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:05:23.118702"}, "latest_revision": 4, "key": "/books/OL10604080M", "authors": [{"key": "/authors/OL3470874A"}], "works": [{"key": "/works/OL9442883W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10604184M 5 2010-08-17T03:02:31.659009 {"publishers": ["Greenhaven Press"], "identifiers": {"goodreads": ["6350169"], "librarything": ["8067916"]}, "weight": "5.1 ounces", "covers": [5068521], "edition_name": "1 edition", "physical_format": "Board book", "last_modified": {"type": "/type/datetime", "value": "2010-08-17T03:02:31.659009"}, "latest_revision": 5, "key": "/books/OL10604184M", "contributions": ["Louise I. Gerdes (Editor)", "Bonnie Szumski (Editor)", "Scott Barbour (Editor)"], "subjects": ["Social topics & ethical issues", "Social Problems (General) (Young Adult)", "Juvenile Nonfiction", "Children's Books/Young Adult Misc. Nonfiction", "Children: Young Adult (Gr. 10-12)", "General", "Social Sciences", "Social Issues - Drugs, Alcohol, & Substance Abuse", "Drug abuse", "Drug legalization", "Drugs", "Law and legislation", "United States"], "isbn_13": ["9780737706611"], "title": "At Issue Series - Legalizing Drugs (paperback) (At Issue Series)", "number_of_pages": 80, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0737706619"], "publish_date": "April 17, 2001", "type": {"key": "/type/edition"}, "physical_dimensions": "8.8 x 6.4 x 0.2 inches", "revision": 5}
+/type/edition /books/OL10604486M 5 2011-04-26T18:35:30.743315 {"publishers": ["Greenhaven Press"], "number_of_pages": 199, "weight": "8 ounces", "covers": [2561695], "physical_format": "Library Binding", "last_modified": {"type": "/type/datetime", "value": "2011-04-26T18:35:30.743315"}, "latest_revision": 5, "key": "/books/OL10604486M", "authors": [{"key": "/authors/OL2805539A"}], "subjects": ["Social Problems (General) (Young Adult)", "Juvenile Nonfiction", "Children's Books/Young Adult Misc. Nonfiction", "Children: Young Adult (Gr. 10-12)", "Abortion & Birth Control", "Social Issues - Pregnancy", "Abortion", "Moral and ethical aspects"], "isbn_13": ["9780737732733"], "title": "The Abortion Controversy (Current Controversies)", "identifiers": {"librarything": ["5499880"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0737732733"], "publish_date": "May 24, 2007", "oclc_numbers": ["82367870"], "works": [{"key": "/works/OL8411775W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.1 x 6.1 x 0.6 inches", "revision": 5}
+/type/edition /books/OL10604805M 9 2022-08-17T18:53:53.461771 {"publishers": ["Greenhaven Press"], "physical_format": "Library Binding", "source_records": ["ia:conflictresoluti0000unse_v0p2", "marc:marc_loc_updates/v36.i14.records.utf8:13960425:3241", "marc:marc_loc_updates/v37.i21.records.utf8:6152620:3760", "marc:marc_loc_updates/v36.i15.records.utf8:10342675:3246", "marc:marc_loc_2016/BooksAll.2016.part35.utf8:110394792:3760", "bwb:9780737739923"], "title": "Conflict Resolution (Opposing Viewpoints)", "identifiers": {"librarything": ["6166572"]}, "isbn_13": ["9780737739923"], "covers": [9833274], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0737739924"], "publish_date": "April 2008", "key": "/books/OL10604805M", "ocaid": "conflictresoluti0000unse_v0p2", "works": [{"key": "/works/OL18138493W"}], "type": {"key": "/type/edition"}, "lccn": ["2008014670"], "lc_classifications": ["HM1126 .C648 2008", "HM1126.C648 2008"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-17T18:53:53.461771"}}
+/type/edition /books/OL10605322M 6 2011-04-30T15:34:52.970894 {"publishers": ["Ibm"], "identifiers": {"goodreads": ["1689163"]}, "covers": [2561942], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-30T15:34:52.970894"}, "latest_revision": 6, "key": "/books/OL10605322M", "authors": [{"key": "/authors/OL2805850A"}], "subjects": ["Programming - General", "Computers", "Computer Books: General"], "languages": [{"key": "/languages/eng"}], "title": "Data Sharing Cross Platform Extension Xpe Implementation Guide", "number_of_pages": 132, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780738400211"], "isbn_10": ["0738400211"], "publish_date": "July 1998", "oclc_numbers": ["44867853"], "works": [{"key": "/works/OL8412546W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL10605521M 4 2011-04-27T00:13:12.261710 {"publishers": ["Ibm"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2011-04-27T00:13:12.261710"}, "title": "Creating Custom Monitors for Tivoli Distributed Monitoring", "number_of_pages": 246, "isbn_13": ["9780738403014"], "covers": [2562136], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0738403016"], "publish_date": "May 1998", "key": "/books/OL10605521M", "authors": [{"key": "/authors/OL2805850A"}], "latest_revision": 4, "oclc_numbers": ["44844565"], "works": [{"key": "/works/OL8412522W"}], "type": {"key": "/type/edition"}, "subjects": ["Programming - General", "Computers", "Computer Books: General"], "revision": 4}
+/type/edition /books/OL10605785M 6 2011-04-25T20:50:45.763858 {"publishers": ["Ibm"], "identifiers": {"goodreads": ["1440126"]}, "covers": [2562407], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-25T20:50:45.763858"}, "latest_revision": 6, "key": "/books/OL10605785M", "authors": [{"key": "/authors/OL2805850A"}], "subjects": ["Programming - General", "Computers", "Computer Books: General"], "languages": [{"key": "/languages/eng"}], "title": "Enterprise Web Serving With the Lotus Domino Go Webserver for Os/390", "number_of_pages": 284, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780738407012"], "isbn_10": ["0738407011"], "publish_date": "October 1998", "oclc_numbers": ["44806033"], "works": [{"key": "/works/OL8412778W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL10605923M 3 2010-04-13T06:10:55.976267 {"publishers": ["Ibm"], "number_of_pages": 230, "weight": "12.8 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0738409820"], "title": "Using Ispf/Sclm for Automated and Controlled Software Development", "isbn_13": ["9780738409825"], "covers": [2562545], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:10:55.976267"}, "latest_revision": 3, "key": "/books/OL10605923M", "authors": [{"key": "/authors/OL2805850A"}], "publish_date": "October 1996", "works": [{"key": "/works/OL8414008W"}], "type": {"key": "/type/edition"}, "subjects": ["Programming - General", "Computers", "Computer Books: General"], "physical_dimensions": "8.8 x 7 x 0.8 inches", "revision": 3}
+/type/edition /books/OL10606496M 5 2010-12-08T18:25:59.745305 {"publishers": ["Ibm"], "identifiers": {"librarything": ["5736883"]}, "covers": [2563116], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-12-08T18:25:59.745305"}, "latest_revision": 5, "key": "/books/OL10606496M", "authors": [{"key": "/authors/OL2805850A"}], "subjects": ["Programming - General", "Computers", "Computer Books: General"], "isbn_13": ["9780738421681"], "classifications": {}, "title": "AIX 5L Differences Guide Version 5.1 Edition", "notes": {"type": "/type/text", "value": "IBM Redbooks"}, "number_of_pages": 536, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0738421685"], "publish_date": "April 22, 2002", "works": [{"key": "/works/OL8412289W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10606525M 9 2022-11-12T00:02:15.589178 {"publishers": ["Ibm"], "identifiers": {"goodreads": ["2503418"]}, "weight": "2.2 pounds", "isbn_10": ["0738422126"], "covers": [2563144], "physical_format": "Paperback", "key": "/books/OL10606525M", "authors": [{"key": "/authors/OL2805850A"}], "contributions": ["John Ganci (Editor)"], "languages": [{"key": "/languages/eng"}], "classifications": {}, "title": "Websphere Commerce Suite V5.1 Handbook", "notes": {"type": "/type/text", "value": "Ibm Redbooks,"}, "number_of_pages": 654, "isbn_13": ["9780738422121"], "edition_name": "1st edition", "subjects": ["Programming - General", "Computers", "Computer programs", "Electronic commerce", "WebSphere", "Computer Books: General"], "publish_date": "August 2001", "oclc_numbers": ["53091200"], "works": [{"key": "/works/OL8414125W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 7 x 1.2 inches", "lccn": ["2002727781"], "lc_classifications": ["HF5548.32 .W43 2001"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part30.utf8:150742649:814", "promise:bwb_daily_pallets_2022-10-25"], "local_id": ["urn:bwbsku:T2-EAM-031"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-12T00:02:15.589178"}}
+/type/edition /books/OL1060666M 3 2020-11-18T03:07:57.837285 {"publishers": ["Ravi Praka\u0304s\u0301ana"], "lc_classifications": ["PL4659.R445 S75 1969"], "latest_revision": 3, "key": "/books/OL1060666M", "authors": [{"key": "/authors/OL567699A"}], "publish_places": ["Ben\u0307gal\u0323u\u0304ru"], "pagination": "28 p. ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:97169810:541"], "title": "S\u0301ri\u0304 Maha\u0304vi\u0304ra ji\u0304vana s\u0301atakam\u0323", "lccn": ["93905881"], "notes": {"type": "/type/text", "value": "Poem.\nIn Kannada."}, "number_of_pages": 28, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/kan"}], "last_modified": {"type": "/type/datetime", "value": "2020-11-18T03:07:57.837285"}, "publish_date": "1969", "publish_country": "ii ", "by_statement": "Ravi Kiran\u0323a.", "works": [{"key": "/works/OL3434577W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL1060671M 2 2020-11-18T03:08:02.609206 {"publishers": ["Karna\u0304t\u0323aka Sa\u0304hitya Aka\u0304d\u0323emi"], "description": {"type": "/type/text", "value": "Study on the African literature by Black authors; contributed articles."}, "series": ["Vica\u0304ra san\u0307kiran\u0323a ma\u0304le"], "lc_classifications": ["PL8010 .A58 1992"], "latest_revision": 2, "key": "/books/OL1060671M", "publish_places": ["Ben\u0307gal\u0323u\u0304ru"], "contributions": ["Karn\u0323a\u0304taka Sa\u0304hitya Aka\u0304d\u0323emi."], "pagination": "104 p. ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:97172974:851"], "title": "A\u0304phrika\u0304da kappu sa\u0304hitya", "lccn": ["93905886"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 102).\nIn Kannada."}, "number_of_pages": 104, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/kan"}], "subjects": ["African literature -- History and criticism."], "publish_date": "1992", "publish_country": "ii ", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T03:08:02.609206"}, "by_statement": "vividha le\u0304khakaru.", "works": [{"key": "/works/OL23530209W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10606862M 2 2009-12-15T00:51:27.148772 {"physical_format": "Paperback", "subtitle": "Packages and Products", "publishers": ["Ibm"], "isbn_10": ["0738427543"], "number_of_pages": 80, "isbn_13": ["9780738427546"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:51:27.148772"}, "publish_date": "December 2002", "latest_revision": 2, "key": "/books/OL10606862M", "authors": [{"key": "/authors/OL2805850A"}], "title": "Managing Os/400 With Operations Navigator V5R1", "subjects": ["Programming - General", "Computers", "OS/400", "Operating systems (Computers)", "Computer Books: General"], "works": [{"key": "/works/OL8414325W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10606943M 3 2020-12-08T15:52:40.600982 {"publishers": ["IBM.Com/Redbooks"], "weight": "12 ounces", "physical_format": "Paperback", "key": "/books/OL10606943M", "authors": [{"key": "/authors/OL2805850A"}], "contributions": ["Brian Robert Smith (Editor)"], "subjects": ["Industries - Retailing", "Programming - General", "Reference", "Computers", "Business / Economics / Finance", "Electronic commerce", "Computer Books: General"], "languages": [{"key": "/languages/eng"}], "title": "IBM E-Business Technology, Solution, and Design Overview", "number_of_pages": 192, "isbn_13": ["9780738429366"], "isbn_10": ["0738429368"], "publish_date": "February 2004", "works": [{"key": "/works/OL8414244W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.8 x 7 x 0.5 inches", "lccn": ["2004266188"], "lc_classifications": ["HF5548.32 .I257 2003"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part31.utf8:208067286:933"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-08T15:52:40.600982"}}
+/type/edition /books/OL10607106M 2 2020-12-11T13:03:35.877527 {"languages": [{"key": "/languages/eng"}], "physical_format": "Paperback", "publishers": ["IBM.Com/Redbooks"], "number_of_pages": 178, "isbn_13": ["9780738490762"], "isbn_10": ["0738490768"], "publish_date": "November 29, 2004", "key": "/books/OL10607106M", "authors": [{"key": "/authors/OL2805850A"}, {"key": "/authors/OL3471169A"}, {"key": "/authors/OL3471170A"}, {"key": "/authors/OL243874A"}], "title": "Systems Programmer's Guide to Resource Recovery Services Rrs (IBM Redbooks)", "type": {"key": "/type/edition"}, "subjects": ["Information Storage & Retrieval", "Programming - General", "Reference", "Computers", "Computers - General Information", "Database management", "Electronic digital computers", "Reliability", "System design", "Computer Books: Languages"], "works": [{"key": "/works/OL23937033W"}], "lccn": ["2005278717"], "lc_classifications": ["QA76.9.D3 B3265 2004"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part32.utf8:187944433:1114"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-11T13:03:35.877527"}}
+/type/edition /books/OL10607324M 5 2022-12-13T23:44:48.879653 {"publishers": ["Ibm"], "number_of_pages": 250, "weight": "1 pounds", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0738493899"], "title": "Experiences With Oracle 10g Database for Linux on Zseries", "isbn_13": ["9780738493893"], "covers": [5069156], "physical_format": "Paperback", "key": "/books/OL10607324M", "authors": [{"key": "/authors/OL2805850A"}], "publish_date": "September 8, 2005", "works": [{"key": "/works/OL8412796W"}], "type": {"key": "/type/edition"}, "subjects": ["Programming - General", "Reference", "Computers", "Computer Books: Languages"], "physical_dimensions": "8.5 x 6.8 x 0.5 inches", "lccn": ["2006271954"], "lc_classifications": ["MLCM 2006/08007 (Q)"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part33.utf8:159884535:592", "marc:harvard_bibliographic_metadata/ab.bib.13.20150123.full.mrc:430155964:1055"], "oclc_numbers": ["810071428"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-13T23:44:48.879653"}}
+/type/edition /books/OL10607381M 4 2011-04-27T07:11:42.203743 {"publishers": ["Vervante"], "subtitle": "Hardware Overview and Planning", "weight": "8.8 ounces", "covers": [2563388], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T07:11:42.203743"}, "latest_revision": 4, "key": "/books/OL10607381M", "authors": [{"key": "/authors/OL2805850A"}], "subjects": ["Programming - General", "Computers", "Computer Books: Languages"], "languages": [{"key": "/languages/eng"}], "title": "Blue Gene/L", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780738494838"], "isbn_10": ["0738494836"], "publish_date": "August 11, 2006", "oclc_numbers": ["148588459"], "works": [{"key": "/works/OL8414326W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.2 x 6.8 x 0.5 inches", "revision": 4}
+/type/edition /books/OL10607583M 4 2020-12-11T03:12:38.558828 {"publishers": ["IBM.Com/Redbooks"], "number_of_pages": 406, "physical_format": "Paperback", "key": "/books/OL10607583M", "authors": [{"key": "/authors/OL2805850A"}], "subjects": ["Programming - General", "Reference", "Computers", "Message processing", "Telecommunication", "Computer Books: Languages"], "isbn_13": ["9780738498447"], "classifications": {}, "title": "Websphere Bi for Fn for Z/os V1.1.0 Installation And Operation", "notes": {"type": "/type/text", "value": "IBM Redbooks"}, "identifiers": {}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0738498440"], "publish_date": "April 6, 2004", "works": [{"key": "/works/OL8414114W"}], "type": {"key": "/type/edition"}, "lccn": ["2004559830"], "lc_classifications": ["TK5102.5 .W395 2004"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part32.utf8:101028628:931"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-11T03:12:38.558828"}}
+/type/edition /books/OL10607719M 2 2022-11-19T04:08:03.047127 {"languages": [{"key": "/languages/eng"}], "physical_format": "Paperback", "publishers": ["Arcadia Pub"], "title": "Riverboats", "isbn_13": ["9780738501390"], "isbn_10": ["0738501395"], "publish_date": "June 1999", "key": "/books/OL10607719M", "authors": [{"key": "/authors/OL3471316A"}, {"key": "/authors/OL2621505A"}], "type": {"key": "/type/edition"}, "subjects": ["Canada - General", "History", "History: World"], "works": [{"key": "/works/OL29414230W"}], "source_records": ["bwb:9780738501390"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T04:08:03.047127"}}
+/type/edition /books/OL10607872M 8 2022-11-19T04:09:18.509632 {"publishers": ["Arcadia Publishing"], "number_of_pages": 128, "weight": "11.4 ounces", "first_sentence": {"type": "/type/text", "value": "Like their sister cities throughout the American West, Stearns County cities in many respects were \"instant cities.\""}, "covers": [2563653], "physical_format": "Paperback", "key": "/books/OL10607872M", "authors": [{"key": "/authors/OL3471430A"}], "subjects": ["General", "United States - State & Local - General", "History", "History - General History", "History: American"], "languages": [{"key": "/languages/eng"}], "classifications": {}, "title": "Stearns County Minnesota (MN)", "notes": {"type": "/type/text", "value": "Images of America"}, "identifiers": {"goodreads": ["664739"]}, "isbn_13": ["9780738508337"], "isbn_10": ["0738508330"], "publish_date": "December 2, 2000", "oclc_numbers": ["45749517"], "works": [{"key": "/works/OL9443232W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.3 x 6.5 x 0.3 inches", "source_records": ["bwb:9780738508337"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T04:09:18.509632"}}
+/type/edition /books/OL106078M 4 2020-12-02T08:59:54.386563 {"number_of_pages": 413, "subtitle": "Norve\u0301g-magyar szo\u0301ta\u0301r : oppslagsord og b\u00f8yningsformer, idiomer, synonymer og eksempler, ordtak, integrert grammatikk, navn pa\u030a planter, insekter, fisk og dyr", "lc_classifications": ["PH2645.N6 L67 1998"], "genres": ["Dictionaries"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part28.utf8:95065190:715"], "title": "Norsk-ungarsk ordbok =", "languages": [{"key": "/languages/nor"}], "subjects": ["Norwegian language -- Dictionaries -- Hungarian."], "publish_country": "no ", "by_statement": "Lo\u0308rincz La\u0301szlo\u0301.", "type": {"key": "/type/edition"}, "other_titles": ["Norve\u0301g-magyar szo\u0301ta\u0301r"], "publishers": ["Saturn Trykk"], "key": "/books/OL106078M", "authors": [{"key": "/authors/OL71174A"}], "publish_places": ["Drammen"], "pagination": "413 p. ;", "classifications": {}, "lccn": ["99223468"], "identifiers": {}, "publish_date": "1998", "works": [{"key": "/works/OL832770W"}], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-02T08:59:54.386563"}}
+/type/edition /books/OL10608002M 7 2020-12-19T23:47:35.884100 {"publishers": ["Arcadia Publishing"], "number_of_pages": 15, "weight": "3.2 ounces", "covers": [2563777], "physical_format": "Cardbook", "key": "/books/OL10608002M", "subjects": ["Illinois - Local History", "History - U.S.", "Sports & Recreation", "History: American", "History", "United States - State & Local - General", "United States - State & Local - Midwest", "History / United States / General", "IL", "Postcards"], "edition_name": "Cards edition", "languages": [{"key": "/languages/eng"}], "title": "Chicago's Soldier Field (IL) (Postcards of America)", "identifiers": {"goodreads": ["7110348"]}, "isbn_13": ["9780738525143"], "isbn_10": ["0738525146"], "publish_date": "October 8, 2007", "works": [{"key": "/works/OL6041228W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "6.8 x 4.1 x 0.3 inches", "lccn": ["2007931278"], "lc_classifications": ["GV416.C372 P484 2007"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part35.utf8:85088490:1357"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-19T23:47:35.884100"}}
+/type/edition /books/OL10608049M 9 2022-11-18T23:35:18.672731 {"publishers": ["Arcadia Publishing"], "number_of_pages": 128, "weight": "11.2 ounces", "first_sentence": {"type": "/type/text", "value": "This is an aerial view of the back of the Country Store, Willows Garage, and the McCalls' house."}, "covers": [2563817], "physical_format": "Paperback", "key": "/books/OL10608049M", "authors": [{"key": "/authors/OL3471566A"}], "subjects": ["United States - State & Local - New England", "CT", "History / United States / General", "History", "History - U.S.", "Connecticut", "Historic buildings", "Pictorial works", "Salem (Conn. : Town)", "Salem (Town)", "Social life and customs", "History: American"], "isbn_13": ["9780738539454"], "classifications": {}, "title": "Salem (CT)", "notes": {"type": "/type/text", "value": "Images of America"}, "identifiers": {"librarything": ["3307705"], "goodreads": ["1983920"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0738539457"], "publish_date": "April 19, 2006", "works": [{"key": "/works/OL9443320W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.1 x 6.3 x 0.4 inches", "lccn": ["2005938289"], "lc_classifications": ["F104.S18 C67 2006", "F104.S18C67 2006"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part33.utf8:89823342:974", "bwb:9780738539454"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-18T23:35:18.672731"}}
+/type/edition /books/OL10608109M 3 2011-02-27T17:39:23.527380 {"publishers": ["Arcadia Publishing (SC)"], "number_of_pages": 128, "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-02-27T17:39:23.527380"}, "latest_revision": 3, "key": "/books/OL10608109M", "authors": [{"key": "/authors/OL3471609A"}], "subjects": ["General", "History - General History"], "isbn_13": ["9780738546360"], "classifications": {}, "title": "Hull and Nantasket Beach", "notes": {"type": "/type/text", "value": "Scenes of America\r\nDisplay Pack Containing 20 Copies"}, "identifiers": {}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0738546364"], "publish_date": "August 2006", "works": [{"key": "/works/OL9443349W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10608126M 7 2022-11-19T02:53:31.538767 {"publishers": ["Arcadia Publishing"], "number_of_pages": 128, "weight": "11.2 ounces", "covers": [2563867], "physical_format": "Paperback", "key": "/books/OL10608126M", "authors": [{"key": "/authors/OL3471624A"}, {"key": "/authors/OL3471625A"}], "subjects": ["United States - State & Local - West", "History", "United States", "CA", "History / United States / General", "California - Local History", "History - U.S.", "History: American"], "isbn_13": ["9780738547794"], "title": "Lake Mathews and Gavilan Hills (CA) (Images of America)", "identifiers": {"goodreads": ["7108786"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0738547794"], "publish_date": "September 3, 2007", "oclc_numbers": ["173154844"], "type": {"key": "/type/edition"}, "physical_dimensions": "9.2 x 6.5 x 0.4 inches", "works": [{"key": "/works/OL24106569W"}], "lccn": ["2007924205"], "lc_classifications": ["F869.G245 D48 2007", "F869.G245D48 2007"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part35.utf8:81230507:1562", "bwb:9780738547794"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T02:53:31.538767"}}
+/type/edition /books/OL10608225M 11 2022-12-13T12:48:53.481732 {"publishers": ["Arcadia Publishing"], "identifiers": {"goodreads": ["3052618"]}, "weight": "9.6 ounces", "covers": [2563955], "physical_format": "Paperback", "key": "/books/OL10608225M", "authors": [{"key": "/authors/OL3471722A"}, {"key": "/authors/OL3471723A"}], "subjects": ["United States - State & Local - General", "History / United States / General", "IN", "History", "History - U.S", "History: American"], "isbn_13": ["9780738551586"], "source_records": ["amazon:0738551589", "marc:marc_loc_updates/v36.i17.records.utf8:10594799:881", "marc:marc_loc_updates/v36.i18.records.utf8:18527235:881", "marc:marc_loc_updates/v36.i24.records.utf8:9102809:910", "marc:marc_loc_2016/BooksAll.2016.part35.utf8:85482085:910", "bwb:9780738551586", "marc:harvard_bibliographic_metadata/ab.bib.13.20150123.full.mrc:346430359:1106"], "title": "Brookville (Postcard History: Indiana)", "number_of_pages": 128, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0738551589"], "publish_date": "January 7, 2008", "works": [{"key": "/works/OL18787591W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.1 x 6.2 x 0.5 inches", "lccn": ["2007931944"], "lc_classifications": ["F534.B785 C48 2008"], "latest_revision": 11, "revision": 11, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-13T12:48:53.481732"}}
+/type/edition /books/OL1060827M 3 2020-11-18T03:11:35.381495 {"publishers": ["Sudha\u0304 Bukhaus"], "lc_classifications": ["PL4780.9.L375 C37 1993"], "latest_revision": 3, "key": "/books/OL1060827M", "authors": [{"key": "/authors/OL305848A"}], "publish_places": ["Vijayava\u0304d\u0323a"], "languages": [{"key": "/languages/tel"}], "pagination": "284 p. ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:97303535:550"], "title": "Carama ra\u0304tri", "lccn": ["93906061"], "notes": {"type": "/type/text", "value": "Novel.\nIn Telugu."}, "number_of_pages": 284, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "edition_name": "1st ed.", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T03:11:35.381495"}, "publish_date": "1993", "publish_country": "ii ", "by_statement": "Lalla\u0304de\u0304vi.", "works": [{"key": "/works/OL2309205W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10608367M 11 2022-12-13T12:51:45.226840 {"publishers": ["Arcadia Publishing"], "number_of_pages": 128, "weight": "7.2 ounces", "covers": [2564086], "physical_format": "Paperback", "key": "/books/OL10608367M", "authors": [{"key": "/authors/OL1396022A"}], "subjects": ["United States - General", "United States - State & Local - West", "CA", "History / United States / General", "California - Local History", "History", "History - U.S", "History: American"], "isbn_13": ["9780738555614"], "classifications": {}, "source_records": ["amazon:0738555614", "marc:marc_loc_updates/v36.i02.records.utf8:14334823:996", "marc:marc_loc_updates/v36.i09.records.utf8:14165614:1084", "marc:marc_loc_2016/BooksAll.2016.part35.utf8:83676443:1093", "bwb:9780738555614", "marc:harvard_bibliographic_metadata/ab.bib.13.20150123.full.mrc:346851043:981"], "title": "Los Gatos Generations (CA)", "notes": {"type": "/type/text", "value": "Images of America"}, "identifiers": {"goodreads": ["2628161"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0738555614"], "publish_date": "October 15, 2007", "works": [{"key": "/works/OL5741678W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6.4 x 0.5 inches", "lccn": ["2007928546"], "lc_classifications": ["F869.L9 C67 2007"], "latest_revision": 11, "revision": 11, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-13T12:51:45.226840"}}
+/type/edition /books/OL10608406M 13 2022-12-13T12:51:45.635505 {"publishers": ["Arcadia Publishing"], "number_of_pages": 128, "covers": [2564121], "physical_format": "Paperback", "key": "/books/OL10608406M", "authors": [{"key": "/authors/OL659242A"}], "subjects": ["History", "History - U.S", "History: American", "United States - State & Local - West", "CA", "History / United States / General", "United States - General"], "isbn_13": ["9780738556192"], "classifications": {}, "source_records": ["amazon:073855619X", "marc:marc_loc_updates/v36.i24.records.utf8:9189593:757", "marc:marc_loc_updates/v36.i28.records.utf8:7450750:757", "marc:marc_loc_updates/v36.i30.records.utf8:9763657:791", "marc:marc_loc_2016/BooksAll.2016.part35.utf8:88140535:791", "ia:losolivos0000norr", "bwb:9780738556192", "marc:harvard_bibliographic_metadata/ab.bib.13.20150123.full.mrc:346852024:1004"], "title": "Los Olivos", "notes": {"type": "/type/text", "value": "Images of America"}, "identifiers": {"goodreads": ["5698949"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["073855619X"], "publish_date": "February 25, 2008", "works": [{"key": "/works/OL3751959W"}], "type": {"key": "/type/edition"}, "lccn": ["2007936582"], "lc_classifications": ["F869.L915 N668 2008"], "ocaid": "losolivos0000norr", "latest_revision": 13, "revision": 13, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-13T12:51:45.635505"}}
+/type/edition /books/OL10608696M 7 2011-04-30T00:16:03.948199 {"publishers": ["Xlibris Corporation"], "identifiers": {"librarything": ["7997555"], "goodreads": ["2723614"]}, "weight": "1.9 pounds", "covers": [2564305], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-30T00:16:03.948199"}, "latest_revision": 7, "key": "/books/OL10608696M", "authors": [{"key": "/authors/OL2662994A"}], "subjects": ["Espionage & spy thriller", "Espionage/Intrigue", "Suspense", "General", "Fiction", "Fiction - Espionage / Thriller"], "edition_name": "New Ed edition", "languages": [{"key": "/languages/eng"}], "title": "The Sceptre", "number_of_pages": 464, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780738801599"], "isbn_10": ["0738801593"], "publish_date": "December 1998", "oclc_numbers": ["228054747"], "works": [{"key": "/works/OL8001400W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.7 x 5.9 x 1.4 inches", "revision": 7}
+/type/edition /books/OL10608766M 6 2011-06-08T03:51:45.425074 {"publishers": ["Xlibris Corporation"], "number_of_pages": 164, "weight": "15.7 ounces", "covers": [2564371], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-06-08T03:51:45.425074"}, "latest_revision": 6, "key": "/books/OL10608766M", "authors": [{"key": "/authors/OL246958A"}], "subjects": ["Occultism & quasi-religious beliefs", "Body, Mind & Spirit", "New Age / Body, Mind & Spirit", "New Age", "Parapsychology - Out-of-Body Experience", "Body, Mind & Spirit / Parapsychology / Out-of-Body Experience", "Fiction", "General"], "edition_name": "New Ed edition", "languages": [{"key": "/languages/eng"}], "title": "Another Planet?", "identifiers": {"goodreads": ["1209825"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780738802831"], "isbn_10": ["0738802832"], "publish_date": "July 1999", "oclc_numbers": ["48070442"], "works": [{"key": "/works/OL2039545W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.1 x 6.5 x 0.6 inches", "revision": 6}
+/type/edition /books/OL10608948M 4 2021-11-02T03:17:47.986202 {"publishers": ["Xlibris Corporation"], "weight": "1.5 pounds", "covers": [2564550], "edition_name": "1 edition", "physical_format": "Hardcover", "key": "/books/OL10608948M", "authors": [{"key": "/authors/OL3472060A"}, {"key": "/authors/OL3472061A"}, {"key": "/authors/OL2640834A"}], "subjects": ["Espionage & spy thriller", "Espionage/Intrigue", "Technological", "Suspense", "Fiction", "Fiction - Espionage / Thriller"], "isbn_13": ["9780738806440"], "title": "Just A Matter of Times", "number_of_pages": 328, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0738806447"], "publish_date": "September 1999", "works": [{"key": "/works/OL9443654W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "5.5 x 1.4 x 0.7 inches", "source_records": ["bwb:9780738806440"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-11-02T03:17:47.986202"}}
+/type/edition /books/OL10609004M 2 2009-12-15T00:51:30.621956 {"physical_format": "Hardcover", "title": "Expendable In Their Eyes", "isbn_10": ["0738807567"], "publishers": ["Xlibris Corporation"], "edition_name": "1 edition", "isbn_13": ["9780738807560"], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:51:30.621956"}, "publish_date": "January 2000", "key": "/books/OL10609004M", "authors": [{"key": "/authors/OL3472083A"}], "latest_revision": 2, "works": [{"key": "/works/OL9443674W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10609430M 2 2009-12-15T00:51:30.621956 {"physical_format": "Hardcover", "languages": [{"key": "/languages/eng"}], "publishers": ["Xlibris Corp"], "isbn_10": ["0738814040"], "number_of_pages": 255, "edition_name": "1 edition", "isbn_13": ["9780738814049"], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:51:30.621956"}, "publish_date": "May 2000", "latest_revision": 2, "key": "/books/OL10609430M", "authors": [{"key": "/authors/OL2665404A"}], "title": "Stars Fall", "subjects": ["General", "Fiction"], "works": [{"key": "/works/OL8006485W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10610270M 4 2011-04-29T05:11:39.266831 {"publishers": ["Xlibris Corporation"], "weight": "15 ounces", "covers": [2565848], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T05:11:39.266831"}, "latest_revision": 4, "key": "/books/OL10610270M", "authors": [{"key": "/authors/OL3472635A"}], "subjects": ["Crime & mystery", "Fiction", "Fiction - Mystery/ Detective", "Mystery/Suspense", "Mystery & Detective - Hard-Boiled", "Mystery & Detective - General"], "edition_name": "1 edition", "languages": [{"key": "/languages/eng"}], "title": "P.M.S", "number_of_pages": 296, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780738826622"], "isbn_10": ["0738826626"], "publish_date": "July 11, 2000", "oclc_numbers": ["47744319"], "works": [{"key": "/works/OL9444315W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.6 x 5.6 x 0.8 inches", "revision": 4}
+/type/edition /books/OL1061032M 3 2020-11-18T03:14:53.151230 {"publishers": ["Vis\u0323n\u0323u Pracuran\u0323alu"], "description": {"type": "/type/text", "value": "Comparative study of Telugu poets, Na\u0304cana So\u0304mana, 14th cent., and Tallapaka Annamacharya, 1408-1503."}, "lc_classifications": ["PL4780.9.N24 Z66 1993"], "latest_revision": 3, "key": "/books/OL1061032M", "authors": [{"key": "/authors/OL567845A"}], "publish_places": ["Karnu\u0304lu"], "pagination": "xii, 112 p. ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:97504867:922"], "title": "Na\u0304canaso\u0304mana-Annamayya", "lccn": ["93906358"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. [107]-112).\nIn Telugu."}, "number_of_pages": 112, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/tel"}], "subjects": ["Na\u0304cana So\u0304mana, 14th cent. -- Criticism and interpretation.", "Tallapaka Annamacharya, 1408-1503 -- Criticism and interpretation."], "publish_date": "1993", "publish_country": "ii ", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T03:14:53.151230"}, "by_statement": "Yam\u0323. Go\u0304vindasva\u0304mina\u0304yud\u0323u.", "works": [{"key": "/works/OL3434948W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10610498M 4 2011-04-28T06:19:26.959133 {"publishers": ["Xlibris Corporation"], "weight": "12.3 ounces", "covers": [2566080], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-28T06:19:26.959133"}, "latest_revision": 4, "key": "/books/OL10610498M", "authors": [{"key": "/authors/OL3472759A"}], "subjects": ["General & Literary Fiction", "Modern fiction", "Short Stories (single author)", "Humorous", "Fiction", "Fiction - General"], "edition_name": "1 edition", "languages": [{"key": "/languages/eng"}], "title": "Panama Madness and Other Bedtime Stories", "number_of_pages": 232, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780738829937"], "isbn_10": ["0738829935"], "publish_date": "September 30, 2000", "oclc_numbers": ["45669967"], "works": [{"key": "/works/OL9444440W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.5 x 5.5 x 0.6 inches", "revision": 4}
+/type/edition /books/OL10610499M 4 2021-11-02T04:26:49.005951 {"publishers": ["Xlibris Corporation"], "languages": [{"key": "/languages/eng"}], "weight": "1.2 pounds", "title": "Poached Eggs", "isbn_10": ["0738829951"], "number_of_pages": 240, "isbn_13": ["9780738829951"], "covers": [2566081], "edition_name": "1 edition", "physical_format": "Hardcover", "key": "/books/OL10610499M", "authors": [{"key": "/authors/OL3472760A"}], "publish_date": "October 23, 2000", "works": [{"key": "/works/OL9444445W"}], "type": {"key": "/type/edition"}, "subjects": ["General & Literary Fiction", "Medical", "Suspense", "Fiction", "Fiction - General"], "physical_dimensions": "5.5 x 0.5 x 0.5 inches", "source_records": ["bwb:9780738829951"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-11-02T04:26:49.005951"}}
+/type/edition /books/OL10610644M 4 2011-04-28T23:10:12.475360 {"publishers": ["Xlibris Corporation"], "weight": "12.3 ounces", "covers": [2566227], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-28T23:10:12.475360"}, "latest_revision": 4, "key": "/books/OL10610644M", "authors": [{"key": "/authors/OL2733364A"}], "subjects": ["General & Literary Fiction", "Literature of special Gay interest", "Modern fiction", "Fiction - General", "Fiction", "Gay", "FICTION / General"], "edition_name": "1 edition", "languages": [{"key": "/languages/eng"}], "title": "Bellringer", "number_of_pages": 228, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780738832005"], "isbn_10": ["0738832006"], "publish_date": "October 3, 2000", "oclc_numbers": ["47244938"], "works": [{"key": "/works/OL8216278W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.5 x 5.5 x 0.6 inches", "revision": 4}
+/type/edition /books/OL1061118M 4 2022-11-15T04:02:46.303597 {"other_titles": ["Raks\u0323a\u0304purus\u0323aka, Samanvaya, and Yogavilasita."], "publishers": ["Bharatiya Vidya Prakashan"], "subtitle": "Raks\u0323a\u0304purus\u0323aka, Samanvaya, and Yogavilasita", "lc_classifications": ["PK3799.K685 A6 1993"], "key": "/books/OL1061118M", "authors": [{"key": "/authors/OL567885A"}], "publish_places": ["Delhi, India"], "contributions": ["Unni, N. P., 1936-"], "languages": [{"key": "/languages/san"}], "pagination": "207 p. ;", "source_records": ["marc:marc_records_scriblio_net/part24.dat:26376839:835", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:97575485:844", "amazon:8121701023"], "title": "Sanskrit plays of Krishnachandra", "lccn": ["93906464"], "notes": {"type": "/type/text", "value": "Plays.\nIn Sanskrit; critical introd. in English."}, "number_of_pages": 207, "edition_name": "1st ed.", "isbn_10": ["8121701023"], "publish_date": "1993", "publish_country": "ii ", "by_statement": "ed. by N.P. Unni.", "work_title": ["Plays."], "works": [{"key": "/works/OL19461501W"}], "type": {"key": "/type/edition"}, "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-15T04:02:46.303597"}}
+/type/edition /books/OL10611240M 6 2011-04-30T04:15:48.820185 {"publishers": ["Xlibris Corporation"], "number_of_pages": 189, "weight": "15.5 ounces", "covers": [2566823], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-30T04:15:48.820185"}, "latest_revision": 6, "key": "/books/OL10611240M", "authors": [{"key": "/authors/OL243493A"}], "subjects": ["General & Literary Fiction", "Fiction", "Fiction - General", "Mystery/Suspense", "General", "Mystery & Detective - General"], "edition_name": "1 edition", "languages": [{"key": "/languages/eng"}], "title": "Dance of Desire", "identifiers": {"goodreads": ["5017923"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780738841250"], "isbn_10": ["0738841250"], "publish_date": "February 24, 2001", "oclc_numbers": ["47286293"], "works": [{"key": "/works/OL2018487W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "5.5 x 0.6 x 0.6 inches", "revision": 6}
+/type/edition /books/OL10611413M 3 2010-04-13T06:11:39.225433 {"publishers": ["Xlibris Corporation"], "languages": [{"key": "/languages/eng"}], "weight": "11.5 ounces", "title": "Murder in Shangri-La", "isbn_10": ["073884389X"], "number_of_pages": 231, "isbn_13": ["9780738843896"], "covers": [2566997], "edition_name": "1 edition", "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:11:39.225433"}, "latest_revision": 3, "key": "/books/OL10611413M", "authors": [{"key": "/authors/OL2688075A"}], "publish_date": "December 8, 2000", "works": [{"key": "/works/OL8074677W"}], "type": {"key": "/type/edition"}, "subjects": ["Crime & mystery", "Mystery & Detective - General", "Fiction", "Fiction - Mystery/ Detective", "Mystery/Suspense"], "physical_dimensions": "8.5 x 5.4 x 0.6 inches", "revision": 3}
+/type/edition /books/OL10611558M 5 2010-04-24T18:05:23.118702 {"publishers": ["Xlibris Corporation"], "number_of_pages": 244, "weight": "13.1 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["073884618X"], "identifiers": {"goodreads": ["5251069"]}, "isbn_13": ["9780738846187"], "covers": [2567144], "edition_name": "1 edition", "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:05:23.118702"}, "latest_revision": 5, "key": "/books/OL10611558M", "authors": [{"key": "/authors/OL2869221A"}], "publish_date": "December 7, 2000", "title": "East Side Stories", "works": [{"key": "/works/OL8558678W"}], "type": {"key": "/type/edition"}, "subjects": ["Modern fiction", "Short stories", "Short Stories (single author)", "Fiction", "Fiction - General"], "physical_dimensions": "8.5 x 5.5 x 0.6 inches", "revision": 5}
+/type/edition /books/OL10612009M 5 2020-08-19T01:53:57.880299 {"publishers": ["Xlibris Corporation"], "weight": "13 ounces", "covers": [2567592], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2020-08-19T01:53:57.880299"}, "latest_revision": 5, "key": "/books/OL10612009M", "authors": [{"key": "/authors/OL3473292A"}], "subjects": ["Crime & mystery", "Modern fiction", "Mystery & Detective - General", "Fiction", "Fiction - Mystery/ Detective"], "isbn_13": ["9780738853673"], "source_records": ["bwb:9780738853673"], "title": "Whispering Waters", "number_of_pages": 236, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0738853674"], "publish_date": "July 2001", "oclc_numbers": ["227967622"], "works": [{"key": "/works/OL9445061W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.2 x 5.5 x 0.6 inches", "revision": 5}
+/type/edition /books/OL1061203M 4 2020-11-18T03:16:34.785551 {"publishers": ["Shari\u0304f Quraishi\u0304", "Milne ke pate, Maktabah-yi Di\u0304n o Adab"], "lc_classifications": ["PK2200.Q853 N33 1993"], "latest_revision": 4, "key": "/books/OL1061203M", "authors": [{"key": "/authors/OL519225A"}], "publish_places": ["Lakhna\u02bcu\u0304"], "pagination": "328 p. ;", "source_records": ["marc:marc_records_scriblio_net/part24.dat:26451986:569", "marc:marc_loc_updates/v37.i43.records.utf8:11004707:582", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:97652806:582"], "title": "Nadi\u0304 kana\u0304re pi\u0304ya\u0304s", "lccn": ["93906561"], "notes": {"type": "/type/text", "value": "Poems.\nIn Urdu."}, "number_of_pages": 328, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/urd"}], "last_modified": {"type": "/type/datetime", "value": "2020-11-18T03:16:34.785551"}, "publish_date": "1993", "publish_country": "ii ", "by_statement": "Shari\u0304f Quraishi\u0304.", "works": [{"key": "/works/OL3214124W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10612161M 3 2010-04-13T06:11:39.225433 {"publishers": ["Xlibris Corporation"], "languages": [{"key": "/languages/eng"}], "weight": "1.8 pounds", "title": "Travel-On", "isbn_10": ["0738856487"], "number_of_pages": 412, "isbn_13": ["9780738856483"], "covers": [2567742], "edition_name": "1st edition", "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:11:39.225433"}, "latest_revision": 3, "key": "/books/OL10612161M", "authors": [{"key": "/authors/OL3473617A"}], "publish_date": "March 28, 2001", "works": [{"key": "/works/OL9445412W"}], "type": {"key": "/type/edition"}, "subjects": ["General & Literary Fiction", "Modern fiction", "General", "Fiction", "Fiction - General"], "physical_dimensions": "5.5 x 1 x 1 inches", "revision": 3}
+/type/edition /books/OL10612401M 4 2011-04-29T23:51:48.861487 {"publishers": ["Xlibris Corporation"], "weight": "6.9 ounces", "covers": [2567978], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T23:51:48.861487"}, "latest_revision": 4, "key": "/books/OL10612401M", "authors": [{"key": "/authors/OL3473733A"}], "subjects": ["General & Literary Fiction", "General", "Fiction", "Fiction - General"], "languages": [{"key": "/languages/eng"}], "title": "The Suit and Skirt Farm", "number_of_pages": 144, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780738861876"], "isbn_10": ["0738861871"], "publish_date": "August 2002", "oclc_numbers": ["227968175"], "works": [{"key": "/works/OL9445609W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.6 x 5.6 x 0.4 inches", "revision": 4}
+/type/edition /books/OL10613048M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Stationery Office Books"], "number_of_pages": 4, "isbn_13": ["9780337915260"], "isbn_10": ["0337915261"], "publish_date": "March 15, 1996", "key": "/books/OL10613048M", "title": "The Jobseekers (1995 Order) (Commencement No. 1) Order (Northern Ireland) 1996 (Statutory Rule: 1996: 26 (C. 3))", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10613213M 2 2022-07-18T14:32:40.413129 {"physical_format": "Paperback", "publishers": ["Stationery Office Books"], "number_of_pages": 4, "isbn_13": ["9780337917349"], "isbn_10": ["0337917345"], "publish_date": "July 23, 1995", "key": "/books/OL10613213M", "title": "Deposits in the Sea (Exemptions) Order (Northern Ireland) 1995 (Statutory Rule: 1995: 234)", "type": {"key": "/type/edition"}, "works": [{"key": "/works/OL28344158W"}], "source_records": ["bwb:9780337917349"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-18T14:32:40.413129"}}
+/type/edition /books/OL10613387M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Stationery Office Books"], "number_of_pages": 8, "isbn_13": ["9780337919596"], "isbn_10": ["0337919593"], "publish_date": "December 31, 1995", "key": "/books/OL10613387M", "title": "Foyle Area (Licensing of Fishing Engines) (Amendment) Regulations 1995 (Statutory Rule: 1995: 459)", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10613819M 2 2010-03-11T22:02:50.573000 {"publishers": ["Stationery Office Books"], "key": "/books/OL10613819M", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 4, "isbn_13": ["9780337924576"], "physical_format": "Paperback", "isbn_10": ["0337924570"], "publish_date": "November 15, 1996", "last_modified": {"type": "/type/datetime", "value": "2010-03-11T22:02:50.573000"}, "authors": [{"key": "/authors/OL46053A"}], "title": "The Sheep Annual Premium (Amendment) Regulations (Northern Ireland) 1996 (Statutory Rule: 1996: 497)", "latest_revision": 2, "works": [{"key": "/works/OL14896266W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL1061452M 3 2020-11-18T03:19:21.847093 {"other_titles": ["Vishn\u0323u Mores\u0301vara Maha\u0304jani, Ekon\u0323isa\u0304vya\u0304 s\u0301ataka\u0304ti\u0304la prabodhanaka\u0304ra."], "publishers": ["Snehavardhana Praka\u0304s\u0301ana"], "subtitle": "vyakti\u0304 a\u0304n\u0323i va\u0304n\u0307maya", "description": {"type": "/type/text", "value": "On the life and works of Vishn\u0323u Mores\u0301vara Maha\u0304jani, 1851-1923, Marathi author."}, "lc_classifications": ["PK2418.M2973 Z75 1993"], "latest_revision": 3, "key": "/books/OL1061452M", "authors": [{"key": "/authors/OL568041A"}], "publish_places": ["Pun\u0323e"], "languages": [{"key": "/languages/mar"}], "pagination": "288 p. ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:97873481:1021"], "title": "Ekon\u0323isa\u0304vya\u0304 s\u0301ataka\u0304ti\u0304la prabodhanaka\u0304ra, Vishn\u0323u Mores\u0301vara Maha\u0304jani", "lccn": ["93906872"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 284-287).\nIn Marathi."}, "number_of_pages": 288, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "edition_name": "Prathama\u0304vr\u0325tti\u0304.", "subjects": ["Maha\u0304jani, Vishn\u0323u Mores\u0301vara, 1851-1923 -- Criticism and interpretation."], "publish_date": "1993", "publish_country": "ii ", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T03:19:21.847093"}, "by_statement": "Pushpa\u0304 Limaye.", "works": [{"key": "/works/OL3435401W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10615073M 6 2021-08-03T17:24:17.203412 {"publishers": ["Hodder & Stoughton"], "number_of_pages": 190, "title": "The Saint Goes West", "physical_format": "Hardcover", "identifiers": {"goodreads": ["2269107"], "librarything": ["290993"]}, "isbn_13": ["9780340017135"], "isbn_10": ["0340017139"], "publish_date": "1952", "key": "/books/OL10615073M", "authors": [{"key": "/authors/OL896624A"}], "works": [{"key": "/works/OL4489668W"}], "type": {"key": "/type/edition"}, "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-08-03T17:24:17.203412"}}
+/type/edition /books/OL10615105M 2 2009-12-15T00:51:34.373535 {"publishers": ["Hodder & Stoughton General Division"], "key": "/books/OL10615105M", "title": "Making Eng Land Kent", "isbn_13": ["9780340023747"], "physical_format": "Hardcover", "isbn_10": ["0340023740"], "publish_date": "January 1, 1976", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:51:34.373535"}, "authors": [{"key": "/authors/OL3473899A"}], "latest_revision": 2, "works": [{"key": "/works/OL9445802W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10615191M 4 2011-04-22T22:11:27.922933 {"publishers": ["Hodder Children's Books"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-22T22:11:27.922933"}, "title": "Bobby Brewster's Scarecrow", "number_of_pages": 90, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780340031834"], "isbn_10": ["0340031832"], "publish_date": "May 1968", "key": "/books/OL10615191M", "authors": [{"key": "/authors/OL901160A"}], "latest_revision": 4, "oclc_numbers": ["30279668"], "works": [{"key": "/works/OL7978082W"}], "type": {"key": "/type/edition"}, "subjects": ["English literature: essays, letters & other non-fiction prose works", "English literature: literary criticism"], "revision": 4}
+/type/edition /books/OL10615268M 8 2022-12-07T05:09:08.143250 {"publishers": ["Hodder Children's Books"], "identifiers": {"librarything": ["3267360"], "goodreads": ["1936527"]}, "type": {"key": "/type/edition"}, "title": "Mister Mole Takes Charge (Little Books)", "physical_format": "Paperback", "number_of_pages": 16, "isbn_13": ["9780340040720"], "isbn_10": ["0340040726"], "publish_date": "April 15, 1993", "key": "/books/OL10615268M", "authors": [{"key": "/authors/OL1071326A"}], "oclc_numbers": ["30158146"], "works": [{"key": "/works/OL4963640W"}], "contributions": ["F.Stocks May (Illustrator)"], "subjects": ["Animal stories"], "covers": [12656124], "ocaid": "mrmoletakescharg0000pilg_r8g9", "source_records": ["ia:mrmoletakescharg0000pilg_r8g9", "promise:bwb_daily_pallets_2022-03-17"], "local_id": ["urn:bwbsku:KQ-138-980"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-07T05:09:08.143250"}}
+/type/edition /books/OL10615377M 7 2022-05-25T03:31:29.793611 {"publishers": ["Hodder & Stoughton Ltd"], "number_of_pages": 248, "physical_format": "Hardcover", "lc_classifications": ["QE26 .B74"], "key": "/books/OL10615377M", "authors": [{"key": "/authors/OL2461973A"}], "subjects": ["Geology"], "isbn_13": ["9780340050613"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part08.utf8:73797833:659", "bwb:9780340050613"], "title": "New Geology (New school series)", "lccn": ["73357267"], "identifiers": {"goodreads": ["4332110"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0340050616"], "publish_date": "January 1, 1974", "oclc_numbers": ["39495"], "works": [{"key": "/works/OL1996486W"}], "type": {"key": "/type/edition"}, "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T03:31:29.793611"}}
+/type/edition /books/OL10615560M 2 2009-12-15T00:51:34.373535 {"publishers": ["Hodder Arnold H&S"], "key": "/books/OL10615560M", "title": "Boswell Taylor Dolphin Book C 11", "number_of_pages": 32, "isbn_13": ["9780340064498"], "physical_format": "Hardcover", "isbn_10": ["0340064498"], "publish_date": "January 1, 1974", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:51:34.373535"}, "authors": [{"key": "/authors/OL1838561A"}], "latest_revision": 2, "works": [{"key": "/works/OL6760977W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10615611M 9 2022-05-25T04:57:03.031838 {"publishers": ["Hodder & Stoughton Educational Division"], "identifiers": {"goodreads": ["5475358"]}, "title": "Lels Merchant of Venice Lmp", "type": {"key": "/type/edition"}, "number_of_pages": 176, "isbn_13": ["9780340073223"], "isbn_10": ["0340073225"], "publish_date": "January 1, 1974", "key": "/books/OL10615611M", "authors": [{"key": "/authors/OL9388A"}], "works": [{"key": "/works/OL258758W"}], "physical_format": "Paperback", "source_records": ["bwb:9780340073223"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T04:57:03.031838"}}
+/type/edition /books/OL1061575M 3 2020-11-18T03:20:36.946428 {"publishers": ["Manovika\u0304sa Praka\u0304s\u0301ana"], "description": {"type": "/type/text", "value": "On the belief relating to evil spirit, in India."}, "subject_place": ["India."], "lc_classifications": ["BF1517.I5 J33 1993"], "latest_revision": 3, "key": "/books/OL1061575M", "authors": [{"key": "/authors/OL568096A"}], "publish_places": ["Mumbai\u0304"], "languages": [{"key": "/languages/mar"}], "pagination": "77 p. ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:97984056:693"], "title": "S\u0301odha bhuta\u0304ca\u0304", "lccn": ["93907008"], "notes": {"type": "/type/text", "value": "In Marathi."}, "number_of_pages": 77, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "edition_name": "1. a\u0304vr\u0325tti.", "subjects": ["Demonology -- India."], "publish_date": "1993", "publish_country": "ii ", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T03:20:36.946428"}, "by_statement": "Madhu Jadha\u0304va.", "works": [{"key": "/works/OL3435496W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL1061603M 3 2020-11-18T03:20:55.303532 {"publishers": ["\"S\u0301ri\u0304ven\u0307kat\u0323es\u0301vara\" (St\u0323i\u0304m) Mudran\u0323a\u0304laye"], "description": {"type": "/type/text", "value": "Votive tale and rituals performed by Hindu married women."}, "physical_format": "Microform", "lc_classifications": ["Microfiche 93/61369"], "latest_revision": 3, "key": "/books/OL1061603M", "publish_places": ["Mohamayya\u0304m\u0323"], "pagination": "18 [i.e. 36] p.", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:98007851:938"], "title": "Harita\u0304lika\u0304vratapu\u0304ja\u0304katha\u0304 bha\u0304s\u0323a\u0304t\u0323i\u0304ka\u0304 sahita\u0304", "lccn": ["93907052"], "notes": {"type": "/type/text", "value": "Microfiche. New Delhi : Library of Congress Office ; Washington, D.C. : Library of Congress Photoduplication Service, 1993. 1 microfiche.\nHindi and Sanskrit."}, "number_of_pages": 36, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/hin"}], "last_modified": {"type": "/type/datetime", "value": "2020-11-18T03:20:55.303532"}, "publish_date": "1941", "publish_country": "ii ", "work_title": ["Puranas. Bhavis\u0323yottarapura\u0304n\u0323a. Harita\u0304lika\u0304vratakatha\u0304. Hindi & Sanskrit."], "works": [{"key": "/works/OL23530430W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10616097M 11 2022-12-08T13:18:28.150403 {"publishers": ["Hodder & Stoughton General Division"], "number_of_pages": 352, "classifications": {}, "title": "The Steps to the Empty Throne", "notes": {"type": "/type/text", "value": "Coronet Books"}, "identifiers": {"goodreads": ["1856565"], "librarything": ["2722262"]}, "isbn_13": ["9780340150986"], "physical_format": "Paperback", "isbn_10": ["034015098X"], "publish_date": "August 1, 1977", "key": "/books/OL10616097M", "authors": [{"key": "/authors/OL3053584A"}], "oclc_numbers": ["16202094"], "works": [{"key": "/works/OL8879300W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:KO-530-363", "urn:bwbsku:KO-740-776", "urn:bwbsku:KO-530-203", "urn:bwbsku:KO-680-459"], "source_records": ["promise:bwb_daily_pallets_2021-05-17", "promise:bwb_daily_pallets_2021-05-13", "promise:bwb_daily_pallets_2021-05-06"], "latest_revision": 11, "revision": 11, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-08T13:18:28.150403"}}
+/type/edition /books/OL10616371M 6 2010-12-27T18:58:03.834856 {"publishers": ["Hodder & Stoughton Ltd"], "number_of_pages": 253, "classifications": {}, "last_modified": {"type": "/type/datetime", "value": "2010-12-27T18:58:03.834856"}, "title": "The Catherine Wheel", "physical_format": "Paperback", "notes": {"type": "/type/text", "value": "Coronet Books"}, "identifiers": {"librarything": ["293165"], "goodreads": ["2886930"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780340169520"], "isbn_10": ["0340169524"], "publish_date": "1984", "key": "/books/OL10616371M", "authors": [{"key": "/authors/OL709550A"}], "latest_revision": 6, "works": [{"key": "/works/OL3901347W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL10616508M 5 2011-04-28T04:15:31.927718 {"publishers": ["Hodder Children's Books"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-28T04:15:31.927718"}, "title": "Stories to Tell", "number_of_pages": 96, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780340178041"], "isbn_10": ["0340178043"], "publish_date": "March 1, 1984", "key": "/books/OL10616508M", "authors": [{"key": "/authors/OL640415A"}], "latest_revision": 5, "oclc_numbers": ["10743023"], "works": [{"key": "/works/OL3696068W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10616583M 3 2010-08-17T03:05:43.764018 {"publishers": ["Hodder & Stoughton Educational Division"], "number_of_pages": 80, "subtitle": "Book 4 Meters; Voltage-dividers", "last_modified": {"type": "/type/datetime", "value": "2010-08-17T03:05:43.764018"}, "title": "Basic Electronics", "physical_format": "Paperback", "identifiers": {"librarything": ["2767449"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780340182512"], "isbn_10": ["0340182512"], "publish_date": "January 1, 1974", "key": "/books/OL10616583M", "authors": [{"key": "/authors/OL1046017A"}], "latest_revision": 3, "works": [{"key": "/works/OL4894805W"}], "type": {"key": "/type/edition"}, "subjects": ["Technology: General Issues", "Technology & Applied Sciences"], "revision": 3}
+/type/edition /books/OL10617283M 6 2020-10-15T21:21:00.581710 {"publishers": ["Hodder & Stoughton Ltd"], "number_of_pages": 332, "isbn_10": ["0340224827"], "physical_format": "Hardcover", "lc_classifications": ["DU422.82.H47 K56"], "latest_revision": 6, "key": "/books/OL10617283M", "authors": [{"key": "/authors/OL2642044A"}], "languages": [{"key": "/languages/eng"}], "source_records": ["amazon:0340224827", "marc:marc_loc_2016/BooksAll.2016.part11.utf8:110295085:830"], "title": "Te Puea", "lccn": ["78323733"], "identifiers": {"goodreads": ["4813346"], "librarything": ["7813687"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780340224823"], "subjects": ["Te Puea Herangi"], "publish_date": "June 1, 1978", "last_modified": {"type": "/type/datetime", "value": "2020-10-15T21:21:00.581710"}, "works": [{"key": "/works/OL285306W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL10617911M 3 2010-12-05T00:21:20.214202 {"publishers": ["Hodder Children's Books"], "number_of_pages": 128, "classifications": {}, "last_modified": {"type": "/type/datetime", "value": "2010-12-05T00:21:20.214202"}, "title": "Pony at Blackbird Cottage", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "type": {"key": "/type/edition"}, "notes": {"type": "/type/text", "value": "Imprint: Knight Books"}, "identifiers": {}, "edition_name": "New Ed edition", "isbn_13": ["9780340255087"], "isbn_10": ["0340255080"], "publish_date": "April 1, 1980", "key": "/books/OL10617911M", "authors": [{"key": "/authors/OL1780960A"}], "latest_revision": 3, "works": [{"key": "/works/OL6622790W"}], "physical_format": "Paperback", "revision": 3}
+/type/edition /books/OL10618069M 5 2011-04-28T13:35:32.469293 {"publishers": ["Hodder & Stoughton Educational Division"], "number_of_pages": 144, "last_modified": {"type": "/type/datetime", "value": "2011-04-28T13:35:32.469293"}, "title": "Management Forecasting Typb", "identifiers": {"goodreads": ["7138647"]}, "isbn_13": ["9780340262849"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Hardcover", "isbn_10": ["0340262842"], "publish_date": "January 1, 1983", "key": "/books/OL10618069M", "authors": [{"key": "/authors/OL3474741A"}], "latest_revision": 5, "oclc_numbers": ["9815849"], "works": [{"key": "/works/OL9446926W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10618184M 3 2022-08-04T23:00:48.689401 {"publishers": ["Arnold Overseas"], "isbn_10": ["0340267046"], "number_of_pages": 160, "isbn_13": ["9780340267042"], "physical_format": "Paperback", "publish_date": "September 1, 1981", "key": "/books/OL10618184M", "authors": [{"key": "/authors/OL3474754A"}], "title": "The Cardinal Principles of Islam (Arewa Books)", "subjects": ["Theology", "Islam"], "works": [{"key": "/works/OL9446942W"}], "type": {"key": "/type/edition"}, "source_records": ["amazon:0340267046"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-04T23:00:48.689401"}}
+/type/edition /books/OL10618215M 4 2010-04-24T18:05:23.118702 {"publishers": ["Hodder Headline Australia"], "identifiers": {"goodreads": ["4182317"]}, "subtitle": "The Functions and Operations of a Specialty (Care and Welfare)", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:05:23.118702"}, "title": "Using Child Psychiatry", "number_of_pages": 208, "isbn_13": ["9780340268353"], "physical_format": "Paperback", "isbn_10": ["0340268352"], "publish_date": "October 1, 1981", "key": "/books/OL10618215M", "authors": [{"key": "/authors/OL954088A"}], "latest_revision": 4, "works": [{"key": "/works/OL4644693W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10618407M 5 2011-04-28T15:22:27.912596 {"publishers": ["Hodder Children's Books"], "identifiers": {"librarything": ["1747050"]}, "classifications": {}, "last_modified": {"type": "/type/datetime", "value": "2011-04-28T15:22:27.912596"}, "title": "Jockey School", "physical_format": "Paperback", "notes": {"type": "/type/text", "value": "Imprint: Knight Books"}, "number_of_pages": 144, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780340280409"], "isbn_10": ["0340280409"], "publish_date": "August 1, 1982", "key": "/books/OL10618407M", "authors": [{"key": "/authors/OL720945A"}], "latest_revision": 5, "oclc_numbers": ["12614173"], "works": [{"key": "/works/OL3951593W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10618455M 2 2009-12-15T00:51:36.627599 {"publishers": ["Hodder & Stoughton Religious"], "key": "/books/OL10618455M", "title": "Pattern for Living Hcpb", "isbn_13": ["9780340282076"], "physical_format": "Paperback", "isbn_10": ["034028207X"], "publish_date": "January 1, 1976", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:51:36.627599"}, "authors": [{"key": "/authors/OL3356135A"}], "latest_revision": 2, "works": [{"key": "/works/OL9306680W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10618653M 5 2022-12-08T23:34:43.549972 {"publishers": ["Hodder Arnold H&S"], "number_of_pages": 144, "title": "Indoor Games and Activities", "physical_format": "Paperback", "identifiers": {"librarything": ["5066597"]}, "isbn_13": ["9780340324004"], "isbn_10": ["0340324007"], "publish_date": "December 1, 1982", "key": "/books/OL10618653M", "authors": [{"key": "/authors/OL3474833A"}], "works": [{"key": "/works/OL9447060W"}], "type": {"key": "/type/edition"}, "subjects": ["Education"], "lc_classifications": ["GV1229"], "source_records": ["bwb:9780340324004", "promise:bwb_daily_pallets_2021-02-02"], "local_id": ["urn:bwbsku:KO-609-689"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-08T23:34:43.549972"}}
+/type/edition /books/OL10618742M 11 2022-12-08T14:58:46.356710 {"publishers": ["Hodder Children's Books"], "identifiers": {"goodreads": ["1053661"], "librarything": ["44083"]}, "physical_format": "Paperback", "key": "/books/OL10618742M", "authors": [{"key": "/authors/OL76009A"}], "subjects": ["Fiction"], "classifications": {}, "title": "The Black Stallion's Challenge", "notes": {"type": "/type/text", "value": "Imprint: Knight Books"}, "number_of_pages": 160, "isbn_13": ["9780340329931"], "isbn_10": ["0340329939"], "publish_date": "January 3, 1991", "oclc_numbers": ["16591713"], "works": [{"key": "/works/OL11339588W"}], "type": {"key": "/type/edition"}, "covers": [11956280], "ocaid": "blackstallionsch0000farl", "lc_classifications": ["PZ7"], "source_records": ["ia:blackstallionsch0000farl", "amazon:0340329939", "promise:bwb_daily_pallets_2021-04-13"], "local_id": ["urn:bwbsku:KP-650-766"], "latest_revision": 11, "revision": 11, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-08T14:58:46.356710"}}
+/type/edition /books/OL1061880M 3 2020-11-18T03:23:56.278422 {"publishers": ["Malber\u0332i Pabl\u0323ikke\u0304s\u0323ans"], "subtitle": "kathakal\u0323", "lc_classifications": ["PL4718.9.K276 A73 1992"], "latest_revision": 3, "key": "/books/OL1061880M", "authors": [{"key": "/authors/OL102430A"}], "publish_places": ["Ko\u0304l\u0332ikko\u0304t\u0323"], "edition_name": "1st ed.", "pagination": "129 p. ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:98260156:646"], "title": "A\u0304r\u0332a\u0304m\u0323 ka\u0304lam\u0323", "lccn": ["93907368"], "notes": {"type": "/type/text", "value": "Short stories.\nIn Malayalam. "}, "number_of_pages": 129, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/mal"}], "last_modified": {"type": "/type/datetime", "value": "2020-11-18T03:23:56.278422"}, "publish_date": "1992", "publish_country": "ii ", "by_statement": "Akbar Kakkat\u0323t\u0323il ; pat\u0323hanam\u0323, En. Pi. Muhammad.", "works": [{"key": "/works/OL1041553W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10618993M 2 2009-12-15T00:51:37.705377 {"publishers": ["Hodder & Stoughton General Division"], "subtitle": "M Redgrave Hpb", "title": "Autobiography", "isbn_10": ["0340339918"], "isbn_13": ["9780340339916"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:51:37.705377"}, "publish_date": "January 1, 1976", "key": "/books/OL10618993M", "authors": [{"key": "/authors/OL2756166A"}], "latest_revision": 2, "works": [{"key": "/works/OL8297321W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10619106M 5 2011-04-28T13:08:00.512574 {"publishers": ["Hodder & Stoughton"], "last_modified": {"type": "/type/datetime", "value": "2011-04-28T13:08:00.512574"}, "title": "Audacity", "number_of_pages": 239, "isbn_13": ["9780340346525"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Hardcover", "isbn_10": ["0340346523"], "publish_date": "1985", "key": "/books/OL10619106M", "authors": [{"key": "/authors/OL4766221A"}], "latest_revision": 5, "oclc_numbers": ["12584971"], "works": [{"key": "/works/OL4972059W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10619214M 4 2021-08-21T06:18:17.615413 {"publishers": ["Which? Books"], "number_of_pages": 224, "title": "CA Wrong Kind of Medicine ?", "physical_format": "Hardcover", "identifiers": {"librarything": ["3718617"]}, "isbn_13": ["9780340352472"], "isbn_10": ["0340352477"], "publish_date": "June 1, 1984", "key": "/books/OL10619214M", "authors": [{"key": "/authors/OL1639017A"}], "works": [{"key": "/works/OL6282735W"}], "type": {"key": "/type/edition"}, "covers": [11738774], "ocaid": "wrongkindofmedic0000meda", "lc_classifications": ["RM138"], "source_records": ["ia:wrongkindofmedic0000meda"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-08-21T06:18:17.615413"}}
+/type/edition /books/OL10619382M 4 2011-06-08T01:58:01.360913 {"publishers": ["Hodder & Stoughton Religious"], "number_of_pages": 190, "last_modified": {"type": "/type/datetime", "value": "2011-06-08T01:58:01.360913"}, "title": "A People for His Praise", "type": {"key": "/type/edition"}, "identifiers": {"librarything": ["2047320"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780340360989"], "isbn_10": ["0340360984"], "publish_date": "October 1, 1984", "key": "/books/OL10619382M", "authors": [{"key": "/authors/OL2976945A"}], "latest_revision": 4, "oclc_numbers": ["12511505"], "works": [{"key": "/works/OL8750585W"}], "physical_format": "Paperback", "subjects": ["Christian liturgy, prayerbooks & hymnals", "Christianity"], "revision": 4}
+/type/edition /books/OL10619539M 2 2009-12-15T00:51:37.705377 {"publishers": ["Hodder & Stoughton Educational Division"], "key": "/books/OL10619539M", "title": "Casualty Handbook", "isbn_13": ["9780340369869"], "physical_format": "Hardcover", "isbn_10": ["0340369868"], "publish_date": "January 1, 1976", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:51:37.705377"}, "authors": [{"key": "/authors/OL3474965A"}], "latest_revision": 2, "works": [{"key": "/works/OL9447248W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10619781M 3 2009-12-15T00:51:37.705377 {"publishers": ["Hodder Children's Books"], "table_of_contents": [{"type": {"key": "/type/toc_item"}, "class": "section"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:51:37.705377"}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "title": "Ricky", "number_of_pages": 28, "isbn_13": ["9780340380116"], "physical_format": "Hardcover", "isbn_10": ["034038011X"], "latest_revision": 3, "key": "/books/OL10619781M", "authors": [{"key": "/authors/OL763836A"}], "publish_date": "September 1, 1985", "works": [{"key": "/works/OL4079537W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10619814M 4 2021-08-21T02:19:58.994618 {"publishers": ["Consumers' Association and Hodder & Stoughton"], "physical_format": "Paperback", "title": "Understanding allergies (Which? books)", "number_of_pages": 176, "isbn_13": ["9780340381625"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0340381620"], "publish_date": "1986", "key": "/books/OL10619814M", "authors": [{"key": "/authors/OL3475011A"}], "oclc_numbers": ["13359389"], "works": [{"key": "/works/OL9447290W"}], "type": {"key": "/type/edition"}, "subjects": ["Coping with illness"], "covers": [11734655], "ocaid": "understandingall0000stee", "lc_classifications": ["RC584"], "source_records": ["ia:understandingall0000stee"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-08-21T02:19:58.994618"}}
+/type/edition /books/OL10619920M 3 2022-10-29T15:49:02.861487 {"publishers": ["Hodder & Stoughton General Division"], "physical_format": "Paperback", "title": "Frogs (The Australian Environment)", "isbn_13": ["9780340386613"], "isbn_10": ["0340386614"], "publish_date": "1986", "key": "/books/OL10619920M", "authors": [{"key": "/authors/OL3475035A"}, {"key": "/authors/OL2844654A"}], "oclc_numbers": ["219943226"], "type": {"key": "/type/edition"}, "works": [{"key": "/works/OL29246884W"}], "source_records": ["amazon:0340386614"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-29T15:49:02.861487"}}
+/type/edition /books/OL10621019M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Hodder & Stoughton Religious"], "title": "George Bell of Germany Ppr", "isbn_13": ["9780340450550"], "isbn_10": ["034045055X"], "publish_date": "December 31, 1999", "key": "/books/OL10621019M", "authors": [{"key": "/authors/OL2622733A"}], "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10621156M 6 2022-12-15T01:30:44.843413 {"title": "Signs, Symbols and Stories (Seeking Religion)", "authors": [{"key": "/authors/OL3332017A"}], "publish_date": "January 18, 1990", "publishers": ["Hodder Arnold H&S"], "isbn_10": ["0340490519"], "isbn_13": ["9780340490518"], "physical_format": "Paperback", "subjects": ["For National Curriculum Key Stage 3", "For P7-S2 (Scottish)", "Comparative religion", "Religion: general"], "type": {"key": "/type/edition"}, "lc_classifications": ["BL600"], "source_records": ["bwb:9780340490518", "ia:signssymbolsstor0000ayle", "promise:bwb_daily_pallets_2022-03-17"], "ocaid": "signssymbolsstor0000ayle", "key": "/books/OL10621156M", "number_of_pages": 32, "works": [{"key": "/works/OL9278121W"}], "local_id": ["urn:bwbsku:KQ-170-034"], "covers": [13103742], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-15T01:30:44.843413"}}
+/type/edition /books/OL10621369M 3 2022-05-25T04:57:54.987954 {"publishers": ["Arnold"], "key": "/books/OL10621369M", "title": "The Economist Pocket Guide to Business Taxes", "number_of_pages": 144, "isbn_13": ["9780340499160"], "physical_format": "Hardcover", "isbn_10": ["0340499168"], "publish_date": "January 1, 1989", "authors": [{"key": "/authors/OL3475307A"}], "works": [{"key": "/works/OL9447664W"}], "type": {"key": "/type/edition"}, "lc_classifications": ["HD2753.G7"], "source_records": ["bwb:9780340499160"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T04:57:54.987954"}}
+/type/edition /books/OL10621428M 5 2022-12-05T12:59:25.825633 {"publishers": ["Hodder Children's Books"], "title": "My Big Brother", "number_of_pages": 32, "isbn_13": ["9780340501177"], "physical_format": "Hardcover", "isbn_10": ["0340501170"], "publish_date": "May 1, 1989", "key": "/books/OL10621428M", "authors": [{"key": "/authors/OL355373A"}], "oclc_numbers": ["19271016"], "works": [{"key": "/works/OL2521079W"}], "type": {"key": "/type/edition"}, "subjects": ["Fiction"], "covers": [12851399], "ocaid": "mybigbrother0000gili", "source_records": ["ia:mybigbrother0000gili", "promise:bwb_daily_pallets_2022-04-20"], "local_id": ["urn:bwbsku:KQ-665-089"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-05T12:59:25.825633"}}
+/type/edition /books/OL10621594M 4 2010-08-17T03:12:35.943951 {"publishers": ["Teach Yourself Books"], "last_modified": {"type": "/type/datetime", "value": "2010-08-17T03:12:35.943951"}, "title": "Japanese (Teach Yourself)", "identifiers": {"goodreads": ["1535101"], "librarything": ["458305"]}, "isbn_13": ["9780340505786"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Audio Cassette", "isbn_10": ["0340505788"], "publish_date": "June 4, 1992", "key": "/books/OL10621594M", "authors": [{"key": "/authors/OL3234736A"}, {"key": "/authors/OL2903561A"}], "latest_revision": 4, "type": {"key": "/type/edition"}, "subjects": ["Language & Linguistics", "Language self-study & phrasebooks", "Study guides, home study & revision notes", "Japanese"], "revision": 4}
+/type/edition /books/OL10621715M 4 2011-04-25T22:46:19.104277 {"publishers": ["Hodder & Stoughton General Division"], "last_modified": {"type": "/type/datetime", "value": "2011-04-25T22:46:19.104277"}, "title": "Maurice Puts Things Right (The Adventures of Maurice Mini Minor)", "number_of_pages": 32, "isbn_13": ["9780340511008"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0340511001"], "publish_date": "February 15, 1990", "key": "/books/OL10621715M", "authors": [{"key": "/authors/OL113303A"}, {"key": "/authors/OL4359242A"}], "latest_revision": 4, "oclc_numbers": ["20721964"], "works": [{"key": "/works/OL15462069W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10622182M 8 2022-12-08T07:10:15.869950 {"publishers": ["Edward Arnold"], "number_of_pages": 248, "source_records": ["marc:talis_openlibrary_contribution/talis-openlibrary-contribution.mrc:1856082793:841", "ia:managinghumanres0000unse_i6x0", "bwb:9780340525128", "promise:bwb_daily_pallets_2021-06-17"], "title": "Managing Human Resources", "type": {"key": "/type/edition"}, "identifiers": {"goodreads": ["2168532"]}, "isbn_13": ["9780340525128"], "isbn_10": ["0340525126"], "publish_date": "1990", "key": "/books/OL10622182M", "authors": [{"key": "/authors/OL3475444A"}], "works": [{"key": "/works/OL9447909W"}], "physical_format": "Paperback", "covers": [12323992], "ocaid": "managinghumanres0000unse_i6x0", "lc_classifications": ["HF5549"], "local_id": ["urn:bwbsku:KP-902-004"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-08T07:10:15.869950"}}
+/type/edition /books/OL10622236M 4 2011-04-29T10:29:35.026657 {"publishers": ["Hodder Children's Books"], "number_of_pages": 32, "last_modified": {"type": "/type/datetime", "value": "2011-04-29T10:29:35.026657"}, "title": "Punctuation (Test Your Child's)", "type": {"key": "/type/edition"}, "identifiers": {"librarything": ["212648"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780340527238"], "isbn_10": ["0340527234"], "publish_date": "August 16, 1990", "key": "/books/OL10622236M", "authors": [{"key": "/authors/OL1838561A"}], "latest_revision": 4, "oclc_numbers": ["24724885"], "works": [{"key": "/works/OL6761019W"}], "physical_format": "Paperback", "subjects": ["English language", "Study guides, home study & revision notes"], "revision": 4}
+/type/edition /books/OL10622506M 3 2022-05-25T05:17:28.213037 {"publishers": ["Hodder Arnold H&S"], "isbn_10": ["0340534222"], "number_of_pages": 10, "isbn_13": ["9780340534229"], "physical_format": "Ring-bound", "publish_date": "May 31, 1990", "key": "/books/OL10622506M", "authors": [{"key": "/authors/OL3475326A"}], "title": "Graded Assessment in Modern Languages", "subjects": ["Modern language learning material", "For National Curriculum Key Stage 4 & GCSE", "French"], "works": [{"key": "/works/OL9447685W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780340534229"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T05:17:28.213037"}}
+/type/edition /books/OL10622618M 2 2009-12-15T00:51:40.134342 {"publishers": ["Hodder Children's Books"], "key": "/books/OL10622618M", "title": "School Trip Scholastic Kgt", "isbn_13": ["9780340537633"], "physical_format": "Paperback", "isbn_10": ["0340537639"], "publish_date": "November 16, 1990", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:51:40.134342"}, "authors": [{"key": "/authors/OL3326568A"}], "latest_revision": 2, "works": [{"key": "/works/OL9272361W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10622643M 8 2022-12-04T05:33:20.204143 {"publishers": ["Hodder & Stoughton Religious"], "identifiers": {"librarything": ["6513879"], "goodreads": ["1211261"]}, "title": "A Way of Peace", "type": {"key": "/type/edition"}, "number_of_pages": 224, "isbn_13": ["9780340538203"], "isbn_10": ["0340538201"], "publish_date": "November 15, 1990", "key": "/books/OL10622643M", "authors": [{"key": "/authors/OL1926283A"}], "oclc_numbers": ["59149131"], "works": [{"key": "/works/OL6943907W"}], "physical_format": "Paperback", "subjects": ["Northern Ireland", "Christianity", "Multicultural studies", "Social issues"], "local_id": ["urn:bwbsku:KR-587-790"], "source_records": ["promise:bwb_daily_pallets_2022-11-22"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T05:33:20.204143"}}
+/type/edition /books/OL10622678M 7 2022-12-09T08:00:52.897681 {"publishers": ["Teach Yourself Books"], "number_of_pages": 192, "title": "An Introduction to SuperCalc 5 (Teach Yourself)", "type": {"key": "/type/edition"}, "identifiers": {"goodreads": ["5687272"], "librarything": ["4165549"]}, "isbn_13": ["9780340539064"], "isbn_10": ["0340539062"], "publish_date": "July 2, 1992", "key": "/books/OL10622678M", "authors": [{"key": "/authors/OL3461480A"}], "works": [{"key": "/works/OL9430241W"}], "physical_format": "Paperback", "subjects": ["Programming languages"], "covers": [10987741], "ocaid": "supercalcuptover0000saxo", "source_records": ["ia:supercalcuptover0000saxo", "promise:bwb_daily_pallets_2020-12-14"], "local_id": ["urn:bwbsku:KO-554-187"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T08:00:52.897681"}}
+/type/edition /books/OL10622830M 3 2022-05-25T01:03:52.048377 {"publishers": ["Hodder Arnold H&S"], "title": "Infotheque", "number_of_pages": 96, "isbn_13": ["9780340543702"], "physical_format": "Paperback", "isbn_10": ["0340543701"], "publish_date": "August 15, 1991", "key": "/books/OL10622830M", "authors": [{"key": "/authors/OL2668155A"}, {"key": "/authors/OL3461439A"}, {"key": "/authors/OL3475583A"}], "works": [{"key": "/works/OL12684821W"}], "type": {"key": "/type/edition"}, "subjects": ["For National Curriculum Key Stage 3", "French", "Modern language learning material"], "source_records": ["bwb:9780340543702"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T01:03:52.048377"}}
+/type/edition /books/OL10623123M 8 2022-12-09T19:11:15.571538 {"publishers": ["Hodder & Stoughton Ltd"], "number_of_pages": 352, "weight": "6.4 ounces", "covers": [2394837, 201720], "physical_format": "Paperback", "key": "/books/OL10623123M", "authors": [{"key": "/authors/OL2101074A"}], "subjects": ["Espionage & spy thriller", "Fiction"], "edition_name": "New Ed edition", "title": "The Secret Pilgrim (Coronet Books)", "identifiers": {"librarything": ["168360"], "goodreads": ["46462"]}, "isbn_13": ["9780340552056"], "isbn_10": ["0340552050"], "publish_date": "October 6, 1994", "works": [{"key": "/works/OL29767W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "6.8 x 4.4 x 0.9 inches", "local_id": ["urn:bwbsku:KO-155-832"], "source_records": ["promise:bwb_daily_pallets_2020-10-14"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T19:11:15.571538"}}
+/type/edition /books/OL10623224M 4 2022-05-25T00:36:18.134916 {"publishers": ["Hodder Arnold H&S"], "isbn_10": ["0340555319"], "number_of_pages": 64, "isbn_13": ["9780340555316"], "physical_format": "Paperback", "publish_date": "July 7, 1994", "key": "/books/OL10623224M", "authors": [{"key": "/authors/OL3475007A"}, {"key": "/authors/OL725132A"}], "title": "Geography Now!", "works": [{"key": "/works/OL15090194W"}], "type": {"key": "/type/edition"}, "subjects": ["For National Curriculum Key Stage 3", "Geographical information systems (GIS) & remote sensing"], "source_records": ["bwb:9780340555316"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T00:36:18.134916"}}
+/type/edition /books/OL10623567M 5 2022-05-25T00:33:21.568135 {"publishers": ["Teach Yourself Books"], "identifiers": {"librarything": ["6025855"]}, "title": "Bengali (Teach Yourself)", "number_of_pages": 352, "isbn_13": ["9780340564899"], "covers": [2394909, 201781], "physical_format": "Paperback", "isbn_10": ["034056489X"], "publish_date": "July 21, 1994", "key": "/books/OL10623567M", "authors": [{"key": "/authors/OL650017A"}], "works": [{"key": "/works/OL3725459W"}], "type": {"key": "/type/edition"}, "subjects": ["Language & Linguistics", "Language learning: audio-visual & multimedia", "Language self-study & phrasebooks", "Bengali", "Indic, East Indo-European & Dravidian Languages"], "source_records": ["bwb:9780340564899"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T00:33:21.568135"}}
+/type/edition /books/OL10623588M 4 2022-12-23T21:21:44.147274 {"publishers": ["Springer-Verlag"], "physical_format": "Hardcover", "source_records": ["amazon:0340565691"], "title": "European Journal of Plastic Surgery", "number_of_pages": 32, "isbn_13": ["9780340565698"], "languages": [{"key": "/languages/eng"}], "authors": [{"key": "/authors/OL863535A"}, {"key": "/authors/OL934457A"}], "isbn_10": ["0340565691"], "publish_date": "June 1986", "key": "/books/OL10623588M", "subjects": ["Comic strip fiction / graphic novels", "Reference"], "works": [{"key": "/works/OL14935791W"}], "type": {"key": "/type/edition"}, "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-23T21:21:44.147274"}}
+/type/edition /books/OL10623875M 10 2022-12-04T20:24:38.914870 {"publishers": ["A Hodder Arnold Publication"], "number_of_pages": 224, "physical_format": "Paperback", "lc_classifications": ["PR9205.6 .C37 1992"], "key": "/books/OL10623875M", "authors": [{"key": "/authors/OL917949A"}], "contributions": ["Mervyn Morris (Foreword)"], "subjects": ["Works by individual poets: from c 1900 -", "Caribbean Literature In English", "English", "Poetry", "Caribbean islands", "General", "Caribbean poetry (English)"], "edition_name": "2 edition", "languages": [{"key": "/languages/eng"}], "source_records": ["marc:marc_records_scriblio_net/part22.dat:167180590:707", "marc:marc_cca/b10621386.out:24046053:819", "marc:marc_loc_2016/BooksAll.2016.part21.utf8:203242508:808", "bwb:9780340573792", "promise:bwb_daily_pallets_2022-08-02"], "title": "Caribbean Poetry Now", "lccn": ["92028221"], "identifiers": {"goodreads": ["1514534"], "librarything": ["1210768"]}, "isbn_13": ["9780340573792"], "isbn_10": ["0340573791"], "publish_date": "February 15, 1995", "works": [{"key": "/works/OL4548376W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "0.1 x 0.1 x 0.1 inches", "local_id": ["urn:bwbsku:O8-BRX-236"], "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T20:24:38.914870"}}
+/type/edition /books/OL10623955M 5 2022-12-10T03:22:38.964621 {"publishers": ["PENGUIN BOOKS AUSTRALIA LTD."], "title": "WHICH? HOMEPLANNER (\"WHICH?\" CONSUMER GUIDES)", "number_of_pages": 192, "isbn_13": ["9780340576830"], "physical_format": "Hardcover", "isbn_10": ["0340576839"], "publish_date": "1992", "key": "/books/OL10623955M", "authors": [{"key": "/authors/OL3475880A"}], "oclc_numbers": ["60096828"], "works": [{"key": "/works/OL9448369W"}], "type": {"key": "/type/edition"}, "subjects": ["DIY"], "covers": [11743578], "ocaid": "whichhomeplanner0000debo", "source_records": ["ia:whichhomeplanner0000debo", "promise:bwb_daily_pallets_2020-07-30"], "local_id": ["urn:bwbsku:KN-589-503"], "identifiers": {"amazon": [""]}, "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T03:22:38.964621"}}
+/type/edition /books/OL10624411M 7 2022-12-09T01:12:33.356602 {"publishers": ["Hodder Arnold H&S"], "number_of_pages": 288, "title": "Round the World in Recipes", "type": {"key": "/type/edition"}, "identifiers": {"librarything": ["5781101"]}, "isbn_13": ["9780340591550"], "isbn_10": ["0340591552"], "publish_date": "October 21, 1993", "key": "/books/OL10624411M", "authors": [{"key": "/authors/OL1447459A"}], "oclc_numbers": ["29598638"], "works": [{"key": "/works/OL5876355W"}], "physical_format": "Paperback", "subjects": ["Diets & dieting", "Food & drink / cookery: general interest", "General cookery"], "covers": [11419783], "ocaid": "roundworldinreci0000bate", "lc_classifications": ["TX652 .B37 1993"], "source_records": ["ia:roundworldinreci0000bate", "bwb:9780340591550", "promise:bwb_daily_pallets_2021-01-25"], "local_id": ["urn:bwbsku:KP-024-056"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T01:12:33.356602"}}
+/type/edition /books/OL10624642M 5 2022-05-25T04:22:43.157307 {"publishers": ["Hodder & Stoughton Educational Division"], "physical_format": "Paperback", "subtitle": "Book/Cassette Pack (Teach Yourself)", "title": "Spanish in Your Pocket Book/Cassette Pack", "isbn_13": ["9780340599013"], "isbn_10": ["0340599014"], "publish_date": "June 15, 1995", "key": "/books/OL10624642M", "authors": [{"key": "/authors/OL2668154A"}], "works": [{"key": "/works/OL8014224W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780340599013"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T04:22:43.157307"}}
+/type/edition /books/OL10624931M 8 2022-12-08T13:04:25.691739 {"publishers": ["Houghton Mifflin"], "identifiers": {"goodreads": ["4558597"], "librarything": ["12080"]}, "subtitle": "The Flawed Angel", "title": "Byron", "contributions": ["Illustrated (Illustrator)"], "number_of_pages": 521, "isbn_13": ["9780340607534"], "covers": [2395237, 202070], "physical_format": "Hardcover", "isbn_10": ["034060753X"], "publish_date": "1997", "key": "/books/OL10624931M", "authors": [{"key": "/authors/OL546004A"}], "works": [{"key": "/works/OL3360036W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780340607534", "promise:bwb_daily_pallets_2021-05-10"], "local_id": ["urn:bwbsku:KP-116-669"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-08T13:04:25.691739"}}
+/type/edition /books/OL10624997M 3 2010-04-24T18:05:50.867447 {"publishers": ["Hodder Children's Books"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:05:50.867447"}, "title": "The Little Fox", "identifiers": {"goodreads": ["4837902"]}, "isbn_13": ["9780340609477"], "isbn_10": ["0340609478"], "publish_date": "September 15, 1994", "key": "/books/OL10624997M", "authors": [{"key": "/authors/OL1551500A"}, {"key": "/authors/OL3476090A"}], "latest_revision": 3, "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10625263M 5 2011-04-30T01:36:47.200385 {"publishers": ["Hodder Children's Books"], "number_of_pages": 304, "last_modified": {"type": "/type/datetime", "value": "2011-04-30T01:36:47.200385"}, "title": "Jill Bumper Double", "type": {"key": "/type/edition"}, "identifiers": {"librarything": ["4730631"], "goodreads": ["6791240"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780340619407"], "isbn_10": ["0340619406"], "publish_date": "August 4, 1994", "key": "/books/OL10625263M", "authors": [{"key": "/authors/OL2237249A"}], "latest_revision": 5, "oclc_numbers": ["59898336"], "physical_format": "Paperback", "subjects": ["Fiction"], "revision": 5}
+/type/edition /books/OL10625614M 2 2011-04-29T11:45:13.460365 {"publishers": ["Teach Yourself Books"], "last_modified": {"type": "/type/datetime", "value": "2011-04-29T11:45:13.460365"}, "title": "Holiday Spanish (Teach Yourself)", "number_of_pages": 96, "isbn_13": ["9780340631195"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Audio Cassette", "isbn_10": ["0340631198"], "publish_date": "May 4, 1995", "key": "/books/OL10625614M", "authors": [{"key": "/authors/OL26469A"}, {"key": "/authors/OL2903596A"}], "latest_revision": 2, "oclc_numbers": ["68335126"], "type": {"key": "/type/edition"}, "subjects": ["Language self-study & phrasebooks", "Spanish"], "revision": 2}
+/type/edition /books/OL10625725M 6 2012-06-15T16:55:42.764702 {"publishers": ["Hodder Children's Books"], "identifiers": {}, "weight": "3.7 ounces", "covers": [2395653], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2012-06-15T16:55:42.764702"}, "latest_revision": 6, "key": "/books/OL10625725M", "authors": [{"key": "/authors/OL399235A"}], "subjects": ["Fantasy"], "classifications": {}, "title": "The House of Birds", "notes": {"type": "/type/text", "value": "H Fantasy"}, "number_of_pages": 160, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780340635926"], "isbn_10": ["0340635924"], "publish_date": "April 8, 1996", "oclc_numbers": ["43203943"], "works": [{"key": "/works/OL2726473W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "7 x 4.4 x 0.5 inches", "revision": 6}
+/type/edition /books/OL10625859M 7 2022-12-09T15:32:44.976459 {"publishers": ["Hodder & Stoughton Ltd"], "number_of_pages": 208, "title": "Good Health, Good Travel", "identifiers": {"librarything": ["6482869"]}, "isbn_13": ["9780340641668"], "edition_name": "New Ed edition", "physical_format": "Paperback", "isbn_10": ["0340641665"], "publish_date": "August 17, 1995", "key": "/books/OL10625859M", "authors": [{"key": "/authors/OL2923498A"}], "oclc_numbers": ["34150819"], "works": [{"key": "/works/OL8663477W"}], "type": {"key": "/type/edition"}, "subjects": ["Family & Health", "Travel & holiday guides"], "covers": [10616682], "ocaid": "goodhealthgoodtr0000lank", "lc_classifications": ["HC1 LAN"], "source_records": ["ia:goodhealthgoodtr0000lank", "bwb:9780340641668", "promise:bwb_daily_pallets_2020-11-19"], "local_id": ["urn:bwbsku:KO-400-386"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T15:32:44.976459"}}
+/type/edition /books/OL10626320M 8 2022-12-09T01:19:57.416989 {"publishers": ["Hodder Arnold H&S"], "number_of_pages": 48, "title": "A Separate Kingdom (Understanding People in the Past)", "type": {"key": "/type/edition"}, "identifiers": {"goodreads": ["1955664"]}, "covers": [2396061], "isbn_13": ["9780340655375"], "isbn_10": ["0340655372"], "publish_date": "June 3, 1996", "key": "/books/OL10626320M", "authors": [{"key": "/authors/OL2628568A"}], "oclc_numbers": ["35173141"], "works": [{"key": "/works/OL7910170W"}], "physical_format": "Paperback", "subjects": ["British & Irish history: c 1000 to c 1500", "Scotland", "c 1000 CE to c 1500", "For P7-S2 (Scottish)"], "source_records": ["bwb:9780340655375", "promise:bwb_daily_pallets_2021-01-25"], "local_id": ["urn:bwbsku:KO-689-134"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T01:19:57.416989"}}
+/type/edition /books/OL10626379M 8 2022-12-07T06:26:26.475220 {"publishers": ["Hodder & Stoughton"], "number_of_pages": 240, "weight": "4.8 ounces", "physical_format": "Hardcover", "key": "/books/OL10626379M", "authors": [{"key": "/authors/OL3476352A"}], "subjects": ["Christian & quasi-Christian cults & sects", "Contemporary non-Christian cults & sects", "Other Protestant & Nonconformist Churches", "Christian Life - Spiritual Warfare", "Religion - Spiritual Warfare"], "languages": [{"key": "/languages/eng"}], "title": "When a Church Becomes a Cult:", "identifiers": {"librarything": ["2472486"], "goodreads": ["5612362"]}, "isbn_13": ["9780340656228"], "isbn_10": ["0340656220"], "publish_date": "September 1996", "oclc_numbers": ["36365918"], "works": [{"key": "/works/OL9448892W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "7.8 x 5.1 x 0.5 inches", "source_records": ["bwb:9780340656228", "promise:bwb_daily_pallets_2022-03-17"], "local_id": ["urn:bwbsku:KP-365-838"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-07T06:26:26.475220"}}
+/type/edition /books/OL10626472M 7 2022-12-08T06:29:19.353940 {"publishers": ["Hodder Arnold H&S"], "number_of_pages": 64, "title": "Business Systems for Leisure and Tourism (Hodder GNVQ - Leisure & Tourism in Action S.)", "identifiers": {"goodreads": ["5237248"]}, "isbn_13": ["9780340658390"], "covers": [2396182], "physical_format": "Paperback", "isbn_10": ["0340658398"], "publish_date": "October 6, 1997", "key": "/books/OL10626472M", "authors": [{"key": "/authors/OL2148546A"}, {"key": "/authors/OL3476373A"}, {"key": "/authors/OL3476372A"}], "subjects": ["Business strategy", "For GNVQ (General National Vocational Qualification)", "Sport & leisure industries", "Tourism industry"], "type": {"key": "/type/edition"}, "works": [{"key": "/works/OL26357145W"}], "ocaid": "businesssystemsf0000cund", "lc_classifications": ["G155.G7 C86 1999"], "source_records": ["ia:businesssystemsf0000cund", "bwb:9780340658390", "promise:bwb_daily_pallets_2021-06-17"], "local_id": ["urn:bwbsku:KP-831-538"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-08T06:29:19.353940"}}
+/type/edition /books/OL10627245M 9 2022-12-05T07:18:57.332194 {"publishers": ["Hodder & Stoughton"], "number_of_pages": 302, "subtitle": "A Farewell to God", "weight": "9 ounces", "covers": [2396765, 202943], "physical_format": "Paperback", "key": "/books/OL10627245M", "authors": [{"key": "/authors/OL2621515A"}], "subjects": ["Nature & existence of God", "General", "History", "Religion - Socialissues", "Atheism", "Christianity", "Controversial literature", "God", "History: World"], "edition_name": "New Ed edition", "languages": [{"key": "/languages/eng"}], "title": "All in the Mind", "identifiers": {"librarything": ["1391920"], "goodreads": ["617437"]}, "isbn_13": ["9780340680643"], "isbn_10": ["0340680644"], "publish_date": "October 1999", "oclc_numbers": ["41960656"], "type": {"key": "/type/edition"}, "physical_dimensions": "7.8 x 5.1 x 0.7 inches", "works": [{"key": "/works/OL27777325W"}], "source_records": ["bwb:9780340680643", "ia:allinmindfarewel0000kenn_r3n7", "promise:bwb_daily_pallets_2022-05-23"], "ocaid": "allinmindfarewel0000kenn_r3n7", "lc_classifications": ["BL2747 .K46 1999"], "local_id": ["urn:bwbsku:KQ-669-881"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-05T07:18:57.332194"}}
+/type/edition /books/OL10627583M 7 2022-12-10T03:34:07.391879 {"publishers": ["Hodder Arnold H&S"], "title": "The Human Environment (Standard Grade Geography)", "number_of_pages": 96, "isbn_13": ["9780340690895"], "covers": [2397096], "edition_name": "2Rev Ed edition", "physical_format": "Paperback", "isbn_10": ["0340690895"], "publish_date": "November 2, 1998", "key": "/books/OL10627583M", "authors": [{"key": "/authors/OL3269033A"}], "oclc_numbers": ["42950571"], "works": [{"key": "/works/OL9204594W"}], "type": {"key": "/type/edition"}, "subjects": ["Human geography / peoples of the world", "The environment", "For Standard Grade (Scottish)"], "ocaid": "humanenvironment0000clar", "source_records": ["ia:humanenvironment0000clar", "bwb:9780340690895", "promise:bwb_daily_pallets_2020-07-30"], "local_id": ["urn:bwbsku:KO-075-321"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T03:34:07.391879"}}
+/type/edition /books/OL10627943M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Hodder & Stoughton Educational Division"], "title": "Ise Paediatric Vade-Mecum 13ed", "isbn_13": ["9780340700488"], "isbn_10": ["0340700483"], "publish_date": "September 27, 1996", "key": "/books/OL10627943M", "authors": [{"key": "/authors/OL3476618A"}, {"key": "/authors/OL2751027A"}], "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10628022M 9 2022-12-09T05:03:25.921652 {"publishers": ["Hodder Arnold H&S"], "identifiers": {"goodreads": ["3074004"]}, "covers": [2397508], "physical_format": "Paperback", "key": "/books/OL10628022M", "authors": [{"key": "/authors/OL2662872A"}], "subjects": ["For National Curriculum Key Stage 3", "For National Curriculum Key Stage 4 & GCSE", "Human geography / peoples of the world", "Sociology & social issues"], "classifications": {}, "title": "Population and Settlement", "notes": {"type": "/type/text", "value": "Hodder Geography"}, "number_of_pages": 64, "isbn_13": ["9780340701959"], "isbn_10": ["0340701951"], "publish_date": "June 1, 1998", "works": [{"key": "/works/OL8001017W"}], "type": {"key": "/type/edition"}, "ocaid": "populationsettle0000tayl", "lc_classifications": ["HB883 .T39 1998"], "source_records": ["ia:populationsettle0000tayl", "bwb:9780340701959", "promise:bwb_daily_pallets_2020-12-31"], "local_id": ["urn:bwbsku:KP-085-705"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T05:03:25.921652"}}
+/type/edition /books/OL1062811M 3 2020-11-18T03:34:15.291917 {"publishers": ["Sa\u0304hitya Praka\u0304s\u0301a", "Paribeshaka Pustaka Bipan\u0323i"], "description": {"type": "/type/text", "value": "Potrayal of women in the works of Rabindranath Tagore, 1861-1942, Indian poet."}, "lc_classifications": ["PK1727.W6 D59 1993"], "latest_revision": 3, "key": "/books/OL1062811M", "authors": [{"key": "/authors/OL568580A"}], "publish_places": ["Kalika\u0304ta\u0304"], "pagination": "6, 119, [1] p. ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:99083132:880"], "title": "Rabi\u0304ndra sa\u0304hitye na\u0304ri\u0304", "lccn": ["93908474"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. [120]).\nIn Bengali."}, "number_of_pages": 119, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/ben"}], "subjects": ["Tagore, Rabindranath, 1861-1941 -- Criticism and interpretation.", "Women in literature."], "publish_date": "1993", "publish_country": "ii ", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T03:34:15.291917"}, "by_statement": "Ba\u0304m\u0310s\u0301ari\u0304 D\u0323hya\u0304m\u0323.", "works": [{"key": "/works/OL3436528W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10628594M 8 2022-11-15T01:45:53.767350 {"publishers": ["Hodder & Stoughton"], "number_of_pages": 152, "weight": "4.2 ounces", "covers": [2398074, 203611], "physical_format": "Paperback", "key": "/books/OL10628594M", "authors": [{"key": "/authors/OL220802A"}], "contributions": ["Paul Hunt (Illustrator)"], "subjects": ["Adventure stories", "Westerns - General", "Animals - Horses", "Juvenile Fiction", "Fiction - Western", "Children: Grades 3-4"], "isbn_13": ["9780340716175"], "title": "Rodeo Rocky (Horses of Half Moon Ranch Series)", "identifiers": {"librarything": ["5594111"], "goodreads": ["2606306"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0340716177"], "publish_date": "May 2001", "oclc_numbers": ["42876706"], "works": [{"key": "/works/OL1843874W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "7.4 x 5 x 0.7 inches", "source_records": ["amazon:0340716177"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-15T01:45:53.767350"}}
+/type/edition /books/OL10628770M 6 2022-12-09T16:31:34.641208 {"publishers": ["Hodder Arnold H&S"], "physical_format": "Paperback", "title": "Livewire (Livewire Plays)", "number_of_pages": 32, "covers": [2398278], "isbn_13": ["9780340721001"], "isbn_10": ["0340721006"], "publish_date": "April 6, 1998", "key": "/books/OL10628770M", "authors": [{"key": "/authors/OL55992A"}], "oclc_numbers": ["40609103"], "works": [{"key": "/works/OL705862W"}], "type": {"key": "/type/edition"}, "subjects": ["ELT graded readers", "English language readers", "Special needs & learning difficulties"], "source_records": ["bwb:9780340721001", "promise:bwb_daily_pallets_2020-11-19"], "local_id": ["urn:bwbsku:KO-502-098"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T16:31:34.641208"}}
+/type/edition /books/OL1062894M 6 2020-11-18T03:35:06.277026 {"publishers": ["Indus Pub. Co."], "number_of_pages": 167, "subtitle": "thousand years of existence of the Tabo Chos-khor", "isbn_10": ["8185182965"], "subject_place": ["India", "Lahul and Spiti", "Tabo."], "covers": [4890729, 3869992], "lc_classifications": ["BQ6331.T332 T335 1994"], "latest_revision": 6, "key": "/books/OL1062894M", "authors": [{"key": "/authors/OL108669A"}], "publish_places": ["New Delhi"], "pagination": "167 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:99158674:1082"], "title": "Tabo Monastery and Buddhism in the trans-Himalaya", "dewey_decimal_class": ["294.3/657/095452"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. [154]-155) and index.\n\"Bibliography of works translated by Rin-chen-bzang-po individually or in collaboration with others\"--P. [134]-141."}, "identifiers": {"goodreads": ["5498995"]}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["93908563"], "subjects": ["Tabo (Monastery : Tabo, India) -- History.", "Buddhism -- India -- Lahul and Spiti -- History.", "Buddhist antiquities -- India -- Tabo."], "publish_date": "1994", "publish_country": "ii ", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T03:35:06.277026"}, "by_statement": "O.C. Handa.", "oclc_numbers": ["31239320"], "works": [{"key": "/works/OL1070467W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL1062901M 3 2022-12-26T12:58:50.573259 {"publishers": ["Office of Information and International Relations, Central Tibetan Secretariat"], "subject_place": ["Tibet (China)"], "lc_classifications": ["JX4084.T45 G68 1989"], "key": "/books/OL1062901M", "publish_places": ["Dharmasala"], "contributions": ["Central Tibetan Secretariat. Dept. of Information & International Relations."], "subject_time": [" 1951-"], "pagination": "57 p. ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:99164514:888", "marc:marc_columbia/Columbia-extract-20221130-015.mrc:70200565:1288"], "title": "Government resolutions and international documents on Tibet.", "lccn": ["93908572"], "number_of_pages": 57, "languages": [{"key": "/languages/eng"}], "subjects": ["Tibet (China) -- International status.", "Tibet (China) -- History -- Autonomy and independence movements.", "Tibet (China) -- Politics and government -- 1951-"], "publish_date": "1989", "publish_country": "ii ", "works": [{"key": "/works/OL23530687W"}], "type": {"key": "/type/edition"}, "oclc_numbers": ["30027925"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-26T12:58:50.573259"}}
+/type/edition /books/OL10629042M 4 2022-06-17T02:58:53.029176 {"publishers": ["Hodder & Stoughton Childrens Division"], "physical_format": "Hardcover", "classifications": {}, "title": "Where Are You?", "notes": {"type": "/type/text", "value": "Hodder Children's Books\r\nUsa Edition"}, "identifiers": {}, "edition_name": "Usa Edition", "isbn_13": ["9780340727751"], "isbn_10": ["0340727756"], "publish_date": "December 12, 1999", "key": "/books/OL10629042M", "authors": [{"key": "/authors/OL234252A"}], "works": [{"key": "/works/OL1953181W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780340727751"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-17T02:58:53.029176"}}
+/type/edition /books/OL10629121M 7 2022-12-09T16:24:37.801175 {"publishers": ["Hodder Murray"], "number_of_pages": 72, "subtitle": "Mainstream Edition (Hodder History)", "weight": "9.1 ounces", "covers": [2398532], "physical_format": "Paperback", "key": "/books/OL10629121M", "authors": [{"key": "/authors/OL3476801A"}], "contributions": ["Martyn Whittock (Editor)"], "subjects": ["British & Irish history: c 1000 to c 1500", "c 1000 CE to c 1500", "History", "History: World", "United Kingdom, Great Britain", "For National Curriculum Key Stage 3", "Europe - Great Britain - General", "Study & Teaching"], "edition_name": "General Ed edition", "languages": [{"key": "/languages/eng"}], "title": "Conflict, People & Power: Medieval Britain 1066-1500", "identifiers": {"librarything": ["6103025"]}, "isbn_13": ["9780340730454"], "isbn_10": ["0340730455"], "publish_date": "January 30, 2000", "oclc_numbers": ["42658959"], "works": [{"key": "/works/OL9449495W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.6 x 8.2 x 0.2 inches", "source_records": ["bwb:9780340730454", "promise:bwb_daily_pallets_2020-11-19"], "local_id": ["urn:bwbsku:KO-464-769"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T16:24:37.801175"}}
+/type/edition /books/OL10629347M 6 2022-12-04T20:20:30.732517 {"publishers": ["Hodder & Stoughton"], "identifiers": {"librarything": ["7944723"]}, "covers": [2398703], "edition_name": "TV Tie in Ed edition", "physical_format": "Paperback", "key": "/books/OL10629347M", "authors": [{"key": "/authors/OL3476832A"}], "subjects": ["Fiction", "Picture books", "General", "Juvenile Fiction", "Children: Grades 2-3"], "isbn_13": ["9780340735817"], "title": "Wombles - Tomsk to the Rescue (Wombles)", "number_of_pages": 15, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0340735813"], "publish_date": "June 1999", "works": [{"key": "/works/OL9449573W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780340735817", "promise:bwb_daily_pallets_2022-08-03"], "local_id": ["urn:bwbsku:KR-115-813"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T20:20:30.732517"}}
+/type/edition /books/OL10629967M 3 2022-05-25T03:28:21.418231 {"publishers": ["Hodder Murray"], "weight": "6.4 ounces", "physical_format": "Ring-bound", "key": "/books/OL10629967M", "authors": [{"key": "/authors/OL3474767A"}], "subjects": ["For National Curriculum Key Stage 2", "For National Curriculum Key Stage 3", "Literacy", "Primary / junior schools", "Secondary schools", "Standardized educational test"], "isbn_13": ["9780340749142"], "title": "Group Literacy Assessment", "number_of_pages": 1, "edition_name": "2Rev Ed edition", "isbn_10": ["0340749148"], "publish_date": "June 7, 1999", "works": [{"key": "/works/OL9446973W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "12 x 9.1 x 0.2 inches", "source_records": ["bwb:9780340749142"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T03:28:21.418231"}}
+/type/edition /books/OL10630435M 3 2021-08-18T07:40:50.221279 {"publishers": ["Hodder Arnold"], "physical_format": "Paperback", "title": "Obstetrics by Ten Teachers, 17 Edition, Elst", "isbn_13": ["9780340760956"], "isbn_10": ["0340760958"], "publish_date": "August 25, 2000", "key": "/books/OL10630435M", "authors": [{"key": "/authors/OL2598335A"}, {"key": "/authors/OL2634266A"}], "oclc_numbers": ["61698258"], "type": {"key": "/type/edition"}, "works": [{"key": "/works/OL24844812W"}], "covers": [11688730], "ocaid": "obstetrics0000unse", "lccn": ["2001273690"], "lc_classifications": ["RG524 .O174 2000"], "source_records": ["ia:obstetrics0000unse"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-08-18T07:40:50.221279"}}
+/type/edition /books/OL10630938M 7 2022-12-09T16:15:24.552548 {"publishers": ["Hodder Arnold H&S"], "identifiers": {"librarything": ["5817717"]}, "title": "Political Parties (Access to Politics)", "number_of_pages": 128, "isbn_13": ["9780340774571"], "covers": [2400094], "physical_format": "Paperback", "isbn_10": ["0340774576"], "publish_date": "June 23, 2000", "key": "/books/OL10630938M", "authors": [{"key": "/authors/OL2765288A"}], "works": [{"key": "/works/OL8321495W"}], "type": {"key": "/type/edition"}, "subjects": ["Political parties", "Politics & government", "Designed / suitable for A & AS Level"], "ocaid": "politicalparties0000simp", "lc_classifications": ["JN1117 .S56 2000"], "source_records": ["ia:politicalparties0000simp", "bwb:9780340774571", "promise:bwb_daily_pallets_2020-11-19"], "local_id": ["urn:bwbsku:KO-413-333"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T16:15:24.552548"}}
+/type/edition /books/OL1063099M 8 2020-11-18T03:37:21.573729 {"publishers": ["Bharatiya Vidya Bhavan"], "identifiers": {"goodreads": ["3892097"]}, "isbn_10": ["8172760280"], "lc_classifications": ["ML338 .R235 1993"], "latest_revision": 8, "key": "/books/OL1063099M", "authors": [{"key": "/authors/OL568701A"}], "publish_places": ["Bombay"], "languages": [{"key": "/languages/eng"}], "pagination": "xvi, 196 p. :", "source_records": ["marc:marc_records_scriblio_net/part24.dat:28120474:781", "marc:marc_loc_updates/v37.i21.records.utf8:2454905:786", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:99356257:786"], "title": "The structure of music in raga and Western systems", "dewey_decimal_class": ["781.2/64"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 191) and index."}, "number_of_pages": 196, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "edition_name": "1st ed.", "lccn": ["93908790"], "subjects": ["Raga", "Carnatic music -- History and criticism"], "publish_date": "1993", "publish_country": "ii ", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T03:37:21.573729"}, "by_statement": "Raja Ramanna.", "oclc_numbers": ["30028580"], "works": [{"key": "/works/OL3436823W"}], "type": {"key": "/type/edition"}, "revision": 8}
+/type/edition /books/OL10631004M 6 2022-12-09T00:16:05.901684 {"publishers": ["Hodder Murray"], "number_of_pages": 160, "weight": "1.2 pounds", "covers": [2400159], "physical_format": "Paperback", "key": "/books/OL10631004M", "authors": [{"key": "/authors/OL3449972A"}, {"key": "/authors/OL1002375A"}], "subjects": ["English language: core course material", "Juvenile Nonfiction", "English", "Children: Grades 4-6", "For National Curriculum Key Stage 3", "Language Arts - General"], "edition_name": "2Rev Ed edition", "languages": [{"key": "/languages/eng"}], "title": "New Hodder English 2 (New Hodder English)", "identifiers": {"librarything": ["2961302"]}, "isbn_13": ["9780340775370"], "isbn_10": ["0340775378"], "publish_date": "June 30, 2001", "type": {"key": "/type/edition"}, "physical_dimensions": "10.8 x 8.4 x 0.4 inches", "works": [{"key": "/works/OL27778054W"}], "source_records": ["bwb:9780340775370", "promise:bwb_daily_pallets_2021-01-28"], "local_id": ["urn:bwbsku:KO-725-730"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T00:16:05.901684"}}
+/type/edition /books/OL10631027M 3 2022-05-25T02:15:16.307457 {"publishers": ["Hodder Murray"], "weight": "2.9 ounces", "isbn_10": ["0340775726"], "number_of_pages": 24, "isbn_13": ["9780340775721"], "physical_format": "Ring-bound", "publish_date": "June 23, 2000", "key": "/books/OL10631027M", "authors": [{"key": "/authors/OL3449972A"}], "title": "Going for Gold", "subjects": ["English language: core course material", "English language: reading skills", "English language: writing skills", "Special needs & learning difficulties", "Designed / suitable for National Curriculum"], "works": [{"key": "/works/OL9415528W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "11.6 x 8.3 x 0.2 inches", "source_records": ["bwb:9780340775721"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T02:15:16.307457"}}
+/type/edition /books/OL10631272M 10 2022-12-08T15:59:52.073112 {"identifiers": {"librarything": ["1541757"], "goodreads": ["544403"]}, "title": "Beginners Guide-Freud", "authors": [{"key": "/authors/OL3477054A"}], "publish_date": "April 2000", "publishers": ["Hodder & Stoughton"], "weight": "4 ounces", "covers": [2400325, 204846], "physical_format": "Paperback", "subjects": ["Biography: general", "Psychoanalysis & psychoanalytical theory", "Movements - Psychoanalysis", "Freud, Sigmund", "Psychology"], "isbn_13": ["9780340780121"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0340780126"], "oclc_numbers": ["43376518"], "type": {"key": "/type/edition"}, "physical_dimensions": "8 x 5.5 x 0.5 inches", "source_records": ["bwb:9780340780121", "ia:freudbeginnersgu0000snow", "promise:bwb_daily_pallets_2021-04-01"], "ocaid": "freudbeginnersgu0000snow", "key": "/books/OL10631272M", "number_of_pages": 96, "works": [{"key": "/works/OL9449852W"}], "local_id": ["urn:bwbsku:O7-ARR-721"], "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-08T15:59:52.073112"}}
+/type/edition /books/OL10631426M 5 2012-07-04T06:17:50.345308 {"publishers": ["Hodder Children's Books"], "classifications": {}, "last_modified": {"type": "/type/datetime", "value": "2012-07-04T06:17:50.345308"}, "title": "Animal Ark Hippo", "notes": {"type": "/type/text", "value": "20 Copy Counterpack"}, "identifiers": {"goodreads": ["2574431"]}, "isbn_13": ["9780340783177"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0340783176"], "publish_date": "March 16, 2000", "key": "/books/OL10631426M", "authors": [{"key": "/authors/OL453814A"}], "latest_revision": 5, "works": [{"key": "/works/OL2968592W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL1063150M 3 2020-11-18T03:37:52.200705 {"publishers": ["The Sansthan"], "subtitle": "catalogue, 1991.", "description": {"type": "/type/text", "value": "Catalog of the activities of the Sansthan."}, "subject_place": ["India"], "lc_classifications": ["PN2824 .N37 1991"], "latest_revision": 3, "key": "/books/OL1063150M", "authors": [{"key": "/authors/OL568719A"}], "publish_places": ["Calcutta"], "pagination": "78 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:99400595:691"], "title": "Natya Shodh Sansthan, 1981-91", "lccn": ["93908845"], "number_of_pages": 78, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "subjects": ["Natya Shodh Sansthan (Calcutta, India) -- Catalogs.", "Theater -- India -- Catalogs."], "publish_date": "1991", "publish_country": "ii ", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T03:37:52.200705"}, "works": [{"key": "/works/OL3436869W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10631687M 2 2009-12-15T00:51:45.839848 {"publishers": ["Hodder Children's Books"], "key": "/books/OL10631687M", "title": "Deptford Mice 30 Copy Shrinkwrap (Deptford Mice)", "isbn_13": ["9780340788875"], "physical_format": "Paperback", "isbn_10": ["0340788879"], "publish_date": "July 20, 2000", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:51:45.839848"}, "authors": [{"key": "/authors/OL3346576A"}], "latest_revision": 2, "works": [{"key": "/works/OL9293205W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10632570M 3 2022-05-25T02:16:08.675650 {"publishers": ["Hodder Gibson"], "isbn_10": ["0340811382"], "number_of_pages": 248, "isbn_13": ["9780340811382"], "covers": [2401276], "physical_format": "Spiral-bound", "publish_date": "November 28, 2003", "key": "/books/OL10632570M", "authors": [{"key": "/authors/OL59985A"}, {"key": "/authors/OL3476783A"}, {"key": "/authors/OL2872071A"}, {"key": "/authors/OL3477143A"}], "title": "Science 5-14", "subjects": ["General science", "Teaching of a specific subject", "For P7-S2 (Scottish)"], "type": {"key": "/type/edition"}, "works": [{"key": "/works/OL27779896W"}], "lc_classifications": ["Q183.4.G7"], "source_records": ["bwb:9780340811382"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T02:16:08.675650"}}
+/type/edition /books/OL10632598M 4 2021-09-16T18:09:35.267658 {"publishers": ["Hodder Murray"], "physical_format": "Paperback", "subtitle": "Framework French Higher Pack 3 (Avance Language)", "key": "/books/OL10632598M", "weight": "4.2 pounds", "title": "Avance", "identifiers": {"goodreads": ["2607436"]}, "isbn_13": ["9780340811832"], "isbn_10": ["0340811838"], "publish_date": "October 29, 2004", "authors": [{"key": "/authors/OL3402192A"}, {"key": "/authors/OL3348164A"}, {"key": "/authors/OL3348165A"}], "type": {"key": "/type/edition"}, "subjects": ["Language teaching & learning material & coursework", "Modern language learning: core course material", "For National Curriculum Key Stage 3", "French"], "physical_dimensions": "10.9 x 8.8 x 1.4 inches", "works": [{"key": "/works/OL25105739W"}], "source_records": ["bwb:9780340811832"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-09-16T18:09:35.267658"}}
+/type/edition /books/OL10633239M 2 2009-12-15T00:51:47.011072 {"publishers": ["Bantam Books"], "key": "/books/OL10633239M", "title": "Bantam Crossword Puzzle Book No. 15", "isbn_13": ["9780553208382"], "physical_format": "Paperback", "isbn_10": ["0553208381"], "publish_date": "June 1982", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:51:47.011072"}, "authors": [{"key": "/authors/OL2786875A"}], "latest_revision": 2, "works": [{"key": "/works/OL8367210W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10633367M 6 2011-04-26T21:44:02.700975 {"publishers": ["Bantam"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2011-04-26T21:44:02.700975"}, "title": "Now Is Not Too Late", "identifiers": {"librarything": ["1994739"], "goodreads": ["6730924"]}, "isbn_13": ["9780553228649"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Mass Market Paperback", "isbn_10": ["0553228641"], "publish_date": "1983", "key": "/books/OL10633367M", "authors": [{"key": "/authors/OL234095A"}], "latest_revision": 6, "oclc_numbers": ["9927639"], "works": [{"key": "/works/OL1951905W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL10633478M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Bantam Books"], "title": "The Low Blood Sugar Cookbook", "isbn_13": ["9780553238358"], "isbn_10": ["0553238353"], "publish_date": "November 1985", "key": "/books/OL10633478M", "type": {"key": "/type/edition"}, "subjects": ["Cookery", "Diet in disease", "Hypoglycemia", "Low-carbohydrate diet", "Recipes"], "revision": 1}
+/type/edition /books/OL10633925M 5 2022-12-05T00:15:10.745169 {"publishers": ["Bantam Press"], "identifiers": {"librarything": ["8501555"]}, "classifications": {}, "title": "Russian Salad", "type": {"key": "/type/edition"}, "number_of_pages": 348, "isbn_13": ["9780553406450"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0553406450"], "publish_date": "December 1993", "key": "/books/OL10633925M", "authors": [{"key": "/authors/OL1638462A"}], "works": [{"key": "/works/OL6280516W"}], "physical_format": "Paperback", "subjects": ["Modern fiction"], "local_id": ["urn:bwbsku:KR-106-476"], "source_records": ["promise:bwb_daily_pallets_2022-07-11"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-05T00:15:10.745169"}}
+/type/edition /books/OL10634382M 20 2022-12-08T15:09:59.087139 {"publishers": ["Bantam Books"], "identifiers": {"librarything": ["9526769"], "goodreads": ["412307"]}, "covers": [13008197, 13008196], "physical_format": "Paperback", "key": "/books/OL10634382M", "authors": [{"key": "/authors/OL597215A"}], "subjects": ["Fiction anthologies & collections", "Teenage romance"], "classifications": {}, "title": "Sweet Valley High", "notes": "Sweet Valley High", "number_of_pages": 608, "publish_date": "1999", "works": [{"key": "/works/OL3551837W"}], "type": {"key": "/type/edition"}, "isbn_10": ["0553812793"], "isbn_13": ["9780553812794"], "ocaid": "chateaudamourcol0000will", "subtitle": "Chateau D'Amour Collection", "languages": [{"key": "/languages/eng"}], "local_id": ["urn:bwbsku:KP-508-120"], "source_records": ["promise:bwb_daily_pallets_2021-04-07"], "latest_revision": 20, "revision": 20, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-08T15:09:59.087139"}}
+/type/edition /books/OL10634563M 4 2019-07-31T04:18:22.174557 {"publishers": ["Hodder & Stoughton General Division"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2019-07-31T04:18:22.174557"}, "title": "Recorder from the Beginning. Teacher's Book 2", "number_of_pages": 80, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780560012460"], "isbn_10": ["0560012462"], "publish_date": "1981", "key": "/books/OL10634563M", "authors": [{"key": "/authors/OL2180993A"}], "latest_revision": 4, "oclc_numbers": ["154274545"], "works": [{"key": "/works/OL13621531W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10634566M 3 2009-10-20T23:38:48.801987 {"publishers": ["Music Sales Ltd"], "source_records": ["amazon:0560012551"], "title": "Recorder from the Beginning", "number_of_pages": 32, "isbn_13": ["9780560012552"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "authors": [{"key": "/authors/OL2180993A"}], "isbn_10": ["0560012551"], "publish_date": "October 1984", "key": "/books/OL10634566M", "last_modified": {"type": "/type/datetime", "value": "2009-10-20T23:38:48.801987"}, "latest_revision": 3, "subjects": ["Music recording & reproduction"], "works": [{"key": "/works/OL184107W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10634615M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Hodder & Stoughton General Division"], "number_of_pages": 20, "isbn_13": ["9780560019186"], "isbn_10": ["0560019181"], "publish_date": "1973", "key": "/books/OL10634615M", "title": "INTERVIEW in Rathams (Nach Einem Interview Mit Oberburgermeister Dr. Vogel, Februar 1970) (Schools Council Continuation German Course)", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10634716M 2 2011-06-08T04:20:45.243898 {"publishers": ["Arnold"], "last_modified": {"type": "/type/datetime", "value": "2011-06-08T04:20:45.243898"}, "title": "Shipwreck", "number_of_pages": 144, "isbn_13": ["9780560044225"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0560044224"], "publish_date": "1984", "key": "/books/OL10634716M", "authors": [{"key": "/authors/OL2622088A"}], "latest_revision": 2, "oclc_numbers": ["154690769"], "type": {"key": "/type/edition"}, "subjects": ["Ships & shipping"], "revision": 2}
+/type/edition /books/OL10634749M 4 2022-05-25T02:42:21.153482 {"publishers": ["Arnold"], "source_records": ["amazon:0560088477", "bwb:9780560088472"], "title": "Story Chest", "number_of_pages": 16, "isbn_13": ["9780560088472"], "physical_format": "Paperback", "isbn_10": ["0560088477"], "publish_date": "1998", "key": "/books/OL10634749M", "authors": [{"key": "/authors/OL4753461A"}], "works": [{"key": "/works/OL56394W"}], "type": {"key": "/type/edition"}, "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T02:42:21.153482"}}
+/type/edition /books/OL10634759M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Nelson Thornes Ltd"], "number_of_pages": 24, "isbn_13": ["9780560095104"], "isbn_10": ["0560095104"], "publish_date": "December 31, 1992", "key": "/books/OL10634759M", "authors": [{"key": "/authors/OL2632146A"}], "title": "L'Ispecteur Bleu De Bresse (L'Ispecteur Bleu De Bresse)", "type": {"key": "/type/edition"}, "subjects": ["For National Curriculum Key Stage 3", "French", "Modern languages: readers & reading schemes"], "revision": 1}
+/type/edition /books/OL10634983M 7 2011-04-29T23:22:49.152176 {"publishers": ["Gloucester"], "identifiers": {"librarything": ["5363619"], "goodreads": ["3663891"]}, "subtitle": "Recent Discoveries from the Natural World (Ariel Books)", "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T23:22:49.152176"}, "latest_revision": 7, "key": "/books/OL10634983M", "authors": [{"key": "/authors/OL450031A"}], "subjects": ["Reference works", "Life Sciences - Biology - General", "Natural History", "Science (General)", "Science", "History: American"], "edition_name": "Repr edition", "title": "Unlocking Natures Secrets", "number_of_pages": 206, "isbn_13": ["9780563203223"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0563203226"], "publish_date": "May 1987", "oclc_numbers": ["12500708"], "works": [{"key": "/works/OL2949558W"}], "type": {"key": "/type/edition"}, "revision": 7}
+/type/edition /books/OL10635200M 1 2008-04-30T09:38:13.731961 {"physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "title": "Empty Cassette Double (Radio Collection)", "publishers": ["BBC Audiobooks"], "isbn_13": ["9780563226130"], "isbn_10": ["0563226137"], "key": "/books/OL10635200M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL1063651M 3 2020-11-18T03:43:08.552392 {"other_titles": ["Ni\u0304t\u0323u tuyil ni\u0304kka te\u0304t\u0323i vanta nila\u0304."], "publishers": ["Cavut E\u0304ciyan\u0332 Puks"], "description": {"type": "/type/text", "value": "Political biography of Vi. Pi. Cintan\u0332, 1918-1987, member of the Communist Party of India (Marxist) from Tamil Nadu."}, "subject_place": ["India", "Tamil Nadu"], "lc_classifications": ["HX393.8.C56 R36 1993"], "latest_revision": 3, "key": "/books/OL1063651M", "authors": [{"key": "/authors/OL105546A"}], "publish_places": ["Cen\u0332n\u0332ai"], "languages": [{"key": "/languages/tam"}], "pagination": "175, [1] p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:99853347:1055"], "title": "Vi. Pi. Cintan\u0332, ni\u0304t\u0323u tuyil ni\u0304kka te\u0304t\u0323i vanta nila\u0304", "lccn": ["93910265"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. [176]).\nIn Tamil."}, "number_of_pages": 175, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "edition_name": "1. patippu.", "subjects": ["Cintan\u0332, Vi. Pi., 1918-1987.", "Communist Party of India (Marxist) -- Biography.", "Communists -- India -- Tamil Nadu -- Biography."], "publish_date": "1993", "publish_country": "ii ", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T03:43:08.552392"}, "by_statement": "En\u0332. Ra\u0304makirus\u0323n\u0323an\u0332.", "works": [{"key": "/works/OL1055225W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10636589M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "subtitle": "101 Ideas for Upstairs", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["BBC Books"], "title": "Good Homes", "isbn_13": ["9780563488811"], "isbn_10": ["0563488816"], "publish_date": "April 3, 2003", "key": "/books/OL10636589M", "type": {"key": "/type/edition"}, "subjects": ["Home furnishing & decoration"], "revision": 1}
+/type/edition /books/OL10636636M 7 2011-04-26T15:37:56.460521 {"publishers": ["BBC Audiobooks"], "last_modified": {"type": "/type/datetime", "value": "2011-04-26T15:37:56.460521"}, "title": "Doctor Finlay (BBC Radio Collection)", "identifiers": {"goodreads": ["2398521"]}, "isbn_13": ["9780563495376"], "covers": [2520242], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Audio Cassette", "isbn_10": ["0563495375"], "publish_date": "June 2, 2003", "key": "/books/OL10636636M", "authors": [{"key": "/authors/OL795451A"}], "latest_revision": 7, "oclc_numbers": ["156876901"], "works": [{"key": "/works/OL8162812W"}], "type": {"key": "/type/edition"}, "subjects": ["Modern fiction", "Radio", "English", "Performing Arts/Dance"], "revision": 7}
+/type/edition /books/OL10636660M 7 2010-09-21T20:22:36.115167 {"publishers": ["BBC Books"], "physical_format": "Audio CD", "subtitle": "Radio Dramatization", "last_modified": {"type": "/type/datetime", "value": "2010-09-21T20:22:36.115167"}, "title": "The Our Mutual Friend", "identifiers": {"goodreads": ["2999309"]}, "isbn_13": ["9780563496106"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["056349610X"], "publish_date": "March 2003", "key": "/books/OL10636660M", "authors": [{"key": "/authors/OL24638A"}], "latest_revision": 7, "works": [{"key": "/works/OL14869440W"}], "type": {"key": "/type/edition"}, "subjects": ["Classics", "Unabridged Audio - Fiction/General"], "revision": 7}
+/type/edition /books/OL10636684M 2 2010-04-13T06:11:39.225433 {"physical_format": "Paperback", "weight": "15.5 ounces", "title": "QCA National Test Papers, KS3 Science (National Test Papers Ks3)", "publishers": ["BBC Books"], "covers": [2520260], "edition_name": "New Ed edition", "isbn_13": ["9780563501206"], "isbn_10": ["0563501200"], "publish_date": "January 3, 2005", "key": "/books/OL10636684M", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:11:39.225433"}, "latest_revision": 2, "subjects": ["General science", "For National Curriculum Key Stage 3", "Children: Young Adult (Gr. 7-9)"], "type": {"key": "/type/edition"}, "physical_dimensions": "11.7 x 8.3 x 0.6 inches", "revision": 2}
+/type/edition /books/OL10636878M 6 2022-12-08T23:13:33.021210 {"publishers": ["Penguin Character Books Ltd"], "number_of_pages": 128, "title": "\"Children in Need\" Story Collection", "physical_format": "Paperback", "identifiers": {"librarything": ["8671947"]}, "covers": [2520404], "isbn_13": ["9780563532408"], "isbn_10": ["0563532408"], "publish_date": "May 27, 2004", "key": "/books/OL10636878M", "oclc_numbers": ["50401320"], "type": {"key": "/type/edition"}, "subjects": ["Short stories"], "works": [{"key": "/works/OL24647092W"}], "ocaid": "bbcchildreninnee0000unse", "source_records": ["ia:bbcchildreninnee0000unse", "promise:bwb_daily_pallets_2021-02-03"], "local_id": ["urn:bwbsku:KO-609-522"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-08T23:13:33.021210"}}
+/type/edition /books/OL10636950M 10 2020-06-02T10:18:49.404363 {"publishers": ["BBC Audiobooks"], "weight": "4.2 ounces", "series": ["BBC Radio Shakespeare"], "covers": [2520472], "physical_format": "Audio Cassette", "last_modified": {"type": "/type/datetime", "value": "2020-06-02T10:18:49.404363"}, "latest_revision": 10, "key": "/books/OL10636950M", "authors": [{"key": "/authors/OL9388A"}], "contributions": ["Richard Eyre (Introduction)"], "subjects": ["Shakespeare plays, texts", "Plays"], "isbn_13": ["9780563535393"], "source_records": ["amazon:0563535393"], "title": "The Tempest", "identifiers": {"amazon.co.uk_asin": ["0563535393"], "amazon": ["0563535393"], "librarything": ["5500"], "amazon.de_asin": ["0563535393"], "goodreads": ["30066881"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0563535393"], "publish_date": "2001 September 3", "oclc_numbers": ["52804998"], "works": [{"key": "/works/OL362699W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "5.3 x 4.2 x 0.6 inches", "revision": 10}
+/type/edition /books/OL10637169M 5 2022-12-04T07:26:47.096800 {"publishers": ["Penguin Character Books Ltd"], "number_of_pages": 10, "title": "\"Teletubbies\" (Teletubbies Lift the Flap)", "physical_format": "Board book", "identifiers": {"librarything": ["2572813"]}, "covers": [2520664], "isbn_13": ["9780563555124"], "isbn_10": ["0563555122"], "publish_date": "October 12, 1998", "key": "/books/OL10637169M", "oclc_numbers": ["60131766"], "type": {"key": "/type/edition"}, "subjects": ["Fiction", "Pop-up & lift-the-flap books"], "works": [{"key": "/works/OL31223523W"}], "local_id": ["urn:bwbsku:KR-655-174"], "source_records": ["promise:bwb_daily_pallets_2022-09-20"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T07:26:47.096800"}}
+/type/edition /books/OL10637270M 8 2011-04-27T18:12:33.336032 {"publishers": ["BBC Audiobooks"], "weight": "3.5 ounces", "covers": [2520735], "physical_format": "Audio CD", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T18:12:33.336032"}, "latest_revision": 8, "key": "/books/OL10637270M", "authors": [{"key": "/authors/OL2793725A"}], "subjects": ["Humour", "Performing Arts", "Humor"], "classifications": {}, "title": "I'm Alan Partridge/Knowing Me, Knowing Yule", "notes": {"type": "/type/text", "value": "BBC Radio Collection"}, "identifiers": {"goodreads": ["1661533"], "librarything": ["5767588"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780563557630"], "isbn_10": ["056355763X"], "publish_date": "October 5, 1998", "oclc_numbers": ["655656225"], "works": [{"key": "/works/OL8384142W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "5.7 x 4.7 x 0.4 inches", "revision": 8}
+/type/edition /books/OL10637389M 4 2013-08-04T18:40:36.858429 {"publishers": ["Bible Society (The British and Foreign Bible Socie"], "last_modified": {"type": "/type/datetime", "value": "2013-08-04T18:40:36.858429"}, "title": "Bible (Foreign Bibles)", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780564020508"], "physical_format": "Leather-bound", "isbn_10": ["0564020508"], "publish_date": "December 1990", "key": "/books/OL10637389M", "latest_revision": 4, "works": [{"key": "/works/OL9450689W"}], "type": {"key": "/type/edition"}, "subjects": ["Biblical concordances & commentaries", "The Bible"], "revision": 4}
+/type/edition /books/OL10638850M 11 2021-05-08T17:55:40.845034 {"publishers": ["T. & T. Clark Publishers"], "identifiers": {"librarything": ["4952166"], "goodreads": ["2603283"]}, "weight": "8.5 ounces", "covers": [5069527], "local_id": ["urn:cst:10011426347"], "physical_format": "Paperback", "lc_classifications": ["", "BX1912.5 .P69 1998"], "key": "/books/OL10638850M", "authors": [{"key": "/authors/OL3478217A"}], "subjects": ["Christian ministry & pastoral activity", "Christian spiritual & Church leaders", "Christian theology", "Literary studies: general", "Roman Catholicism, Roman Catholic Church"], "isbn_13": ["9780567085955"], "source_records": ["marc:marc_claremont_school_theology/CSTMARC2_barcode.mrc:44703823:1628", "bwb:9780567085955", "marc:marc_claremont_school_theology/CSTMARC2_multibarcode.mrc:44720653:1628", "ia:spiritualtheolog0000powe_k5d1"], "title": "Spiritual Theology of the Priesthood", "number_of_pages": 190, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0567085953"], "publish_date": "January 2001", "works": [{"key": "/works/OL9451172W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.4 x 5.4 x 0.6 inches", "ocaid": "spiritualtheolog0000powe_k5d1", "latest_revision": 11, "revision": 11, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-05-08T17:55:40.845034"}}
+/type/edition /books/OL10639073M 5 2010-08-17T03:23:01.093867 {"publishers": ["Hyperion Books"], "languages": [{"key": "/languages/eng"}], "identifiers": {"goodreads": ["4360636"], "librarything": ["8594632"]}, "last_modified": {"type": "/type/datetime", "value": "2010-08-17T03:23:01.093867"}, "title": "The Technique of Piano Playing", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Hardcover", "number_of_pages": 283, "edition_name": "5th Ed edition", "isbn_13": ["9780569084192"], "isbn_10": ["0569084199"], "publish_date": "June 1980", "key": "/books/OL10639073M", "authors": [{"key": "/authors/OL3478259A"}], "latest_revision": 5, "works": [{"key": "/works/OL9451227W"}], "type": {"key": "/type/edition"}, "subjects": ["Musical Instruments - Piano", "Keyboard instruments", "Music", "Teaching of a specific subject", "Music/Songbooks"], "revision": 5}
+/type/edition /books/OL10639193M 5 2012-06-23T03:19:45.152889 {"publishers": ["Concordia Publishing House"], "number_of_pages": 52, "weight": "3 ounces", "series": ["Church Music Pamphlet Series"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2012-06-23T03:19:45.152889"}, "latest_revision": 5, "key": "/books/OL10639193M", "authors": [{"key": "/authors/OL3478332A"}], "subjects": ["Christianity - Ritual & Practice", "Religion - Church Music"], "isbn_13": ["9780570013280"], "classifications": {}, "title": "Handbells in the Liturgical Service", "identifiers": {"librarything": ["6100835"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0570013283"], "publish_date": "April 1984", "oclc_numbers": ["11412288"], "works": [{"key": "/works/OL9451282W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.8 x 5.9 x 0.7 inches", "revision": 5}
+/type/edition /books/OL10639713M 6 2022-12-07T13:37:35.658044 {"publishers": ["Concordia Publishing House"], "number_of_pages": 593, "title": "The Abiding Word, Vol. 1", "physical_format": "Hardcover", "identifiers": {"goodreads": ["3001969"], "librarything": ["3569910"]}, "isbn_13": ["9780570072003"], "isbn_10": ["057007200X"], "publish_date": "1946", "key": "/books/OL10639713M", "authors": [{"key": "/authors/OL2794436A"}], "works": [{"key": "/works/OL8385682W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:T2-BHF-004"], "source_records": ["promise:bwb_daily_pallets_2022-03-17"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-07T13:37:35.658044"}}
+/type/edition /books/OL10639748M 5 2022-12-07T12:45:14.406716 {"publishers": ["CPH"], "number_of_pages": 14, "subtitle": "Leaders guide (Hymns of the faithful series)", "title": "Advent Christmas Epiphany", "type": {"key": "/type/edition"}, "identifiers": {"goodreads": ["2365357"]}, "isbn_13": ["9780570079392"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["057007939X"], "publish_date": "2000", "key": "/books/OL10639748M", "authors": [{"key": "/authors/OL3478440A"}], "works": [{"key": "/works/OL9451400W"}], "physical_format": "Unknown Binding", "subjects": ["Advent hymns", "Christmas music", "Devotional use", "Epiphany music", "Hymns", "Study and teaching"], "local_id": ["urn:bwbsku:T2-BGQ-024"], "source_records": ["promise:bwb_daily_pallets_2022-03-17"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-07T12:45:14.406716"}}
+/type/edition /books/OL10640078M 3 2022-12-04T13:10:18.903660 {"physical_format": "Hardcover", "publishers": ["Faber & Faber"], "isbn_10": ["0571070310"], "number_of_pages": 63, "isbn_13": ["9780571070312"], "languages": [{"key": "/languages/eng"}], "publish_date": "January 1984", "key": "/books/OL10640078M", "authors": [{"key": "/authors/OL2274474A"}], "title": "Music Dictionary", "subjects": ["Music (General)", "Dictionaries", "Dictionaries, Juvenile", "Music"], "works": [{"key": "/works/OL7489045W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:KR-291-376"], "source_records": ["promise:bwb_daily_pallets_2022-09-02"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T13:10:18.903660"}}
+/type/edition /books/OL10640603M 3 2010-08-17T03:24:42.702675 {"publishers": ["Faber and Faber"], "number_of_pages": 192, "last_modified": {"type": "/type/datetime", "value": "2010-08-17T03:24:42.702675"}, "title": "Norfolk (Shell Guides)", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "identifiers": {"librarything": ["4288288"]}, "isbn_13": ["9780571180578"], "edition_name": "4Rev Ed edition", "physical_format": "Hardcover", "isbn_10": ["0571180574"], "publish_date": "April 1982", "key": "/books/OL10640603M", "authors": [{"key": "/authors/OL3478637A"}], "latest_revision": 3, "works": [{"key": "/works/OL9451609W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL1064080M 2 2020-11-18T03:48:22.467936 {"publishers": ["S\u0301a\u0304rada\u0304 Praka\u0304s\u0301ana"], "description": {"type": "/type/text", "value": "Translated from Hindi to Sanskrit for children."}, "lc_classifications": ["PZ90.H5 B4817 1992"], "latest_revision": 2, "key": "/books/OL1064080M", "authors": [{"key": "/authors/OL308029A"}], "publish_places": ["Nai\u0304 Dilli\u0304"], "contributions": ["S\u0301a\u0304stri\u0304, Madhura."], "pagination": "46 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:100241393:896"], "title": "Ba\u0304laika vim\u0323s\u0301atih\u0323", "lccn": ["93910739"], "notes": {"type": "/type/text", "value": "Short stories."}, "number_of_pages": 46, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/san"}], "subjects": ["Children's stories, Hindi.", "Short stories, Hindi -- Translations into Sanskrit."], "publish_date": "1992", "publish_country": "ii ", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T03:48:22.467936"}, "by_statement": "Jayapraka\u0304s\u0301a Bha\u0304rati\u0304 ; anuva\u0304daka Madhura S\u0301a\u0304stri\u0304.", "work_title": ["Hi\u0304rom\u0323 ka\u0304 ha\u0304ra."], "works": [{"key": "/works/OL23530947W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10640995M 3 2011-04-29T05:48:36.729284 {"publishers": ["Faber & Faber"], "physical_format": "Paperback", "subtitle": "Op. 125", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T05:48:36.729284"}, "title": "Concerto for Trumpet", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780571506798"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0571506798"], "publish_date": "August 2001", "key": "/books/OL10640995M", "authors": [{"key": "/authors/OL901989A"}], "latest_revision": 3, "oclc_numbers": ["74747801"], "works": [{"key": "/works/OL4504509W"}], "type": {"key": "/type/edition"}, "subjects": ["Musical Instruments - Brass", "Musical Instruments - Keyboard", "Songbooks - Orchestral", "Music"], "revision": 3}
+/type/edition /books/OL10641029M 3 2022-08-17T21:19:05.336394 {"physical_format": "Paperback", "title": "Night Thoughts", "isbn_10": ["0571507468"], "publishers": ["Faber & Faber"], "isbn_13": ["9780571507467"], "languages": [{"key": "/languages/eng"}], "publish_date": "September 2001", "key": "/books/OL10641029M", "authors": [{"key": "/authors/OL1449623A"}], "subjects": ["General", "Music"], "works": [{"key": "/works/OL5880651W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780571507467"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-17T21:19:05.336394"}}
+/type/edition /books/OL10641178M 3 2010-08-17T03:27:01.751174 {"publishers": ["Faber & Faber"], "languages": [{"key": "/languages/eng"}], "identifiers": {"librarything": ["4302483"]}, "last_modified": {"type": "/type/datetime", "value": "2010-08-17T03:27:01.751174"}, "title": "Jazzin' about", "physical_format": "Paperback", "number_of_pages": 23, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780571511051"], "isbn_10": ["0571511058"], "publish_date": "April 1990", "key": "/books/OL10641178M", "authors": [{"key": "/authors/OL3478689A"}], "latest_revision": 3, "works": [{"key": "/works/OL9451673W"}], "type": {"key": "/type/edition"}, "subjects": ["Songbooks - General", "Music"], "revision": 3}
+/type/edition /books/OL10641758M 2 2009-12-15T00:51:53.775233 {"physical_format": "Paperback", "publishers": ["Foulsham"], "isbn_10": ["0572004605"], "number_of_pages": 48, "edition_name": "New Ed edition", "isbn_13": ["9780572004606"], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:51:53.775233"}, "publish_date": "December 1990", "latest_revision": 2, "key": "/books/OL10641758M", "authors": [{"key": "/authors/OL2795194A"}], "title": "Raphael's Astronomical Ephemeris", "subjects": ["Astronomical charts & atlases"], "works": [{"key": "/works/OL8387395W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL1064179M 5 2020-11-18T03:49:25.720082 {"publishers": ["MD Publications"], "number_of_pages": 361, "isbn_10": ["8185880271"], "subject_place": ["India", "India."], "covers": [3869865], "lc_classifications": ["HQ1743 .C413 1994"], "latest_revision": 5, "key": "/books/OL1064179M", "publish_places": ["New Delhi"], "contributions": ["Chakrapani, C.", "Vijaya Kumar, S."], "languages": [{"key": "/languages/eng"}], "pagination": "361 p. ;", "source_records": ["marc:marc_records_scriblio_net/part24.dat:29073923:855", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:100330284:866"], "title": "Changing status and role of women in Indian society", "dewey_decimal_class": ["305.42/0954"], "notes": {"type": "/type/text", "value": "Includes bibliographical references."}, "identifiers": {"goodreads": ["2123128"]}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "edition_name": "1st ed.", "lccn": ["93910850"], "subjects": ["Women -- India -- Social conditions.", "Women's rights -- India.", "Feminism -- India."], "publish_date": "1994", "publish_country": "ii ", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T03:49:25.720082"}, "by_statement": "editors, C. Chakrapani, S. Vijaya Kumar.", "works": [{"key": "/works/OL18920588W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10641868M 3 2011-05-04T23:44:01.962323 {"publishers": ["Foulsham"], "last_modified": {"type": "/type/datetime", "value": "2011-05-04T23:44:01.962323"}, "title": "Raphael's Astronomical Ephemeris of the Planets' Places", "number_of_pages": 48, "isbn_13": ["9780572007140"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0572007140"], "publish_date": "July 1970", "key": "/books/OL10641868M", "latest_revision": 3, "oclc_numbers": ["225922612"], "works": [{"key": "/works/OL8387394W"}], "type": {"key": "/type/edition"}, "subjects": ["Astrology", "Yearbooks, annuals, almanacs", "c 1970 to c 1980"], "revision": 3}
+/type/edition /books/OL10641915M 2 2011-05-04T23:44:01.962323 {"publishers": ["Foulsham"], "last_modified": {"type": "/type/datetime", "value": "2011-05-04T23:44:01.962323"}, "title": "Raphael's Astronomical Ephemeris of the Planets' Places", "number_of_pages": 48, "isbn_13": ["9780572011932"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0572011938"], "publish_date": "August 1995", "key": "/books/OL10641915M", "latest_revision": 2, "works": [{"key": "/works/OL8387394W"}], "type": {"key": "/type/edition"}, "subjects": ["Astrology", "Yearbooks, annuals, almanacs", "c 1800 to c 1900"], "revision": 2}
+/type/edition /books/OL10641985M 6 2022-12-17T15:33:23.535405 {"publishers": ["Foulsham & Co Ltd"], "weight": "4 ounces", "edition_name": "2nd edition", "physical_format": "Paperback", "key": "/books/OL10641985M", "authors": [{"key": "/authors/OL784548A"}], "subjects": ["Food & Drink / Cookery", "Vegetarian - General", "Cooking"], "isbn_13": ["9780572013936"], "title": "New Vegetarian Microwave Recipes", "number_of_pages": 128, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0572013930"], "publish_date": "February 1993", "works": [{"key": "/works/OL4157930W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "7.8 x 5.2 x 0.5 inches", "covers": [12786620], "ocaid": "vegetarianmicrow0000lock", "lc_classifications": ["TX837 .L63 1986", "TX832"], "oclc_numbers": ["17318952"], "source_records": ["ia:vegetarianmicrow0000lock", "promise:bwb_daily_pallets_2022-03-17", "bwb:9780572013936"], "local_id": ["urn:bwbsku:KQ-001-103"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T15:33:23.535405"}}
+/type/edition /books/OL1064213M 4 2020-11-18T03:49:48.666472 {"publishers": ["Aryasam\u0323skr\u0325ti Press"], "table_of_contents": [{"title": "Pt. II. Translation.", "type": {"key": "/type/toc_item"}, "level": 0}], "physical_format": "Microform", "lc_classifications": ["Microfiche 94/61044 (P)"], "latest_revision": 4, "key": "/books/OL1064213M", "authors": [{"key": "/authors/OL2680A"}], "publish_places": ["Poona"], "contributions": ["Paranjpe, Vasudeva Gopal, 1887-"], "pagination": "v. <2 >", "source_records": ["marc:marc_records_scriblio_net/part24.dat:29110003:971", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:100367287:984"], "title": "Mr\u0325cchakat\u0323ikam na\u0304ma prakaran\u0323am", "lccn": ["93910887"], "notes": {"type": "/type/text", "value": "Microfiche. New Delhi : Library of Congress Office ; Washington, D.C. : Library of Congress Photoduplication Service, 1994- microfiches <3- >.\nPlay.\nMaster microform held by: DLC."}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2020-11-18T03:49:48.666472"}, "publish_date": "1937", "publish_country": "ii ", "by_statement": "S\u0301u\u0304draka viracitam\u0323 ; edited by V.G. Paranjape.", "work_title": ["Mr\u0325cchakat\u0323ika."], "works": [{"key": "/works/OL316820W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10643207M 4 2010-04-24T18:06:16.811772 {"publishers": ["Samuel French Ltd"], "identifiers": {"goodreads": ["1548412"]}, "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:06:16.811772"}, "title": "What-ho Within! (Minidrama)", "type": {"key": "/type/edition"}, "number_of_pages": 16, "edition_name": "New Ed edition", "isbn_13": ["9780573122927"], "isbn_10": ["057312292X"], "publish_date": "December 1982", "key": "/books/OL10643207M", "authors": [{"key": "/authors/OL3478946A"}], "latest_revision": 4, "works": [{"key": "/works/OL9452142W"}], "physical_format": "Paperback", "subjects": ["Drama texts: from c 1900 -"], "revision": 4}
+/type/edition /books/OL10643270M 3 2011-04-28T10:02:02.671496 {"publishers": ["Samuel French Ltd"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-28T10:02:02.671496"}, "title": "Snow White Special", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 12, "edition_name": "New Ed edition", "isbn_13": ["9780573166082"], "isbn_10": ["0573166080"], "publish_date": "December 1988", "key": "/books/OL10643270M", "authors": [{"key": "/authors/OL3478946A"}], "latest_revision": 3, "oclc_numbers": ["655168139"], "works": [{"key": "/works/OL9452157W"}], "type": {"key": "/type/edition"}, "subjects": ["Drama texts: from c 1900 -"], "revision": 3}
+/type/edition /books/OL10643273M 6 2011-04-29T12:13:25.119719 {"publishers": ["Samuel French Ltd"], "number_of_pages": 96, "weight": "5 ounces", "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T12:13:25.119719"}, "latest_revision": 6, "key": "/books/OL10643273M", "authors": [{"key": "/authors/OL339178A"}, {"key": "/authors/OL599752A"}], "subjects": ["Drama texts: from c 1900 -"], "title": "Sweeney Todd Shock 'n' Roll Show (Acting Edition)", "identifiers": {"goodreads": ["373952"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780573180309"], "isbn_10": ["057318030X"], "publish_date": "January 1982", "oclc_numbers": ["13685034"], "works": [{"key": "/works/OL15339844W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.4 x 5.4 x 0.3 inches", "revision": 6}
+/type/edition /books/OL10643278M 6 2019-02-18T03:04:34.858915 {"publishers": ["Samuel French Ltd"], "number_of_pages": 172, "covers": [5069868], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2019-02-18T03:04:34.858915"}, "latest_revision": 6, "key": "/books/OL10643278M", "authors": [{"key": "/authors/OL892364A"}], "subjects": ["Drama texts: from c 1900 -"], "source_records": ["marc:talis_openlibrary_contribution/talis-openlibrary-contribution.mrc:628322329:695"], "title": "Take Two", "identifiers": {"librarything": ["9539536"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780573190278"], "isbn_10": ["0573190275"], "publish_date": "December 1981", "oclc_numbers": ["15492820"], "works": [{"key": "/works/OL4473769W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL10643295M 7 2019-05-20T10:32:48.998853 {"publishers": ["Samuel French Inc"], "number_of_pages": 116, "isbn_10": ["057360231X"], "covers": [5069795], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2019-05-20T10:32:48.998853"}, "latest_revision": 7, "key": "/books/OL10643295M", "authors": [{"key": "/authors/OL3479010A"}], "subjects": ["100 Original Audition Monologues"], "edition_name": "1/Acting edition", "source_records": ["marc:marc_openlibraries_sanfranciscopubliclibrary/sfpl_chq_2018_12_24_run02.mrc:200523526:1758"], "title": "Next!", "identifiers": {"goodreads": ["1401674"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780573602313"], "local_id": ["urn:sfpl:31223055879127", "urn:sfpl:31223055879135", "urn:sfpl:31223055879143"], "publish_date": "July 1997", "oclc_numbers": ["37779271"], "works": [{"key": "/works/OL9452236W"}], "type": {"key": "/type/edition"}, "revision": 7}
+/type/edition /books/OL10643319M 7 2010-08-17T03:27:01.751174 {"publishers": ["French"], "identifiers": {"goodreads": ["658749"], "librarything": ["8680002"]}, "subtitle": "A play in two acts", "last_modified": {"type": "/type/datetime", "value": "2010-08-17T03:27:01.751174"}, "weight": "1.7 pounds", "title": "Jesse and the bandit queen", "number_of_pages": 67, "isbn_13": ["9780573611087"], "covers": [5069732], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Unknown Binding", "isbn_10": ["0573611084"], "publish_date": "1976", "key": "/books/OL10643319M", "authors": [{"key": "/authors/OL579802A"}], "latest_revision": 7, "works": [{"key": "/works/OL3477313W"}], "type": {"key": "/type/edition"}, "revision": 7}
+/type/edition /books/OL10643492M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Paperback", "weight": "8 ounces", "publishers": ["Walter H Baker Co"], "title": "MacBeth (French Acting Edition)", "isbn_13": ["9780573692413"], "isbn_10": ["0573692416"], "publish_date": "December 1950", "key": "/books/OL10643492M", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "type": {"key": "/type/edition"}, "physical_dimensions": "9.5 x 7 x 0.2 inches", "revision": 1}
+/type/edition /books/OL10643670M 4 2020-08-19T12:01:44.290775 {"publishers": ["Pearson Education Limited"], "last_modified": {"type": "/type/datetime", "value": "2020-08-19T12:01:44.290775"}, "source_records": ["bwb:9780574206862"], "title": "Personal Selling Professional Approach I", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780574206862"], "physical_format": "Paperback", "isbn_10": ["0574206868"], "publish_date": "February 1, 1983", "key": "/books/OL10643670M", "authors": [{"key": "/authors/OL3011655A"}], "latest_revision": 4, "oclc_numbers": ["234290848"], "works": [{"key": "/works/OL8812074W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10643845M 3 2011-04-27T21:33:59.071979 {"publishers": ["SRA MacMillan/McGraw-Hill"], "last_modified": {"type": "/type/datetime", "value": "2011-04-27T21:33:59.071979"}, "title": "SRA Division / Student's Book", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0574773215"], "publish_date": "1981", "key": "/books/OL10643845M", "authors": [{"key": "/authors/OL3479131A"}], "latest_revision": 3, "oclc_numbers": ["222247480"], "works": [{"key": "/works/OL9452360W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10644072M 4 2011-01-22T05:24:19.049235 {"publishers": ["Victor Gollancz"], "identifiers": {"librarything": ["4530721"]}, "weight": "0.8 ounces", "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-01-22T05:24:19.049235"}, "latest_revision": 4, "key": "/books/OL10644072M", "authors": [{"key": "/authors/OL2800944A"}], "subjects": ["Bridge", "Card Games - Bridge", "Games", "Games / Gamebooks / Crosswords", "Games/Puzzles", "Games / Card Games / Bridge"], "isbn_13": ["9780575041882"], "classifications": {}, "title": "Master Finessing", "notes": {"type": "/type/text", "value": "Master Bridge Series"}, "number_of_pages": 10, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0575041889"], "publish_date": "November 1, 1987", "works": [{"key": "/works/OL8400424W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "6.4 x 3.7 x 0.5 inches", "revision": 4}
+/type/edition /books/OL10644088M 3 2011-06-08T02:55:38.003552 {"publishers": ["Orion Publishing Co"], "last_modified": {"type": "/type/datetime", "value": "2011-06-08T02:55:38.003552"}, "title": "Star Palms", "number_of_pages": 80, "isbn_13": ["9780575043664"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0575043660"], "publish_date": "October 1, 1988", "key": "/books/OL10644088M", "authors": [{"key": "/authors/OL3056316A"}], "latest_revision": 3, "oclc_numbers": ["17982135"], "works": [{"key": "/works/OL8884326W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10644603M 2 2009-12-15T00:51:56.066559 {"physical_format": "Hardcover", "publishers": ["Gregg Revivals"], "isbn_10": ["0576152110"], "number_of_pages": 340, "edition_name": "New Ed edition", "isbn_13": ["9780576152112"], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:51:56.066559"}, "publish_date": "January 1, 1982", "key": "/books/OL10644603M", "authors": [{"key": "/authors/OL3479256A"}], "title": "Architecture Normande Aux XIe Et XIIe Siecles En Normandie Et En Angleterre", "latest_revision": 2, "works": [{"key": "/works/OL9452476W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10644777M 2 2009-12-15T00:51:56.066559 {"physical_format": "Paperback", "publishers": ["Neo-Tech Worldwide Inc."], "isbn_10": ["0579108643"], "number_of_pages": 62, "edition_name": "1st edition", "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:51:56.066559"}, "publish_date": "1996", "latest_revision": 2, "key": "/books/OL10644777M", "authors": [{"key": "/authors/OL3479349A"}], "title": "Ride to Prosperity with Neo-Tech Stimulants From Cyberspace", "subjects": ["Nonfiction - Philosophy"], "works": [{"key": "/works/OL9452558W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10645111M 3 2021-10-20T17:15:25.918592 {"publishers": ["BSI Standards"], "physical_format": "Hardcover", "title": "Code of Practice", "isbn_13": ["9780580295829"], "isbn_10": ["0580295826"], "publish_date": "September 13, 1999", "key": "/books/OL10645111M", "oclc_numbers": ["51350364"], "type": {"key": "/type/edition"}, "works": [{"key": "/works/OL26178671W"}], "covers": [12145468], "ocaid": "codeofpracticefo0000unse_k5k8", "source_records": ["ia:codeofpracticefo0000unse_k5k8"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-10-20T17:15:25.918592"}}
+/type/edition /books/OL10645445M 5 2022-12-06T23:17:17.840334 {"publishers": ["Longman"], "number_of_pages": 176, "title": "Electronics III", "identifiers": {"librarything": ["5954938"]}, "isbn_13": ["9780582013094"], "edition_name": "4Rev Ed edition", "physical_format": "Paperback", "isbn_10": ["0582013097"], "publish_date": "August 1988", "key": "/books/OL10645445M", "authors": [{"key": "/authors/OL2801189A"}], "works": [{"key": "/works/OL8401218W"}], "type": {"key": "/type/edition"}, "subjects": ["Communications engineering / telecommunications", "Electrician skills"], "covers": [12665764], "ocaid": "electronicsiii0000gree", "lc_classifications": ["TK7816 .G795 1988"], "source_records": ["ia:electronicsiii0000gree", "promise:bwb_daily_pallets_2022-03-17"], "local_id": ["urn:bwbsku:KP-817-369"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-06T23:17:17.840334"}}
+/type/edition /books/OL10645502M 3 2019-03-13T06:24:04.414689 {"publishers": ["Cartermill International"], "physical_format": "Hardcover", "source_records": ["marc:marc_university_of_toronto/uoft.marc:612086787:1162"], "title": "Pacific Research Centres (Reference on Research)", "number_of_pages": 532, "last_modified": {"type": "/type/datetime", "value": "2019-03-13T06:24:04.414689"}, "covers": [5535104, 5306169, 5069954], "edition_name": "2Rev Ed edition", "isbn_13": ["9780582016088"], "isbn_10": ["0582016088"], "publish_date": "January 1988", "key": "/books/OL10645502M", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "latest_revision": 3, "works": [{"key": "/works/OL19287470W"}], "type": {"key": "/type/edition"}, "subjects": ["Mechanical engineering", "Scientific equipment & techniques, laboratory equipment", "Engineering Research", "Scientific Methodology And Research", "Reference"], "revision": 3}
+/type/edition /books/OL10645639M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "subtitle": "C/L'S Prim Atlas Namibia Afrik (CL)", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Longman Schools Division (a Pearson Education company)"], "title": "Primary Atlas for Namibia Afrikaans Ed", "isbn_13": ["9780582021549"], "isbn_10": ["0582021545"], "key": "/books/OL10645639M", "type": {"key": "/type/edition"}, "subjects": ["Namibia", "Afrikaans", "For GNVQ (General National Vocational Qualification)"], "revision": 1}
+/type/edition /books/OL10646242M 5 2020-03-07T19:22:02.255628 {"publishers": ["Longman Dictionaries"], "number_of_pages": 626, "covers": [9292392], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2020-03-07T19:22:02.255628"}, "latest_revision": 5, "key": "/books/OL10646242M", "subjects": ["Dictionaries"], "edition_name": "2Rev Ed edition", "classifications": {}, "title": "Top Pocket English Dictionary", "identifiers": {"librarything": ["8208074"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780582042650"], "isbn_10": ["0582042658"], "publish_date": "July 1989", "oclc_numbers": ["19775074"], "works": [{"key": "/works/OL20651689W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL1064639M 2 2020-11-18T03:54:26.875400 {"publishers": ["Ohio State University"], "subject_place": ["India."], "lc_classifications": ["S535.I5 T4 1973"], "latest_revision": 2, "key": "/books/OL1064639M", "publish_places": ["Columbus, Ohio, U.S.A"], "contributions": ["Ohio State University."], "pagination": "ii, 121 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:100742561:867"], "title": "Terminal report, USAID Contract/Nesa-147, November 1, 1964-June 30, 1973", "lccn": ["93915033"], "number_of_pages": 121, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "subjects": ["Punjab Agricultural University.", "Haryana Agricultural University.", "Agriculture -- Study and teaching (Higher) -- India.", "Educational assistance, American -- India."], "publish_date": "1973", "publish_country": "ohu", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T03:54:26.875400"}, "by_statement": "program of Ohio State University, Columbus, and the Punjab Agricultural University, and Haryana Agricultural University.", "works": [{"key": "/works/OL23531061W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10646453M 2 2011-04-30T11:04:09.000142 {"publishers": ["Longman"], "last_modified": {"type": "/type/datetime", "value": "2011-04-30T11:04:09.000142"}, "title": "Let's Learn English (LETS)", "number_of_pages": 176, "isbn_13": ["9780582054011"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["058205401X"], "publish_date": "September 10, 1990", "key": "/books/OL10646453M", "authors": [{"key": "/authors/OL2049127A"}, {"key": "/authors/OL3479650A"}], "latest_revision": 2, "oclc_numbers": ["24713972"], "type": {"key": "/type/edition"}, "subjects": ["ELT: Learning Material & Coursework", "English"], "revision": 2}
+/type/edition /books/OL10646638M 7 2020-08-18T16:57:49.075943 {"publishers": ["Longman"], "subtitle": "Student Book", "series": ["Touchdown"], "covers": [3368374], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2020-08-18T16:57:49.075943"}, "latest_revision": 7, "key": "/books/OL10646638M", "authors": [{"key": "/authors/OL894121A"}, {"key": "/authors/OL1013580A"}], "subjects": ["ELT: Learning Material & Coursework", "Linguistics", "American English"], "isbn_13": ["9780582060333"], "source_records": ["bwb:9780582060333"], "title": "Touchdown 3", "number_of_pages": 80, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0582060338"], "publish_date": "July 6, 1992", "oclc_numbers": ["27218600"], "works": [{"key": "/works/OL21368889W"}], "type": {"key": "/type/edition"}, "revision": 7}
+/type/edition /books/OL10646795M 6 2022-12-07T18:57:14.716373 {"publishers": ["Longman"], "number_of_pages": 72, "title": "Exercise and Health", "identifiers": {"goodreads": ["5614026"]}, "isbn_13": ["9780582065628"], "physical_format": "Paperback", "isbn_10": ["0582065623"], "publish_date": "November 1990", "key": "/books/OL10646795M", "authors": [{"key": "/authors/OL2744105A"}, {"key": "/authors/OL3371237A"}], "oclc_numbers": ["28223072"], "works": [{"key": "/works/OL9323649W"}], "type": {"key": "/type/edition"}, "subjects": ["Schools", "Sports & Outdoor Recreation"], "local_id": ["urn:bwbsku:KQ-043-893"], "source_records": ["promise:bwb_daily_pallets_2022-03-17"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-07T18:57:14.716373"}}
+/type/edition /books/OL10646857M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Longman"], "number_of_pages": 48, "isbn_13": ["9780582067974"], "isbn_10": ["0582067979"], "publish_date": "May 1990", "key": "/books/OL10646857M", "authors": [{"key": "/authors/OL3479561A"}, {"key": "/authors/OL3479562A"}], "title": "Opinions", "type": {"key": "/type/edition"}, "subjects": ["Language teaching & learning material & coursework", "French"], "revision": 1}
+/type/edition /books/OL10647192M 1 2008-04-30T09:38:13.731961 {"physical_format": "3.5\" disk", "subtitle": "Egypt", "weight": "8.8 ounces", "publishers": ["Logotron Limited"], "title": "Landmarks", "isbn_13": ["9780582078970"], "isbn_10": ["0582078970"], "publish_date": "February 25, 1991", "key": "/books/OL10647192M", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10647524M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Logotron Limited"], "number_of_pages": 128, "isbn_13": ["9780582090613"], "isbn_10": ["058209061X"], "publish_date": "April 1990", "key": "/books/OL10647524M", "title": "Geobase M128 Print Material", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10647731M 5 2022-12-08T23:31:04.881946 {"publishers": ["Longman"], "weight": "4.2 ounces", "edition_name": "New Ed edition", "physical_format": "Paperback", "key": "/books/OL10647731M", "authors": [{"key": "/authors/OL2985436A"}], "subjects": ["Atlases", "Children: Grades 3-4"], "isbn_13": ["9780582095281"], "source_records": ["bwb:9780582095281", "ia:mapstart30000catl", "promise:bwb_daily_pallets_2021-02-02"], "title": "New Mapstart (Collins - Longman Atlases)", "number_of_pages": 49, "languages": [{"key": "/languages/eng"}], "isbn_10": ["058209528X"], "publish_date": "August 17, 1992", "works": [{"key": "/works/OL8770930W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.8 x 8.4 x 0.2 inches", "covers": [12789784], "ocaid": "mapstart30000catl", "oclc_numbers": ["27338430"], "local_id": ["urn:bwbsku:KO-700-017"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-08T23:31:04.881946"}}
+/type/edition /books/OL10647867M 2 2009-12-15T00:51:57.259287 {"publishers": ["Longman"], "isbn_10": ["0582099897"], "number_of_pages": 64, "isbn_13": ["9780582099890"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:51:57.259287"}, "publish_date": "June 1994", "latest_revision": 2, "key": "/books/OL10647867M", "authors": [{"key": "/authors/OL1687953A"}], "title": "Nuffield Advanced Mathematics", "subjects": ["Mathematics", "Designed / suitable for A & AS Level"], "works": [{"key": "/works/OL6402740W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10647986M 2 2009-10-22T22:00:26.395748 {"publishers": ["Longman"], "source_records": ["amazon:0582121191"], "title": "Longman Book Project", "number_of_pages": 144, "isbn_13": ["9780582121195"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Ring-bound", "authors": [{"key": "/authors/OL2490554A"}], "isbn_10": ["0582121191"], "publish_date": "March 1994", "key": "/books/OL10647986M", "last_modified": {"type": "/type/datetime", "value": "2009-10-22T22:00:26.395748"}, "latest_revision": 2, "subjects": ["English language reading schemes", "For National Curriculum Key Stage 1"], "works": [{"key": "/works/OL224572W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10648563M 5 2020-08-19T11:56:26.946129 {"publishers": ["Longman"], "subtitle": "the Man with No Shadow (Longman Book Project)", "weight": "14.9 ounces", "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2020-08-19T11:56:26.946129"}, "latest_revision": 5, "key": "/books/OL10648563M", "authors": [{"key": "/authors/OL457168A"}], "contributions": ["Wendy Body (Editor)"], "subjects": ["English language reading schemes", "For National Curriculum Key Stage 2", "For National Curriculum Key Stage 3"], "isbn_13": ["9780582129740"], "source_records": ["bwb:9780582129740"], "title": "Longman Book Project: Fiction: Band 13", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0582129745"], "publish_date": "March 13, 1995", "works": [{"key": "/works/OL14946463W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.3 x 7.3 x 0.5 inches", "revision": 5}
+/type/edition /books/OL10648771M 2 2009-12-15T00:51:58.446631 {"physical_format": "Paperback", "publishers": ["Longman"], "isbn_10": ["0582181844"], "number_of_pages": 32, "edition_name": "Metric Ed edition", "isbn_13": ["9780582181847"], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:51:58.446631"}, "publish_date": "April 5, 1971", "key": "/books/OL10648771M", "authors": [{"key": "/authors/OL1724644A"}], "title": "Pattern, Area and Perimeter (Mathematics in the Making)", "latest_revision": 2, "works": [{"key": "/works/OL6489080W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10648776M 3 2011-04-28T23:39:51.292916 {"publishers": ["Longman Schools Division (a Pearson Education company)"], "subtitle": "Teacher's Guide Book 3", "last_modified": {"type": "/type/datetime", "value": "2011-04-28T23:39:51.292916"}, "title": "Graded Workbook", "number_of_pages": 32, "isbn_13": ["9780582182134"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0582182131"], "publish_date": "September 2, 1974", "key": "/books/OL10648776M", "authors": [{"key": "/authors/OL3480122A"}], "latest_revision": 3, "oclc_numbers": ["16676284"], "works": [{"key": "/works/OL9453529W"}], "type": {"key": "/type/edition"}, "subjects": ["Mathematics", "For National Curriculum Key Stage 2"], "revision": 3}
+/type/edition /books/OL10649165M 5 2022-12-09T20:47:08.755616 {"publishers": ["Longman"], "title": "Elizabethan Citizen/Renaissance and Reformation", "isbn_10": ["0582203708"], "isbn_13": ["9780582203709"], "physical_format": "Paperback", "publish_date": "June 1987", "key": "/books/OL10649165M", "authors": [{"key": "/authors/OL3310915A"}], "subjects": ["History: American"], "works": [{"key": "/works/OL9254989W"}], "type": {"key": "/type/edition"}, "covers": [11625686], "ocaid": "elizabethancitiz0000reev", "lc_classifications": ["DA320 .R44 1980"], "source_records": ["ia:elizabethancitiz0000reev", "amazon:0582203708", "promise:bwb_daily_pallets_2020-10-08"], "local_id": ["urn:bwbsku:P6-BLQ-612"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T20:47:08.755616"}}
+/type/edition /books/OL10649314M 5 2022-11-15T14:30:50.240546 {"publishers": ["Longman"], "identifiers": {"goodreads": ["1484029"]}, "title": "Don't Go Near the Water (Knockouts)", "number_of_pages": 66, "isbn_13": ["9780582211773"], "physical_format": "Paperback", "isbn_10": ["0582211778"], "publish_date": "February 1982", "key": "/books/OL10649314M", "authors": [{"key": "/authors/OL2802293A"}], "works": [{"key": "/works/OL8403549W"}], "type": {"key": "/type/edition"}, "subjects": ["For National Curriculum Key Stage 4 & GCSE", "Designed / suitable for National Curriculum"], "source_records": ["amazon:0582211778"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-15T14:30:50.240546"}}
+/type/edition /books/OL10649900M 2 2020-08-19T17:46:42.803841 {"publishers": ["Longman"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2020-08-19T17:46:42.803841"}, "source_records": ["bwb:9780582236981"], "title": "Managing Theatres and Arts Facilities", "number_of_pages": 160, "isbn_13": ["9780582236981"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0582236983"], "publish_date": "August 30, 1994", "key": "/books/OL10649900M", "authors": [{"key": "/authors/OL2799739A"}, {"key": "/authors/OL3480343A"}], "latest_revision": 2, "works": [{"key": "/works/OL21394424W"}], "type": {"key": "/type/edition"}, "subjects": ["Management & management techniques", "Sport & leisure industries", "Stage & theatre management"], "revision": 2}
+/type/edition /books/OL10649974M 7 2022-12-09T12:44:39.746512 {"publishers": ["Prentice Hall"], "number_of_pages": 256, "weight": "1 pounds", "covers": [2522298], "physical_format": "Paperback", "key": "/books/OL10649974M", "authors": [{"key": "/authors/OL3480360A"}, {"key": "/authors/OL2648131A"}], "subjects": ["Organic chemistry", "Chemistry - Organic", "Science", "Science/Mathematics"], "languages": [{"key": "/languages/eng"}], "title": "Guide to Organic Sterochemistry", "identifiers": {"goodreads": ["4106991"]}, "isbn_13": ["9780582239326"], "isbn_10": ["058223932X"], "publish_date": "July 1997", "works": [{"key": "/works/OL9078251W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.1 x 6.1 x 0.6 inches", "ocaid": "guidetoorganicst0000buxt", "lc_classifications": ["QD481 .B898x 1996"], "source_records": ["ia:guidetoorganicst0000buxt", "promise:bwb_daily_pallets_2020-11-19"], "local_id": ["urn:bwbsku:KO-359-661"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T12:44:39.746512"}}
+/type/edition /books/OL10650700M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Logotron Limited"], "number_of_pages": 648, "isbn_13": ["9780582270879"], "isbn_10": ["0582270871"], "publish_date": "October 20, 1986", "key": "/books/OL10650700M", "title": "Urban Geography Pack (CIC S.)", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10650852M 4 2019-07-31T04:37:22.184852 {"publishers": ["Longman"], "languages": [{"key": "/languages/eng"}, {"key": "/languages/fre"}], "last_modified": {"type": "/type/datetime", "value": "2019-07-31T04:37:22.184852"}, "title": "Histoire Du Chocolat (Maxilire)", "identifiers": {"goodreads": ["2654988"]}, "isbn_13": ["9780582277106"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0582277108"], "publish_date": "March 22, 1996", "key": "/books/OL10650852M", "authors": [{"key": "/authors/OL2668476A"}, {"key": "/authors/OL3480514A"}, {"key": "/authors/OL3480038A"}, {"key": "/authors/OL3461439A"}], "latest_revision": 4, "works": [{"key": "/works/OL12641605W"}], "type": {"key": "/type/edition"}, "subjects": ["Designed / suitable for National Curriculum", "For National Curriculum Key Stage 3"], "revision": 4}
+/type/edition /books/OL10651139M 4 2020-08-19T12:26:16.962106 {"publishers": ["Longman"], "covers": [10188089], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2020-08-19T12:26:16.962106"}, "latest_revision": 4, "key": "/books/OL10651139M", "authors": [{"key": "/authors/OL3236589A"}, {"key": "/authors/OL1102293A"}, {"key": "/authors/OL2802095A"}], "ocaid": "newdiscoveries0004abbs", "subjects": ["ELT grammars & grammar practice"], "isbn_13": ["9780582291805"], "source_records": ["ia:newdiscoveries0004abbs", "bwb:9780582291805"], "title": "New Discoveries", "number_of_pages": 96, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0582291801"], "publish_date": "March 25, 1996", "oclc_numbers": ["34731935"], "works": [{"key": "/works/OL20869152W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10651476M 2 2011-04-26T01:52:52.359243 {"publishers": ["Longman Higher Education Division (a Pearson Education company)"], "physical_format": "Paperback", "subtitle": "7th Printing (ELBS)", "last_modified": {"type": "/type/datetime", "value": "2011-04-26T01:52:52.359243"}, "title": "Electrical Installation Work", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780582305618"], "isbn_10": ["0582305616"], "publish_date": "December 11, 1996", "key": "/books/OL10651476M", "authors": [{"key": "/authors/OL3480628A"}, {"key": "/authors/OL3480629A"}], "latest_revision": 2, "oclc_numbers": ["62393912"], "type": {"key": "/type/edition"}, "subjects": ["Electronics & Communications Engineering"], "revision": 2}
+/type/edition /books/OL10651672M 8 2020-08-19T04:40:24.945712 {"publishers": ["Longman"], "number_of_pages": 136, "covers": [2522613], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2020-08-19T04:40:24.945712"}, "latest_revision": 8, "key": "/books/OL10651672M", "authors": [{"key": "/authors/OL393398A"}], "subjects": ["Computing & information technology", "For National Curriculum Key Stage 4 & GCSE", "Study guides, home study & revision notes"], "isbn_13": ["9780582312494"], "classifications": {}, "source_records": ["bwb:9780582312494"], "title": "GCSE Information Technology", "notes": {"type": "/type/text", "value": "Longman Exam Practice Kits"}, "identifiers": {}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0582312493"], "publish_date": "November 24, 1997", "oclc_numbers": ["38206815"], "works": [{"key": "/works/OL2692106W"}], "type": {"key": "/type/edition"}, "revision": 8}
+/type/edition /books/OL10651692M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Longman"], "title": "Daybreak (DAYB)", "isbn_13": ["9780582313132"], "isbn_10": ["0582313139"], "publish_date": "December 4, 1997", "key": "/books/OL10651692M", "authors": [{"key": "/authors/OL3273912A"}, {"key": "/authors/OL3480049A"}, {"key": "/authors/OL3480048A"}], "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10651704M 7 2022-12-08T06:38:03.918683 {"publishers": ["Longman Pub Group"], "identifiers": {"goodreads": ["669361"], "librarything": ["7072416"]}, "weight": "3.2 ounces", "physical_format": "Paperback", "key": "/books/OL10651704M", "authors": [{"key": "/authors/OL1821392A"}], "subjects": ["European history: BCE to c 500 CE", "Ancient Rome", "Ancient - Rome", "For National Curriculum Key Stage 3", "History - General History"], "languages": [{"key": "/languages/eng"}], "title": "Roman Army (Aspects of Roman Life)", "number_of_pages": 48, "isbn_13": ["9780582314146"], "isbn_10": ["0582314143"], "publish_date": "June 1974", "works": [{"key": "/works/OL6726512W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.2 x 6.2 x 0.2 inches", "local_id": ["urn:bwbsku:KP-830-352"], "source_records": ["promise:bwb_daily_pallets_2021-06-17"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-08T06:38:03.918683"}}
+/type/edition /books/OL10651962M 10 2022-12-10T02:28:31.777596 {"publishers": ["Longman"], "number_of_pages": 128, "covers": [2522716], "physical_format": "Paperback", "key": "/books/OL10651962M", "authors": [{"key": "/authors/OL2801752A"}], "subjects": ["Shakespeare studies & criticism", "Designed / suitable for A & AS Level", "English"], "edition_name": "2Rev edition", "languages": [{"key": "/languages/eng"}], "classifications": {}, "source_records": ["bwb:9780582329218", "ia:kinglear0000warr", "promise:bwb_daily_pallets_2020-07-30"], "title": "York Notes on Shakespeare's \"King Lear\"", "notes": {"type": "/type/text", "value": "York Notes Advanced"}, "identifiers": {"goodreads": ["800797"], "librarything": ["2972325"], "amazon": [""]}, "isbn_13": ["9780582329218"], "isbn_10": ["0582329213"], "publish_date": "March 16, 1998", "works": [{"key": "/works/OL8402365W"}], "type": {"key": "/type/edition"}, "ocaid": "kinglear0000warr", "lc_classifications": ["PR2819.A2 W377 1998"], "local_id": ["urn:bwbsku:KN-892-055"], "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T02:28:31.777596"}}
+/type/edition /books/OL1065219M 4 2020-11-18T04:00:54.425375 {"other_titles": ["Ka\u0304nsama\u0304khom wa\u0304du\u0304ai khanopthamni\u0304am l\u00e6 praphe\u0304ni\u0304 pon thi\u0304 chai kan yu\u0304 r\u01b0\u0304 thi\u0304 khu\u0304an chai nai we\u0304la\u0304 ni\u0304."], "publishers": ["Samnaknga\u0304n S\u0153\u0304msa\u0304ng \u02bbE\u0304kkalak kho\u031c\u0304ng Cha\u0304t, Samnak Le\u0304kha\u0304thika\u0304n Na\u0304yok Ratthamontri\u0304"], "description": {"type": "/type/text", "value": "On Thai manners and custom."}, "isbn_10": ["9747770997"], "subject_place": ["Thailand"], "lc_classifications": ["DS568 .A726 1991"], "latest_revision": 4, "key": "/books/OL1065219M", "authors": [{"key": "/authors/OL569558A"}], "publish_places": ["[Bangkok]"], "contributions": ["Thailand. Samnaknga\u0304n S\u0153\u0304msa\u0304ng \u02bbE\u0304kkalak kho\u031c\u0304ng Cha\u0304t."], "languages": [{"key": "/languages/tha"}], "pagination": "141 p. ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:101397104:1382"], "title": "R\u01b0\u0304ang ka\u0304nsama\u0304khom wa\u0304du\u0304ai khanopthamni\u0304ap l\u00e6 praphe\u0304ni\u0304 pon thi\u0304 chai kan yu\u0304 r\u01b0\u0304 thi\u0304 khu\u0304an chai nai we\u0304la\u0304 ni\u0304", "lccn": ["93916700"], "notes": {"type": "/type/text", "value": "In Thai.\nCover title: Ka\u0304nsama\u0304khom wa\u0304du\u0304ai khanopthamni\u0304am l\u00e6 praphe\u0304ni\u0304 pon thi\u0304 chai kan yu\u0304 r\u01b0\u0304 thi\u0304 khu\u0304an chai nai we\u0304la\u0304 ni\u0304."}, "number_of_pages": 141, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "edition_name": "C\u030chatphim ph\u0153\u0304iphr\u00e6\u0304 khrang thi\u0304 1.", "subjects": ["Thailand -- Social life and customs."], "publish_date": "1991", "publish_country": "th ", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T04:00:54.425375"}, "by_statement": "kho\u031c\u0304ng Phraya\u0304 \u02bbAnupha\u0304ptraiphop (C\u030chamrat The\u0304phatsadin Na \u02bbAyutthaya\u0304).", "oclc_numbers": ["29704463"], "works": [{"key": "/works/OL3438717W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10652242M 7 2022-11-15T17:02:00.494348 {"publishers": ["Longman"], "identifiers": {"goodreads": ["6324706"]}, "weight": "9.1 ounces", "physical_format": "Paperback", "key": "/books/OL10652242M", "authors": [{"key": "/authors/OL3274865A"}], "subjects": ["ELT: Learning Material & Coursework"], "isbn_13": ["9780582336193"], "source_records": ["bwb:9780582336193", "amazon:0582336198"], "title": "Blue Skies 5 (Blue Skies)", "number_of_pages": 96, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0582336198"], "publish_date": "August 17, 1999", "oclc_numbers": ["227953573"], "works": [{"key": "/works/OL9211593W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.8 x 8.3 x 0.3 inches", "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-15T17:02:00.494348"}}
+/type/edition /books/OL10652341M 5 2020-08-19T12:24:53.878248 {"publishers": ["Longman"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2020-08-19T12:24:53.878248"}, "latest_revision": 5, "key": "/books/OL10652341M", "authors": [{"key": "/authors/OL2029150A"}], "contributions": ["Edward McLachlan (Illustrator)"], "subjects": ["English language", "For National Curriculum Key Stage 1", "For National Curriculum Key Stage 2"], "isbn_13": ["9780582338289"], "source_records": ["bwb:9780582338289"], "title": "Bangers and Mash", "number_of_pages": 16, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["058233828X"], "publish_date": "January 25, 1999", "oclc_numbers": ["40338534"], "works": [{"key": "/works/OL7133442W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10652370M 6 2020-08-19T12:25:07.526261 {"publishers": ["Longman"], "identifiers": {"goodreads": ["2704172"]}, "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2020-08-19T12:25:07.526261"}, "latest_revision": 6, "key": "/books/OL10652370M", "authors": [{"key": "/authors/OL2029150A"}], "contributions": ["Edward McLachlan (Illustrator)"], "subjects": ["English language", "For National Curriculum Key Stage 1", "For National Curriculum Key Stage 2"], "isbn_13": ["9780582338593"], "source_records": ["bwb:9780582338593"], "title": "Bangers and Mash", "number_of_pages": 24, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["058233859X"], "publish_date": "January 25, 1999", "works": [{"key": "/works/OL7133442W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL10652486M 4 2022-10-28T11:16:11.016359 {"publishers": ["Pearson ESL"], "weight": "2.1 ounces", "series": ["Penguin Young Readers , Level 3 (Up to 1000 words)"], "edition_name": "1st edition", "physical_format": "Paperback", "key": "/books/OL10652486M", "authors": [{"key": "/authors/OL1607523A"}], "subjects": ["ELT: Learning Material & Coursework", "Literature: Classics"], "isbn_13": ["9780582344136"], "source_records": ["bwb:9780582344136", "amazon:0582344131"], "title": "Happy Granny", "number_of_pages": 32, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0582344131"], "publish_date": "September 20, 2000", "works": [{"key": "/works/OL6222184W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "7.8 x 4.8 x 0.1 inches", "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-28T11:16:11.016359"}}
+/type/edition /books/OL10652703M 4 2020-08-19T12:44:46.703229 {"publishers": ["Longman"], "physical_format": "Paperback", "subtitle": "Ben and the Boxes (Literacy Land)", "last_modified": {"type": "/type/datetime", "value": "2020-08-19T12:44:46.703229"}, "source_records": ["bwb:9780582349544"], "title": "Literacy Land: Story Street: Beginner: Step 3: Guided/Independent Reading", "number_of_pages": 16, "isbn_13": ["9780582349544"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0582349540"], "publish_date": "January 24, 2000", "key": "/books/OL10652703M", "authors": [{"key": "/authors/OL1124351A"}], "latest_revision": 4, "works": [{"key": "/works/OL5105276W"}], "type": {"key": "/type/edition"}, "subjects": ["English language reading schemes", "For P1-P3 (Scottish)", "English"], "revision": 4}
+/type/edition /books/OL10652843M 10 2020-10-12T12:03:43.669188 {"publishers": ["Prentice Hall"], "number_of_pages": 344, "subtitle": "Ecology and Human Use", "weight": "14.9 ounces", "covers": [2522811], "physical_format": "Paperback", "lc_classifications": ["QH541.5.P7 M57 2000", "QH541.5.P7M57 2000"], "latest_revision": 10, "key": "/books/OL10652843M", "authors": [{"key": "/authors/OL3480830A"}], "subjects": ["Grasslands, heaths, prairies, tundra", "Life Sciences - Ecology", "Science", "Human ecology", "Savanna ecology", "Savannas", "Nature/Ecology"], "isbn_13": ["9780582356597"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part01.utf8:8227777:731", "bwb:9780582356597"], "title": "World Savannas", "lccn": ["00021960"], "identifiers": {"goodreads": ["1264492"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0582356598"], "publish_date": "June 2000", "last_modified": {"type": "/type/datetime", "value": "2020-10-12T12:03:43.669188"}, "works": [{"key": "/works/OL9454175W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.1 x 6.1 x 0.8 inches", "revision": 10}
+/type/edition /books/OL10652865M 5 2020-08-19T12:14:54.886425 {"publishers": ["Longman"], "identifiers": {"librarything": ["5515943"]}, "covers": [2522826], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2020-08-19T12:14:54.886425"}, "latest_revision": 5, "key": "/books/OL10652865M", "authors": [{"key": "/authors/OL2188738A"}, {"key": "/authors/OL3480842A"}], "subjects": ["Civil Engineering, Surveying & Building", "Office management"], "languages": [{"key": "/languages/eng"}], "source_records": ["bwb:9780582357488"], "title": "Improving Office Productivity (Chartered Institute of Building)", "number_of_pages": 128, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780582357488"], "isbn_10": ["0582357489"], "publish_date": "October 15, 1999", "oclc_numbers": ["45581070"], "works": [{"key": "/works/OL21386947W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10653091M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Longman"], "number_of_pages": 160, "isbn_13": ["9780582367920"], "isbn_10": ["0582367921"], "publish_date": "January 26, 1998", "key": "/books/OL10653091M", "title": "Once Upon a Fairytale (Genre Library)", "type": {"key": "/type/edition"}, "subjects": ["English language readers", "English literature: fiction texts", "Fairy tales, folk tales, fables, magical tales & traditional stories", "For National Curriculum Key Stage 1", "For National Curriculum Key Stage 2"], "revision": 1}
+/type/edition /books/OL10653164M 5 2011-04-30T03:49:16.363805 {"publishers": ["Longman"], "identifiers": {"goodreads": ["3308173"]}, "last_modified": {"type": "/type/datetime", "value": "2011-04-30T03:49:16.363805"}, "title": "Super Doopers", "contributions": ["T. Hill (Illustrator)"], "number_of_pages": 64, "isbn_13": ["9780582378155"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["058237815X"], "publish_date": "January 1999", "key": "/books/OL10653164M", "authors": [{"key": "/authors/OL712656A"}], "latest_revision": 5, "oclc_numbers": ["43971612"], "works": [{"key": "/works/OL3914743W"}], "type": {"key": "/type/edition"}, "subjects": ["English language readers", "For National Curriculum Key Stage 2"], "revision": 5}
+/type/edition /books/OL10653574M 6 2020-08-19T12:33:43.226402 {"publishers": ["Longman"], "number_of_pages": 8, "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2020-08-19T12:33:43.226402"}, "latest_revision": 6, "key": "/books/OL10653574M", "authors": [{"key": "/authors/OL2801922A"}], "subjects": ["English language readers", "Designed / suitable for National Curriculum", "For National Curriculum Key Stage 1"], "isbn_13": ["9780582406568"], "source_records": ["bwb:9780582406568"], "title": "Story Street (SS)", "identifiers": {"goodreads": ["6348014"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0582406560"], "publish_date": "January 24, 2000", "oclc_numbers": ["45572063"], "works": [{"key": "/works/OL8402744W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL1065483M 5 2020-11-18T04:03:55.620997 {"publishers": ["Samnakphim Chapkr\u00e6", "Bo\u031c\u0304risat Sa\u0304makkhi\u0304sa\u0304n c\u030chatc\u030chamna\u0304i"], "identifiers": {"goodreads": ["5851212"]}, "subtitle": "banth\u01b0k prawattisa\u0304t n\u01b0ng chu\u0304ang saw\u00e6\u0304ngha\u0304 ka\u0304nd\u0153\u0304ntha\u0304ng kho\u031c\u0304ng num sa\u0304o h\u00e6\u0304ng d\u01b0\u0304an Tula\u0304", "description": {"type": "/type/text", "value": "Memoirs of Thai political activist."}, "isbn_10": ["9748915794"], "subject_place": ["Thailand"], "lc_classifications": ["DS578.32.C472 A3 1993"], "latest_revision": 5, "key": "/books/OL1065483M", "authors": [{"key": "/authors/OL569663A"}], "publish_places": ["Krung The\u0304p"], "languages": [{"key": "/languages/tha"}], "pagination": "255 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:101689098:1049"], "title": "C\u030cha\u0304k do\u031c\u0304i ya\u0304o th\u01b0ng phu\u0304pha\u0304 c\u030chi", "lccn": ["93917130"], "notes": {"type": "/type/text", "value": "In Thai."}, "number_of_pages": 255, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "edition_name": "Phim khrang r\u00e6\u0304k.", "subjects": ["C\u030chanthana\u0304 Fo\u031c\u0304ngthale\u0304.", "Political activists -- Thailand -- Biography.", "Thailand -- Politics and government."], "publish_date": "1993", "publish_country": "th ", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T04:03:55.620997"}, "by_statement": "C\u030chanthana\u0304 Fo\u031c\u0304ngthale\u0304 khi\u0304an.", "oclc_numbers": ["31013856"], "works": [{"key": "/works/OL3439004W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10655250M 5 2020-08-19T01:54:01.213651 {"publishers": ["Xlibris Corporation"], "weight": "12.8 ounces", "covers": [2568367], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2020-08-19T01:54:01.213651"}, "latest_revision": 5, "key": "/books/OL10655250M", "authors": [{"key": "/authors/OL381482A"}], "subjects": ["Espionage & spy thriller", "Espionage/Intrigue", "Suspense", "Fiction", "Fiction - Espionage / Thriller"], "isbn_13": ["9780738899459"], "source_records": ["bwb:9780738899459"], "title": "The Universal Solvent", "number_of_pages": 236, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0738899453"], "publish_date": "May 2001", "oclc_numbers": ["227968727"], "works": [{"key": "/works/OL2618835W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.5 x 5.6 x 0.6 inches", "revision": 5}
+/type/edition /books/OL10655326M 2 2009-12-15T00:52:02.031967 {"physical_format": "Hardcover", "languages": [{"key": "/languages/eng"}], "publishers": ["Sony Music Entertainment"], "isbn_10": ["0738924970"], "number_of_pages": 30, "edition_name": "DVD Video edition", "isbn_13": ["9780738924977"], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:52:02.031967"}, "publish_date": "January 2003", "latest_revision": 2, "key": "/books/OL10655326M", "authors": [{"key": "/authors/OL3481255A"}], "title": "Get Up and Dance", "subjects": ["General", "Children's Books/Ages 9-12 Fiction", "Running Time: 30m/COLOR/DUBBED", "Children's Non-Book"], "works": [{"key": "/works/OL9454590W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10655928M 3 2011-04-27T00:13:12.261710 {"publishers": ["Alfred Publishing"], "weight": "6.4 ounces", "covers": [2568707], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T00:13:12.261710"}, "latest_revision": 3, "key": "/books/OL10655928M", "contributions": ["Beth Mochnick (Composer)", "Jean Shafferman (Composer)"], "subjects": ["Genres & Styles - Children's", "Songbooks - General", "Music", "Music/Songbooks"], "isbn_13": ["9780739009529"], "title": "Angel Voices", "number_of_pages": 48, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0739009524"], "publish_date": "May 4, 2006", "oclc_numbers": ["154778030"], "type": {"key": "/type/edition"}, "physical_dimensions": "11.9 x 8.8 x 0.2 inches", "revision": 3}
+/type/edition /books/OL10655931M 7 2022-10-18T07:47:27.972008 {"publishers": ["Alfred Publishing Company"], "identifiers": {"goodreads": ["2115244"], "librarything": ["6971680"]}, "subtitle": "10 Original Pieces for the Late Elementary to Early Intermediate Pianist (Alfred's Basic Piano Library)", "weight": "2.4 ounces", "covers": [2568709], "physical_format": "Paperback", "key": "/books/OL10655931M", "authors": [{"key": "/authors/OL2811906A"}], "subjects": ["Genres & Styles - Jazz", "Musical Instruments - Piano", "Music", "Music/Songbooks"], "isbn_13": ["9780739009635"], "title": "Jazz, Rags & Blues, Book 1", "number_of_pages": 23, "languages": [{"key": "/languages/eng"}], "isbn_10": ["073900963X"], "publish_date": "January 1993", "works": [{"key": "/works/OL8422700W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "11.8 x 9 x 0.1 inches", "source_records": ["bwb:9780739009635"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T07:47:27.972008"}}
+/type/edition /books/OL10656281M 3 2011-04-30T02:28:53.369515 {"publishers": ["Alfred Publishing"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-30T02:28:53.369515"}, "title": "Christmas in the Key of C", "number_of_pages": 16, "isbn_13": ["9780739016770"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0739016776"], "publish_date": "May 4, 2006", "key": "/books/OL10656281M", "authors": [{"key": "/authors/OL51127A"}], "latest_revision": 3, "oclc_numbers": ["176918334"], "works": [{"key": "/works/OL658089W"}], "type": {"key": "/type/edition"}, "subjects": ["Musical Instruments - Piano", "Music", "Music/Songbooks"], "revision": 3}
+/type/edition /books/OL10656358M 4 2011-04-26T05:54:13.372021 {"publishers": ["Alfred Publishing"], "weight": "6.4 ounces", "covers": [2568929], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-26T05:54:13.372021"}, "latest_revision": 4, "key": "/books/OL10656358M", "authors": [{"key": "/authors/OL51127A"}, {"key": "/authors/OL767521A"}], "subjects": ["Musical Instruments - Percussion", "Music", "Music/Songbooks"], "isbn_13": ["9780739018200"], "title": "Learn to Play the Snare and Bass Drum, Book 2 (Learn to Play)", "number_of_pages": 48, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0739018205"], "publish_date": "May 4, 2006", "oclc_numbers": ["154779643"], "type": {"key": "/type/edition"}, "physical_dimensions": "11.6 x 8.8 x 0.2 inches", "revision": 4}
+/type/edition /books/OL10656532M 3 2011-04-30T06:57:09.949703 {"publishers": ["Alfred Publishing Company"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-30T06:57:09.949703"}, "title": "Palmer-hughes Prep Accordion Course, Book 2a (Palmer-Hughes Accordion Course)", "number_of_pages": 32, "isbn_13": ["9780739021774"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["073902177X"], "publish_date": "June 1961", "key": "/books/OL10656532M", "authors": [{"key": "/authors/OL2811830A"}], "latest_revision": 3, "oclc_numbers": ["154771442"], "works": [{"key": "/works/OL8421959W"}], "type": {"key": "/type/edition"}, "subjects": ["Musical Instruments - Piano", "Music", "Music/Songbooks"], "revision": 3}
+/type/edition /books/OL10657188M 4 2011-04-27T06:04:16.032307 {"publishers": ["Alfred Publishing"], "subtitle": "Joplin Guitar TAB Classics (Basix R)", "weight": "7 ounces", "covers": [2569349], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T06:04:16.032307"}, "latest_revision": 4, "key": "/books/OL10657188M", "authors": [{"key": "/authors/OL2745948A"}], "subjects": ["Genres & Styles - Classical", "Individual Composer & Musician", "Musical Instruments - Guitar", "Music", "Music/Songbooks"], "languages": [{"key": "/languages/eng"}], "title": "Basix", "number_of_pages": 44, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780739034088"], "isbn_10": ["0739034081"], "publish_date": "May 4, 2006", "oclc_numbers": ["55529089"], "works": [{"key": "/works/OL8251150W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "11.7 x 8.6 x 0.2 inches", "revision": 4}
+/type/edition /books/OL10657301M 4 2011-04-27T18:40:38.519723 {"publishers": ["Alfred Publishing"], "weight": "1.6 ounces", "covers": [2569394], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T18:40:38.519723"}, "latest_revision": 4, "key": "/books/OL10657301M", "authors": [{"key": "/authors/OL2811821A"}], "subjects": ["Musical Instruments - Guitar", "Music", "Music/Songbooks"], "isbn_13": ["9780739035979"], "languages": [{"key": "/languages/eng"}], "title": "I Just Bought My First Guitar", "number_of_pages": 32, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "first_sentence": {"type": "/type/text", "value": "Your guitar strings are designed to vibrate in an even, regular way that creates a musical tone."}, "isbn_10": ["0739035975"], "publish_date": "May 4, 2006", "oclc_numbers": ["154771599"], "works": [{"key": "/works/OL8421885W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.9 x 4 x 0.2 inches", "revision": 4}
+/type/edition /books/OL10657424M 5 2022-07-19T02:53:40.783708 {"publishers": ["Alfred Publishing Company"], "languages": [{"key": "/languages/eng"}], "title": "Theory for the Contemporary Guitarist", "identifiers": {"goodreads": ["5786135"]}, "isbn_13": ["9780739038383"], "physical_format": "Paperback", "isbn_10": ["0739038389"], "publish_date": "October 2006", "key": "/books/OL10657424M", "authors": [{"key": "/authors/OL770005A"}, {"key": "/authors/OL2811847A"}], "oclc_numbers": ["213837149"], "type": {"key": "/type/edition"}, "subjects": ["Musical Instruments - Guitar", "Music/Songbooks"], "works": [{"key": "/works/OL28365731W"}], "source_records": ["bwb:9780739038383"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-19T02:53:40.783708"}}
+/type/edition /books/OL1065746M 3 2020-11-18T04:06:57.310243 {"other_titles": ["Mongg\u0307ol-un niguc\u0307a tobciyan.", "Secret history of the Mongols."], "publishers": ["Ulsyn Khe\u0307vle\u0307lii\u0306n Gazar"], "subtitle": "usgiin galig", "description": {"type": "/type/text", "value": "Classical work on the history of the Mongols."}, "lc_classifications": ["DS19 .Y78 1990b"], "latest_revision": 3, "key": "/books/OL1065746M", "publish_places": ["Ulaanbaatar"], "contributions": ["Sumiaabaatar, B.", "Manlazhav, L.", "Shagdarsu\u0307re\u0307n, T\u0361s\ufe21."], "pagination": "965 p. :", "source_records": ["marc:marc_loc_updates/v40.i25.records.utf8:1330715:1261", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:101983022:1261"], "title": "Mongg\u0307ol-un nig\u0307uca tobciyan", "lccn": ["93927540"], "notes": {"type": "/type/text", "value": "In Mongolian (Chinese, roman, and vertical scripts)."}, "number_of_pages": 965, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/mon"}], "subjects": ["Mongols -- History."], "publish_date": "1990", "publish_country": "mp ", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T04:06:57.310243"}, "by_statement": "B. Sumi\u0361a\ufe21abaatar ; redaktor L. Manlazhav, T\u0361s\ufe21. Shagdarsu\u0307re\u0307n = Yuan chao bi shi = The secret history of the Mongols : transcription / B. Sumyaabaatar ; editor, L. Manlajav, Ts. Shagdarsuren.", "work_title": ["Yuan chao bi shi."], "works": [{"key": "/works/OL16678738W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10657714M 7 2022-12-22T10:01:29.509134 {"publishers": ["Alfred Publishing"], "languages": [{"key": "/languages/eng"}], "identifiers": {"goodreads": ["1144764"]}, "weight": "12 ounces", "title": "Tony Bennett Duets- An American Classic", "number_of_pages": 104, "isbn_13": ["9780739044704"], "covers": [2569679], "physical_format": "Paperback", "authors": [{"key": "/authors/OL2693552A"}], "isbn_10": ["0739044702"], "key": "/books/OL10657714M", "publish_date": "October 27, 2006", "works": [{"key": "/works/OL8089944W"}], "type": {"key": "/type/edition"}, "subjects": ["Popular Music", "Songbooks", "Music", "Music/Songbooks", "Entertainment / General", "Individual Composer & Musician", "Musical Instruments - Piano", "Songbooks - General"], "physical_dimensions": "11.7 x 8.8 x 0.3 inches", "source_records": ["amazon:0739044702", "promise:bwb_daily_pallets_2022-12-08"], "local_id": ["urn:bwbsku:O8-BWT-164"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-22T10:01:29.509134"}}
+/type/edition /books/OL10657807M 6 2022-10-17T01:55:54.770390 {"publishers": ["Lexington Books"], "weight": "13.3 ounces", "isbn_10": ["0739102176"], "covers": [2569758], "physical_format": "Hardcover", "key": "/books/OL10657807M", "authors": [{"key": "/authors/OL3481435A"}], "isbn_13": ["9780739102176"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part01.utf8:44960867:1074", "bwb:9780739102176"], "title": "Indo-Russian Military and Nuclear Cooperation", "lccn": ["00063562"], "number_of_pages": 192, "languages": [{"key": "/languages/eng"}], "subjects": ["Arms negotiation & control", "International relations", "Nuclear weapons", "Political Science", "Technology & Industrial Arts", "Politics/International Relations", "India", "Russia", "USA", "International Relations - General", "Military Science", "Political Science / International Relations", "Military relations", "Russia (Federation)", "South Asia"], "publish_date": "January 22, 2001", "works": [{"key": "/works/OL9454898W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.3 x 6.1 x 0.6 inches", "lc_classifications": ["UA849.C66 2001"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T01:55:54.770390"}}
+/type/edition /books/OL10657854M 8 2023-01-08T22:15:41.809901 {"publishers": ["Lexington Books"], "subtitle": "Politics, Economics, and Society", "weight": "11.2 ounces", "physical_format": "Hardcover", "lc_classifications": ["DS389.P3473 2003", "DS389 .P3473 2004"], "key": "/books/OL10657854M", "authors": [{"key": "/authors/OL532033A"}], "subjects": ["Economics", "History", "POLITICS & GOVERNMENT", "Political Science", "History - General History", "History: World", "Politics/International Relations", "Asia - India & South Asia", "Non-Classifiable", "1988-", "Economic Conditions", "Pakistan", "Politics and government"], "isbn_13": ["9780739104989"], "source_records": ["marc:marc_university_of_toronto/uoft.marc:4687547971:954", "bwb:9780739104989", "marc:marc_loc_2016/BooksAll.2016.part30.utf8:199177615:1517", "ia:pakistanonbrinkp0000unse", "marc:marc_columbia/Columbia-extract-20221130-009.mrc:414673263:1958"], "title": "Pakistan on the Brink", "number_of_pages": 277, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0195978056"], "publish_date": "March 20, 2004", "works": [{"key": "/works/OL3263936W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.5 inches", "lccn": ["2003060462"], "covers": [12830679], "ocaid": "pakistanonbrinkp0000unse", "oclc_numbers": ["53038207"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2023-01-08T22:15:41.809901"}}
+/type/edition /books/OL10658734M 6 2022-12-09T08:49:32.429810 {"publishers": ["Factor Press"], "physical_format": "Hardcover", "title": "Best Erotic Fantasies to Enjoy and Un", "identifiers": {"goodreads": ["3623152"], "librarything": ["3635789"]}, "isbn_13": ["9780739412800"], "isbn_10": ["0739412809"], "key": "/books/OL10658734M", "authors": [{"key": "/authors/OL333386A"}], "works": [{"key": "/works/OL2420220W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:W6-BRP-384"], "source_records": ["promise:bwb_daily_pallets_2020-12-09"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T08:49:32.429810"}}
+/type/edition /books/OL106591M 13 2022-06-23T16:06:44.175346 {"number_of_pages": 65, "covers": [12771562], "lc_classifications": ["PG3456.I8 S34 1999"], "contributions": ["Schmidt, Paul, 1934-"], "source_records": ["marc:marc_records_scriblio_net/part28.dat:68467222:623", "marc:marc_loc_2016/BooksAll.2016.part28.utf8:95632588:623", "ia:ivanov0000chek"], "title": "Ivanov", "languages": [{"key": "/languages/eng"}], "publish_country": "nyu", "by_statement": "by Anton Chekhov ; a new translation by Paul Schmidt.", "oclc_numbers": ["42828707"], "type": {"key": "/type/edition"}, "publishers": ["Dramatists Play Service"], "key": "/books/OL106591M", "authors": [{"key": "/authors/OL19677A"}], "publish_places": ["New York"], "pagination": "65 p. ;", "dewey_decimal_class": ["891.72/3"], "identifiers": {"librarything": ["1381837"], "goodreads": ["292613"]}, "lccn": ["99224317"], "isbn_10": ["0822216469"], "publish_date": "1999", "work_title": ["Ivanov."], "works": [{"key": "/works/OL55513W"}], "ocaid": "ivanov0000chek", "latest_revision": 13, "revision": 13, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-23T16:06:44.175346"}}
+/type/edition /books/OL10659328M 3 2020-08-29T05:27:40.575929 {"publishers": ["Adams Media"], "physical_format": "Hardcover", "source_records": ["ia:petcleanupmadeea0000asle"], "title": "Pet Clean-Up Made Easy", "number_of_pages": 243, "last_modified": {"type": "/type/datetime", "value": "2020-08-29T05:27:40.575929"}, "covers": [10402684], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0739456857"], "publish_date": "2005", "key": "/books/OL10659328M", "authors": [{"key": "/authors/OL387522A"}], "ocaid": "petcleanupmadeea0000asle", "latest_revision": 3, "works": [{"key": "/works/OL2657369W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10660113M 5 2011-04-28T21:19:06.806703 {"publishers": ["Intl Business Pubns USA"], "number_of_pages": 350, "covers": [2570501], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-28T21:19:06.806703"}, "latest_revision": 5, "key": "/books/OL10660113M", "authors": [{"key": "/authors/OL2812551A"}], "subjects": ["Exports & Imports", "International - General", "Business & Economics", "Business/Economics"], "isbn_13": ["9780739705773"], "classifications": {}, "title": "Uk Software Products Exporters Handbook", "notes": {"type": "/type/text", "value": "World Business, Investment and Government Library"}, "identifiers": {}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0739705776"], "publish_date": "March 3, 2005", "oclc_numbers": ["149421714"], "works": [{"key": "/works/OL8428745W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10660255M 4 2011-04-29T10:55:25.684302 {"publishers": ["Intl Business Pubns USA"], "number_of_pages": 350, "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T10:55:25.684302"}, "latest_revision": 4, "key": "/books/OL10660255M", "authors": [{"key": "/authors/OL2812551A"}], "subjects": ["Exports & Imports", "Finance", "International - General", "Business & Economics", "Business/Economics"], "isbn_13": ["9780739709139"], "classifications": {}, "title": "Sudan Central Bank & Financial Policy Handbook", "notes": {"type": "/type/text", "value": "World Business, Investment and Government Library"}, "identifiers": {}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0739709135"], "publish_date": "March 3, 2005", "oclc_numbers": ["500487504"], "works": [{"key": "/works/OL8428259W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10660543M 7 2011-04-28T03:14:59.278895 {"publishers": ["Intl Business Pubns USA"], "number_of_pages": 350, "covers": [2570889], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-28T03:14:59.278895"}, "latest_revision": 7, "key": "/books/OL10660543M", "authors": [{"key": "/authors/OL2812551A"}], "subjects": ["Development - Business Development", "Exports & Imports", "International - General", "Business & Economics", "Business/Economics"], "isbn_13": ["9780739713907"], "classifications": {}, "title": "Rwanda Central Bank & Financial Policy Handbook", "notes": {"type": "/type/text", "value": "World Business, Investment and Government Library"}, "identifiers": {"goodreads": ["416216"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0739713906"], "publish_date": "March 3, 2005", "oclc_numbers": ["149420966"], "works": [{"key": "/works/OL8427823W"}], "type": {"key": "/type/edition"}, "revision": 7}
+/type/edition /books/OL10660901M 4 2010-12-24T04:11:01.109344 {"publishers": ["International Business Publications, USA"], "classifications": {}, "last_modified": {"type": "/type/datetime", "value": "2010-12-24T04:11:01.109344"}, "title": "Maldives Business Law Handbook", "notes": {"type": "/type/text", "value": "World Business Law Handbook Library"}, "identifiers": {}, "isbn_13": ["9780739720035"], "covers": [2571215], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0739720031"], "latest_revision": 4, "key": "/books/OL10660901M", "authors": [{"key": "/authors/OL2812551A"}], "works": [{"key": "/works/OL8426709W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10661310M 4 2011-01-26T19:11:56.384714 {"publishers": ["International Business Publications, USA"], "number_of_pages": 350, "classifications": {}, "last_modified": {"type": "/type/datetime", "value": "2011-01-26T19:11:56.384714"}, "title": "Rwanda Business Intelligence Report", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "type": {"key": "/type/edition"}, "notes": {"type": "/type/text", "value": "World Business Intelligence Report Library"}, "identifiers": {}, "covers": [2571594], "edition_name": "3 edition", "isbn_13": ["9780739726396"], "isbn_10": ["0739726390"], "latest_revision": 4, "key": "/books/OL10661310M", "authors": [{"key": "/authors/OL2812551A"}], "works": [{"key": "/works/OL8427820W"}], "physical_format": "Library Binding", "revision": 4}
+/type/edition /books/OL10661413M 4 2011-04-26T12:14:02.304699 {"publishers": ["Intl Business Pubns USA"], "number_of_pages": 350, "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-26T12:14:02.304699"}, "latest_revision": 4, "key": "/books/OL10661413M", "authors": [{"key": "/authors/OL2812551A"}], "subjects": ["Development - Business Development", "Exports & Imports", "International - General", "Business & Economics", "Business/Economics"], "isbn_13": ["9780739728024"], "classifications": {}, "title": "Us Assistance to Bulgaria Handbook", "notes": {"type": "/type/text", "value": "World Business, Investment and Government Library"}, "identifiers": {}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0739728024"], "publish_date": "March 3, 2005", "oclc_numbers": ["149421896"], "works": [{"key": "/works/OL8428868W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10661426M 4 2011-04-26T10:11:08.715573 {"publishers": ["Intl Business Pubns USA"], "number_of_pages": 350, "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-26T10:11:08.715573"}, "latest_revision": 4, "key": "/books/OL10661426M", "authors": [{"key": "/authors/OL2812551A"}], "subjects": ["Development - Business Development", "Exports & Imports", "International - General", "Business & Economics", "Business/Economics"], "isbn_13": ["9780739728277"], "classifications": {}, "title": "Us Assistance to Yemen Handbook", "notes": {"type": "/type/text", "value": "World Business, Investment and Government Library"}, "identifiers": {}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["073972827X"], "publish_date": "March 3, 2005", "oclc_numbers": ["149422050"], "works": [{"key": "/works/OL8428882W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10661861M 4 2010-12-19T03:29:29.403615 {"publishers": ["Intl Business Pubns USA"], "covers": [2571925], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-12-19T03:29:29.403615"}, "latest_revision": 4, "key": "/books/OL10661861M", "authors": [{"key": "/authors/OL2812551A"}], "subjects": ["Exports & Imports", "International - General", "Investments & Securities - General", "Business & Economics", "Business/Economics"], "isbn_13": ["9780739739051"], "classifications": {}, "title": "Bermuda Offshore Investment and Business Guide", "notes": {"type": "/type/text", "value": "World Business and Investment Opportunities Library"}, "identifiers": {}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0739739050"], "publish_date": "May 2001", "works": [{"key": "/works/OL8424289W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10662227M 2 2009-12-15T00:52:08.450812 {"publishers": ["Intl Business Pubns USA"], "weight": "1.8 pounds", "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:52:08.450812"}, "latest_revision": 2, "key": "/books/OL10662227M", "authors": [{"key": "/authors/OL2812551A"}], "subjects": ["Business Law", "Exports & Imports", "International", "Business & Economics", "Business/Economics"], "edition_name": "4th edition", "title": "Armenia Business Law Handbook", "number_of_pages": 350, "isbn_13": ["9780739745076"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0739745077"], "publish_date": "May 2002", "works": [{"key": "/works/OL8429527W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.9 x 8.4 x 0.8 inches", "revision": 2}
+/type/edition /books/OL10662291M 2 2009-12-15T00:52:08.450812 {"publishers": ["Intl Business Pubns USA"], "weight": "1.8 pounds", "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:52:08.450812"}, "latest_revision": 2, "key": "/books/OL10662291M", "authors": [{"key": "/authors/OL2812551A"}], "subjects": ["Business Law", "Exports & Imports", "International", "Business & Economics", "Business/Economics"], "edition_name": "4th edition", "title": "Malawi Business Law Handbook", "number_of_pages": 350, "isbn_13": ["9780739746073"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0739746073"], "publish_date": "May 2002", "works": [{"key": "/works/OL8426640W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.8 x 8.5 x 0.6 inches", "revision": 2}
+/type/edition /books/OL10662331M 2 2009-12-15T00:52:08.450812 {"physical_format": "Paperback", "languages": [{"key": "/languages/eng"}], "publishers": ["Intl Business Pubns USA"], "isbn_10": ["0739746685"], "number_of_pages": 350, "edition_name": "4th edition", "isbn_13": ["9780739746684"], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:52:08.450812"}, "publish_date": "May 2002", "latest_revision": 2, "key": "/books/OL10662331M", "authors": [{"key": "/authors/OL2812551A"}], "title": "St. Vincent & Grenadines Business Law Handbook", "subjects": ["Business Law", "Exports & Imports", "International", "Business & Economics", "Business/Economics"], "works": [{"key": "/works/OL8428250W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10662978M 4 2011-04-28T01:20:48.204618 {"publishers": ["Intl Business Pubns USA"], "number_of_pages": 350, "weight": "1.6 pounds", "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-28T01:20:48.204618"}, "latest_revision": 4, "key": "/books/OL10662978M", "authors": [{"key": "/authors/OL2812551A"}], "subjects": ["Exports & Imports", "International - General", "Business & Economics", "Business/Economics"], "isbn_13": ["9780739755983"], "classifications": {}, "title": "Nepal Customs, Trade Regulations And Procedures Handbook", "notes": {"type": "/type/text", "value": "World Business, Investment and Government Library"}, "identifiers": {}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0739755986"], "publish_date": "March 30, 2005", "oclc_numbers": ["149407451"], "works": [{"key": "/works/OL8427138W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "11 x 8.8 x 0.5 inches", "revision": 4}
+/type/edition /books/OL10662989M 4 2011-06-08T03:09:15.325474 {"publishers": ["Intl Business Pubns USA"], "number_of_pages": 350, "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-06-08T03:09:15.325474"}, "latest_revision": 4, "key": "/books/OL10662989M", "authors": [{"key": "/authors/OL2812551A"}], "subjects": ["Exports & Imports", "International - General", "Business & Economics", "Business/Economics"], "isbn_13": ["9780739756096"], "classifications": {}, "title": "Cyprus Financial Market Investment And Business Opportunities Yearbook", "notes": {"type": "/type/text", "value": "World Business, Investment and Government Library"}, "identifiers": {}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0739756095"], "publish_date": "March 30, 2005", "oclc_numbers": ["149406066"], "works": [{"key": "/works/OL8424855W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10663064M 3 2010-12-18T23:42:58.003778 {"publishers": ["Intl Business Pubns USA"], "number_of_pages": 350, "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-12-18T23:42:58.003778"}, "latest_revision": 3, "key": "/books/OL10663064M", "authors": [{"key": "/authors/OL2812551A"}], "subjects": ["Exports & Imports", "Industries - General", "Business & Economics", "Business/Economics"], "isbn_13": ["9780739757192"], "classifications": {}, "title": "Argentina Customs, Trade Regulations And Procedures Handbook", "notes": {"type": "/type/text", "value": "World Business, Investment and Government Library"}, "identifiers": {}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0739757199"], "publish_date": "March 30, 2005", "works": [{"key": "/works/OL8424006W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10663343M 4 2011-06-08T10:49:03.859890 {"publishers": ["Intl Business Pubns USA"], "number_of_pages": 350, "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-06-08T10:49:03.859890"}, "latest_revision": 4, "key": "/books/OL10663343M", "authors": [{"key": "/authors/OL2812551A"}], "subjects": ["Banking", "Business & Financial", "Law"], "languages": [{"key": "/languages/eng"}], "classifications": {}, "title": "Islamic Banking And Financial Law Handbook", "notes": {"type": "/type/text", "value": "World Business, Investment and Government Library"}, "identifiers": {}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780739763872"], "isbn_10": ["0739763873"], "publish_date": "January 8, 2006", "oclc_numbers": ["150374463"], "works": [{"key": "/works/OL8425961W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10663674M 3 2010-12-30T19:17:50.908275 {"publishers": ["Intl Business Pubns USA"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-12-30T19:17:50.908275"}, "latest_revision": 3, "key": "/books/OL10663674M", "authors": [{"key": "/authors/OL2812551A"}], "subjects": ["Exports & Imports", "International - General", "Investments & Securities - General", "Business & Economics", "Business/Economics"], "edition_name": "3rd edition", "languages": [{"key": "/languages/eng"}], "classifications": {}, "title": "Guyana Investment and Business Guide", "notes": {"type": "/type/text", "value": "World Spy Guide Library"}, "identifiers": {}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780739769263"], "isbn_10": ["073976926X"], "publish_date": "May 2001", "works": [{"key": "/works/OL8425709W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10663738M 3 2010-04-13T06:12:21.610089 {"publishers": ["International Business Publications, USA"], "physical_format": "Paperback", "subtitle": "A \"Spy\" Guide (World \"Spy\" Guide Library)", "key": "/books/OL10663738M", "title": "Austria", "covers": [2572117], "isbn_13": ["9780739770092"], "isbn_10": ["0739770098"], "latest_revision": 3, "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:12:21.610089"}, "authors": [{"key": "/authors/OL2812551A"}], "works": [{"key": "/works/OL8430034W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10663882M 3 2010-04-13T06:12:21.610089 {"publishers": ["International Business Publications, USA"], "physical_format": "Paperback", "subtitle": "A \"Spy\" Guide (World \"Spy\" Guide Library)", "key": "/books/OL10663882M", "title": "St. Pierre & Miquelon", "covers": [2572248], "isbn_13": ["9780739772195"], "isbn_10": ["0739772198"], "latest_revision": 3, "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:12:21.610089"}, "authors": [{"key": "/authors/OL2812551A"}], "works": [{"key": "/works/OL8429952W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10664422M 4 2010-12-30T19:01:08.127001 {"publishers": ["Intl Business Pubns USA"], "covers": [2572327], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-12-30T19:01:08.127001"}, "latest_revision": 4, "key": "/books/OL10664422M", "authors": [{"key": "/authors/OL2812551A"}], "subjects": ["Development - Economic Development", "Government & Business", "International - General", "Business & Economics", "Business/Economics"], "edition_name": "3rd Study edition", "languages": [{"key": "/languages/eng"}], "classifications": {}, "title": "Saint Lucia", "notes": {"type": "/type/text", "value": "World Spy Guide Library"}, "identifiers": {}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780739779644"], "isbn_10": ["0739779648"], "publish_date": "May 2001", "works": [{"key": "/works/OL8427863W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10664540M 3 2010-12-19T06:45:59.966046 {"publishers": ["Intl Business Pubns USA"], "weight": "1.4 pounds", "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-12-19T06:45:59.966046"}, "latest_revision": 3, "key": "/books/OL10664540M", "authors": [{"key": "/authors/OL2812551A"}], "subjects": ["Exports & Imports", "Government & Business", "International - General", "Business & Economics", "Business/Economics"], "edition_name": "2nd edition", "languages": [{"key": "/languages/eng"}], "classifications": {}, "title": "Oman Business Intelligence Report", "notes": {"type": "/type/text", "value": "World Offshore Investment and Business Library"}, "identifiers": {}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780739781524"], "isbn_10": ["0739781529"], "publish_date": "May 2001", "works": [{"key": "/works/OL8427350W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.9 x 8.3 x 0.8 inches", "revision": 3}
+/type/edition /books/OL10664577M 2 2009-12-15T00:52:10.616884 {"publishers": ["Intl Business Pubns USA"], "weight": "1.8 pounds", "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:52:10.616884"}, "latest_revision": 2, "key": "/books/OL10664577M", "authors": [{"key": "/authors/OL2812551A"}], "subjects": ["Exports & Imports", "Government & Business", "International - General", "Business & Economics", "Business/Economics"], "edition_name": "2nd edition", "title": "Ukraine Business Intelligence Report (Us Regional Investment & Business Library)", "isbn_13": ["9780739782026"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0739782029"], "publish_date": "May 2001", "works": [{"key": "/works/OL8428712W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.8 x 8.3 x 0.8 inches", "revision": 2}
+/type/edition /books/OL1066510M 3 2020-11-18T04:15:25.732394 {"publishers": ["G\u0332h\u0332a\u0304lib Pablisharz", "Holsail Ejant\u0323, al-Fais\u0323al"], "description": {"type": "/type/text", "value": "Collected works of a noted Pakistani writer and humorist."}, "lc_classifications": ["MLCMA 93/01036 (P)"], "latest_revision": 3, "key": "/books/OL1066510M", "authors": [{"key": "/authors/OL8522A"}], "publish_places": ["La\u0304haur"], "languages": [{"key": "/languages/urd"}], "pagination": "224, 336, 232 p. :", "source_records": ["marc:marc_records_scriblio_net/part24.dat:31317164:715", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:102664613:734"], "title": "Kulliyya\u0304t-i Karnal Muh\u0323ammad K\u0332h\u0332a\u0304n\u0332.", "lccn": ["93930181"], "notes": {"type": "/type/text", "value": "In Urdu."}, "number_of_pages": 336, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "edition_name": "1. aid\u0323i\u0304shan.", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T04:15:25.732394"}, "publish_date": "1993", "publish_country": "pk ", "work_title": ["Works."], "works": [{"key": "/works/OL356744W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10665194M 4 2010-12-24T04:51:22.803825 {"publishers": ["International Business Publications, USA"], "identifiers": {}, "weight": "1.6 pounds", "covers": [2572388], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-12-24T04:51:22.803825"}, "latest_revision": 4, "key": "/books/OL10665194M", "authors": [{"key": "/authors/OL2812551A"}], "subjects": ["International business", "International trade", "Reference works", "Business & Economics", "Business / Economics / Finance", "Business/Economics", "Europe - Eastern", "International - General", "Reference - Directories", "Exports & Imports"], "edition_name": "2nd edition", "languages": [{"key": "/languages/eng"}], "classifications": {}, "title": "South Ukraine Business and Industrial Directory", "notes": {"type": "/type/text", "value": "World Business Law Handbook Library"}, "number_of_pages": 380, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780739791639"], "isbn_10": ["073979163X"], "publish_date": "May 2001", "works": [{"key": "/works/OL8428170W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.7 x 8.4 x 0.8 inches", "revision": 4}
+/type/edition /books/OL10665306M 4 2011-04-30T04:18:07.749335 {"publishers": ["Intl Business Pubns USA"], "identifiers": {}, "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-30T04:18:07.749335"}, "latest_revision": 4, "key": "/books/OL10665306M", "authors": [{"key": "/authors/OL2812551A"}], "subjects": ["Exports & Imports", "Industries - General", "International - General", "Business & Economics", "Business/Economics"], "edition_name": "2nd edition", "languages": [{"key": "/languages/eng"}], "classifications": {}, "title": "Bermuda Industrial And Business Directory", "notes": {"type": "/type/text", "value": "World Business, Investment and Government Library"}, "number_of_pages": 350, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780739797839"], "isbn_10": ["0739797832"], "publish_date": "January 2006", "oclc_numbers": ["150337637"], "works": [{"key": "/works/OL8424285W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10665346M 4 2011-04-26T17:37:07.687856 {"publishers": ["Intl Business Pubns USA"], "identifiers": {}, "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-26T17:37:07.687856"}, "latest_revision": 4, "key": "/books/OL10665346M", "authors": [{"key": "/authors/OL2812551A"}], "subjects": ["Exports & Imports", "Investments & Securities - General", "Property", "Business & Economics", "Business/Economics"], "edition_name": "1st edition", "languages": [{"key": "/languages/eng"}], "classifications": {}, "title": "Uganda Privatization Programs And Regulations Handbook", "notes": {"type": "/type/text", "value": "World Business, Investment and Government Library"}, "number_of_pages": 350, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780739798348"], "isbn_10": ["0739798340"], "publish_date": "March 2005", "oclc_numbers": ["150345954"], "works": [{"key": "/works/OL8428670W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10665649M 3 2010-12-17T06:43:29.230622 {"publishers": ["Steck Vaughn"], "weight": "4.8 ounces", "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-12-17T06:43:29.230622"}, "latest_revision": 3, "key": "/books/OL10665649M", "authors": [{"key": "/authors/OL2812577A"}], "subjects": ["Teaching Methods & Materials - Reading", "Education / Teaching", "Textbooks"], "isbn_13": ["9780739810859"], "classifications": {}, "title": "SS Reading Leap C", "notes": {"type": "/type/text", "value": "Soaring Scores"}, "identifiers": {}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0739810855"], "publish_date": "November 1999", "works": [{"key": "/works/OL8432652W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "11 x 8.2 x 0.1 inches", "revision": 3}
+/type/edition /books/OL1066609M 3 2020-11-18T04:16:40.101500 {"publishers": ["Maktabah-yi Tabs\u0323irah"], "subtitle": "tah\u0323ri\u0304k-i k\u0332h\u0332atm-i nubuvvat ke muk\u0332h\u0332talif abva\u0304b", "description": {"type": "/type/text", "value": "Historical study of the Ahmadiyyah Sect, linking its origins to Musailimah, 7th century, the first impersonating prophet; includes a study of Majlis-i Ah\u0323ra\u0304r, a religio-political party of South Asia."}, "lc_classifications": ["BP195.A5 J34 1993"], "latest_revision": 3, "key": "/books/OL1066609M", "authors": [{"key": "/authors/OL13095A"}], "publish_places": ["Lahaur"], "languages": [{"key": "/languages/urd"}], "pagination": "v. <1- > ;", "source_records": ["marc:marc_records_scriblio_net/part24.dat:31401763:867", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:102751142:889"], "title": "Musailimah Kazza\u0304b se Dajja\u0304l-i Qa\u0304diya\u0304n tak", "lccn": ["93930349"], "notes": {"type": "/type/text", "value": "In Urdu."}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "edition_name": "Isha\u0304\u02bbat 1.", "subjects": ["Ahmadiyya -- Controversial literature"], "publish_date": "1993", "publish_country": "pk ", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T04:16:40.101500"}, "by_statement": "Ja\u0304nba\u0304z Mirza\u0304.", "works": [{"key": "/works/OL381893W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10666118M 2 2009-12-15T00:52:11.664019 {"physical_format": "Paperback", "weight": "3.5 ounces", "title": "Soaring Scores Leap Math Exit Level", "isbn_10": ["0739823183"], "publishers": ["Steck Vaughn"], "isbn_13": ["9780739823187"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:52:11.664019"}, "publish_date": "September 1999", "key": "/books/OL10666118M", "authors": [{"key": "/authors/OL2812577A"}], "latest_revision": 2, "subjects": ["General", "Education / Teaching", "Textbooks"], "works": [{"key": "/works/OL8432527W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.8 x 6.5 x 0.1 inches", "revision": 2}
+/type/edition /books/OL10666256M 2 2009-12-15T00:52:11.664019 {"physical_format": "Library Binding", "weight": "3.4 pounds", "title": "Spinning Through Space", "isbn_10": ["0739827413"], "publishers": ["Raintree Pub"], "isbn_13": ["9780739827413"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:52:11.664019"}, "publish_date": "October 1999", "key": "/books/OL10666256M", "authors": [{"key": "/authors/OL246777A"}], "latest_revision": 2, "subjects": ["Science & Nature - General", "Juvenile Nonfiction", "Children: Grades 2-3"], "works": [{"key": "/works/OL2038656W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "11 x 9 x 1.2 inches", "revision": 2}
+/type/edition /books/OL10666306M 2 2009-12-15T00:52:11.664019 {"physical_format": "Paperback", "weight": "2.4 ounces", "title": "Rebus Puzzles Grade 1 (Rebus Puzzles)", "isbn_10": ["0739829432"], "publishers": ["Steck Vaughn"], "isbn_13": ["9780739829431"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:52:11.664019"}, "publish_date": "January 2000", "key": "/books/OL10666306M", "authors": [{"key": "/authors/OL2812577A"}], "latest_revision": 2, "subjects": ["Teaching Methods & Materials - Reading", "Textbooks", "Education / Teaching"], "works": [{"key": "/works/OL8432418W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "11.1 x 8.2 x 0.1 inches", "revision": 2}
+/type/edition /books/OL10667985M 6 2022-10-18T10:25:04.448687 {"publishers": ["Morgan Quitno Corporation"], "physical_format": "Spiral-bound", "weight": "4.8 ounces", "title": "Washington in Perspective 2006 (Washington in Perspective)", "number_of_pages": 26, "isbn_13": ["9780740118968"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["074011896X"], "publish_date": "February 28, 2006", "key": "/books/OL10667985M", "oclc_numbers": ["150329363"], "works": [{"key": "/works/OL8434805W"}], "type": {"key": "/type/edition"}, "subjects": ["Government - State & Provincial", "Statistics", "Development - Economic Development", "Yearbooks & Annuals", "Reference", "Politics / Current Events"], "physical_dimensions": "10.9 x 8.5 x 0.3 inches", "source_records": ["bwb:9780740118968"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T10:25:04.448687"}}
+/type/edition /books/OL10668162M 3 2011-04-27T11:01:25.143110 {"publishers": ["Alpha Omega Publications (AZ)"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T11:01:25.143110"}, "title": "Design Personality (Lifepac Electives Art)", "identifiers": {"librarything": ["9281949"]}, "isbn_13": ["9780740301650"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0740301659"], "publish_date": "March 2001", "key": "/books/OL10668162M", "latest_revision": 3, "oclc_numbers": ["70061462"], "type": {"key": "/type/edition"}, "subjects": ["Home Schooling", "Religion - Christian Education - Home Schooling"], "revision": 3}
+/type/edition /books/OL106683M 4 2020-12-02T09:08:39.221849 {"number_of_pages": 128, "subtitle": "relatos", "lc_classifications": ["MLCS 99/07932 (P)"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part28.utf8:95728958:475"], "title": "El arca\u0301ngel", "languages": [{"key": "/languages/spa"}], "publish_country": "ve ", "by_statement": "Oscar Sambrano Urdaneta.", "type": {"key": "/type/edition"}, "publishers": ["Planeta"], "key": "/books/OL106683M", "authors": [{"key": "/authors/OL71567A"}], "publish_places": ["Caracas, Venezuela"], "pagination": "128 p. ;", "lccn": ["99224453"], "identifiers": {"goodreads": ["1754373"]}, "isbn_10": ["9802712809"], "publish_date": "1998", "works": [{"key": "/works/OL835762W"}], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-02T09:08:39.221849"}}
+/type/edition /books/OL10668439M 6 2021-12-26T21:51:35.811266 {"publishers": ["ETA/Cuisenaire"], "number_of_pages": 23, "title": "SOS on the Inca Trail", "type": {"key": "/type/edition"}, "identifiers": {"goodreads": ["7251220"]}, "isbn_13": ["9780740635601"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0740635603"], "publish_date": "January 2005", "key": "/books/OL10668439M", "authors": [{"key": "/authors/OL1476165A"}], "works": [{"key": "/works/OL5952008W"}], "physical_format": "Hardcover", "source_records": ["bwb:9780740635601"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-26T21:51:35.811266"}}
+/type/edition /books/OL10668484M 4 2022-12-10T05:10:40.066420 {"publishers": ["ETA/Cuisenaire"], "physical_format": "Hardcover", "title": "Escape from the Tower", "number_of_pages": 32, "isbn_13": ["9780740638138"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0740638130"], "publish_date": "January 2005", "key": "/books/OL10668484M", "authors": [{"key": "/authors/OL429215A"}], "oclc_numbers": ["137335377"], "works": [{"key": "/works/OL2853173W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:P6-AJV-600"], "source_records": ["promise:bwb_daily_pallets_2020-07-07"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T05:10:40.066420"}}
+/type/edition /books/OL10668530M 2 2009-12-15T00:52:15.064371 {"physical_format": "Unknown Binding", "title": "Sarah Lugg Bookmark", "isbn_10": ["0740701541"], "publishers": ["Andrews McMeel Publishing"], "isbn_13": ["9780740701542"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:52:15.064371"}, "publish_date": "July 2001", "key": "/books/OL10668530M", "authors": [{"key": "/authors/OL1520886A"}], "latest_revision": 2, "subjects": ["Non-Classifiable", "Book Accessories"], "works": [{"key": "/works/OL6043797W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10668997M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Andrews McMeel Publishing"], "title": "Friends,Tried and True", "isbn_13": ["9780740719806"], "isbn_10": ["0740719807"], "publish_date": "August 27, 2001", "key": "/books/OL10668997M", "type": {"key": "/type/edition"}, "subjects": ["Non-Classifiable", "Novelty"], "revision": 1}
+/type/edition /books/OL10669039M 1 2008-04-30T09:38:13.731961 {"physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Andrews & McMeel"], "title": "Calvin & Hobbes Corrugated Flo", "isbn_13": ["9780740721755"], "isbn_10": ["0740721755"], "publish_date": "November 1, 2001", "key": "/books/OL10669039M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10669518M 4 2011-04-29T11:22:35.936097 {"publishers": ["Andrews McMeel Publishing"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2011-04-29T11:22:35.936097"}, "title": "Mother's Keepsake Journal, A", "identifiers": {"goodreads": ["6520704"]}, "isbn_13": ["9780740754159"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Spiral-bound", "isbn_10": ["0740754157"], "publish_date": "2005", "key": "/books/OL10669518M", "latest_revision": 4, "oclc_numbers": ["213303872"], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10669905M 3 2011-04-27T16:10:59.726296 {"publishers": ["Gemstar"], "physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T16:10:59.726296"}, "title": "Henry Clay's remarks (EBook classics)", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780741005281"], "edition_name": "eBook ed edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["074100528X"], "publish_date": "2000", "key": "/books/OL10669905M", "authors": [{"key": "/authors/OL2839478A"}], "latest_revision": 3, "oclc_numbers": ["47196426"], "works": [{"key": "/works/OL8497203W"}], "type": {"key": "/type/edition"}, "subjects": ["1815-1861", "History", "United States"], "revision": 3}
+/type/edition /books/OL10670226M 5 2010-04-24T18:06:16.811772 {"publishers": ["Buy Books on the web.com"], "identifiers": {"goodreads": ["5338739"]}, "weight": "8.8 ounces", "title": "Promises of the Heart", "type": {"key": "/type/edition"}, "number_of_pages": 198, "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:06:16.811772"}, "covers": [2574048], "isbn_13": ["9780741403964"], "isbn_10": ["074140396X"], "publish_date": "October 2002", "key": "/books/OL10670226M", "authors": [{"key": "/authors/OL3482412A"}], "latest_revision": 5, "works": [{"key": "/works/OL9456050W"}], "physical_format": "Paperback", "physical_dimensions": "8.1 x 5.4 x 0.6 inches", "revision": 5}
+/type/edition /books/OL10670423M 5 2010-04-24T18:06:16.811772 {"publishers": ["Infinity Publishing.com"], "identifiers": {"goodreads": ["591662"]}, "subtitle": "the Second Pharos", "weight": "7.2 ounces", "title": "Revenant", "number_of_pages": 170, "isbn_13": ["9780741406767"], "covers": [2574187], "physical_format": "Paperback", "authors": [{"key": "/authors/OL3482540A"}], "isbn_10": ["0741406764"], "latest_revision": 5, "key": "/books/OL10670423M", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:06:16.811772"}, "publish_date": "August 17, 2001", "works": [{"key": "/works/OL9456211W"}], "type": {"key": "/type/edition"}, "subjects": ["Fiction", "Occult"], "physical_dimensions": "8.2 x 5.4 x 0.5 inches", "revision": 5}
+/type/edition /books/OL10670451M 3 2010-04-13T06:12:21.610089 {"publishers": ["Infinity Publishing.com"], "physical_format": "Paperback", "key": "/books/OL10670451M", "weight": "8 ounces", "title": "The Prose Professional", "number_of_pages": 212, "covers": [2574215], "isbn_13": ["9780741407160"], "isbn_10": ["0741407167"], "publish_date": "October 10, 2001", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:12:21.610089"}, "authors": [{"key": "/authors/OL1007885A"}], "latest_revision": 3, "works": [{"key": "/works/OL4790925W"}], "type": {"key": "/type/edition"}, "subjects": ["Language"], "physical_dimensions": "8.2 x 5.3 x 0.5 inches", "revision": 3}
+/type/edition /books/OL10670938M 3 2010-04-13T06:13:13.017999 {"physical_format": "Paperback", "subtitle": "An Alphabetical Index of International Arabian Show Results 1980-1989", "key": "/books/OL10670938M", "title": "Arabian Elite", "type": {"key": "/type/edition"}, "number_of_pages": 220, "covers": [2574680], "isbn_13": ["9780741415240"], "isbn_10": ["0741415240"], "latest_revision": 3, "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:13:13.017999"}, "authors": [{"key": "/authors/OL3482876A"}], "works": [{"key": "/works/OL9456630W"}], "contributions": ["Infinity Publishing (Publisher)"], "revision": 3}
+/type/edition /books/OL10671157M 5 2020-12-11T02:49:17.752997 {"publishers": ["Infinity Publishing"], "subtitle": "A Guide Book for the Fitness Professional", "weight": "8 ounces", "covers": [2574895], "physical_format": "Paperback", "key": "/books/OL10671157M", "authors": [{"key": "/authors/OL2640827A"}], "subjects": ["Diets - General", "Consumer Health"], "languages": [{"key": "/languages/eng"}], "title": "Nutrition Essentials", "number_of_pages": 90, "isbn_13": ["9780741418920"], "isbn_10": ["0741418924"], "publish_date": "March 9, 2004", "oclc_numbers": ["56420371"], "works": [{"key": "/works/OL7914753W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.6 x 8 x 0.3 inches", "lccn": ["2004556353"], "lc_classifications": ["RA784 .C25 2004"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part32.utf8:98383996:694"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-11T02:49:17.752997"}}
+/type/edition /books/OL10671896M 4 2011-04-26T01:54:52.267730 {"publishers": ["Infinity Publishing"], "weight": "1.6 ounces", "covers": [2575622], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-26T01:54:52.267730"}, "latest_revision": 4, "key": "/books/OL10671896M", "authors": [{"key": "/authors/OL3483442A"}], "subjects": ["Engineering - Civil", "Technology", "Science/Mathematics"], "languages": [{"key": "/languages/eng"}], "title": "HP41 Programmable Solutions for Structural Engineering Systems", "number_of_pages": 76, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780741433350"], "isbn_10": ["0741433354"], "publish_date": "July 14, 2006", "oclc_numbers": ["150378441"], "works": [{"key": "/works/OL9457283W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.6 x 8.1 x 0.2 inches", "revision": 4}
+/type/edition /books/OL10671929M 7 2011-04-30T05:15:32.083864 {"publishers": ["Infinity Publishing"], "number_of_pages": 228, "subtitle": "The Life and Work of Eve Kerwin, White Buffalo Woman", "weight": "10.4 ounces", "covers": [2575655], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-30T05:15:32.083864"}, "latest_revision": 7, "key": "/books/OL10671929M", "authors": [{"key": "/authors/OL3483462A"}], "contributions": ["Ernie Pugliese (Collaborator)"], "subjects": ["Biographies & Memoirs / Memoirs", "Women", "Biography & Autobiography", "Biography/Autobiography"], "isbn_13": ["9780741434005"], "title": "The Awakening", "identifiers": {"librarything": ["8712702"], "goodreads": ["1166593"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0741434008"], "publish_date": "October 31, 2006", "oclc_numbers": ["144219617"], "works": [{"key": "/works/OL9457317W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.1 x 5.4 x 0.6 inches", "revision": 7}
+/type/edition /books/OL10671997M 6 2020-12-17T12:29:38.616062 {"publishers": ["Infinity Publishing"], "identifiers": {"goodreads": ["237415"]}, "subtitle": "Over 100 Years", "weight": "1.6 pounds", "covers": [2575723], "physical_format": "Paperback", "key": "/books/OL10671997M", "authors": [{"key": "/authors/OL1437871A"}, {"key": "/authors/OL3483503A"}], "subjects": ["History / United States", "Historiography", "History", "African Americans", "Biography", "California", "Long Beach", "History: World"], "isbn_13": ["9780741435149"], "title": "The Heritage of African-Americans in Long Beach", "number_of_pages": 308, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0741435144"], "publish_date": "January 12, 2007", "oclc_numbers": ["156975431"], "type": {"key": "/type/edition"}, "physical_dimensions": "10.4 x 8.1 x 0.8 inches", "works": [{"key": "/works/OL24063729W"}], "lccn": ["2007274921"], "lc_classifications": ["F869.L7 H47 2006"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part34.utf8:173618041:1211"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-17T12:29:38.616062"}}
+/type/edition /books/OL10672502M 4 2011-04-27T04:21:27.365517 {"publishers": ["Infinity Publishing"], "weight": "3.2 ounces", "covers": [2576219], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T04:21:27.365517"}, "latest_revision": 4, "key": "/books/OL10672502M", "authors": [{"key": "/authors/OL3483835A"}], "subjects": ["Health, Mind & Body", "Self-Help", "Personal Growth - Happiness"], "languages": [{"key": "/languages/eng"}], "title": "Diary of a Wannabe Gardener", "number_of_pages": 76, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780741441546"], "isbn_10": ["0741441543"], "publish_date": "August 9, 2007", "oclc_numbers": ["166391027"], "works": [{"key": "/works/OL9457708W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.1 x 5.4 x 0.2 inches", "revision": 4}
+/type/edition /books/OL10672623M 6 2021-11-02T06:08:10.696842 {"publishers": ["Infinity Pub"], "physical_format": "Paperback", "title": "Old Secrets Never Die", "number_of_pages": 220, "isbn_13": ["9780741443489"], "covers": [2576336], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0741443481"], "publish_date": "November 13, 2007", "key": "/books/OL10672623M", "authors": [{"key": "/authors/OL3483907A"}, {"key": "/authors/OL3483908A"}], "oclc_numbers": ["181603561"], "type": {"key": "/type/edition"}, "subjects": ["Mystery & Detective - Women Sleuths", "Fiction", "Mystery/Suspense"], "identifiers": {"goodreads": ["2799887"]}, "works": [{"key": "/works/OL26294818W"}], "source_records": ["bwb:9780741443489"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-11-02T06:08:10.696842"}}
+/type/edition /books/OL10673059M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Havoc Publishing"], "title": "A Good Friend Frame", "isbn_13": ["9780741676191"], "isbn_10": ["0741676192"], "publish_date": "December 2000", "key": "/books/OL10673059M", "type": {"key": "/type/edition"}, "subjects": ["Gifts"], "revision": 1}
+/type/edition /books/OL10673273M 3 2010-04-13T06:13:13.017999 {"publishers": ["Icon Group International, Inc."], "subtitle": "A Strategic Entry Report, 1998", "title": "Highway Construction Industry in China", "isbn_10": ["0741801442"], "type": {"key": "/type/edition"}, "number_of_pages": 194, "isbn_13": ["9780741801449"], "covers": [2576523], "edition_name": "1998 edition", "physical_format": "Spiral-bound", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:13:13.017999"}, "latest_revision": 3, "key": "/books/OL10673273M", "authors": [{"key": "/authors/OL3484002A"}], "publish_date": "September 30, 2005", "works": [{"key": "/works/OL9458498W"}], "contributions": ["Inc Icon Group International (Other Contributor)"], "subjects": ["Engineering - Civil", "Business & Economics / General", "Technology & Industrial Arts"], "revision": 3}
+/type/edition /books/OL10673292M 3 2010-04-13T06:13:13.017999 {"publishers": ["Icon Group International, Inc."], "languages": [{"key": "/languages/eng"}], "subtitle": "A Strategic Entry Report, 1997 (Strategic Planning Series)", "title": "Dental Equipment and Supplies in Canada", "isbn_10": ["0741801639"], "type": {"key": "/type/edition"}, "number_of_pages": 133, "isbn_13": ["9780741801630"], "covers": [2576542], "edition_name": "1997 edition", "physical_format": "Spiral-bound", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:13:13.017999"}, "latest_revision": 3, "key": "/books/OL10673292M", "authors": [{"key": "/authors/OL3484007A"}], "publish_date": "September 30, 2005", "works": [{"key": "/works/OL9458698W"}], "contributions": ["Inc Icon Group International (Other Contributor)"], "subjects": ["Dentistry - General", "Business & Economics / General", "Medical / Nursing"], "revision": 3}
+/type/edition /books/OL10673381M 3 2010-04-13T06:13:13.017999 {"publishers": ["Icon Group International, Inc."], "subtitle": "A Strategic Entry Report, 1997 (Strategic Planning Series)", "title": "Medical Equipment in Australia", "isbn_10": ["0741802538"], "type": {"key": "/type/edition"}, "number_of_pages": 134, "isbn_13": ["9780741802538"], "covers": [2576631], "edition_name": "1997 edition", "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:13:13.017999"}, "latest_revision": 3, "key": "/books/OL10673381M", "authors": [{"key": "/authors/OL3484007A"}], "publish_date": "September 30, 2005", "works": [{"key": "/works/OL9458817W"}], "contributions": ["Inc Icon Group International (Other Contributor)"], "subjects": ["General", "Business & Economics / General", "Medical / Nursing"], "revision": 3}
+/type/edition /books/OL10673478M 3 2010-04-13T06:13:13.017999 {"publishers": ["Icon Group International, Inc."], "subtitle": "A Strategic Entry Report, 1998", "title": "Sporting Goods in Poland", "isbn_10": ["074180350X"], "type": {"key": "/type/edition"}, "number_of_pages": 193, "isbn_13": ["9780741803504"], "covers": [2576728], "edition_name": "1998 edition", "physical_format": "Spiral-bound", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:13:13.017999"}, "latest_revision": 3, "key": "/books/OL10673478M", "authors": [{"key": "/authors/OL3484001A"}], "publish_date": "September 30, 2005", "works": [{"key": "/works/OL9458405W"}], "contributions": ["Inc Icon Group International (Other Contributor)"], "subjects": ["General", "Business & Economics / General", "Sports & Recreation"], "revision": 3}
+/type/edition /books/OL10674247M 3 2010-04-13T06:13:13.017999 {"publishers": ["Icon Group International, Inc."], "subtitle": "A Strategic Entry Report, 1996 (Strategic Planning Series)", "title": "The Personal Computer Market in Ukraine", "isbn_10": ["0741811200"], "type": {"key": "/type/edition"}, "number_of_pages": 181, "isbn_13": ["9780741811202"], "covers": [2577329], "edition_name": "1996 edition", "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:13:13.017999"}, "latest_revision": 3, "key": "/books/OL10674247M", "authors": [{"key": "/authors/OL3483919A"}], "publish_date": "September 30, 2005", "works": [{"key": "/works/OL9457922W"}], "contributions": ["Inc Icon Group International (Other Contributor)"], "subjects": ["Business & Economics / General"], "revision": 3}
+/type/edition /books/OL10674429M 3 2010-04-13T06:13:13.017999 {"publishers": ["Icon Group International, Inc."], "subtitle": "A Strategic Entry Report, 1996 (Strategic Planning Series)", "title": "Electromedical Equipment in Germany", "isbn_10": ["0741813025"], "type": {"key": "/type/edition"}, "number_of_pages": 92, "isbn_13": ["9780741813022"], "covers": [2577511], "edition_name": "1996 edition", "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:13:13.017999"}, "latest_revision": 3, "key": "/books/OL10674429M", "authors": [{"key": "/authors/OL3484007A"}], "publish_date": "September 30, 2005", "works": [{"key": "/works/OL9458712W"}], "contributions": ["Inc Icon Group International (Other Contributor)"], "subjects": ["Business & Economics / General"], "revision": 3}
+/type/edition /books/OL10675035M 3 2010-04-13T06:13:13.017999 {"publishers": ["Icon Group International, Inc."], "subtitle": "A Strategic Entry Report, 2000 (Strategic Planning Series)", "key": "/books/OL10675035M", "title": "Gas Transmission Equipment and Compressors in Australia", "number_of_pages": 134, "isbn_13": ["9780741821737"], "covers": [2578091], "edition_name": "2000 edition", "physical_format": "Ring-bound", "isbn_10": ["0741821737"], "publish_date": "September 30, 2005", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:13:13.017999"}, "authors": [{"key": "/authors/OL3484005A"}], "latest_revision": 3, "works": [{"key": "/works/OL9458580W"}], "type": {"key": "/type/edition"}, "subjects": ["Business & Economics / General"], "revision": 3}
+/type/edition /books/OL1067559M 3 2020-11-18T04:28:35.626286 {"publishers": ["Tha\u0300nh pho\u0301\u0302 Ho\u0300\u0302 Chi\u0301 Minh"], "subject_place": ["Vietnam"], "lc_classifications": ["ML345.V5 L88 1988"], "latest_revision": 3, "key": "/books/OL1067559M", "authors": [{"key": "/authors/OL570564A"}], "publish_places": ["[TP. Ho\u0300\u0302 Chi\u0301 Minh]"], "pagination": "359 p. ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:103721666:651"], "title": "A\u0302m nha\u0323c va\u0300 cuo\u0323\u0302c so\u0301\u0302ng", "lccn": ["93940631"], "notes": {"type": "/type/text", "value": "In Vietnamese.\nIncludes bibliographical references."}, "number_of_pages": 359, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/vie"}], "subjects": ["Music -- Vietnam -- History and criticism."], "publish_date": "1988", "publish_country": "vm ", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T04:28:35.626286"}, "by_statement": "L\u01b0u H\u01b0\u0303u Ph\u01b0\u01a1\u0301c.", "works": [{"key": "/works/OL3441206W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10676361M 8 2022-12-10T03:13:24.044132 {"publishers": ["Hodder Arnold"], "number_of_pages": 360, "weight": "2.7 pounds", "covers": [2401356], "physical_format": "Paperback", "key": "/books/OL10676361M", "authors": [{"key": "/authors/OL2703052A"}, {"key": "/authors/OL3484607A"}], "subjects": ["Child welfare", "For NVQ / SVQ 2", "Child Care/Parenting"], "edition_name": "2Rev Ed edition", "title": "An Introduction to Childcare and Education", "identifiers": {"goodreads": ["2871977"], "librarything": ["2956027"], "amazon": [""]}, "isbn_13": ["9780340813980"], "isbn_10": ["0340813989"], "publish_date": "April 30, 2004", "type": {"key": "/type/edition"}, "physical_dimensions": "10.8 x 8.4 x 0.9 inches", "works": [{"key": "/works/OL24834044W"}], "ocaid": "introductiontoch0000megg", "lc_classifications": ["LB1139.3.G7 M44 2004eb", "HQ778.5"], "source_records": ["ia:introductiontoch0000megg", "bwb:9780340813980", "promise:bwb_daily_pallets_2020-07-30"], "local_id": ["urn:bwbsku:KN-539-648"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T03:13:24.044132"}}
+/type/edition /books/OL10676521M 9 2022-12-09T18:25:33.707930 {"publishers": ["Hodder Children's Books"], "identifiers": {"goodreads": ["3218505"]}, "covers": [2401439], "physical_format": "Paperback", "key": "/books/OL10676521M", "authors": [{"key": "/authors/OL3347917A"}], "contributions": ["Martin Remphry (Illustrator)"], "subjects": ["School stories"], "title": "No Surrender (St.Misbehaviour's)", "number_of_pages": 128, "isbn_13": ["9780340817292"], "isbn_10": ["0340817291"], "publish_date": "November 15, 2001", "oclc_numbers": ["47725794"], "works": [{"key": "/works/OL9295481W"}], "type": {"key": "/type/edition"}, "ocaid": "nosurrender0000murh", "source_records": ["ia:nosurrender0000murh", "bwb:9780340817292", "promise:bwb_daily_pallets_2020-10-21"], "local_id": ["urn:bwbsku:KO-591-308"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T18:25:33.707930"}}
+/type/edition /books/OL10676779M 4 2010-08-17T03:36:09.471978 {"publishers": ["Sceptre"], "identifiers": {"librarything": ["4034908"]}, "last_modified": {"type": "/type/datetime", "value": "2010-08-17T03:36:09.471978"}, "title": "Pop Life", "number_of_pages": 232, "isbn_13": ["9780340826331"], "covers": [2401756, 205645], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0340826339"], "publish_date": "October 17, 2002", "key": "/books/OL10676779M", "authors": [{"key": "/authors/OL3484689A"}], "latest_revision": 4, "works": [{"key": "/works/OL9465368W"}], "type": {"key": "/type/edition"}, "subjects": ["Popular culture", "Rock & pop", "Music"], "revision": 4}
+/type/edition /books/OL10677132M 8 2022-12-05T00:45:57.978615 {"publishers": ["Hodder & Stoughton Ltd"], "number_of_pages": 432, "weight": "1.5 pounds", "covers": [2402185], "physical_format": "Hardcover", "key": "/books/OL10677132M", "authors": [{"key": "/authors/OL536567A"}], "subjects": ["Sagas", "Fiction"], "title": "Pride of Lancashire", "identifiers": {"librarything": ["3907903"], "goodreads": ["1501726"]}, "isbn_13": ["9780340840719"], "isbn_10": ["0340840714"], "publish_date": "August 1, 2005", "oclc_numbers": ["62224270"], "works": [{"key": "/works/OL3283938W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.2 x 6.1 x 1.6 inches", "local_id": ["urn:bwbsku:KR-004-013"], "source_records": ["promise:bwb_daily_pallets_2022-07-04"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-05T00:45:57.978615"}}
+/type/edition /books/OL10677214M 6 2022-05-25T00:33:25.082160 {"publishers": ["Teach Yourself Books"], "physical_format": "Audio CD", "title": "Beginner's Dutch (Teach Yourself)", "contributions": ["Dennis Strik (Editor)"], "identifiers": {"librarything": ["811333"], "goodreads": ["1345844"]}, "edition_name": "2Rev Ed edition", "isbn_13": ["9780340844885"], "isbn_10": ["0340844884"], "publish_date": "March 29, 2002", "key": "/books/OL10677214M", "authors": [{"key": "/authors/OL2903545A"}, {"key": "/authors/OL1392926A"}, {"key": "/authors/OL3484755A"}], "oclc_numbers": ["66212646"], "type": {"key": "/type/edition"}, "subjects": ["Language learning: audio-visual & multimedia", "Language self-study & phrasebooks", "Dutch"], "works": [{"key": "/works/OL27777129W"}], "source_records": ["bwb:9780340844885"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T00:33:25.082160"}}
+/type/edition /books/OL10677330M 8 2022-05-25T00:31:41.237821 {"publishers": ["Hodder Murray"], "number_of_pages": 48, "subtitle": "Foundation Edition (Hodder History)", "weight": "6.4 ounces", "covers": [2402312], "physical_format": "Paperback", "key": "/books/OL10677330M", "authors": [{"key": "/authors/OL2072143A"}], "contributions": ["Martyn J. Whittock (Editor)"], "subjects": ["European history: BCE to c 500 CE", "BCE to c 500 CE", "History", "History: World", "Ancient Rome", "For National Curriculum Key Stage 3", "Ancient - Rome", "Study & Teaching"], "isbn_13": ["9780340846865"], "title": "Roman Empire", "identifiers": {"goodreads": ["1513679"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0340846860"], "publish_date": "October 30, 2002", "oclc_numbers": ["59482778"], "works": [{"key": "/works/OL7210473W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.6 x 8.2 x 0.2 inches", "source_records": ["bwb:9780340846865"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T00:31:41.237821"}}
+/type/edition /books/OL10677385M 6 2022-05-25T02:15:49.977886 {"publishers": ["Hodder Murray"], "weight": "12.6 ounces", "covers": [2402343], "physical_format": "Paperback", "key": "/books/OL10677385M", "authors": [{"key": "/authors/OL3484778A"}], "ocaid": "synopticskillsin0000home", "subjects": ["PHYSICS", "Designed / suitable for A & AS Level"], "source_records": ["ia:synopticskillsin0000home", "bwb:9780340847558"], "title": "Synoptic Skills in Advanced Physics", "number_of_pages": 128, "isbn_13": ["9780340847558"], "isbn_10": ["0340847557"], "publish_date": "May 31, 2002", "oclc_numbers": ["49394630"], "works": [{"key": "/works/OL9465491W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.5 x 7.2 x 0.4 inches", "lc_classifications": ["QC32"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T02:15:49.977886"}}
+/type/edition /books/OL10677508M 8 2022-12-09T15:58:54.458347 {"publishers": ["Hodder Headline"], "identifiers": {"librarything": ["3056022"]}, "weight": "1.4 ounces", "covers": [2402404], "physical_format": "Paperback", "key": "/books/OL10677508M", "authors": [{"key": "/authors/OL2925115A"}], "subjects": ["Customer services", "Reference", "Business / Economics / Finance", "Consumer Behavior - General", "Customer Service", "Business & Economics / Customer Service", "General"], "edition_name": "Reprint edition", "languages": [{"key": "/languages/eng"}], "title": "Customer Care in a Week (In a Week)", "number_of_pages": 96, "isbn_13": ["9780340849583"], "isbn_10": ["0340849584"], "publish_date": "March 1, 2003", "oclc_numbers": ["51272036"], "works": [{"key": "/works/OL8666944W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "7.6 x 5 x 0.5 inches", "ocaid": "customercareinwe0000well", "lc_classifications": ["HF5415.5 .W4318 2003", "HF5415.5"], "source_records": ["ia:customercareinwe0000well", "bwb:9780340849583", "promise:bwb_daily_pallets_2020-11-19"], "local_id": ["urn:bwbsku:KO-390-169"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T15:58:54.458347"}}
+/type/edition /books/OL10677514M 8 2022-12-13T04:30:29.013891 {"publishers": ["Hodder & Stoughton"], "number_of_pages": 96, "weight": "6.4 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0340849649"], "identifiers": {"goodreads": ["3185796"]}, "isbn_13": ["9780340849644"], "covers": [2402410], "edition_name": "2 edition", "physical_format": "Paperback", "key": "/books/OL10677514M", "authors": [{"key": "/authors/OL3154246A"}], "publish_date": "February 1, 2003", "title": "Successful Web Marketing in a Week (In a Week)", "works": [{"key": "/works/OL9036920W"}], "type": {"key": "/type/edition"}, "subjects": ["Business & Management", "Internet", "Sales & marketing", "Reference", "Business / Economics / Finance", "E-Commerce - Internet Marketing", "Marketing - General", "Business & Economics / E-Commerce / Internet Marketing", "INTERNET MARKETING", "General"], "physical_dimensions": "7.6 x 5 x 0.5 inches", "source_records": ["bwb:9780340849644", "promise:bwb_daily_pallets_2022-08-01", "ia:webmrketinginwee0000gaba"], "local_id": ["urn:bwbsku:KR-344-563"], "ocaid": "webmrketinginwee0000gaba", "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-13T04:30:29.013891"}}
+/type/edition /books/OL10678479M 6 2022-10-28T18:10:10.251971 {"publishers": ["Teach Yourself Books"], "number_of_pages": 350, "weight": "5 ounces", "covers": [2403116], "physical_format": "Audio Cassette", "key": "/books/OL10678479M", "authors": [{"key": "/authors/OL3475778A"}, {"key": "/authors/OL2637204A"}], "subjects": ["Language learning: audio-visual & multimedia", "Language self-study & phrasebooks", "Irish Gaelic"], "edition_name": "New Ed edition", "languages": [{"key": "/languages/eng"}], "title": "Teach Yourself Irish (Teach Yourself Languages)", "identifiers": {"goodreads": ["918343"]}, "isbn_13": ["9780340870761"], "isbn_10": ["0340870761"], "publish_date": "December 26, 2003", "oclc_numbers": ["54463520"], "type": {"key": "/type/edition"}, "physical_dimensions": "4.1 x 2.8 x 1.3 inches", "works": [{"key": "/works/OL29244307W"}], "source_records": ["amazon:0340870761"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-28T18:10:10.251971"}}
+/type/edition /books/OL10678533M 6 2022-12-10T01:15:15.554726 {"publishers": ["Hodder"], "physical_format": "Paperback", "title": "Livewire Investigates Vampires (Livewires)", "number_of_pages": 32, "isbn_13": ["9780340871461"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0340871466"], "publish_date": "July 1, 2005", "key": "/books/OL10678533M", "authors": [{"key": "/authors/OL3248468A"}, {"key": "/authors/OL3248469A"}], "oclc_numbers": ["56469657"], "type": {"key": "/type/edition"}, "subjects": ["English language readers", "Mysteries & the unexplained", "Special needs & learning difficulties", "Education / Teaching Methods & Materials / Arts & Humanities"], "identifiers": {"librarything": ["6427956"]}, "works": [{"key": "/works/OL24858501W"}], "covers": [11737394], "ocaid": "vampires0000robs", "source_records": ["ia:vampires0000robs", "bwb:9780340871461", "promise:bwb_daily_pallets_2020-09-09"], "lc_classifications": ["PE1126"], "local_id": ["urn:bwbsku:KN-767-105"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T01:15:15.554726"}}
+/type/edition /books/OL10679032M 4 2022-12-05T10:31:25.129705 {"publishers": ["Hodder Gibson"], "weight": "12 ounces", "isbn_10": ["0340885157"], "number_of_pages": 144, "isbn_13": ["9780340885154"], "physical_format": "Paperback", "publish_date": "May 28, 2004", "key": "/books/OL10679032M", "authors": [{"key": "/authors/OL3476702A"}], "title": "Young Citizen's Passport", "subjects": ["Citizenship", "The law, legal issues", "For Higher Grade (Scottish)"], "works": [{"key": "/works/OL9449336W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "6.7 x 3.9 x 0.6 inches", "lc_classifications": ["KDC357"], "source_records": ["bwb:9780340885154", "promise:bwb_daily_pallets_2022-04-20"], "local_id": ["urn:bwbsku:KQ-637-796"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-05T10:31:25.129705"}}
+/type/edition /books/OL1067906M 3 2020-11-18T04:32:38.813270 {"publishers": ["Tre\u0309"], "subtitle": "tie\u0309\u0302u thuye\u0301\u0302t", "lc_classifications": ["PL4378.9.S6 N35 1992"], "latest_revision": 3, "key": "/books/OL1067906M", "authors": [{"key": "/authors/OL213205A"}], "publish_places": ["[TP. Ho\u0300\u0302 Chi\u0301 Minh]"], "pagination": "119 p. ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:104061600:469"], "title": "Ngo\u0302i nha\u0300 ma\u0323\u0306t tie\u0300\u0302n", "lccn": ["93941391"], "notes": {"type": "/type/text", "value": "Novel."}, "number_of_pages": 119, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/vie"}], "last_modified": {"type": "/type/datetime", "value": "2020-11-18T04:32:38.813270"}, "publish_date": "1992", "publish_country": "vm ", "by_statement": "S\u01a1n Nam.", "works": [{"key": "/works/OL1785634W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10679179M 4 2022-05-25T01:28:37.826325 {"publishers": ["Hodder Arnold H&S"], "weight": "6.4 ounces", "title": "Focus on Science", "isbn_13": ["9780340887707"], "physical_format": "Paperback", "isbn_10": ["0340887702"], "publish_date": "January 28, 2005", "key": "/books/OL10679179M", "authors": [{"key": "/authors/OL1435393A"}], "oclc_numbers": ["318950884"], "works": [{"key": "/works/OL5849079W"}], "type": {"key": "/type/edition"}, "subjects": ["Science"], "physical_dimensions": "9.8 x 8 x 0.3 inches", "source_records": ["bwb:9780340887707"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T01:28:37.826325"}}
+/type/edition /books/OL10679431M 9 2021-10-04T11:09:51.483297 {"publishers": ["Hodder & Stoughton"], "number_of_pages": 352, "weight": "1 pounds", "covers": [2403645, 206651], "physical_format": "Hardcover", "key": "/books/OL10679431M", "authors": [{"key": "/authors/OL3484984A"}], "ocaid": "conjurersbirdnov0000davi", "source_records": ["ia:conjurersbirdnov0000davi", "ia:conjurersbirdnov0000davi_w3g4", "bwb:9780340896167"], "title": "Conjuror's Bird", "identifiers": {"goodreads": ["159326"], "librarything": ["205898"]}, "isbn_13": ["9780340896167"], "isbn_10": ["0340896167"], "publish_date": "November 7, 2005", "works": [{"key": "/works/OL9465664W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.5 x 5.5 x 1.2 inches", "lc_classifications": ["PR6104.A87 C66 2006beb", "PR6104.A87"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-10-04T11:09:51.483297"}}
+/type/edition /books/OL1067945M 3 2020-11-18T04:32:59.034533 {"publishers": ["Qua\u0302n do\u0323\u0302i nha\u0302n da\u0302n"], "subtitle": "tie\u0309\u0302u thuye\u0301\u0302t", "lc_classifications": ["PL4378.9.P5223 L65 1992"], "latest_revision": 3, "key": "/books/OL1067945M", "authors": [{"key": "/authors/OL497380A"}], "publish_places": ["Ha\u0300 No\u0323\u0302i"], "pagination": "230 p. ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:104088672:539"], "title": "L\u01a1\u0300i tie\u0302n tri \u0111o\u0323\u0302c a\u0301c", "lccn": ["93941436"], "notes": {"type": "/type/text", "value": "Novel."}, "number_of_pages": 230, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/vie"}], "last_modified": {"type": "/type/datetime", "value": "2020-11-18T04:32:59.034533"}, "publish_date": "1992", "publish_country": "vm ", "by_statement": "Pha\u0323m Quang \u0110a\u0309\u0302u.", "works": [{"key": "/works/OL3138420W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10680154M 4 2022-01-27T01:46:33.294800 {"publishers": ["Hodder Arnold"], "physical_format": "Paperback", "classifications": {}, "title": "Hodder Reading Project Level 4-5 Evaluation Pack", "notes": {"type": "/type/text", "value": "Hodder Reading Project"}, "identifiers": {}, "isbn_13": ["9780340915592"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0340915595"], "publish_date": "March 30, 2006", "key": "/books/OL10680154M", "authors": [{"key": "/authors/OL3449972A"}], "works": [{"key": "/works/OL9415514W"}], "type": {"key": "/type/edition"}, "subjects": ["English language readers", "English language: reading skills", "Teaching of those with special educational needs", "Teaching skills & techniques", "For National Curriculum Key Stage 3", "Language Arts - General", "Juvenile Nonfiction", "Children: Grades 4-6"], "source_records": ["bwb:9780340915592"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-27T01:46:33.294800"}}
+/type/edition /books/OL10680295M 2 2009-12-15T00:52:25.503436 {"publishers": ["Hodder & Stoughton Ltd"], "title": "The Saint", "isbn_10": ["0340922036"], "isbn_13": ["9780340922033"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:52:25.503436"}, "publish_date": "October 10, 2005", "key": "/books/OL10680295M", "authors": [{"key": "/authors/OL3346736A"}], "latest_revision": 2, "subjects": ["Biography: sport", "Soccer (Association football)"], "works": [{"key": "/works/OL9293494W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10680464M 2 2022-05-25T04:43:36.981020 {"isbn_13": ["9780340927533"], "physical_format": "Paperback", "weight": "13.4 ounces", "languages": [{"key": "/languages/eng"}], "publishers": ["Hodder Arnold"], "number_of_pages": 112, "edition_name": "Pap/Cdr Tc edition", "isbn_10": ["0340927534"], "publish_date": "June 30, 2006", "key": "/books/OL10680464M", "authors": [{"key": "/authors/OL3476951A"}, {"key": "/authors/OL3476952A"}], "title": "Gcse Mathematics for Ocr Modular Two Tier Gcse M6 (Gcse Mathematics for Ocr Modular Two Tier Gcse)", "type": {"key": "/type/edition"}, "subjects": ["Mathematics", "Teaching of a specific subject", "For National Curriculum Key Stage 4 & GCSE", "General", "Teaching Methods & Materials - Mathematics", "Education"], "physical_dimensions": "11.7 x 8.3 x 0.6 inches", "works": [{"key": "/works/OL27783867W"}], "lc_classifications": ["510.7'12'41"], "source_records": ["bwb:9780340927533"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T04:43:36.981020"}}
+/type/edition /books/OL10680492M 7 2022-05-25T04:09:27.643576 {"publishers": ["Hodder Gibson"], "number_of_pages": 144, "weight": "1.8 pounds", "physical_format": "Paperback", "key": "/books/OL10680492M", "authors": [{"key": "/authors/OL3485162A"}], "subjects": ["Hotel & catering trades", "Occupational / industrial health & safety", "For GSVQ (General Scottish Vocational Qualification)"], "title": "Food Hygiene for Scottish Qualifications", "identifiers": {"goodreads": ["6805566"]}, "isbn_13": ["9780340928103"], "isbn_10": ["0340928107"], "publish_date": "December 29, 2006", "oclc_numbers": ["213331222"], "works": [{"key": "/works/OL9465798W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.7 x 8.2 x 0.5 inches", "covers": [12153623], "ocaid": "foodhygieneforsc0000macg", "source_records": ["ia:foodhygieneforsc0000macg", "bwb:9780340928103"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T04:09:27.643576"}}
+/type/edition /books/OL1068074M 3 2020-11-18T04:34:40.349852 {"publishers": ["Direktorat Jenderal Pembangunan Daerah, Departemen Dalam Negeri"], "subtitle": "menurut instruksi Presiden Republik Indonesia no. 6 tahun 1984.", "description": {"type": "/type/text", "value": "Restoration and building program of elementary schools in Indonesia."}, "physical_format": "Microform", "lc_classifications": ["Microfiche 93/51068 (H)"], "latest_revision": 3, "key": "/books/OL1068074M", "publish_places": ["[Jakarta]"], "contributions": ["Indonesia. Direktorat Jenderal Pembangunan Daerah."], "pagination": "290 p.", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:104231324:980"], "title": "Bantuan pembangunan sekolah dasar tahun 1992/1993", "lccn": ["93941777"], "notes": {"type": "/type/text", "value": "Microfiche. Jakarta : Library of Congress Office ; Washington, D.C. : Library of Congress Photoduplication Service, 1995. 4 microfiches ; 11 x 15 cm."}, "number_of_pages": 290, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/ind"}], "last_modified": {"type": "/type/datetime", "value": "2020-11-18T04:34:40.349852"}, "publish_date": "1984", "publish_country": "io ", "works": [{"key": "/works/OL23531984W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10681124M 4 2010-08-17T03:39:14.579670 {"publishers": ["Ballantine"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-08-17T03:39:14.579670"}, "title": "So Disdained", "identifiers": {"goodreads": ["557162"], "librarything": ["18963"]}, "isbn_13": ["9780345022769"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0345022769"], "publish_date": "1968", "key": "/books/OL10681124M", "latest_revision": 4, "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10681127M 5 2022-12-07T11:13:59.363345 {"publishers": ["Ballantine"], "title": "Dewey Death", "identifiers": {"goodreads": ["6104417"], "librarything": ["566173"]}, "isbn_13": ["9780345022813"], "physical_format": "Mass Market Paperback", "isbn_10": ["0345022815"], "publish_date": "1963", "key": "/books/OL10681127M", "type": {"key": "/type/edition"}, "works": [{"key": "/works/OL31454561W"}], "local_id": ["urn:bwbsku:T2-BPH-326"], "source_records": ["promise:bwb_daily_pallets_2022-03-17"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-07T11:13:59.363345"}}
+/type/edition /books/OL10681363M 3 2010-08-17T03:39:14.579670 {"publishers": ["Ballantine Books"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2010-08-17T03:39:14.579670"}, "title": "Along The Clipper Way", "identifiers": {"goodreads": ["490"], "librarything": ["1167541"]}, "isbn_13": ["9780345033062"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["034503306X"], "publish_date": "1973", "key": "/books/OL10681363M", "latest_revision": 3, "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10681561M 4 2010-04-24T18:07:47.973104 {"publishers": ["Ballantine Books"], "physical_format": "Mass Market Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:07:47.973104"}, "title": "Pit Bull", "identifiers": {"goodreads": ["5026226"]}, "isbn_13": ["9780345210982"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0345210980"], "publish_date": "January 12, 1969", "key": "/books/OL10681561M", "authors": [{"key": "/authors/OL1155855A"}], "latest_revision": 4, "works": [{"key": "/works/OL5184955W"}], "type": {"key": "/type/edition"}, "subjects": ["Non-Classifiable"], "revision": 4}
+/type/edition /books/OL10681586M 5 2010-08-17T03:40:02.321583 {"publishers": ["Ballantine Books"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2010-08-17T03:40:02.321583"}, "title": "Lonely Sea & the Sky", "identifiers": {"goodreads": ["1172825"], "librarything": ["269414"]}, "isbn_13": ["9780345215154"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Mass Market Paperback", "isbn_10": ["034521515X"], "publish_date": "January 12, 1969", "key": "/books/OL10681586M", "authors": [{"key": "/authors/OL2710845A"}], "latest_revision": 5, "works": [{"key": "/works/OL8134854W"}], "type": {"key": "/type/edition"}, "subjects": ["Non-Classifiable", "Nonfiction - General"], "revision": 5}
+/type/edition /books/OL10681804M 2 2009-12-15T00:52:27.798808 {"physical_format": "Paperback", "title": "Nazi Regalia", "isbn_10": ["0345222253"], "publishers": ["Ballantine Books"], "isbn_13": ["9780345222251"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:52:27.798808"}, "publish_date": "February 12, 1975", "key": "/books/OL10681804M", "authors": [{"key": "/authors/OL2014267A"}], "latest_revision": 2, "subjects": ["Non-Classifiable", "Nonfiction - General"], "works": [{"key": "/works/OL7106762W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10681948M 4 2010-04-24T18:07:47.973104 {"publishers": ["Ballantine Books"], "physical_format": "Mass Market Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:07:47.973104"}, "title": "I Can Sell You Anything", "identifiers": {"goodreads": ["695842"]}, "isbn_13": ["9780345234070"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0345234073"], "publish_date": "July 12, 1973", "key": "/books/OL10681948M", "authors": [{"key": "/authors/OL3485345A"}], "latest_revision": 4, "works": [{"key": "/works/OL9466020W"}], "type": {"key": "/type/edition"}, "subjects": ["Non-Classifiable", "Nonfiction - General"], "revision": 4}
+/type/edition /books/OL10682110M 5 2010-08-17T03:39:14.579670 {"publishers": ["Ballantine Books"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2010-08-17T03:39:14.579670"}, "title": "The Exerciser", "identifiers": {"goodreads": ["4461737"], "librarything": ["1325476"]}, "isbn_13": ["9780345239976"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Mass Market Paperback", "isbn_10": ["0345239970"], "publish_date": "March 12, 1974", "key": "/books/OL10682110M", "authors": [{"key": "/authors/OL2079340A"}], "latest_revision": 5, "works": [{"key": "/works/OL7220458W"}], "type": {"key": "/type/edition"}, "subjects": ["Non-Classifiable", "Nonfiction - General"], "revision": 5}
+/type/edition /books/OL10682349M 11 2022-12-04T08:02:41.292766 {"publishers": ["Ballantine Books"], "series": ["Lord of the Rings (3)"], "physical_format": "Mass Market Paperback", "key": "/books/OL10682349M", "authors": [{"key": "/authors/OL26320A"}], "subjects": ["Non-Classifiable", "Nonfiction - General"], "isbn_13": ["9780345248299"], "classifications": {}, "source_records": ["amazon:0345248295", "promise:bwb_daily_pallets_2022-09-14"], "title": "The Return of the King", "identifiers": {"amazon": ["0345248295", "B0007DM6K2"], "google": ["U4uYPwAACAAJ"], "goodreads": ["1490470"], "librarything": ["3203356"], "better_world_books": ["BWB452003"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0345248295"], "publish_date": "May 12, 1975", "works": [{"key": "/works/OL27516W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:O8-CIU-905", "urn:bwbsku:W7-CQS-597"], "latest_revision": 11, "revision": 11, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T08:02:41.292766"}}
+/type/edition /books/OL10682432M 6 2020-05-20T18:27:37.077327 {"publishers": ["Ballantine Books"], "number_of_pages": 368, "covers": [9833278], "physical_format": "Mass Market Paperback", "last_modified": {"type": "/type/datetime", "value": "2020-05-20T18:27:37.077327"}, "latest_revision": 6, "key": "/books/OL10682432M", "authors": [{"key": "/authors/OL3485391A"}], "ocaid": "peroff00lhwh_cjj", "subjects": ["Non-Classifiable", "Nonfiction - General"], "languages": [{"key": "/languages/eng"}], "title": "Peroff", "identifiers": {"librarything": ["6549126"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780345251046"], "isbn_10": ["0345251040"], "publish_date": "July 12, 1976", "oclc_numbers": ["3642500"], "works": [{"key": "/works/OL9466075W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL10682594M 8 2022-12-04T06:47:37.604035 {"publishers": ["Ballantine Books"], "identifiers": {"librarything": ["90711"], "goodreads": ["590205"]}, "languages": [{"key": "/languages/eng"}], "number_of_pages": 370, "isbn_13": ["9780345256263"], "physical_format": "Mass Market Paperback", "isbn_10": ["0345256263"], "publish_date": "August 12, 1976", "key": "/books/OL10682594M", "authors": [{"key": "/authors/OL31238A"}], "title": "High Deryn1", "oclc_numbers": ["83374903"], "works": [{"key": "/works/OL56258W"}], "type": {"key": "/type/edition"}, "subjects": ["Non-Classifiable", "Nonfiction - General"], "local_id": ["urn:bwbsku:P8-BAX-859"], "source_records": ["promise:bwb_daily_pallets_2022-11-10"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T06:47:37.604035"}}
+/type/edition /books/OL1068285M 4 2020-11-18T04:37:29.878899 {"publishers": ["Gobierno civil de Manila"], "physical_format": "Microform", "lc_classifications": ["Microfiche 93/82311 (K)"], "latest_revision": 4, "key": "/books/OL1068285M", "authors": [{"key": "/authors/OL570801A"}], "publish_places": ["[Manila]"], "pagination": "64 p.", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:104444554:880"], "title": "Circular sobre presupuestos de los pueblos", "lccn": ["93942369"], "notes": {"type": "/type/text", "value": "Microfiche. Jakarta : Library of Congress Office ; Washington, D.C. : Library of Congress Photoduplication Service, 1994. 1 microfiche ; 11 x 15 cm.\nCall number of original: LAW "}, "number_of_pages": 64, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/spa"}], "last_modified": {"type": "/type/datetime", "value": "2020-11-18T04:37:29.878899"}, "publish_date": "1894", "publish_country": "ph ", "by_statement": "gobierno civil de Manila, junta provincial.", "works": [{"key": "/works/OL3441689W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10683079M 4 2022-12-08T09:28:47.476631 {"publishers": ["Ballantine Publishing Group"], "title": "Battle Reichswald", "type": {"key": "/type/edition"}, "identifiers": {"librarything": ["473721"]}, "physical_format": "Paperback", "isbn_10": ["0345279018"], "publish_date": "1979", "key": "/books/OL10683079M", "authors": [{"key": "/authors/OL1289945A"}], "works": [{"key": "/works/OL5464921W"}], "contributions": ["Cover is Illustrated (Illustrator)"], "local_id": ["urn:bwbsku:P7-AHA-763"], "source_records": ["promise:bwb_daily_pallets_2021-06-03"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-08T09:28:47.476631"}}
+/type/edition /books/OL10683376M 5 2022-12-10T09:27:40.466505 {"publishers": ["Ballantine Books"], "languages": [{"key": "/languages/eng"}], "title": "The Big E", "identifiers": {"librarything": ["259802"], "amazon": [""]}, "isbn_13": ["9780345287953"], "physical_format": "Mass Market Paperback", "isbn_10": ["0345287959"], "publish_date": "February 12, 1980", "key": "/books/OL10683376M", "authors": [{"key": "/authors/OL2933605A"}], "oclc_numbers": ["6097093"], "works": [{"key": "/works/OL8681543W"}], "type": {"key": "/type/edition"}, "subjects": ["Non-Classifiable", "Nonfiction - General"], "local_id": ["urn:bwbsku:O6-BTQ-766"], "source_records": ["promise:bwb_daily_pallets_2020-04-30"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T09:27:40.466505"}}
+/type/edition /books/OL10683383M 6 2011-04-26T04:19:24.979447 {"publishers": ["Ballantine Books"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2011-04-26T04:19:24.979447"}, "title": "Bt-the Book of Quotes", "identifiers": {"librarything": ["1250955"], "goodreads": ["6293540"]}, "isbn_13": ["9780345288295"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0345288297"], "publish_date": "August 12, 1980", "key": "/books/OL10683383M", "authors": [{"key": "/authors/OL3485477A"}], "latest_revision": 6, "oclc_numbers": ["7160190"], "works": [{"key": "/works/OL9466179W"}], "type": {"key": "/type/edition"}, "subjects": ["Non-Classifiable", "Nonfiction - General"], "revision": 6}
+/type/edition /books/OL10683856M 4 2011-04-26T15:37:56.460521 {"publishers": ["Ballantine Books"], "languages": [{"key": "/languages/eng"}], "identifiers": {"librarything": ["527198"]}, "last_modified": {"type": "/type/datetime", "value": "2011-04-26T15:37:56.460521"}, "title": "Cyclist's Guide to Overnight Stops, Eastern States", "physical_format": "Mass Market Paperback", "number_of_pages": 448, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780345301154"], "isbn_10": ["0345301153"], "publish_date": "March 12, 1982", "key": "/books/OL10683856M", "authors": [{"key": "/authors/OL1873419A"}], "latest_revision": 4, "oclc_numbers": ["8392996"], "works": [{"key": "/works/OL6835927W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Games / General", "Games / Gamebooks / Crosswords"], "revision": 4}
+/type/edition /books/OL10684212M 6 2022-04-07T21:38:07.910662 {"publishers": ["Ballantine Books"], "languages": [{"key": "/languages/eng"}], "title": "Bt-Ppk 15 Garfield Eat", "identifiers": {"goodreads": ["2776039"]}, "isbn_13": ["9780345312181"], "physical_format": "Paperback", "isbn_10": ["034531218X"], "key": "/books/OL10684212M", "authors": [{"key": "/authors/OL27452A"}], "works": [{"key": "/works/OL8069008W"}], "type": {"key": "/type/edition"}, "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-04-07T21:38:07.910662"}}
+/type/edition /books/OL10684M 4 2022-08-19T03:46:42.089402 {"notes": {"type": "/type/text", "value": "Includes bibliographies."}, "title": "India since 1526", "authors": [{"key": "/authors/OL470A"}], "publish_date": "1967", "publishers": ["S. Chand"], "subject_place": ["India"], "lc_classifications": ["DS436.A1 M3 1967"], "publish_places": ["Delhi"], "languages": [{"key": "/languages/eng"}], "pagination": "xvi, 659 p.", "source_records": ["marc:marc_records_scriblio_net/part29.dat:6355311:596", "marc:marc_loc_2016/BooksAll.2016.part43.utf8:14093382:596"], "lccn": ["sa67000482"], "edition_name": "7th ed., rev. & enl.", "subjects": ["India -- History"], "publish_country": "ii ", "by_statement": "by V. D. Mahajan.", "oclc_numbers": ["33085826"], "type": {"key": "/type/edition"}, "key": "/books/OL10684M", "number_of_pages": 659, "works": [{"key": "/works/OL292841W"}], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-19T03:46:42.089402"}}
+/type/edition /books/OL1068501M 4 2020-11-18T04:39:44.083149 {"publishers": ["Lembaga Penelitian, Universitas Airlangga"], "subtitle": "sebuah kajian morfologis", "description": {"type": "/type/text", "value": "The prefix meN- in Indonesian language."}, "physical_format": "Microform", "lc_classifications": ["Microfiche 93/51153 (P)"], "latest_revision": 4, "key": "/books/OL1068501M", "authors": [{"key": "/authors/OL570890A"}], "publish_places": ["[Surabaya]"], "pagination": "iv, 40 leaves", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:104665789:860"], "title": "MeN- dalam bahasa Indonesia", "lccn": ["93942709"], "notes": {"type": "/type/text", "value": "Microfiche. Jakarta : Library of Congress Office ; Washington, D.C. : Library of Congress Photoduplication Service, 1995. 1 microfiche ; 11 x 15 cm."}, "number_of_pages": 40, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/ind"}], "last_modified": {"type": "/type/datetime", "value": "2020-11-18T04:39:44.083149"}, "publish_date": "1991", "publish_country": "io ", "by_statement": "oleh Ni Wayan Sartini.", "works": [{"key": "/works/OL3441912W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10685031M 3 2022-12-04T00:06:29.911489 {"physical_format": "Paperback", "title": "Bt-Attck Insecticons", "isbn_10": ["0345341511"], "publishers": ["Ballantine Books"], "isbn_13": ["9780345341518"], "languages": [{"key": "/languages/eng"}], "publish_date": "October 12, 1985", "key": "/books/OL10685031M", "authors": [{"key": "/authors/OL3485609A"}], "subjects": ["Non-Classifiable", "Nonfiction - General"], "works": [{"key": "/works/OL9466367W"}], "type": {"key": "/type/edition"}, "source_records": ["amazon:0345341511"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T00:06:29.911489"}}
+/type/edition /books/OL10685237M 5 2011-04-26T05:57:53.187505 {"publishers": ["Ballantine Books"], "weight": "2.4 ounces", "covers": [5071270], "physical_format": "Mass Market Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-26T05:57:53.187505"}, "latest_revision": 5, "key": "/books/OL10685237M", "authors": [{"key": "/authors/OL2677525A"}], "subjects": ["General", "Non-Classifiable", "Psychology"], "languages": [{"key": "/languages/eng"}], "first_sentence": {"type": "/type/text", "value": "This is a book about impossible people and how to cope with them."}, "title": "Coping with Difficult People", "identifiers": {"librarything": ["70258"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780345352941"], "isbn_10": ["0345352947"], "publish_date": "July 12, 1987", "oclc_numbers": ["154190632"], "works": [{"key": "/works/OL8050959W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "6.7 x 4 x 0.6 inches", "revision": 5}
+/type/edition /books/OL10685785M 4 2010-04-24T18:07:47.973104 {"publishers": ["Ballantine Books"], "physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:07:47.973104"}, "title": "R. N. Patterson-2 Vol. Boxed Set", "identifiers": {"goodreads": ["6146475"]}, "isbn_13": ["9780345392596"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0345392590"], "publish_date": "November 1994", "key": "/books/OL10685785M", "authors": [{"key": "/authors/OL23801A"}], "latest_revision": 4, "subjects": ["Psychological", "Fiction - Psychological Suspense"], "works": [{"key": "/works/OL14924837W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "7.2 x 4.4 x 2.3 inches", "revision": 4}
+/type/edition /books/OL1068625M 3 2020-11-18T04:41:18.731827 {"publishers": ["Kalikasan Press"], "lc_classifications": ["MLCS 93/00156 (P)"], "latest_revision": 3, "key": "/books/OL1068625M", "publish_places": ["Manila"], "contributions": ["Abad, Gemino H."], "languages": [{"key": "/languages/eng"}], "pagination": "166 p. :", "source_records": ["marc:marc_records_scriblio_net/part24.dat:33204014:541", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:104809744:542"], "title": "The Best of caracoa", "lccn": ["93942932"], "notes": {"type": "/type/text", "value": "Poems."}, "number_of_pages": 166, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "edition_name": "Silver ed.", "isbn_10": ["9718577904"], "publish_date": "1991", "publish_country": "ph ", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T04:41:18.731827"}, "by_statement": "Ge\u0301mino H. Abad, Alfred A. Yuson, editors.", "works": [{"key": "/works/OL19533938W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10686456M 3 2011-11-11T23:21:38.927368 {"publishers": ["Ballantine Books"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2011-11-11T23:21:38.927368"}, "title": "The American Heart Association Cookbook, 5th Edition - 18,000 for special project", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780345906717"], "physical_format": "Paperback", "isbn_10": ["0345906713"], "publish_date": "December 13, 1994", "key": "/books/OL10686456M", "authors": [{"key": "/authors/OL5159216A"}], "latest_revision": 3, "works": [{"key": "/works/OL3485222W"}], "type": {"key": "/type/edition"}, "subjects": ["Non-Classifiable", "Nonfiction - General"], "revision": 3}
+/type/edition /books/OL10686834M 8 2021-09-15T13:30:43.765787 {"publishers": ["Abacus"], "identifiers": {"librarything": ["13258"], "goodreads": ["243253"]}, "weight": "5 ounces", "isbn_10": ["0349107297"], "covers": [2405737], "physical_format": "Paperback", "key": "/books/OL10686834M", "authors": [{"key": "/authors/OL2631425A"}], "subjects": ["International relations", "Eastern Europe", "Slavic (Slavonic) languages", "Politics/International Relations"], "source_records": ["amazon:0349107297", "marc:OpenLibraries-Trent-MARCs/tier5.mrc:43663025:812", "bwb:9780349107295"], "title": "Cafe Europa", "number_of_pages": 288, "isbn_13": ["9780349107295"], "local_id": ["urn:trent:0116404336335"], "publish_date": "October 10, 1996", "works": [{"key": "/works/OL277409W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "7.7 x 4.9 x 0.6 inches", "lc_classifications": ["HN380.7.A8D73 2014"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-09-15T13:30:43.765787"}}
+/type/edition /books/OL10686872M 8 2022-12-10T13:08:32.496325 {"publishers": ["Abacus"], "number_of_pages": 280, "weight": "7 ounces", "covers": [2405800, 212930], "physical_format": "Paperback", "key": "/books/OL10686872M", "authors": [{"key": "/authors/OL534478A"}], "subjects": ["Modern fiction", "Fiction"], "isbn_13": ["9780349110301"], "title": "The Ice Storm", "identifiers": {"goodreads": ["994439"], "librarything": ["2868747"]}, "edition_name": "Film Tie-in Ed edition", "isbn_10": ["0349110301"], "publish_date": "February 5, 1998", "works": [{"key": "/works/OL3274762W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "7.7 x 5 x 0.9 inches", "lc_classifications": ["PS3563.O5537"], "source_records": ["bwb:9780349110301", "promise:bwb_daily_pallets_2020-04-09"], "local_id": ["urn:bwbsku:O6-DXD-018"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T13:08:32.496325"}}
+/type/edition /books/OL1068690M 4 2020-11-18T04:42:02.573060 {"publishers": ["DSALCUL/IRIS"], "subtitle": "liber amicorum Alex van der Leeden", "isbn_10": ["9798116259"], "subject_place": ["Indonesia.", "Australia."], "covers": [3870227], "lc_classifications": ["DS631 .V75 1993"], "latest_revision": 4, "key": "/books/OL1068690M", "publish_places": ["Leiden"], "contributions": ["Haenen, Paul.", "Trouwborst, Albert.", "Leeden, Alex van der.", "DSALCUL/IRIS (Project)"], "pagination": "244 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:104865134:980"], "title": "Vrienden en verwanten", "lccn": ["93943015"], "notes": {"type": "/type/text", "value": "Includes bibliographical references.\n\"Publikaties A.C. van der Leeden\": p. [237]-240.\nIn Dutch, with articles in Indonesian and English."}, "number_of_pages": 244, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/dut"}], "subjects": ["Ethnology -- Indonesia.", "Ethnology -- Australia."], "publish_date": "1993", "publish_country": "ne ", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T04:42:02.573060"}, "by_statement": "Paul Haenen & Albert Trouwborst, red.", "oclc_numbers": ["32543488"], "works": [{"key": "/works/OL23532243W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10686981M 9 2022-03-25T05:25:57.488619 {"publishers": ["Abacus"], "number_of_pages": 336, "subtitle": "Stories", "weight": "13.4 ounces", "covers": [2405960, 213286], "physical_format": "Paperback", "key": "/books/OL10686981M", "authors": [{"key": "/authors/OL448939A"}], "ocaid": "oblivionstories00wall", "first_sentence": {"type": "/type/text", "value": "The Focus Group was then reconvened in another of Reesemeyer Shannon Belt Advertising's nineteenth-floor conference room."}, "title": "Oblivion", "identifiers": {"librarything": ["15968"], "goodreads": ["867302"]}, "isbn_13": ["9780349116495"], "isbn_10": ["0349116490"], "publish_date": "2005", "works": [{"key": "/works/OL2943598W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.4 x 5.3 x 1.1 inches", "lc_classifications": ["PS3573.A425635", "PS3573.A425635 O35 2005"], "source_records": ["bwb:9780349116495", "ia:oblivionstories0000wall"], "oclc_numbers": ["63136458"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-25T05:25:57.488619"}}
+/type/edition /books/OL10687164M 6 2022-12-08T15:09:37.335959 {"publishers": ["Nexus"], "number_of_pages": 160, "title": "Emmerdale Farm", "type": {"key": "/type/edition"}, "identifiers": {"goodreads": ["410488"]}, "isbn_13": ["9780352304513"], "isbn_10": ["0352304510"], "publish_date": "January 1980", "key": "/books/OL10687164M", "authors": [{"key": "/authors/OL3347720A"}], "oclc_numbers": ["16497798"], "works": [{"key": "/works/OL9295209W"}], "physical_format": "Paperback", "subjects": ["Rock & pop"], "local_id": ["urn:bwbsku:KP-585-077"], "source_records": ["promise:bwb_daily_pallets_2021-04-07"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-08T15:09:37.335959"}}
+/type/edition /books/OL1068734M 2 2020-11-18T04:42:30.914909 {"publishers": ["Tr\u01b0\u01a1\u0300ng vie\u0301\u0302t va\u0306n Nguye\u0303\u0302n Du"], "lc_classifications": ["PL4378.6 .D63 1992"], "latest_revision": 2, "key": "/books/OL1068734M", "publish_places": ["[Ha\u0300 No\u0323\u0302i]"], "contributions": ["Tr\u01b0\u01a1\u0300ng vie\u0301\u0302t va\u0306n Nguye\u0303\u0302n Du."], "subject_time": ["20th century."], "pagination": "90 p. ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:104899769:534"], "title": "\u0110o\u0301\u0302i thoa\u0323i v\u01a1\u0301i tra\u0301i tim.", "lccn": ["93943077"], "notes": {"type": "/type/text", "value": "Poems."}, "number_of_pages": 90, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/vie"}], "subjects": ["Vietnamese poetry -- 20th century."], "publish_date": "1992", "publish_country": "vm ", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T04:42:30.914909"}, "works": [{"key": "/works/OL23532265W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL1068742M 3 2020-11-18T04:42:36.127449 {"publishers": ["Va\u0306n ho\u0301a"], "subtitle": "kha\u0309o lua\u0323\u0302n va\u0300 th\u01b0\u0323c ha\u0300nh", "subject_place": ["Vietnam"], "lc_classifications": ["CS1232 .N43 1992"], "latest_revision": 3, "key": "/books/OL1068742M", "authors": [{"key": "/authors/OL570957A"}], "publish_places": ["[Ha\u0300 No\u0323\u0302i]"], "languages": [{"key": "/languages/vie"}], "pagination": "380, [22] p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:104904752:694"], "title": "Gia pha\u0309", "lccn": ["93943086"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. [396]-[400])."}, "number_of_pages": 380, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "edition_name": "In la\u0300\u0302n th\u01b0\u0301 3 co\u0301 s\u01b0\u0309a ch\u01b0\u0303a va\u0300 bo\u0309\u0302 sung.", "subjects": ["Vietnam -- Genealogy -- Handbooks, manuals, etc."], "publish_date": "1992", "publish_country": "vm ", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T04:42:36.127449"}, "by_statement": "Da\u0303 Lan Nguye\u0303\u0302n \u0110\u01b0\u0301c Du\u0323.", "works": [{"key": "/works/OL3442083W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10687653M 8 2021-10-04T02:22:52.656374 {"publishers": ["Black Lace"], "identifiers": {"librarything": ["725737"], "goodreads": ["1253465"]}, "weight": "5.6 ounces", "covers": [2406247, 213600], "physical_format": "Paperback", "key": "/books/OL10687653M", "authors": [{"key": "/authors/OL3319408A"}], "subjects": ["Erotic fiction", "Modern fiction", "Fiction", "Fiction - Adult", "Movie/Tv Tie-Ins", "Erotica", "Erotica - General"], "isbn_13": ["9780352333087"], "classifications": {}, "title": "A Private View", "notes": {"type": "/type/text", "value": "Black Lace Series"}, "number_of_pages": 272, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0352333081"], "publish_date": "January 1999", "works": [{"key": "/works/OL9264875W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "6.8 x 4.2 x 0.9 inches", "source_records": ["bwb:9780352333087"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-10-04T02:22:52.656374"}}
+/type/edition /books/OL10688082M 7 2022-12-09T15:43:22.951096 {"publishers": ["MacDonald Futura"], "identifiers": {"librarything": ["1392837"]}, "classifications": {}, "title": "Manual of Indoor Photography", "physical_format": "Hardcover", "number_of_pages": 224, "isbn_13": ["9780354046299"], "isbn_10": ["0354046292"], "publish_date": "1981", "key": "/books/OL10688082M", "authors": [{"key": "/authors/OL2622234A"}], "works": [{"key": "/works/OL9467296W"}], "type": {"key": "/type/edition"}, "covers": [10620007], "ocaid": "manualofindoorph0000free", "lc_classifications": ["TR146"], "source_records": ["ia:manualofindoorph0000free", "promise:bwb_daily_pallets_2020-11-19"], "local_id": ["urn:bwbsku:KO-452-639"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T15:43:22.951096"}}
+/type/edition /books/OL10688229M 1 2008-04-30T09:38:13.731961 {"physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Nelson Thornes Ltd"], "title": "Science 5-13 (Learning Through Science)", "isbn_13": ["9780356075532"], "isbn_10": ["0356075532"], "publish_date": "September 23, 1982", "key": "/books/OL10688229M", "type": {"key": "/type/edition"}, "subjects": ["Natural history & pets", "Science", "Designed / suitable for National Curriculum"], "revision": 1}
+/type/edition /books/OL10688286M 6 2022-12-09T03:49:47.909038 {"publishers": ["Little, Brown"], "number_of_pages": 448, "source_records": ["marc:talis_openlibrary_contribution/talis-openlibrary-contribution.mrc:1531461771:605", "ia:macdonaldencyclo0000unse_e4p5", "promise:bwb_daily_pallets_2021-01-08"], "title": "The Macdonald Encyclopedia of Dogs (Macdonald Encyclopedias)", "type": {"key": "/type/edition"}, "identifiers": {"librarything": ["3023041"]}, "isbn_13": ["9780356097350"], "isbn_10": ["0356097358"], "publish_date": "January 1, 1991", "key": "/books/OL10688286M", "authors": [{"key": "/authors/OL3434972A"}], "works": [{"key": "/works/OL9398479W"}], "physical_format": "Paperback", "subjects": ["Dogs", "Reference works"], "covers": [11405056], "ocaid": "macdonaldencyclo0000unse_e4p5", "lc_classifications": ["SF422"], "local_id": ["urn:bwbsku:KP-083-327"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T03:49:47.909038"}}
+/type/edition /books/OL10688341M 5 2011-04-28T06:19:26.959133 {"publishers": ["Macdonald"], "number_of_pages": 640, "last_modified": {"type": "/type/datetime", "value": "2011-04-28T06:19:26.959133"}, "title": "The Snowblind Moon", "identifiers": {"goodreads": ["319516"]}, "isbn_13": ["9780356107424"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Hardcover", "isbn_10": ["0356107426"], "publish_date": "February 1985", "key": "/books/OL10688341M", "authors": [{"key": "/authors/OL947530A"}], "latest_revision": 5, "oclc_numbers": ["11635490"], "works": [{"key": "/works/OL4619850W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10688494M 2 2011-04-27T12:59:06.187915 {"publishers": ["HarperCollins Publishers Ltd"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T12:59:06.187915"}, "title": "Asthma and Hayfever", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780356144627"], "isbn_10": ["0356144623"], "publish_date": "February 25, 1988", "key": "/books/OL10688494M", "latest_revision": 2, "oclc_numbers": ["27486266"], "type": {"key": "/type/edition"}, "subjects": ["Coping with illness"], "revision": 2}
+/type/edition /books/OL10688655M 5 2019-07-30T22:00:07.140430 {"publishers": ["OPTIMA"], "number_of_pages": 160, "last_modified": {"type": "/type/datetime", "value": "2019-07-30T22:00:07.140430"}, "title": "The Back Shop Book", "identifiers": {"goodreads": ["2903128"]}, "isbn_13": ["9780356171395"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Hardcover", "isbn_10": ["0356171396"], "publish_date": "August 1989", "key": "/books/OL10688655M", "authors": [{"key": "/authors/OL3486352A"}, {"key": "/authors/OL3486353A"}], "latest_revision": 5, "oclc_numbers": ["18814633"], "works": [{"key": "/works/OL9467506W"}], "type": {"key": "/type/edition"}, "subjects": ["Rheumatology"], "revision": 5}
+/type/edition /books/OL1068870M 3 2020-11-18T04:43:59.562294 {"publishers": ["Dewan Bahasa dan Pustaka, Kementerian Pendidikan, Malaysia"], "covers": [3870470], "lc_classifications": ["MLCSE 93/00452 (P)"], "latest_revision": 3, "key": "/books/OL1068870M", "publish_places": ["Kuala Lumpur"], "contributions": ["Chin, Chulan."], "edition_name": "Cet. 1.", "pagination": "xxix, 289 p. ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:105006536:674"], "title": "Taman bahasa ibunda", "lccn": ["93943317"], "notes": {"type": "/type/text", "value": "Poems.\nIn Malay."}, "number_of_pages": 289, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/may"}], "isbn_10": ["983623523X"], "publish_date": "1993", "publish_country": "my ", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T04:43:59.562294"}, "by_statement": "diselenggarakan oleh Chulan Chin dan Talib Samat.", "works": [{"key": "/works/OL23532300W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10688782M 5 2022-11-11T21:00:04.169680 {"publishers": ["Scribners"], "number_of_pages": 624, "subtitle": "IMAGES OF MAN IN THE MIRROR OF SCIENCE.", "source_records": ["amazon:0356187977", "promise:bwb_daily_pallets_2022-11-01"], "title": "PARADIGMS LOST", "isbn_10": ["0356187977"], "identifiers": {"goodreads": ["2618865"]}, "isbn_13": ["9780356187976"], "physical_format": "Hardcover", "publish_date": "1990", "key": "/books/OL10688782M", "authors": [{"key": "/authors/OL2631171A"}], "works": [{"key": "/works/OL277145W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:KR-530-352"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-11T21:00:04.169680"}}
+/type/edition /books/OL10689049M 4 2010-04-24T18:07:47.973104 {"publishers": ["Optima"], "title": "Red House Childcare Options", "isbn_10": ["0356210758"], "identifiers": {"goodreads": ["1595583"]}, "isbn_13": ["9780356210759"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:07:47.973104"}, "publish_date": "January 4, 1994", "key": "/books/OL10689049M", "authors": [{"key": "/authors/OL50915A"}], "latest_revision": 4, "works": [{"key": "/works/OL654431W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10689971M 4 2022-11-17T10:16:07.654308 {"publishers": ["Bodley Head Children's Books"], "title": "I Was There in Classical Greece (I Was There)", "number_of_pages": 64, "isbn_13": ["9780370317106"], "physical_format": "Hardcover", "isbn_10": ["0370317106"], "publish_date": "October 17, 1991", "key": "/books/OL10689971M", "authors": [{"key": "/authors/OL3486630A"}], "oclc_numbers": ["24753224"], "works": [{"key": "/works/OL9467850W"}], "type": {"key": "/type/edition"}, "subjects": ["European history: BCE to c 500 CE", "Social history", "Ancient Greece", "Designed / suitable for National Curriculum"], "source_records": ["bwb:9780370317106"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T10:16:07.654308"}}
+/type/edition /books/OL10690257M 5 2020-08-31T07:48:39.360850 {"publishers": ["Harlequin Books"], "number_of_pages": 188, "last_modified": {"type": "/type/datetime", "value": "2020-08-31T07:48:39.360850"}, "source_records": ["bwb:9780373005574"], "title": "The Time Is Short (Harlequin's Collection #32)", "type": {"key": "/type/edition"}, "identifiers": {"goodreads": ["6574611"]}, "isbn_13": ["9780373005574"], "edition_name": "2ND Printing edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0373005571"], "publish_date": "1977", "key": "/books/OL10690257M", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "latest_revision": 5, "oclc_numbers": ["49059844"], "works": [{"key": "/works/OL21854973W"}], "physical_format": "Mass Market Paperback", "revision": 5}
+/type/edition /books/OL10690485M 2 2011-04-26T09:39:56.333192 {"publishers": ["Harlequin Books"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2011-04-26T09:39:56.333192"}, "title": "Serenade At Santa Rosa (Harlequin Romance, 1439)", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780373014392"], "physical_format": "Paperback", "isbn_10": ["0373014392"], "publish_date": "1977", "key": "/books/OL10690485M", "latest_revision": 2, "oclc_numbers": ["34920811"], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10690982M 6 2022-12-05T03:57:50.995147 {"physical_format": "Paperback", "title": "Portrait of Jaime", "identifiers": {"librarything": ["6421199"]}, "isbn_13": ["9780373021451"], "isbn_10": ["0373021453"], "key": "/books/OL10690982M", "oclc_numbers": ["4861360"], "works": [{"key": "/works/OL15149492W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:O8-BZX-108", "urn:bwbsku:T2-BZD-104"], "source_records": ["promise:bwb_daily_pallets_2022-07-26", "promise:bwb_daily_pallets_2022-06-01"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-05T03:57:50.995147"}}
+/type/edition /books/OL10691019M 8 2022-12-22T09:28:48.788393 {"publishers": ["Harlequin Books"], "title": "THE WILD SWAN", "identifiers": {"goodreads": ["202178"], "librarything": ["4960811"]}, "isbn_13": ["9780373021888"], "physical_format": "Mass Market Paperback", "isbn_10": ["0373021887"], "publish_date": "1978", "key": "/books/OL10691019M", "authors": [{"key": "/authors/OL1175057A"}], "oclc_numbers": ["4355908"], "works": [{"key": "/works/OL9225795W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:P8-BLV-762"], "source_records": ["promise:bwb_daily_pallets_2022-12-13"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-22T09:28:48.788393"}}
+/type/edition /books/OL10691414M 12 2022-12-08T18:33:37.524960 {"publishers": ["harlequin"], "number_of_pages": 190, "ia_box_id": ["IA126414"], "weight": "3.2 ounces", "covers": [6607414], "physical_format": "Paperback", "key": "/books/OL10691414M", "authors": [{"key": "/authors/OL3486734A"}], "ocaid": "wherewindblowsfr00spen", "subjects": ["Non-Classifiable", "Fiction"], "isbn_13": ["9780373026814"], "classifications": {}, "source_records": ["bwb:9780373026814", "promise:bwb_daily_pallets_2022-06-01", "promise:bwb_daily_pallets_2021-03-11"], "title": "Where The Wind Blows", "identifiers": {"librarything": ["9256514"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0373026811"], "publish_date": "February 1, 1985", "works": [{"key": "/works/OL9468114W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "6.6 x 4 x 0.7 inches", "local_id": ["urn:bwbsku:T2-BII-311", "urn:bwbsku:W7-BUU-438", "urn:bwbsku:W6-CPZ-150"], "latest_revision": 12, "revision": 12, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-08T18:33:37.524960"}}
+/type/edition /books/OL10692221M 10 2020-08-27T22:30:13.729792 {"publishers": ["Harlequin"], "number_of_pages": 192, "weight": "3.2 ounces", "series": ["Romance, 3670"], "covers": [2406859, 214153], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2020-08-27T22:30:13.729792"}, "latest_revision": 10, "key": "/books/OL10692221M", "authors": [{"key": "/authors/OL1424232A"}], "subjects": ["Non-Classifiable", "Romance - Contemporary", "Romance - General", "Fiction", "Fiction - Romance", "Romance: Modern"], "isbn_13": ["9780373036707"], "classifications": {}, "source_records": ["bwb:9780373036707"], "title": "Outback With The Boss (The Australians)", "identifiers": {"goodreads": ["7089593"], "librarything": ["2010469"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0373036701"], "publish_date": "September 1, 2001", "oclc_numbers": ["47200264"], "works": [{"key": "/works/OL5813307W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "6.8 x 4 x 0.8 inches", "revision": 10}
+/type/edition /books/OL10692299M 12 2022-12-08T14:55:58.481575 {"publishers": ["Harlequin"], "identifiers": {"librarything": ["1659588"], "goodreads": ["2856792"]}, "subtitle": "The Wedding Planners (Harlequin Romance)", "weight": "3.2 ounces", "isbn_10": ["0373038097"], "covers": [5071792], "physical_format": "Mass Market Paperback", "lc_classifications": [""], "key": "/books/OL10692299M", "authors": [{"key": "/authors/OL1385656A"}], "ocaid": "convenientgroom00darc", "isbn_13": ["9780373038091"], "source_records": ["ia:convenientgroom00darc", "bwb:9780373038091", "promise:bwb_daily_pallets_2021-05-24", "promise:bwb_daily_pallets_2021-04-14"], "title": "A Convenient Groom", "number_of_pages": 192, "languages": [{"key": "/languages/eng"}], "subjects": ["Romance - General", "Fiction / Romance / General", "Romance - Contemporary", "Fiction", "Fiction - Romance", "Romance: Modern"], "publish_date": "August 1, 2004", "oclc_numbers": ["55675182"], "works": [{"key": "/works/OL5686983W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "6 x 3.9 x 0.7 inches", "local_id": ["urn:bwbsku:P7-AHP-068", "urn:bwbsku:P7-AWT-244"], "latest_revision": 12, "revision": 12, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-08T14:55:58.481575"}}
+/type/edition /books/OL10692381M 10 2022-12-08T20:20:11.200654 {"publishers": ["Romance Treasury Association"], "weight": "8 ounces", "covers": [9878130], "physical_format": "Hardcover", "key": "/books/OL10692381M", "source_records": ["ia:meetsunhalfway0000unse", "amazon:037304044X", "promise:bwb_daily_pallets_2021-03-08"], "title": "Meet The Sun Halfway - A Family Affair - Kyle's Kingdom", "identifiers": {"goodreads": ["7342160"]}, "publish_date": "1979", "works": [{"key": "/works/OL18024996W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "7.2 x 4.4 x 1.7 inches", "ocaid": "meetsunhalfway0000unse", "isbn_10": ["037304044X"], "isbn_13": ["9780373040445"], "oclc_numbers": ["24146883"], "classifications": {}, "local_id": ["urn:bwbsku:W6-BSU-104", "urn:bwbsku:O7-DKE-869"], "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-08T20:20:11.200654"}}
+/type/edition /books/OL10692566M 9 2022-12-10T07:24:56.165263 {"publishers": ["Silhouette Books"], "covers": [2407074], "physical_format": "Paperback", "key": "/books/OL10692566M", "authors": [{"key": "/authors/OL1386249A"}, {"key": "/authors/OL1423191A"}], "subjects": ["Fiction anthologies & collections", "Romance"], "classifications": {}, "source_records": ["bwb:9780373047673", "ia:millionairesmarr0000unse", "promise:bwb_daily_pallets_2020-06-24"], "title": "Millionaire's Marriage Deal", "notes": {"type": "/type/text", "value": "Desire"}, "identifiers": {"goodreads": ["2222084"]}, "isbn_13": ["9780373047673"], "isbn_10": ["0373047673"], "publish_date": "October 18, 2002", "works": [{"key": "/works/OL15714601W"}], "type": {"key": "/type/edition"}, "ocaid": "millionairesmarr0000unse", "local_id": ["urn:bwbsku:KN-785-499"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T07:24:56.165263"}}
+/type/edition /books/OL10692720M 4 2020-08-19T13:20:34.727321 {"publishers": ["Longman"], "physical_format": "Paperback", "weight": "1.1 pounds", "source_records": ["bwb:9780582503731"], "title": "Step Pack 4 (LILA)", "identifiers": {"goodreads": ["7247796"]}, "isbn_13": ["9780582503731"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0582503736"], "publish_date": "November 24, 2000", "key": "/books/OL10692720M", "last_modified": {"type": "/type/datetime", "value": "2020-08-19T13:20:34.727321"}, "latest_revision": 4, "works": [{"key": "/works/OL21389122W"}], "type": {"key": "/type/edition"}, "subjects": ["English (ie as school subject)", "For National Curriculum Key Stage 2"], "physical_dimensions": "8 x 6.2 x 0.7 inches", "revision": 4}
+/type/edition /books/OL10693137M 5 2022-12-04T15:45:16.629030 {"publishers": ["Longman"], "identifiers": {"goodreads": ["6445513"]}, "title": "Dance (Galaxies)", "number_of_pages": 32, "isbn_13": ["9780582526983"], "physical_format": "Paperback", "isbn_10": ["0582526981"], "publish_date": "June 14, 1984", "key": "/books/OL10693137M", "authors": [{"key": "/authors/OL3441470A"}], "works": [{"key": "/works/OL9406192W"}], "type": {"key": "/type/edition"}, "subjects": ["ELT graded readers"], "local_id": ["urn:bwbsku:KR-195-983"], "source_records": ["promise:bwb_daily_pallets_2022-08-29"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T15:45:16.629030"}}
+/type/edition /books/OL10693151M 4 2020-08-19T13:23:36.769843 {"publishers": ["Longman"], "weight": "2.9 ounces", "covers": [2523448], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2020-08-19T13:23:36.769843"}, "latest_revision": 4, "key": "/books/OL10693151M", "authors": [{"key": "/authors/OL2694722A"}], "subjects": ["English (ie as school subject)", "For National Curriculum Key Stage 2"], "isbn_13": ["9780582527768"], "source_records": ["bwb:9780582527768"], "title": "Toad of Toad Hall:a Comedy (LILA)", "number_of_pages": 32, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0582527767"], "publish_date": "May 27, 2002", "works": [{"key": "/works/OL8093309W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "7.9 x 6.1 x 0.2 inches", "revision": 4}
+/type/edition /books/OL10693299M 3 2020-08-19T13:26:46.207932 {"publishers": ["Longman"], "physical_format": "Paperback", "source_records": ["bwb:9780582535756"], "title": "Get on Track for FCE (FATR)", "number_of_pages": 176, "isbn_13": ["9780582535756"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0582535751"], "publish_date": "July 23, 2002", "key": "/books/OL10693299M", "last_modified": {"type": "/type/datetime", "value": "2020-08-19T13:26:46.207932"}, "latest_revision": 3, "oclc_numbers": ["51033886"], "works": [{"key": "/works/OL21389316W"}], "type": {"key": "/type/edition"}, "subjects": ["ELT grammars & grammar practice", "ELT: Learning Material & Coursework"], "revision": 3}
+/type/edition /books/OL10693301M 7 2022-10-31T21:19:14.784774 {"publishers": ["Longman"], "identifiers": {"goodreads": ["7354724"]}, "weight": "4.2 ounces", "covers": [2523476], "physical_format": "Paperback", "key": "/books/OL10693301M", "authors": [{"key": "/authors/OL2801516A"}, {"key": "/authors/OL387412A"}, {"key": "/authors/OL3486802A"}], "subjects": ["ELT: Learning Material & Coursework"], "isbn_13": ["9780582535770"], "source_records": ["bwb:9780582535770", "amazon:0582535778"], "title": "Pingu English Course (Pingu Loves English)", "number_of_pages": 32, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0582535778"], "publish_date": "January 28, 2002", "oclc_numbers": ["49269097"], "works": [{"key": "/works/OL21389318W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.7 x 8.2 x 0.1 inches", "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-31T21:19:14.784774"}}
+/type/edition /books/OL10693338M 5 2022-12-07T15:17:26.424030 {"publishers": ["Longman"], "identifiers": {}, "classifications": {}, "title": "Worth a Fortune", "physical_format": "Paperback", "notes": {"type": "/type/text", "value": "Structural Readers"}, "number_of_pages": 32, "isbn_13": ["9780582537217"], "isbn_10": ["0582537215"], "publish_date": "March 1968", "key": "/books/OL10693338M", "authors": [{"key": "/authors/OL2747219A"}], "works": [{"key": "/works/OL8255774W"}], "type": {"key": "/type/edition"}, "subjects": ["ELT graded readers"], "covers": [12789862], "ocaid": "worthfortune0000alex", "lc_classifications": ["PE1127.L6 A4378"], "oclc_numbers": ["2901415"], "source_records": ["ia:worthfortune0000alex", "promise:bwb_daily_pallets_2022-03-17"], "local_id": ["urn:bwbsku:KQ-600-283"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-07T15:17:26.424030"}}
+/type/edition /books/OL10693481M 5 2020-08-19T13:28:07.577903 {"publishers": ["Longman"], "identifiers": {"goodreads": ["7186451"]}, "covers": [2523540], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2020-08-19T13:28:07.577903"}, "latest_revision": 5, "key": "/books/OL10693481M", "authors": [{"key": "/authors/OL2490554A"}], "subjects": ["English language readers", "For National Curriculum Key Stage 2"], "isbn_13": ["9780582551718"], "source_records": ["bwb:9780582551718"], "title": "Meet Mark Alleyne (Pelican Hi Lo Readers)", "number_of_pages": 32, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0582551714"], "publish_date": "May 29, 2002", "works": [{"key": "/works/OL21389363W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10693573M 8 2020-08-19T13:29:03.753234 {"publishers": ["Longman"], "number_of_pages": 16, "covers": [2523579], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2020-08-19T13:29:03.753234"}, "latest_revision": 8, "key": "/books/OL10693573M", "authors": [{"key": "/authors/OL1124351A"}, {"key": "/authors/OL233900A"}, {"key": "/authors/OL2152744A"}, {"key": "/authors/OL2694722A"}], "subjects": ["English language readers", "For National Curriculum Key Stage 1"], "isbn_13": ["9780582557734"], "source_records": ["bwb:9780582557734"], "title": "Story Street (LILA)", "identifiers": {"goodreads": ["922927"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0582557739"], "publish_date": "February 25, 2003", "works": [{"key": "/works/OL5105231W"}], "type": {"key": "/type/edition"}, "revision": 8}
+/type/edition /books/OL10693597M 5 2022-11-15T11:20:54.776031 {"publishers": ["Longman"], "identifiers": {"goodreads": ["6513622"]}, "key": "/books/OL10693597M", "title": "Grammar Practice for Intermediate Students", "number_of_pages": 32, "isbn_13": ["9780582558939"], "physical_format": "Paperback", "isbn_10": ["058255893X"], "publish_date": "April 1986", "authors": [{"key": "/authors/OL1268247A"}, {"key": "/authors/OL1268614A"}], "type": {"key": "/type/edition"}, "subjects": ["ELT grammars & grammar practice"], "works": [{"key": "/works/OL26184116W"}], "covers": [12154724], "ocaid": "grammarpracticef0000walk_d4l5", "lc_classifications": ["PE1112"], "source_records": ["ia:grammarpracticef0000walk_d4l5", "amazon:058255893X"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-15T11:20:54.776031"}}
+/type/edition /books/OL10693600M 2 2009-12-15T00:52:40.098341 {"publishers": ["Longman"], "key": "/books/OL10693600M", "title": "Insight", "isbn_13": ["9780582559103"], "physical_format": "Paperback", "isbn_10": ["0582559103"], "publish_date": "December 31, 1976", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:52:40.098341"}, "authors": [{"key": "/authors/OL2655133A"}], "latest_revision": 2, "works": [{"key": "/works/OL7957212W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10693681M 6 2020-08-19T13:28:43.568662 {"publishers": ["Longman"], "number_of_pages": 16, "covers": [2523620], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2020-08-19T13:28:43.568662"}, "latest_revision": 6, "key": "/books/OL10693681M", "authors": [{"key": "/authors/OL220962A"}, {"key": "/authors/OL233900A"}], "subjects": ["English language reading schemes", "For National Curriculum Key Stage 1", "For National Curriculum Key Stage 2", "For P1-P3 (Scottish)"], "isbn_13": ["9780582573857"], "source_records": ["bwb:9780582573857"], "title": "Story Street (Literacy Land - Story Street)", "identifiers": {"goodreads": ["2044551"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0582573858"], "publish_date": "March 21, 2003", "works": [{"key": "/works/OL21389375W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL10693727M 2 2011-05-04T18:33:50.160237 {"publishers": ["Longman Schools Division (a Pearson Education company)"], "physical_format": "Paperback", "subtitle": "Let's Do Maths.Grd 2 Ppl Bk", "last_modified": {"type": "/type/datetime", "value": "2011-05-04T18:33:50.160237"}, "title": "Let's Do Mathematics", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780582575929"], "isbn_10": ["0582575923"], "latest_revision": 2, "key": "/books/OL10693727M", "authors": [{"key": "/authors/OL3486937A"}, {"key": "/authors/OL3486938A"}], "works": [{"key": "/works/OL9468403W"}], "type": {"key": "/type/edition"}, "subjects": ["For GNVQ (General National Vocational Qualification)"], "revision": 2}
+/type/edition /books/OL10694165M 3 2011-04-28T17:39:14.555038 {"publishers": ["Brill Academic Publishers, Incorporated"], "last_modified": {"type": "/type/datetime", "value": "2011-04-28T17:39:14.555038"}, "title": "Nigeria in History", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0582602424"], "publish_date": "1967", "key": "/books/OL10694165M", "authors": [{"key": "/authors/OL3487140A"}], "latest_revision": 3, "oclc_numbers": ["611613173"], "works": [{"key": "/works/OL9468516W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10694380M 4 2012-06-01T05:13:34.796189 {"publishers": ["Longman Schools Division (a Pearson Education company)"], "classifications": {}, "last_modified": {"type": "/type/datetime", "value": "2012-06-01T05:13:34.796189"}, "title": "Kusempilweni", "notes": {"type": "/type/text", "value": "LLT"}, "identifiers": {}, "isbn_13": ["9780582614512"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0582614511"], "publish_date": "April 26, 1982", "key": "/books/OL10694380M", "authors": [{"key": "/authors/OL1490814A"}], "latest_revision": 4, "works": [{"key": "/works/OL5984777W"}], "type": {"key": "/type/edition"}, "subjects": ["For GNVQ (General National Vocational Qualification)"], "revision": 4}
+/type/edition /books/OL10695009M 3 2011-04-29T03:32:33.996027 {"publishers": ["Longman International Education"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T03:32:33.996027"}, "title": "Primary Mathematics for the Caribbean", "number_of_pages": 64, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780582750708"], "isbn_10": ["0582750709"], "publish_date": "April 1986", "key": "/books/OL10695009M", "authors": [{"key": "/authors/OL3479714A"}], "latest_revision": 3, "oclc_numbers": ["498425730"], "works": [{"key": "/works/OL9453009W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10695038M 3 2022-10-28T00:17:39.245771 {"publishers": ["Addison Wesley Longman ELT Division (a Pearson Education company)"], "title": "Basic Oral Communication Skills (Basic Oral Communication Skills)", "number_of_pages": 64, "isbn_13": ["9780582755345"], "physical_format": "Paperback", "isbn_10": ["0582755344"], "publish_date": "March 1984", "key": "/books/OL10695038M", "authors": [{"key": "/authors/OL3480397A"}, {"key": "/authors/OL3487470A"}], "works": [{"key": "/works/OL5845976W"}], "type": {"key": "/type/edition"}, "source_records": ["amazon:0582755344"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-28T00:17:39.245771"}}
+/type/edition /books/OL10695052M 2 2009-12-15T00:52:40.098341 {"publishers": ["Longman"], "key": "/books/OL10695052M", "title": "English for Oman", "isbn_13": ["9780582756007"], "physical_format": "Paperback", "isbn_10": ["0582756006"], "publish_date": "July 14, 1986", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:52:40.098341"}, "authors": [{"key": "/authors/OL3487428A"}], "latest_revision": 2, "works": [{"key": "/works/OL9468708W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10695090M 5 2023-01-03T10:48:39.194363 {"publishers": ["Longman"], "identifiers": {"goodreads": ["2954158"]}, "title": "Thirty Short Stories", "number_of_pages": 160, "isbn_13": ["9780582760004"], "physical_format": "Paperback", "isbn_10": ["0582760003"], "publish_date": "January 1, 1965", "key": "/books/OL10695090M", "authors": [{"key": "/authors/OL3486854A"}], "works": [{"key": "/works/OL9468345W"}], "type": {"key": "/type/edition"}, "subjects": ["ELT graded readers"], "oclc_numbers": ["30241437"], "source_records": ["marc:harvard_bibliographic_metadata/ab.bib.12.20150123.full.mrc:433104203:736"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2023-01-03T10:48:39.194363"}}
+/type/edition /books/OL10695133M 5 2022-11-15T15:20:46.754740 {"publishers": ["Longman International Education"], "number_of_pages": 56, "physical_format": "Paperback", "key": "/books/OL10695133M", "authors": [{"key": "/authors/OL3329169A"}], "subjects": ["ELT graded readers"], "classifications": {}, "title": "Juma and Abdulla with the Policeman of Oman", "notes": {"type": "/type/text", "value": "Structural Readers"}, "identifiers": {}, "isbn_13": ["9780582764811"], "isbn_10": ["0582764815"], "publish_date": "November 1981", "oclc_numbers": ["16554053"], "works": [{"key": "/works/OL9275138W"}], "type": {"key": "/type/edition"}, "source_records": ["amazon:0582764815"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-15T15:20:46.754740"}}
+/type/edition /books/OL10695304M 4 2020-08-20T23:39:49.859489 {"publishers": ["Longman"], "physical_format": "Paperback", "source_records": ["bwb:9780582774261"], "title": "Squares (PMR)", "number_of_pages": 8, "isbn_13": ["9780582774261"], "covers": [2523756], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0582774268"], "publish_date": "June 14, 2002", "key": "/books/OL10695304M", "last_modified": {"type": "/type/datetime", "value": "2020-08-20T23:39:49.859489"}, "latest_revision": 4, "oclc_numbers": ["62409914"], "works": [{"key": "/works/OL21435994W"}], "type": {"key": "/type/edition"}, "subjects": ["Arithmetic", "For National Curriculum Key Stage 1"], "revision": 4}
+/type/edition /books/OL10695460M 5 2011-03-16T20:48:08.383901 {"publishers": ["Longman"], "number_of_pages": 72, "classifications": {}, "last_modified": {"type": "/type/datetime", "value": "2011-03-16T20:48:08.383901"}, "title": "Notes on Shaffer's \"Royal Hunt of the Sun\"", "physical_format": "Paperback", "notes": {"type": "/type/text", "value": "York Notes"}, "identifiers": {"goodreads": ["2497555"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780582781894"], "isbn_10": ["0582781892"], "publish_date": "July 1982", "key": "/books/OL10695460M", "authors": [{"key": "/authors/OL2801215A"}], "latest_revision": 5, "works": [{"key": "/works/OL8401309W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10695678M 3 2010-04-24T18:07:47.973104 {"publishers": ["Addison-Wesley"], "languages": [{"key": "/languages/eng"}], "key": "/books/OL10695678M", "weight": "2.4 ounces", "title": "Listening and Speaking Out Advanced", "identifiers": {"goodreads": ["713743"]}, "isbn_13": ["9780582797383"], "physical_format": "Hardcover", "isbn_10": ["0582797381"], "publish_date": "June 1940", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:07:47.973104"}, "authors": [{"key": "/authors/OL1194163A"}, {"key": "/authors/OL2776548A"}, {"key": "/authors/OL3310381A"}], "latest_revision": 3, "type": {"key": "/type/edition"}, "subjects": ["English as a Second Language", "Children's Baby - Foreign Language"], "physical_dimensions": "4.5 x 2.8 x 0.8 inches", "revision": 3}
+/type/edition /books/OL10695863M 5 2022-11-01T16:40:59.238091 {"publishers": ["Longman"], "weight": "1.1 pounds", "covers": [2523902], "physical_format": "Paperback", "key": "/books/OL10695863M", "authors": [{"key": "/authors/OL3435221A"}, {"key": "/authors/OL3486867A"}], "subjects": ["ELT examination practice tests", "Cambridge Level 2 Preliminary English Test (PET)", "Study guides, home study & revision notes", "English", "Language"], "edition_name": "New Ed edition", "languages": [{"key": "/languages/eng"}], "source_records": ["bwb:9780582824799", "amazon:0582824796"], "title": "Pet Gold Exam Maximiser with Key (Gold)", "number_of_pages": 160, "isbn_13": ["9780582824799"], "isbn_10": ["0582824796"], "publish_date": "February 12, 2004", "oclc_numbers": ["54786517"], "works": [{"key": "/works/OL21392867W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.9 x 8.4 x 0.4 inches", "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-01T16:40:59.238091"}}
+/type/edition /books/OL10695928M 2 2009-12-15T00:52:41.494381 {"publishers": ["Longman Cheshire"], "key": "/books/OL10695928M", "title": "The World of Science - Book One", "isbn_13": ["9780582867888"], "physical_format": "Paperback", "isbn_10": ["0582867886"], "publish_date": "1988", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:52:41.494381"}, "authors": [{"key": "/authors/OL3487396A"}], "latest_revision": 2, "works": [{"key": "/works/OL9468680W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10696178M 1 2008-04-30T09:38:13.731961 {"physical_format": "Hardcover", "subtitle": "Record of World Events", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["FT Pharmaceuticals"], "title": "Keesing's Contemporary Archives", "isbn_13": ["9780582905511"], "isbn_10": ["0582905516"], "publish_date": "April 1, 1950", "key": "/books/OL10696178M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10696713M 7 2022-12-14T07:09:29.146405 {"title": "My Fifth Enid Blyton Bk", "authors": [{"key": "/authors/OL233814A"}], "publish_date": "August 2, 1984", "publishers": ["Armada"], "physical_format": "Hardcover", "edition_name": "New Ed edition", "isbn_13": ["9780583307079"], "isbn_10": ["0583307078"], "oclc_numbers": ["12479763"], "type": {"key": "/type/edition"}, "source_records": ["amazon:0583307078", "ia:myfifthenidblyto0000blyt", "promise:bwb_daily_pallets_2022-04-20"], "ocaid": "myfifthenidblyto0000blyt", "key": "/books/OL10696713M", "number_of_pages": 96, "works": [{"key": "/works/OL1949058W"}], "local_id": ["urn:bwbsku:KQ-910-392"], "covers": [13076839], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-14T07:09:29.146405"}}
+/type/edition /books/OL10696968M 7 2022-12-09T15:58:18.160569 {"publishers": ["P/B"], "physical_format": "Hardcover", "title": "A QUIVER FULL OF ARROWS.", "identifiers": {"librarything": ["5070652"], "goodreads": ["157151"]}, "publish_date": "1993", "key": "/books/OL10696968M", "works": [{"key": "/works/OL1807141W"}], "type": {"key": "/type/edition"}, "covers": [10620183], "source_records": ["ia:quiverfullofarro0000arch_o1h1", "promise:bwb_daily_pallets_2020-11-19"], "ocaid": "quiverfullofarro0000arch_o1h1", "isbn_10": ["0583500854"], "isbn_13": ["9780583500852"], "classifications": {}, "local_id": ["urn:bwbsku:KO-390-289"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T15:58:18.160569"}}
+/type/edition /books/OL10697856M 2 2009-12-15T00:52:42.704180 {"publishers": ["Scholastic"], "key": "/books/OL10697856M", "title": "Bees, Bugs and Bettles Arrow Book of Insects", "isbn_13": ["9780590025652"], "physical_format": "Paperback", "isbn_10": ["0590025651"], "publish_date": "January 2000", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:52:42.704180"}, "authors": [{"key": "/authors/OL3488013A"}], "latest_revision": 2, "works": [{"key": "/works/OL9469249W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10698467M 6 2010-08-17T03:56:47.222221 {"publishers": ["Scholastic"], "languages": [{"key": "/languages/eng"}], "number_of_pages": 96, "subtitle": "Teacher's guide", "last_modified": {"type": "/type/datetime", "value": "2010-08-17T03:56:47.222221"}, "title": "Scholastic phonics readers, books 37-72", "identifiers": {"goodreads": ["6194387"], "librarything": ["2880369"]}, "isbn_13": ["9780590133982"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Unknown Binding", "isbn_10": ["0590133985"], "publish_date": "1997", "key": "/books/OL10698467M", "authors": [{"key": "/authors/OL68743A"}], "latest_revision": 6, "works": [{"key": "/works/OL815993W"}], "type": {"key": "/type/edition"}, "subjects": ["Phonetic method", "Reading"], "revision": 6}
+/type/edition /books/OL10698622M 10 2022-12-17T03:23:37.579675 {"publishers": ["Scholastic Point"], "number_of_pages": 224, "weight": "4.3 ounces", "covers": [2524205], "physical_format": "Paperback", "key": "/books/OL10698622M", "authors": [{"key": "/authors/OL2704509A"}], "subjects": ["Crime & mystery"], "classifications": {}, "title": "Losers", "notes": {"type": "/type/text", "value": "Point Crime: The Beat"}, "identifiers": {"librarything": ["7582422"], "goodreads": ["2735633"]}, "isbn_13": ["9780590190107"], "isbn_10": ["0590190105"], "publish_date": "May 16, 1997", "works": [{"key": "/works/OL8122919W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "7 x 4.4 x 0.6 inches", "ocaid": "losers0000belb", "oclc_numbers": ["43218648"], "source_records": ["ia:losers0000belb", "promise:bwb_daily_pallets_2022-03-17", "bwb:9780590190107"], "local_id": ["urn:bwbsku:KQ-523-319"], "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T03:23:37.579675"}}
+/type/edition /books/OL10698997M 9 2022-12-17T20:33:06.001247 {"publishers": ["Scholastic"], "number_of_pages": 120, "weight": "12.5 ounces", "covers": [2524374], "physical_format": "Paperback", "key": "/books/OL10698997M", "authors": [{"key": "/authors/OL1387763A"}], "ocaid": "americanhistoryt0000buck", "subjects": ["Elementary", "Teaching Methods & Materials - Workbooks", "Education / Teaching", "Education"], "isbn_13": ["9780590266086"], "source_records": ["ia:americanhistoryt0000buck", "bwb:9780590266086"], "title": "American History Time Lines (Grades 4-8)", "identifiers": {"librarything": ["2970092"], "goodreads": ["377329"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["059026608X"], "publish_date": "January 1, 1999", "oclc_numbers": ["35779715"], "works": [{"key": "/works/OL5702322W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.9 x 8.4 x 0.4 inches", "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T20:33:06.001247"}}
+/type/edition /books/OL10699390M 4 2011-06-08T02:17:37.164075 {"publishers": ["Scholastic Book Services"], "physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2011-06-08T02:17:37.164075"}, "title": "All-pro basketball stars '82", "number_of_pages": 92, "isbn_13": ["9780590323666"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0590323660"], "publish_date": "1982", "key": "/books/OL10699390M", "authors": [{"key": "/authors/OL50229A"}], "latest_revision": 4, "oclc_numbers": ["8374853"], "works": [{"key": "/works/OL648172W"}], "type": {"key": "/type/edition"}, "subjects": ["Basketball", "United States"], "revision": 4}
+/type/edition /books/OL10699747M 5 2011-04-29T09:17:59.958903 {"publishers": ["A Trumpet Club Original Book/ The Trumpet Club"], "subtitle": "Over 150 Lunchroom Jokes & Riddles", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T09:17:59.958903"}, "title": "Spitballs & Spaghetti", "contributions": ["Daryll Collins (Illustrator)"], "identifiers": {"goodreads": ["2539829"]}, "isbn_13": ["9780590341530"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0590341537"], "publish_date": "1997", "key": "/books/OL10699747M", "authors": [{"key": "/authors/OL3488253A"}], "latest_revision": 5, "oclc_numbers": ["37455931"], "works": [{"key": "/works/OL9469578W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10699813M 6 2012-06-10T02:19:21.678209 {"publishers": ["Scholastic, Inc"], "identifiers": {"goodreads": ["4236341"]}, "physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2012-06-10T02:19:21.678209"}, "latest_revision": 6, "key": "/books/OL10699813M", "authors": [{"key": "/authors/OL1709094A"}], "subjects": ["High interest-low vocabulary books", "Reading (Elementary)"], "isbn_13": ["9780590345088"], "classifications": {}, "title": "Friend from the stars: And other stories", "notes": {"type": "/type/text", "value": "Quest : a Scholastic reading improvement series"}, "number_of_pages": 184, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0590345087"], "publish_date": "1988", "works": [{"key": "/works/OL6445196W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL10699833M 2 2011-04-30T10:09:11.319135 {"publishers": ["Scholastic Inc."], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2011-04-30T10:09:11.319135"}, "title": "Correlated Language Arts teaching guide (Scope English Level three)", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780590345972"], "physical_format": "Paperback", "isbn_10": ["0590345974"], "publish_date": "1986", "key": "/books/OL10699833M", "latest_revision": 2, "oclc_numbers": ["15129005"], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10700130M 7 2022-12-08T09:19:03.599500 {"publishers": ["Scholastic Paperbacks"], "weight": "3.2 ounces", "physical_format": "Paperback", "key": "/books/OL10700130M", "authors": [{"key": "/authors/OL2802903A"}], "contributions": ["Merle Smith (Illustrator)"], "subjects": ["Fossils", "General", "Children's 4-8", "Dinosaurs", "Juvenile literature", "Spanish language materials", "Children: Grades 2-3"], "isbn_13": ["9780590406475"], "title": "Los Dinosaurios Gigantes", "identifiers": {"librarything": ["4348595"], "goodreads": ["4672103"]}, "languages": [{"key": "/languages/spa"}], "isbn_10": ["0590406477"], "publish_date": "June 1973", "oclc_numbers": ["7294976"], "works": [{"key": "/works/OL8405019W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10 x 8 x 0.5 inches", "local_id": ["urn:bwbsku:P7-AQX-415"], "source_records": ["promise:bwb_daily_pallets_2021-06-03"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-08T09:19:03.599500"}}
+/type/edition /books/OL10700724M 2 2022-12-17T19:04:35.809390 {"languages": [{"key": "/languages/eng"}], "physical_format": "Paperback", "publishers": ["Instructor Books"], "title": "Artfully Easy", "isbn_13": ["9780590490191"], "isbn_10": ["0590490192"], "publish_date": "January 1983", "key": "/books/OL10700724M", "type": {"key": "/type/edition"}, "subjects": ["Art"], "works": [{"key": "/works/OL32466328W"}], "source_records": ["bwb:9780590490191"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T19:04:35.809390"}}
+/type/edition /books/OL1070084M 2 2020-11-18T04:57:52.418300 {"publishers": ["Khoa ho\u0323c xa\u0303 ho\u0323\u0302i"], "subject_place": ["Vietnam, Northern"], "lc_classifications": ["HC444 .N445 1993"], "latest_revision": 2, "key": "/books/OL1070084M", "publish_places": ["Ha\u0300 No\u0323\u0302i"], "contributions": ["Be\u0301\u0302, Vie\u0301\u0302t \u0110a\u0300\u0306ng.", "Vie\u0323\u0302n da\u0302n to\u0323\u0302c ho\u0323c (Vietnam)"], "pagination": "234 p. ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:106134908:891"], "title": "Nh\u01b0\u0303ng bie\u0301\u0302n \u0111o\u0309\u0302i ve\u0300\u0302 kinh te\u0301\u0302, va\u0306n ho\u0301a \u01a1\u0309 ca\u0301c ti\u0309nh mie\u0300\u0302n nu\u0301i phi\u0301a Ba\u0301\u0306c", "lccn": ["93945791"], "notes": {"type": "/type/text", "value": "Includes bibliographical references."}, "number_of_pages": 234, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/vie"}], "subjects": ["Vietnam, Northern -- Economic conditions.", "Vietnam, Northern -- Social conditions."], "publish_date": "1993", "publish_country": "vm ", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T04:57:52.418300"}, "by_statement": "Vie\u0323\u0302n khoa ho\u0323c xa\u0303 ho\u0323\u0302i Vie\u0323\u0302t Nam, Vie\u0323\u0302n da\u0302n to\u0323\u0302c ho\u0323c ; Be\u0301\u0302 Vie\u0301\u0302t \u0110a\u0300\u0306ng chu\u0309 bie\u0302n.", "works": [{"key": "/works/OL23532802W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10700991M 4 2022-12-17T04:30:22.200082 {"publishers": ["Scholastic Ltd"], "physical_format": "Paperback", "subtitle": "Writing Non-fiction (Essentials)", "title": "English - Key Stage 2", "number_of_pages": 32, "isbn_13": ["9780590531672"], "isbn_10": ["0590531670"], "publish_date": "April 1994", "key": "/books/OL10700991M", "authors": [{"key": "/authors/OL1479626A"}, {"key": "/authors/OL2668439A"}, {"key": "/authors/OL3488412A"}, {"key": "/authors/OL3488413A"}], "oclc_numbers": ["32017757"], "type": {"key": "/type/edition"}, "subjects": ["English language: specific skills"], "works": [{"key": "/works/OL31744469W"}], "local_id": ["urn:bwbsku:KP-110-031"], "source_records": ["promise:bwb_daily_pallets_2021-03-03", "bwb:9780590531672"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T04:30:22.200082"}}
+/type/edition /books/OL1070109M 3 2020-11-18T04:58:08.873754 {"publishers": ["Markas Besar Angkatan Bersenjata, Republik Indonesia, Lembaga Pertahanan Nasional"], "description": {"type": "/type/text", "value": "Management of natural resources towards the development continuity in Indonesia."}, "physical_format": "Microform", "lc_classifications": ["Microfiche 93/51004 (H)"], "latest_revision": 3, "key": "/books/OL1070109M", "publish_places": ["[Jakarta]"], "contributions": ["Lembaga Pertahanan Nasional (Indonesia)"], "pagination": "58 leaves", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:106156763:986"], "title": "Pengelolaan sumber kekayaan alam yang menjamin pembangunan nasional yang berkesinambungan", "lccn": ["93945829"], "notes": {"type": "/type/text", "value": "Microfiche. Jakarta : Library of Congress Office ; Washington, D.C. : Library of Congress Photoduplication Service, 1995. 1 microfiche ; 11 x 15 cm."}, "number_of_pages": 58, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/ind"}], "last_modified": {"type": "/type/datetime", "value": "2020-11-18T04:58:08.873754"}, "publish_date": "1993", "publish_country": "io ", "by_statement": "oleh kelompok C.", "works": [{"key": "/works/OL23532819W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10701229M 2 2010-04-13T06:13:59.826084 {"publishers": ["Scholastic"], "subtitle": "2 in 1 Special (Tots TV Story Books)", "weight": "9 ounces", "isbn_10": ["0590541846"], "number_of_pages": 1, "isbn_13": ["9780590541848"], "covers": [2524595], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:13:59.826084"}, "publish_date": "October 20, 1994", "latest_revision": 2, "key": "/books/OL10701229M", "authors": [{"key": "/authors/OL3488113A"}, {"key": "/authors/OL3488449A"}], "title": "Tots TV Bind-up", "subjects": ["Fiction"], "type": {"key": "/type/edition"}, "physical_dimensions": "7.5 x 7.1 x 0.4 inches", "revision": 2}
+/type/edition /books/OL10701330M 2 2011-04-28T22:39:50.550318 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-28T22:39:50.550318"}, "latest_revision": 2, "key": "/books/OL10701330M", "title": "Time Detectives: Managing Information, Finding Information in Stories and Artifacts Brings the Past to Life (Literacy-At-Work Book: Reading and Writing Practice)", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780590547703"], "isbn_10": ["0590547704"], "oclc_numbers": ["466236338"], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10701372M 6 2022-12-17T04:58:45.402615 {"publishers": ["Scholastic Hippo"], "source_records": ["amazon:0590550314", "ia:eurofunpack0000gane", "promise:bwb_daily_pallets_2020-11-19", "bwb:9780590550314"], "title": "The Euro Fun Pack (Hippo Activity)", "contributions": ["Kim Blundell (Illustrator)"], "number_of_pages": 1, "isbn_13": ["9780590550314"], "physical_format": "Paperback", "isbn_10": ["0590550314"], "publish_date": "June 19, 1992", "key": "/books/OL10701372M", "authors": [{"key": "/authors/OL18809A"}], "oclc_numbers": ["31076274"], "works": [{"key": "/works/OL442727W"}], "type": {"key": "/type/edition"}, "covers": [10618970], "ocaid": "eurofunpack0000gane", "local_id": ["urn:bwbsku:ko-434-549"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T04:58:45.402615"}}
+/type/edition /books/OL10701706M 3 2011-04-26T07:33:14.133161 {"publishers": ["scholastic"], "last_modified": {"type": "/type/datetime", "value": "2011-04-26T07:33:14.133161"}, "title": "Old Black Fly", "identifiers": {"librarything": ["322135"]}, "isbn_13": ["9780590610780"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Audio Cassette", "isbn_10": ["0590610783"], "publish_date": "1993", "key": "/books/OL10701706M", "latest_revision": 3, "oclc_numbers": ["27426512"], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10701871M 7 2022-12-17T14:02:14.613063 {"publishers": ["Scholastic"], "subtitle": "Claudia and the Great Search/Mary Anne and Too Many Boys/Stacey and the Mystery of Stoneybrook/Jessi's Baby-S", "weight": "1 pounds", "covers": [5072185], "edition_name": "Boxed edition", "physical_format": "Paperback", "key": "/books/OL10701871M", "authors": [{"key": "/authors/OL2703437A"}], "subjects": ["General", "Children's Books/Ages 9-12 Fiction", "Children: Grades 4-6"], "isbn_13": ["9780590636698"], "title": "The Baby-Sitters Club", "identifiers": {"goodreads": ["523642"], "librarything": ["5776014"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0590636693"], "publish_date": "October 1990", "works": [{"key": "/works/OL8117434W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8 x 5.5 x 2 inches", "source_records": ["bwb:9780590636698"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T14:02:14.613063"}}
+/type/edition /books/OL10701972M 9 2022-12-17T02:53:28.562372 {"publishers": ["Scholastic Press"], "identifiers": {"librarything": ["9552102"]}, "covers": [2524774], "physical_format": "Paperback", "key": "/books/OL10701972M", "authors": [{"key": "/authors/OL3092613A"}], "subjects": ["Fiction"], "classifications": {}, "title": "Mezzer's Baby", "notes": {"type": "/type/text", "value": "Press Younger Fiction"}, "number_of_pages": 144, "isbn_13": ["9780590660983"], "isbn_10": ["0590660985"], "publish_date": "August 20, 1999", "oclc_numbers": ["42309770"], "works": [{"key": "/works/OL8940029W"}], "type": {"key": "/type/edition"}, "ocaid": "mezzersbaby0000paul", "source_records": ["ia:mezzersbaby0000paul", "promise:bwb_daily_pallets_2020-11-19", "bwb:9780590660983"], "local_id": ["urn:bwbsku:KN-843-160"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T02:53:28.562372"}}
+/type/edition /books/OL1070250M 3 2020-11-18T04:59:41.801953 {"publishers": ["Khoa ho\u0323c xa\u0303 ho\u0323\u0302i"], "subtitle": "t\u01b0\u0300 nguo\u0300\u0302n go\u0301\u0302c \u0111e\u0301\u0302n tr\u01b0\u0301\u01a1c ca\u0301ch ma\u0323ng tha\u0301ng Ta\u0301m 1945", "subject_place": ["Vietnam"], "lc_classifications": ["JQ824 .V8 1993"], "latest_revision": 3, "key": "/books/OL1070250M", "authors": [{"key": "/authors/OL313714A"}], "publish_places": ["Ha\u0300 No\u0323\u0302i"], "languages": [{"key": "/languages/vie"}], "pagination": "200 p. ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:106276624:819"], "title": "Li\u0323ch s\u01b0\u0309 nha\u0300 n\u01b0\u01a1\u0301c va\u0300 pha\u0301p lua\u0323\u0302t Vie\u0323\u0302t Nam", "lccn": ["93946051"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 195-198)."}, "number_of_pages": 200, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "edition_name": "In la\u0300\u0302n th\u01b0\u0301 2, co\u0301 chi\u0309nh ly\u0301, bo\u0309\u0302 sung.", "subjects": ["Law -- Vietnam -- History.", "Vietnam -- Politics and government."], "publish_date": "1993", "publish_country": "vm ", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T04:59:41.801953"}, "by_statement": "Vu\u0303 Thi\u0323 Phu\u0323ng.", "works": [{"key": "/works/OL2329055W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10702768M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Spiral-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Scholastics"], "title": "What An Idea Teacher's SourceBook Grade 4, Unit 2", "isbn_13": ["9780590906593"], "isbn_10": ["0590906593"], "publish_date": "1996", "key": "/books/OL10702768M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10703633M 5 2011-04-28T02:18:46.794901 {"publishers": ["Iuniverse Inc"], "identifiers": {"librarything": ["2882537"]}, "weight": "7.2 ounces", "covers": [2525399], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-28T02:18:46.794901"}, "latest_revision": 5, "key": "/books/OL10703633M", "authors": [{"key": "/authors/OL1433682A"}], "subjects": ["Action & Adventure", "Science Fiction, Fantasy, & Magic", "Juvenile Fiction", "Children's 9-12 - Fiction - Fantasy", "Fantasy fiction", "Children: Young Adult (Gr. 7-9)"], "edition_name": "1ST edition", "languages": [{"key": "/languages/eng"}], "title": "Mystic Uncle And The Magical Bridge", "number_of_pages": 116, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780595097463"], "isbn_10": ["0595097464"], "publish_date": "June 2000", "oclc_numbers": ["61331056"], "works": [{"key": "/works/OL5843972W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "7.2 x 5.8 x 0.2 inches", "revision": 5}
+/type/edition /books/OL10703640M 6 2011-04-25T14:52:05.076562 {"publishers": ["Writers Club Press"], "identifiers": {"goodreads": ["1001698"]}, "weight": "1.7 pounds", "covers": [2525406], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-25T14:52:05.076562"}, "latest_revision": 6, "key": "/books/OL10703640M", "authors": [{"key": "/authors/OL3488921A"}], "subjects": ["General & Literary Fiction", "General", "Suspense", "Fiction", "Fiction - General", "Mystery/Suspense"], "languages": [{"key": "/languages/eng"}], "title": "Til Death Do Us Part", "number_of_pages": 444, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780595097630"], "isbn_10": ["0595097634"], "publish_date": "July 2000", "oclc_numbers": ["45259473"], "works": [{"key": "/works/OL9470395W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 1.1 inches", "revision": 6}
+/type/edition /books/OL10704714M 5 2011-04-30T05:48:30.069740 {"publishers": ["Writer's Showcase Press"], "number_of_pages": 189, "subtitle": "And Other Short Stories", "weight": "12.6 ounces", "covers": [2526483], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-30T05:48:30.069740"}, "latest_revision": 5, "key": "/books/OL10704714M", "authors": [{"key": "/authors/OL3489426A"}], "subjects": ["Short stories", "General", "Short Stories (single author)", "Fiction", "Fiction - General"], "isbn_13": ["9780595167470"], "title": "Requiem", "identifiers": {"librarything": ["6837229"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0595167470"], "publish_date": "April 2001", "oclc_numbers": ["48614758"], "works": [{"key": "/works/OL9471012W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.6 inches", "revision": 5}
+/type/edition /books/OL10705018M 7 2020-08-19T02:23:44.557064 {"publishers": ["Writers Club Press"], "number_of_pages": 445, "subtitle": "A Modern Psychological Suspense Thriller", "weight": "1.4 pounds", "covers": [2526797], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2020-08-19T02:23:44.557064"}, "latest_revision": 7, "key": "/books/OL10705018M", "authors": [{"key": "/authors/OL3489587A"}], "subjects": ["General & Literary Fiction", "Psychological", "Mystery & Detective - General", "Fiction", "Fiction - Psychological Suspense", "Mystery/Suspense"], "isbn_13": ["9780595180158"], "source_records": ["bwb:9780595180158"], "title": "The Triskelion", "identifiers": {"goodreads": ["2155931"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0595180159"], "publish_date": "April 2001", "oclc_numbers": ["53121362"], "works": [{"key": "/works/OL9471206W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.8 x 5.8 x 1.2 inches", "revision": 7}
+/type/edition /books/OL10705027M 7 2021-11-02T05:43:21.531599 {"publishers": ["Writers Club Press"], "identifiers": {"goodreads": ["2377418"]}, "subtitle": "And Other Stories", "weight": "11 ounces", "covers": [2526806], "physical_format": "Paperback", "key": "/books/OL10705027M", "authors": [{"key": "/authors/OL3105111A"}], "subjects": ["Short stories", "Fiction", "Fiction - Horror", "Mystery/Suspense", "Horror - General", "Short Stories (single author)", "Suspense"], "isbn_13": ["9780595180523"], "title": "The Old Womans Cat", "number_of_pages": 163, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0595180523"], "publish_date": "May 2001", "oclc_numbers": ["50806468"], "works": [{"key": "/works/OL8957631W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.5 inches", "source_records": ["bwb:9780595180523"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-11-02T05:43:21.531599"}}
+/type/edition /books/OL10705306M 5 2010-04-24T18:08:13.747017 {"publishers": ["Writers Club Press"], "languages": [{"key": "/languages/eng"}], "identifiers": {"goodreads": ["6345888"]}, "weight": "8.5 ounces", "title": "Candy", "number_of_pages": 147, "isbn_13": ["9780595191482"], "covers": [2527085], "physical_format": "Paperback", "authors": [{"key": "/authors/OL2716186A"}], "isbn_10": ["0595191487"], "latest_revision": 5, "key": "/books/OL10705306M", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:08:13.747017"}, "publish_date": "July 2001", "works": [{"key": "/works/OL8147971W"}], "type": {"key": "/type/edition"}, "subjects": ["General & Literary Fiction", "General", "Romance - Contemporary", "Fiction", "Fiction - General", "Romance: Modern"], "physical_dimensions": "8.5 x 6.7 x 0.4 inches", "revision": 5}
+/type/edition /books/OL10705794M 4 2022-12-10T08:23:14.346072 {"publishers": ["Writer's Showcase Press"], "number_of_pages": 276, "subtitle": "An Affair of the Heart", "weight": "15.7 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0595209661"], "title": "Discovering Your Sexual/Spiritual Power", "isbn_13": ["9780595209668"], "covers": [2527574], "physical_format": "Paperback", "key": "/books/OL10705794M", "authors": [{"key": "/authors/OL3489948A"}], "publish_date": "December 2001", "works": [{"key": "/works/OL9471675W"}], "type": {"key": "/type/edition"}, "subjects": ["General & Literary Fiction", "General", "Inspiration & Personal Growth", "Body, Mind & Spirit", "Fiction - General", "New Age"], "physical_dimensions": "9 x 6 x 0.7 inches", "local_id": ["urn:bwbsku:115-BAB-977"], "source_records": ["promise:bwb_daily_pallets_2020-06-04"], "identifiers": {"amazon": [""]}, "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T08:23:14.346072"}}
+/type/edition /books/OL10705805M 3 2010-04-13T06:13:59.826084 {"publishers": ["Writers Club Press"], "number_of_pages": 112, "subtitle": "A Collection of Five Short Works", "weight": "6.6 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0595210104"], "title": "For a Love of Laughter and Starfish", "isbn_13": ["9780595210107"], "covers": [2527585], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:13:59.826084"}, "latest_revision": 3, "key": "/books/OL10705805M", "authors": [{"key": "/authors/OL3489952A"}], "publish_date": "December 2001", "works": [{"key": "/works/OL9471680W"}], "type": {"key": "/type/edition"}, "subjects": ["Primary / junior schools", "Elementary", "Essays", "Short Stories (single author)", "Fiction", "Education / Teaching"], "physical_dimensions": "9 x 6 x 0.3 inches", "revision": 3}
+/type/edition /books/OL10706042M 5 2010-04-24T18:08:13.747017 {"publishers": ["Writer's Showcase Press"], "number_of_pages": 288, "subtitle": " Tammy and Rama", "weight": "1 pounds", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0595218393"], "identifiers": {"goodreads": ["1702616"]}, "isbn_13": ["9780595218394"], "covers": [2527823], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:08:13.747017"}, "latest_revision": 5, "key": "/books/OL10706042M", "authors": [{"key": "/authors/OL3490059A"}], "publish_date": "April 8, 2002", "title": "The Compass Has Eight Points: Book One", "works": [{"key": "/works/OL9471813W"}], "type": {"key": "/type/edition"}, "subjects": ["Fantasy", "Science fiction", "Juvenile Fiction", "Children's Books/Ages 9-12 Fiction", "Children: Young Adult (Gr. 7-9)", "Horror & Ghost Stories", "Science Fiction, Fantasy, & Magic", "Juvenile Fiction / Horror & Ghost Stories", "Juvenile Fiction-Science Fiction, Fantasy, & Magic", "General"], "physical_dimensions": "9 x 6 x 0.8 inches", "revision": 5}
+/type/edition /books/OL10706043M 7 2021-10-04T03:59:36.537016 {"publishers": ["Writers Club Press"], "identifiers": {"goodreads": ["1953062"], "librarything": ["4203522"]}, "subtitle": "A Novel of Women at Gettysburg", "weight": "14.6 ounces", "covers": [2527824], "physical_format": "Paperback", "key": "/books/OL10706043M", "authors": [{"key": "/authors/OL3019350A"}], "subjects": ["War fiction", "Historical - General", "War & Military", "Fiction", "Fiction - Historical"], "isbn_13": ["9780595218417"], "title": "Fixin' Things", "number_of_pages": 280, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0595218415"], "publish_date": "February 2002", "works": [{"key": "/works/OL8824926W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.1 x 6 x 0.7 inches", "source_records": ["bwb:9780595218417"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-10-04T03:59:36.537016"}}
+/type/edition /books/OL10706076M 4 2020-08-19T04:22:16.635067 {"publishers": ["Writers Club Press"], "weight": "13.6 ounces", "covers": [2527857], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2020-08-19T04:22:16.635067"}, "latest_revision": 4, "key": "/books/OL10706076M", "authors": [{"key": "/authors/OL3490073A"}], "subjects": ["Adventure / thriller", "Medical", "Suspense", "Fiction", "Fiction - Psychological Suspense"], "isbn_13": ["9780595219261"], "source_records": ["bwb:9780595219261"], "title": "Pulling Power", "number_of_pages": 234, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0595219268"], "publish_date": "March 2002", "works": [{"key": "/works/OL9471829W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.1 x 6.1 x 0.6 inches", "revision": 4}
+/type/edition /books/OL10706481M 4 2010-04-13T06:13:59.826084 {"publishers": ["Writers Club Press"], "weight": "6.2 ounces", "covers": [2528263], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:13:59.826084"}, "latest_revision": 4, "key": "/books/OL10706481M", "authors": [{"key": "/authors/OL2078202A"}], "subjects": ["Horror & ghost stories, chillers", "Horror & Ghost Stories", "Juvenile Fiction / Horror & Ghost Stories", "Juvenile Fiction", "Children's Books/Baby-Preschool", "Children: Grades 3-4"], "isbn_13": ["9780595237265"], "source_records": ["amazon:0595237266"], "title": "Summer Camp Race of Horror", "number_of_pages": 112, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0595237266"], "publish_date": "July 15, 2002", "works": [{"key": "/works/OL150850W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.2 inches", "revision": 4}
+/type/edition /books/OL10706518M 6 2010-04-24T18:08:13.747017 {"publishers": ["Writers Club Press"], "languages": [{"key": "/languages/eng"}], "identifiers": {"goodreads": ["2570962"]}, "weight": "13.4 ounces", "title": "The Evil We Do", "number_of_pages": 256, "isbn_13": ["9780595239184"], "covers": [2528300], "physical_format": "Paperback", "authors": [{"key": "/authors/OL1716969A"}], "isbn_10": ["0595239188"], "latest_revision": 6, "key": "/books/OL10706518M", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:08:13.747017"}, "publish_date": "August 2002", "works": [{"key": "/works/OL6470489W"}], "type": {"key": "/type/edition"}, "subjects": ["General & Literary Fiction", "General", "Fiction", "Fiction - General"], "physical_dimensions": "9 x 6.1 x 0.7 inches", "revision": 6}
+/type/edition /books/OL1070658M 3 2020-11-18T05:04:20.503943 {"publishers": ["Thanh nie\u0302n"], "subtitle": "ta\u0323\u0302p truye\u0323\u0302n li\u0323ch s\u01b0\u0309 va\u0300 danh nha\u0302n", "lc_classifications": ["PL4378.9.N444 D36 1993"], "latest_revision": 3, "key": "/books/OL1070658M", "authors": [{"key": "/authors/OL98308A"}], "publish_places": ["Ha\u0300 No\u0323\u0302i"], "pagination": "278 p. ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:106662779:539"], "title": "Da\u0323o ch\u01a1i nu\u0301i Du\u0323c Thu\u0301y", "lccn": ["93947283"], "notes": {"type": "/type/text", "value": "Short stories."}, "number_of_pages": 278, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/vie"}], "last_modified": {"type": "/type/datetime", "value": "2020-11-18T05:04:20.503943"}, "publish_date": "1993", "publish_country": "vm ", "by_statement": "Ngo\u0302 Va\u0306n Phu\u0301.", "works": [{"key": "/works/OL1026651W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10706710M 6 2021-11-02T05:44:44.934255 {"publishers": ["Writers Club Press"], "languages": [{"key": "/languages/eng"}], "identifiers": {"goodreads": ["4496441"]}, "weight": "7 ounces", "title": "America", "number_of_pages": 112, "isbn_13": ["9780595253180"], "covers": [2528492], "physical_format": "Paperback", "authors": [{"key": "/authors/OL3490394A"}], "isbn_10": ["0595253180"], "key": "/books/OL10706710M", "publish_date": "October 2002", "works": [{"key": "/works/OL9472207W"}], "type": {"key": "/type/edition"}, "subjects": ["Adventure / thriller", "Literary", "Suspense", "Fiction - General", "Fiction"], "physical_dimensions": "9 x 6 x 0.3 inches", "source_records": ["bwb:9780595253180"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-11-02T05:44:44.934255"}}
+/type/edition /books/OL10706770M 6 2010-08-17T04:00:15.233694 {"publishers": ["Writer's Showcase Press"], "identifiers": {"goodreads": ["5794790"], "librarything": ["2931630"]}, "weight": "8.6 ounces", "covers": [2528552], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-08-17T04:00:15.233694"}, "latest_revision": 6, "key": "/books/OL10706770M", "authors": [{"key": "/authors/OL3490427A"}], "subjects": ["Adventure / thriller", "General & Literary Fiction", "Christian - General", "Literary", "Psychological", "Fiction / Literary", "Fiction-Psychological", "Religious - General", "Fiction", "Fiction - General"], "isbn_13": ["9780595258017"], "title": "Sugar Pill", "number_of_pages": 160, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0595258018"], "publish_date": "December 4, 2002", "works": [{"key": "/works/OL9472249W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.4 inches", "revision": 6}
+/type/edition /books/OL10707362M 4 2018-07-31T14:50:39.704756 {"publishers": ["Iuniverse Inc"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2018-07-31T14:50:39.704756"}, "title": "International Language Environment Guide", "number_of_pages": 234, "isbn_13": ["9780595285686"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0595285686"], "publish_date": "January 2005", "key": "/books/OL10707362M", "authors": [{"key": "/authors/OL2653809A"}], "latest_revision": 4, "oclc_numbers": ["255178754"], "works": [{"key": "/works/OL8020773W"}], "type": {"key": "/type/edition"}, "subjects": ["Programming - General", "Programming Languages - General", "Programming Languages - Java", "Computers", "Computer Books: Languages"], "revision": 4}
+/type/edition /books/OL10707419M 2 2009-12-15T00:52:52.023259 {"physical_format": "Paperback", "title": "Sun Java Studio Enterprise 6 Web Application Tutorial", "isbn_10": ["0595286607"], "publishers": ["Iuniverse Inc"], "isbn_13": ["9780595286607"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:52:52.023259"}, "publish_date": "March 2004", "key": "/books/OL10707419M", "authors": [{"key": "/authors/OL2653809A"}], "latest_revision": 2, "subjects": ["Programming - General", "Programming Languages - General", "Programming Languages - Java", "Computers", "Computer Books: Languages"], "works": [{"key": "/works/OL7953238W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10707442M 3 2011-06-08T02:25:51.978271 {"publishers": ["Iuniverse Inc"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-06-08T02:25:51.978271"}, "title": "Openmp Api User's Guide", "number_of_pages": 84, "isbn_13": ["9780595286836"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0595286836"], "publish_date": "July 2004", "key": "/books/OL10707442M", "authors": [{"key": "/authors/OL2653809A"}], "latest_revision": 3, "oclc_numbers": ["149201413"], "works": [{"key": "/works/OL7953338W"}], "type": {"key": "/type/edition"}, "subjects": ["Programming - General", "Programming Languages - General", "Programming Languages - Java", "Computers", "Computer Books: Languages"], "revision": 3}
+/type/edition /books/OL10707621M 6 2011-04-27T15:02:50.440870 {"publishers": ["iUniverse"], "identifiers": {"goodreads": ["2906349"]}, "subtitle": "A Novel of America", "weight": "1.1 pounds", "covers": [2529231], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T15:02:50.440870"}, "latest_revision": 6, "key": "/books/OL10707621M", "authors": [{"key": "/authors/OL2712796A"}], "subjects": ["Historical fiction", "Historical - General", "Action & Adventure", "Suspense", "Fiction", "Fiction - Historical"], "isbn_13": ["9780595294411"], "title": "Journey", "number_of_pages": 336, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0595294413"], "publish_date": "September 2003", "oclc_numbers": ["54902769"], "works": [{"key": "/works/OL8141539W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.1 x 6.1 x 0.9 inches", "revision": 6}
+/type/edition /books/OL10707655M 9 2021-10-04T06:06:59.311462 {"publishers": ["iUniverse"], "number_of_pages": 144, "weight": "8 ounces", "covers": [2529262], "physical_format": "Paperback", "key": "/books/OL10707655M", "authors": [{"key": "/authors/OL3288129A"}], "subjects": ["Modern fiction", "General", "Graphic Novels - General", "Comics & Graphic Novels", "Fiction - General", "Fiction"], "isbn_13": ["9780595295715"], "title": "The Clandestine Novelist", "identifiers": {"librarything": ["8022037"], "goodreads": ["5412911"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0595295711"], "publish_date": "October 2003", "oclc_numbers": ["71295035"], "works": [{"key": "/works/OL9227715W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.1 x 6.1 x 0.4 inches", "ocaid": "clandestinenovel0000evic", "source_records": ["ia:clandestinenovel0000evic", "bwb:9780595295715"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-10-04T06:06:59.311462"}}
+/type/edition /books/OL10707752M 6 2022-12-09T19:07:24.477892 {"publishers": ["iUniverse, Inc."], "subtitle": "A Novel", "weight": "12.8 ounces", "covers": [2529354], "physical_format": "Paperback", "key": "/books/OL10707752M", "authors": [{"key": "/authors/OL3490858A"}], "subjects": ["Baseball", "Sports & Recreation", "Fiction", "Baseball - General", "Fiction / Historical", "Action & Adventure", "General", "Historical - General"], "languages": [{"key": "/languages/eng"}], "title": "Dream Season", "number_of_pages": 240, "isbn_13": ["9780595300006"], "isbn_10": ["0595300006"], "publish_date": "January 15, 2004", "oclc_numbers": ["50607068"], "works": [{"key": "/works/OL9472717W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.6 inches", "ocaid": "dreamseasonnovel0000merr", "lc_classifications": ["PS3563.E746 D771 2004"], "source_records": ["ia:dreamseasonnovel0000merr", "promise:bwb_daily_pallets_2020-10-14"], "local_id": ["urn:bwbsku:O6-DZM-140"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T19:07:24.477892"}}
+/type/edition /books/OL1070807M 2 2020-11-18T05:05:51.804739 {"other_titles": ["Kliping tentang Kongres 4 PDI.", "Kliping tentang Kongres Empat PDI.", "Kongres IV PDI.", "Kongres 4 PDI.", "Kongres Empat PDI."], "publishers": ["Centre for Strategic and International Studies"], "description": {"type": "/type/text", "value": "Re-election of chief of PDI, Indonesian Democratic Party for 1993-1998 term; collection of press clippings."}, "series": ["Dokumentasi"], "lc_classifications": ["JQ719.A8 D474 1993"], "latest_revision": 2, "key": "/books/OL1070807M", "publish_places": ["Jakarta"], "contributions": ["Centre for Strategic and International Studies."], "pagination": "3 v. in 1 :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:106789250:1129"], "title": "Kliping tentang Kongres IV PDI.", "lccn": ["93947465"], "notes": {"type": "/type/text", "value": "In Indonesian, with some articles in English.\nSpine title: Kongres IV PDI.\n\"No. 367/P/X/1993, no. 368/P/X/1993, no. 369/P/X/1993.\""}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/ind"}], "subjects": ["Partai Demokrasi Indonesia -- Elections."], "publish_date": "1993", "publish_country": "io ", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T05:05:51.804739"}, "works": [{"key": "/works/OL23533094W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10708197M 5 2021-10-04T07:01:35.810089 {"publishers": ["iUniverse, Inc."], "weight": "12.8 ounces", "covers": [2529780], "physical_format": "Paperback", "key": "/books/OL10708197M", "authors": [{"key": "/authors/OL3491107A"}], "subjects": ["Modern fiction", "General", "Fiction / Literary", "Humorous", "Literary", "Fiction", "Fiction - General"], "languages": [{"key": "/languages/eng"}], "title": "School of Marble and Mud", "number_of_pages": 244, "isbn_13": ["9780595317486"], "isbn_10": ["0595317480"], "publish_date": "May 20, 2004", "oclc_numbers": ["191806763"], "works": [{"key": "/works/OL9472989W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.9 x 6 x 0.9 inches", "source_records": ["bwb:9780595317486"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-10-04T07:01:35.810089"}}
+/type/edition /books/OL107081M 4 2020-12-02T09:14:16.029247 {"series": ["Literatura, declaraciones y ensayos,", "38"], "covers": [3709916], "lc_classifications": ["MLCM 99/08375 (P)"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part28.utf8:96148203:564"], "title": "Cuentos con gusano dentro", "languages": [{"key": "/languages/spa"}], "publish_country": "sp ", "by_statement": "Alonso Zamora Vicente.", "type": {"key": "/type/edition"}, "publishers": ["Bitzoc"], "key": "/books/OL107081M", "authors": [{"key": "/authors/OL58116A"}], "publish_places": ["Palma de Mallorca"], "pagination": "146 p. ;", "lccn": ["99225036"], "number_of_pages": 146, "isbn_10": ["8487789846"], "publish_date": "1998", "works": [{"key": "/works/OL723128W"}], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-02T09:14:16.029247"}}
+/type/edition /books/OL10708386M 7 2011-04-30T12:57:12.121289 {"publishers": ["iUniverse, Inc."], "number_of_pages": 160, "weight": "1.6 ounces", "covers": [2529970], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-30T12:57:12.121289"}, "latest_revision": 7, "key": "/books/OL10708386M", "authors": [{"key": "/authors/OL3491225A"}], "subjects": ["Adventure / thriller", "Science Fiction", "Fiction", "Fiction - General", "General", "Fiction / Science Fiction / High Tech", "Action & Adventure", "Science Fiction - General", "Science Fiction - High Tech"], "isbn_13": ["9780595325498"], "title": "Double Zero", "identifiers": {"librarything": ["7460590"], "goodreads": ["6227609"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0595325491"], "publish_date": "July 14, 2004", "oclc_numbers": ["58460329"], "works": [{"key": "/works/OL9473115W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.8 x 6 x 0.5 inches", "revision": 7}
+/type/edition /books/OL10708479M 5 2010-04-24T18:08:13.747017 {"publishers": ["iUniverse, Inc."], "number_of_pages": 270, "subtitle": "Language Imagine As Knowledge", "weight": "14.2 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0595329489"], "identifiers": {"goodreads": ["1408484"]}, "isbn_13": ["9780595329489"], "covers": [2530066], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:08:13.747017"}, "latest_revision": 5, "key": "/books/OL10708479M", "authors": [{"key": "/authors/OL3491287A"}], "publish_date": "October 28, 2004", "title": "Shinvescarine's The Fall Of Babylon", "works": [{"key": "/works/OL9473191W"}], "type": {"key": "/type/edition"}, "subjects": ["Language & Literature", "Juvenile Nonfiction", "Children's Books/Ages 9-12 Nonfiction", "Children: Young Adult (Gr. 7-9)", "Literary Criticism & Collections", "Juvenile Nonfiction / Literary Criticism & Collections", "General"], "physical_dimensions": "9 x 6 x 0.6 inches", "revision": 5}
+/type/edition /books/OL1070881M 5 2020-11-18T05:06:44.391268 {"publishers": ["Bina Rena Pariwara"], "identifiers": {"goodreads": ["2268358"]}, "subtitle": "pokok-pokok pemikiran", "description": {"type": "/type/text", "value": "Tax issues in Indonesia; collection of articles."}, "isbn_10": ["9798175123"], "subject_place": ["Indonesia."], "covers": [3870383], "lc_classifications": ["HJ2956 .S25 1993"], "latest_revision": 5, "key": "/books/OL1070881M", "authors": [{"key": "/authors/OL571684A"}], "publish_places": ["[Jakarta]"], "contributions": ["Salamun A. T. 1927-"], "languages": [{"key": "/languages/ind"}], "pagination": "340 p. ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:106866151:932"], "title": "Pajak, citra, dan upaya pembaruannya (revisi dari buku Pajak, citra, dan bebannya)", "lccn": ["93947654"], "notes": {"type": "/type/text", "value": "Ed. rev. of: Pajak, citra, dan bebannya.\nIncludes index."}, "number_of_pages": 340, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "edition_name": "Cet. 3., ed. rev.", "subjects": ["Taxation -- Indonesia."], "publish_date": "1993", "publish_country": "io ", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T05:06:44.391268"}, "by_statement": "Salamun A.T.", "works": [{"key": "/works/OL3443585W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10709189M 5 2010-04-24T18:08:13.747017 {"publishers": ["iUniverse, Inc."], "number_of_pages": 194, "subtitle": "Based on a true story", "weight": "1.6 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["059536067X"], "identifiers": {"goodreads": ["463870"]}, "isbn_13": ["9780595360673"], "covers": [2530662], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:08:13.747017"}, "latest_revision": 5, "key": "/books/OL10709189M", "authors": [{"key": "/authors/OL3491669A"}], "publish_date": "August 10, 2005", "title": "When an Angel and Devil Made Love", "works": [{"key": "/works/OL9473620W"}], "type": {"key": "/type/edition"}, "subjects": ["General & Literary Fiction", "Christian - General", "Fiction / Religious", "General", "Religious - General", "Fiction", "Fiction - Religious"], "physical_dimensions": "7.8 x 5 x 0.6 inches", "revision": 5}
+/type/edition /books/OL10709283M 5 2010-04-13T06:13:59.826084 {"publishers": ["iUniverse, Inc."], "number_of_pages": 360, "weight": "1.2 pounds", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0595364721"], "type": {"key": "/type/edition"}, "title": "Bloodlines", "isbn_13": ["9780595364725"], "covers": [2530755], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:13:59.826084"}, "latest_revision": 5, "key": "/books/OL10709283M", "authors": [{"key": "/authors/OL390515A"}], "publish_date": "October 11, 2005", "works": [{"key": "/works/OL2676039W"}], "contributions": ["William Rademaekers (Contributor)"], "subjects": ["General & Literary Fiction", "Romance - Suspense", "Fiction / Romance / Suspense", "General", "Romance - General", "Fiction", "Fiction - Romance"], "physical_dimensions": "9 x 6 x 1 inches", "revision": 5}
+/type/edition /books/OL10709562M 5 2022-12-10T08:22:46.813243 {"publishers": ["iUniverse, Inc."], "subtitle": "Teen Success Series Volume II (Teen Success Series)", "weight": "7.8 ounces", "covers": [2531031], "physical_format": "Paperback", "key": "/books/OL10709562M", "authors": [{"key": "/authors/OL2724289A"}], "subjects": ["Personal, health & social education (PHSE)", "Social Studies", "Juvenile Nonfiction", "Children's Books/Ages 9-12 Nonfiction", "Children: Young Adult (Gr. 10-12)", "Body, Mind & Spirit", "School & Education", "Social Issues - Adolescence", "Juvenile Nonfiction / School & Education"], "languages": [{"key": "/languages/eng"}], "title": "100 Ways to Become a Successful Teenager", "number_of_pages": 132, "isbn_13": ["9780595376810"], "isbn_10": ["0595376819"], "publish_date": "December 13, 2005", "oclc_numbers": ["63823417"], "works": [{"key": "/works/OL8159430W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.9 x 6 x 0.5 inches", "local_id": ["urn:bwbsku:375-BAB-457"], "source_records": ["promise:bwb_daily_pallets_2020-06-04"], "identifiers": {"amazon": [""]}, "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T08:22:46.813243"}}
+/type/edition /books/OL10709625M 3 2010-04-13T06:13:59.826084 {"publishers": ["iUniverse, Inc."], "languages": [{"key": "/languages/eng"}], "weight": "11.7 ounces", "title": "Founding Sons", "isbn_10": ["059537946X"], "number_of_pages": 258, "isbn_13": ["9780595379460"], "covers": [2531095], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:13:59.826084"}, "latest_revision": 3, "physical_dimensions": "8.5 x 5.5 x 0.6 inches", "key": "/books/OL10709625M", "authors": [{"key": "/authors/OL36340A"}], "publish_date": "April 28, 2006", "works": [{"key": "/works/OL520349W"}], "type": {"key": "/type/edition"}, "subjects": ["General & Literary Fiction", "Literary", "Political", "Fiction / Literary", "Fiction", "Fiction - General"], "first_sentence": {"type": "/type/text", "value": "Just as the bullet hit my brain, I remember hoping that 1 would wake up in a hospital, heavily sedated and in the presence of an attractive nurse."}, "revision": 3}
+/type/edition /books/OL1070974M 3 2020-11-18T05:07:51.207342 {"publishers": ["Ateneo de Manila University Press"], "covers": [3870506], "lc_classifications": ["MLCM 93/00131 (P)"], "latest_revision": 3, "key": "/books/OL1070974M", "publish_places": ["Q[uezon] C[ity], Manila"], "contributions": ["Salanga, Alfrredo Navarro."], "pagination": "x, 158 p. ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:106954702:578"], "title": "Writings in protest, 1972-1985", "lccn": ["93948050"], "notes": {"type": "/type/text", "value": "Short stories and poems."}, "number_of_pages": 158, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["9715501052"], "publish_date": "1993", "publish_country": "ph ", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T05:07:51.207342"}, "by_statement": "edited by Alfrredo Navarro Salanga.", "works": [{"key": "/works/OL23533164W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10710128M 5 2010-04-24T18:08:13.747017 {"publishers": ["iUniverse, Inc."], "number_of_pages": 196, "subtitle": "(What is Wrong with Tom Faerie?)", "weight": "12.8 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0595403638"], "identifiers": {"goodreads": ["717086"]}, "isbn_13": ["9780595403639"], "covers": [2531592], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:08:13.747017"}, "latest_revision": 5, "key": "/books/OL10710128M", "authors": [{"key": "/authors/OL3492288A"}], "publish_date": "July 17, 2006", "title": "W.T.F.?", "works": [{"key": "/works/OL9474323W"}], "type": {"key": "/type/edition"}, "subjects": ["Fiction", "Humorous Stories", "Juvenile Fiction / Humorous Stories", "Juvenile Fiction", "Children's Books/All Ages"], "physical_dimensions": "9 x 5.6 x 0.6 inches", "revision": 5}
+/type/edition /books/OL10710294M 3 2010-04-13T06:13:59.826084 {"publishers": ["iUniverse, Inc."], "number_of_pages": 152, "weight": "6.4 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0595410189"], "title": "Flax Flower", "isbn_13": ["9780595410187"], "covers": [2531755], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:13:59.826084"}, "latest_revision": 3, "key": "/books/OL10710294M", "authors": [{"key": "/authors/OL3492407A"}], "publish_date": "December 5, 2006", "works": [{"key": "/works/OL9474448W"}], "type": {"key": "/type/edition"}, "subjects": ["General & Literary Fiction", "Historical - General", "Literary", "Fiction / Literary", "Fiction-Historical - General", "Fiction", "Fiction - General"], "physical_dimensions": "8.8 x 5.9 x 0.5 inches", "revision": 3}
+/type/edition /books/OL10710577M 6 2011-04-30T16:01:34.970343 {"publishers": ["iUniverse, Inc."], "identifiers": {"goodreads": ["5596240"]}, "subtitle": "How Hurricane Katrina Exposed the Crime of Parental Neglect", "weight": "6.4 ounces", "covers": [2532035], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-30T16:01:34.970343"}, "latest_revision": 6, "key": "/books/OL10710577M", "authors": [{"key": "/authors/OL3492610A"}], "subjects": ["Urban communities", "Discrimination & Racism", "Sociology - Urban", "Social Science / Sociology / Urban", "Social Science : Discrimination & Racism", "Sociology"], "isbn_13": ["9780595420919"], "title": "Invisible Children of New Orleans", "number_of_pages": 112, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0595420915"], "publish_date": "September 28, 2007", "oclc_numbers": ["178055066"], "works": [{"key": "/works/OL9474664W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.3 inches", "revision": 6}
+/type/edition /books/OL1071066M 4 2020-11-18T05:08:49.951021 {"publishers": ["Balai Penelitian, Fakultas Ekonomi, Universitas Palangka Raya"], "subtitle": "laporan hasil penelitian kelompok", "description": "Use of zakat in social changes of Kotamadya Palangka Raya, Kalimantan Tengah Province; research report.", "physical_format": "Microform", "lc_classifications": ["Microfiche 93/50860 (H)"], "latest_revision": 4, "key": "/books/OL1071066M", "publish_places": ["[Palangka Raya]"], "contributions": ["Isa, H. Ahmadi."], "pagination": "viii, 47 leaves", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:107048155:1036"], "title": "Penerapan zakat harta dalam perubahan sosial di Kotamadya Palangka Raya", "lccn": ["93948324"], "notes": "Microfiche. Jakarta : Library of Congress Office ; Washington, D.C. : Library of Congress Photoduplication Service, 1995. 1 microfiche ; 11 x 15 cm.", "number_of_pages": 49, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/ind"}], "last_modified": {"type": "/type/datetime", "value": "2020-11-18T05:08:49.951021"}, "publish_date": "1992", "publish_country": "io ", "by_statement": "nama peneliti, H. Ahmadi Isa ... [et al.].", "works": [{"key": "/works/OL23533204W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10711410M 8 2021-11-02T08:29:28.548800 {"publishers": ["iUniverse, Inc."], "identifiers": {"goodreads": ["4324779"]}, "weight": "1.1 pounds", "covers": [2532810], "physical_format": "Paperback", "key": "/books/OL10711410M", "authors": [{"key": "/authors/OL1548396A"}], "subjects": ["General & Literary Fiction", "Sagas", "Fiction / Family Saga", "Fiction - General"], "languages": [{"key": "/languages/eng"}], "title": "Desert Lily", "number_of_pages": 344, "isbn_13": ["9780595441204"], "isbn_10": ["0595441203"], "publish_date": "September 11, 2007", "oclc_numbers": ["228507934"], "works": [{"key": "/works/OL6088589W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.9 inches", "source_records": ["bwb:9780595441204"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-11-02T08:29:28.548800"}}
+/type/edition /books/OL10712300M 5 2010-04-24T18:08:13.747017 {"publishers": ["iUniverse, Inc."], "number_of_pages": 128, "subtitle": "A Guide to Breakfast and Brunch Dining in the Denver Metro Area Including Boulder, Lafayette, Louisville, and Niwot", "weight": "5.3 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0595456650"], "identifiers": {"goodreads": ["6980273"]}, "isbn_13": ["9780595456659"], "covers": [2533606], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:08:13.747017"}, "latest_revision": 5, "key": "/books/OL10712300M", "authors": [{"key": "/authors/OL3493836A"}], "publish_date": "July 27, 2007", "title": "Denver Omelet", "works": [{"key": "/works/OL9475956W"}], "type": {"key": "/type/edition"}, "subjects": ["Restaurant & pub guides", "Restaurants", "Special Interest - General", "United States - West - Mountain (General)", "Travel / Restaurants", "Travel : Special Interest - General", "Travel : United States - West - Mountain (General)", "Travel - General"], "physical_dimensions": "8 x 5 x 0.3 inches", "revision": 5}
+/type/edition /books/OL10712618M 6 2011-04-30T06:57:09.949703 {"publishers": ["iUniverse, Inc."], "identifiers": {"goodreads": ["2409707"]}, "subtitle": "33 New Lessons from the Old Testament", "weight": "10.4 ounces", "covers": [2533925], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-30T06:57:09.949703"}, "latest_revision": 6, "key": "/books/OL10712618M", "authors": [{"key": "/authors/OL2943146A"}], "subjects": ["Moral theology", "Religion: general", "Biblical Studies - General", "Ethics", "Religion / Bible / General", "Religion / General", "Religion : Ethics", "Religion - Biblical Studies"], "isbn_13": ["9780595463114"], "title": "On the Seventh Day God Rested", "number_of_pages": 219, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0595463118"], "publish_date": "November 6, 2007", "oclc_numbers": ["262624687"], "works": [{"key": "/works/OL8697780W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.9 x 6 x 0.8 inches", "revision": 6}
+/type/edition /books/OL10712627M 5 2010-04-24T18:08:13.747017 {"publishers": ["iUniverse, Inc."], "number_of_pages": 102, "subtitle": "Scenes from a Bi-Cultural Adoption", "weight": "4.8 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["059546338X"], "identifiers": {"goodreads": ["3423529"]}, "isbn_13": ["9780595463381"], "covers": [2533934], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:08:13.747017"}, "latest_revision": 5, "key": "/books/OL10712627M", "authors": [{"key": "/authors/OL3494046A"}], "publish_date": "November 2, 2007", "title": "Bracha Means Blessing", "works": [{"key": "/works/OL9476173W"}], "type": {"key": "/type/edition"}, "subjects": ["Marriage, family & other relationships", "Adoption", "Personal Memoirs", "Biography & Autobiography : Personal Memoirs", "Family & Relationships / Adoption", "Family / Parenting / Childbirth"], "physical_dimensions": "8.3 x 5.4 x 0.4 inches", "revision": 5}
+/type/edition /books/OL10712663M 9 2021-10-23T03:35:56.457836 {"publishers": ["iUniverse, Inc."], "number_of_pages": 146, "weight": "8 ounces", "covers": [2533970], "physical_format": "Paperback", "key": "/books/OL10712663M", "authors": [{"key": "/authors/OL3494066A"}], "subjects": ["Biography: film, television & music", "Theory of music & musicology", "Composers & Musicians - General", "Ethnomusicology", "Biography & Autobiography / Composers & Musicians", "Music : Ethnomusicology", "Biography / Autobiography"], "isbn_13": ["9780595464364"], "source_records": ["amazon:059546436X", "marc:marc_loc_updates/v37.i24.records.utf8:11339430:970", "marc:marc_loc_2016/BooksAll.2016.part36.utf8:169063595:970", "ia:interculturaldim0000sado"], "title": "Intercultural Dimensions in Ayo Bankole's Music", "identifiers": {"goodreads": ["4248090"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["059546436X"], "publish_date": "August 22, 2007", "oclc_numbers": ["166872293"], "works": [{"key": "/works/OL9476193W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.8 x 6.4 x 0.6 inches", "lccn": ["2009284181"], "lc_classifications": ["ML410.B2086 S33 2007"], "ocaid": "interculturaldim0000sado", "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-10-23T03:35:56.457836"}}
+/type/edition /books/OL10712986M 4 2011-04-28T12:14:49.500155 {"publishers": ["iUniverse, Inc."], "subtitle": "Sometimes the best solution is to give up everything", "weight": "7.5 ounces", "covers": [2534293], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-28T12:14:49.500155"}, "latest_revision": 4, "key": "/books/OL10712986M", "authors": [{"key": "/authors/OL3494240A"}], "subjects": ["General & Literary Fiction", "Action & Adventure", "Religious - General", "Fiction / Religious", "Fiction : Action & Adventure", "Fiction - Religious"], "languages": [{"key": "/languages/eng"}], "title": "Michaels Epiphany", "number_of_pages": 138, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780595473229"], "isbn_10": ["0595473229"], "publish_date": "September 24, 2007", "oclc_numbers": ["176931637"], "works": [{"key": "/works/OL9476377W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.3 inches", "revision": 4}
+/type/edition /books/OL10713152M 6 2020-08-19T13:42:49.481022 {"publishers": ["Writers Club Press"], "identifiers": {"goodreads": ["6944156"]}, "weight": "1.2 pounds", "covers": [2534458], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2020-08-19T13:42:49.481022"}, "latest_revision": 6, "key": "/books/OL10713152M", "authors": [{"key": "/authors/OL2712475A"}], "subjects": ["Adventure / thriller", "General & Literary Fiction", "Action & Adventure", "Suspense", "Fiction", "Fiction - Espionage / Thriller"], "isbn_13": ["9780595653522"], "source_records": ["bwb:9780595653522"], "title": "Eerily Empty Efforts", "number_of_pages": 240, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0595653529"], "publish_date": "December 2002", "works": [{"key": "/works/OL8140833W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.2 x 7.8 x 0.8 inches", "revision": 6}
+/type/edition /books/OL10713222M 3 2010-04-13T06:15:39.223795 {"publishers": ["iUniverse"], "number_of_pages": 168, "weight": "15.7 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0595656935"], "title": "The Death Called Change", "isbn_13": ["9780595656936"], "covers": [2534528], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:15:39.223795"}, "latest_revision": 3, "key": "/books/OL10713222M", "authors": [{"key": "/authors/OL3490599A"}], "publish_date": "June 30, 2003", "works": [{"key": "/works/OL9472445W"}], "type": {"key": "/type/edition"}, "subjects": ["General & Literary Fiction", "General", "Fiction", "Fiction - General"], "physical_dimensions": "9.4 x 6.3 x 0.7 inches", "revision": 3}
+/type/edition /books/OL10713339M 3 2010-04-13T06:15:39.223795 {"publishers": ["iUniverse"], "number_of_pages": 284, "weight": "1.3 pounds", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0595662188"], "title": "Weep Without Tears", "isbn_13": ["9780595662180"], "covers": [2534636], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:15:39.223795"}, "latest_revision": 3, "key": "/books/OL10713339M", "authors": [{"key": "/authors/OL2946982A"}], "publish_date": "February 28, 2004", "works": [{"key": "/works/OL8703156W"}], "type": {"key": "/type/edition"}, "subjects": ["Historical fiction", "Historical - General", "Fiction", "Fiction - Historical"], "physical_dimensions": "9 x 6 x 0.8 inches", "revision": 3}
+/type/edition /books/OL10713590M 5 2010-04-24T18:08:13.747017 {"publishers": ["iUniverse, Inc."], "languages": [{"key": "/languages/eng"}], "identifiers": {"goodreads": ["7323450"]}, "weight": "1.4 pounds", "title": "Strong Women Four Generations 18581982", "number_of_pages": 332, "isbn_13": ["9780595674046"], "covers": [2534886], "physical_format": "Hardcover", "authors": [{"key": "/authors/OL3491755A"}], "isbn_10": ["0595674046"], "latest_revision": 5, "key": "/books/OL10713590M", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:08:13.747017"}, "publish_date": "July 19, 2007", "works": [{"key": "/works/OL9473720W"}], "type": {"key": "/type/edition"}, "subjects": ["Historical - General", "Personal Memoirs", "Women", "Biography & Autobiography / Personal Memoirs", "Biography & Autobiography : Historical - General", "Biography & Autobiography : Women", "Biography / Autobiography"], "physical_dimensions": "9.2 x 6.3 x 1.2 inches", "revision": 5}
+/type/edition /books/OL10713644M 3 2010-04-13T06:15:39.223795 {"publishers": ["iUniverse, Inc."], "number_of_pages": 128, "weight": "12.3 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0595676553"], "title": "Little Country Girl", "isbn_13": ["9780595676552"], "covers": [2534939], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:15:39.223795"}, "latest_revision": 3, "key": "/books/OL10713644M", "authors": [{"key": "/authors/OL3492074A"}], "publish_date": "May 9, 2006", "works": [{"key": "/works/OL9474087W"}], "type": {"key": "/type/edition"}, "subjects": ["Family & relations", "Juvenile Nonfiction", "Children's Books/Ages 4-8 Nonfiction", "Children: Grades 4-6", "Family - General", "Juvenile Nonfiction / Family / General"], "physical_dimensions": "9 x 6 x 0.4 inches", "revision": 3}
+/type/edition /books/OL10713749M 3 2010-04-13T06:15:39.223795 {"publishers": ["iUniverse, Inc."], "number_of_pages": 236, "subtitle": "And Never Play a Round on the PGA Tour", "weight": "1.1 pounds", "languages": [{"key": "/languages/eng"}], "isbn_10": ["059568131X"], "title": "How To Win The US Open", "isbn_13": ["9780595681310"], "covers": [2535038], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:15:39.223795"}, "latest_revision": 3, "key": "/books/OL10713749M", "authors": [{"key": "/authors/OL3492786A"}], "publish_date": "August 16, 2007", "works": [{"key": "/works/OL9474848W"}], "type": {"key": "/type/edition"}, "subjects": ["Golf", "Coaching - General", "Golf - General", "Sports & Recreation / Golf", "Sports & Recreation : Coaching - General", "Sports & Recreation"], "physical_dimensions": "9.1 x 6.3 x 1 inches", "revision": 3}
+/type/edition /books/OL10714005M 3 2010-04-13T06:15:39.223795 {"publishers": ["iUniverse, Inc."], "number_of_pages": 108, "weight": "11.4 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0595692516"], "title": "Raw Poetry Art Expressions", "isbn_13": ["9780595692514"], "covers": [2535272], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:15:39.223795"}, "latest_revision": 3, "key": "/books/OL10714005M", "authors": [{"key": "/authors/OL3493613A"}], "publish_date": "October 19, 2007", "works": [{"key": "/works/OL9475719W"}], "type": {"key": "/type/edition"}, "subjects": ["Poetry texts & anthologies", "American - General", "Inspirational & Religious", "Poetry / Single Author / American", "Poetry : Inspirational & Religious", "Poetry", "American English"], "physical_dimensions": "9 x 6 x 0.4 inches", "revision": 3}
+/type/edition /books/OL10714084M 3 2010-04-24T18:08:13.747017 {"languages": [{"key": "/languages/eng"}], "number_of_pages": 104, "key": "/books/OL10714084M", "weight": "7 ounces", "publishers": ["Icon Group International"], "title": "The 2000 World Forecasts of Raw Hides, Skins, and Furskins Export Supplies (World Trade Report)", "identifiers": {"goodreads": ["101355"]}, "isbn_13": ["9780741836021"], "edition_name": "2000 edition", "physical_format": "Ring-bound", "isbn_10": ["0741836025"], "publish_date": "November 27, 2000", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:08:13.747017"}, "authors": [{"key": "/authors/OL3494363A"}, {"key": "/authors/OL3494364A"}, {"key": "/authors/OL3494365A"}], "latest_revision": 3, "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "physical_dimensions": "11 x 8.2 x 0.2 inches", "revision": 3}
+/type/edition /books/OL10714307M 3 2010-04-24T18:08:13.747017 {"languages": [{"key": "/languages/eng"}], "number_of_pages": 60, "key": "/books/OL10714307M", "publishers": ["Icon Group International"], "title": "The 2000 World Forecasts of Shot or Sponge Iron and Steel Powders Export Supplies (World Trade Report)", "identifiers": {"goodreads": ["4870960"]}, "isbn_13": ["9780741838254"], "edition_name": "2000 edition", "physical_format": "Ring-bound", "isbn_10": ["0741838257"], "publish_date": "November 27, 2000", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:08:13.747017"}, "authors": [{"key": "/authors/OL3484425A"}, {"key": "/authors/OL3494776A"}, {"key": "/authors/OL3494777A"}], "latest_revision": 3, "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10714644M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780741841629"], "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "publishers": ["Icon Group International"], "number_of_pages": 49, "edition_name": "2000 edition", "isbn_10": ["0741841622"], "publish_date": "November 28, 2000", "key": "/books/OL10714644M", "authors": [{"key": "/authors/OL3484485A"}, {"key": "/authors/OL3484486A"}, {"key": "/authors/OL3484482A"}], "title": "The 2000 Import and Export Market for Milk and Cream in Africa (World Trade Report)", "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 1}
+/type/edition /books/OL10714738M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780741842565"], "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "publishers": ["Icon Group International"], "number_of_pages": 30, "edition_name": "2000 edition", "isbn_10": ["0741842564"], "publish_date": "November 28, 2000", "key": "/books/OL10714738M", "authors": [{"key": "/authors/OL3484254A"}, {"key": "/authors/OL3484254A"}], "title": "The 2000 Import and Export Market for Frozen Fish Fillets in The Middle East (World Trade Report)", "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 1}
+/type/edition /books/OL10714773M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780741842916"], "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "publishers": ["Icon Group International"], "number_of_pages": 32, "edition_name": "2000 edition", "isbn_10": ["0741842912"], "publish_date": "November 28, 2000", "key": "/books/OL10714773M", "authors": [{"key": "/authors/OL3495200A"}, {"key": "/authors/OL3484475A"}, {"key": "/authors/OL3484502A"}, {"key": "/authors/OL3484500A"}], "title": "The 2000 Import and Export Market for Prepared and Preserved Fish, Crustaceans and Molluscs in The Middle East (World Trade Report)", "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 1}
+/type/edition /books/OL10714855M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780741843739"], "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "publishers": ["Icon Group International"], "number_of_pages": 38, "edition_name": "2000 edition", "isbn_10": ["0741843730"], "publish_date": "November 28, 2000", "key": "/books/OL10714855M", "authors": [{"key": "/authors/OL3484516A"}, {"key": "/authors/OL3484517A"}, {"key": "/authors/OL3484518A"}], "title": "The 2000 Import and Export Market for Wheat Meal, Wheat Flour, and Meslin Flour in Asia (World Trade Report)", "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 1}
+/type/edition /books/OL10715127M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780741846457"], "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "publishers": ["Icon Group International"], "number_of_pages": 34, "edition_name": "2000 edition", "isbn_10": ["0741846454"], "publish_date": "November 28, 2000", "key": "/books/OL10715127M", "authors": [{"key": "/authors/OL3484328A"}, {"key": "/authors/OL3494330A"}], "title": "The 2000 Import and Export Market for Bran, Sharps and Other Sifting Residues in Asia (World Trade Report)", "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 1}
+/type/edition /books/OL10715907M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780741854261"], "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "publishers": ["Icon Group International"], "number_of_pages": 47, "edition_name": "2000 edition", "isbn_10": ["0741854260"], "publish_date": "November 28, 2000", "key": "/books/OL10715907M", "authors": [{"key": "/authors/OL2813963A"}, {"key": "/authors/OL2813964A"}], "title": "The 2000 Import and Export Market for Refined Petroleum Products in The Middle East (World Trade Report)", "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 1}
+/type/edition /books/OL10716062M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780741855817"], "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "publishers": ["Icon Group International"], "number_of_pages": 48, "edition_name": "2000 edition", "isbn_10": ["074185581X"], "publish_date": "November 28, 2000", "key": "/books/OL10716062M", "authors": [{"key": "/authors/OL3494551A"}, {"key": "/authors/OL3494552A"}], "title": "The 2000 Import and Export Market for Carboxylic Acids, Anhydrides and Halides in Latin America (World Trade Report)", "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 1}
+/type/edition /books/OL10716350M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780741858696"], "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "publishers": ["Icon Group International"], "number_of_pages": 31, "edition_name": "2000 edition", "isbn_10": ["074185869X"], "publish_date": "November 28, 2000", "key": "/books/OL10716350M", "authors": [{"key": "/authors/OL3494629A"}, {"key": "/authors/OL3494631A"}, {"key": "/authors/OL3494630A"}], "title": "The 2000 Import and Export Market for Wood-based and Resin-based Chemical Products in N. America & Caribbean (World Trade Report)", "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 1}
+/type/edition /books/OL1071657M 4 2020-11-18T05:15:58.769998 {"publishers": ["Bag\u0306lam"], "isbn_invalid": ["975769635X"], "subject_place": ["Turkey."], "lc_classifications": ["MLCSN 2001/01371 (H)"], "latest_revision": 4, "key": "/books/OL1071657M", "authors": [{"key": "/authors/OL96779A"}], "publish_places": ["Cag\u0306alog\u0306lu, I\u0307st. [i.e. I\u0307stanbul]"], "contributions": ["Yazog\u0306lu, Cengiz."], "languages": [{"key": "/languages/tur"}], "pagination": "396 p. ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:107496324:890"], "title": "Sosyalizm, toplum ve gerc\u0327ek", "lccn": ["93954597"], "notes": {"type": "/type/text", "value": "Includes bibliographical references and index.\n53\"--T.p. verso."}, "number_of_pages": 396, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "edition_name": "1. bas\u0131m.", "subjects": ["Socialism -- Turkey."], "publish_date": "1992", "publish_country": "tu ", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T05:15:58.769998"}, "series": ["Kemal Tahir Vakf\u0131 c\u0327al\u0131s\u0327malar\u0131 ;", "13", "Kemal Tahir/Notlar ;", "13"], "by_statement": "Kemal Tahir ; yay\u0131na haz\u0131rlayan, Cengiz Yazog\u0306lu.", "works": [{"key": "/works/OL1018417W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10716610M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780741861290"], "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "publishers": ["Icon Group International"], "number_of_pages": 29, "edition_name": "2000 edition", "isbn_10": ["0741861291"], "publish_date": "November 28, 2000", "key": "/books/OL10716610M", "authors": [{"key": "/authors/OL3494705A"}, {"key": "/authors/OL3494706A"}], "title": "The 2000 Import and Export Market for Knitted or Crocheted Fabrics in Oceana (World Trade Report)", "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 1}
+/type/edition /books/OL10716958M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780741864772"], "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "publishers": ["Icon Group International"], "number_of_pages": 28, "edition_name": "2000 edition", "isbn_10": ["0741864770"], "publish_date": "November 28, 2000", "key": "/books/OL10716958M", "authors": [{"key": "/authors/OL3494816A"}, {"key": "/authors/OL3494817A"}, {"key": "/authors/OL3494818A"}, {"key": "/authors/OL3494819A"}], "title": "The 2000 Import and Export Market for Rough Steel and Iron Forgings and Stampings in N. America & Caribbean (World Trade Report)", "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 1}
+/type/edition /books/OL1071752M 4 2020-11-18T05:17:02.408350 {"other_titles": ["Transformation-solitude."], "publishers": ["A.V. Kuvanl\u0131k"], "subtitle": "Transformation-solitude", "isbn_10": ["9759533006"], "lc_classifications": ["MLCMN 92/1005", "TR647"], "latest_revision": 4, "key": "/books/OL1071752M", "authors": [{"key": "/authors/OL572013A"}], "publish_places": ["[Turkey]"], "pagination": "1 v. (unpaged) :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:107565453:676"], "title": "Bas\u0327kalas\u0327\u0131m-yaln\u0131zl\u0131k =", "lccn": ["93954714"], "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/tur"}], "subjects": ["Kuvanl\u0131k, Adnan Veli, 1957- -- Exhibitions.", "Photography, Artistic -- Exhibitions."], "publish_date": "1992", "publish_country": "tu ", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T05:17:02.408350"}, "by_statement": "Adnan Veli Kuvanl\u0131k.", "oclc_numbers": ["31410144"], "works": [{"key": "/works/OL3444453W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10717602M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780741871220"], "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "publishers": ["Icon Group International"], "number_of_pages": 30, "edition_name": "2000 edition", "isbn_10": ["074187122X"], "publish_date": "November 28, 2000", "key": "/books/OL10717602M", "authors": [{"key": "/authors/OL3483919A"}, {"key": "/authors/OL3483919A"}], "title": "The 2000 Import and Export Market for Computers in Oceana (World Trade Report)", "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 1}
+/type/edition /books/OL1071768M 4 2020-11-18T05:17:15.471958 {"other_titles": ["Tu\u0308rklerde insan\u0131\u0302 deg\u0306erler ve insan haklar\u0131"], "publishers": ["Tu\u0308rk Ku\u0308ltu\u0308ru\u0308ne Hizmet Vafk\u0131"], "table_of_contents": [{"title": "1. kitap. Bas\u0327lang\u0131c\u0131ndan Osmanl\u0131 do\u0308nemine kadar", "type": {"key": "/type/toc_item"}, "level": 0}, {"title": "3. kitap. Yu\u0308zy\u0131l\u0131m\u0131z ve Tu\u0308rkiye Cumhuriyeti.", "type": {"key": "/type/toc_item"}, "level": 0}], "isbn_10": ["975752204X", "9757522074"], "subject_place": ["Asia, Central.", "Turkey."], "lc_classifications": ["DS26 .T36 1992", "DS26 .T36 1992"], "latest_revision": 4, "key": "/books/OL1071768M", "isbn_invalid": ["97575220508"], "publish_places": ["I\u0307stanbul"], "contributions": ["Tu\u0308rk Ku\u0308ltu\u0308ru\u0308ne Hizmet Vakf\u0131."], "pagination": "v. <1, 3 > ;", "source_records": ["marc:marc_records_scriblio_net/part24.dat:35771587:998", "marc:marc_loc_updates/v35.i15.records.utf8:2579880:1124", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:107577682:1124"], "title": "Tarih boyunca Tu\u0308rklerde insan\u0131\u0302 deg\u0306erler ve insan haklar\u0131.", "lccn": ["93954738"], "notes": {"type": "/type/text", "value": "Includes bibliographical references."}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/tur"}], "subjects": ["Turkic peoples -- Attitudes", "Social values -- Asia, Central", "Social values -- Turkey"], "publish_date": "1992", "publish_country": "tu ", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T05:17:15.471958"}, "works": [{"key": "/works/OL18319778W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL107176M 3 2020-12-02T09:15:39.516932 {"lc_classifications": ["MLCS 99/00465 (B)"], "contributions": ["Carre\u0301, E. G.", "Hyde, John Nelson, 1865-1912."], "edition_name": "7. Aufl.", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part28.utf8:96244684:698"], "title": "John Hyde, der Beter", "languages": [{"key": "/languages/ger"}], "publish_country": "sz ", "by_statement": "[E.G. Carre\u0301 ; Aufzeichnungen der Freunde John Hydes frei nach dem Englischen bearbeitet von F. Blum].", "oclc_numbers": ["41880528"], "type": {"key": "/type/edition"}, "publishers": ["Bibelschule Beatenberg"], "key": "/books/OL107176M", "publish_places": ["Beatenberg, Schweiz"], "pagination": "55 p. ;", "lccn": ["99225159"], "notes": {"type": "/type/text", "value": "Based on Praying Hyde, a challenge to prayer."}, "number_of_pages": 55, "isbn_10": ["3855760012"], "publish_date": "1982", "works": [{"key": "/works/OL23723322W"}], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-02T09:15:39.516932"}}
+/type/edition /books/OL10718068M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780741875884"], "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "publishers": ["Icon Group International"], "number_of_pages": 72, "edition_name": "2000 edition", "isbn_10": ["0741875888"], "publish_date": "November 28, 2000", "key": "/books/OL10718068M", "authors": [{"key": "/authors/OL3495108A"}, {"key": "/authors/OL3495109A"}, {"key": "/authors/OL3495110A"}], "title": "The 2000 Import and Export Market for Leather Apparel and Clothing Accessories in Europe (World Trade Report)", "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 1}
+/type/edition /books/OL10718630M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780741881502"], "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "publishers": ["Icon Group International"], "number_of_pages": 17, "edition_name": "2000 edition", "isbn_10": ["0741881500"], "publish_date": "December 29, 2000", "key": "/books/OL10718630M", "authors": [{"key": "/authors/OL3484252A"}, {"key": "/authors/OL3484490A"}, {"key": "/authors/OL3484491A"}], "title": "The 2000 Import and Export Market for Fresh, Dried and Preserved Eggs and Yolks in Ireland (World Trade Report)", "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 1}
+/type/edition /books/OL10718668M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780741881885"], "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "publishers": ["Icon Group International"], "number_of_pages": 12, "edition_name": "2000 edition", "isbn_10": ["0741881888"], "publish_date": "December 29, 2000", "key": "/books/OL10718668M", "authors": [{"key": "/authors/OL3484250A"}, {"key": "/authors/OL3484250A"}], "title": "The 2000 Import and Export Market for Eggs in Shells in Bermuda (World Trade Report)", "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 1}
+/type/edition /books/OL10718825M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780741883452"], "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "publishers": ["Icon Group International"], "number_of_pages": 24, "edition_name": "2000 edition", "isbn_10": ["0741883457"], "publish_date": "December 29, 2000", "key": "/books/OL10718825M", "authors": [{"key": "/authors/OL3495193A"}, {"key": "/authors/OL3484478A"}, {"key": "/authors/OL3484479A"}], "title": "The 2000 Import and Export Market for Meat and Meat Preparations in Lebanon (World Trade Report)", "type": {"key": "/type/edition"}, "subjects": ["General", "Export Statistics", "Data", "International Study", "Global Analysis", "International Trade", "Import Statistics", "Lebanon", "Business / Economics / Finance"], "revision": 1}
+/type/edition /books/OL10718973M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780741884930"], "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "publishers": ["Icon Group International"], "number_of_pages": 12, "edition_name": "2000 edition", "isbn_10": ["0741884933"], "publish_date": "December 29, 2000", "key": "/books/OL10718973M", "authors": [{"key": "/authors/OL3484238A"}, {"key": "/authors/OL3484461A"}], "title": "The 2000 Import and Export Market for Fresh, Chilled and Frozen Meat of Bovine Animals in El Salvador (World Trade Report)", "type": {"key": "/type/edition"}, "subjects": ["General", "Export Statistics", "Data", "International Study", "Global Analysis", "International Trade", "Import Statistics", "El Salvador", "Business / Economics / Finance"], "revision": 1}
+/type/edition /books/OL10719100M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780741886200"], "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "publishers": ["Icon Group International"], "number_of_pages": 54, "edition_name": "2000 edition", "isbn_10": ["0741886200"], "publish_date": "December 29, 2000", "key": "/books/OL10719100M", "authors": [{"key": "/authors/OL3484240A"}, {"key": "/authors/OL3484464A"}], "title": "The 2000 Import and Export Market for Fresh, Chilled and Frozen Swine Meat in Italy (World Trade Report)", "type": {"key": "/type/edition"}, "subjects": ["General", "Export Statistics", "Data", "International Study", "Global Analysis", "International Trade", "Import Statistics", "Italy", "Business / Economics / Finance"], "revision": 1}
+/type/edition /books/OL10719453M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780741889744"], "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "publishers": ["Icon Group International"], "number_of_pages": 190, "edition_name": "2000 edition", "isbn_10": ["0741889749"], "publish_date": "December 29, 2000", "key": "/books/OL10719453M", "authors": [{"key": "/authors/OL2813958A"}, {"key": "/authors/OL3484215A"}], "title": "The 2000 Import and Export Market for Food and Live Animals in Ireland (World Trade Report)", "type": {"key": "/type/edition"}, "subjects": ["Export Statistics", "Data", "International Study", "Global Analysis", "International Trade", "Import Statistics", "Ireland", "General", "Business & Economics", "Business / Economics / Finance", "Business/Economics"], "revision": 1}
+/type/edition /books/OL10719601M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780741891228"], "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "publishers": ["Icon Group International"], "number_of_pages": 19, "edition_name": "2000 edition", "isbn_10": ["0741891220"], "publish_date": "December 29, 2000", "key": "/books/OL10719601M", "authors": [{"key": "/authors/OL3484459A"}, {"key": "/authors/OL3484460A"}], "title": "The 2000 Import and Export Market for Live Animals Chiefly for Food in Uruguay (World Trade Report)", "type": {"key": "/type/edition"}, "subjects": ["General", "Export Statistics", "Data", "International Study", "Global Analysis", "International Trade", "Import Statistics", "Uruguay", "Business / Economics / Finance"], "revision": 1}
+/type/edition /books/OL10719718M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780741892393"], "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "publishers": ["Icon Group International"], "number_of_pages": 26, "edition_name": "2000 edition", "isbn_10": ["0741892391"], "publish_date": "December 29, 2000", "key": "/books/OL10719718M", "authors": [{"key": "/authors/OL3484235A"}, {"key": "/authors/OL3484235A"}], "title": "The 2000 Import and Export Market for Live Swine in United Kingdom (World Trade Report)", "type": {"key": "/type/edition"}, "subjects": ["General", "Export Statistics", "Data", "International Study", "Global Analysis", "International Trade", "Import Statistics", "United Kingdom", "Business / Economics / Finance"], "revision": 1}
+/type/edition /books/OL10720114M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780741896353"], "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "publishers": ["Icon Group International"], "number_of_pages": 32, "edition_name": "2000 edition", "isbn_10": ["0741896354"], "publish_date": "December 29, 2000", "key": "/books/OL10720114M", "authors": [{"key": "/authors/OL3495194A"}, {"key": "/authors/OL3484466A"}, {"key": "/authors/OL3484492A"}], "title": "The 2000 Import and Export Market for Fresh and Chilled Fish Excluding Fillets in Serbia & Montenegro (World Trade Report)", "type": {"key": "/type/edition"}, "subjects": ["General", "Export Statistics", "Data", "International Study", "Global Analysis", "International Trade", "Import Statistics", "Serbia & Montenegro", "Business / Economics / Finance"], "revision": 1}
+/type/edition /books/OL10720190M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780741897114"], "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "publishers": ["Icon Group International"], "number_of_pages": 13, "edition_name": "2000 edition", "isbn_10": ["0741897113"], "publish_date": "December 29, 2000", "key": "/books/OL10720190M", "authors": [{"key": "/authors/OL3495195A"}, {"key": "/authors/OL3484493A"}], "title": "The 2000 Import and Export Market for Frozen Fish Excluding Fillets in Mozambique (World Trade Report)", "type": {"key": "/type/edition"}, "subjects": ["General", "Export Statistics", "Data", "International Study", "Global Analysis", "International Trade", "Import Statistics", "Mozambique", "Business / Economics / Finance"], "revision": 1}
+/type/edition /books/OL10720328M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780741898494"], "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "publishers": ["Icon Group International"], "number_of_pages": 72, "edition_name": "2000 edition", "isbn_10": ["0741898497"], "publish_date": "December 29, 2000", "key": "/books/OL10720328M", "authors": [{"key": "/authors/OL3484254A"}, {"key": "/authors/OL3484254A"}], "title": "The 2000 Import and Export Market for Frozen Fish Fillets in Norway (World Trade Report)", "type": {"key": "/type/edition"}, "subjects": ["General", "Export Statistics", "Data", "International Study", "Global Analysis", "International Trade", "Import Statistics", "Norway", "Business / Economics / Finance"], "revision": 1}
+/type/edition /books/OL10720974M 3 2012-09-08T10:57:46.094649 {"publishers": ["In Celebration"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2012-09-08T10:57:46.094649"}, "weight": "2.7 ounces", "title": "Noah's Ark Little Charts", "number_of_pages": 36, "isbn_13": ["9780742411937"], "edition_name": "Lslf edition", "physical_format": "Loose leaf", "isbn_10": ["0742411931"], "publish_date": "January 29, 1999", "key": "/books/OL10720974M", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "latest_revision": 3, "works": [{"key": "/works/OL8440637W"}], "type": {"key": "/type/edition"}, "subjects": ["Religion / Youth Ministries", "Christian Education - Children & Youth", "Teaching Methods & Materials - General", "Education", "Religion - Youth Issues"], "physical_dimensions": "6 x 5.3 x 0.2 inches", "revision": 3}
+/type/edition /books/OL10720991M 4 2012-09-08T10:56:31.285993 {"publishers": ["In Celebration"], "physical_format": "Loose leaf", "weight": "0.6 ounces", "title": "Ten Commandments Reward Stickers", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780742412347"], "edition_name": "Lslf edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0742412342"], "publish_date": "January 29, 1999", "key": "/books/OL10720991M", "last_modified": {"type": "/type/datetime", "value": "2012-09-08T10:56:31.285993"}, "latest_revision": 4, "oclc_numbers": ["176927481"], "works": [{"key": "/works/OL8441315W"}], "type": {"key": "/type/edition"}, "subjects": ["Religion / Youth Ministries", "Christian Education - Children & Youth", "Religion", "Religion - Youth Issues"], "revision": 4}
+/type/edition /books/OL10721013M 6 2012-09-08T10:57:22.630488 {"publishers": ["In Celebration"], "physical_format": "Loose leaf", "last_modified": {"type": "/type/datetime", "value": "2012-09-08T10:57:22.630488"}, "weight": "0.8 ounces", "title": "What Would Jesus Do? Stamp Stickers", "identifiers": {"goodreads": ["2095616"]}, "isbn_13": ["9780742412873"], "edition_name": "Lslf edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0742412873"], "publish_date": "January 29, 1999", "key": "/books/OL10721013M", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "latest_revision": 6, "oclc_numbers": ["176927489"], "works": [{"key": "/works/OL9477991W"}], "type": {"key": "/type/edition"}, "subjects": ["Religion / Youth Ministries", "Christian Education - Children & Youth", "Religion", "Religion - Youth Issues"], "revision": 6}
+/type/edition /books/OL10721098M 3 2010-04-13T06:15:39.223795 {"publishers": ["In Celebration"], "languages": [{"key": "/languages/eng"}], "weight": "4.8 ounces", "title": "Stand Firm Trimmers (Christian Trimmer)", "isbn_10": ["0742414949"], "number_of_pages": 12, "isbn_13": ["9780742414945"], "covers": [2579015], "edition_name": "Pstr edition", "physical_format": "Poster", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:15:39.223795"}, "latest_revision": 3, "key": "/books/OL10721098M", "authors": [{"key": "/authors/OL2813985A"}], "publish_date": "April 15, 2002", "works": [{"key": "/works/OL8441230W"}], "type": {"key": "/type/edition"}, "subjects": ["Religion / Youth Ministries", "Religion - General", "Juvenile Nonfiction", "Children: Young Adult (Gr. 7-9)"], "revision": 3}
+/type/edition /books/OL10721222M 6 2011-04-27T13:28:49.967811 {"publishers": ["Living & Learning"], "identifiers": {"goodreads": ["6512294"]}, "weight": "8.8 ounces", "covers": [2579112], "physical_format": "Misc. Supplies", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T13:28:49.967811"}, "latest_revision": 6, "key": "/books/OL10721222M", "authors": [{"key": "/authors/OL2813985A"}], "subjects": ["Invalid Code", "Juvenile Nonfiction / Animals / General", "Games & Activities - Puzzles", "Juvenile Nonfiction", "Children: Kindergarten"], "languages": [{"key": "/languages/eng"}], "title": "Whose Baby? Sorting & Matching Photo Puzzle", "number_of_pages": 30, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780742418943"], "isbn_10": ["0742418944"], "publish_date": "March 16, 1999", "oclc_numbers": ["62388953"], "works": [{"key": "/works/OL8441478W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "7.6 x 7.4 x 1.5 inches", "revision": 6}
+/type/edition /books/OL10721327M 4 2011-04-29T19:08:57.189849 {"publishers": ["In Celebration"], "weight": "10.4 ounces", "covers": [2579208], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T19:08:57.189849"}, "latest_revision": 4, "key": "/books/OL10721327M", "authors": [{"key": "/authors/OL2813985A"}], "subjects": ["Religion / Youth Ministries", "Christian Education - Children & Youth", "Religion", "Religion - Youth Issues"], "languages": [{"key": "/languages/eng"}], "title": "Teacher Devotional, Journal, and Observations, Grade K-5 (Teacher & Student Devotionals)", "number_of_pages": 104, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780742428072"], "isbn_10": ["0742428079"], "publish_date": "February 25, 2004", "oclc_numbers": ["176927503"], "works": [{"key": "/works/OL8441288W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.9 x 8.4 x 0.3 inches", "revision": 4}
+/type/edition /books/OL10721471M 10 2020-12-03T13:55:13.649859 {"publishers": ["Rowman & Littlefield Publishers, Inc."], "identifiers": {"goodreads": ["3845276"]}, "weight": "12 ounces", "isbn_10": ["074251563X"], "covers": [9291683], "physical_format": "Hardcover", "lc_classifications": ["LB1028.5.T63 2001", "LB1028.5 .T63 2001"], "key": "/books/OL10721471M", "authors": [{"key": "/authors/OL381489A"}], "ocaid": "welcometocybersc0000tren", "subjects": ["Curriculum planning & development", "Educational resources & technology", "Aims And Objectives Of Education", "Educational Technology", "Education", "Education / Teaching", "Computers & Technology", "Curricula", "Education / Curricula", "Aids & Devices", "Computer-assisted instruction", "Internet in education"], "isbn_13": ["9780742515635"], "source_records": ["ia:welcometocybersc0000tren", "marc:marc_marygrove/marygrovecollegelibrary.full.D20191108.T213022.internetarchive2nd_REPACK.mrc:143736461:2592", "ia:welcometocybersc0000tren_w9o6", "bwb:9780742515635", "marc:marc_loc_2016/BooksAll.2016.part28.utf8:198006911:849"], "title": "Welcome to Cyberschool", "number_of_pages": 176, "languages": [{"key": "/languages/eng"}], "local_id": ["urn:mgc:31927000839586"], "publish_date": "July 11, 2001", "works": [{"key": "/works/OL2618896W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.7 inches", "lccn": ["2001019529"], "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-03T13:55:13.649859"}}
+/type/edition /books/OL1072181M 3 2020-11-18T05:21:50.115886 {"publishers": ["Ku\u0308ltu\u0308r Bakanl\u0131g\u0306\u0131"], "isbn_10": ["9751710804"], "series": ["Ku\u0308ltu\u0308r Bakanl\u0131g\u0306\u0131 yay\u0131nlar\u0131 ;", "1431.", "Sanat tarihi dizisi ;", "21", "Ku\u0308ltu\u0308r Bakanl\u0131g\u0306\u0131 yay\u0131nlar\u0131.", "21."], "lc_classifications": ["NA1366 .K89 1992"], "latest_revision": 3, "key": "/books/OL1072181M", "authors": [{"key": "/authors/OL572236A"}], "publish_places": ["Ankara"], "pagination": "xiii, 207 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:107932322:930"], "title": "Kara Osman-og\u0306lu ailesine ait mimari eserler", "lccn": ["93956011"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 197-204).\n\"92.06.Y.0001-1431\"--P. [3] of cover."}, "number_of_pages": 207, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/tur"}], "subjects": ["Kara Osman-og\u0306lu family -- Homes and haunts -- Turkey.", "Architecture, Ottoman."], "publish_date": "1992", "publish_country": "tu ", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T05:21:50.115886"}, "by_statement": "I\u0307nci Kuyulu.", "works": [{"key": "/works/OL3444973W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10721849M 9 2021-12-26T15:50:20.092534 {"publishers": ["Rowman & Littlefield Publishers, Inc."], "languages": [{"key": "/languages/eng"}], "table_of_contents": [{"level": 0, "title": "Introduction : The study of religion and violence", "type": {"key": "/type/toc_item"}}, {"level": 0, "title": "Fighting for God : scriptural obligations and holy wars", "type": {"key": "/type/toc_item"}}, {"level": 0, "title": "Psychological perspectives", "type": {"key": "/type/toc_item"}}, {"level": 0, "title": "Apocalyptic violence", "type": {"key": "/type/toc_item"}}, {"level": 0, "title": "Civilizational clashes, culture wars, and religious violence", "type": {"key": "/type/toc_item"}}, {"level": 0, "title": "Religious suffering, martyrdom, and sexual violence", "type": {"key": "/type/toc_item"}}, {"level": 0, "title": "Conclusion : Toward a holistic approach to religious violence", "type": {"key": "/type/toc_item"}}, {"level": 0, "title": "Glossary", "type": {"key": "/type/toc_item"}}, {"level": 0, "title": "About the author", "type": {"key": "/type/toc_item"}}], "covers": [6677020, 5072500], "physical_format": "Paperback", "key": "/books/OL10721849M", "authors": [{"key": "/authors/OL2671812A"}], "subtitle": "Understanding Religous Violence", "subjects": ["Fundamentalism", "Religion / Fundamentalism", "General", "Religion", "Religion - Church History"], "edition_name": "2 edition", "pagination": "x, 237 p.", "classifications": {}, "title": "Sacred Fury", "identifiers": {"librarything": ["6914773"], "goodreads": ["6673355"]}, "isbn_13": ["9780742560840"], "isbn_10": ["0742560848"], "publish_date": "April 28, 2008", "works": [{"key": "/works/OL8023301W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "23 x x centimeters", "lc_classifications": ["BL65.V55S33 2008"], "source_records": ["bwb:9780742560840"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-26T15:50:20.092534"}}
+/type/edition /books/OL10722533M 6 2022-12-05T02:18:22.958905 {"publishers": ["Classic Books"], "weight": "12 ounces", "title": "The War and the Future (Collected Works of John Masefield)", "isbn_13": ["9780742631687"], "physical_format": "Library Binding", "isbn_10": ["0742631680"], "publish_date": "May 2000", "key": "/books/OL10722533M", "authors": [{"key": "/authors/OL113831A"}], "works": [{"key": "/works/OL1103738W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.2 x 6.3 x 0.6 inches", "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-05T02:18:22.958905"}}
+/type/edition /books/OL10722593M 4 2022-02-18T02:16:00.999537 {"publishers": ["Classic Books"], "physical_format": "Library Binding", "title": "The Duchess de la Valliere (The Works of Edward Bulwer-Lytton (19 Volumes))", "isbn_10": ["0742633209"], "isbn_13": ["9780742633209"], "publish_date": "1836", "key": "/books/OL10722593M", "authors": [{"key": "/authors/OL18394A"}], "works": [{"key": "/works/OL61760W"}], "type": {"key": "/type/edition"}, "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-18T02:16:00.999537"}}
+/type/edition /books/OL10722824M 5 2011-03-30T00:17:44.198393 {"publishers": ["Classic Books"], "last_modified": {"type": "/type/datetime", "value": "2011-03-30T00:17:44.198393"}, "title": "Lectures Delivered in America in 1874 (The Works of Charles Kingsley (28 Volumes))", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780742636453"], "physical_format": "Library Binding", "isbn_10": ["0742636453"], "publish_date": "1875", "key": "/books/OL10722824M", "authors": [{"key": "/authors/OL5989856A"}], "latest_revision": 5, "works": [{"key": "/works/OL1129887W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10723090M 2 2009-12-15T00:53:03.968066 {"physical_format": "Hardcover", "subtitle": "Miscellaneous essays", "publishers": ["Classic Books"], "isbn_10": ["0742643638"], "number_of_pages": 386, "edition_name": "1st edition", "isbn_13": ["9780742643635"], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:53:03.968066"}, "publish_date": "January 1899", "key": "/books/OL10723090M", "authors": [{"key": "/authors/OL3495643A"}], "title": "Studies in Dante. Second Series", "latest_revision": 2, "works": [{"key": "/works/OL9478288W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10723517M 8 2021-10-04T07:43:08.484226 {"publishers": ["Washington Square Press"], "identifiers": {"librarything": ["3023499"], "goodreads": ["4733386"]}, "subtitle": "A Rock and Roll Cinderella Story", "covers": [5072691], "physical_format": "Paperback", "key": "/books/OL10723517M", "authors": [{"key": "/authors/OL2820778A"}], "subjects": ["Entertainment & Performing Arts - General", "Women", "Biography & Autobiography / Women", "Biography & Autobiography", "Biography / Autobiography", "Biography/Autobiography"], "isbn_13": ["9780743292344"], "title": "Petal Pusher", "number_of_pages": 336, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0743292340"], "publish_date": "September 16, 2008", "oclc_numbers": ["180755879"], "works": [{"key": "/works/OL8454115W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780743292344"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-10-04T07:43:08.484226"}}
+/type/edition /books/OL10723642M 7 2021-09-15T10:31:41.272626 {"publishers": ["Simon & Schuster Childrens Books"], "identifiers": {"librarything": ["3486625"]}, "ia_box_id": ["IA125721"], "covers": [6905073], "physical_format": "Paperback", "key": "/books/OL10723642M", "authors": [{"key": "/authors/OL2763863A"}], "ocaid": "takebowbabies00gold", "contributions": ["Bill Lesniewski (Illustrator)"], "subjects": ["Character books", "Picture books"], "source_records": ["ia:takebowbabies00gold", "bwb:9780743408547"], "title": "Rugrats", "number_of_pages": 32, "isbn_13": ["9780743408547"], "isbn_10": ["0439233178"], "publish_date": "September 4, 2000", "works": [{"key": "/works/OL8316959W"}], "type": {"key": "/type/edition"}, "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-09-15T10:31:41.272626"}}
+/type/edition /books/OL10723764M 7 2022-08-04T22:54:33.087230 {"publishers": ["Simon & Schuster Childrens Books"], "number_of_pages": 12, "title": "Felt Friends (Blue's Clues S.)", "physical_format": "Hardcover", "identifiers": {"goodreads": ["666354"], "librarything": ["9155830"]}, "covers": [2579895], "isbn_13": ["9780743450799"], "isbn_10": ["0743450795"], "publish_date": "November 3, 2002", "key": "/books/OL10723764M", "authors": [{"key": "/authors/OL2728387A"}, {"key": "/authors/OL2821001A"}], "type": {"key": "/type/edition"}, "works": [{"key": "/works/OL27679935W"}], "ocaid": "feltfriends0000sant", "source_records": ["ia:feltfriends0000sant", "amazon:0743450795"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-04T22:54:33.087230"}}
+/type/edition /books/OL10723801M 4 2021-10-22T00:09:09.892334 {"publishers": ["Simon & Schuster Childrens Books"], "physical_format": "Paperback", "key": "/books/OL10723801M", "title": "Jimmy Neutron", "number_of_pages": 24, "covers": [2579949], "isbn_13": ["9780743462341"], "isbn_10": ["0743462343"], "publish_date": "May 6, 2003", "authors": [{"key": "/authors/OL2724583A"}], "works": [{"key": "/works/OL8160058W"}], "type": {"key": "/type/edition"}, "subjects": ["Picture books", "Science fiction"], "ocaid": "genius1010000sant", "source_records": ["ia:genius1010000sant"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-10-22T00:09:09.892334"}}
+/type/edition /books/OL10723866M 4 2011-04-29T21:02:27.734469 {"publishers": ["I Books"], "subtitle": "A Practical Guide to Mental, Physical, and Spiritual Needs", "covers": [2579993], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T21:02:27.734469"}, "latest_revision": 4, "key": "/books/OL10723866M", "authors": [{"key": "/authors/OL222647A"}], "subjects": ["Health & Fitness", "Diet / Health / Fitness", "Health/Fitness", "Diseases - Heart", "Healthy Living", "Health & Fitness / General", "General"], "languages": [{"key": "/languages/eng"}], "title": "7 Steps to Overcoming Cardiovascular Disease", "number_of_pages": 160, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780743479868"], "isbn_10": ["0743479866"], "publish_date": "November 1, 2003", "oclc_numbers": ["52992144"], "works": [{"key": "/works/OL1859597W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10724181M 2 2009-12-15T00:53:05.435268 {"physical_format": "Audio CD", "title": "Untitled Audio", "isbn_10": ["0743532384"], "publishers": ["Pimsleur"], "isbn_13": ["9780743532389"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:53:05.435268"}, "latest_revision": 2, "key": "/books/OL10724181M", "authors": [{"key": "/authors/OL2747614A"}], "subjects": ["Foreign Language Study / Russian"], "works": [{"key": "/works/OL8257740W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10724292M 5 2011-04-28T02:20:26.256618 {"publishers": ["Simon & Schuster Audio"], "physical_format": "Audio CD", "subtitle": "In Business and in Life", "last_modified": {"type": "/type/datetime", "value": "2011-04-28T02:20:26.256618"}, "title": "Coping with Difficult People", "identifiers": {"goodreads": ["6949215"]}, "isbn_13": ["9780743573047"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0743573048"], "publish_date": "July 8, 2008", "key": "/books/OL10724292M", "authors": [{"key": "/authors/OL2751034A"}], "latest_revision": 5, "oclc_numbers": ["241298387"], "works": [{"key": "/works/OL8268372W"}], "type": {"key": "/type/edition"}, "subjects": ["Business Law", "Skills", "Business & Economics / Business Law", "Business & Economics", "Abridged Audio - Business/Professional", "Business/Economics"], "revision": 5}
+/type/edition /books/OL10724498M 2 2009-12-15T00:53:05.435268 {"physical_format": "Paperback", "languages": [{"key": "/languages/eng"}], "publishers": ["Teacher Created Resources"], "isbn_10": ["0743935470"], "number_of_pages": 360, "edition_name": "TRD edition", "isbn_13": ["9780743935470"], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:53:05.435268"}, "publish_date": "March 17, 2005", "key": "/books/OL10724498M", "authors": [{"key": "/authors/OL2821290A"}], "title": "Smarts Kids Ages 9-11 (Trade)", "latest_revision": 2, "works": [{"key": "/works/OL8455427W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10724683M 6 2012-07-07T17:28:33.315828 {"publishers": ["Teacher Created Resources"], "number_of_pages": 8, "covers": [2580471], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2012-07-07T17:28:33.315828"}, "latest_revision": 6, "key": "/books/OL10724683M", "authors": [{"key": "/authors/OL2821353A"}], "subjects": ["Preschool & Kindergarten", "Teaching Methods & Materials - Language Arts", "Teaching Methods & Materials - Reading", "Education / Teaching Methods & Materials / Reading", "Education / Teaching"], "isbn_13": ["9780743985130"], "classifications": {}, "title": "Land Level 4", "notes": {"type": "/type/text", "value": "Early Readers from TIME For Kids) (Early Readers)"}, "identifiers": {"librarything": ["8620379"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0743985133"], "publish_date": "November 5, 2004", "oclc_numbers": ["369803233"], "works": [{"key": "/works/OL8455742W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL10724774M 5 2022-11-15T06:36:51.630018 {"publishers": ["BRADY GAMES"], "number_of_pages": 176, "weight": "6.4 ounces", "covers": [2580522], "edition_name": "1 edition", "physical_format": "Paperback", "key": "/books/OL10724774M", "authors": [{"key": "/authors/OL2821354A"}], "subjects": ["Computer games", "Games", "Computers - Games", "Games/Puzzles", "Video & Electronic - Nintendo", "Video & Electronic - Sega Dreamcast", "Video & Electronic - Sony Playstation", "Games / Video & Electronic", "Video & Electronic - General", "Video games"], "isbn_13": ["9780744000443"], "title": "Secret Codes Pocket Guide 2001", "identifiers": {"librarything": ["3097735"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0744000440"], "publish_date": "December 7, 2000", "works": [{"key": "/works/OL8456028W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "7.4 x 4 x 0.2 inches", "source_records": ["amazon:0744000440"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-15T06:36:51.630018"}}
+/type/edition /books/OL10725392M 4 2010-04-24T18:08:39.779362 {"publishers": ["Walker Books"], "title": "Where's Wally Poster FREE", "isbn_10": ["0744511666"], "identifiers": {"goodreads": ["1564485"]}, "isbn_13": ["9780744511666"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:08:39.779362"}, "latest_revision": 4, "key": "/books/OL10725392M", "authors": [{"key": "/authors/OL3495913A"}], "works": [{"key": "/works/OL9478722W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10726240M 6 2022-09-17T03:13:09.716338 {"publishers": ["Walker Books"], "title": "Little Foal", "identifiers": {"goodreads": ["5839357"]}, "isbn_13": ["9780744551099"], "physical_format": "Paperback", "isbn_10": ["0744551099"], "publish_date": "March 4, 1996", "key": "/books/OL10726240M", "authors": [{"key": "/authors/OL3375210A"}], "oclc_numbers": ["154648006"], "works": [{"key": "/works/OL9329061W"}], "type": {"key": "/type/edition"}, "subjects": ["Picture books", "Fiction"], "source_records": ["bwb:9780744551099"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-17T03:13:09.716338"}}
+/type/edition /books/OL10726330M 4 2022-09-17T02:54:39.488710 {"publishers": ["Walker Books"], "number_of_pages": 32, "title": "\"This Is The Bear\" Card", "type": {"key": "/type/edition"}, "identifiers": {"librarything": ["739563"]}, "isbn_13": ["9780744554366"], "isbn_10": ["0744554365"], "publish_date": "September 2, 1996", "key": "/books/OL10726330M", "oclc_numbers": ["48868200"], "physical_format": "Paperback", "works": [{"key": "/works/OL28776338W"}], "source_records": ["bwb:9780744554366"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-17T02:54:39.488710"}}
+/type/edition /books/OL1072633M 4 2020-11-18T05:26:56.801121 {"publishers": ["Akbank"], "subtitle": "meka\u0302nlar ve zamanlar", "isbn_10": ["9757630284"], "subject_place": ["Bebek (Istanbul, Turkey)", "Istanbul (Turkey)"], "lc_classifications": ["DR738.5.B43 K39 1993"], "latest_revision": 4, "key": "/books/OL1072633M", "authors": [{"key": "/authors/OL379765A"}], "publish_places": ["I\u0307stanbul"], "pagination": "195 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:108314922:898"], "title": "Bebek", "lccn": ["93956658"], "notes": {"type": "/type/text", "value": "In Turkish with a summary in English.\nIncludes bibliographical references (p. [186]-190) and index.\n\"Yay\u0131nc\u0131 kodu: 92-34-Y.0230.2\"--T.p. verso."}, "number_of_pages": 195, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/tur"}], "subjects": ["Bebek (Istanbul, Turkey) -- History.", "Istanbul (Turkey) -- History."], "publish_date": "1993", "publish_country": "tu ", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T05:26:56.801121"}, "series": ["Akbank ku\u0308ltu\u0308r ve sanat kitaplar\u0131 ;", "57"], "by_statement": "Cahit Kayra.", "oclc_numbers": ["29533503"], "works": [{"key": "/works/OL2613154W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10726639M 4 2010-04-24T18:08:39.779362 {"publishers": ["Walker Books Ltd"], "title": "C/Pack", "isbn_10": ["0744571553"], "identifiers": {"goodreads": ["1234987"]}, "isbn_13": ["9780744571554"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:08:39.779362"}, "publish_date": "July 5, 1999", "key": "/books/OL10726639M", "authors": [{"key": "/authors/OL3496020A"}], "latest_revision": 4, "works": [{"key": "/works/OL9478913W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10726656M 6 2022-12-04T20:30:53.488852 {"publishers": ["Walker Books Ltd"], "covers": [2581352], "physical_format": "Paperback", "key": "/books/OL10726656M", "authors": [{"key": "/authors/OL22684A"}], "contributions": ["Julie Douglas (Illustrator)"], "subjects": ["Fiction dealing with multiculturalism"], "edition_name": "New Ed edition", "source_records": ["amazon:0744572274", "bwb:9780744572278", "promise:bwb_daily_pallets_2022-08-02"], "title": "Flower Street Friends", "number_of_pages": 96, "isbn_13": ["9780744572278"], "isbn_10": ["0744572274"], "publish_date": "September 30, 1999", "oclc_numbers": ["41620099"], "works": [{"key": "/works/OL11992W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:KR-132-090"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T20:30:53.488852"}}
+/type/edition /books/OL10726917M 2 2009-12-15T00:53:08.630288 {"publishers": ["Walker Books Ltd"], "key": "/books/OL10726917M", "title": "Read and Wonder Offer 3", "isbn_13": ["9780744584707"], "physical_format": "Paperback", "isbn_10": ["0744584701"], "publish_date": "September 8, 2000", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:53:08.630288"}, "authors": [{"key": "/authors/OL3461879A"}], "latest_revision": 2, "works": [{"key": "/works/OL9430984W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10727159M 3 2010-04-24T18:08:39.779362 {"publishers": ["Adamantine Press"], "identifiers": {"goodreads": ["5631442"]}, "key": "/books/OL10727159M", "weight": "2.1 pounds", "title": "The Dictionary of Alternative Defence (Adamantine International Studies)", "type": {"key": "/type/edition"}, "number_of_pages": 448, "isbn_13": ["9780744900484"], "isbn_10": ["0744900484"], "publish_date": "December 1993", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:08:39.779362"}, "authors": [{"key": "/authors/OL2642784A"}], "latest_revision": 3, "physical_format": "Hardcover", "subjects": ["International relations", "Reference works", "Warfare & Defence"], "physical_dimensions": "9.1 x 6 x 1.5 inches", "revision": 3}
+/type/edition /books/OL10727310M 3 2010-08-10T03:19:26.056222 {"publishers": ["Prentice Hall / Harvester Wheatsheaf"], "physical_format": "Paperback", "source_records": ["amazon:0745005977"], "title": "Microtheory", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 336, "last_modified": {"type": "/type/datetime", "value": "2010-08-10T03:19:26.056222"}, "edition_name": "New Ed edition", "isbn_13": ["9780745005973"], "isbn_10": ["0745005977"], "publish_date": "February 1, 1989", "key": "/books/OL10727310M", "authors": [{"key": "/authors/OL35483A"}], "latest_revision": 3, "works": [{"key": "/works/OL72124W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10727474M 3 2019-07-31T10:10:19.564234 {"publishers": ["Prentice Hall Europe (a Pearson Education company)"], "last_modified": {"type": "/type/datetime", "value": "2019-07-31T10:10:19.564234"}, "title": "The Quantitative Analysis of Social Representations (Harvester Wheatsheaf European Monographs in Social Psychology Series)", "number_of_pages": 200, "isbn_13": ["9780745013473"], "covers": [5072878], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Hardcover", "isbn_10": ["0745013473"], "publish_date": "May 1993", "key": "/books/OL10727474M", "authors": [{"key": "/authors/OL1126474A"}, {"key": "/authors/OL3368777A"}, {"key": "/authors/OL473964A"}], "latest_revision": 3, "works": [{"key": "/works/OL5112374W"}], "type": {"key": "/type/edition"}, "first_sentence": {"type": "/type/text", "value": "SR studies involve linguistic material such as responses to questionnaires, free associations of words and conversations."}, "revision": 3}
+/type/edition /books/OL10727500M 1 2008-04-30T09:38:13.731961 {"physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Prentice Hall / Harvester Wheatsheaf"], "title": "Psychology Biology Female Sex Choi/nicolson", "isbn_13": ["9780745014111"], "isbn_10": ["0745014119"], "publish_date": "September 1, 1994", "key": "/books/OL10727500M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10727586M 2 2022-12-03T18:13:01.849974 {"physical_format": "Paperback", "publishers": ["Prentice-Hall"], "title": "Sm Politics UK Teachers Notes", "isbn_13": ["9780745016597"], "isbn_10": ["0745016596"], "publish_date": "December 22, 1994", "key": "/books/OL10727586M", "authors": [{"key": "/authors/OL2624903A"}], "type": {"key": "/type/edition"}, "works": [{"key": "/works/OL31187983W"}], "source_records": ["amazon:0745016596"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-03T18:13:01.849974"}}
+/type/edition /books/OL1072773M 3 2020-11-18T05:28:30.468036 {"other_titles": ["Evhadiyye tarikat\u0131"], "publishers": ["O\u0308mer Faruk Bayram"], "isbn_10": ["9759541009"], "lc_classifications": ["MLCMN 96/2420 (B)"], "latest_revision": 3, "key": "/books/OL1072773M", "authors": [{"key": "/authors/OL97558A"}], "publish_places": ["Selc\u0327uklu, Konya [Turkey]"], "pagination": "141 p. ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:108428840:681"], "title": "S\u0327eyh Evhadu\u0308'd-din Ha\u0302mid el-Kirma\u0302n\u0131\u0302 ve evhadiyye tarikat\u0131", "lccn": ["93956979"], "number_of_pages": 141, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/tur"}], "subjects": ["Awh\u0323ad al-Di\u0304n Kirmani\u0304, H\u0323a\u0304mid ibn Abi\u0304 al-Fakhr, d. 1237 or 8."], "publish_date": "1993", "publish_country": "tu ", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T05:28:30.468036"}, "by_statement": "Mika\u0302il Bayram.", "works": [{"key": "/works/OL1022236W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10727814M 4 2011-04-26T03:05:33.286817 {"publishers": ["G K Hall & Co"], "identifiers": {}, "series": ["(Lythway Large Print Series)"], "physical_format": "Textbook Binding", "last_modified": {"type": "/type/datetime", "value": "2011-04-26T03:05:33.286817"}, "latest_revision": 4, "key": "/books/OL10727814M", "authors": [{"key": "/authors/OL281137A"}], "subjects": ["Mystery/Suspense"], "classifications": {}, "title": "Dead Heat", "number_of_pages": 232, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780745107196"], "isbn_10": ["0745107192"], "publish_date": "August 1988", "oclc_numbers": ["17259017"], "works": [{"key": "/works/OL2200699W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10727820M 5 2021-12-24T23:49:13.181572 {"publishers": ["G K Hall & Co"], "identifiers": {}, "series": ["(Lythway Large Print Series)"], "physical_format": "Textbook Binding", "key": "/books/OL10727820M", "authors": [{"key": "/authors/OL3496172A"}], "subjects": ["Large Print"], "classifications": {}, "title": "Close Call for Cheyenne", "number_of_pages": 168, "isbn_13": ["9780745107318"], "isbn_10": ["0745107311"], "publish_date": "September 1988", "oclc_numbers": ["17439962"], "works": [{"key": "/works/OL9479301W"}], "type": {"key": "/type/edition"}, "lc_classifications": ["PR6057.R458/"], "source_records": ["bwb:9780745107318"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-24T23:49:13.181572"}}
+/type/edition /books/OL10728006M 5 2022-12-05T04:33:01.156188 {"publishers": ["MacMillan Publishing Company"], "number_of_pages": 272, "weight": "13.6 ounces", "series": ["(Lythway Large Print Series)"], "physical_format": "Hardcover", "key": "/books/OL10728006M", "authors": [{"key": "/authors/OL1010326A"}], "subjects": ["Romance", "Romance - General", "Fiction - Romance", "Romance: Modern"], "edition_name": "Lrg edition", "languages": [{"key": "/languages/eng"}], "classifications": {}, "title": "Remember Me?", "identifiers": {}, "isbn_13": ["9780745112695"], "isbn_10": ["0745112692"], "publish_date": "May 1991", "works": [{"key": "/works/OL9479182W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 5.8 x 0.8 inches", "local_id": ["urn:bwbsku:O8-BHY-626"], "source_records": ["promise:bwb_daily_pallets_2022-06-01"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-05T04:33:01.156188"}}
+/type/edition /books/OL10728341M 3 2011-04-25T18:24:07.359679 {"publishers": ["Chivers Audio Books"], "physical_format": "Audio Cassette", "last_modified": {"type": "/type/datetime", "value": "2011-04-25T18:24:07.359679"}, "title": "All Else is Folly", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780745140551"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0745140556"], "publish_date": "January 1996", "key": "/books/OL10728341M", "authors": [{"key": "/authors/OL952385A"}], "latest_revision": 3, "works": [{"key": "/works/OL4638220W"}], "type": {"key": "/type/edition"}, "subjects": ["Modern fiction", "Unabridged Audio - Fiction/General"], "revision": 3}
+/type/edition /books/OL10728730M 6 2011-04-27T22:58:19.696133 {"publishers": ["Chivers Audio Books"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2011-04-27T22:58:19.696133"}, "title": "Quiet as a Nun (Jemima Shore Mysteries)", "identifiers": {"goodreads": ["3076091"]}, "isbn_13": ["9780745159713"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Audio Cassette", "isbn_10": ["0745159710"], "publish_date": "January 1996", "key": "/books/OL10728730M", "authors": [{"key": "/authors/OL199240A"}], "latest_revision": 6, "oclc_numbers": ["655888928"], "works": [{"key": "/works/OL8063050W"}], "type": {"key": "/type/edition"}, "subjects": ["Crime & mystery", "Modern fiction", "Mystery & Detective - Women Sleuths", "Unabridged Audio - Fiction/General"], "revision": 6}
+/type/edition /books/OL10728855M 5 2012-09-14T20:59:44.303250 {"publishers": ["Chivers Audio Books"], "weight": "15.2 ounces", "covers": [2581573], "edition_name": "Unabridged edition", "physical_format": "Audio cassette", "last_modified": {"type": "/type/datetime", "value": "2012-09-14T20:59:44.303250"}, "latest_revision": 5, "key": "/books/OL10728855M", "contributions": ["Sean Barrett (Narrator)"], "subjects": ["Modern fiction", "Suspense", "Fiction", "Unabridged Audio - Fiction/Mystery", "Audio Adult: Books On Tape"], "isbn_13": ["9780745167268"], "title": "The Legend", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0745167268"], "publish_date": "January 1997", "oclc_numbers": ["36533832"], "works": [{"key": "/works/OL1873349W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6.4 x 1.2 inches", "revision": 5}
+/type/edition /books/OL1072902M 3 2020-11-18T05:30:03.145968 {"other_titles": ["Stikhotvoreniia\u0361\ufe21."], "publishers": ["Haypethrat"], "lc_classifications": ["MLCSN 93/01190 (P)"], "latest_revision": 3, "key": "/books/OL1072902M", "authors": [{"key": "/authors/OL572617A"}], "publish_places": ["Erevan"], "pagination": "242 p. ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:108535258:537"], "title": "Karoti krakner", "lccn": ["93957552"], "notes": {"type": "/type/text", "value": "Poetry.\nTitle on t.p. verso: Stikhotvoreniia\u0361\ufe21."}, "number_of_pages": 242, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/arm"}], "last_modified": {"type": "/type/datetime", "value": "2020-11-18T05:30:03.145968"}, "publish_date": "1957", "publish_country": "ai ", "by_statement": "Sarmen.", "works": [{"key": "/works/OL3445814W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10729525M 5 2011-04-26T19:33:40.382552 {"publishers": ["Polity Pr"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-26T19:33:40.382552"}, "title": "Material Culture And the Long Term", "identifiers": {"goodreads": ["479806"]}, "isbn_13": ["9780745623061"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0745623069"], "publish_date": "January 30, 2008", "key": "/books/OL10729525M", "authors": [{"key": "/authors/OL227754A"}], "latest_revision": 5, "oclc_numbers": ["149446810"], "works": [{"key": "/works/OL1902569W"}], "type": {"key": "/type/edition"}, "subjects": ["Anthropology", "Cultural studies", "Sociology, Social Studies", "Sociology - General", "Material Culture", "Sociology (General)", "Social Science", "Sociology"], "revision": 5}
+/type/edition /books/OL10729597M 2 2011-04-30T03:49:16.363805 {"publishers": ["Blackwell Pub"], "languages": [{"key": "/languages/eng"}], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "subtitle": "Taking a Multi Professional Approach", "last_modified": {"type": "/type/datetime", "value": "2011-04-30T03:49:16.363805"}, "title": "Shifting Context of Healthcare", "number_of_pages": 288, "isbn_13": ["9780745628585"], "edition_name": "1 edition", "physical_format": "Hardcover", "isbn_10": ["0745628583"], "publish_date": "September 30, 2007", "key": "/books/OL10729597M", "authors": [{"key": "/authors/OL2766920A"}, {"key": "/authors/OL3461868A"}], "latest_revision": 2, "oclc_numbers": ["144559306"], "type": {"key": "/type/edition"}, "subjects": ["Central government policies", "POLITICS & GOVERNMENT", "Public Policy - General", "Political Science", "Politics/International Relations"], "revision": 2}
+/type/edition /books/OL10729603M 4 2010-04-24T18:08:39.779362 {"publishers": ["Blackwell Pub"], "number_of_pages": 180, "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:08:39.779362"}, "title": "Conversations With Terry Eagleton", "type": {"key": "/type/edition"}, "identifiers": {"goodreads": ["188814"]}, "isbn_13": ["9780745628868"], "edition_name": "1 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0745628869"], "publish_date": "March 30, 2008", "key": "/books/OL10729603M", "authors": [{"key": "/authors/OL2735134A"}], "latest_revision": 4, "works": [{"key": "/works/OL8223530W"}], "physical_format": "Hardcover", "subjects": ["Literary studies: general", "General", "Literary Criticism"], "revision": 4}
+/type/edition /books/OL10729686M 4 2022-10-18T08:51:19.066182 {"publishers": ["Blackwell Pub"], "physical_format": "Paperback", "title": "Crime And Community", "isbn_13": ["9780745633336"], "edition_name": "1 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0745633331"], "publish_date": "May 27, 2007", "key": "/books/OL10729686M", "authors": [{"key": "/authors/OL2912169A"}], "oclc_numbers": ["149557973"], "works": [{"key": "/works/OL8642131W"}], "type": {"key": "/type/edition"}, "subjects": ["Criminology", "Social Science", "Sociology"], "source_records": ["bwb:9780745633336"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T08:51:19.066182"}}
+/type/edition /books/OL10730059M 4 2021-09-15T15:06:47.456499 {"publishers": ["Chariot Victor Publishing"], "languages": [{"key": "/languages/eng"}], "key": "/books/OL10730059M", "title": "Little Christmas Foldout Book:", "identifiers": {"goodreads": ["6619406"]}, "isbn_13": ["9780745921211"], "physical_format": "Paperback", "isbn_10": ["0745921213"], "publish_date": "August 1992", "type": {"key": "/type/edition"}, "subjects": ["Holidays - Christmas", "Religion", "Unassigned Title"], "works": [{"key": "/works/OL25076515W"}], "source_records": ["bwb:9780745921211"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-09-15T15:06:47.456499"}}
+/type/edition /books/OL10730381M 5 2011-04-25T18:59:48.701531 {"publishers": ["Barnabas"], "identifiers": {"goodreads": ["3046528"]}, "last_modified": {"type": "/type/datetime", "value": "2011-04-25T18:59:48.701531"}, "title": "Jonah and the Little Black Cloud (Paintbox People S.)", "contributions": ["Daniel Collins (Illustrator)"], "number_of_pages": 32, "isbn_13": ["9780745932941"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0745932940"], "publish_date": "March 20, 1998", "key": "/books/OL10730381M", "authors": [{"key": "/authors/OL227171A"}], "latest_revision": 5, "oclc_numbers": ["315028281"], "works": [{"key": "/works/OL1897586W"}], "type": {"key": "/type/edition"}, "subjects": ["Bible stories", "Colouring & painting", "For National Curriculum Key Stage 2"], "revision": 5}
+/type/edition /books/OL10730504M 5 2021-09-15T19:28:52.704613 {"publishers": ["Lion Hudson Plc"], "physical_format": "Hardcover", "title": "Wit and Wisdom for Life's Journey (Giftlines: Wit & Wisdom)", "number_of_pages": 64, "covers": [2581821], "isbn_13": ["9780745936871"], "isbn_10": ["0745936873"], "publish_date": "August 1, 1996", "key": "/books/OL10730504M", "authors": [{"key": "/authors/OL220965A"}], "oclc_numbers": ["36909197"], "works": [{"key": "/works/OL1845549W"}], "type": {"key": "/type/edition"}, "subjects": ["Christian life & practice", "Christianity", "Religion: general"], "source_records": ["bwb:9780745936871"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-09-15T19:28:52.704613"}}
+/type/edition /books/OL10730516M 4 2021-09-15T19:28:47.646601 {"publishers": ["Lion"], "physical_format": "Paperback", "subtitle": "Finding God in Illn (Finding God in ...)", "title": "Ces Pocket Guide", "number_of_pages": 48, "isbn_13": ["9780745937168"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0745937160"], "publish_date": "March 1997", "key": "/books/OL10730516M", "authors": [{"key": "/authors/OL2751246A"}], "oclc_numbers": ["43232710"], "works": [{"key": "/works/OL8269275W"}], "type": {"key": "/type/edition"}, "subjects": ["Christian spirituality", "Coping with illness", "Personal Christian testimony & popular inspirational works", "Christian Life - General", "General", "Religion", "Religion - Christian Life"], "source_records": ["bwb:9780745937168"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-09-15T19:28:47.646601"}}
+/type/edition /books/OL10730810M 2 2011-04-27T19:09:16.405093 {"publishers": ["Lion Publishing PLC"], "last_modified": {"type": "/type/datetime", "value": "2011-04-27T19:09:16.405093"}, "title": "Daughters (Postbooks)", "number_of_pages": 64, "isbn_13": ["9780745946054"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Hardcover", "isbn_10": ["0745946054"], "publish_date": "August 18, 2000", "key": "/books/OL10730810M", "latest_revision": 2, "oclc_numbers": ["43718452"], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10730855M 3 2021-09-16T07:37:21.992554 {"publishers": ["Lion Hudson Plc"], "weight": "1.9 ounces", "title": "Lullaby Rhymes Starry Skies Shine", "isbn_10": ["0745946895"], "isbn_13": ["9780745946894"], "physical_format": "Unknown Binding", "publish_date": "January 1, 2003", "key": "/books/OL10730855M", "authors": [{"key": "/authors/OL1429821A"}], "subjects": ["Nursery rhymes"], "works": [{"key": "/works/OL5832436W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780745946894"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-09-16T07:37:21.992554"}}
+/type/edition /books/OL10730975M 11 2020-12-20T22:53:12.355326 {"publishers": ["Lion UK"], "identifiers": {"goodreads": ["2175392"], "librarything": ["4696711"]}, "weight": "9.1 ounces", "covers": [2582159], "physical_format": "Paperback", "lc_classifications": ["BL51", "BL51 .H54 2007"], "key": "/books/OL10730975M", "authors": [{"key": "/authors/OL2667583A"}], "subjects": ["Philosophy of religion", "Religion", "Religion - Theology", "Christian Theology - General", "Religion / Theology", "Religious"], "isbn_13": ["9780745951409"], "source_records": ["amazon:0745951406", "marc:marc_loc_updates/v36.i43.records.utf8:10875508:726", "bwb:9780745951409", "marc:marc_loc_2016/BooksAll.2016.part35.utf8:276924185:726"], "title": "The Big Questions", "number_of_pages": 240, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0745951406"], "publish_date": "May 28, 2008", "oclc_numbers": ["85690541"], "works": [{"key": "/works/OL8013249W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "7.6 x 5.1 x 0.9 inches", "lccn": ["2008425874"], "latest_revision": 11, "revision": 11, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-20T22:53:12.355326"}}
+/type/edition /books/OL10731038M 4 2021-09-16T09:45:38.914558 {"publishers": ["Lion Hudson Plc"], "physical_format": "Hardcover", "title": "Gnb Sunrise Hardback Ed II", "identifiers": {"goodreads": ["2017430"]}, "isbn_13": ["9780745995878"], "isbn_10": ["074599587X"], "publish_date": "April 1, 1995", "key": "/books/OL10731038M", "authors": [{"key": "/authors/OL2621505A"}], "type": {"key": "/type/edition"}, "works": [{"key": "/works/OL25093763W"}], "source_records": ["bwb:9780745995878"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-09-16T09:45:38.914558"}}
+/type/edition /books/OL10731472M 6 2020-08-24T10:46:31.884068 {"publishers": ["Usborne Publishing Ltd"], "number_of_pages": 32, "covers": [5073193], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2020-08-24T10:46:31.884068"}, "latest_revision": 6, "key": "/books/OL10731472M", "authors": [{"key": "/authors/OL2703462A"}], "ocaid": "usbornebookofpap0000watt", "source_records": ["ia:usbornebookofpap0000watt"], "title": "Book of Paper Engineering (How to Make)", "identifiers": {"librarything": ["3506350"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780746023280"], "isbn_10": ["0746023286"], "publish_date": "March 27, 1997", "oclc_numbers": ["59651032"], "works": [{"key": "/works/OL8117747W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL10732202M 5 2011-01-08T18:57:57.270341 {"publishers": ["Northcote House Educational"], "classifications": {}, "last_modified": {"type": "/type/datetime", "value": "2011-01-08T18:57:57.270341"}, "title": "Nayantara Sahgal", "notes": {"type": "/type/text", "value": "Writers & Their Work"}, "identifiers": {"goodreads": ["5322390"]}, "isbn_13": ["9780746309605"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0746309600"], "latest_revision": 5, "key": "/books/OL10732202M", "authors": [{"key": "/authors/OL922892A"}], "works": [{"key": "/works/OL4561516W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL1073226M 3 2020-11-18T05:34:32.718485 {"publishers": ["Ittih\u0323a\u0304d al-Kutta\u0304b al-\u02bbArab"], "subtitle": "shi\u02bbr", "lc_classifications": ["MLCSN 93/00386 (P)"], "latest_revision": 3, "key": "/books/OL1073226M", "authors": [{"key": "/authors/OL214207A"}], "publish_places": ["Dimashq"], "pagination": "89 p ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:108879940:497"], "title": "A\u02bbu\u0304du al-a\u0304na min mawti\u0304", "lccn": ["93959112"], "notes": {"type": "/type/text", "value": "Poetry."}, "number_of_pages": 89, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/ara"}], "last_modified": {"type": "/type/datetime", "value": "2020-11-18T05:34:32.718485"}, "publish_date": "1978", "publish_country": "sy ", "by_statement": "Zuhayr Gha\u0304nim.", "works": [{"key": "/works/OL1788969W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10732758M 5 2011-04-22T22:46:41.793363 {"publishers": ["Headline Book Publishing"], "number_of_pages": 320, "last_modified": {"type": "/type/datetime", "value": "2011-04-22T22:46:41.793363"}, "title": "Black Wolf", "type": {"key": "/type/edition"}, "identifiers": {"goodreads": ["2510842"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780747207450"], "isbn_10": ["0747207453"], "publish_date": "September 9, 1993", "key": "/books/OL10732758M", "authors": [{"key": "/authors/OL1349442A"}], "latest_revision": 5, "oclc_numbers": ["30029747"], "works": [{"key": "/works/OL5603255W"}], "physical_format": "Hardcover", "subjects": ["Modern fiction"], "revision": 5}
+/type/edition /books/OL10732821M 5 2011-04-27T14:00:42.038100 {"publishers": ["Headline Book Publishing"], "number_of_pages": 320, "last_modified": {"type": "/type/datetime", "value": "2011-04-27T14:00:42.038100"}, "title": "Murder at White House Farm", "type": {"key": "/type/edition"}, "identifiers": {"goodreads": ["2006903"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780747209737"], "isbn_10": ["0747209731"], "publish_date": "May 5, 1994", "key": "/books/OL10732821M", "authors": [{"key": "/authors/OL1715289A"}], "latest_revision": 5, "oclc_numbers": ["30783737"], "works": [{"key": "/works/OL6464758W"}], "physical_format": "Hardcover", "subjects": ["True crime"], "revision": 5}
+/type/edition /books/OL10732991M 8 2022-12-07T13:42:16.921795 {"publishers": ["Headline"], "number_of_pages": 282, "title": "Heaven's Door", "type": {"key": "/type/edition"}, "identifiers": {"goodreads": ["3669076"]}, "covers": [2582694], "isbn_13": ["9780747218555"], "isbn_10": ["0747218552"], "publish_date": "1997", "key": "/books/OL10732991M", "authors": [{"key": "/authors/OL3249391A"}], "oclc_numbers": ["59600191"], "works": [{"key": "/works/OL9179321W"}], "physical_format": "Hardcover", "ocaid": "heavensdoor0000rose", "source_records": ["ia:heavensdoor0000rose", "promise:bwb_daily_pallets_2022-03-17"], "local_id": ["urn:bwbsku:KQ-479-237"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-07T13:42:16.921795"}}
+/type/edition /books/OL10733255M 4 2021-10-04T14:09:59.180395 {"publishers": ["Headline Book Publishing"], "number_of_pages": 640, "title": "Fire On The Hill", "type": {"key": "/type/edition"}, "identifiers": {"librarything": ["1630846"]}, "isbn_13": ["9780747237624"], "isbn_10": ["074723762X"], "publish_date": "May 14, 1992", "key": "/books/OL10733255M", "oclc_numbers": ["26548943"], "physical_format": "Paperback", "works": [{"key": "/works/OL25652609W"}], "source_records": ["bwb:9780747237624"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-10-04T14:09:59.180395"}}
+/type/edition /books/OL10733694M 8 2022-12-10T07:44:49.126570 {"publishers": ["Headline Book Publishing"], "number_of_pages": 409, "weight": "7.8 ounces", "covers": [2583041], "physical_format": "Paperback", "key": "/books/OL10733694M", "authors": [{"key": "/authors/OL736508A"}], "subjects": ["Modern fiction", "Fiction / Family Saga", "Sagas", "Fiction", "Fiction - General"], "edition_name": "New Ed edition", "languages": [{"key": "/languages/eng"}], "source_records": ["bwb:9780747253075", "ia:ellieofelmleighs0000will_s3m4", "promise:bwb_daily_pallets_2020-06-24"], "title": "Ellie of Elmleigh Square", "identifiers": {"goodreads": ["2045857"], "amazon": [""]}, "isbn_13": ["9780747253075"], "isbn_10": ["0747253072"], "publish_date": "January 1, 2000", "works": [{"key": "/works/OL3999799W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "6.8 x 4.3 x 1.2 inches", "ocaid": "ellieofelmleighs0000will_s3m4", "local_id": ["urn:bwbsku:KN-801-662"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T07:44:49.126570"}}
+/type/edition /books/OL10733964M 6 2022-12-10T00:56:56.552296 {"publishers": ["Headline Book Publishing"], "physical_format": "Paperback", "title": "The Best of Fred", "number_of_pages": 192, "covers": [2583280], "isbn_13": ["9780747276074"], "isbn_10": ["0747276072"], "publish_date": "September 3, 1998", "key": "/books/OL10733964M", "authors": [{"key": "/authors/OL2645731A"}], "oclc_numbers": ["60219597"], "works": [{"key": "/works/OL7924430W"}], "type": {"key": "/type/edition"}, "subjects": ["Cartoons & comic strips", "Comic book & cartoon art"], "ocaid": "bestoffred0000fawc", "source_records": ["ia:bestoffred0000fawc", "promise:bwb_daily_pallets_2020-09-09"], "local_id": ["urn:bwbsku:KO-194-082"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T00:56:56.552296"}}
+/type/edition /books/OL10733985M 6 2022-12-09T07:37:23.164813 {"publishers": ["Headline Book Publishing"], "title": "Rothman's Rugby Union Year Book", "number_of_pages": 448, "isbn_13": ["9780747277323"], "covers": [2583296], "physical_format": "Spiral-bound", "isbn_10": ["074727732X"], "publish_date": "August 14, 1997", "key": "/books/OL10733985M", "authors": [{"key": "/authors/OL1488389A"}, {"key": "/authors/OL1229105A"}], "oclc_numbers": ["59591864"], "type": {"key": "/type/edition"}, "subjects": ["Rugby football", "Yearbooks, annuals, almanacs", "c 1990 to c 2000"], "works": [{"key": "/works/OL24445832W"}], "ocaid": "rothmansrugbyuni0000unse_q8n8", "source_records": ["ia:rothmansrugbyuni0000unse_q8n8", "promise:bwb_daily_pallets_2020-12-14"], "local_id": ["urn:bwbsku:ko-652-162"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T07:37:23.164813"}}
+/type/edition /books/OL10734019M 8 2022-12-10T03:55:12.946967 {"publishers": ["HEADLINE"], "identifiers": {"librarything": ["1965646"], "goodreads": ["1706726"], "amazon": [""]}, "subtitle": "The Nutritional Answer for Health", "title": "Beat the Menopause Without HRT", "number_of_pages": 256, "isbn_13": ["9780747278405"], "physical_format": "Hardcover", "isbn_10": ["0747278407"], "publish_date": "January 5, 1995", "key": "/books/OL10734019M", "authors": [{"key": "/authors/OL780291A"}, {"key": "/authors/OL930367A"}], "works": [{"key": "/works/OL4145382W"}], "type": {"key": "/type/edition"}, "subjects": ["Women's health"], "covers": [11594137], "ocaid": "beatmenopausewit0000stew_q2g3", "source_records": ["ia:beatmenopausewit0000stew_q2g3", "promise:bwb_daily_pallets_2020-07-30"], "local_id": ["urn:bwbsku:KN-524-200", "urn:bwbsku:KO-051-764"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T03:55:12.946967"}}
+/type/edition /books/OL10734319M 2 2009-12-15T00:53:15.612436 {"publishers": ["Time Warner Paperbacks"], "subtitle": "Housing Benefits", "isbn_10": ["0747404623"], "number_of_pages": 160, "isbn_13": ["9780747404620"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:53:15.612436"}, "publish_date": "December 31, 1991", "key": "/books/OL10734319M", "authors": [{"key": "/authors/OL3496967A"}], "title": "Hunter Caroline ", "latest_revision": 2, "works": [{"key": "/works/OL9480605W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10734518M 4 2011-04-26T22:44:33.997328 {"publishers": ["Bloomsbury Publishing PLC"], "number_of_pages": 256, "last_modified": {"type": "/type/datetime", "value": "2011-04-26T22:44:33.997328"}, "title": "The School Leaver's Handbook", "type": {"key": "/type/edition"}, "identifiers": {"goodreads": ["4209422"]}, "isbn_13": ["9780747506812"], "edition_name": "2Rev Ed edition", "physical_format": "Paperback", "isbn_10": ["0747506817"], "publish_date": "May 28, 1990", "key": "/books/OL10734518M", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "latest_revision": 4, "oclc_numbers": ["60286537"], "contributions": ["Jacquie Hughes (Editor)", "Stephen Adamson (Editor)", "Jerry Glover (Illustrator)"], "subjects": ["Advice on careers & achieving success"], "revision": 4}
+/type/edition /books/OL10734739M 2 2009-12-15T00:53:15.612436 {"publishers": ["Bloomsbury Publishing PLC"], "key": "/books/OL10734739M", "title": "Debatable Land", "isbn_13": ["9780747518396"], "physical_format": "Hardcover", "isbn_10": ["0747518394"], "publish_date": "June 2, 1994", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:53:15.612436"}, "authors": [{"key": "/authors/OL3497031A"}], "latest_revision": 2, "works": [{"key": "/works/OL9480689W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10734986M 4 2011-06-08T08:48:59.047656 {"publishers": ["Bloomsbury Publishing PLC"], "number_of_pages": 224, "last_modified": {"type": "/type/datetime", "value": "2011-06-08T08:48:59.047656"}, "title": "Clear English for Business", "physical_format": "Paperback", "identifiers": {"goodreads": ["5244506"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780747527633"], "isbn_10": ["0747527636"], "publish_date": "January 23, 1997", "key": "/books/OL10734986M", "authors": [{"key": "/authors/OL3448195A"}, {"key": "/authors/OL3497080A"}], "latest_revision": 4, "oclc_numbers": ["230951400"], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10735587M 8 2022-10-26T02:08:05.774456 {"publishers": ["Silhouette"], "number_of_pages": 256, "series": ["Silhouette Desire, No 511"], "physical_format": "Mass Market Paperback", "key": "/books/OL10735587M", "authors": [{"key": "/authors/OL1475646A"}], "subjects": ["General", "Non-Classifiable", "Romance - General", "Fiction", "Fiction - General", "Romance: Regency"], "isbn_13": ["9780373055111"], "classifications": {}, "source_records": ["bwb:9780373055111"], "title": "Mountain Man", "identifiers": {"librarything": ["2492801"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0373055110"], "publish_date": "July 1, 1989", "oclc_numbers": ["20122220"], "works": [{"key": "/works/OL5950303W"}], "type": {"key": "/type/edition"}, "lc_classifications": ["CPB"], "covers": [12971253], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-26T02:08:05.774456"}}
+/type/edition /books/OL10735670M 9 2022-06-18T04:10:50.761411 {"publishers": ["Silhouette Books"], "number_of_pages": 189, "weight": "3.2 ounces", "series": ["Silhouette Desire, No 616"], "physical_format": "Paperback", "key": "/books/OL10735670M", "authors": [{"key": "/authors/OL25232A"}], "subjects": ["General", "Non-Classifiable", "Romance - General", "Fiction", "Fiction - General", "Romance: Modern"], "isbn_13": ["9780373056163"], "classifications": {}, "source_records": ["bwb:9780373056163"], "title": "Handyman", "identifiers": {"goodreads": ["2205278"], "librarything": ["2559190"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0373056168"], "publish_date": "December 1, 1990", "oclc_numbers": ["22973210"], "works": [{"key": "/works/OL157130W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "6.6 x 4.2 x 0.7 inches", "lc_classifications": ["CPB Box no.47 vol.13"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-18T04:10:50.761411"}}
+/type/edition /books/OL10735709M 13 2022-12-08T20:27:33.928197 {"publishers": ["Silhouette"], "weight": "3.2 ounces", "isbn_10": ["0373056710"], "series": ["Silhouette Desire, No 671"], "covers": [10020704], "physical_format": "Mass Market Paperback", "lc_classifications": ["CPB Box no. 1206 vol. 15"], "key": "/books/OL10735709M", "authors": [{"key": "/authors/OL1422589A"}], "ocaid": "falconer0000gree", "isbn_13": ["9780373056712"], "classifications": {}, "source_records": ["ia:falconer0000gree", "bwb:9780373056712", "marc:marc_loc_2016/BooksAll.2016.part27.utf8:175855747:696", "promise:bwb_daily_pallets_2022-06-01", "promise:bwb_daily_pallets_2021-06-21", "promise:bwb_daily_pallets_2021-03-08"], "title": "Falconer (Man of the World, Book 4)", "lccn": ["98816542"], "identifiers": {"goodreads": ["3052689"], "librarything": ["4365872"]}, "languages": [{"key": "/languages/eng"}], "subjects": ["General", "Non-Classifiable", "Romance - General", "Fiction", "Fiction - General", "Romance: Regency"], "publish_date": "September 1, 1991", "works": [{"key": "/works/OL5803872W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "6.6 x 4.2 x 0.6 inches", "local_id": ["urn:bwbsku:W7-CXU-782", "urn:bwbsku:P7-BXI-651", "urn:bwbsku:512-BAC-416"], "latest_revision": 13, "revision": 13, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-08T20:27:33.928197"}}
+/type/edition /books/OL10736512M 9 2022-12-08T03:24:24.046497 {"publishers": ["Silhouette"], "weight": "4 ounces", "series": ["Silhouette Intimate Moments, No 536"], "covers": [5073339], "physical_format": "Paperback", "key": "/books/OL10736512M", "authors": [{"key": "/authors/OL2674337A"}], "subjects": ["Romance - General", "Non-Classifiable", "Fiction", "Fiction - Romance", "Romance: Regency"], "isbn_13": ["9780373075362"], "classifications": {}, "title": "Beyond All Reason (Wide Open Spaces)", "identifiers": {"librarything": ["456357"], "goodreads": ["1723915"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0373075367"], "publish_date": "November 1, 1993", "works": [{"key": "/works/OL8029424W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "6.5 x 4.1 x 0.6 inches", "local_id": ["urn:bwbsku:W7-AVO-569", "urn:bwbsku:P7-EHN-516"], "source_records": ["promise:bwb_daily_pallets_2022-03-17", "promise:bwb_daily_pallets_2021-08-13"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-08T03:24:24.046497"}}
+/type/edition /books/OL1073681M 4 2020-11-18T05:44:41.200886 {"other_titles": ["Qa\u0304mu\u0304s al-mu\u0304si\u0304qi\u0304."], "publishers": ["Ministry of Culture, National Cultural Center, Cairo Opera House"], "subtitle": "English, French, Italian, German, Greek, Arabic, etc., with illustrations & photos of musical instruments", "lc_classifications": ["ML108 .B29 1992"], "latest_revision": 4, "key": "/books/OL1073681M", "authors": [{"key": "/authors/OL573119A"}], "publish_places": ["[Cairo]"], "pagination": "iv., 503 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:109803043:900"], "title": "Dictionary of music terms", "lccn": ["93961167"], "notes": {"type": "/type/text", "value": "Title on p. [4] of cover: al-Qa\u0304mu\u0304s al-mu\u0304si\u0304qi\u0304.\r\nDefinitions in Arabic."}, "number_of_pages": 503, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/ara"}], "subjects": ["Music -- Dictionaries -- Polyglot.", "Dictionaries, Polyglot."], "publish_date": "1992", "publish_country": "ua ", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T05:44:41.200886"}, "by_statement": "Ahmed Bayoumi.", "works": [{"key": "/works/OL3447392W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10736920M 3 2011-01-09T07:50:12.593531 {"publishers": ["silhouette"], "physical_format": "Paperback", "classifications": {}, "last_modified": {"type": "/type/datetime", "value": "2011-01-09T07:50:12.593531"}, "title": "Right Moves", "notes": {"type": "/type/text", "value": "Silhouette Romances"}, "identifiers": {}, "isbn_13": ["9780373084463"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0373084463"], "publish_date": "June 1, 1986", "key": "/books/OL10736920M", "authors": [{"key": "/authors/OL757160A"}], "latest_revision": 3, "works": [{"key": "/works/OL4059605W"}], "type": {"key": "/type/edition"}, "subjects": ["Non-Classifiable", "Fiction"], "revision": 3}
+/type/edition /books/OL10737702M 11 2020-09-25T04:31:28.526861 {"publishers": ["Silhouette"], "isbn_10": ["0373096585"], "series": ["Special Edition, No 658"], "covers": [5073490], "physical_format": "Paperback", "lc_classifications": ["CPB Box no. 41 vol. 15"], "latest_revision": 11, "key": "/books/OL10737702M", "authors": [{"key": "/authors/OL2674323A"}], "ocaid": "stepfromdream0000edwa", "isbn_13": ["9780373096589"], "classifications": {}, "source_records": ["ia:stepfromdream0000edwa", "bwb:9780373096589", "marc:marc_loc_2016/BooksAll.2016.part38.utf8:141644335:792"], "title": "Step From A Dream", "lccn": ["2010714367"], "identifiers": {"goodreads": ["7154458"], "librarything": ["1665635"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "subjects": ["Non-Classifiable", "Romance - General", "Fiction", "Romance: Regency"], "publish_date": "February 1, 1991", "last_modified": {"type": "/type/datetime", "value": "2020-09-25T04:31:28.526861"}, "oclc_numbers": ["23977224"], "works": [{"key": "/works/OL8029288W"}], "type": {"key": "/type/edition"}, "revision": 11}
+/type/edition /books/OL10737710M 13 2022-12-04T18:31:12.393079 {"publishers": ["silhouette"], "weight": "8.8 ounces", "isbn_10": ["0373096704"], "series": ["Silhouette Special Edition, No. 670"], "covers": [5073378], "physical_format": "Paperback", "lc_classifications": ["CPB Box no. 1205 vol. 7"], "key": "/books/OL10737710M", "authors": [{"key": "/authors/OL22098A"}], "isbn_13": ["9780373096701"], "classifications": {}, "source_records": ["amazon:0373096704", "marc:marc_loc_updates/v38.i33.records.utf8:17631708:672", "bwb:9780373096701", "marc:marc_loc_2016/BooksAll.2016.part27.utf8:175832580:672", "promise:bwb_daily_pallets_2022-08-13"], "title": "Lead With Your Heart", "lccn": ["98816508"], "identifiers": {"librarything": ["3475704"], "goodreads": ["3202386"]}, "languages": [{"key": "/languages/eng"}], "subjects": ["General", "Non-Classifiable", "Romance - General", "Fiction", "Fiction - General", "Romance: Regency"], "publish_date": "April 1, 1991", "oclc_numbers": ["23588522"], "works": [{"key": "/works/OL8029161W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "6.6 x 3.7 x 0.8 inches", "local_id": ["urn:bwbsku:O8-BLI-564"], "latest_revision": 13, "revision": 13, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T18:31:12.393079"}}
+/type/edition /books/OL10738206M 10 2022-12-08T20:21:30.188731 {"publishers": ["harlequin"], "number_of_pages": 190, "series": ["Harlequin Presents # 593"], "covers": [8142392], "physical_format": "Paperback", "key": "/books/OL10738206M", "authors": [{"key": "/authors/OL3047930A"}], "ocaid": "momentofmadness0000lake", "subjects": ["Non-Classifiable", "Nonfiction - General"], "isbn_13": ["9780373105939"], "classifications": {}, "source_records": ["ia:momentofmadness0000lake", "bwb:9780373105939", "promise:bwb_daily_pallets_2021-03-08"], "title": "A Moment of Madness", "identifiers": {"librarything": ["1562041"], "goodreads": ["6437136"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0373105932"], "publish_date": "April 1, 1983", "oclc_numbers": ["9330640"], "works": [{"key": "/works/OL8869200W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:O7-APQ-043", "urn:bwbsku:560-BAC-300"], "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-08T20:21:30.188731"}}
+/type/edition /books/OL10738332M 13 2020-08-27T20:24:26.229030 {"publishers": ["harlequin"], "identifiers": {"librarything": ["3434093"], "goodreads": ["3216318"]}, "ia_box_id": ["IA106010"], "weight": "4 ounces", "isbn_10": ["0373107706"], "series": ["Harlequin Presents # 770"], "covers": [7282465, 5073477], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2020-08-27T20:24:26.229030"}, "latest_revision": 13, "key": "/books/OL10738332M", "authors": [{"key": "/authors/OL661093A"}], "ocaid": "whatyoumademe00jord", "isbn_13": ["9780373107704"], "classifications": {}, "source_records": ["bwb:9780373107704"], "title": "What You Made Me", "number_of_pages": 190, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "subjects": ["Non-Classifiable", "Fiction"], "publish_date": "February 1, 1985", "oclc_numbers": ["11938286"], "works": [{"key": "/works/OL11327978W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "6.6 x 3.9 x 0.6 inches", "revision": 13}
+/type/edition /books/OL10738437M 5 2020-08-27T20:25:46.965911 {"publishers": ["harlequin"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2020-08-27T20:25:46.965911"}, "latest_revision": 5, "key": "/books/OL10738437M", "authors": [{"key": "/authors/OL659988A"}], "subjects": ["Non-Classifiable", "Romance - Contemporary", "Fiction", "Romance: Modern"], "isbn_13": ["9780373109111"], "classifications": {}, "source_records": ["bwb:9780373109111"], "title": "To Fill A Silence", "notes": {"type": "/type/text", "value": "Harlequin Presents"}, "identifiers": {"librarything": ["1562366"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0373109113"], "publish_date": "August 1, 1986", "works": [{"key": "/works/OL3755093W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10738782M 15 2022-12-08T20:27:34.069368 {"publishers": ["harlequin"], "number_of_pages": 189, "ia_box_id": ["IA122417"], "weight": "3.2 ounces", "isbn_10": ["0373113641"], "series": ["Harlequin Presents, No 1364"], "covers": [6601974], "physical_format": "Paperback", "key": "/books/OL10738782M", "authors": [{"key": "/authors/OL670127A"}], "ocaid": "devilinparadise00mans", "isbn_13": ["9780373113644"], "classifications": {}, "source_records": ["bwb:9780373113644", "promise:bwb_daily_pallets_2021-06-28", "promise:bwb_daily_pallets_2021-06-21", "promise:bwb_daily_pallets_2021-03-08"], "title": "Devil In Paradise", "identifiers": {"librarything": ["1995984"], "goodreads": ["245218"]}, "languages": [{"key": "/languages/eng"}], "subjects": ["Fiction", "Fiction - General", "Romance: Regency", "General", "Non-Classifiable", "Romance - General"], "publish_date": "April 1, 1991", "oclc_numbers": ["23442286"], "works": [{"key": "/works/OL3789674W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "6.5 x 4.3 x 0.6 inches", "local_id": ["urn:bwbsku:W6-AVH-121", "urn:bwbsku:P7-AIA-544", "urn:bwbsku:642-BAC-005"], "latest_revision": 15, "revision": 15, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-08T20:27:34.069368"}}
+/type/edition /books/OL10738965M 12 2022-12-09T03:00:15.320613 {"publishers": ["Harlequin"], "weight": "3.4 ounces", "series": ["Harlequin Presents, 1602"], "covers": [5073687], "physical_format": "Paperback", "key": "/books/OL10738965M", "authors": [{"key": "/authors/OL2763201A"}], "subjects": ["Romance - General", "Non-Classifiable", "Romance - Fantasy", "Fiction", "Fiction - Romance", "Romance: Regency"], "classifications": {}, "source_records": ["bwb:9780373116027", "amazon:0373116020", "promise:bwb_daily_pallets_2021-01-14"], "title": "Walk Upon the Wind", "identifiers": {"goodreads": ["6903300"], "librarything": ["1176484"]}, "languages": [{"key": "/languages/eng"}], "publish_date": "October 1, 1993", "works": [{"key": "/works/OL11762249W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "6.8 x 4.1 x 0.6 inches", "isbn_10": ["0373116020"], "isbn_13": ["9780373116027"], "local_id": ["urn:bwbsku:503-ABA-535"], "latest_revision": 12, "revision": 12, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T03:00:15.320613"}}
+/type/edition /books/OL10739003M 17 2022-12-08T05:50:35.460470 {"publishers": ["Harlequin"], "ia_box_id": ["IA109916"], "weight": "4 ounces", "isbn_10": ["0373116497"], "series": ["Harlequin Presents, No 1649"], "covers": [9322249, 5073843], "physical_format": "Paperback", "key": "/books/OL10739003M", "authors": [{"key": "/authors/OL5849440A"}], "ocaid": "tenderassault00math", "isbn_13": ["9780373116492"], "classifications": {}, "source_records": ["bwb:9780373116492", "promise:bwb_daily_pallets_2021-06-28"], "title": "Tender Assault", "identifiers": {"librarything": ["937480"], "goodreads": ["2887044"]}, "languages": [{"key": "/languages/eng"}], "subjects": ["Non-Classifiable", "Romance - General", "Fiction", "Fiction - Romance", "Romance: Regency"], "publish_date": "April 1, 1994", "oclc_numbers": ["29870731"], "works": [{"key": "/works/OL3771245W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "6.8 x 4.2 x 0.5 inches", "local_id": ["urn:bwbsku:W6-AVH-084", "urn:bwbsku:W6-BAA-993"], "latest_revision": 17, "revision": 17, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-08T05:50:35.460470"}}
+/type/edition /books/OL10739288M 16 2022-12-05T15:40:13.325251 {"publishers": ["Harlequin"], "identifiers": {"librarything": ["1606256"]}, "ia_box_id": ["IA126402"], "weight": "4 ounces", "isbn_10": ["0373120192"], "series": ["Harlequin Presents, 2019"], "covers": [6608445, 2407345, 214620], "physical_format": "Paperback", "key": "/books/OL10739288M", "authors": [{"key": "/authors/OL5849440A"}], "ocaid": "pacificheat00math", "isbn_13": ["9780373120192"], "classifications": {}, "source_records": ["ia:pacificheat00math", "bwb:9780373120192", "promise:bwb_daily_pallets_2022-07-26", "promise:bwb_daily_pallets_2022-04-18"], "title": "Pacific Heat", "number_of_pages": 184, "languages": [{"key": "/languages/eng"}], "subjects": ["Non-Classifiable", "Romance - Contemporary", "Fiction - Romance", "Fiction"], "publish_date": "March 1, 1999", "oclc_numbers": ["40557625"], "works": [{"key": "/works/OL3771129W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "7 x 4.5 x 0.8 inches", "local_id": ["urn:bwbsku:W7-CVQ-398", "urn:bwbsku:O8-AMP-985"], "latest_revision": 16, "revision": 16, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-05T15:40:13.325251"}}
+/type/edition /books/OL10739403M 7 2020-08-27T21:09:00.108771 {"publishers": ["Harlequin"], "number_of_pages": 192, "weight": "3.2 ounces", "covers": [2407457, 214798], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2020-08-27T21:09:00.108771"}, "latest_revision": 7, "key": "/books/OL10739403M", "authors": [{"key": "/authors/OL2640994A"}], "ocaid": "isbn_9780373121854", "subjects": ["Non-Classifiable", "Romance - Contemporary", "Romance - General", "Fiction", "Fiction - Romance", "Romance: Modern"], "isbn_13": ["9780373121854"], "classifications": {}, "source_records": ["ia:isbn_9780373121854", "bwb:9780373121854"], "title": "Bride On Demand (Harlequin Presents, No 2185)", "identifiers": {"librarything": ["1846475"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0373121857"], "publish_date": "June 1, 2001", "oclc_numbers": ["46625158"], "works": [{"key": "/works/OL18165980W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "6.5 x 4.2 x 0.8 inches", "revision": 7}
+/type/edition /books/OL10739840M 6 2022-04-25T09:16:04.740994 {"publishers": ["harlequin"], "number_of_pages": 251, "physical_format": "Paperback", "key": "/books/OL10739840M", "authors": [{"key": "/authors/OL3319289A"}], "subjects": ["Romance - Historical", "Non-Classifiable", "Fiction - Romance"], "isbn_13": ["9780373157037"], "classifications": {}, "source_records": ["bwb:9780373157037"], "title": "Secret Baby (The Baby Boom) Larger Print", "notes": {"type": "/type/text", "value": "Large Type Paperback"}, "identifiers": {}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0373157037"], "publish_date": "April 1, 1997", "oclc_numbers": ["36663968"], "works": [{"key": "/works/OL3925730W"}], "type": {"key": "/type/edition"}, "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-04-25T09:16:04.740994"}}
+/type/edition /books/OL10739848M 5 2021-08-23T11:24:04.063103 {"publishers": ["harlequin"], "number_of_pages": 189, "physical_format": "Paperback", "key": "/books/OL10739848M", "authors": [{"key": "/authors/OL2635427A"}], "subjects": ["General", "Non-Classifiable", "Fiction - General"], "isbn_13": ["9780373157150"], "classifications": {}, "source_records": ["bwb:9780373157150"], "title": "Rebel Without A Bride Larger Print", "notes": {"type": "/type/text", "value": "Harlequin Romance"}, "identifiers": {}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0373157150"], "publish_date": "July 1, 1997", "works": [{"key": "/works/OL7911609W"}], "type": {"key": "/type/edition"}, "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-08-23T11:24:04.063103"}}
+/type/edition /books/OL1073989M 5 2020-11-18T05:54:53.011350 {"publishers": ["Da\u0304r al-Fikr al-\u02bbArabi\u0304"], "physical_format": "Microform", "lc_classifications": ["Microfiche 93/53175"], "latest_revision": 5, "key": "/books/OL1073989M", "authors": [{"key": "/authors/OL573319A"}], "publish_places": ["Bayru\u0304t"], "contributions": ["Kabbi\u0304, Zuhayr Shafi\u0304q."], "languages": [{"key": "/languages/ara"}], "pagination": "126 p.", "source_records": ["marc:marc_records_scriblio_net/part24.dat:37445261:1083", "marc:marc_loc_updates/v37.i26.records.utf8:21130829:1124", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:110758311:1134"], "title": "Fad\u0323a\u0304\u02bcil al-Qur\u02bca\u0304n", "lccn": ["93963862"], "notes": {"type": "/type/text", "value": "Microfiche. New Delhi : Library of Congress Office ; Washington, D.C. : Library of Congress Photoduplication Service, 1994. 2 microfiches ; 11 x 15 cm.\nIncludes bibliographical references (p. 121-123)."}, "number_of_pages": 126, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "edition_name": "al-T\u0323ab\u02bbah 1.", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T05:54:53.011350"}, "publish_date": "1990", "publish_country": "le ", "by_statement": "li-\u02bbIma\u0304d al-Di\u0304n Abi\u0304 al-Fida\u0304\u02bc Isma\u0304\u02bci\u0304l ibn Kathi\u0304r al-Qurashi\u0304 al-Dimashqi\u0304 ; tah\u0323qi\u0304q Zuhayr Shafi\u0304q al-Kabbi\u0304.", "work_title": ["Tafsi\u0304r al-Qur\u02bca\u0304n al-\u02bbaz\u0323i\u0304m"], "works": [{"key": "/works/OL18223331W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL107399M 6 2022-12-03T22:58:29.047954 {"identifiers": {"goodreads": ["6377755"], "librarything": ["6070586"]}, "series": ["Narrativa", "Narrativa (Sperling & Kupfer editori)"], "lc_classifications": ["PQ4873.O775 R67 1998"], "edition_name": "[1. ed.]", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part28.utf8:96482115:659", "amazon:8820027410"], "title": "La rosa dei sentimenti", "languages": [{"key": "/languages/ita"}], "publish_country": "it ", "by_statement": "Paolo Mosca.", "oclc_numbers": ["41075082"], "type": {"key": "/type/edition"}, "publishers": ["Sperling & Kupfer"], "key": "/books/OL107399M", "authors": [{"key": "/authors/OL72037A"}], "publish_places": ["Milano"], "pagination": "152 p. ;", "lccn": ["99225478"], "notes": {"type": "/type/text", "value": "Short stories."}, "number_of_pages": 152, "isbn_10": ["8820027410"], "publish_date": "1998", "works": [{"key": "/works/OL838950W"}], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-03T22:58:29.047954"}}
+/type/edition /books/OL10740078M 9 2020-08-27T23:18:54.686683 {"publishers": ["Harlequin"], "number_of_pages": 256, "weight": "4.3 ounces", "covers": [2407700], "physical_format": "Mass Market Paperback", "last_modified": {"type": "/type/datetime", "value": "2020-08-27T23:18:54.686683"}, "latest_revision": 9, "key": "/books/OL10740078M", "authors": [{"key": "/authors/OL1385989A"}], "subjects": ["Fiction", "Fiction - Romance", "Romance: Modern", "Romance - Adult", "Fiction / Romance / Adult", "Romance - Contemporary"], "isbn_13": ["9780373159680"], "classifications": {}, "source_records": ["bwb:9780373159680"], "title": "Baby On Loan", "notes": {"type": "/type/text", "value": "Harlequin Large Print (Numbered Paperback)"}, "identifiers": {"librarything": ["8464869"], "goodreads": ["1552648"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0373159684"], "publish_date": "October 1, 2002", "works": [{"key": "/works/OL5691463W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "6.8 x 4.1 x 0.7 inches", "revision": 9}
+/type/edition /books/OL10740142M 10 2020-11-27T05:31:44.583699 {"publishers": ["harlequin"], "number_of_pages": 255, "covers": [7351255], "physical_format": "Paperback", "lc_classifications": ["CPB Box no. 353 vol. 1"], "latest_revision": 10, "key": "/books/OL10740142M", "authors": [{"key": "/authors/OL2674189A"}], "subjects": ["General", "Non-Classifiable", "Fiction - General", "Fiction"], "isbn_13": ["9780373160495"], "classifications": {}, "source_records": ["bwb:9780373160495", "marc:marc_loc_2016/BooksAll.2016.part26.utf8:200510331:661"], "title": "Sweetest Of Debts", "lccn": ["97813351"], "identifiers": {"goodreads": ["3202339"], "librarything": ["3053233"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0373160496"], "publish_date": "March 1, 1984", "last_modified": {"type": "/type/datetime", "value": "2020-11-27T05:31:44.583699"}, "oclc_numbers": ["10963681"], "works": [{"key": "/works/OL8028222W"}], "type": {"key": "/type/edition"}, "revision": 10}
+/type/edition /books/OL10740629M 9 2022-12-07T23:09:33.504737 {"publishers": ["Harlequin"], "number_of_pages": 256, "weight": "4 ounces", "series": ["Harlequin American Romance, No 633"], "physical_format": "Paperback", "key": "/books/OL10740629M", "authors": [{"key": "/authors/OL757236A"}], "subjects": ["Romance", "Fiction", "Fiction - Romance", "Romance: Regency", "Romance - Contemporary", "Non-Classifiable", "Romance - General"], "isbn_13": ["9780373166336"], "classifications": {}, "source_records": ["bwb:9780373166336", "amazon:0373166338", "promise:bwb_daily_pallets_2021-09-14"], "title": "Maverick Marriage (Wild West Weddings)", "identifiers": {"librarything": ["5902572"], "goodreads": ["4567293"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0373166338"], "publish_date": "May 1, 1996", "works": [{"key": "/works/OL4059935W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "6.8 x 4.2 x 0.8 inches", "local_id": ["urn:bwbsku:P7-ECV-006"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-07T23:09:33.504737"}}
+/type/edition /books/OL10741589M 4 2011-04-27T13:28:49.967811 {"publishers": ["Harliquen"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T13:28:49.967811"}, "title": "The Marriage Renewal", "identifiers": {"librarything": ["1372760"]}, "covers": [2408075], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780373188345"], "isbn_10": ["037318834X"], "publish_date": "2004", "key": "/books/OL10741589M", "latest_revision": 4, "oclc_numbers": ["56404096"], "type": {"key": "/type/edition"}, "subjects": ["Romance", "Renewal", "Marrage", "New beginnings"], "revision": 4}
+/type/edition /books/OL1074184M 4 2020-11-18T06:01:17.387958 {"publishers": ["s.n."], "lc_classifications": ["MLCSN 92/00805 (P)"], "latest_revision": 4, "key": "/books/OL1074184M", "authors": [{"key": "/authors/OL573457A"}], "publish_places": ["[Damascus"], "pagination": "221 p. :", "source_records": ["marc:marc_records_scriblio_net/part24.dat:37598429:616", "marc:marc_loc_updates/v37.i25.records.utf8:21230993:639", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:111355262:639"], "title": "Sat\u0323r-- bi-dif\u02bc al-kawn!?", "lccn": ["93965959"], "notes": {"type": "/type/text", "value": "In Arabic; romanized record.\nPoetry."}, "number_of_pages": 221, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/ara"}], "last_modified": {"type": "/type/datetime", "value": "2020-11-18T06:01:17.387958"}, "publish_date": "1990", "publish_country": "sy ", "by_statement": "\u02bbAbd Alla\u0304h al-Jifri\u0304.", "works": [{"key": "/works/OL3448427W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10742167M 9 2020-08-27T23:04:12.180232 {"publishers": ["Silhouette"], "number_of_pages": 192, "weight": "3.5 ounces", "covers": [2408349, 215649], "physical_format": "Mass Market Paperback", "last_modified": {"type": "/type/datetime", "value": "2020-08-27T23:04:12.180232"}, "latest_revision": 9, "key": "/books/OL10742167M", "authors": [{"key": "/authors/OL3131666A"}], "subjects": ["Romance - Adult", "Fiction / Romance / Adult", "Romance - Contemporary", "Fiction", "Fiction - Romance", "Romance: Modern"], "isbn_13": ["9780373196043"], "classifications": {}, "source_records": ["bwb:9780373196043"], "title": "Let's Pretend...", "notes": {"type": "/type/text", "value": "Silhouette Romance"}, "identifiers": {"goodreads": ["658991"], "librarything": ["189008"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0373196040"], "publish_date": "July 1, 2002", "oclc_numbers": ["50061188"], "works": [{"key": "/works/OL9002218W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "6.6 x 4.2 x 0.6 inches", "revision": 9}
+/type/edition /books/OL10742759M 9 2020-09-27T19:07:32.996760 {"publishers": ["Harlequin"], "identifiers": {"librarything": ["2996606"]}, "weight": "4.8 ounces", "isbn_10": ["0373223625"], "series": ["Harlequin Intrigue Series #362; Bride's Bay Resort, Book 3"], "covers": [9552955], "physical_format": "Mass Market Paperback", "last_modified": {"type": "/type/datetime", "value": "2020-09-27T19:07:32.996760"}, "latest_revision": 9, "key": "/books/OL10742759M", "authors": [{"key": "/authors/OL1423310A"}], "ocaid": "lovelies00dawn", "isbn_13": ["9780373223626"], "classifications": {}, "source_records": ["bwb:9780373223626"], "title": "Love and Lies (Brides Bay Resort #3)", "number_of_pages": 248, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "subjects": ["Romance", "Fiction", "Fiction - Romance", "Romance: Modern", "Non-Classifiable", "Romance - Contemporary"], "publish_date": "February 1, 1996", "oclc_numbers": ["34202578"], "works": [{"key": "/works/OL5808708W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "6.8 x 4.2 x 0.8 inches", "revision": 9}
+/type/edition /books/OL10743096M 5 2020-08-28T08:56:24.037709 {"publishers": ["Harlequin"], "number_of_pages": 256, "physical_format": "Mass Market Paperback", "last_modified": {"type": "/type/datetime", "value": "2020-08-28T08:56:24.037709"}, "latest_revision": 5, "key": "/books/OL10743096M", "authors": [{"key": "/authors/OL811660A"}], "subjects": ["Fiction", "Fiction - Romance", "Romance: Modern", "Romance - Contemporary", "Fiction / Romance / General", "Romance - General"], "edition_name": "Lgr edition", "languages": [{"key": "/languages/eng"}], "classifications": {}, "source_records": ["bwb:9780373234875"], "title": "The Markonos Bride", "notes": {"type": "/type/text", "value": "Harlequin Large Print Presents"}, "identifiers": {}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780373234875"], "isbn_10": ["0373234872"], "publish_date": "May 1, 2008", "oclc_numbers": ["226328085"], "works": [{"key": "/works/OL4233134W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10743202M 9 2022-12-04T12:38:50.063771 {"publishers": ["Silhouette"], "number_of_pages": 256, "weight": "4 ounces", "series": ["Harlequin Special Edition, No 4125"], "covers": [5074438], "physical_format": "Paperback", "key": "/books/OL10743202M", "authors": [{"key": "/authors/OL3486779A"}], "subjects": ["Romance - Contemporary", "Non-Classifiable", "Romance - General", "Fiction", "Fiction - Romance", "Romance: Regency"], "isbn_13": ["9780373241255"], "classifications": {}, "source_records": ["bwb:9780373241255", "promise:bwb_daily_pallets_2022-09-07"], "title": "Mrs Right (Transformations)", "identifiers": {"librarything": ["5923522"], "goodreads": ["6322783"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0373241259"], "publish_date": "August 1, 1997", "works": [{"key": "/works/OL9468233W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "6.5 x 4 x 0.8 inches", "local_id": ["urn:bwbsku:T2-DXZ-352"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T12:38:50.063771"}}
+/type/edition /books/OL10743737M 8 2020-11-30T01:52:31.472807 {"publishers": ["Harlequin"], "number_of_pages": 221, "series": ["Harlequin Temptation, 291"], "physical_format": "Paperback", "lc_classifications": ["CPB Box no. 1366 vol. 9"], "latest_revision": 8, "key": "/books/OL10743737M", "authors": [{"key": "/authors/OL2748760A"}], "subjects": ["General", "Non-Classifiable", "Romance - General", "Fiction", "Fiction - General", "Romance: Regency"], "isbn_13": ["9780373253913"], "classifications": {}, "source_records": ["amazon:0373253915", "marc:marc_loc_updates/v38.i33.records.utf8:18231580:758", "bwb:9780373253913", "marc:marc_loc_2016/BooksAll.2016.part27.utf8:176437839:758"], "title": "Another Rainbow", "lccn": ["98817542"], "identifiers": {"librarything": ["2486738"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0373253915"], "publish_date": "February 1, 1990", "last_modified": {"type": "/type/datetime", "value": "2020-11-30T01:52:31.472807"}, "oclc_numbers": ["21154526"], "works": [{"key": "/works/OL8261748W"}], "type": {"key": "/type/edition"}, "revision": 8}
+/type/edition /books/OL10744148M 11 2022-12-08T20:18:57.360662 {"publishers": ["harlequin"], "number_of_pages": 224, "weight": "4 ounces", "series": ["Harlequin Temptation, No 834"], "covers": [2409414, 217263], "physical_format": "Paperback", "key": "/books/OL10744148M", "authors": [{"key": "/authors/OL1423002A"}], "subjects": ["Non-Classifiable", "Romance - Contemporary", "Romance - General", "Fiction", "Fiction - Romance", "Romance: Modern"], "isbn_13": ["9780373259342"], "classifications": {}, "source_records": ["bwb:9780373259342", "promise:bwb_daily_pallets_2021-03-08"], "title": "Dangerously Irresistible (Mail Order Men)", "identifiers": {"librarything": ["2231317"], "goodreads": ["302446"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0373259344"], "publish_date": "June 1, 2001", "oclc_numbers": ["47103442"], "works": [{"key": "/works/OL5806488W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "6.4 x 4 x 0.8 inches", "local_id": ["urn:bwbsku:P6-APS-484", "urn:bwbsku:975-BAB-999"], "latest_revision": 11, "revision": 11, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-08T20:18:57.360662"}}
+/type/edition /books/OL10744276M 7 2020-08-28T01:12:49.970596 {"publishers": ["Worldwide Library"], "number_of_pages": 256, "weight": "4.3 ounces", "covers": [2409494], "physical_format": "Mass Market Paperback", "last_modified": {"type": "/type/datetime", "value": "2020-08-28T01:12:49.970596"}, "latest_revision": 7, "key": "/books/OL10744276M", "authors": [{"key": "/authors/OL2715314A"}], "ocaid": "murderinswampwwl00doro", "subjects": ["Fiction", "Fiction - Mystery/ Detective", "Mystery/Suspense", "Mystery & Detective - General", "Fiction / Mystery & Detective / General", "Mystery & Detective - Women Sleuths"], "isbn_13": ["9780373264902"], "source_records": ["bwb:9780373264902"], "title": "Murder In The Swamp (Wwl Mystery, 490)", "identifiers": {"librarything": ["5480341"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0373264909"], "publish_date": "April 1, 2004", "oclc_numbers": ["54968308"], "works": [{"key": "/works/OL8146387W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "6.6 x 4.2 x 0.7 inches", "revision": 7}
+/type/edition /books/OL10744596M 8 2022-12-04T06:46:46.706871 {"publishers": ["Harlequin"], "languages": [{"key": "/languages/eng"}], "identifiers": {"goodreads": ["887463"], "librarything": ["476316"]}, "source_records": ["bwb:9780373286294", "promise:bwb_daily_pallets_2022-11-10"], "title": "Rose Red,White (Historical, No 29)", "number_of_pages": 301, "isbn_13": ["9780373286294"], "physical_format": "Paperback", "isbn_10": ["0373286295"], "publish_date": "August 1, 1989", "key": "/books/OL10744596M", "authors": [{"key": "/authors/OL3497573A"}], "works": [{"key": "/works/OL9481860W"}], "type": {"key": "/type/edition"}, "subjects": ["Fiction", "Fiction - General", "Romance: Historical", "General", "Non-Classifiable", "Romance - Historical"], "lc_classifications": ["CPB"], "local_id": ["urn:bwbsku:T2-EBF-349"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T06:46:46.706871"}}
+/type/edition /books/OL10744865M 10 2022-12-10T09:47:32.157471 {"publishers": ["Harlequin"], "number_of_pages": 296, "weight": "4.8 ounces", "series": ["Harlequin Historicals, No 390"], "covers": [5074436], "physical_format": "Paperback", "key": "/books/OL10744865M", "authors": [{"key": "/authors/OL3497584A"}], "subjects": ["Romance - Historical", "Non-Classifiable", "Romance - General", "Fiction", "Fiction - Romance", "Romance: Regency"], "isbn_13": ["9780373289905"], "classifications": {}, "source_records": ["bwb:9780373289905", "promise:bwb_daily_pallets_2020-04-30"], "title": "The Untamed Heart", "identifiers": {"goodreads": ["1593187"], "librarything": ["3127479"], "amazon": [""]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0373289901"], "publish_date": "October 1, 1997", "oclc_numbers": ["37727977"], "works": [{"key": "/works/OL9481880W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "6.5 x 4.1 x 0.6 inches", "local_id": ["urn:bwbsku:O6-BLP-265"], "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T09:47:32.157471"}}
+/type/edition /books/OL10744869M 12 2022-11-15T12:08:44.579020 {"publishers": ["harlequin"], "weight": "4 ounces", "isbn_10": ["0373290004"], "series": ["Harlequin Historical Romance, No 400"], "covers": [2409783, 218037], "physical_format": "Paperback", "key": "/books/OL10744869M", "authors": [{"key": "/authors/OL3497595A"}], "ocaid": "merrywidowscathe00ther", "publish_places": ["New York, USA"], "isbn_13": ["9780373290000"], "classifications": {}, "source_records": ["bwb:9780373290000", "amazon:0373290004"], "title": "Catherine (The Merry Widows)", "identifiers": {"librarything": ["2584984"], "goodreads": ["2755551"]}, "languages": [{"key": "/languages/eng"}], "subjects": ["Romance - Historical", "Non-Classifiable", "Romance - General", "Fiction", "Fiction - Romance", "Romance: Regency"], "publish_date": "January 1, 1998", "oclc_numbers": ["38244000"], "works": [{"key": "/works/OL9481914W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "6.5 x 4.2 x 1 inches", "latest_revision": 12, "revision": 12, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-15T12:08:44.579020"}}
+/type/edition /books/OL10745065M 3 2011-04-27T12:59:06.187915 {"publishers": ["Harlequin Books"], "physical_format": "Mass Market Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T12:59:06.187915"}, "title": "Leaves on the Wind (A Harlequin Historical Romance)", "number_of_pages": 299, "isbn_13": ["9780373303496"], "edition_name": "1st Printing edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0373303491"], "publish_date": "2000", "key": "/books/OL10745065M", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "latest_revision": 3, "oclc_numbers": ["644776202"], "revision": 3, "type": {"key": "/type/edition"}, "identifiers": {"librarything": ["4305157"]}}
+/type/edition /books/OL10745085M 6 2022-12-09T08:23:51.294248 {"publishers": ["Harlequin"], "physical_format": "Mass Market Paperback", "weight": "4.8 ounces", "title": "The Officer and the Lady", "identifiers": {"goodreads": ["3031466"], "librarything": ["1967848"]}, "isbn_13": ["9780373305049"], "isbn_10": ["0373305044"], "publish_date": "2006", "key": "/books/OL10745085M", "authors": [{"key": "/authors/OL3408494A"}], "works": [{"key": "/works/OL9367719W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "6.6 x 4 x 0.5 inches", "local_id": ["urn:bwbsku:379-BAB-588"], "source_records": ["promise:bwb_daily_pallets_2020-12-09"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T08:23:51.294248"}}
+/type/edition /books/OL10745286M 5 2020-08-30T01:12:09.858475 {"publishers": ["Harlequin"], "subtitle": "novelas con coraz\u00f3n, aventura, intriga y pasi\u00f3n (el mejor postor)", "weight": "3.2 ounces", "covers": [2409915], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2020-08-30T01:12:09.858475"}, "latest_revision": 5, "key": "/books/OL10745286M", "authors": [{"key": "/authors/OL3370508A"}], "subjects": ["Romance - Contemporary", "Non-Classifiable", "Spanish", "Foreign Language Study", "Fiction - Romance", "Spanish: Adult Fiction"], "isbn_13": ["9780373335084"], "source_records": ["bwb:9780373335084"], "title": "Harlequin Bianca", "number_of_pages": 156, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0373335083"], "publish_date": "May 1, 1999", "oclc_numbers": ["41554881"], "works": [{"key": "/works/OL9322763W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "7 x 4 x 0.5 inches", "revision": 5}
+/type/edition /books/OL10745346M 7 2022-10-30T12:58:02.843358 {"publishers": ["Harlequin"], "translated_from": [{"key": "/languages/eng"}], "identifiers": {}, "weight": "3.2 ounces", "isbn_10": ["0373335687"], "series": ["Harlequin Bianca, 218"], "covers": [2409969], "physical_format": "Paperback", "key": "/books/OL10745346M", "authors": [{"key": "/authors/OL2743053A"}], "isbn_13": ["9780373335688"], "classifications": {}, "source_records": ["bwb:9780373335688", "amazon:0373335687"], "title": "Buscando Una Oportunidad", "translation_of": "Looking For An Opportunity", "number_of_pages": 160, "languages": [{"key": "/languages/spa"}], "subjects": ["Non-Classifiable", "Romance - Contemporary", "Romance - General", "Fiction", "Fiction - Romance", "Spanish: Adult Fiction"], "publish_date": "August 1, 2000", "oclc_numbers": ["45010750"], "works": [{"key": "/works/OL8242635W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "6.8 x 4.5 x 0.5 inches", "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-30T12:58:02.843358"}}
+/type/edition /books/OL10746173M 6 2010-08-17T04:20:46.113723 {"publishers": ["Silhouette"], "identifiers": {"goodreads": ["2492195"], "librarything": ["116811"]}, "weight": "2.4 ounces", "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-08-17T04:20:46.113723"}, "latest_revision": 6, "key": "/books/OL10746173M", "authors": [{"key": "/authors/OL230387A"}], "subjects": ["Romance - Contemporary Romance"], "languages": [{"key": "/languages/eng"}], "title": "Where There's Smoke... (Dynasties: The Barones)", "number_of_pages": 186, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780373360789"], "isbn_10": ["0373360789"], "publish_date": "2003", "works": [{"key": "/works/OL1922098W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "6.8 x 4.2 x 0.7 inches", "revision": 6}
+/type/edition /books/OL1074621M 3 2020-11-18T06:11:44.520758 {"publishers": ["s.n."], "lc_classifications": ["MLCS 92/00862 (P)"], "latest_revision": 3, "key": "/books/OL1074621M", "authors": [{"key": "/authors/OL573754A"}], "publish_places": ["[Morocco"], "pagination": "159 p. ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:112364149:470"], "title": "Azilal des nostalgiques", "lccn": ["93968746"], "number_of_pages": 159, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/fre"}], "last_modified": {"type": "/type/datetime", "value": "2020-11-18T06:11:44.520758"}, "publish_date": "1992", "publish_country": "mr ", "by_statement": "Khalla Saidi.", "works": [{"key": "/works/OL3449288W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10746445M 6 2020-08-29T08:45:57.231982 {"publishers": ["Harlequin Books"], "number_of_pages": 218, "covers": [10404252], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2020-08-29T08:45:57.231982"}, "latest_revision": 6, "key": "/books/OL10746445M", "authors": [{"key": "/authors/OL2674505A"}], "ocaid": "lecavalierinfide0000doug", "isbn_13": ["9780373450206"], "classifications": {}, "source_records": ["bwb:9780373450206", "ia:lecavalierinfide0000doug"], "title": "Le Cavalier Infidele", "notes": {"type": "/type/text", "value": "Harlequin Seduction"}, "identifiers": {}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/fre"}], "isbn_10": ["0373450206"], "publish_date": "January 1983", "oclc_numbers": ["15980384"], "works": [{"key": "/works/OL8030999W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL10746684M 6 2022-12-09T13:09:30.815134 {"publishers": ["Harlequin Books"], "physical_format": "Hardcover", "source_records": ["bwb:9780373480838", "ia:commelecielirlan0000lori", "promise:bwb_daily_pallets_2020-11-19"], "title": "Comme Le Ciel Irlandais (Collection Colombine)", "number_of_pages": 155, "isbn_13": ["9780373480838"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0373480830"], "publish_date": "January 1983", "key": "/books/OL10746684M", "authors": [{"key": "/authors/OL3497709A"}], "oclc_numbers": ["15942457"], "works": [{"key": "/works/OL9482175W"}], "type": {"key": "/type/edition"}, "covers": [11606910], "ocaid": "commelecielirlan0000lori", "local_id": ["urn:bwbsku:KO-167-866"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T13:09:30.815134"}}
+/type/edition /books/OL10746774M 9 2022-12-08T23:21:03.480290 {"publishers": ["Harlequin Books"], "identifiers": {}, "physical_format": "Hardcover", "key": "/books/OL10746774M", "authors": [{"key": "/authors/OL26954A"}], "languages": [{"key": "/languages/fre"}], "classifications": {}, "source_records": ["bwb:9780373493685", "ia:untapisdebruyere0000mayo", "promise:bwb_daily_pallets_2021-02-03"], "title": "Un Tapis de Bruyere Rose", "notes": {"type": "/type/text", "value": "French\r\nHarlequin"}, "number_of_pages": 152, "isbn_13": ["9780373493685"], "isbn_10": ["0373493681"], "publish_date": "January 1983", "oclc_numbers": ["15942442"], "works": [{"key": "/works/OL460956W"}], "type": {"key": "/type/edition"}, "covers": [11341086], "ocaid": "untapisdebruyere0000mayo", "local_id": ["urn:bwbsku:KO-619-580"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-08T23:21:03.480290"}}
+/type/edition /books/OL10747096M 4 2010-04-24T18:09:04.694023 {"publishers": ["silhouette"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:09:04.694023"}, "title": "Enter Laughing", "identifiers": {"goodreads": ["748188"]}, "isbn_13": ["9780373533879"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["037353387X"], "publish_date": "February 1, 1984", "key": "/books/OL10747096M", "authors": [{"key": "/authors/OL455017A"}], "latest_revision": 4, "works": [{"key": "/works/OL2974859W"}], "type": {"key": "/type/edition"}, "subjects": ["Non-Classifiable"], "revision": 4}
+/type/edition /books/OL10747141M 3 2010-04-24T18:09:04.694023 {"publishers": ["silhouette"], "languages": [{"key": "/languages/eng"}], "key": "/books/OL10747141M", "title": "Love's Golden Shadow (Silhouette Special Edition No. 23)", "identifiers": {"goodreads": ["3410580"]}, "isbn_13": ["9780373535231"], "physical_format": "Paperback", "isbn_10": ["0373535236"], "publish_date": "April 1, 1982", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:09:04.694023"}, "authors": [{"key": "/authors/OL3335369A"}, {"key": "/authors/OL3254820A"}], "latest_revision": 3, "type": {"key": "/type/edition"}, "subjects": ["Non-Classifiable"], "revision": 3}
+/type/edition /books/OL10747214M 5 2022-09-14T23:30:04.339526 {"publishers": ["silhouette"], "physical_format": "Paperback", "title": "Rainy Day Dreams", "identifiers": {"goodreads": ["3151925"]}, "isbn_13": ["9780373536146"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0373536143"], "publish_date": "July 1, 1983", "key": "/books/OL10747214M", "authors": [{"key": "/authors/OL3497283A"}], "works": [{"key": "/works/OL8202750W"}], "type": {"key": "/type/edition"}, "subjects": ["Non-Classifiable"], "first_sentence": {"type": "/type/text", "value": "It began in a woman's club in London on a February afternoon-an uncomfortable club, and a miserable afternoon-when Mrs. Wilkins, who had come down from Hampstead to shop and had lunched at her club, took up The Times from the table in the smoking-room, and running her listless eye down the Agony Column saw this: To Those who Appreciate Wistaria and Sunshine."}, "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-14T23:30:04.339526"}}
+/type/edition /books/OL10747262M 2 2009-12-15T00:53:32.813280 {"physical_format": "Paperback", "title": "Shooting Star", "isbn_10": ["0373536720"], "publishers": ["silhouette"], "isbn_13": ["9780373536726"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:53:32.813280"}, "publish_date": "May 1, 1984", "key": "/books/OL10747262M", "authors": [{"key": "/authors/OL3497758A"}], "latest_revision": 2, "subjects": ["Non-Classifiable"], "works": [{"key": "/works/OL9482282W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10747273M 3 2010-08-17T04:20:46.113723 {"publishers": ["Silhouette"], "identifiers": {"librarything": ["7980388"]}, "last_modified": {"type": "/type/datetime", "value": "2010-08-17T04:20:46.113723"}, "languages": [{"key": "/languages/eng"}], "number_of_pages": 250, "isbn_13": ["9780373536849"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0373536844"], "publish_date": "August 1, 1984", "key": "/books/OL10747273M", "authors": [{"key": "/authors/OL3497779A"}], "title": "Overtures Of Heart", "latest_revision": 3, "works": [{"key": "/works/OL9482327W"}], "type": {"key": "/type/edition"}, "subjects": ["Non-Classifiable"], "revision": 3}
+/type/edition /books/OL10747547M 2 2009-12-15T00:53:32.813280 {"physical_format": "Paperback", "title": "After Autumn", "isbn_10": ["0373572514"], "publishers": ["silhouette"], "isbn_13": ["9780373572519"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:53:32.813280"}, "publish_date": "September 1, 1983", "key": "/books/OL10747547M", "authors": [{"key": "/authors/OL2809632A"}], "latest_revision": 2, "subjects": ["Non-Classifiable"], "works": [{"key": "/works/OL8418910W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL1074767M 5 2020-11-18T06:14:27.509555 {"publishers": ["Da\u0304r al-Wat\u0323an al-\u02bbArabi\u0304"], "lc_classifications": ["MLCMN 92/01076 (B)"], "latest_revision": 5, "key": "/books/OL1074767M", "authors": [{"key": "/authors/OL173727A"}], "publish_places": ["[Beirut]"], "pagination": "118 p. ;", "source_records": ["marc:marc_records_scriblio_net/part24.dat:38047360:496", "marc:marc_loc_updates/v37.i25.records.utf8:21342471:521", "marc:marc_loc_updates/v38.i05.records.utf8:2584444:533", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:112601647:533"], "title": "Qira\u0304\u02bca\u0304t fi\u0304 al-fikr al-Isla\u0304mi\u0304", "lccn": ["93969645"], "number_of_pages": 118, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/ara"}], "last_modified": {"type": "/type/datetime", "value": "2020-11-18T06:14:27.509555"}, "publish_date": "1975", "publish_country": "le ", "by_statement": "\u02bbAbd al-Rah\u0323ma\u0304n al-Sharqa\u0304wi\u0304.", "works": [{"key": "/works/OL1599413W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10747685M 3 2012-06-06T05:06:49.755294 {"publishers": ["Chivers North America"], "identifiers": {}, "weight": "12 ounces", "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2012-06-06T05:06:49.755294"}, "latest_revision": 3, "key": "/books/OL10747685M", "authors": [{"key": "/authors/OL1385581A"}], "subjects": ["Romance", "Romance - General", "Fiction - Romance", "Large type books", "Large Print"], "edition_name": "Lrg edition", "languages": [{"key": "/languages/eng"}], "classifications": {}, "title": "Moment to Moment", "notes": {"type": "/type/text", "value": "Silhouette Sensation Large Print"}, "number_of_pages": 384, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780373581238"], "isbn_10": ["0373581238"], "publish_date": "November 1991", "works": [{"key": "/works/OL5685405W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.5 x 5.5 x 1 inches", "revision": 3}
+/type/edition /books/OL10747710M 8 2020-08-20T01:42:49.093293 {"publishers": ["Silhouette Books"], "identifiers": {"goodreads": ["3600142"], "librarything": ["2831609"]}, "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2020-08-20T01:42:49.093293"}, "latest_revision": 8, "key": "/books/OL10747710M", "authors": [{"key": "/authors/OL1474526A"}], "subjects": ["Romance"], "classifications": {}, "source_records": ["bwb:9780373583980"], "title": "Red-hot Satin", "notes": {"type": "/type/text", "value": "Desire"}, "number_of_pages": 192, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780373583980"], "isbn_10": ["0373583982"], "publish_date": "March 27, 1992", "oclc_numbers": ["26356431"], "works": [{"key": "/works/OL5945493W"}], "type": {"key": "/type/edition"}, "revision": 8}
+/type/edition /books/OL10747794M 2 2009-12-15T00:53:32.813280 {"publishers": ["Chivers North America"], "weight": "15.2 ounces", "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:53:32.813280"}, "latest_revision": 2, "key": "/books/OL10747794M", "authors": [{"key": "/authors/OL1475648A"}], "subjects": ["Romance", "Large Print"], "edition_name": "Largeprint edition", "title": "Sweet Lies, Satin Sighs (Silhouette Special Edition)", "number_of_pages": 381, "isbn_13": ["9780373588282"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0373588283"], "publish_date": "August 1993", "works": [{"key": "/works/OL5950344W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.5 x 5.8 x 1.2 inches", "revision": 2}
+/type/edition /books/OL10747977M 2 2010-04-19T22:29:22.731029 {"publishers": ["Silhouette Books"], "key": "/books/OL10747977M", "title": "Sil20 November 1995", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780373595501"], "physical_format": "Paperback", "isbn_10": ["0373595506"], "publish_date": "October 27, 1995", "last_modified": {"type": "/type/datetime", "value": "2010-04-19T22:29:22.731029"}, "authors": [{"key": "/authors/OL2623771A"}], "latest_revision": 2, "subjects": ["Romance"], "works": [{"key": "/works/OL15064792W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10748592M 8 2020-08-28T01:24:21.648721 {"publishers": ["Harlequin"], "number_of_pages": 160, "weight": "2.9 ounces", "covers": [2410683], "physical_format": "Mass Market Paperback", "last_modified": {"type": "/type/datetime", "value": "2020-08-28T01:24:21.648721"}, "latest_revision": 8, "key": "/books/OL10748592M", "authors": [{"key": "/authors/OL1391991A"}], "subjects": ["Romance - Contemporary", "Fiction / Romance / General", "Fiction", "Fiction - Romance", "Spanish: Adult Fiction"], "isbn_13": ["9780373671632"], "classifications": {}, "source_records": ["bwb:9780373671632"], "title": "Rindete A La Pasion", "notes": {"type": "/type/text", "value": "Harlequin Julia (Spanish)"}, "identifiers": {"goodreads": ["3298752"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/spa"}], "isbn_10": ["0373671636"], "publish_date": "May 1, 2004", "oclc_numbers": ["55111818"], "works": [{"key": "/works/OL5723772W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "6.7 x 4.3 x 0.4 inches", "revision": 8}
+/type/edition /books/OL1074865M 3 2020-11-18T06:15:46.275060 {"publishers": ["s.n."], "subtitle": "a case study of the Zambian crop haulage", "subject_place": ["Zambia."], "lc_classifications": ["HD9049.C8 Z366 1991"], "latest_revision": 3, "key": "/books/OL1074865M", "authors": [{"key": "/authors/OL573908A"}], "publish_places": ["[Harare"], "contributions": ["Southern African Team for Employment Promotion."], "pagination": "47 leaves ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:112680344:890"], "title": "Maize production and structural adjustment", "lccn": ["93980060"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (leaves 43-47).\n\"Draft; report for ILO/SATEP, Harare.\"\n\"... November 1991\"--Acknowledgements."}, "number_of_pages": 47, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "subjects": ["Corn industry -- Zambia.", "Corn industry -- Employees -- Supply and demand -- Zambia."], "publish_date": "1991", "publish_country": "rh ", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T06:15:46.275060"}, "by_statement": "by Christian Peters-Berries.", "works": [{"key": "/works/OL3449700W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10748727M 3 2020-08-27T20:47:28.969679 {"publishers": ["harlequin"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2020-08-27T20:47:28.969679"}, "source_records": ["bwb:9780373680139"], "title": "Todo Por Su Bien (All For Her Sake)", "number_of_pages": 160, "isbn_13": ["9780373680139"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0373680139"], "publish_date": "April 1, 2001", "key": "/books/OL10748727M", "authors": [{"key": "/authors/OL2711097A"}], "latest_revision": 3, "works": [{"key": "/works/OL8135575W"}], "type": {"key": "/type/edition"}, "subjects": ["Non-Classifiable"], "revision": 3}
+/type/edition /books/OL10749121M 9 2022-12-04T07:10:10.368132 {"publishers": ["harlequin"], "number_of_pages": 380, "series": ["Harlequin Superromance No. 114"], "physical_format": "Paperback", "key": "/books/OL10749121M", "authors": [{"key": "/authors/OL2674337A"}], "subjects": ["General", "Non-Classifiable", "Fiction - General", "Fiction"], "isbn_13": ["9780373701148"], "classifications": {}, "source_records": ["bwb:9780373701148", "promise:bwb_daily_pallets_2022-11-08"], "title": "Reach the Splendor", "identifiers": {"goodreads": ["1556205"], "librarything": ["3513592"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0373701144"], "publish_date": "April 1, 1984", "oclc_numbers": ["16048241"], "works": [{"key": "/works/OL8029432W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:695-BAC-046"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T07:10:10.368132"}}
+/type/edition /books/OL10749719M 8 2020-08-28T04:06:36.768629 {"publishers": ["Steeple Hill"], "number_of_pages": 320, "subtitle": "Love Me, Love My Dog #1 (Love, Faith & Getting It Right #7) (Steeple Hill Cafe)", "covers": [8170579], "physical_format": "Mass Market Paperback", "last_modified": {"type": "/type/datetime", "value": "2020-08-28T04:06:36.768629"}, "latest_revision": 8, "key": "/books/OL10749719M", "authors": [{"key": "/authors/OL396592A"}], "ocaid": "milliondollardil0000baer", "subjects": ["Religious - General", "Romance - General", "Fiction / Religious", "Fiction", "Fiction - Romance"], "edition_name": "Reprint edition", "languages": [{"key": "/languages/eng"}], "source_records": ["ia:milliondollardil0000baer", "bwb:9780373786183"], "title": "Million Dollar Dilemma", "identifiers": {"librarything": ["258016"], "goodreads": ["3149629"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780373786183"], "isbn_10": ["0373786182"], "publish_date": "May 1, 2008", "oclc_numbers": ["181602269"], "works": [{"key": "/works/OL2711519W"}], "type": {"key": "/type/edition"}, "revision": 8}
+/type/edition /books/OL10750091M 6 2015-11-13T04:20:01.166891 {"publishers": ["Harlequin"], "physical_format": "Mass Market Paperback", "last_modified": {"type": "/type/datetime", "value": "2015-11-13T04:20:01.166891"}, "source_records": ["ia:fugitivefatherba00carl"], "title": "Fugitive Father (Babies & Bachelors USA: Kansas #16)", "identifiers": {"goodreads": ["2799919"]}, "isbn_13": ["9780373822645"], "covers": [7378763], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0373822642"], "publish_date": "1994", "key": "/books/OL10750091M", "authors": [{"key": "/authors/OL1385999A"}], "ocaid": "fugitivefatherba00carl", "latest_revision": 6, "works": [{"key": "/works/OL5692144W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL10750218M 9 2022-12-10T13:26:17.468538 {"publishers": ["Harlequin"], "physical_format": "Paperback", "source_records": ["bwb:9780373832347", "promise:bwb_daily_pallets_2020-04-02"], "title": "Fiesta San Antonio", "identifiers": {"goodreads": ["530691"], "amazon": [""]}, "isbn_13": ["9780373832347"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0373832346"], "publish_date": "May 1, 1991", "key": "/books/OL10750218M", "oclc_numbers": ["34727078"], "works": [{"key": "/works/OL14862462W"}], "type": {"key": "/type/edition"}, "subjects": ["Non-Classifiable", "Romance - General", "Fiction", "Romance: Regency"], "local_id": ["urn:bwbsku:593-BAA-328"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T13:26:17.468538"}}
+/type/edition /books/OL10750457M 6 2020-08-28T07:20:45.735086 {"publishers": ["Harlequin"], "number_of_pages": 320, "weight": "6.4 ounces", "covers": [2411359], "physical_format": "Mass Market Paperback", "last_modified": {"type": "/type/datetime", "value": "2020-08-28T07:20:45.735086"}, "latest_revision": 6, "key": "/books/OL10750457M", "authors": [{"key": "/authors/OL1385977A"}], "subjects": ["American Light Romantic Fiction", "American Mystery & Suspense Fiction", "Fiction", "Fiction - Romance", "Romance - Contemporary", "Fiction / Romance / General", "Romance - Suspense"], "edition_name": "Lgr edition", "languages": [{"key": "/languages/eng"}], "classifications": {}, "source_records": ["bwb:9780373888009"], "title": "The Christmas Clue", "notes": {"type": "/type/text", "value": "Harlequin Intrigue"}, "identifiers": {"librarything": ["4947052"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780373888009"], "isbn_10": ["0373888007"], "publish_date": "November 6, 2007", "works": [{"key": "/works/OL5690891W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "6.5 x 4.2 x 1.1 inches", "revision": 6}
+/type/edition /books/OL10750830M 5 2013-04-08T08:32:10.604736 {"publishers": ["Silhouette Books"], "physical_format": "Mass Market Paperback", "classifications": {}, "last_modified": {"type": "/type/datetime", "value": "2013-04-08T08:32:10.604736"}, "title": "Silhouette, February 1995", "notes": {"type": "/type/text", "value": "24 Copy Prepak"}, "identifiers": {}, "isbn_13": ["9780373955046"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0373955049"], "publish_date": "February 1995", "key": "/books/OL10750830M", "latest_revision": 5, "works": [{"key": "/works/OL14906487W"}], "type": {"key": "/type/edition"}, "subjects": ["Romance - General", "Fiction - Romance"], "physical_dimensions": "6.9 x 4.2 x 0.7 inches", "revision": 5}
+/type/edition /books/OL10750831M 5 2011-01-15T22:30:41.325951 {"publishers": ["Silhouette Books"], "physical_format": "Mass Market Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-01-15T22:30:41.325951"}, "latest_revision": 5, "key": "/books/OL10750831M", "authors": [{"key": "/authors/OL2674835A"}, {"key": "/authors/OL3497920A"}, {"key": "/authors/OL2674331A"}], "subjects": ["Romance - General", "Fiction - Romance"], "isbn_13": ["9780373955121"], "classifications": {}, "title": "Silhouette Romance, February 1995", "notes": {"type": "/type/text", "value": "24 Copy Prepak"}, "identifiers": {"goodreads": ["2131277"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["037395512X"], "publish_date": "February 1995", "works": [{"key": "/works/OL14960625W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "6.7 x 4.2 x 1 inches", "revision": 5}
+/type/edition /books/OL10751289M 5 2011-04-22T22:46:41.793363 {"publishers": ["Farrar Straus & Giroux (T)"], "weight": "1.2 pounds", "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-22T22:46:41.793363"}, "latest_revision": 5, "key": "/books/OL10751289M", "authors": [{"key": "/authors/OL137147A"}], "subjects": ["Fiction"], "edition_name": "Lmtd Signd edition", "first_sentence": {"type": "/type/text", "value": "THE JEW from Babylon, as the miracle worker was called, traveled all night in a wagon that was taking him from Lublin to the village of Tarnigrod."}, "title": "Death of Methuselah (Signed Limited Edition)", "identifiers": {"goodreads": ["1020846"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780374135645"], "isbn_10": ["0374135649"], "publish_date": "April 1988", "oclc_numbers": ["16468912"], "works": [{"key": "/works/OL1345030W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.2 x 6.2 x 1.2 inches", "revision": 5}
+/type/edition /books/OL1075161M 4 2020-11-18T06:19:12.811349 {"publishers": ["College Press"], "series": ["Modern writers", "Modern writers (Harare, Zimbabwe)"], "lc_classifications": ["PL8681.9.C566 C47 1991"], "latest_revision": 4, "key": "/books/OL1075161M", "authors": [{"key": "/authors/OL574053A"}], "publish_places": ["Harare, Zimbabwe"], "pagination": "198 p. ;", "source_records": ["marc:marc_records_scriblio_net/part24.dat:38373239:577", "marc:marc_loc_updates/v37.i28.records.utf8:5020891:582", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:112945038:582"], "title": "Chakwesha", "lccn": ["93980488"], "notes": {"type": "/type/text", "value": "In Shona.\nA novel."}, "number_of_pages": 198, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/sho"}], "isbn_10": ["0869259067"], "publish_date": "1991", "publish_country": "rh ", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T06:19:12.811349"}, "by_statement": "Herbert Chimhundu.", "works": [{"key": "/works/OL3450117W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10752056M 8 2022-11-15T11:52:45.793316 {"publishers": ["Golden Books"], "number_of_pages": 16, "weight": "6.4 ounces", "covers": [2411662], "physical_format": "Hardcover", "key": "/books/OL10752056M", "authors": [{"key": "/authors/OL2675811A"}], "subjects": ["Media Tie-In", "Movie Tie - In", "Juvenile Fiction / Movie or Television Tie-In", "Imagination & Play", "Juvenile Fiction", "Children's Books/Ages 4-8 Fiction", "Children: Kindergarten"], "isbn_13": ["9780375843129"], "classifications": {}, "title": "Go, Diego Go! Make Your Own Little Golden Book", "notes": {"type": "/type/text", "value": "Make Your Own LGB"}, "identifiers": {"goodreads": ["2179625"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0375843124"], "publish_date": "January 8, 2008", "oclc_numbers": ["154759861"], "works": [{"key": "/works/OL8040931W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.6 x 7.1 x 0.6 inches", "source_records": ["amazon:0375843124"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-15T11:52:45.793316"}}
+/type/edition /books/OL10752469M 2 2009-12-15T00:53:40.209080 {"physical_format": "Paperback", "title": "Trust the Spirit, Share the Struggle", "isbn_10": ["0377001589"], "publishers": ["Friendship Pr"], "isbn_13": ["9780377001589"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:53:40.209080"}, "publish_date": "June 1986", "key": "/books/OL10752469M", "authors": [{"key": "/authors/OL3498146A"}], "latest_revision": 2, "works": [{"key": "/works/OL9482795W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10752550M 7 2022-12-07T18:40:32.351641 {"publishers": ["Ward Ritchie Press"], "identifiers": {"goodreads": ["1855362"]}, "subtitle": "Historical sites, trips for a day or a weekend", "physical_format": "Unknown Binding", "key": "/books/OL10752550M", "authors": [{"key": "/authors/OL1811443A"}], "subjects": ["California, Southern", "Guidebooks"], "isbn_13": ["9780378036023"], "title": "Exploring California byways V;", "number_of_pages": 130, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0378036025"], "publish_date": "1971", "oclc_numbers": ["1950795"], "works": [{"key": "/works/OL6699056W"}], "type": {"key": "/type/edition"}, "covers": [12760686], "ocaid": "exploringcalifor0000lead", "lc_classifications": ["F859.3 .L38 1971"], "source_records": ["ia:exploringcalifor0000lead", "promise:bwb_daily_pallets_2022-03-17"], "local_id": ["urn:bwbsku:P7-EMT-003"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-07T18:40:32.351641"}}
+/type/edition /books/OL10753212M 4 2022-02-28T11:57:12.090736 {"publishers": ["North Atlantic Books"], "title": "The Ultimate Athlete", "isbn_13": ["9780380430673"], "physical_format": "Paperback", "isbn_10": ["0380430673"], "publish_date": "July 1990", "key": "/books/OL10753212M", "works": [{"key": "/works/OL15390919W"}], "type": {"key": "/type/edition"}, "subjects": ["Athletes", "Physical education and trainin", "Physical fitness", "Psychological aspects", "Sports"], "first_sentence": {"type": "/type/text", "value": "\"In every fat man, the saying goes, there is a thin man struggling to get out.\""}, "covers": [11734089], "ocaid": "ultimateathleter0000leon", "lccn": ["75015325"], "lc_classifications": ["GV342 .L44 1977"], "source_records": ["ia:ultimateathleter0000leon", "bwb:9780380430673"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-28T11:57:12.090736"}}
+/type/edition /books/OL10753328M 6 2022-02-28T11:39:13.625886 {"publishers": ["Avon Books"], "physical_format": "Paperback", "subtitle": "The Rise and Fall of the Osborne Computer Corporation", "title": "Hypergrowth", "identifiers": {"librarything": ["445691"], "goodreads": ["1071234"]}, "isbn_13": ["9780380699605"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0380699605"], "publish_date": "August 1985", "key": "/books/OL10753328M", "authors": [{"key": "/authors/OL1234221A"}, {"key": "/authors/OL56346A"}], "oclc_numbers": ["12570209"], "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance", "Computer industry", "Microcomputers", "Osborne Computer Corporation", "United States", "Business/Economics"], "works": [{"key": "/works/OL27417972W"}], "source_records": ["bwb:9780380699605"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-28T11:39:13.625886"}}
+/type/edition /books/OL10753391M 8 2022-02-28T19:15:45.634484 {"publishers": ["Avon Books (Mm)"], "subtitle": "Green Fire", "weight": "8 ounces", "physical_format": "Paperback", "key": "/books/OL10753391M", "authors": [{"key": "/authors/OL894442A"}], "subjects": ["Espionage/Intrigue", "Fiction - Espionage / Thriller", "Fiction"], "isbn_13": ["9780380710973"], "title": "White Rush", "identifiers": {"librarything": ["3284974"], "goodreads": ["579714"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0380710978"], "publish_date": "December 1992", "oclc_numbers": ["27091837"], "works": [{"key": "/works/OL4482128W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "6.7 x 4.2 x 1.4 inches", "source_records": ["bwb:9780380710973"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-28T19:15:45.634484"}}
+/type/edition /books/OL10753581M 5 2022-02-28T17:44:53.432819 {"publishers": ["Avon Books (Mm)"], "title": "Six Guns at Spanish Peak (Remington, No 8)", "identifiers": {"goodreads": ["3568176"]}, "isbn_13": ["9780380755608"], "physical_format": "Paperback", "isbn_10": ["0380755602"], "publish_date": "July 1988", "key": "/books/OL10753581M", "authors": [{"key": "/authors/OL2676599A"}], "works": [{"key": "/works/OL8047826W"}], "type": {"key": "/type/edition"}, "subjects": ["Westerns"], "source_records": ["bwb:9780380755608"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-28T17:44:53.432819"}}
+/type/edition /books/OL10753796M 6 2022-02-28T17:48:18.460083 {"publishers": ["Avon Books"], "isbn_10": ["038076976X"], "physical_format": "Paperback", "lc_classifications": ["CPB Box no. 5 vol. 6"], "key": "/books/OL10753796M", "authors": [{"key": "/authors/OL2702009A"}], "source_records": ["marc:marc_loc_updates/v39.i49.records.utf8:1244114:699", "marc:marc_loc_2016/BooksAll.2016.part12.utf8:171209003:699", "bwb:9780380769766"], "title": "The Sound of Dreams", "lccn": ["80068429"], "number_of_pages": 288, "isbn_13": ["9780380769766"], "subjects": ["Fiction", "General"], "publish_date": "March 1, 1981", "oclc_numbers": ["7261047"], "works": [{"key": "/works/OL8109613W"}], "type": {"key": "/type/edition"}, "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-28T17:48:18.460083"}}
+/type/edition /books/OL10753834M 8 2022-02-28T11:38:28.930663 {"publishers": ["Camelot"], "weight": "2.4 ounces", "physical_format": "Paperback", "key": "/books/OL10753834M", "authors": [{"key": "/authors/OL225027A"}], "contributions": ["Meredith Johnson (Illustrator)"], "subjects": ["General", "Children's 9-12", "Baseball", "Fathers and sons", "Fiction", "Children: Grades 2-3"], "isbn_13": ["9780380773664"], "source_records": ["bwb:9780380773664"], "title": "Pitching Trouble (Hit and Run Gang)", "identifiers": {"librarything": ["8512452"], "goodreads": ["2649140"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["038077366X"], "publish_date": "March 1994", "oclc_numbers": ["29906759"], "works": [{"key": "/works/OL1879735W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "7.5 x 5 x 0.5 inches", "lc_classifications": ["CPB"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-28T11:38:28.930663"}}
+/type/edition /books/OL10754497M 2 2011-04-27T14:31:32.735929 {"publishers": ["Silver Burdett & Ginn"], "languages": [{"key": "/languages/eng"}], "subtitle": "K (Silver Burdett & Ginn School Program)", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T14:31:32.735929"}, "title": "This Is Our Faith: Teacher Edition", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780382005879"], "physical_format": "Spiral-bound", "isbn_10": ["0382005872"], "publish_date": "1989", "key": "/books/OL10754497M", "latest_revision": 2, "oclc_numbers": ["30457012"], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL1075453M 6 2020-11-18T06:22:37.894682 {"other_titles": ["Democratic and peaceful transitional conference of Ethiopia :"], "publishers": ["[s.n."], "subtitle": "naga\u0304rit ga\u0304ze\u0301ta\u0304 = Democratic and peaceful transitional conference of Ethiopia : negarit gazeta.", "lc_classifications": ["UNCLASSIFIED 1644 (K)", "KRP2064.61991 .Y35 1991"], "latest_revision": 6, "key": "/books/OL1075453M", "publish_places": ["Addis Ababa"], "pagination": "26 p. :", "source_records": ["marc:marc_records_scriblio_net/part24.dat:38627287:759", "marc:marc_loc_updates/v36.i01.records.utf8:3297605:947", "marc:marc_loc_updates/v36.i02.records.utf8:3294348:929", "marc:marc_loc_updates/v37.i42.records.utf8:30167111:929", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:113200693:929"], "title": "Ya\u02bcItyop\u0323ya sala\u0304ma\u0304wina\u0304 de\u0301mokra\u0304\u0304siya\u0304wi yas\u030cegeger guba\u0304\u02bce\u0301 c\u030ca\u0304rtar", "lccn": ["93980984"], "notes": {"type": "/type/text", "value": "Amharic and English.\n\"H\u0323amle\u0301 15/1983 \u02bba\u0304.me = 22nd day of July 1991.\""}, "number_of_pages": 26, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/amh"}], "last_modified": {"type": "/type/datetime", "value": "2020-11-18T06:22:37.894682"}, "publish_date": "1991", "publish_country": "et ", "works": [{"key": "/works/OL18341784W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL10754645M 2 2011-04-28T03:47:12.497537 {"publishers": ["Silver Burdett Company"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2011-04-28T03:47:12.497537"}, "title": "Spell Correctly", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780382032578"], "physical_format": "Hardcover", "isbn_10": ["0382032578"], "publish_date": "1977", "key": "/books/OL10754645M", "latest_revision": 2, "oclc_numbers": ["13958201"], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10754836M 4 2010-04-24T18:09:04.694023 {"publishers": ["Silver Burdett Pr"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:09:04.694023"}, "title": "Anna & the Moon Queen (Strtr Stories)", "contributions": ["Annabel McLaren (Editor)", "Barbara Bailey (Illustrator)"], "identifiers": {"goodreads": ["2809990"]}, "isbn_13": ["9780382065774"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0382065778"], "publish_date": "December 1980", "key": "/books/OL10754836M", "authors": [{"key": "/authors/OL384559A"}], "latest_revision": 4, "works": [{"key": "/works/OL2639134W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10755480M 7 2022-12-03T21:44:16.570742 {"publishers": ["Silver Burdett Press"], "number_of_pages": 80, "weight": "11.2 ounces", "physical_format": "Paperback", "key": "/books/OL10755480M", "authors": [{"key": "/authors/OL803852A"}], "subjects": ["Action & Adventure", "Fiction - General", "Children: Grades 2-3"], "languages": [{"key": "/languages/eng"}], "title": "Journey Through the Tropical Jungle", "identifiers": {"librarything": ["2141002"], "goodreads": ["1174522"]}, "isbn_13": ["9780382243776"], "isbn_10": ["0382243773"], "publish_date": "January 1994", "oclc_numbers": ["31189246"], "works": [{"key": "/works/OL4212024W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "11 x 8.5 x 0.5 inches", "source_records": ["amazon:0382243773"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-03T21:44:16.570742"}}
+/type/edition /books/OL10755794M 2 2019-01-19T06:05:12.546953 {"publishers": ["Silver Burdett Ginn"], "physical_format": "Paperback", "source_records": ["ia:worldgeographyte0000unse"], "title": "World Geography Teacher's Workbook", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "covers": [8348098], "isbn_13": ["9780382320750"], "isbn_10": ["0382320751"], "publish_date": "1999", "key": "/books/OL10755794M", "last_modified": {"type": "/type/datetime", "value": "2019-01-19T06:05:12.546953"}, "ocaid": "worldgeographyte0000unse", "latest_revision": 2, "works": [{"key": "/works/OL18187657W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10756159M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Library Binding", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Dillon Press"], "title": "Future Tech", "isbn_13": ["9780382399497"], "isbn_10": ["0382399498"], "publish_date": "December 1998", "key": "/books/OL10756159M", "authors": [{"key": "/authors/OL43360A"}], "type": {"key": "/type/edition"}, "subjects": ["Science & Nature - General", "People & Places - General", "Juvenile Nonfiction", "Children's Books/Ages 9-12 Science", "Children: Grades 4-6"], "revision": 1}
+/type/edition /books/OL10756261M 6 2020-05-15T21:47:53.785711 {"publishers": ["American School Publishers"], "number_of_pages": 80, "source_records": ["ia:americanmosaicre00gutl"], "title": "American Mosaic - Connections \"Reading for Multicultural Literacy\"", "identifiers": {"librarything": ["3405838"]}, "isbn_13": ["9780383035387"], "covers": [9485062], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0383035384"], "publish_date": "1992", "key": "/books/OL10756261M", "last_modified": {"type": "/type/datetime", "value": "2020-05-15T21:47:53.785711"}, "ocaid": "americanmosaicre00gutl", "oclc_numbers": ["28933304"], "works": [{"key": "/works/OL16989065W"}], "type": {"key": "/type/edition"}, "latest_revision": 6, "revision": 6}
+/type/edition /books/OL10756309M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Sra"], "title": "The Seesaw", "isbn_13": ["9780383038753"], "isbn_10": ["0383038758"], "publish_date": "June 1997", "key": "/books/OL10756309M", "type": {"key": "/type/edition"}, "subjects": ["Children: Grades 2-3"], "revision": 1}
+/type/edition /books/OL10756853M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "subtitle": "Statistical Tables 1988", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["The Stationery Office Books (Agencies)"], "number_of_pages": 57, "isbn_13": ["9780748002580"], "isbn_10": ["0748002588"], "publish_date": "1989", "key": "/books/OL10756853M", "title": "Scottish Sea Fisheries", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10757149M 2 2011-04-27T11:01:25.143110 {"publishers": ["The Stationery Office Books (Agencies)"], "last_modified": {"type": "/type/datetime", "value": "2011-04-27T11:01:25.143110"}, "title": "Input Output Tables for Scotland, 1989 (Statistical Bulletin: Industry Series)", "number_of_pages": 16, "isbn_13": ["9780748009879"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0748009876"], "publish_date": "1994", "key": "/books/OL10757149M", "latest_revision": 2, "oclc_numbers": ["59868872"], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10757300M 3 2022-07-17T05:54:00.242682 {"publishers": ["The Stationery Office Books (Agencies)"], "key": "/books/OL10757300M", "title": "Studies of Illness and Death in the Elderly in Glasgow (Scottish Health Service Studies: 17)", "number_of_pages": 80, "isbn_13": ["9780748013333"], "physical_format": "Paperback", "isbn_10": ["0748013334"], "publish_date": "1971", "authors": [{"key": "/authors/OL3398641A"}], "works": [{"key": "/works/OL9355361W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780748013333"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T05:54:00.242682"}}
+/type/edition /books/OL10757572M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["The Stationery Office Books (Agencies)"], "number_of_pages": 12, "isbn_13": ["9780748016204"], "isbn_10": ["0748016201"], "publish_date": "1986", "key": "/books/OL10757572M", "title": "Placing Requests in Education Authority Schools (Statistical Bulletin: Education Series)", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10757907M 4 2022-07-17T02:32:40.662901 {"publishers": ["The Stationery Office Books (Agencies)"], "title": "Developing a Pressure Sore Policy (Audit Symposium 1994: 53)", "number_of_pages": 15, "isbn_13": ["9780748030408"], "physical_format": "Paperback", "isbn_10": ["0748030409"], "publish_date": "1995", "key": "/books/OL10757907M", "authors": [{"key": "/authors/OL2926437A"}], "oclc_numbers": ["34886070"], "works": [{"key": "/works/OL8669669W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780748030408"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T02:32:40.662901"}}
+/type/edition /books/OL10758415M 2 2011-04-30T10:09:11.319135 {"publishers": ["The Stationery Office Books (Agencies)"], "last_modified": {"type": "/type/datetime", "value": "2011-04-30T10:09:11.319135"}, "title": "Follow-up to the Inspection of Lomond School, Helensburgh [Letter]", "number_of_pages": 4, "isbn_13": ["9780748055562"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0748055568"], "publish_date": "1996", "key": "/books/OL10758415M", "latest_revision": 2, "oclc_numbers": ["316234837"], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10758434M 2 2011-04-30T15:09:46.056106 {"publishers": ["The Stationery Office Books (Agencies)"], "last_modified": {"type": "/type/datetime", "value": "2011-04-30T15:09:46.056106"}, "title": "Follow-up to the Inspection of Albert Primary School, City of Glasgow Council [Letter]", "number_of_pages": 3, "isbn_13": ["9780748056019"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0748056017"], "publish_date": "1996", "key": "/books/OL10758434M", "latest_revision": 2, "oclc_numbers": ["316245888"], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10758493M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "subtitle": "[letter/circular]", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["The Stationery Office Books (Agencies)"], "number_of_pages": 28, "isbn_13": ["9780748057337"], "isbn_10": ["0748057331"], "publish_date": "1996", "key": "/books/OL10758493M", "title": "The Plastic Materials and Articles in Contact with Food (Amendment) (No. 2) Regulations 1996", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL1075886M 2 2020-11-18T06:27:34.829520 {"publishers": ["NEMU"], "subtitle": "29 December, 1992", "subject_place": ["Kenya", "Kenya."], "lc_classifications": ["JQ2947.A956 M85 1993"], "latest_revision": 2, "key": "/books/OL1075886M", "publish_places": ["Nairobi, Kenya"], "contributions": ["National Election Monitoring Unit (Kenya)"], "subject_time": ["1992."], "pagination": "ix, 262 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:113578992:784"], "title": "The Multi-party general elections in Kenya", "lccn": ["93982297"], "number_of_pages": 262, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "subjects": ["Kenya. National Assembly -- Elections, 1992.", "Presidents -- Kenya -- Election -- 1992.", "Election monitoring -- Kenya.", "Elections -- Kenya."], "publish_date": "1993", "publish_country": "ke ", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T06:27:34.829520"}, "by_statement": "the report of the National Election Monitoring Unit (NEMU).", "works": [{"key": "/works/OL23534411W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10759122M 2 2020-08-19T17:07:56.122688 {"publishers": ["Financial Times Prentice Hall"], "physical_format": "Paperback", "source_records": ["bwb:9780748276042"], "title": "Standard Chartered Bank Module 4 Business Goal Orientation Finance Workbook 2 Exercise Disk (to Be Used in Conjunction with Workbook 2)", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780748276042"], "isbn_10": ["0748276041"], "publish_date": "November 26, 1999", "key": "/books/OL10759122M", "last_modified": {"type": "/type/datetime", "value": "2020-08-19T17:07:56.122688"}, "latest_revision": 2, "works": [{"key": "/works/OL21393810W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10759453M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["AT Foulks Lynch Ltd"], "number_of_pages": 350, "isbn_13": ["9780748337330"], "isbn_10": ["0748337334"], "publish_date": "July 1, 1998", "key": "/books/OL10759453M", "title": "ACCA International Stream Revision Series (ACCA International Stream Revision S.)", "type": {"key": "/type/edition"}, "subjects": ["Financial reporting, financial statements", "Study guides, home study & revision notes"], "revision": 1}
+/type/edition /books/OL10759532M 3 2011-04-26T05:57:53.187505 {"publishers": ["AT Foulks Lynch Ltd"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-26T05:57:53.187505"}, "title": "CIMA Examination Kit (CIMA Examination Kit S.)", "number_of_pages": 250, "covers": [2584177], "edition_name": "5Rev Ed edition", "isbn_13": ["9780748338337"], "isbn_10": ["0748338330"], "publish_date": "July 1, 1998", "key": "/books/OL10759532M", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "latest_revision": 3, "oclc_numbers": ["228378386"], "type": {"key": "/type/edition"}, "subjects": ["Financial reporting, financial statements", "Study guides, home study & revision notes"], "revision": 3}
+/type/edition /books/OL10759692M 2 2011-04-29T22:01:48.905082 {"publishers": ["AT Foulks Lynch Ltd"], "last_modified": {"type": "/type/datetime", "value": "2011-04-29T22:01:48.905082"}, "title": "CIMA Examination Texts (CIMA Textbook S.)", "number_of_pages": 500, "isbn_13": ["9780748340613"], "edition_name": "7Rev Ed edition", "physical_format": "Paperback", "isbn_10": ["0748340610"], "publish_date": "July 1999", "key": "/books/OL10759692M", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "latest_revision": 2, "oclc_numbers": ["41504177"], "type": {"key": "/type/edition"}, "subjects": ["Accounting", "Budgeting & financial management", "Taxation"], "revision": 2}
+/type/edition /books/OL10759716M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780748340927"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["AT Foulks Lynch Ltd"], "number_of_pages": 300, "edition_name": "2r.e. edition", "isbn_10": ["0748340920"], "publish_date": "July 1999", "key": "/books/OL10759716M", "title": "AAT Technician Level (AAT Technician Textbooks)", "type": {"key": "/type/edition"}, "subjects": ["Management accounting"], "revision": 1}
+/type/edition /books/OL10759741M 2 2011-04-25T14:19:19.075949 {"publishers": ["AT Foulks Lynch Ltd"], "last_modified": {"type": "/type/datetime", "value": "2011-04-25T14:19:19.075949"}, "title": "CIMA Examination Kit (CIMA Examination Kit S.)", "number_of_pages": 250, "isbn_13": ["9780748341375"], "edition_name": "7Rev Ed edition", "physical_format": "Paperback", "isbn_10": ["0748341374"], "publish_date": "January 2000", "key": "/books/OL10759741M", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "latest_revision": 2, "oclc_numbers": ["43186818"], "type": {"key": "/type/edition"}, "subjects": ["Accounting", "Economics"], "revision": 2}
+/type/edition /books/OL10760272M 2 2011-04-27T19:39:09.874220 {"publishers": ["AT Foulks Lynch Ltd"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T19:39:09.874220"}, "title": "Acca Textbooks (International Stream) for Dec 2002 & Jun 2003 (Acca Textbooks)", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780748354320"], "isbn_10": ["0748354328"], "publish_date": "June 7, 2002", "key": "/books/OL10760272M", "latest_revision": 2, "oclc_numbers": ["62378648"], "type": {"key": "/type/edition"}, "subjects": ["Financial reporting, financial statements"], "revision": 2}
+/type/edition /books/OL10760419M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Foulks Lynch"], "title": "Audit & Internal Review Int 2.6 (Acca Textbooks)", "isbn_13": ["9780748359837"], "isbn_10": ["0748359834"], "publish_date": "June 1, 2003", "key": "/books/OL10760419M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10760448M 5 2023-01-02T13:09:56.510823 {"publishers": ["Taylor & Francis"], "weight": "1 pounds", "physical_format": "Hardcover", "key": "/books/OL10760448M", "authors": [{"key": "/authors/OL3499295A"}], "subjects": ["Education / General", "General", "Education", "Education / Teaching"], "edition_name": "1 edition", "languages": [{"key": "/languages/eng"}], "source_records": ["bwb:9780748400935", "marc:harvard_bibliographic_metadata/ab.bib.12.20150123.full.mrc:305033323:329"], "title": "Feminist Politics And Education Reform", "number_of_pages": 208, "isbn_13": ["9780748400935"], "isbn_10": ["0748400931"], "publish_date": "December 31, 2015", "oclc_numbers": ["171553671"], "works": [{"key": "/works/OL9484064W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10 x 8 x 2 inches", "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2023-01-02T13:09:56.510823"}}
+/type/edition /books/OL10761098M 3 2022-12-06T23:20:24.999585 {"publishers": ["Trans-Atlantic Publications"], "subtitle": "An Integrated Course in Religious and Personal Education, Set (Religion for a Change)", "isbn_10": ["0748704736"], "number_of_pages": 272, "isbn_13": ["9780748704736"], "physical_format": "Paperback", "publish_date": "December 1991", "key": "/books/OL10761098M", "authors": [{"key": "/authors/OL3499466A"}], "title": "Religion for a Change", "subjects": ["Religious education / world faiths", "Education", "Children's Books/Young Adult Religion"], "works": [{"key": "/works/OL9484253W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:KP-954-965"], "source_records": ["promise:bwb_daily_pallets_2022-03-17"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-06T23:20:24.999585"}}
+/type/edition /books/OL10761305M 4 2022-12-09T15:09:04.011247 {"publishers": ["Nelson Thornes Ltd"], "title": "Key Geography", "number_of_pages": 96, "isbn_13": ["9780748711048"], "physical_format": "Paperback", "isbn_10": ["074871104X"], "publish_date": "February 1993", "key": "/books/OL10761305M", "authors": [{"key": "/authors/OL2661863A"}, {"key": "/authors/OL2823878A"}], "oclc_numbers": ["30813619"], "type": {"key": "/type/edition"}, "subjects": ["For National Curriculum Key Stage 3", "Geographical information systems (GIS) & remote sensing"], "works": [{"key": "/works/OL24196443W"}], "covers": [10630772], "ocaid": "keygeographyinte0000waug", "source_records": ["ia:keygeographyinte0000waug", "promise:bwb_daily_pallets_2020-11-19"], "local_id": ["urn:bwbsku:KO-465-665"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T15:09:04.011247"}}
+/type/edition /books/OL10761386M 3 2010-04-24T18:09:04.694023 {"publishers": ["Nelson Thornes Ltd"], "physical_format": "Audio Cassette", "key": "/books/OL10761386M", "title": "Working with German (Working with S.)", "identifiers": {"goodreads": ["4230453"]}, "isbn_13": ["9780748712007"], "isbn_10": ["0748712003"], "publish_date": "November 22, 1991", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:09:04.694023"}, "authors": [{"key": "/authors/OL2823588A"}, {"key": "/authors/OL2823589A"}, {"key": "/authors/OL2823590A"}], "latest_revision": 3, "type": {"key": "/type/edition"}, "subjects": ["German", "International business", "Language for specific purposes"], "revision": 3}
+/type/edition /books/OL10761498M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Nelson Thornes Ltd"], "number_of_pages": 48, "isbn_13": ["9780748713370"], "isbn_10": ["0748713379"], "publish_date": "May 1992", "key": "/books/OL10761498M", "authors": [{"key": "/authors/OL1375774A"}, {"key": "/authors/OL3499563A"}], "title": "Century Maths. (Century Maths)", "type": {"key": "/type/edition"}, "subjects": ["Mathematics", "For National Curriculum Key Stage 3", "For National Curriculum Key Stage 4 & GCSE"], "revision": 1}
+/type/edition /books/OL10761764M 4 2022-12-07T11:48:51.593875 {"publishers": ["Nelson Thornes Ltd"], "identifiers": {"goodreads": ["4787096"]}, "key": "/books/OL10761764M", "title": "Junior Teacher's Resource Bank (Blueprints Resource Banks S.)", "number_of_pages": 160, "isbn_13": ["9780748717477"], "physical_format": "Spiral-bound", "isbn_10": ["0748717471"], "publish_date": "November 14, 1994", "authors": [{"key": "/authors/OL2985108A"}, {"key": "/authors/OL2985107A"}], "type": {"key": "/type/edition"}, "subjects": ["For National Curriculum Key Stage 2", "Life Skills & Personal Awareness, General Studies", "Schools & education centres"], "works": [{"key": "/works/OL31460476W"}], "local_id": ["urn:bwbsku:KQ-306-142"], "source_records": ["promise:bwb_daily_pallets_2022-03-17"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-07T11:48:51.593875"}}
+/type/edition /books/OL10762168M 4 2010-04-24T18:09:04.694023 {"publishers": ["Nelson Thornes Ltd"], "languages": [{"key": "/languages/eng"}], "key": "/books/OL10762168M", "title": "Sounds of Music", "identifiers": {"goodreads": ["2926151"]}, "isbn_13": ["9780748723034"], "physical_format": "Audio CD", "isbn_10": ["074872303X"], "publish_date": "June 26, 1996", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:09:04.694023"}, "authors": [{"key": "/authors/OL2823583A"}, {"key": "/authors/OL1219804A"}, {"key": "/authors/OL2823582A"}, {"key": "/authors/OL3258587A"}], "latest_revision": 4, "type": {"key": "/type/edition"}, "subjects": ["Musical scores, lyrics & songbooks", "For National Curriculum Key Stage 2"], "revision": 4}
+/type/edition /books/OL10762288M 3 2011-04-29T10:29:35.026657 {"publishers": ["Nelson Thornes Ltd"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2011-04-29T10:29:35.026657"}, "title": "Spotlight Science", "number_of_pages": 130, "isbn_13": ["9780748724673"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Ring-bound", "isbn_10": ["0748724672"], "publish_date": "August 12, 1997", "key": "/books/OL10762288M", "authors": [{"key": "/authors/OL458791A"}, {"key": "/authors/OL2622105A"}, {"key": "/authors/OL3265035A"}], "latest_revision": 3, "oclc_numbers": ["314844637"], "type": {"key": "/type/edition"}, "subjects": ["General science", "Special needs & learning difficulties", "For National Curriculum Key Stage 3"], "revision": 3}
+/type/edition /books/OL10762412M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780748726363"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Nelson Thornes Ltd"], "title": "Science (Blueprints)", "edition_name": "3Rev Ed edition", "isbn_10": ["0748726365"], "publish_date": "January 1996", "key": "/books/OL10762412M", "authors": [{"key": "/authors/OL454426A"}, {"key": "/authors/OL716610A"}], "type": {"key": "/type/edition"}, "subjects": ["General science", "For National Curriculum Key Stage 2"], "revision": 1}
+/type/edition /books/OL10762847M 1 2008-04-30T09:38:13.731961 {"physical_format": "Unknown Binding", "weight": "1.9 ounces", "publishers": ["Nelson Thornes (Publishers) Ltd"], "title": "Read on Plus - Level 6 Dave's Alien", "isbn_13": ["9780748732364"], "isbn_10": ["0748732365"], "publish_date": "September 26, 1997", "key": "/books/OL10762847M", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "type": {"key": "/type/edition"}, "physical_dimensions": "5.8 x 5.8 x 8 inches", "revision": 1}
+/type/edition /books/OL10762979M 2 2010-04-13T06:16:24.577582 {"physical_format": "Spiral-bound", "title": "Writing (Blueprints)", "isbn_10": ["0748734678"], "publishers": ["Nelson Thornes Ltd"], "covers": [2584977], "edition_name": "New Ed edition", "isbn_13": ["9780748734672"], "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:16:24.577582"}, "publish_date": "March 12, 1998", "key": "/books/OL10762979M", "authors": [{"key": "/authors/OL2985108A"}, {"key": "/authors/OL2985107A"}], "latest_revision": 2, "subjects": ["English language: specific skills", "For National Curriculum Key Stage 1", "For National Curriculum Key Stage 2", "Schools & education centres"], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10763221M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Pamphlet", "weight": "11.4 ounces", "publishers": ["Nelson Thornes Ltd"], "type": {"key": "/type/edition"}, "number_of_pages": 24, "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780748738359"], "isbn_10": ["0748738355"], "publish_date": "September 10, 1998", "key": "/books/OL10763221M", "authors": [{"key": "/authors/OL3480981A"}, {"key": "/authors/OL1422258A"}], "title": "Sound Start", "contributions": ["Christopher Masters (Illustrator)"], "subjects": ["English language readers", "For National Curriculum Key Stage 1"], "physical_dimensions": "8 x 5.8 x 0.5 inches", "revision": 1}
+/type/edition /books/OL10763323M 4 2011-04-30T07:30:04.469284 {"publishers": ["Nelson Thornes"], "subtitle": "Teacher's Support Pack 2 (New Steps in Religious Education)", "weight": "14.1 ounces", "covers": [2585066], "edition_name": "Ill edition", "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-30T07:30:04.469284"}, "latest_revision": 4, "key": "/books/OL10763323M", "authors": [{"key": "/authors/OL220221A"}], "subjects": ["Religious education / world faiths", "For National Curriculum Key Stage 3", "Curricula", "Special Education - General", "Education"], "isbn_13": ["9780748740222"], "title": "New Steps in Religious Education", "number_of_pages": 128, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0748740228"], "publish_date": "June 2002", "oclc_numbers": ["41312130"], "works": [{"key": "/works/OL1838628W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "11.6 x 8.3 x 0.5 inches", "revision": 4}
+/type/edition /books/OL10763360M 2 2009-12-15T00:53:46.663588 {"publishers": ["Nelson Thornes (Publishers) Ltd"], "key": "/books/OL10763360M", "title": "Stanley Thornes Primary Literacy - Year 6 Anthology (X16) (Stanley Thornes Primary Literacy)", "number_of_pages": 72, "isbn_13": ["9780748741120"], "physical_format": "Paperback", "isbn_10": ["0748741127"], "publish_date": "December 17, 1999", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:53:46.663588"}, "authors": [{"key": "/authors/OL3449510A"}], "latest_revision": 2, "works": [{"key": "/works/OL9414859W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL1076368M 2 2020-11-18T06:32:59.172425 {"other_titles": ["Alcoolisation et suralcoolisation a\u0300 la Re\u0301union."], "publishers": ["La Comite\u0301"], "subject_place": ["Re\u0301union"], "lc_classifications": ["HV5670.6 .A17 1988"], "latest_revision": 2, "key": "/books/OL1076368M", "publish_places": ["Saint-Denis"], "contributions": ["Re\u0301union (Re\u0301gion). Conseil re\u0301gional. Comite\u0301 de la culture, de l'e\u0301ducation et de l'environnement.", "Haut Comite\u0301 d'e\u0301tudes et d'information sur l'alcoolisme (Re\u0301union)"], "pagination": "131 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:114004329:1234"], "title": "Colloque international des 10 et 11 juillet 1987 sur l'alcoolisation et la suralcoolisation a\u0300 la Re\u0301union", "lccn": ["93983078"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 124-129).\nCover title: Alcoolisation et suralcoolisation a\u0300 la Re\u0301union.\n\"Sous le haut patronage du Haut Comite\u0301 d'e\u0301tudes et d'information sur l'alcoolisme.\"\nCompanion to: Alcoolisation et suralcoolisation a\u0300 la Re\u0301union."}, "number_of_pages": 131, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/fre"}], "subjects": ["Alcoholism -- Re\u0301union -- Congresses."], "publish_date": "1988", "publish_country": "re ", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T06:32:59.172425"}, "by_statement": "Re\u0301gion-Re\u0301union, Comite\u0301 de la culture, et de l'e\u0301ducation et de l'environnement.", "works": [{"key": "/works/OL23534544W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10763882M 3 2011-04-26T10:42:35.707531 {"publishers": ["Nelson Thornes Ltd"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-26T10:42:35.707531"}, "title": "Stanley Thornes Primary Literacy", "number_of_pages": 256, "isbn_13": ["9780748748440"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["074874844X"], "publish_date": "March 23, 1999", "key": "/books/OL10763882M", "authors": [{"key": "/authors/OL3449510A"}], "latest_revision": 3, "oclc_numbers": ["316347350"], "works": [{"key": "/works/OL9414860W"}], "type": {"key": "/type/edition"}, "subjects": ["English language", "English literature: poetry texts & anthologies", "Fiction anthologies & collections", "For National Curriculum Key Stage 2"], "revision": 3}
+/type/edition /books/OL10764149M 6 2022-03-30T13:17:09.372174 {"publishers": ["WHS Exclusive titles"], "number_of_pages": 32, "title": "Spelling (WHS Primary Skills S.)", "type": {"key": "/type/edition"}, "identifiers": {"goodreads": ["5963071"]}, "isbn_13": ["9780748752690"], "isbn_10": ["0748752692"], "publish_date": "February 17, 2000", "key": "/books/OL10764149M", "authors": [{"key": "/authors/OL3499584A"}], "oclc_numbers": ["44824018"], "works": [{"key": "/works/OL9484392W"}], "physical_format": "Paperback", "subjects": ["English language: spelling"], "covers": [12697124], "ocaid": "practisespelling0000hadl", "source_records": ["ia:practisespelling0000hadl"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-30T13:17:09.372174"}}
+/type/edition /books/OL10764150M 6 2022-12-07T13:26:27.384419 {"publishers": ["Nelson Thornes (Publishers) Ltd"], "number_of_pages": 32, "title": "WHSmith Practise - Spelling 10-11 Years Key Stage 2 English", "identifiers": {"goodreads": ["5963066"]}, "isbn_13": ["9780748752706"], "physical_format": "Paperback", "isbn_10": ["0748752706"], "publish_date": "February 17, 2000", "key": "/books/OL10764150M", "authors": [{"key": "/authors/OL3499876A"}], "oclc_numbers": ["44824018"], "works": [{"key": "/works/OL9484701W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:KQ-325-591"], "source_records": ["promise:bwb_daily_pallets_2022-03-17"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-07T13:26:27.384419"}}
+/type/edition /books/OL10764761M 4 2021-07-24T05:25:06.109899 {"publishers": ["Nelson Thornes Ltd"], "weight": "3.5 pounds", "edition_name": "New Ed edition", "physical_format": "Paperback", "key": "/books/OL10764761M", "authors": [{"key": "/authors/OL1422258A"}], "subjects": ["English language: spelling", "For National Curriculum Key Stage 2"], "isbn_13": ["9780748766635"], "title": "Nelson Spelling", "number_of_pages": 52, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0748766634"], "publish_date": "July 26, 2002", "oclc_numbers": ["49550368"], "works": [{"key": "/works/OL5802319W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.8 x 8.7 x 1.2 inches", "covers": [11491845], "ocaid": "nelsonspellingse0000jack", "source_records": ["ia:nelsonspellingse0000jack"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-07-24T05:25:06.109899"}}
+/type/edition /books/OL10765124M 2 2008-08-22T14:35:20.386687 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-08-22T14:35:20.386687"}, "publishers": ["Nelson Thornes"], "title": "Voyage 4 (Voyage)", "isbn_13": ["9780748771769"], "isbn_10": ["074877176X"], "publish_date": "August 30, 2002", "key": "/books/OL10765124M", "authors": [{"key": "/authors/OL2661892A"}, {"key": "/authors/OL830370A"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10765167M 5 2022-02-02T15:04:40.063854 {"publishers": ["Nelson Thornes"], "title": "Spotty Zebra", "isbn_13": ["9780748772421"], "covers": [5076125], "physical_format": "Paperback", "isbn_10": ["0748772421"], "publish_date": "March 30, 2003", "key": "/books/OL10765167M", "authors": [{"key": "/authors/OL2702448A"}], "works": [{"key": "/works/OL574812W"}], "type": {"key": "/type/edition"}, "subjects": ["English language readers", "For National Curriculum Early Years"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-02T15:04:40.063854"}}
+/type/edition /books/OL1076567M 3 2020-11-18T06:35:23.745457 {"publishers": ["Re\u0301publique rwandaise, Ministe\u0300re de l'agriculture, de l'e\u0301levage et des fore\u0302ts, Service des enque\u0302tes et des statistiques agricoles"], "subject_place": ["Rwanda."], "lc_classifications": ["HD9018.R95 L68 1987"], "latest_revision": 3, "key": "/books/OL1076567M", "authors": [{"key": "/authors/OL574373A"}], "publish_places": ["[Kigali]"], "contributions": ["Ngirumwami, J. Le\u0301onard.", "Rwanda. Ministe\u0300re de l'agriculture, de l'e\u0301levage et des fore\u0302ts."], "pagination": "50 leaves ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:114190686:945"], "title": "Caracte\u0301ristiques descriptives des commerc\u0327ants des produits vivriers ope\u0301rant sur des places fixes dans cinq pre\u0301fectures du Rwanda", "lccn": ["93983376"], "notes": {"type": "/type/text", "value": "\"Mai 1987.\""}, "number_of_pages": 50, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/fre"}], "subjects": ["Produce trade -- Rwanda.", "Merchants -- Rwanda."], "publish_date": "1987", "publish_country": "rw ", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T06:35:23.745457"}, "by_statement": "par Loveridge Scott et Ngirumwami J. Le\u0301onard.", "works": [{"key": "/works/OL3450792W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL1076570M 3 2020-11-18T06:35:25.743180 {"publishers": ["Bibliothe\u0300que du scribe"], "subtitle": "perestroika, de\u0301mocrature, ou catastroika?", "subject_place": ["Congo (Democratic Republic)"], "lc_classifications": ["DT658.25 .L63 1991"], "latest_revision": 3, "key": "/books/OL1076570M", "authors": [{"key": "/authors/OL574680A"}], "publish_places": ["Kinshasa"], "subject_time": ["1960-1997."], "pagination": "219 p. ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:114193244:703"], "title": "Troisie\u0300me Re\u0301publique au Zaire", "dewey_decimal_class": ["967.5103"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 211-213)."}, "number_of_pages": 219, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/fre"}], "lccn": ["93983382"], "subjects": ["Congo (Democratic Republic) -- Politics and government -- 1960-1997."], "publish_date": "1991", "publish_country": "cg ", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T06:35:25.743180"}, "by_statement": "Lobho-Lwa-Djugudjugu.", "works": [{"key": "/works/OL3451418W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10765771M 2 2011-04-30T01:10:47.077272 {"publishers": ["Open University Worldwide"], "last_modified": {"type": "/type/datetime", "value": "2011-04-30T01:10:47.077272"}, "title": "Broadcast Handbook (A205) (Culture and Belief in Europe 1450-1600)", "number_of_pages": 108, "isbn_13": ["9780749210663"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0749210664"], "publish_date": "1992", "key": "/books/OL10765771M", "latest_revision": 2, "oclc_numbers": ["221453499"], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10766160M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "subtitle": "Making Decisions (B654 The Effective Manager)", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Open University Worldwide"], "number_of_pages": 114, "isbn_13": ["9780749276713"], "isbn_10": ["0749276711"], "publish_date": "November 1, 2001", "key": "/books/OL10766160M", "authors": [{"key": "/authors/OL3500137A"}, {"key": "/authors/OL2742514A"}], "title": "The Effective Manager: Book Three", "type": {"key": "/type/edition"}, "subjects": ["Business & Management"], "revision": 1}
+/type/edition /books/OL10766306M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "subtitle": "Block 2 Document Book", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Open University Worldwide"], "number_of_pages": 42, "isbn_13": ["9780749290320"], "isbn_10": ["0749290323"], "publish_date": "1998", "key": "/books/OL10766306M", "title": "Communicating Technology", "type": {"key": "/type/edition"}, "subjects": ["Electronics & Communications Engineering", "Technology: General Issues"], "revision": 1}
+/type/edition /books/OL10766394M 3 2011-04-28T15:47:40.783794 {"publishers": ["Open University Worldwide"], "subtitle": "Brands as an Application of Knowledge Management (B823 Managing Knowledge)", "last_modified": {"type": "/type/datetime", "value": "2011-04-28T15:47:40.783794"}, "title": "Managing Knowledge: Unit Eight", "number_of_pages": 65, "isbn_13": ["9780749295820"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0749295821"], "publish_date": "November 1, 2001", "key": "/books/OL10766394M", "authors": [{"key": "/authors/OL291321A"}, {"key": "/authors/OL2621744A"}], "latest_revision": 3, "oclc_numbers": ["313929626"], "works": [{"key": "/works/OL14946505W"}], "type": {"key": "/type/edition"}, "subjects": ["Business & Management"], "revision": 3}
+/type/edition /books/OL10766903M 2 2022-11-18T01:09:59.071482 {"physical_format": "Unknown Binding", "subtitle": "the Novel Header", "publishers": ["Arrow Children's Dump List"], "title": "Cannes ", "isbn_13": ["9780749344177"], "isbn_10": ["0749344172"], "key": "/books/OL10766903M", "type": {"key": "/type/edition"}, "works": [{"key": "/works/OL29354804W"}], "source_records": ["bwb:9780749344177"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-18T01:09:59.071482"}}
+/type/edition /books/OL10767025M 2 2010-04-19T22:12:01.892196 {"publishers": ["Arrow Books Ltd"], "title": "Compact Books Spinner Empty", "isbn_10": ["0749350261"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780749350260"], "physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2010-04-19T22:12:01.892196"}, "latest_revision": 2, "key": "/books/OL10767025M", "authors": [{"key": "/authors/OL2623771A"}], "works": [{"key": "/works/OL15062327W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10767148M 1 2008-04-30T09:38:13.731961 {"physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Arrow Books Ltd"], "title": "Lucy Sullivan Window Display", "isbn_13": ["9780749356286"], "isbn_10": ["0749356286"], "publish_date": "February 3, 1997", "key": "/books/OL10767148M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10767296M 2 2022-11-18T00:25:40.162987 {"physical_format": "Paperback", "publishers": ["Vintage"], "title": "State of the Nation", "isbn_13": ["9780749399641"], "isbn_10": ["0749399643"], "key": "/books/OL10767296M", "authors": [{"key": "/authors/OL2598335A"}], "type": {"key": "/type/edition"}, "works": [{"key": "/works/OL29353756W"}], "source_records": ["bwb:9780749399641"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-18T00:25:40.162987"}}
+/type/edition /books/OL10767383M 3 2011-04-26T13:41:21.654748 {"publishers": ["Kogan Page"], "last_modified": {"type": "/type/datetime", "value": "2011-04-26T13:41:21.654748"}, "title": "How to Increase Sales Without Leaving Your Desk", "number_of_pages": 160, "isbn_13": ["9780749401849"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0749401842"], "publish_date": "January 30, 1991", "key": "/books/OL10767383M", "authors": [{"key": "/authors/OL3500302A"}], "latest_revision": 3, "oclc_numbers": ["22662199"], "works": [{"key": "/works/OL9485137W"}], "type": {"key": "/type/edition"}, "subjects": ["Small businesses & self-employed", "Sales & marketing"], "revision": 3}
+/type/edition /books/OL10767708M 8 2022-12-07T11:26:11.313691 {"publishers": ["Kogan Page"], "identifiers": {"goodreads": ["4355986"], "librarything": ["3590268"]}, "subtitle": "A Career and Life Management Strategy", "title": "Putting Redundancy Behind You", "number_of_pages": 176, "isbn_13": ["9780749409920"], "physical_format": "Paperback", "isbn_10": ["0749409924"], "publish_date": "May 30, 1993", "key": "/books/OL10767708M", "authors": [{"key": "/authors/OL3500401A"}, {"key": "/authors/OL3139216A"}], "oclc_numbers": ["30035180"], "works": [{"key": "/works/OL2424714W"}], "type": {"key": "/type/edition"}, "covers": [12697287], "ocaid": "puttingredundanc0000cane", "lc_classifications": ["BF637 S4 C221"], "source_records": ["ia:puttingredundanc0000cane", "promise:bwb_daily_pallets_2022-03-17"], "local_id": ["urn:bwbsku:KQ-308-979"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-07T11:26:11.313691"}}
+/type/edition /books/OL10767988M 3 2011-04-28T03:47:12.497537 {"publishers": ["Kogan Page"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-28T03:47:12.497537"}, "title": "Your Money (\"Daily Express\" Guides)", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 192, "isbn_13": ["9780749416416"], "edition_name": "2Rev Ed edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0749416416"], "publish_date": "December 1995", "key": "/books/OL10767988M", "authors": [{"key": "/authors/OL2824315A"}], "latest_revision": 3, "oclc_numbers": ["35018008"], "works": [{"key": "/works/OL8463301W"}], "type": {"key": "/type/edition"}, "subjects": ["Personal finance", "Personal Finance - General", "Consumer Finance"], "revision": 3}
+/type/edition /books/OL10768040M 6 2011-04-28T09:36:25.507283 {"publishers": ["Kogan Page"], "identifiers": {"librarything": ["3858089"], "goodreads": ["6634780"]}, "last_modified": {"type": "/type/datetime", "value": "2011-04-28T09:36:25.507283"}, "languages": [{"key": "/languages/eng"}], "number_of_pages": 128, "isbn_13": ["9780749418243"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0749418249"], "publish_date": "July 1996", "latest_revision": 6, "key": "/books/OL10768040M", "authors": [{"key": "/authors/OL2824354A"}], "title": "101 Ways to Make a Professional Impact (101 Ways Series)", "oclc_numbers": ["36084508"], "works": [{"key": "/works/OL8463475W"}], "type": {"key": "/type/edition"}, "subjects": ["Business communication & presentation", "Management & management techniques", "Business Life - General", "Business / Economics / Finance", "Business/Economics"], "revision": 6}
+/type/edition /books/OL10768256M 3 2021-10-05T09:11:45.326349 {"publishers": ["Kogan Page"], "weight": "14.4 ounces", "physical_format": "Hardcover", "key": "/books/OL10768256M", "authors": [{"key": "/authors/OL855418A"}], "subjects": ["Advertising industry", "EU & European institutions", "International economics", "Service industries", "Europe", "Advertising & Promotion", "Industries - General", "Business / Economics / Finance", "Reference"], "languages": [{"key": "/languages/eng"}], "title": "Advertising (Impact on Services , Vol 2-7)", "number_of_pages": 144, "isbn_13": ["9780749423193"], "isbn_10": ["0749423196"], "publish_date": "May 1998", "works": [{"key": "/works/OL4358386W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "11.7 x 8.3 x 0.4 inches", "source_records": ["bwb:9780749423193"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-10-05T09:11:45.326349"}}
+/type/edition /books/OL10768336M 10 2020-10-08T07:10:12.470452 {"publishers": ["Kogan Page Ltd"], "number_of_pages": 64, "weight": "3.5 ounces", "covers": [2586108], "physical_format": "Paperback", "lc_classifications": [""], "latest_revision": 10, "key": "/books/OL10768336M", "authors": [{"key": "/authors/OL1049231A"}], "subjects": ["Roadcraft, driving & the Highway Code"], "source_records": ["bwb:9780749425210"], "title": "30 Minutes Before Your Driving Test (30 Minutes)", "identifiers": {"librarything": ["8318236"], "goodreads": ["1908614"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780749425210"], "isbn_10": ["0749425210"], "publish_date": "July 30, 1998", "last_modified": {"type": "/type/datetime", "value": "2020-10-08T07:10:12.470452"}, "oclc_numbers": ["45043149"], "works": [{"key": "/works/OL4902225W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "6.7 x 4.4 x 0.3 inches", "revision": 10}
+/type/edition /books/OL10768398M 9 2022-12-10T07:39:41.525450 {"publishers": ["Cima"], "identifiers": {"goodreads": ["4085069"], "amazon": [""]}, "weight": "8.5 ounces", "covers": [2586154], "physical_format": "Paperback", "lc_classifications": ["", "HD2741"], "key": "/books/OL10768398M", "authors": [{"key": "/authors/OL3044267A"}], "subjects": ["Organizational theory & behaviour", "Accounting - Managerial", "Business / Economics / Finance"], "isbn_13": ["9780749426835"], "source_records": ["bwb:9780749426835", "ia:corporategoverna0000unse_t7j5", "promise:bwb_daily_pallets_2020-06-24"], "title": "Corporate Governance and Control (CIMA Business Skills)", "number_of_pages": 98, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0749426837"], "publish_date": "December 1998", "works": [{"key": "/works/OL8863237W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.1 x 6 x 0.2 inches", "ocaid": "corporategoverna0000unse_t7j5", "local_id": ["urn:bwbsku:KN-698-301"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T07:39:41.525450"}}
+/type/edition /books/OL10768511M 9 2022-12-09T15:50:07.558443 {"publishers": ["Kogan Page"], "number_of_pages": 192, "subtitle": "The Power of Using Your Contacts to Advance Your Career", "weight": "9.4 ounces", "covers": [2586241], "physical_format": "Paperback", "key": "/books/OL10768511M", "authors": [{"key": "/authors/OL2824432A"}, {"key": "/authors/OL2824433A"}], "ocaid": "powernetworkingp00catt", "subjects": ["Advice on careers & achieving success", "Business Communication - General", "Business Life - General", "Personal Growth - Success", "Careers - General", "Business & Economics", "Business / Economics / Finance", "Business/Economics"], "isbn_13": ["9780749429751"], "source_records": ["ia:powernetworkingp00catt", "ia:powerofnetworkin0000catt", "bwb:9780749429751", "promise:bwb_daily_pallets_2020-11-19"], "title": "The Power of Networking", "identifiers": {"goodreads": ["3018486"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0749429755"], "publish_date": "September 1999", "works": [{"key": "/works/OL16966675W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.4 x 5.3 x 0.6 inches", "lc_classifications": ["HD69.S8 C38 1999"], "local_id": ["urn:bwbsku:KO-433-241"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T15:50:07.558443"}}
+/type/edition /books/OL10768996M 1 2008-04-30T09:38:13.731961 {"physical_format": "Hardcover", "subtitle": "USA (Tour Guides)", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Automobile Association"], "number_of_pages": 120, "isbn_13": ["9780749502362"], "isbn_10": ["0749502363"], "publish_date": "March 31, 1991", "key": "/books/OL10768996M", "title": "Tour Guide", "type": {"key": "/type/edition"}, "subjects": ["Travel & holiday guides", "USA"], "revision": 1}
+/type/edition /books/OL10769159M 7 2020-05-21T18:37:54.889671 {"publishers": ["Automobile Assn"], "identifiers": {"goodreads": ["1439979"]}, "subtitle": "Britain (AA Essential)", "weight": "1.2 pounds", "covers": [9926606], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2020-05-21T18:37:54.889671"}, "latest_revision": 7, "key": "/books/OL10769159M", "authors": [{"key": "/authors/OL1644978A"}], "ocaid": "britain0000lock", "subjects": ["Travel & holiday guides", "British Isles", "United Kingdom, Great Britain", "Europe - Great Britain - General", "Travel"], "isbn_13": ["9780749507220"], "source_records": ["amazon:0749507225", "ia:britain0000lock"], "title": "Essential Explorer", "number_of_pages": 288, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0749507225"], "publish_date": "January 1994", "works": [{"key": "/works/OL268965W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.8 x 5.2 x 1 inches", "revision": 7}
+/type/edition /books/OL1076952M 6 2020-11-18T06:41:19.084526 {"publishers": ["McFarland"], "number_of_pages": 384, "subtitle": "interviews with 20 genre giants", "isbn_10": ["0786400188"], "covers": [3870748], "lc_classifications": ["PN1995.9.S26 A94 1994"], "latest_revision": 6, "key": "/books/OL1076952M", "authors": [{"key": "/authors/OL21457A"}], "publish_places": ["Jefferson, N.C"], "pagination": "xii, 384 p. :", "source_records": ["marc:marc_records_scriblio_net/part24.dat:39920000:959", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:114497732:959"], "title": "Attack of the monster movie makers", "dewey_decimal_class": ["791.43/615"], "notes": {"type": "/type/text", "value": "Includes filmographies and index."}, "identifiers": {"goodreads": ["905486"], "librarything": ["2763551"]}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["94000124"], "subjects": ["Science fiction films -- History and criticism.", "Horror films -- History and criticism.", "Motion picture actors and actresses -- Interviews.", "Motion picture producers and directors -- Interviews.", "Screenwriters -- Interviews."], "publish_date": "1994", "publish_country": "ncu", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T06:41:19.084526"}, "by_statement": "by Tom Weaver ; research associates, Michael and John Brunas.", "works": [{"key": "/works/OL18998150W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL10770383M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780749542191"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["AA Publishing"], "title": "Easy Read Atlas Britain (Road Atlas)", "edition_name": "Rev Ed edition", "isbn_10": ["0749542195"], "publish_date": "August 1, 2004", "key": "/books/OL10770383M", "type": {"key": "/type/edition"}, "subjects": ["Travel / road maps & atlases", "Travel"], "revision": 1}
+/type/edition /books/OL10770532M 4 2011-04-25T16:20:27.877721 {"publishers": ["Aa Publishing"], "weight": "4.2 ounces", "covers": [2587640], "physical_format": "Spiral-bound", "last_modified": {"type": "/type/datetime", "value": "2011-04-25T16:20:27.877721"}, "latest_revision": 4, "key": "/books/OL10770532M", "authors": [{"key": "/authors/OL2824689A"}], "subjects": ["Travel / road maps & atlases", "Travel", "Travel - Foreign", "United Kingdom, Great Britain", "Atlases - General", "Europe - Great Britain - General", "Travel / Europe / Great Britain"], "edition_name": "Spi edition", "languages": [{"key": "/languages/eng"}], "title": "AA Glovebox Atlas Britain (AA Atlases)", "number_of_pages": 96, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780749554293"], "isbn_10": ["0749554290"], "publish_date": "October 31, 2007", "oclc_numbers": ["500378920"], "works": [{"key": "/works/OL8464379W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.1 x 6.1 x 0.4 inches", "revision": 4}
+/type/edition /books/OL10771663M 4 2011-04-27T15:36:04.154440 {"publishers": ["Franklin Watts Ltd"], "weight": "3.4 ounces", "covers": [2587796], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T15:36:04.154440"}, "latest_revision": 4, "key": "/books/OL10771663M", "authors": [{"key": "/authors/OL2732739A"}], "subjects": ["Biology, Life Sciences", "Handicrafts", "Microscopy"], "isbn_13": ["9780749626464"], "title": "Summer (Get Set, Go!)", "number_of_pages": 24, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "edition_name": "New Ed edition", "isbn_10": ["0749626461"], "publish_date": "January 30, 1997", "oclc_numbers": ["59649502"], "works": [{"key": "/works/OL8210723W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.7 x 7.5 x 0.1 inches", "revision": 4}
+/type/edition /books/OL10772450M 4 2011-04-30T14:17:32.215567 {"publishers": ["Franklin Watts Ltd"], "number_of_pages": 31, "last_modified": {"type": "/type/datetime", "value": "2011-04-30T14:17:32.215567"}, "title": "Blood (Look at Your Body)", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "identifiers": {"librarything": ["6903469"]}, "isbn_13": ["9780749641108"], "covers": [2588206], "edition_name": "New Ed edition", "physical_format": "Paperback", "isbn_10": ["074964110X"], "publish_date": "March 15, 2001", "key": "/books/OL10772450M", "authors": [{"key": "/authors/OL43360A"}], "latest_revision": 4, "oclc_numbers": ["45350531"], "type": {"key": "/type/edition"}, "subjects": ["Human biology", "For National Curriculum Key Stage 2"], "revision": 4}
+/type/edition /books/OL10772506M 5 2022-12-07T11:58:37.408563 {"publishers": ["Franklin Watts Ltd"], "physical_format": "Hardcover", "title": "The Atlas of Space (One Shot)", "number_of_pages": 80, "covers": [2588232], "isbn_13": ["9780749642105"], "isbn_10": ["0749642106"], "publish_date": "June 2001", "key": "/books/OL10772506M", "authors": [{"key": "/authors/OL30219A"}], "oclc_numbers": ["59509712"], "works": [{"key": "/works/OL482759W"}], "type": {"key": "/type/edition"}, "subjects": ["Astronomy", "For National Curriculum Key Stage 2", "For National Curriculum Key Stage 3"], "local_id": ["urn:bwbsku:KQ-535-702"], "source_records": ["promise:bwb_daily_pallets_2022-03-17"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-07T11:58:37.408563"}}
+/type/edition /books/OL10772571M 6 2011-04-29T11:22:35.936097 {"publishers": ["Franklin Watts Ltd"], "identifiers": {"goodreads": ["3006044"]}, "covers": [2588279], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T11:22:35.936097"}, "latest_revision": 6, "key": "/books/OL10772571M", "authors": [{"key": "/authors/OL2790702A"}], "contributions": ["Lynne Willey (Illustrator)"], "subjects": ["Historical figures"], "isbn_13": ["9780749643430"], "title": "George Stephenson (Famous People, Famous Lives)", "number_of_pages": 48, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "edition_name": "New Ed edition", "isbn_10": ["0749643439"], "publish_date": "January 31, 2002", "oclc_numbers": ["48153390"], "works": [{"key": "/works/OL8377607W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL10772920M 5 2020-08-27T04:36:24.070749 {"publishers": ["Franklin Watts Ltd"], "number_of_pages": 24, "covers": [2588523], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2020-08-27T04:36:24.070749"}, "latest_revision": 5, "key": "/books/OL10772920M", "authors": [{"key": "/authors/OL366089A"}], "ocaid": "veryspecialkitte0000wood", "subjects": ["Cats", "For National Curriculum Key Stage 1"], "classifications": {}, "source_records": ["ia:veryspecialkitte0000wood"], "title": "A Very Special Kitten", "notes": {"type": "/type/text", "value": "Me & My World"}, "identifiers": {}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780749650544"], "isbn_10": ["0749650540"], "publish_date": "May 8, 2003", "works": [{"key": "/works/OL2567627W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10773090M 6 2022-12-09T15:30:38.110712 {"publishers": ["Franklin Watts Ltd"], "weight": "14.9 ounces", "title": "Greece (Picturing the Past)", "number_of_pages": 48, "isbn_13": ["9780749654535"], "physical_format": "Hardcover", "isbn_10": ["0749654538"], "publish_date": "June 24, 2004", "key": "/books/OL10773090M", "authors": [{"key": "/authors/OL26765A"}], "oclc_numbers": ["56467536"], "works": [{"key": "/works/OL456884W"}], "type": {"key": "/type/edition"}, "subjects": ["European history: BCE to c 500 CE", "Ancient Greece", "For National Curriculum Key Stage 2", "Children: Grades 3-4"], "physical_dimensions": "10.7 x 8.8 x 0.4 inches", "covers": [10620256], "ocaid": "greece0000mala_p5f6", "lc_classifications": ["DF77 .M285 2004"], "source_records": ["ia:greece0000mala_p5f6", "promise:bwb_daily_pallets_2021-01-08", "promise:bwb_daily_pallets_2020-11-19"], "local_id": ["urn:bwbsku:KP-068-457", "urn:bwbsku:KO-299-559"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T15:30:38.110712"}}
+/type/edition /books/OL10773184M 9 2022-12-09T07:22:37.524476 {"publishers": ["Franklin Watts Ltd"], "identifiers": {"goodreads": ["4374624"]}, "title": "Reading Corner:Jumping Josie", "contributions": ["Sean Julian (Illustrator)"], "number_of_pages": 24, "isbn_13": ["9780749657369"], "physical_format": "Hardcover", "isbn_10": ["0749657367"], "publish_date": "April 22, 2004", "key": "/books/OL10773184M", "authors": [{"key": "/authors/OL1388655A"}], "oclc_numbers": ["55625155"], "works": [{"key": "/works/OL5707852W"}], "type": {"key": "/type/edition"}, "subjects": ["Fiction"], "covers": [11659962], "ocaid": "jumpingjosie0000cass_x8y0", "source_records": ["ia:jumpingjosie0000cass_x8y0", "bwb:9780749657369", "promise:bwb_daily_pallets_2020-12-14"], "local_id": ["urn:bwbsku:ko-625-630"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T07:22:37.524476"}}
+/type/edition /books/OL10773222M 6 2022-12-08T23:03:29.150882 {"publishers": ["Franklin Watts Ltd"], "physical_format": "Hardcover", "weight": "13.4 ounces", "title": "Kurds in Britain (Communities in Britain)", "number_of_pages": 32, "isbn_13": ["9780749658847"], "isbn_10": ["0749658843"], "publish_date": "August 28, 2005", "key": "/books/OL10773222M", "authors": [{"key": "/authors/OL30457A"}], "oclc_numbers": ["60320332"], "works": [{"key": "/works/OL15041178W"}], "type": {"key": "/type/edition"}, "subjects": ["Ethnic groups", "United Kingdom, Great Britain", "For National Curriculum Key Stage 2", "For National Curriculum Key Stage 3"], "physical_dimensions": "10.6 x 8.2 x 0.4 inches", "covers": [11348410], "ocaid": "kurdsinbritain0000senk", "source_records": ["ia:kurdsinbritain0000senk", "promise:bwb_daily_pallets_2021-02-04"], "local_id": ["urn:bwbsku:KO-965-854"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-08T23:03:29.150882"}}
+/type/edition /books/OL10774172M 5 2011-11-01T02:03:38.176378 {"publishers": ["Mammoth"], "last_modified": {"type": "/type/datetime", "value": "2011-11-01T02:03:38.176378"}, "title": "Sbf Scaredy Cat/design Pram 2-in-", "identifiers": {"goodreads": ["1946521"]}, "isbn_13": ["9780749726775"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Hardcover", "isbn_10": ["0749726776"], "publish_date": "August 1, 1995", "key": "/books/OL10774172M", "authors": [{"key": "/authors/OL4426881A"}], "latest_revision": 5, "works": [{"key": "/works/OL14955641W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10774378M 4 2022-11-14T18:03:32.395716 {"publishers": ["Mammoth"], "title": "Action Man", "number_of_pages": 64, "isbn_13": ["9780749731717"], "covers": [2589219], "physical_format": "Paperback", "isbn_10": ["0749731710"], "publish_date": "August 14, 1997", "key": "/books/OL10774378M", "oclc_numbers": ["39045961"], "type": {"key": "/type/edition"}, "subjects": ["Adventure stories"], "works": [{"key": "/works/OL29302486W"}], "local_id": ["urn:bwbsku:KR-658-266"], "source_records": ["promise:bwb_daily_pallets_2022-10-11"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-14T18:03:32.395716"}}
+/type/edition /books/OL10775012M 3 2011-04-29T09:17:59.958903 {"publishers": ["Egmont Childrens Books"], "last_modified": {"type": "/type/datetime", "value": "2011-04-29T09:17:59.958903"}, "title": "Nature Colouring Book (Countryside Colouring)", "number_of_pages": 48, "isbn_13": ["9780749802875"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0749802871"], "publish_date": "March 1, 1991", "key": "/books/OL10775012M", "authors": [{"key": "/authors/OL3500947A"}], "latest_revision": 3, "oclc_numbers": ["315840749"], "works": [{"key": "/works/OL9485957W"}], "type": {"key": "/type/edition"}, "subjects": ["Natural history & pets", "Colouring & painting"], "revision": 3}
+/type/edition /books/OL10775312M 3 2011-04-28T20:24:17.387702 {"publishers": ["Egmont Childrens Books"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-28T20:24:17.387702"}, "title": "Sticker Book 01 (Biker Mice from Mars Series) (Activity Books)", "number_of_pages": 16, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780749818128"], "isbn_10": ["0749818123"], "publish_date": "1994", "key": "/books/OL10775312M", "authors": [{"key": "/authors/OL3500973A"}], "latest_revision": 3, "oclc_numbers": ["316157255"], "works": [{"key": "/works/OL9485983W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10775755M 1 2008-04-30T09:38:13.731961 {"physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Egmont Childrens Books"], "title": "Make It Move Hemma Spanish Co-Ed", "isbn_13": ["9780749834463"], "isbn_10": ["0749834463"], "publish_date": "April 16, 1997", "key": "/books/OL10775755M", "type": {"key": "/type/edition"}, "subjects": ["Children's and Educational"], "revision": 1}
+/type/edition /books/OL10775787M 1 2008-04-30T09:38:13.731961 {"physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Egmont Books Ltd"], "title": "Flag Sticker Atlas Oy Kirjal Coed", "isbn_13": ["9780749835385"], "isbn_10": ["0749835389"], "publish_date": "July 9, 1997", "key": "/books/OL10775787M", "type": {"key": "/type/edition"}, "subjects": ["Children's and Educational"], "revision": 1}
+/type/edition /books/OL10776216M 2 2011-04-27T16:10:59.726296 {"publishers": ["Egmont Books Ltd"], "last_modified": {"type": "/type/datetime", "value": "2011-04-27T16:10:59.726296"}, "title": "Writing Composition (Focus on)", "number_of_pages": 32, "isbn_13": ["9780749846121"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0749846127"], "publish_date": "March 6, 2000", "key": "/books/OL10776216M", "latest_revision": 2, "oclc_numbers": ["48415889"], "type": {"key": "/type/edition"}, "subjects": ["English language: creative writing", "German"], "revision": 2}
+/type/edition /books/OL10776620M 5 2022-12-10T07:32:47.629686 {"publishers": ["Egmont"], "physical_format": "Paperback", "source_records": ["ia:junglebook0000kipl_v7d7", "promise:bwb_daily_pallets_2020-06-24"], "title": "The Jungle Book", "identifiers": {"librarything": ["9468398"], "amazon": [""]}, "isbn_13": ["9780749854522"], "covers": [10445659], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0749854529"], "publish_date": "2001", "key": "/books/OL10776620M", "ocaid": "junglebook0000kipl_v7d7", "works": [{"key": "/works/OL17646970W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:KN-557-002"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T07:32:47.629686"}}
+/type/edition /books/OL10776746M 3 2021-12-24T21:46:44.613693 {"publishers": ["Egmont Books Ltd"], "isbn_10": ["074985670X"], "number_of_pages": 16, "isbn_13": ["9780749856700"], "covers": [2589889], "physical_format": "Paperback", "publish_date": "September 1, 2002", "key": "/books/OL10776746M", "title": "Mean Machines (Sticker Activity Books)", "subjects": ["Sticker & stamp books"], "type": {"key": "/type/edition"}, "works": [{"key": "/works/OL26457193W"}], "source_records": ["bwb:9780749856700"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-24T21:46:44.613693"}}
+/type/edition /books/OL10777263M 9 2021-09-16T02:14:50.769807 {"publishers": ["Piatkus Books"], "number_of_pages": 192, "subtitle": "Over 150 Quick and Tempting Recipes for the Best Start in Life (Optimum Nutrition Handbook)", "weight": "1.2 pounds", "covers": [2590070], "physical_format": "Hardcover", "key": "/books/OL10777263M", "authors": [{"key": "/authors/OL2624327A"}], "ocaid": "isbn_9780749920289", "subjects": ["Child care & upbringing", "Diets & dieting", "Health & wholefood cookery", "Health & Fitness", "Diet / Health / Fitness", "Health/Fitness", "Health - Nutrition", "Infants & Toddlers - General", "Life Stages - Infants & Toddlers/General", "Nutrition", "Cookery (Baby foods)", "Infants", "Toddlers"], "isbn_13": ["9780749920289"], "source_records": ["ia:isbn_9780749920289", "bwb:9780749920289"], "title": "Optimum Nutrition for Babies and Young Children", "identifiers": {"librarything": ["4730315"], "goodreads": ["636690"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0749920289"], "publish_date": "September 15, 2000", "oclc_numbers": ["41388515"], "works": [{"key": "/works/OL18167328W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.7 x 7.5 x 0.7 inches", "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-09-16T02:14:50.769807"}}
+/type/edition /books/OL10777599M 3 2011-04-30T12:57:12.121289 {"publishers": ["Hodder Wayland"], "last_modified": {"type": "/type/datetime", "value": "2011-04-30T12:57:12.121289"}, "title": "Mountains (Take One)", "number_of_pages": 32, "isbn_13": ["9780750006125"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Hardcover", "isbn_10": ["0750006129"], "publish_date": "August 31, 1992", "key": "/books/OL10777599M", "authors": [{"key": "/authors/OL2669756A"}], "latest_revision": 3, "oclc_numbers": ["22892420"], "works": [{"key": "/works/OL8018791W"}], "type": {"key": "/type/edition"}, "subjects": ["For National Curriculum Key Stage 1", "Geology & Earth sciences", "Physical geography", "Rocks, minerals & fossils"], "revision": 3}
+/type/edition /books/OL10777764M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Hodder Wayland"], "number_of_pages": 816, "isbn_13": ["9780750012249"], "isbn_10": ["0750012242"], "publish_date": "January 31, 1992", "key": "/books/OL10777764M", "title": "Story Book Set", "type": {"key": "/type/edition"}, "subjects": ["Fiction"], "revision": 1}
+/type/edition /books/OL10778029M 2 2009-12-15T00:54:00.072735 {"publishers": ["Hodder Wayland"], "key": "/books/OL10778029M", "title": "Brainbox 16 Copy Refill A", "isbn_13": ["9780750016742"], "physical_format": "Hardcover", "isbn_10": ["0750016744"], "publish_date": "March 8, 1994", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:54:00.072735"}, "authors": [{"key": "/authors/OL3501072A"}], "latest_revision": 2, "works": [{"key": "/works/OL9486111W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL1077803M 9 2022-12-07T23:38:56.879845 {"publishers": ["Chronicle Books"], "description": {"type": "/type/text", "value": "After giving birth in her winter den, Honey Paw, a brown bear, cares for her cub and teaches him to survive in the wild."}, "isbn_10": ["0811805336"], "covers": [599397], "ia_loaded_id": ["honeypawlightfoo00lond"], "lc_classifications": ["PZ10.3.L8534 Ho 1994", "PZ10.3.L8534Ho 1994"], "key": "/books/OL1077803M", "authors": [{"key": "/authors/OL19943A"}], "publish_places": ["San Francisco"], "contributions": ["Van Zyle, Jon, ill."], "ia_box_id": ["IA173401"], "pagination": "1 v. (unpaged) :", "source_records": ["marc:marc_records_scriblio_net/part24.dat:40671400:896", "ia:honeypawlightfoo00lond", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:115239800:896", "bwb:9780811805339", "promise:bwb_daily_pallets_2021-09-14"], "title": "Honey Paw and Lightfoot", "dewey_decimal_class": ["[E]"], "identifiers": {"librarything": ["699753"], "goodreads": ["4385579"]}, "languages": [{"key": "/languages/eng"}], "lccn": ["94001030"], "subjects": ["Brown bear -- Juvenile fiction", "Brown bear -- Fiction", "Bears -- Fiction", "Animals -- Infancy -- Fiction"], "publish_date": "1994", "publish_country": "cau", "by_statement": "by Jonathan London ; illustrated by Jon Van Zyle.", "works": [{"key": "/works/OL81085W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:P7-BVU-507"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-07T23:38:56.879845"}}
+/type/edition /books/OL10778670M 3 2011-04-27T15:02:50.440870 {"publishers": ["Hodder Wayland"], "physical_format": "Hardcover", "source_records": ["amazon:0750025891"], "title": "Enter at Your Peril (Tremors)", "number_of_pages": 46, "last_modified": {"type": "/type/datetime", "value": "2011-04-27T15:02:50.440870"}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780750025898"], "isbn_10": ["0750025891"], "publish_date": "June 30, 1998", "key": "/books/OL10778670M", "authors": [{"key": "/authors/OL2079476A"}], "latest_revision": 3, "oclc_numbers": ["40684396"], "works": [{"key": "/works/OL151302W"}], "type": {"key": "/type/edition"}, "subjects": ["Fiction"], "revision": 3}
+/type/edition /books/OL1077870M 13 2022-10-18T09:59:25.654760 {"publishers": ["Design Books", "Distributed by Lyons & Burford"], "identifiers": {"goodreads": ["3348855"], "librarything": ["8457598"]}, "covers": [1879976], "local_id": ["urn:trent:0116404062501"], "lc_classifications": ["TA174 .W588 1994", "TA174.W588 1994"], "key": "/books/OL1077870M", "authors": [{"key": "/authors/OL529339A"}], "ocaid": "visualdesignonco0000wong", "publish_places": ["New York"], "contributions": ["Wong, Benjamin."], "subjects": ["Computer-aided design"], "pagination": "271 p. :", "source_records": ["marc:marc_records_scriblio_net/part24.dat:40731528:640", "marc:marc_cca/b10621386.out:6116653:650", "marc:OpenLibraries-Trent-MARCs/tier3.mrc:285748:821", "ia:visualdesignonco0000wong", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:115300150:640", "bwb:9781558212985"], "title": "Visual design on the computer", "dewey_decimal_class": ["745.4"], "notes": {"type": "/type/text", "value": "Includes index."}, "number_of_pages": 271, "languages": [{"key": "/languages/eng"}], "lccn": ["94001100"], "isbn_10": ["1558212981"], "publish_date": "1994", "publish_country": "nyu", "by_statement": "Wucius Wong, Benjamin Wong.", "oclc_numbers": ["29754041"], "works": [{"key": "/works/OL3245524W"}], "type": {"key": "/type/edition"}, "latest_revision": 13, "revision": 13, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T09:59:25.654760"}}
+/type/edition /books/OL10778754M 8 2022-12-09T04:57:12.200925 {"publishers": ["Hodder Wayland"], "identifiers": {"librarything": ["2650725"], "goodreads": ["6113078"]}, "type": {"key": "/type/edition"}, "title": "Rainforest (Fast Forward)", "physical_format": "Hardcover", "number_of_pages": 32, "isbn_13": ["9780750027359"], "isbn_10": ["0750027355"], "publish_date": "June 30, 1999", "key": "/books/OL10778754M", "authors": [{"key": "/authors/OL38882A"}], "oclc_numbers": ["41212397"], "works": [{"key": "/works/OL546388W"}], "contributions": ["Carolyn Scrace (Illustrator)"], "subjects": ["Forests & rainforests", "Natural history & pets"], "local_id": ["urn:bwbsku:KP-084-925"], "source_records": ["promise:bwb_daily_pallets_2020-12-31"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T04:57:12.200925"}}
+/type/edition /books/OL10778767M 9 2020-07-30T06:04:12.257969 {"publishers": ["Hodder Children's Books"], "covers": [10319252], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2020-07-30T06:04:12.257969"}, "latest_revision": 9, "key": "/books/OL10778767M", "ocaid": "mulberryaloneats0000grin", "contributions": ["T.H-. Newton (Illustrator)", "Tania Hurt-Newton (Illustrator)"], "subjects": ["Fiction"], "source_records": ["ia:mulberryaloneats0000grin"], "title": "Mulberry Alone at the Seaside (Bright Stars)", "number_of_pages": 30, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780750027540"], "isbn_10": ["0750027541"], "publish_date": "July 31, 1999", "oclc_numbers": ["49395932"], "works": [{"key": "/works/OL15213718W"}], "type": {"key": "/type/edition"}, "revision": 9}
+/type/edition /books/OL10779052M 1 2008-04-30T09:38:13.731961 {"physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Hodder & Stoughton Childrens Division"], "title": "Science Fact Files Communications Sv Co Edition", "isbn_13": ["9780750031172"], "isbn_10": ["0750031174"], "publish_date": "April 25, 2000", "key": "/books/OL10779052M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10779212M 2 2009-12-15T00:54:01.472904 {"publishers": ["Hodder & Stoughton Childrens Division"], "key": "/books/OL10779212M", "title": "Cool Kid Pb - Letterbox Libr", "isbn_13": ["9780750085816"], "physical_format": "Paperback", "isbn_10": ["0750085819"], "publish_date": "March 1, 1992", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:54:01.472904"}, "authors": [{"key": "/authors/OL2824974A"}], "latest_revision": 2, "works": [{"key": "/works/OL8465492W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10779505M 1 2008-04-30T09:38:13.731961 {"physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Hodder Wayland"], "title": "= Inside Roman Fort Red House", "isbn_13": ["9780750089142"], "isbn_10": ["0750089148"], "key": "/books/OL10779505M", "authors": [{"key": "/authors/OL2824974A"}, {"key": "/authors/OL3501119A"}], "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10779632M 4 2010-04-24T18:09:34.009122 {"publishers": ["Hodder & Stoughton Childrens Division"], "title": "What Do Know Amaz Indi Sbf", "isbn_10": ["0750090510"], "identifiers": {"goodreads": ["2885211"]}, "isbn_13": ["9780750090513"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:09:34.009122"}, "publish_date": "August 1, 1993", "key": "/books/OL10779632M", "authors": [{"key": "/authors/OL2824974A"}], "latest_revision": 4, "works": [{"key": "/works/OL8465891W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10779664M 2 2009-12-15T00:54:01.472904 {"publishers": ["Hodder Children's Books"], "key": "/books/OL10779664M", "title": "Wheel (Facts on File)", "isbn_13": ["9780750090896"], "physical_format": "Hardcover", "isbn_10": ["0750090898"], "publish_date": "December 31, 1994", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:54:01.472904"}, "authors": [{"key": "/authors/OL3368674A"}], "latest_revision": 2, "works": [{"key": "/works/OL9320618W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10779694M 2 2009-12-15T00:54:01.472904 {"publishers": ["Hodder & Stoughton Childrens Division"], "key": "/books/OL10779694M", "title": "Be Your Own Map Expert Sbf", "isbn_13": ["9780750091237"], "physical_format": "Hardcover", "isbn_10": ["0750091231"], "publish_date": "December 1, 1993", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:54:01.472904"}, "authors": [{"key": "/authors/OL2824974A"}], "latest_revision": 2, "works": [{"key": "/works/OL8465460W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10779710M 4 2010-04-24T18:09:34.009122 {"publishers": ["Hodder Children's Books"], "title": "Gulliver (Gift Books)", "isbn_10": ["0750091436"], "identifiers": {"goodreads": ["3094697"]}, "isbn_13": ["9780750091435"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:09:34.009122"}, "publish_date": "January 1, 1994", "key": "/books/OL10779710M", "authors": [{"key": "/authors/OL2660572A"}], "latest_revision": 4, "works": [{"key": "/works/OL7990934W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10780035M 4 2010-04-24T18:09:34.009122 {"publishers": ["Nelson Thornes Ltd"], "identifiers": {"goodreads": ["1951813"]}, "key": "/books/OL10780035M", "title": "Simon and Schuster Technology", "number_of_pages": 96, "isbn_13": ["9780750102285"], "physical_format": "Paperback", "isbn_10": ["0750102284"], "publish_date": "May 1992", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:09:34.009122"}, "authors": [{"key": "/authors/OL715657A"}, {"key": "/authors/OL1410993A"}, {"key": "/authors/OL3501148A"}], "latest_revision": 4, "type": {"key": "/type/edition"}, "subjects": ["Designed / suitable for National Curriculum", "Technology & Applied Sciences"], "revision": 4}
+/type/edition /books/OL10780276M 3 2016-02-10T06:58:33.209137 {"publishers": ["Nelson Thornes"], "physical_format": "Paperback", "classifications": {}, "last_modified": {"type": "/type/datetime", "value": "2016-02-10T06:58:33.209137"}, "title": "Advanced Language Principles", "identifiers": {}, "isbn_13": ["9780750106832"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0750106832"], "latest_revision": 3, "key": "/books/OL10780276M", "authors": [{"key": "/authors/OL2656607A"}], "works": [{"key": "/works/OL7963409W"}], "type": {"key": "/type/edition"}, "subjects": ["Language & Linguistics"], "revision": 3}
+/type/edition /books/OL10780510M 3 2010-04-13T06:17:12.731922 {"publishers": ["iUniverse, Inc."], "number_of_pages": 322, "weight": "1.4 pounds", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0595712363"], "title": "The Adopted Son", "isbn_13": ["9780595712366"], "covers": [2535512], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:17:12.731922"}, "latest_revision": 3, "key": "/books/OL10780510M", "authors": [{"key": "/authors/OL3494278A"}], "publish_date": "November 9, 2007", "works": [{"key": "/works/OL9476416W"}], "type": {"key": "/type/edition"}, "subjects": ["Crime & mystery", "General & Literary Fiction", "Mystery & Detective - General", "Suspense", "Fiction / Suspense", "Fiction : Mystery & Detective - General", "Fiction - Espionage / Thriller"], "physical_dimensions": "9 x 6 x 0.9 inches", "revision": 3}
+/type/edition /books/OL10780525M 2 2009-12-15T00:54:05.782596 {"publishers": ["Iuniverse Inc"], "subtitle": "Advanced Administration", "weight": "1.8 pounds", "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:54:05.782596"}, "latest_revision": 2, "key": "/books/OL10780525M", "authors": [{"key": "/authors/OL2653809A"}], "subjects": ["Networking - General", "Networking - Network Protocols", "Operating Systems - UNIX", "Computers", "Computer Books: Operating Systems"], "languages": [{"key": "/languages/eng"}], "title": "System Administration Guide", "number_of_pages": 460, "isbn_13": ["9780595730926"], "isbn_10": ["0595730922"], "publish_date": "May 2002", "works": [{"key": "/works/OL7953346W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.8 x 7.5 x 1.1 inches", "revision": 2}
+/type/edition /books/OL10780742M 5 2021-10-04T06:49:31.723676 {"publishers": ["iUniverse"], "weight": "1.8 pounds", "covers": [2535981], "physical_format": "Hardcover", "key": "/books/OL10780742M", "authors": [{"key": "/authors/OL3490793A"}], "subjects": ["General & Literary Fiction", "General", "Fiction", "Fiction - General"], "languages": [{"key": "/languages/eng"}], "title": "Unknown Man", "number_of_pages": 412, "isbn_13": ["9780595755653"], "isbn_10": ["0595755658"], "publish_date": "December 31, 2003", "oclc_numbers": ["57752646"], "works": [{"key": "/works/OL9472652W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.5 x 6.4 x 1.2 inches", "source_records": ["bwb:9780595755653"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-10-04T06:49:31.723676"}}
+/type/edition /books/OL10780786M 6 2020-08-19T23:31:09.162698 {"publishers": ["iUniverse, Inc."], "identifiers": {"goodreads": ["1731859"]}, "weight": "1 pounds", "covers": [2536180], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2020-08-19T23:31:09.162698"}, "latest_revision": 6, "key": "/books/OL10780786M", "authors": [{"key": "/authors/OL3491366A"}], "subjects": ["Crime & mystery", "General & Literary Fiction", "Fiction", "Fiction - Espionage / Thriller", "Mystery/Suspense", "Mystery & Detective - Police Procedural", "Suspense", "Thrillers", "Fiction / Suspense"], "isbn_13": ["9780595797882"], "source_records": ["bwb:9780595797882"], "title": "Losing Hope", "number_of_pages": 212, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0595797881"], "publish_date": "March 6, 2005", "works": [{"key": "/works/OL9473296W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.6 inches", "revision": 6}
+/type/edition /books/OL10781418M 3 2011-05-14T06:27:04.702249 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T06:27:04.702249"}, "title": "AK STEEL HOLDING CORP.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 24, "isbn_13": ["9780597003417"], "edition_name": "October 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597003416"], "publish_date": "October 31, 2000", "key": "/books/OL10781418M", "authors": [{"key": "/authors/OL2727133A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14974390W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10781579M 3 2011-11-10T05:47:26.890832 {"publishers": ["Icon Group International, Inc."], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-11-10T05:47:26.890832"}, "title": "ALPS ELECTRIC CO., LTD.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 24, "edition_name": "October 2000 edition", "isbn_13": ["9780597005022"], "isbn_10": ["0597005028"], "publish_date": "October 31, 2000", "key": "/books/OL10781579M", "authors": [{"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL8173713W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL107816M 5 2020-12-02T09:24:28.981730 {"subtitle": "spre o hermeneutica\u0306 a versului i\u0302ntemnit\u0326at s\u0326i exilat", "lc_classifications": ["PC803.7.E9 A53 1995", "PC810 .A53 1995"], "source_records": ["marc:marc_loc_updates/v39.i40.records.utf8:2026425:1309", "marc:marc_loc_2016/BooksAll.2016.part28.utf8:96961300:1309"], "title": "Haos, temnit\u0326a\u0306, exil la Eminescu, Cotrus\u0326, Gyr s\u0326i Stamatu", "languages": [{"key": "/languages/rum"}], "subjects": ["Eminescu, Mihai, 1850-1889 -- Criticism and interpretation.", "Cotrus\u0326, Aron, 1891- -- Criticism and interpretation.", "Gyr, Radu, 1905-1975 -- Criticism and interpretation.", "Stamatu, Horia -- Exile.", "Exiles' writings, Romanian -- History and criticism.", "Imprisonment in literature.", "Exiles in literature."], "publish_country": "rm ", "by_statement": "George Anca.", "oclc_numbers": ["37531383"], "type": {"key": "/type/edition"}, "publishers": ["Editura Majadahonda"], "key": "/books/OL107816M", "authors": [{"key": "/authors/OL72292A"}], "publish_places": ["Bucures\u0326ti"], "pagination": "120 p. ;", "lccn": ["99226159"], "notes": {"type": "/type/text", "value": "Summary in English.\nIncludes bibliographical references (p. [9])"}, "number_of_pages": 120, "isbn_10": ["9739672647"], "publish_date": "1995", "works": [{"key": "/works/OL840583W"}], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-02T09:24:28.981730"}}
+/type/edition /books/OL10781714M 3 2011-05-14T06:32:09.533721 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T06:32:09.533721"}, "title": "AMERON INTERNATIONAL CORP.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 24, "isbn_13": ["9780597006371"], "edition_name": "October 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597006377"], "publish_date": "October 31, 2000", "key": "/books/OL10781714M", "authors": [{"key": "/authors/OL2727133A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14974539W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10781722M 3 2011-05-14T06:32:16.841817 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T06:32:16.841817"}, "title": "AML COMMUNICATIONS, INC.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 24, "isbn_13": ["9780597006456"], "edition_name": "October 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597006458"], "publish_date": "October 31, 2000", "key": "/books/OL10781722M", "authors": [{"key": "/authors/OL2727133A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14974546W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10782177M 3 2011-05-14T06:40:14.648756 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T06:40:14.648756"}, "title": "AUTONATION, INC", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 21, "isbn_13": ["9780597011016"], "edition_name": "April 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["059701101X"], "publish_date": "April 25, 2000", "key": "/books/OL10782177M", "authors": [{"key": "/authors/OL2727133A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14974771W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10782542M 3 2011-05-14T05:14:12.251890 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T05:14:12.251890"}, "title": "BATICAL SICOMI SA", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 21, "isbn_13": ["9780597014666"], "edition_name": "April 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597014663"], "publish_date": "April 25, 2000", "key": "/books/OL10782542M", "authors": [{"key": "/authors/OL2727133A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14964321W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10782571M 3 2011-05-14T06:45:50.689189 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T06:45:50.689189"}, "title": "BAYERISCHE MOTOREN WERKE AG", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 21, "isbn_13": ["9780597014956"], "edition_name": "April 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597014957"], "publish_date": "April 25, 2000", "key": "/books/OL10782571M", "authors": [{"key": "/authors/OL2727133A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14974969W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10782625M 3 2022-04-06T19:25:14.058395 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "isbn_10": ["059701549X"], "number_of_pages": 21, "isbn_13": ["9780597015496"], "edition_name": "April 2000 edition", "languages": [{"key": "/languages/eng"}], "publish_date": "April 25, 2000", "key": "/books/OL10782625M", "authors": [{"key": "/authors/OL2727133A"}, {"key": "/authors/OL2727133A"}], "subjects": ["General", "Business / Economics / Finance"], "title": "BEIREN PRINTING MACHINERY HOLDINGS LTD.", "works": [{"key": "/works/OL14974993W"}], "type": {"key": "/type/edition"}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-04-06T19:25:14.058395"}}
+/type/edition /books/OL10782757M 3 2011-05-14T06:48:32.828572 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T06:48:32.828572"}, "title": "BIG DOG HOLDINGS, INC.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 21, "isbn_13": ["9780597016813"], "edition_name": "April 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["059701681X"], "publish_date": "April 25, 2000", "key": "/books/OL10782757M", "authors": [{"key": "/authors/OL2727133A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14975055W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10783210M 3 2011-11-10T20:04:58.667313 {"publishers": ["Icon Group International, Inc."], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-11-10T20:04:58.667313"}, "title": "CADILLAC FAIRVIEW CORP.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 21, "edition_name": "April 2000 edition", "isbn_13": ["9780597021343"], "isbn_10": ["0597021341"], "latest_revision": 3, "key": "/books/OL10783210M", "authors": [{"key": "/authors/OL2727133A"}], "works": [{"key": "/works/OL8174267W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10783432M 3 2011-05-14T07:01:39.804729 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T07:01:39.804729"}, "title": "CB BANCSHARES, INC.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 21, "isbn_13": ["9780597023569"], "edition_name": "April 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597023565"], "publish_date": "October 2000", "key": "/books/OL10783432M", "authors": [{"key": "/authors/OL2727133A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14967518W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10783526M 3 2011-05-14T07:03:30.034786 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T07:03:30.034786"}, "title": "CENTRAL SPRINKLER CORP.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 21, "isbn_13": ["9780597024504"], "edition_name": "April 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597024502"], "publish_date": "October 2000", "key": "/books/OL10783526M", "authors": [{"key": "/authors/OL2727133A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14967573W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10783602M 5 2011-05-14T07:04:39.612917 {"publishers": ["Icon Group International"], "number_of_pages": 21, "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "edition_name": "April 2000 edition", "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T07:04:39.612917"}, "latest_revision": 5, "key": "/books/OL10783602M", "authors": [{"key": "/authors/OL2727133A"}, {"key": "/authors/OL2727133A"}], "subjects": ["General", "Business / Economics / Finance"], "isbn_13": ["9780597025266"], "title": "CHAMPION ENTERPRISES, INC.", "identifiers": {"goodreads": ["1489037"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597025266"], "publish_date": "October 2000", "works": [{"key": "/works/OL14967616W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10784067M 3 2011-11-10T06:14:09.145300 {"publishers": ["Icon Group International, Inc."], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-11-10T06:14:09.145300"}, "title": "COLUMBUS REALTY TRUST", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 21, "edition_name": "April 2000 edition", "isbn_13": ["9780597029912"], "isbn_10": ["0597029911"], "latest_revision": 3, "key": "/books/OL10784067M", "authors": [{"key": "/authors/OL2727133A"}], "works": [{"key": "/works/OL8176377W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10784124M 5 2011-05-14T10:10:18.492566 {"publishers": ["Icon Group International"], "number_of_pages": 21, "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "edition_name": "April 2000 edition", "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T10:10:18.492566"}, "latest_revision": 5, "key": "/books/OL10784124M", "authors": [{"key": "/authors/OL2727133A"}, {"key": "/authors/OL2727133A"}], "subjects": ["General", "Business / Economics / Finance"], "isbn_13": ["9780597030482"], "title": "COMPAGNIA DI PART ASSICUR ED IND SPA", "identifiers": {"goodreads": ["5101732"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597030480"], "publish_date": "April 25, 2000", "works": [{"key": "/works/OL14967974W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10784349M 3 2011-05-14T07:17:38.045464 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T07:17:38.045464"}, "title": "COSMOPOLITAN INTERNATIONAL HOLDINGS LTD", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 21, "isbn_13": ["9780597032738"], "edition_name": "April 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597032734"], "publish_date": "April 25, 2000", "key": "/books/OL10784349M", "authors": [{"key": "/authors/OL2727133A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14968101W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10784727M 3 2011-05-14T07:24:12.646214 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T07:24:12.646214"}, "title": "DATA I/O CORP.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 21, "isbn_13": ["9780597036514"], "edition_name": "April 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597036519"], "publish_date": "April 25, 2000", "key": "/books/OL10784727M", "authors": [{"key": "/authors/OL2727133A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14968443W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10784834M 3 2011-11-10T19:51:13.129427 {"publishers": ["Icon Group International, Inc."], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-11-10T19:51:13.129427"}, "title": "DEN NORSKE BANK ASA", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 21, "edition_name": "April 2000 edition", "isbn_13": ["9780597037580"], "isbn_10": ["0597037582"], "publish_date": "April 25, 2000", "key": "/books/OL10784834M", "authors": [{"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL8176502W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10784841M 3 2011-05-14T07:26:08.529021 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T07:26:08.529021"}, "title": "DENKA HOLDING A/S", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 21, "isbn_13": ["9780597037658"], "edition_name": "April 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597037655"], "publish_date": "April 25, 2000", "key": "/books/OL10784841M", "authors": [{"key": "/authors/OL2727133A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14968556W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10785810M 3 2011-05-14T07:42:58.605005 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T07:42:58.605005"}, "title": "FIELMANN AG", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 21, "isbn_13": ["9780597047350"], "edition_name": "April 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597047359"], "publish_date": "October 2000", "key": "/books/OL10785810M", "authors": [{"key": "/authors/OL2727133A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14969582W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10786246M 4 2011-05-14T07:49:53.690687 {"publishers": ["Icon Group International"], "languages": [{"key": "/languages/eng"}], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T07:49:53.690687"}, "title": "FUCHS PETROLUB AG", "number_of_pages": 21, "isbn_13": ["9780597051715"], "edition_name": "April 2000 edition", "physical_format": "Ring-bound", "isbn_10": ["0597051712"], "publish_date": "October 2000", "key": "/books/OL10786246M", "authors": [{"key": "/authors/OL2727133A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 4, "works": [{"key": "/works/OL8176768W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 4}
+/type/edition /books/OL10786346M 3 2011-05-14T07:54:36.078883 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T07:54:36.078883"}, "title": "G. FALBE-HANSEN A/S", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 21, "isbn_13": ["9780597052712"], "edition_name": "April 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597052719"], "publish_date": "October 2000", "key": "/books/OL10786346M", "authors": [{"key": "/authors/OL2727133A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14970117W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10786388M 3 2011-11-10T19:30:06.888034 {"publishers": ["Icon Group International, Inc."], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-11-10T19:30:06.888034"}, "title": "GAROVAGLIO Y ZORRAQUIN S.A.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 21, "isbn_13": ["9780597053139"], "edition_name": "April 2000 edition", "languages": [{"key": "/languages/spa"}], "isbn_10": ["0597053138"], "latest_revision": 3, "key": "/books/OL10786388M", "authors": [{"key": "/authors/OL2727133A"}], "works": [{"key": "/works/OL8176785W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10786532M 3 2011-05-14T07:54:43.592360 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T07:54:43.592360"}, "title": "GIANT INDUSTRIES, INC.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 21, "isbn_13": ["9780597054570"], "edition_name": "April 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597054576"], "publish_date": "October 2000", "key": "/books/OL10786532M", "authors": [{"key": "/authors/OL2727133A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14970120W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10786537M 3 2011-11-10T01:13:46.011490 {"publishers": ["Icon Group International, Inc."], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-11-10T01:13:46.011490"}, "title": "GIBBS MEW PLC", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 21, "edition_name": "April 2000 edition", "isbn_13": ["9780597054624"], "isbn_10": ["0597054622"], "latest_revision": 3, "key": "/books/OL10786537M", "authors": [{"key": "/authors/OL2727133A"}], "works": [{"key": "/works/OL8176820W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10786917M 3 2011-11-10T05:47:26.890832 {"publishers": ["Icon Group International, Inc."], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-11-10T05:47:26.890832"}, "title": "H.P. BULMER HOLDINGS PLC", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 21, "edition_name": "April 2000 edition", "isbn_13": ["9780597058424"], "isbn_10": ["0597058423"], "publish_date": "April 25, 2000", "key": "/books/OL10786917M", "authors": [{"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL8177025W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10787047M 3 2011-11-10T18:43:34.296758 {"publishers": ["Icon Group International, Inc."], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-11-10T18:43:34.296758"}, "title": "HARDYS & HANSONS PLC", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 21, "edition_name": "April 2000 edition", "isbn_13": ["9780597059728"], "isbn_10": ["0597059721"], "publish_date": "April 25, 2000", "key": "/books/OL10787047M", "authors": [{"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL8176930W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10787278M 3 2011-11-10T00:36:00.328464 {"publishers": ["Icon Group International, Inc."], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-11-10T00:36:00.328464"}, "title": "HIGHLAND DISTILLERS PLC", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 21, "edition_name": "April 2000 edition", "isbn_13": ["9780597062032"], "isbn_10": ["059706203X"], "publish_date": "April 25, 2000", "key": "/books/OL10787278M", "authors": [{"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL8176988W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10787531M 2 2022-04-07T16:40:11.755482 {"isbn_13": ["9780597064562"], "physical_format": "Ring-bound", "languages": [{"key": "/languages/eng"}], "publishers": ["Icon Group International"], "number_of_pages": 21, "edition_name": "April 2000 edition", "isbn_10": ["0597064563"], "publish_date": "April 25, 2000", "key": "/books/OL10787531M", "authors": [{"key": "/authors/OL2727138A"}, {"key": "/authors/OL2727133A"}], "title": "(Financial Performance Series)", "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-04-07T16:40:11.755482"}}
+/type/edition /books/OL10787541M 3 2022-04-07T16:46:53.524577 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "isbn_10": ["0597064660"], "number_of_pages": 21, "isbn_13": ["9780597064661"], "edition_name": "April 2000 edition", "languages": [{"key": "/languages/eng"}], "publish_date": "April 25, 2000", "key": "/books/OL10787541M", "authors": [{"key": "/authors/OL2727138A"}, {"key": "/authors/OL2727133A"}], "subjects": ["General", "Business / Economics / Finance"], "title": "HUDSON CONWAY LTD.", "works": [{"key": "/works/OL14983196W"}], "type": {"key": "/type/edition"}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-04-07T16:46:53.524577"}}
+/type/edition /books/OL10787659M 3 2011-05-14T05:37:40.537726 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T05:37:40.537726"}, "title": "IDEC IZUMI CORP.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 21, "isbn_13": ["9780597065842"], "edition_name": "April 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597065845"], "publish_date": "April 25, 2000", "key": "/books/OL10787659M", "authors": [{"key": "/authors/OL2727133A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14965192W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10787739M 3 2011-05-14T05:38:15.437065 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T05:38:15.437065"}, "title": "INAX CORP.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 21, "isbn_13": ["9780597066641"], "edition_name": "April 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597066647"], "publish_date": "April 25, 2000", "key": "/books/OL10787739M", "authors": [{"key": "/authors/OL2727133A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14965218W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10788465M 3 2011-11-10T19:51:13.129427 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-11-10T19:51:13.129427"}, "title": "KARLSHAMNS AB", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 24, "isbn_13": ["9780597073908"], "edition_name": "October 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597073902"], "publish_date": "October 31, 2000", "key": "/books/OL10788465M", "authors": [{"key": "/authors/OL2727138A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14984060W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10788513M 5 2011-11-10T19:40:44.657602 {"publishers": ["Icon Group International"], "number_of_pages": 24, "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "edition_name": "October 2000 edition", "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2011-11-10T19:40:44.657602"}, "latest_revision": 5, "key": "/books/OL10788513M", "authors": [{"key": "/authors/OL2727138A"}, {"key": "/authors/OL2727133A"}], "subjects": ["General", "Business / Economics / Finance"], "isbn_13": ["9780597074387"], "title": "KAYE GROUP INC.", "identifiers": {"goodreads": ["4992642"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597074380"], "publish_date": "October 31, 2000", "works": [{"key": "/works/OL14984064W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10788955M 3 2011-11-10T18:28:55.077642 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-11-10T18:28:55.077642"}, "title": "KYUDENKO CORP.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 24, "isbn_13": ["9780597078804"], "edition_name": "October 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597078807"], "publish_date": "October 31, 2000", "key": "/books/OL10788955M", "authors": [{"key": "/authors/OL2727138A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14984163W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL1078904M 6 2020-10-07T23:19:53.401948 {"publishers": ["Clarendon Press"], "isbn_10": ["0198517637"], "covers": [1135415], "lc_classifications": ["QC776 .W55 1990 Suppl", "QC776.W55 1990 Suppl"], "latest_revision": 6, "key": "/books/OL1078904M", "authors": [{"key": "/authors/OL575563A"}], "publish_places": ["Oxford", "New York"], "contributions": ["Williams, W. S. C."], "pagination": "p. cm.", "source_records": ["marc:marc_records_scriblio_net/part24.dat:41628482:849", "marc:marc_loc_updates/v37.i38.records.utf8:5535524:955", "bwb:9780198517634"], "title": "Solutions manual for Nuclear and particle physics", "dewey_decimal_class": ["539.7/2"], "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["94002203"], "subjects": ["Nuclear physics", "Particles (Nuclear physics)", "Nuclear physics -- Problems, exercises, etc", "Particles (Nuclear physics) -- Problems, exercises, etc"], "publish_date": "1994", "publish_country": "nyu", "last_modified": {"type": "/type/datetime", "value": "2020-10-07T23:19:53.401948"}, "by_statement": "W.S.C. Williams.", "works": [{"key": "/works/OL3455666W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL10789242M 3 2011-11-10T19:43:56.783082 {"publishers": ["Icon Group International, Inc."], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-11-10T19:43:56.783082"}, "title": "LINGUI DEVELOPMENTS BERHAD", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 24, "edition_name": "October 2000 edition", "isbn_13": ["9780597081675"], "isbn_10": ["0597081670"], "publish_date": "October 31, 2000", "key": "/books/OL10789242M", "authors": [{"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL8175041W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL1078930M 7 2022-10-18T09:42:15.597250 {"publishers": ["VCH"], "identifiers": {"goodreads": ["5165397"]}, "isbn_10": ["1560815078"], "covers": [8548933], "lc_classifications": ["QD505 .C57 1994", "QD505.C57 1994"], "key": "/books/OL1078930M", "authors": [{"key": "/authors/OL531500A"}], "ocaid": "catalysisoforgan0000clar", "publish_places": ["New York"], "pagination": "xi, 126 p. :", "source_records": ["amazon:1560815078", "ia:catalysisoforgan0000clar", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:116205053:658", "bwb:9781560815075"], "title": "Catalysis of organic reactions by supported inorganic reagents", "dewey_decimal_class": ["547.1/398"], "notes": {"type": "/type/text", "value": "Includes bibliographical references and index."}, "number_of_pages": 126, "languages": [{"key": "/languages/eng"}], "lccn": ["94002230"], "subjects": ["Catalysis.", "Supported reagents."], "publish_date": "1994", "publish_country": "nyu", "by_statement": "James H. Clark.", "works": [{"key": "/works/OL3261104W"}], "type": {"key": "/type/edition"}, "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T09:42:15.597250"}}
+/type/edition /books/OL10789360M 3 2011-11-10T01:02:51.240478 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-11-10T01:02:51.240478"}, "title": "LTA LTD.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 24, "isbn_13": ["9780597082856"], "edition_name": "October 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597082855"], "publish_date": "October 31, 2000", "key": "/books/OL10789360M", "authors": [{"key": "/authors/OL2727138A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14984233W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10789630M 5 2011-11-10T19:51:13.129427 {"publishers": ["Icon Group International"], "number_of_pages": 24, "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "edition_name": "October 2000 edition", "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2011-11-10T19:51:13.129427"}, "latest_revision": 5, "key": "/books/OL10789630M", "authors": [{"key": "/authors/OL2727138A"}, {"key": "/authors/OL2727133A"}], "subjects": ["General", "Business / Economics / Finance"], "isbn_13": ["9780597085550"], "title": "MARUO CALCIUM CO., LTD.", "identifiers": {"goodreads": ["1603597"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597085552"], "publish_date": "October 31, 2000", "works": [{"key": "/works/OL14984289W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10789980M 3 2011-11-10T05:57:15.133568 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-11-10T05:57:15.133568"}, "title": "MICROAGE, INC.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 24, "isbn_13": ["9780597089060"], "edition_name": "October 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["059708906X"], "publish_date": "October 31, 2000", "key": "/books/OL10789980M", "authors": [{"key": "/authors/OL2727138A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14984431W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10790078M 5 2011-05-14T08:35:02.553024 {"publishers": ["Icon Group International"], "number_of_pages": 24, "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "edition_name": "October 2000 edition", "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T08:35:02.553024"}, "latest_revision": 5, "key": "/books/OL10790078M", "authors": [{"key": "/authors/OL2727133A"}, {"key": "/authors/OL2727133A"}], "subjects": ["General", "Business / Economics / Finance"], "isbn_13": ["9780597090042"], "title": "MIRAE CORP.", "identifiers": {"goodreads": ["766830"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597090041"], "publish_date": "October 31, 2000", "works": [{"key": "/works/OL14971733W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10790555M 3 2011-11-10T18:53:34.451151 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-11-10T18:53:34.451151"}, "title": "NBTY, INC.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 24, "isbn_13": ["9780597094811"], "edition_name": "October 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597094810"], "publish_date": "October 31, 2000", "key": "/books/OL10790555M", "authors": [{"key": "/authors/OL2727138A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14984637W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10790639M 3 2011-11-10T18:28:55.077642 {"publishers": ["Icon Group International, Inc."], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-11-10T18:28:55.077642"}, "title": "NEW WAVE GROUP AB", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 21, "edition_name": "April 2000 edition", "isbn_13": ["9780597095658"], "isbn_10": ["0597095655"], "publish_date": "April 25, 2000", "key": "/books/OL10790639M", "authors": [{"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL8177976W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10791077M 3 2011-11-10T05:57:15.133568 {"publishers": ["Icon Group International, Inc."], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-11-10T05:57:15.133568"}, "title": "NVEST, L.P.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 21, "edition_name": "April 2000 edition", "isbn_13": ["9780597100031"], "isbn_10": ["0597100039"], "publish_date": "April 25, 2000", "key": "/books/OL10791077M", "authors": [{"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL8178036W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10791209M 3 2011-11-10T05:50:48.259914 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-11-10T05:50:48.259914"}, "title": "OLD KENT FINANCIAL CORP.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 24, "isbn_13": ["9780597101359"], "edition_name": "October 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597101353"], "publish_date": "October 31, 2000", "key": "/books/OL10791209M", "authors": [{"key": "/authors/OL2727138A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14984784W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Financial Analysis", "Statistical Analysis", "Forecasting", "Company Study.", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10791294M 3 2022-04-06T19:42:08.268888 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis", "isbn_10": ["0597102201"], "number_of_pages": 24, "isbn_13": ["9780597102202"], "edition_name": "October 2000 edition", "languages": [{"key": "/languages/eng"}], "publish_date": "October 31, 2000", "key": "/books/OL10791294M", "authors": [{"key": "/authors/OL2727133A"}, {"key": "/authors/OL2727133A"}], "subjects": ["General", "Business / Economics / Finance"], "title": "ORIENT OVERSEAS (INTERNATIONAL) LTD.", "works": [{"key": "/works/OL14972623W"}], "type": {"key": "/type/edition"}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-04-06T19:42:08.268888"}}
+/type/edition /books/OL10791641M 3 2011-05-14T05:54:07.913715 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T05:54:07.913715"}, "title": "PERAK CORP. BERHAD", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 24, "isbn_13": ["9780597105678"], "edition_name": "October 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597105677"], "publish_date": "October 31, 2000", "key": "/books/OL10791641M", "authors": [{"key": "/authors/OL2727133A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14966074W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Financial Analysis", "Statistical Analysis", "Forecasting", "Company Study.", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10791702M 3 2011-11-10T19:40:44.657602 {"publishers": ["Icon Group International, Inc."], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-11-10T19:40:44.657602"}, "title": "PETROMET RESOURCES LTD.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 24, "edition_name": "October 2000 edition", "isbn_13": ["9780597106286"], "isbn_10": ["0597106282"], "publish_date": "October 31, 2000", "key": "/books/OL10791702M", "authors": [{"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL8178237W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10791727M 3 2011-11-10T06:10:35.806967 {"publishers": ["Icon Group International, Inc."], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-11-10T06:10:35.806967"}, "title": "PHILADELPHIA SUBURBAN CORP.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 24, "edition_name": "October 2000 edition", "isbn_13": ["9780597106538"], "isbn_10": ["0597106533"], "publish_date": "October 31, 2000", "key": "/books/OL10791727M", "authors": [{"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL8178243W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10792228M 3 2011-11-10T00:39:04.689608 {"publishers": ["Icon Group International, Inc."], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-11-10T00:39:04.689608"}, "title": "RAGLAN PROPERTY PLC", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 24, "edition_name": "October 2000 edition", "isbn_13": ["9780597111563"], "isbn_10": ["0597111561"], "publish_date": "October 31, 2000", "key": "/books/OL10792228M", "authors": [{"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL8178474W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10792306M 3 2011-11-10T20:11:44.505586 {"publishers": ["Icon Group International, Inc."], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-11-10T20:11:44.505586"}, "title": "REALTY DEVELOPMENT CORP. LTD.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 24, "edition_name": "October 2000 edition", "isbn_13": ["9780597112348"], "isbn_10": ["0597112347"], "publish_date": "October 31, 2000", "key": "/books/OL10792306M", "authors": [{"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL8175338W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10792311M 3 2011-11-10T18:25:22.197254 {"publishers": ["Icon Group International, Inc."], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-11-10T18:25:22.197254"}, "title": "RECKITT & COLMAN PLC", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 21, "edition_name": "April 2000 edition", "isbn_13": ["9780597112393"], "isbn_10": ["0597112398"], "latest_revision": 3, "key": "/books/OL10792311M", "authors": [{"key": "/authors/OL2727133A"}], "works": [{"key": "/works/OL8178510W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10792463M 3 2011-05-14T05:58:38.357690 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T05:58:38.357690"}, "title": "RICHFOOD HOLDINGS, INC.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 24, "isbn_13": ["9780597113918"], "edition_name": "October 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597113912"], "publish_date": "October 31, 2000", "key": "/books/OL10792463M", "authors": [{"key": "/authors/OL2727133A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14966280W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10792470M 3 2022-04-07T16:30:45.322455 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "isbn_10": ["059711398X"], "number_of_pages": 24, "isbn_13": ["9780597113987"], "edition_name": "October 2000 edition", "languages": [{"key": "/languages/eng"}], "publish_date": "October 31, 2000", "key": "/books/OL10792470M", "authors": [{"key": "/authors/OL2727138A"}, {"key": "/authors/OL2727133A"}], "subjects": ["General", "Business / Economics / Finance"], "title": "RIDENCO SA", "works": [{"key": "/works/OL14983412W"}], "type": {"key": "/type/edition"}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-04-07T16:30:45.322455"}}
+/type/edition /books/OL10792505M 3 2011-11-10T19:33:55.547043 {"publishers": ["Icon Group International, Inc."], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-11-10T19:33:55.547043"}, "title": "RIO TINTO PLC", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 24, "edition_name": "October 2000 edition", "isbn_13": ["9780597114335"], "isbn_10": ["0597114331"], "publish_date": "October 31, 2000", "key": "/books/OL10792505M", "authors": [{"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL8178602W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10792814M 3 2011-05-14T09:08:13.863914 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T09:08:13.863914"}, "title": "SANBISHI CO., LTD.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 24, "isbn_13": ["9780597117435"], "edition_name": "October 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597117438"], "publish_date": "October 31, 2000", "key": "/books/OL10792814M", "authors": [{"key": "/authors/OL2727133A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14973080W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10793230M 4 2011-05-14T06:01:58.498999 {"publishers": ["Icon Group International"], "languages": [{"key": "/languages/eng"}], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T06:01:58.498999"}, "title": "SHANGHAI LUJIAZUI FINANCE & TRADE ZONE D", "number_of_pages": 24, "isbn_13": ["9780597121609"], "edition_name": "October 2000 edition", "physical_format": "Ring-bound", "isbn_10": ["0597121605"], "publish_date": "October 31, 2000", "key": "/books/OL10793230M", "authors": [{"key": "/authors/OL2727133A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 4, "works": [{"key": "/works/OL8175434W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 4}
+/type/edition /books/OL1079354M 6 2020-11-18T07:05:53.084442 {"publishers": ["Copper Orchid Pub. Co."], "number_of_pages": 214, "isbn_10": ["0960852247"], "lc_classifications": ["PS3562.U777 L6 1994"], "latest_revision": 6, "key": "/books/OL1079354M", "authors": [{"key": "/authors/OL575725A"}], "publish_places": ["Jackson, Mich"], "languages": [{"key": "/languages/eng"}], "pagination": "214 p. ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:116582382:593"], "title": "The log-jam", "dewey_decimal_class": ["813/.54"], "identifiers": {"librarything": ["5227087"], "goodreads": ["5356340"]}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "edition_name": "1st ed.", "lccn": ["94002677"], "subjects": ["Logging -- Fiction.", "Loggers -- Fiction."], "publish_date": "1994", "publish_country": "miu", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T07:05:53.084442"}, "by_statement": "Harry H. Luton.", "oclc_numbers": ["29668709"], "works": [{"key": "/works/OL3456424W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL10793675M 3 2011-11-10T20:34:40.305466 {"publishers": ["Icon Group International, Inc."], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-11-10T20:34:40.305466"}, "title": "SODERO - STE DEVELOPPEMENT REG L'OUEST", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 24, "edition_name": "October 2000 edition", "isbn_13": ["9780597126055"], "isbn_10": ["0597126054"], "publish_date": "October 31, 2000", "key": "/books/OL10793675M", "authors": [{"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL8178963W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10793744M 3 2011-05-14T09:22:40.789975 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T09:22:40.789975"}, "title": "SORIN BIOMEDICA SPA", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 24, "isbn_13": ["9780597126741"], "edition_name": "October 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597126747"], "publish_date": "October 31, 2000", "key": "/books/OL10793744M", "authors": [{"key": "/authors/OL2727133A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14973561W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10794060M 5 2011-11-10T20:08:26.951133 {"publishers": ["Icon Group International, Inc."], "number_of_pages": 21, "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-11-10T20:08:26.951133"}, "title": "STONE CONTAINER CORP.", "physical_format": "Ring-bound", "identifiers": {"goodreads": ["2343607"]}, "isbn_13": ["9780597129902"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "edition_name": "April 2000 edition", "isbn_10": ["0597129908"], "publish_date": "April 25, 2000", "key": "/books/OL10794060M", "authors": [{"key": "/authors/OL2727133A"}], "latest_revision": 5, "works": [{"key": "/works/OL8179128W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10794190M 3 2011-11-10T19:47:37.229189 {"publishers": ["Icon Group International, Inc."], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-11-10T19:47:37.229189"}, "title": "SUNCOR ENERGY INC.", "number_of_pages": 21, "isbn_13": ["9780597131202"], "edition_name": "April 2000 edition", "physical_format": "Ring-bound", "isbn_10": ["0597131201"], "publish_date": "April 25, 2000", "key": "/books/OL10794190M", "authors": [{"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL8179174W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10794234M 3 2011-05-14T09:29:27.228898 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T09:29:27.228898"}, "title": "SUPERBAG COMPANY, LTD.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 21, "isbn_13": ["9780597131646"], "edition_name": "April 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597131643"], "publish_date": "April 25, 2000", "key": "/books/OL10794234M", "authors": [{"key": "/authors/OL2727133A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14973716W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10794692M 4 2011-05-14T10:24:11.806124 {"publishers": ["Icon Group International, Inc."], "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T10:24:11.806124"}, "title": "(Financial Performance Series)", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 21, "edition_name": "April 2000 edition", "isbn_13": ["9780597136221"], "isbn_10": ["059713622X"], "publish_date": "April 25, 2000", "key": "/books/OL10794692M", "authors": [{"key": "/authors/OL2727133A"}], "latest_revision": 4, "works": [{"key": "/works/OL8173561W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL1079471M 8 2022-12-10T12:35:00.429326 {"other_titles": ["Elementary physical education teacher's survival guide."], "publishers": ["Parker Pub."], "number_of_pages": 345, "isbn_10": ["013302993X"], "covers": [1113089], "lc_classifications": ["GV443 .C37 1994"], "key": "/books/OL1079471M", "authors": [{"key": "/authors/OL333802A"}], "publish_places": ["West Nyack, N.Y"], "contributions": ["Tunnell, Diane."], "pagination": "xx, 345 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:116688612:836", "promise:bwb_daily_pallets_2020-04-09"], "title": "Elementary P.E. teacher's survival guide", "dewey_decimal_class": ["372.86"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. xiii)."}, "identifiers": {"goodreads": ["5071665"], "amazon": [""]}, "languages": [{"key": "/languages/eng"}], "lccn": ["94002806"], "subjects": ["Physical education for children.", "Physical education for children -- Study and teaching -- Activity programs."], "publish_date": "1994", "publish_country": "nyu", "by_statement": "Jeff Carpenter & Diane Tunnell.", "oclc_numbers": ["29751848"], "works": [{"key": "/works/OL2422520W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:O6-CGG-062"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T12:35:00.429326"}}
+/type/edition /books/OL10794897M 3 2011-05-14T09:40:14.671751 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T09:40:14.671751"}, "title": "TOKYO ISUZU MOTOR CO., LTD.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 21, "isbn_13": ["9780597138270"], "edition_name": "April 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597138273"], "publish_date": "April 25, 2000", "key": "/books/OL10794897M", "authors": [{"key": "/authors/OL2727133A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14980915W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Company Study.", "Forecasting", "Statistical Analysis", "Financial Analysis", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10794942M 3 2011-05-14T09:41:10.459564 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T09:41:10.459564"}, "title": "TOMORROW INTERNATIONAL HOLDINGS LTD.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 21, "isbn_13": ["9780597138720"], "edition_name": "April 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597138729"], "publish_date": "April 25, 2000", "key": "/books/OL10794942M", "authors": [{"key": "/authors/OL2727133A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14980967W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Financial Analysis", "Statistical Analysis", "Forecasting", "Company Study.", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10795100M 3 2011-05-14T09:44:29.259760 {"publishers": ["Icon Group International, Inc."], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T09:44:29.259760"}, "title": "TRANS-LUX CORP.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 21, "edition_name": "April 2000 edition", "isbn_13": ["9780597140303"], "isbn_10": ["0597140308"], "publish_date": "April 25, 2000", "key": "/books/OL10795100M", "authors": [{"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL8172706W"}], "type": {"key": "/type/edition"}, "subjects": ["Company Study.", "Financial Analysis", "Forecasting", "Statistical Analysis"], "revision": 3}
+/type/edition /books/OL10795241M 3 2011-05-14T06:12:33.690709 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T06:12:33.690709"}, "title": "TSUTSUMI JEWELRY CO., LTD.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 21, "isbn_13": ["9780597141713"], "edition_name": "April 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597141711"], "publish_date": "April 25, 2000", "key": "/books/OL10795241M", "authors": [{"key": "/authors/OL2727133A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14976445W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10796039M 3 2011-05-14T09:59:28.544835 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T09:59:28.544835"}, "title": "WILLIAM DEMANT HOLDING A/S", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 21, "isbn_13": ["9780597149696"], "edition_name": "April 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597149690"], "publish_date": "April 25, 2000", "key": "/books/OL10796039M", "authors": [{"key": "/authors/OL2727133A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14976658W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10796091M 3 2011-05-14T10:19:53.636413 {"publishers": ["Icon Group International, Inc."], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T10:19:53.636413"}, "title": "WMC LTD", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 21, "edition_name": "April 2000 edition", "isbn_13": ["9780597150210"], "isbn_10": ["0597150214"], "publish_date": "April 25, 2000", "key": "/books/OL10796091M", "authors": [{"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL8173299W"}], "type": {"key": "/type/edition"}, "subjects": ["Company Study.", "Financial Analysis", "Forecasting", "Statistical Analysis"], "revision": 3}
+/type/edition /books/OL10796127M 3 2011-05-14T10:01:09.219157 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T10:01:09.219157"}, "title": "WORLD CO., LTD.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 21, "isbn_13": ["9780597150579"], "edition_name": "April 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597150575"], "publish_date": "April 25, 2000", "key": "/books/OL10796127M", "authors": [{"key": "/authors/OL2727133A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14981119W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Financial Analysis", "Statistical Analysis", "Forecasting", "Company Study.", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10796298M 3 2011-05-14T10:05:29.463555 {"publishers": ["Icon Group International, Inc."], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T10:05:29.463555"}, "title": "ZAPADOCESKA ENERGETIKA", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 21, "edition_name": "April 2000 edition", "isbn_13": ["9780597152283"], "isbn_10": ["0597152284"], "publish_date": "April 25, 2000", "key": "/books/OL10796298M", "authors": [{"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL8173444W"}], "type": {"key": "/type/edition"}, "subjects": ["Company Study.", "Financial Analysis", "Forecasting", "Statistical Analysis"], "revision": 3}
+/type/edition /books/OL10796309M 3 2011-05-14T10:05:49.081534 {"publishers": ["Icon Group International, Inc."], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T10:05:49.081534"}, "title": "ZEMEX CORP.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 21, "edition_name": "April 2000 edition", "isbn_13": ["9780597152399"], "isbn_10": ["059715239X"], "publish_date": "April 25, 2000", "key": "/books/OL10796309M", "authors": [{"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL8173455W"}], "type": {"key": "/type/edition"}, "subjects": ["Company Study.", "Financial Analysis", "Forecasting", "Statistical Analysis"], "revision": 3}
+/type/edition /books/OL10796595M 3 2011-05-14T06:35:57.898762 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T06:35:57.898762"}, "title": "ARONEX PHARMACEUTICALS, INC.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 21, "isbn_13": ["9780597155253"], "edition_name": "April 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597155259"], "publish_date": "April 25, 2000", "key": "/books/OL10796595M", "authors": [{"key": "/authors/OL2727133A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14977186W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Financial Analysis", "Statistical Analysis", "Forecasting", "Company Study.", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10796926M 3 2011-05-14T07:08:16.255098 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T07:08:16.255098"}, "title": "CIE FINANCIERE DE NEUFCOUR SA", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 21, "isbn_13": ["9780597158568"], "edition_name": "April 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597158568"], "publish_date": "April 25, 2000", "key": "/books/OL10796926M", "authors": [{"key": "/authors/OL2727133A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14977975W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Financial Analysis", "Statistical Analysis", "Forecasting", "Company Study.", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10797443M 3 2011-05-14T05:26:11.375876 {"publishers": ["Icon Group International, Inc."], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T05:26:11.375876"}, "title": "DIZON COPPER-SILVER MINES, INC.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 21, "edition_name": "April 2000 edition", "isbn_13": ["9780597163739"], "isbn_10": ["0597163731"], "publish_date": "April 25, 2000", "key": "/books/OL10797443M", "authors": [{"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL8168528W"}], "type": {"key": "/type/edition"}, "subjects": ["Company Study.", "Financial Analysis", "Forecasting", "Statistical Analysis"], "revision": 3}
+/type/edition /books/OL10797733M 3 2011-05-14T07:48:18.369015 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T07:48:18.369015"}, "title": "FORTUNE NATURAL RESOURCES CORP.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 24, "isbn_13": ["9780597166631"], "edition_name": "October 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597166633"], "publish_date": "October 31, 2000", "key": "/books/OL10797733M", "authors": [{"key": "/authors/OL2727133A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14979211W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Financial Analysis", "Statistical Analysis", "Forecasting", "Company Study.", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10797833M 3 2011-05-14T07:55:05.611495 {"publishers": ["Icon Group International, Inc."], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T07:55:05.611495"}, "title": "GIOMA RESTAURANTS PLC", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 24, "edition_name": "October 2000 edition", "isbn_13": ["9780597167645"], "isbn_10": ["0597167648"], "publish_date": "October 31, 2000", "key": "/books/OL10797833M", "authors": [{"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL8170361W"}], "type": {"key": "/type/edition"}, "subjects": ["Company Study.", "Financial Analysis", "Forecasting", "Statistical Analysis"], "revision": 3}
+/type/edition /books/OL10798076M 3 2011-05-14T08:09:28.433398 {"publishers": ["Icon Group International, Inc."], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T08:09:28.433398"}, "title": "HW GROUP PLC", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 21, "edition_name": "April 2000 edition", "isbn_13": ["9780597170072"], "isbn_10": ["059717007X"], "publish_date": "April 25, 2000", "key": "/books/OL10798076M", "authors": [{"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL8170452W"}], "type": {"key": "/type/edition"}, "subjects": ["Company Study.", "Financial Analysis", "Forecasting", "Statistical Analysis"], "revision": 3}
+/type/edition /books/OL10798375M 2 2009-12-15T00:54:41.602581 {"physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "publishers": ["Icon Group International, Inc."], "isbn_10": ["0597173060"], "number_of_pages": 21, "edition_name": "April 2000 edition", "isbn_13": ["9780597173066"], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:54:41.602581"}, "publish_date": "April 25, 2000", "latest_revision": 2, "key": "/books/OL10798375M", "authors": [{"key": "/authors/OL2727133A"}], "title": "KIA STEEL CO., LTD.", "subjects": ["Company Study.", "Financial Analysis", "Forecasting", "Statistical Analysis"], "works": [{"key": "/works/OL8170764W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10798523M 3 2011-05-14T08:28:55.861391 {"publishers": ["Icon Group International, Inc."], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T08:28:55.861391"}, "title": "LUXTEC CORP.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 21, "edition_name": "April 2000 edition", "isbn_13": ["9780597174544"], "isbn_10": ["0597174547"], "publish_date": "April 25, 2000", "key": "/books/OL10798523M", "authors": [{"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL8170978W"}], "type": {"key": "/type/edition"}, "subjects": ["Company Study.", "Financial Analysis", "Forecasting", "Statistical Analysis"], "revision": 3}
+/type/edition /books/OL10798837M 3 2011-05-14T08:40:54.175510 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T08:40:54.175510"}, "title": "NEW WORLD COFFEE - MANHATTAN BAGEL, INC", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 21, "isbn_13": ["9780597177682"], "edition_name": "April 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597177686"], "publish_date": "April 25, 2000", "key": "/books/OL10798837M", "authors": [{"key": "/authors/OL2727138A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14972074W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Company Study.", "Forecasting", "Statistical Analysis", "Financial Analysis", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10799182M 3 2011-05-14T08:57:38.335339 {"publishers": ["Icon Group International, Inc."], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T08:57:38.335339"}, "title": "PREMIERE TECHNOLOGIES, INC.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 21, "edition_name": "April 2000 edition", "isbn_13": ["9780597181139"], "isbn_10": ["0597181136"], "publish_date": "April 25, 2000", "key": "/books/OL10799182M", "authors": [{"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL8171544W"}], "type": {"key": "/type/edition"}, "subjects": ["Company Study.", "Financial Analysis", "Forecasting", "Statistical Analysis"], "revision": 3}
+/type/edition /books/OL10799961M 3 2011-05-14T09:45:07.458465 {"publishers": ["Icon Group International, Inc."], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T09:45:07.458465"}, "title": "TREEV, INC.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 21, "edition_name": "April 2000 edition", "isbn_13": ["9780597188930"], "isbn_10": ["0597188939"], "publish_date": "April 25, 2000", "key": "/books/OL10799961M", "authors": [{"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL8172742W"}], "type": {"key": "/type/edition"}, "subjects": ["Company Study.", "Financial Analysis", "Forecasting", "Statistical Analysis"], "revision": 3}
+/type/edition /books/OL10800119M 3 2011-05-14T09:53:36.839280 {"publishers": ["Icon Group International, Inc."], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T09:53:36.839280"}, "title": "VERSANT OBJECT TECHNOLOGY CORP.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 21, "edition_name": "April 2000 edition", "isbn_13": ["9780597190513"], "isbn_10": ["0597190518"], "publish_date": "April 25, 2000", "key": "/books/OL10800119M", "authors": [{"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL8173068W"}], "type": {"key": "/type/edition"}, "subjects": ["Company Study.", "Financial Analysis", "Forecasting", "Statistical Analysis"], "revision": 3}
+/type/edition /books/OL10800418M 3 2011-05-14T06:22:35.784529 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T06:22:35.784529"}, "title": "ACCIONA SA", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 17, "isbn_13": ["9780597193507"], "edition_name": "April 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597193509"], "publish_date": "April 25, 2000", "key": "/books/OL10800418M", "authors": [{"key": "/authors/OL2727133A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14974243W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Financial Analysis", "Labor Productivity", "Statistical Analysis", "Forecasting", "Company Study", "Human Resources.", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10800490M 3 2011-05-14T05:05:33.110310 {"publishers": ["Icon Group International, Inc."], "physical_format": "Ring-bound", "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T05:05:33.110310"}, "title": "ADVANCED POWER COMPONENTS PLC", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 17, "edition_name": "April 2000 edition", "isbn_13": ["9780597194221"], "isbn_10": ["059719422X"], "publish_date": "April 25, 2000", "key": "/books/OL10800490M", "authors": [{"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL8167763W"}], "type": {"key": "/type/edition"}, "subjects": ["Company Study", "Financial Analysis", "Forecasting", "Human Resources.", "Labor Productivity", "Statistical Analysis"], "revision": 3}
+/type/edition /books/OL108005M 8 2020-12-02T09:26:56.379884 {"identifiers": {"goodreads": ["1932712"]}, "subtitle": "the history of logging in British Columbia's Interior", "subject_place": ["British Columbia", "Colombie-Britannique"], "covers": [1863567], "lc_classifications": ["SD538.3.C2 D78 1998", "SD538.3.C2D78 1998"], "source_records": ["marc:marc_records_scriblio_net/part28.dat:69720524:876", "marc:marc_loc_updates/v37.i34.records.utf8:4694764:1094", "bwb:9781550171891", "marc:marc_loc_2016/BooksAll.2016.part28.utf8:97166769:1094"], "title": "Tie hackers to timber harvesters", "languages": [{"key": "/languages/eng"}], "subjects": ["Logging -- British Columbia -- History", "Fore\u0302ts -- Exploitation -- Colombie-Britannique -- Histoire"], "publish_country": "bcc", "by_statement": "Ken Drushka.", "oclc_numbers": ["40052434"], "type": {"key": "/type/edition"}, "publishers": ["Harbour Pub."], "key": "/books/OL108005M", "authors": [{"key": "/authors/OL72404A"}], "publish_places": ["Madeira Park, BC"], "pagination": "240 p. :", "dewey_decimal_class": ["634.9/8/09711"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 237) and index."}, "number_of_pages": 240, "lccn": ["99226432"], "isbn_10": ["1550171895"], "publish_date": "1998", "works": [{"key": "/works/OL841238W"}], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-02T09:26:56.379884"}}
+/type/edition /books/OL10800900M 3 2011-05-14T05:08:41.563770 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T05:08:41.563770"}, "title": "ANDERS DIOS AB", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 17, "isbn_13": ["9780597198328"], "edition_name": "April 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597198322"], "publish_date": "April 25, 2000", "key": "/books/OL10800900M", "authors": [{"key": "/authors/OL2727138A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14964142W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Financial Analysis", "Labor Productivity", "Statistical Analysis", "Forecasting", "Company Study", "Human Resources.", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10801241M 3 2011-05-14T05:12:23.287391 {"publishers": ["Icon Group International, Inc."], "physical_format": "Ring-bound", "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T05:12:23.287391"}, "title": "AWILCO ASA", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 17, "edition_name": "April 2000 edition", "isbn_13": ["9780597201738"], "isbn_10": ["0597201730"], "publish_date": "April 25, 2000", "key": "/books/OL10801241M", "authors": [{"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL8168060W"}], "type": {"key": "/type/edition"}, "subjects": ["Company Study", "Financial Analysis", "Forecasting", "Human Resources.", "Labor Productivity", "Statistical Analysis"], "revision": 3}
+/type/edition /books/OL10801344M 3 2011-05-14T06:43:05.377996 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T06:43:05.377996"}, "title": "BANCO DI DESIO E DELLA BRIANZA SPA", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 17, "isbn_13": ["9780597202766"], "edition_name": "April 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597202761"], "publish_date": "April 25, 2000", "key": "/books/OL10801344M", "authors": [{"key": "/authors/OL2727133A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14974856W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Human Resources.", "Company Study", "Forecasting", "Statistical Analysis", "Labor Productivity", "Financial Analysis", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10801367M 3 2011-05-14T05:13:16.662648 {"publishers": ["Icon Group International, Inc."], "physical_format": "Ring-bound", "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T05:13:16.662648"}, "title": "BANCO SANTANDER-CHILE S.A.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 17, "edition_name": "April 2000 edition", "isbn_13": ["9780597202995"], "isbn_10": ["0597202990"], "publish_date": "April 25, 2000", "key": "/books/OL10801367M", "authors": [{"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL8168113W"}], "type": {"key": "/type/edition"}, "subjects": ["Company Study", "Financial Analysis", "Forecasting", "Human Resources.", "Labor Productivity", "Statistical Analysis"], "revision": 3}
+/type/edition /books/OL10801390M 3 2011-05-14T06:43:40.405981 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T06:43:40.405981"}, "title": "BANK AUSTRIA AG", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 17, "isbn_13": ["9780597203220"], "edition_name": "April 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597203229"], "publish_date": "April 25, 2000", "key": "/books/OL10801390M", "authors": [{"key": "/authors/OL2727133A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14974881W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Company Study", "Financial Analysis", "Labor Productivity", "Statistical Analysis", "Forecasting", "Human Resources.", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL108014M 4 2020-12-02T09:27:05.617905 {"identifiers": {"goodreads": ["6596203"]}, "subtitle": "skutec\u030cnost nebo legenda?", "lc_classifications": ["PG5038.H228 K35 1997"], "contributions": ["Kra\u0301sa, Antoni\u0301n.", "Radkovic\u030cova\u0301, Jitka."], "edition_name": "V MCM vyd. 1.", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part28.utf8:97177215:757"], "title": "Ka\u0301ja Mar\u030ci\u0301k", "languages": [{"key": "/languages/cze"}], "subjects": ["Ha\u0301j, Felix, 1887-1934."], "publish_country": "xr ", "by_statement": "Marie S\u030clapetova\u0301, Antoni\u0301n Kra\u0301sa, Jitka Radkovic\u030cova\u0301.", "oclc_numbers": ["40092034"], "type": {"key": "/type/edition"}, "publishers": ["Matice cyrilometode\u030cjska\u0301"], "key": "/books/OL108014M", "authors": [{"key": "/authors/OL72408A"}], "publish_places": ["Olomouc"], "pagination": "141 p., [22] p. of plates :", "lccn": ["99226444"], "number_of_pages": 141, "isbn_10": ["8023828568"], "publish_date": "1997", "works": [{"key": "/works/OL841295W"}], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-02T09:27:05.617905"}}
+/type/edition /books/OL10802241M 3 2011-05-14T07:01:48.194254 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T07:01:48.194254"}, "title": "CCB FINANCIAL CORP.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 17, "isbn_13": ["9780597211737"], "edition_name": "April 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597211736"], "publish_date": "April 25, 2000", "key": "/books/OL10802241M", "authors": [{"key": "/authors/OL2727133A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14967523W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10802426M 3 2011-11-10T06:10:35.806967 {"publishers": ["Icon Group International, Inc."], "physical_format": "Ring-bound", "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "last_modified": {"type": "/type/datetime", "value": "2011-11-10T06:10:35.806967"}, "title": "CHIC BY H.I.S, INC.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 17, "edition_name": "April 2000 edition", "isbn_13": ["9780597213588"], "isbn_10": ["0597213585"], "publish_date": "April 25, 2000", "key": "/books/OL10802426M", "authors": [{"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL8176303W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10802714M 3 2011-11-10T01:02:51.240478 {"publishers": ["Icon Group International, Inc."], "physical_format": "Ring-bound", "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "last_modified": {"type": "/type/datetime", "value": "2011-11-10T01:02:51.240478"}, "title": "COLONIAL DOWNS HLDGS INC", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 17, "edition_name": "April 2000 edition", "isbn_13": ["9780597216466"], "isbn_10": ["0597216460"], "publish_date": "April 25, 2000", "key": "/books/OL10802714M", "authors": [{"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL8176373W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10802722M 3 2011-05-14T07:12:16.516748 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T07:12:16.516748"}, "title": "COLORADO MEDTECH, INC.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 17, "isbn_13": ["9780597216541"], "edition_name": "April 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597216541"], "publish_date": "April 25, 2000", "key": "/books/OL10802722M", "authors": [{"key": "/authors/OL2727133A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14967921W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10802819M 3 2011-11-10T19:51:13.129427 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "last_modified": {"type": "/type/datetime", "value": "2011-11-10T19:51:13.129427"}, "title": "COMPANIA GOODYEAR DEL PERU S.A.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 17, "isbn_13": ["9780597217517"], "edition_name": "April 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597217513"], "publish_date": "April 25, 2000", "key": "/books/OL10802819M", "authors": [{"key": "/authors/OL2727138A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14983639W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10803239M 3 2011-05-14T07:23:20.277042 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T07:23:20.277042"}, "title": "DAIWA CO., LTD.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 17, "isbn_13": ["9780597221712"], "edition_name": "April 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597221715"], "publish_date": "April 25, 2000", "key": "/books/OL10803239M", "authors": [{"key": "/authors/OL2727133A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14968353W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10803293M 3 2011-11-10T20:08:26.951133 {"publishers": ["Icon Group International, Inc."], "physical_format": "Ring-bound", "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "last_modified": {"type": "/type/datetime", "value": "2011-11-10T20:08:26.951133"}, "title": "DATAFLEX CORP.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 17, "edition_name": "April 2000 edition", "isbn_13": ["9780597222252"], "isbn_10": ["0597222258"], "publish_date": "April 25, 2000", "key": "/books/OL10803293M", "authors": [{"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL8176482W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10803535M 3 2011-05-14T07:29:36.711019 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T07:29:36.711019"}, "title": "DONGKUK STEEL MILL CO., LTD.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 17, "isbn_13": ["9780597224676"], "edition_name": "April 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597224676"], "publish_date": "April 25, 2000", "key": "/books/OL10803535M", "authors": [{"key": "/authors/OL2727133A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14968813W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10803883M 3 2011-05-14T07:37:31.518024 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T07:37:31.518024"}, "title": "ENVIRONMENTAL TECTONICS CORP.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 17, "isbn_13": ["9780597228162"], "edition_name": "April 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597228167"], "publish_date": "April 25, 2000", "key": "/books/OL10803883M", "authors": [{"key": "/authors/OL2727133A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14969374W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10804142M 3 2011-05-14T07:42:50.347074 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T07:42:50.347074"}, "title": "FIDELITY BANKSHARES, INC.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 17, "isbn_13": ["9780597230752"], "edition_name": "April 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597230757"], "publish_date": "April 25, 2000", "key": "/books/OL10804142M", "authors": [{"key": "/authors/OL2727133A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14969577W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10804257M 3 2022-12-07T05:44:52.858262 {"publishers": ["Hodder Wayland"], "isbn_10": ["0750201215"], "number_of_pages": 24, "isbn_13": ["9780750201216"], "physical_format": "Hardcover", "publish_date": "November 15, 1991", "key": "/books/OL10804257M", "authors": [{"key": "/authors/OL711321A"}], "title": "The Body (My Book About)", "subjects": ["Body & health", "English language readers", "For National Curriculum Key Stage 1"], "works": [{"key": "/works/OL3909034W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:KP-166-284"], "source_records": ["promise:bwb_daily_pallets_2022-03-17"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-07T05:44:52.858262"}}
+/type/edition /books/OL10804311M 5 2022-12-14T18:51:47.189726 {"title": "Multiplying and Dividing (Understanding Maths)", "authors": [{"key": "/authors/OL18918A"}], "publish_date": "December 31, 1991", "publishers": ["Hodder Wayland"], "source_records": ["amazon:0750202211", "ia:multiplyingdivid0000brya_t0u4", "promise:bwb_daily_pallets_2021-03-03"], "isbn_13": ["9780750202213"], "physical_format": "Hardcover", "isbn_10": ["0750202211"], "subjects": ["Mathematics", "For National Curriculum Key Stage 2"], "type": {"key": "/type/edition"}, "ocaid": "multiplyingdivid0000brya_t0u4", "key": "/books/OL10804311M", "number_of_pages": 32, "works": [{"key": "/works/OL444381W"}], "local_id": ["urn:bwbsku:KO-827-668"], "covers": [13094477], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-14T18:51:47.189726"}}
+/type/edition /books/OL10804348M 2 2009-12-15T00:54:44.674238 {"physical_format": "Paperback", "publishers": ["Hodder Wayland"], "isbn_10": ["0750202920"], "number_of_pages": 32, "edition_name": "New Ed edition", "isbn_13": ["9780750202923"], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:54:44.674238"}, "publish_date": "February 15, 1992", "latest_revision": 2, "key": "/books/OL10804348M", "authors": [{"key": "/authors/OL765365A"}], "title": "Pop Concerts (Pop World)", "subjects": ["Rock & pop", "Vocal music", "c 1945 to c 1960", "c 1960 to c 1970", "c 1970 to c 1980", "c 1980 to c 1990"], "works": [{"key": "/works/OL4086350W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10804598M 5 2021-05-27T03:43:12.452701 {"publishers": ["Hodder Children's Books"], "number_of_pages": 32, "subjects": ["AIDS: social aspects", "Sex education & the facts of life", "For National Curriculum Key Stage 2", "For National Curriculum Key Stage 3"], "source_records": ["amazon:0750207388", "ia:weretalkingabout0000brya_n1r3"], "isbn_10": ["0750207388"], "identifiers": {"goodreads": ["5979195"]}, "isbn_13": ["9780750207386"], "physical_format": "Hardcover", "publish_date": "March 31, 1994", "key": "/books/OL10804598M", "authors": [{"key": "/authors/OL18918A"}], "title": "We're Talking About AIDS (We're Talking About)", "works": [{"key": "/works/OL104805W"}], "type": {"key": "/type/edition"}, "covers": [11170111], "ocaid": "weretalkingabout0000brya_n1r3", "lc_classifications": ["RC607.A26 F58 1990"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-05-27T03:43:12.452701"}}
+/type/edition /books/OL10805067M 2 2011-04-28T14:29:48.588869 {"publishers": ["Hodder Wayland"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2011-04-28T14:29:48.588869"}, "title": "Tennis (Sports Skills)", "type": {"key": "/type/edition"}, "number_of_pages": 32, "isbn_13": ["9780750216982"], "edition_name": "New Ed edition", "physical_format": "Hardcover", "isbn_10": ["0750216980"], "publish_date": "April 15, 1995", "key": "/books/OL10805067M", "authors": [{"key": "/authors/OL2644117A"}, {"key": "/authors/OL237976A"}], "latest_revision": 2, "oclc_numbers": ["32702266"], "contributions": ["James Robins (Illustrator)"], "subjects": ["Lawn tennis"], "revision": 2}
+/type/edition /books/OL10805227M 2 2009-12-15T00:54:46.015612 {"publishers": ["Hodder Wayland"], "title": "Tudors and Stuarts (Tudors & Stuarts)", "isbn_10": ["0750219238"], "isbn_13": ["9780750219235"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:54:46.015612"}, "publish_date": "May 17, 1996", "key": "/books/OL10805227M", "authors": [{"key": "/authors/OL578085A"}], "latest_revision": 2, "subjects": ["British & Irish history: c 1000 to c 1500", "British & Irish history: c 1500 to c 1700", "England", "For National Curriculum Key Stage 2"], "works": [{"key": "/works/OL3468424W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10805316M 4 2022-12-09T16:45:03.179377 {"publishers": ["Hodder Wayland"], "physical_format": "Hardcover", "key": "/books/OL10805316M", "title": "Harvest (Festivals)", "number_of_pages": 32, "covers": [2590845], "isbn_13": ["9780750221191"], "isbn_10": ["0750221194"], "publish_date": "July 31, 1997", "authors": [{"key": "/authors/OL393586A"}], "works": [{"key": "/works/OL2693262W"}], "type": {"key": "/type/edition"}, "subjects": ["Comparative religion", "Folklore", "Pageants, parades, festivals", "Religious festivals & pilgrimages", "Religious worship, rites & ceremonies", "For National Curriculum Key Stage 2"], "local_id": ["urn:bwbsku:KO-548-075"], "source_records": ["promise:bwb_daily_pallets_2020-11-19"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T16:45:03.179377"}}
+/type/edition /books/OL10805392M 7 2022-12-10T07:05:12.815503 {"publishers": ["Hodder Wayland"], "physical_format": "Hardcover", "title": "Pirates! (Our Amazing World)", "number_of_pages": 48, "covers": [2590906], "isbn_13": ["9780750222693"], "isbn_10": ["0750222697"], "publish_date": "June 30, 1998", "key": "/books/OL10805392M", "authors": [{"key": "/authors/OL26841A"}], "oclc_numbers": ["43865635"], "works": [{"key": "/works/OL458719W"}], "type": {"key": "/type/edition"}, "subjects": ["Human geography / peoples of the world", "Local history & fieldwork", "Maritime history", "Special needs & learning difficulties", "Travel & holiday", "World history", "For National Curriculum Key Stage 2", "For National Curriculum Key Stage 3"], "ocaid": "pirates0000piro", "source_records": ["ia:pirates0000piro", "promise:bwb_daily_pallets_2020-12-08", "promise:bwb_daily_pallets_2020-06-24"], "local_id": ["urn:bwbsku:KP-072-726", "urn:bwbsku:KN-858-997"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T07:05:12.815503"}}
+/type/edition /books/OL10805632M 1 2008-04-30T09:38:13.731961 {"physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "title": "Keywords Pack", "publishers": ["Hodder Children's Audio"], "isbn_13": ["9780750226257"], "isbn_10": ["0750226250"], "key": "/books/OL10805632M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10805656M 7 2022-12-09T15:52:52.607882 {"publishers": ["Hodder Children's Books"], "identifiers": {"goodreads": ["1227224"]}, "physical_format": "Paperback", "key": "/books/OL10805656M", "authors": [{"key": "/authors/OL38756A"}], "contributions": ["Mike Gordon (Illustrator)"], "subjects": ["First experiences"], "edition_name": "New Ed edition", "title": "Where's My Peg? (New Experiences)", "number_of_pages": 32, "isbn_13": ["9780750226622"], "isbn_10": ["0750226625"], "publish_date": "May 18, 2000", "oclc_numbers": ["43631747"], "works": [{"key": "/works/OL545081W"}], "type": {"key": "/type/edition"}, "covers": [10629831], "ocaid": "wheresmypegmyfir0000gree_k9u7", "source_records": ["ia:wheresmypegmyfir0000gree_k9u7", "promise:bwb_daily_pallets_2020-11-19"], "local_id": ["urn:bwbsku:KO-298-741"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T15:52:52.607882"}}
+/type/edition /books/OL10805940M 1 2008-04-30T09:38:13.731961 {"physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Hodder & Stoughton Childrens Division"], "title": "Your Feelings I'm Happy Dutch Co Edition", "isbn_13": ["9780750230551"], "isbn_10": ["075023055X"], "publish_date": "December 7, 1999", "key": "/books/OL10805940M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10805943M 1 2008-04-30T09:38:13.731961 {"physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Hodder & Stoughton Childrens Division"], "title": "Your Feelings I Feel Bullied Dutch Co Edition", "isbn_13": ["9780750230582"], "isbn_10": ["0750230584"], "publish_date": "December 7, 1999", "key": "/books/OL10805943M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10806022M 1 2008-04-30T09:38:13.731961 {"physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Hodder & Stoughton Childrens Division"], "title": "Look into the Past the Maya Us Co Edition", "isbn_13": ["9780750231572"], "isbn_10": ["0750231572"], "publish_date": "February 24, 2000", "key": "/books/OL10806022M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10806037M 5 2022-12-09T16:27:31.179702 {"publishers": ["Hodder Wayland"], "title": "Human Body (Science Fact Files)", "number_of_pages": 48, "isbn_13": ["9780750231831"], "covers": [2591225], "physical_format": "Hardcover", "isbn_10": ["0750231831"], "publish_date": "March 15, 2001", "key": "/books/OL10806037M", "authors": [{"key": "/authors/OL238071A"}, {"key": "/authors/OL2668462A"}], "oclc_numbers": ["59508234"], "type": {"key": "/type/edition"}, "subjects": ["Human biology", "For National Curriculum Key Stage 3"], "works": [{"key": "/works/OL31770168W"}], "local_id": ["urn:bwbsku:KP-077-696", "urn:bwbsku:KO-413-835"], "source_records": ["promise:bwb_daily_pallets_2021-02-03", "promise:bwb_daily_pallets_2020-11-19"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T16:27:31.179702"}}
+/type/edition /books/OL10806291M 6 2011-04-28T01:20:48.204618 {"publishers": ["Hodder Wayland"], "identifiers": {"goodreads": ["6511625"]}, "covers": [2591439], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-28T01:20:48.204618"}, "latest_revision": 6, "key": "/books/OL10806291M", "authors": [{"key": "/authors/OL2163507A"}], "contributions": ["Gini Wade (Illustrator)"], "subjects": ["Historical fiction", "Historical figures", "For National Curriculum Key Stage 2"], "source_records": ["amazon:0750237597"], "title": "Sir Walter Raleigh and the Search for the City of Gold (Historical Storybooks)", "number_of_pages": 48, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780750237598"], "isbn_10": ["0750237597"], "publish_date": "October 25, 2001", "oclc_numbers": ["47232283"], "works": [{"key": "/works/OL156494W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL10806340M 5 2020-08-23T04:56:42.037189 {"publishers": ["Hodder Wayland"], "weight": "4 ounces", "covers": [2591486], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2020-08-23T04:56:42.037189"}, "latest_revision": 5, "key": "/books/OL10806340M", "authors": [{"key": "/authors/OL220902A"}], "ocaid": "fromchicktochick0000powe_i6e6", "subjects": ["Picture books", "Zoology & animal sciences", "For National Curriculum Key Stage 2", "Children: Kindergarten"], "edition_name": "New Ed edition", "source_records": ["ia:fromchicktochick0000powe_i6e6"], "title": "Chick to Chicken (How Do They Grow?)", "number_of_pages": 32, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780750238687"], "isbn_10": ["0750238682"], "publish_date": "October 25, 2001", "oclc_numbers": ["45350405"], "works": [{"key": "/works/OL1844742W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.2 x 8.5 x 0.2 inches", "revision": 5}
+/type/edition /books/OL10806491M 8 2022-12-09T15:42:37.783198 {"publishers": ["Hodder Wayland"], "physical_format": "Hardcover", "title": "Women's War (Britain in World War II)", "number_of_pages": 32, "covers": [2591618], "isbn_13": ["9780750243070"], "isbn_10": ["0750243074"], "publish_date": "January 16, 2003", "key": "/books/OL10806491M", "authors": [{"key": "/authors/OL983271A"}], "oclc_numbers": ["50940688"], "works": [{"key": "/works/OL4727873W"}], "type": {"key": "/type/edition"}, "subjects": ["British & Irish history: Second World War", "European history: Second World War", "Special needs & learning difficulties", "Women & girls", "United Kingdom, Great Britain", "Second World War, 1939-1945", "For National Curriculum Key Stage 2"], "ocaid": "womenswar0000coop_t2x7", "source_records": ["ia:womenswar0000coop_t2x7", "promise:bwb_daily_pallets_2021-01-25", "promise:bwb_daily_pallets_2020-11-19"], "local_id": ["urn:bwbsku:KO-689-146", "urn:bwbsku:KO-452-378"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T15:42:37.783198"}}
+/type/edition /books/OL10806507M 5 2022-12-08T06:58:30.262012 {"publishers": ["Hodder Wayland"], "weight": "4.2 ounces", "title": "China (We Come from)", "isbn_10": ["0750243864"], "number_of_pages": 32, "isbn_13": ["9780750243865"], "covers": [2591633], "edition_name": "New Ed edition", "physical_format": "Paperback", "key": "/books/OL10806507M", "authors": [{"key": "/authors/OL381425A"}], "publish_date": "December 12, 2002", "works": [{"key": "/works/OL2618374W"}], "type": {"key": "/type/edition"}, "subjects": ["Human geography / peoples of the world", "China", "For National Curriculum Key Stage 1", "For National Curriculum Key Stage 2", "Children: Grades 3-4"], "physical_dimensions": "10.4 x 8.5 x 0.2 inches", "ocaid": "wecomefromchina0000wate_d4z8", "source_records": ["ia:wecomefromchina0000wate_d4z8", "promise:bwb_daily_pallets_2021-06-17"], "local_id": ["urn:bwbsku:KP-891-145"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-08T06:58:30.262012"}}
+/type/edition /books/OL10806550M 6 2022-12-07T03:58:24.782064 {"identifiers": {"librarything": ["3045077"]}, "title": "Animal Classification", "authors": [{"key": "/authors/OL2824996A"}], "publish_date": "February 12, 2004", "publishers": ["Hodder Wayland"], "weight": "14.9 ounces", "covers": [2591667], "physical_format": "Hardcover", "subjects": ["Animals", "Zoology & animal sciences", "For National Curriculum Key Stage 1", "For National Curriculum Key Stage 2", "Children: Grades 3-4"], "isbn_13": ["9780750245838"], "isbn_10": ["0750245832"], "type": {"key": "/type/edition"}, "physical_dimensions": "10.7 x 8.9 x 0.5 inches", "ocaid": "animalclassifica0000good_q0v3", "source_records": ["ia:animalclassifica0000good_q0v3", "promise:bwb_daily_pallets_2022-03-17"], "key": "/books/OL10806550M", "number_of_pages": 48, "works": [{"key": "/works/OL8466064W"}], "local_id": ["urn:bwbsku:KP-219-448"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-07T03:58:24.782064"}}
+/type/edition /books/OL10806589M 5 2022-12-08T23:53:54.817418 {"publishers": ["Hodder Wayland"], "physical_format": "Hardcover", "weight": "1 pounds", "title": "Light and Sound (Science Files)", "number_of_pages": 48, "covers": [2591691], "isbn_13": ["9780750247115"], "isbn_10": ["0750247118"], "publish_date": "June 16, 2005", "key": "/books/OL10806589M", "authors": [{"key": "/authors/OL19896A"}], "works": [{"key": "/works/OL15077618W"}], "type": {"key": "/type/edition"}, "subjects": ["Sound", "Waves, light & optics", "For National Curriculum Key Stage 2", "For National Curriculum Key Stage 3", "Children: Grades 3-4"], "physical_dimensions": "11.2 x 8.7 x 0.5 inches", "ocaid": "lightsound0000oxla_n4n6", "source_records": ["ia:lightsound0000oxla_n4n6", "promise:bwb_daily_pallets_2021-01-29"], "local_id": ["urn:bwbsku:KO-761-716"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-08T23:53:54.817418"}}
+/type/edition /books/OL10806705M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Hodder Children's Books"], "title": "ME & My Body 4 Copy Pack", "isbn_13": ["9780750289078"], "isbn_10": ["0750289074"], "publish_date": "May 17, 2001", "key": "/books/OL10806705M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10806735M 2 2009-12-15T00:54:47.409875 {"publishers": ["Institute of Physics Publishing"], "title": "Introductory Quantum Mechanics - Text and Disk (A Computer Illustrated Text)", "isbn_10": ["0750300132"], "isbn_13": ["9780750300131"], "physical_format": "3.5\" disk", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:54:47.409875"}, "publish_date": "February 1990", "key": "/books/OL10806735M", "authors": [{"key": "/authors/OL3501337A"}], "latest_revision": 2, "subjects": ["Quantum physics (quantum mechanics)"], "works": [{"key": "/works/OL9486509W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10806935M 2 2011-04-26T01:54:52.267730 {"publishers": ["Welsh Office"], "physical_format": "Paperback", "subtitle": "Statistics for Wales (Child Protection Register)", "last_modified": {"type": "/type/datetime", "value": "2011-04-26T01:54:52.267730"}, "title": "Child Protection Register", "number_of_pages": 20, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780750416924"], "isbn_10": ["0750416920"], "publish_date": "August 31, 1997", "key": "/books/OL10806935M", "latest_revision": 2, "oclc_numbers": ["230951338"], "type": {"key": "/type/edition"}, "subjects": ["Child abuse", "Child welfare", "Reference works", "Social research & statistics", "Wales", "c 1990 to c 2000"], "revision": 2}
+/type/edition /books/OL10807144M 4 2011-04-30T03:23:55.180048 {"publishers": ["Ulverscroft Large Print"], "number_of_pages": 541, "weight": "1.4 pounds", "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-30T03:23:55.180048"}, "latest_revision": 4, "key": "/books/OL10807144M", "authors": [{"key": "/authors/OL740692A"}], "subjects": ["General", "Modern fiction", "Fiction - General", "Large Print"], "edition_name": "Largeprint edition", "languages": [{"key": "/languages/eng"}], "classifications": {}, "title": "Tiger Lilies", "notes": {"type": "/type/text", "value": "Magna Library Series"}, "identifiers": {}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780750505475"], "isbn_10": ["0750505478"], "publish_date": "July 1993", "oclc_numbers": ["60025583"], "works": [{"key": "/works/OL4012825W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 1.5 inches", "revision": 4}
+/type/edition /books/OL1080715M 10 2022-12-17T12:13:07.328046 {"publishers": ["Viking"], "identifiers": {"goodreads": ["1082991"], "librarything": ["562278"], "amazon": [""]}, "subtitle": "the simple art of cooking with infused oils, flavored vinegars, essences, and elixirs", "isbn_10": ["0670855235"], "covers": [8480216], "lc_classifications": ["TX406 .B7 1994", "TX406.B7 1994"], "key": "/books/OL1080715M", "authors": [{"key": "/authors/OL443770A"}], "publish_places": ["New York"], "contributions": ["Kinsolving, Katharine."], "pagination": "xii, 285 p. :", "source_records": ["amazon:0670855235", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:117785357:812", "ia:essentialflavors0000bren", "promise:bwb_daily_pallets_2020-07-30", "bwb:9780670855230"], "title": "Essential flavors", "dewey_decimal_class": ["641.6/382"], "notes": {"type": "/type/text", "value": "Includes index."}, "number_of_pages": 285, "languages": [{"key": "/languages/eng"}], "lccn": ["94004215"], "subjects": ["Spices.", "Flavoring essences.", "Oils and fats, Edible.", "Cookery (Vinegar)"], "publish_date": "1994", "publish_country": "nyu", "by_statement": "Leslie Brenner & Katharine Kinsolving.", "oclc_numbers": ["29877153"], "works": [{"key": "/works/OL2913528W"}], "type": {"key": "/type/edition"}, "ocaid": "essentialflavors0000bren", "local_id": ["urn:bwbsku:O6-EGR-949"], "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T12:13:07.328046"}}
+/type/edition /books/OL10807243M 6 2022-12-13T04:11:11.475785 {"title": "Storm Water", "authors": [{"key": "/authors/OL1133762A"}], "publish_date": "February 1996", "physical_format": "Hardcover", "languages": [{"key": "/languages/eng"}], "publishers": ["Ulverscroft Large Print"], "isbn_10": ["075050756X"], "edition_name": "Large Print Ed edition", "isbn_13": ["9780750507561"], "subjects": ["General", "Modern fiction", "Sagas", "Fiction", "Fiction - General"], "type": {"key": "/type/edition"}, "ocaid": "stormwater0000ling", "source_records": ["ia:stormwater0000ling", "promise:bwb_daily_pallets_2022-03-17"], "key": "/books/OL10807243M", "number_of_pages": 690, "works": [{"key": "/works/OL5133941W"}], "local_id": ["urn:bwbsku:KP-433-201"], "covers": [13049345], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-13T04:11:11.475785"}}
+/type/edition /books/OL10807671M 7 2022-12-07T18:53:05.080411 {"publishers": ["Ulverscroft Large Print"], "number_of_pages": 479, "weight": "1.3 pounds", "physical_format": "Hardcover", "key": "/books/OL10807671M", "authors": [{"key": "/authors/OL1009666A"}], "subjects": ["Adventure / thriller", "Fiction", "Fiction - Mystery/ Detective", "Mystery/Suspense", "Mystery & Detective - General", "Action & Adventure", "Technological"], "edition_name": "Lrg edition", "languages": [{"key": "/languages/eng"}], "source_records": ["bwb:9780750516853", "promise:bwb_daily_pallets_2022-03-17"], "title": "Prelude to War", "identifiers": {"goodreads": ["6975451"]}, "isbn_13": ["9780750516853"], "isbn_10": ["0750516852"], "publish_date": "June 2001", "works": [{"key": "/works/OL4797970W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.4 x 5.6 x 1.2 inches", "local_id": ["urn:bwbsku:KQ-373-349"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-07T18:53:05.080411"}}
+/type/edition /books/OL10807800M 2 2009-12-15T00:54:47.409875 {"physical_format": "Paperback", "publishers": ["Butterworth-Heinemann Ltd"], "isbn_10": ["0750602457"], "number_of_pages": 160, "edition_name": "New Ed edition", "isbn_13": ["9780750602457"], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:54:47.409875"}, "publish_date": "August 31, 1991", "latest_revision": 2, "key": "/books/OL10807800M", "authors": [{"key": "/authors/OL3389551A"}], "title": "Electronics 2", "subjects": ["Electronics & Communications Engineering"], "works": [{"key": "/works/OL9344724W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10807829M 2 2010-08-17T04:33:21.515175 {"publishers": ["Butterworth-Heinemann"], "number_of_pages": 140, "last_modified": {"type": "/type/datetime", "value": "2010-08-17T04:33:21.515175"}, "title": "Cryogenics Safety Manual", "type": {"key": "/type/edition"}, "identifiers": {"librarything": ["8405359"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780750603539"], "isbn_10": ["0750603534"], "publish_date": "November 1991", "key": "/books/OL10807829M", "latest_revision": 2, "physical_format": "Hardcover", "subjects": ["Low temperature engineering", "Safety measure"], "revision": 2}
+/type/edition /books/OL10807905M 2 2009-12-15T00:54:47.409875 {"publishers": ["Butterworth-Heinemann Ltd"], "key": "/books/OL10807905M", "title": "Palliation Thoracic Malignancy:", "isbn_13": ["9780750607179"], "physical_format": "Hardcover", "isbn_10": ["0750607173"], "publish_date": "June 30, 1999", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:54:47.409875"}, "authors": [{"key": "/authors/OL3501520A"}], "latest_revision": 2, "works": [{"key": "/works/OL9486671W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10808191M 3 2011-04-27T22:02:12.955213 {"publishers": ["Made Simple"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T22:02:12.955213"}, "title": "Modern World History Made Simple (Made Simple Books)", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 400, "edition_name": "New Ed edition", "isbn_13": ["9780750617956"], "isbn_10": ["0750617950"], "publish_date": "July 13, 1993", "key": "/books/OL10808191M", "authors": [{"key": "/authors/OL2702703A"}], "latest_revision": 3, "oclc_numbers": ["650171674"], "works": [{"key": "/works/OL8112719W"}], "type": {"key": "/type/edition"}, "subjects": ["World history: from c 1900 -"], "revision": 3}
+/type/edition /books/OL10808641M 2 2010-04-13T06:17:12.731922 {"publishers": ["Butterworth-Heinemann"], "isbn_10": ["0750635754"], "number_of_pages": 288, "isbn_13": ["9780750635752"], "covers": [2591943], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:17:12.731922"}, "publish_date": "December 1997", "latest_revision": 2, "key": "/books/OL10808641M", "authors": [{"key": "/authors/OL2673651A"}, {"key": "/authors/OL511847A"}], "title": "CIM Workbooks Understanding Customers 97/98 (CIM Student Workbook)", "subjects": ["Market research", "c 1990 to c 2000", "Marketing - General", "Business / Economics / Finance"], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10808857M 4 2012-05-30T17:15:36.857547 {"publishers": ["Butterworth-Heinemann"], "number_of_pages": 448, "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2012-05-30T17:15:36.857547"}, "latest_revision": 4, "key": "/books/OL10808857M", "authors": [{"key": "/authors/OL3501858A"}], "subjects": ["Art techniques & principles", "History Of Art / Art & Design Styles", "Historic Preservation", "Methods & Materials", "Remodeling & Renovation - General", "Techniques - General", "Architecture", "Art"], "isbn_13": ["9780750642453"], "classifications": {}, "title": "Conservation of Plasterwork", "notes": {"type": "/type/text", "value": "Butterworth - Heinemann Series in Conservation and Museology"}, "identifiers": {}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0750642459"], "publish_date": "May 30, 2005", "oclc_numbers": ["228215561"], "works": [{"key": "/works/OL9486999W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL1080918M 6 2021-08-19T05:40:58.975929 {"publishers": ["West Pub. Co."], "number_of_pages": 445, "subtitle": "the problems of the U.S. Courts of Appeals", "isbn_10": ["0314034943"], "subject_place": ["United States."], "lc_classifications": ["KF8750 .B35 1994"], "key": "/books/OL1080918M", "authors": [{"key": "/authors/OL420660A"}], "publish_places": ["St. Paul, Minn"], "contributions": ["Justice Research Institute."], "pagination": "xxi, 445 p. ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:117962062:921", "ia:rationingjustice0000bake"], "title": "Rationing justice on appeal", "dewey_decimal_class": ["347.73/24", "347.3073"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 303-426) and index.\n\"A report of the Justice Research Institute.\""}, "identifiers": {"goodreads": ["3794402"]}, "languages": [{"key": "/languages/eng"}], "lccn": ["94004434"], "subjects": ["Appellate courts -- United States.", "Appellate procedure -- United States.", "Law reform -- United States."], "publish_date": "1994", "publish_country": "mnu", "by_statement": "by Thomas E. Baker.", "oclc_numbers": ["29845349"], "works": [{"key": "/works/OL2821187W"}], "type": {"key": "/type/edition"}, "covers": [11702882], "ocaid": "rationingjustice0000bake", "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2021-08-19T05:40:58.975929"}}
+/type/edition /books/OL10810262M 7 2022-05-25T00:24:14.463293 {"publishers": ["Sutton Publishing Ltd"], "identifiers": {"librarything": ["2815261"]}, "weight": "7.8 ounces", "covers": [2592664], "physical_format": "Paperback", "key": "/books/OL10810262M", "authors": [{"key": "/authors/OL119088A"}], "subjects": ["British & Irish history", "Local history", "Photographs: collections", "Essex"], "classifications": {}, "title": "Clacton-on-Sea in Old Photographs", "notes": {"type": "/type/text", "value": "Britain in Old Photographs"}, "number_of_pages": 128, "isbn_13": ["9780750909310"], "isbn_10": ["0750909315"], "publish_date": "November 30, 1995", "oclc_numbers": ["35137803"], "works": [{"key": "/works/OL1178271W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.4 x 6.1 x 0.4 inches", "source_records": ["bwb:9780750909310"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T00:24:14.463293"}}
+/type/edition /books/OL10811167M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["HLT Publications"], "title": "Law of Trusts (Bachelor of Laws (LLB) S.)", "isbn_13": ["9780751004953"], "isbn_10": ["0751004952"], "publish_date": "January 4, 1995", "key": "/books/OL10811167M", "type": {"key": "/type/edition"}, "subjects": ["c 1990 to c 2000", "English law: equity & trusts", "English law: wills & probate"], "revision": 1}
+/type/edition /books/OL10811531M 5 2010-04-24T18:09:34.009122 {"publishers": ["Ashgate Publishing"], "number_of_pages": 216, "weight": "14.1 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0751202827"], "identifiers": {"goodreads": ["1549948"]}, "isbn_13": ["9780751202823"], "covers": [5076528], "edition_name": "New Ed edition", "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:09:34.009122"}, "latest_revision": 5, "key": "/books/OL10811531M", "authors": [{"key": "/authors/OL836782A"}], "publish_date": "April 1994", "title": "Lockes Philosophy of Science & Knowledge (Modern Revivals in Philosophy)", "works": [{"key": "/works/OL4305511W"}], "type": {"key": "/type/edition"}, "subjects": ["Epistemology, theory of knowledge", "Epistemology", "Philosophy"], "physical_dimensions": "8.5 x 5.6 x 0.9 inches", "revision": 5}
+/type/edition /books/OL1081173M 9 2022-12-13T10:21:40.174886 {"notes": {"type": "/type/text", "value": "Includes bibliographical references and indexes."}, "identifiers": {"goodreads": ["4472909"]}, "title": "Guide to books on AIDS", "authors": [{"key": "/authors/OL576382A"}], "publish_date": "1995", "publishers": ["Nova Science Publishers, Inc."], "isbn_10": ["1560721790"], "subject_place": ["Bibliography."], "lc_classifications": ["Z6664.A27 R87 1995", "RC607.A26 R87 1995"], "publish_places": ["New York"], "pagination": "98 p. ;", "source_records": ["marc:marc_records_scriblio_net/part24.dat:43647919:646", "marc:marc_ithaca_college/ic_marc.mrc:143662330:668", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:118193639:646", "ia:guidetobooksonai0000russ"], "dewey_decimal_class": ["016.3621/969792"], "languages": [{"key": "/languages/eng"}], "lccn": ["94004701"], "subjects": ["AIDS (Disease) -- Bibliography"], "publish_country": "nyu", "by_statement": "compiled by Randall P. Russel.", "type": {"key": "/type/edition"}, "ocaid": "guidetobooksonai0000russ", "key": "/books/OL1081173M", "number_of_pages": 98, "works": [{"key": "/works/OL3460183W"}], "covers": [13060147], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-13T10:21:40.174886"}}
+/type/edition /books/OL10811763M 4 2010-04-13T06:17:12.731922 {"publishers": ["Dorling Kindersley Publishers Ltd"], "physical_format": "Paperback", "key": "/books/OL10811763M", "title": "Incontinence in Women (BMA Family Doctor)", "number_of_pages": 80, "covers": [2593214], "isbn_13": ["9780751306729"], "isbn_10": ["075130672X"], "publish_date": "June 17, 1999", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:17:12.731922"}, "authors": [{"key": "/authors/OL833973A"}], "latest_revision": 4, "works": [{"key": "/works/OL4295125W"}], "type": {"key": "/type/edition"}, "subjects": ["Coping with personal problems", "Reference works", "Women's health"], "revision": 4}
+/type/edition /books/OL10812650M 4 2010-04-24T18:09:34.009122 {"publishers": ["Dorling Kindersley Publishers Ltd"], "weight": "41.9 pounds", "title": "RHS Pruning and Training 12+1 Free Tower", "identifiers": {"goodreads": ["3659253"]}, "isbn_13": ["9780751323733"], "physical_format": "Unknown Binding", "authors": [{"key": "/authors/OL2711884A"}], "isbn_10": ["075132373X"], "publish_date": "November 4, 1996", "key": "/books/OL10812650M", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:09:34.009122"}, "latest_revision": 4, "works": [{"key": "/works/OL8138715W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10812716M 4 2010-04-24T18:09:34.009122 {"publishers": ["Dorling Kindersley Publishers Ltd"], "weight": "56.1 pounds", "title": "Dk Oxford Illustrated Dictionary 8+1disp C", "identifiers": {"goodreads": ["2105832"]}, "isbn_13": ["9780751325461"], "physical_format": "Unknown Binding", "authors": [{"key": "/authors/OL2711884A"}], "isbn_10": ["0751325465"], "publish_date": "August 6, 1998", "key": "/books/OL10812716M", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:09:34.009122"}, "latest_revision": 4, "works": [{"key": "/works/OL8138562W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10813272M 4 2010-04-24T18:09:34.009122 {"publishers": ["Dorling Kindersley Publishers Ltd"], "identifiers": {"goodreads": ["4704826"]}, "subtitle": "Digital Photography (Special Sales", "source_records": ["amazon:075133829X"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_10": ["075133829X"], "title": "Essential Computers", "isbn_13": ["9780751338294"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:09:34.009122"}, "publish_date": "January 1, 2000", "key": "/books/OL10813272M", "authors": [{"key": "/authors/OL2629888A"}], "latest_revision": 4, "works": [{"key": "/works/OL274878W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10813535M 4 2020-08-23T04:35:32.099506 {"publishers": ["Dorling Kindersley Publishers Ltd"], "identifiers": {"librarything": ["3195261"]}, "covers": [10377900], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2020-08-23T04:35:32.099506"}, "latest_revision": 4, "key": "/books/OL10813535M", "ocaid": "greatinventions0000pars", "subjects": ["Inventions", "Inventors, engineers & medical figures", "Picture books"], "source_records": ["ia:greatinventions0000pars"], "title": "What's Inside? Great Inventions (What's Inside?)", "number_of_pages": 24, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780751350340"], "isbn_10": ["0751350346"], "publish_date": "August 4, 1993", "oclc_numbers": ["26857250"], "works": [{"key": "/works/OL21528116W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10813752M 4 2022-11-17T20:29:43.598270 {"publishers": ["Dorling Kindersley Publishers Ltd"], "physical_format": "Paperback", "subtitle": "Things That Go", "key": "/books/OL10813752M", "title": "Picture Word Cards", "identifiers": {"goodreads": ["4726832"]}, "isbn_13": ["9780751354171"], "isbn_10": ["0751354171"], "publish_date": "April 25, 1996", "authors": [{"key": "/authors/OL2711884A"}, {"key": "/authors/OL2629888A"}], "type": {"key": "/type/edition"}, "subjects": ["Things that go"], "works": [{"key": "/works/OL29347116W"}], "source_records": ["bwb:9780751354171"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T20:29:43.598270"}}
+/type/edition /books/OL10814139M 2 2011-04-28T02:20:26.256618 {"publishers": ["Dorling Kindersley Publishers Ltd"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-28T02:20:26.256618"}, "title": "Tree (Eyewitness Video)", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780751360820"], "isbn_10": ["0751360821"], "publish_date": "August 1996", "key": "/books/OL10814139M", "latest_revision": 2, "oclc_numbers": ["68617584"], "type": {"key": "/type/edition"}, "subjects": ["Botany & plant sciences", "Trees & wildflowers"], "revision": 2}
+/type/edition /books/OL10814224M 4 2010-08-17T04:36:03.891579 {"publishers": ["Dorling Kindersley Publishers Ltd"], "identifiers": {"librarything": ["3257190"]}, "last_modified": {"type": "/type/datetime", "value": "2010-08-17T04:36:03.891579"}, "title": "Jen the Hen's Big Book (Big Books, Rhyme-and-read Books)", "type": {"key": "/type/edition"}, "number_of_pages": 24, "isbn_13": ["9780751361988"], "covers": [2594064], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0751361984"], "publish_date": "July 6, 2001", "key": "/books/OL10814224M", "authors": [{"key": "/authors/OL220769A"}, {"key": "/authors/OL2623136A"}], "latest_revision": 4, "works": [{"key": "/works/OL15066398W"}], "physical_format": "Hardcover", "subjects": ["English language early readers", "English language: speaking / pronunciation skills"], "revision": 4}
+/type/edition /books/OL10814237M 4 2022-12-10T07:43:24.797001 {"publishers": ["Dorling Kindersley Publishers Ltd"], "physical_format": "Paperback", "key": "/books/OL10814237M", "weight": "8.8 ounces", "title": "Kids' Guide to the Internet", "number_of_pages": 48, "covers": [2594075], "isbn_13": ["9780751362152"], "isbn_10": ["0751362158"], "publish_date": "October 14, 1999", "authors": [{"key": "/authors/OL445715A"}], "works": [{"key": "/works/OL2925018W"}], "type": {"key": "/type/edition"}, "subjects": ["Internet & communications"], "physical_dimensions": "10.6 x 8.3 x 0.2 inches", "local_id": ["urn:bwbsku:KN-845-006"], "source_records": ["promise:bwb_daily_pallets_2020-06-24"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T07:43:24.797001"}}
+/type/edition /books/OL10814645M 9 2022-12-09T18:14:37.045258 {"publishers": ["Dorling Kindersley Publishers Ltd"], "number_of_pages": 32, "title": "Lego Puzzle Story (DK Lego)", "identifiers": {"librarything": ["4312035"], "goodreads": ["4687797"]}, "isbn_13": ["9780751371017"], "covers": [2594272], "physical_format": "Paperback", "isbn_10": ["0751371017"], "publish_date": "September 23, 1999", "key": "/books/OL10814645M", "authors": [{"key": "/authors/OL2711884A"}], "oclc_numbers": ["41834545"], "works": [{"key": "/works/OL8138643W"}], "type": {"key": "/type/edition"}, "subjects": ["Interactive & activity books & packs", "Puzzle adventures", "Science fiction"], "ocaid": "rockraiders0000knig", "source_records": ["ia:rockraiders0000knig", "promise:bwb_daily_pallets_2020-10-22"], "local_id": ["urn:bwbsku:KO-584-712"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T18:14:37.045258"}}
+/type/edition /books/OL10814829M 2 2009-12-15T00:54:52.650856 {"publishers": ["Dorling Kindersley Publishers Ltd"], "subtitle": "22 - Copy Stockpack", "weight": "11 pounds", "title": "English Made Easy Promotion: 22 - Copy Stockpack", "isbn_10": ["0751377775"], "isbn_13": ["9780751377774"], "physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:54:52.650856"}, "publish_date": "June 7, 2000", "key": "/books/OL10814829M", "authors": [{"key": "/authors/OL2711884A"}], "latest_revision": 2, "works": [{"key": "/works/OL8138579W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10814858M 3 2022-11-17T19:01:28.718337 {"publishers": ["Dorling Kindersley Publishers Ltd"], "subtitle": "Wine Pack (Debenhams)", "title": "Dk 101s", "isbn_13": ["9780751378474"], "physical_format": "Paperback", "isbn_10": ["075137847X"], "publish_date": "April 5, 2000", "key": "/books/OL10814858M", "authors": [{"key": "/authors/OL29153A"}], "works": [{"key": "/works/OL15196355W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780751378474"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T19:01:28.718337"}}
+/type/edition /books/OL10814884M 5 2011-01-06T01:58:15.816795 {"publishers": ["Dorling Kindersley Ltd"], "classifications": {}, "last_modified": {"type": "/type/datetime", "value": "2011-01-06T01:58:15.816795"}, "title": "DK LEGO READERS 12 COPY COUNTERPK", "notes": {"type": "/type/text", "value": "DK Readers"}, "identifiers": {"goodreads": ["4690211"]}, "isbn_13": ["9780751379730"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0751379735"], "publish_date": "May 4, 2000", "key": "/books/OL10814884M", "authors": [{"key": "/authors/OL2702900A"}], "latest_revision": 5, "works": [{"key": "/works/OL8113356W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10814938M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Dorling Kindersley Publishers Ltd"], "title": "My Batteries Kit", "isbn_13": ["9780751381702"], "isbn_10": ["0751381705"], "publish_date": "January 15, 1996", "key": "/books/OL10814938M", "type": {"key": "/type/edition"}, "subjects": ["Children's stationery & miscellaneous items", "Electricity & magnets"], "revision": 1}
+/type/edition /books/OL10815199M 3 2019-02-19T00:07:46.603009 {"publishers": ["Blackie Academic & Professional"], "weight": "1.7 pounds", "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2019-02-19T00:07:46.603009"}, "latest_revision": 3, "key": "/books/OL10815199M", "authors": [{"key": "/authors/OL3244298A"}], "contributions": ["A.A. Jones (Editor)"], "subjects": ["Food & beverage technology", "Production & quality control management", "Food Science", "Food Biotechnology", "Technology", "Science/Mathematics"], "first_sentence": {"type": "/type/text", "value": "Foods are perishable by nature."}, "source_records": ["marc:marc_oregon_summit_records/catalog_files/osu_bibs.mrc:914246915:1080"], "title": "Shelf Life Evaluation of Foods", "number_of_pages": 352, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780751400335"], "isbn_10": ["0751400335"], "publish_date": "January 1995", "works": [{"key": "/works/OL9172574W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.8 x 6.8 x 1 inches", "revision": 3}
+/type/edition /books/OL10815597M 2 2011-06-08T03:23:06.443056 {"publishers": ["Dorling Kindersley Publishers Ltd"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-06-08T03:23:06.443056"}, "title": "Bb1 - Sound and Music", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780751602012"], "isbn_10": ["0751602019"], "latest_revision": 2, "key": "/books/OL10815597M", "oclc_numbers": ["222855792"], "type": {"key": "/type/edition"}, "subjects": ["English language readers"], "revision": 2}
+/type/edition /books/OL10815958M 3 2022-12-08T15:10:51.567461 {"publishers": ["BPP Business Education Ltd"], "physical_format": "Paperback", "subtitle": "Practice and Revision Kit (2002) (ACCA Practice & Revision Kit)", "title": "ACCA Part 3 - 3.6 Advanced Corporate Reporting: Exams - 06-02, 12-02", "number_of_pages": 286, "isbn_13": ["9780751705249"], "isbn_10": ["0751705241"], "publish_date": "January 31, 2002", "key": "/books/OL10815958M", "oclc_numbers": ["228119994"], "type": {"key": "/type/edition"}, "works": [{"key": "/works/OL31695207W"}], "local_id": ["urn:bwbsku:KP-486-986"], "source_records": ["promise:bwb_daily_pallets_2021-04-07"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-08T15:10:51.567461"}}
+/type/edition /books/OL10816044M 2 2009-12-15T00:54:53.833235 {"publishers": ["BPP Publishing Ltd"], "title": "Acca Part 2 - 2.6 Audit & Internal Review (Acca Revision Kits)", "isbn_10": ["0751707643"], "isbn_13": ["9780751707649"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:54:53.833235"}, "publish_date": "January 14, 2003", "key": "/books/OL10816044M", "authors": [{"key": "/authors/OL2828100A"}], "latest_revision": 2, "subjects": ["Management accounting", "21st century", "Study guides, home study & revision notes"], "works": [{"key": "/works/OL8472385W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10816047M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "subtitle": "Study Text (2001)", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["BPP Business Education Ltd"], "title": "CAT Paper C1 - Drafting Financial Statements: International: Exam Dates: Dec 2001, Jun 2002", "isbn_13": ["9780751707670"], "isbn_10": ["0751707678"], "publish_date": "June 2001", "key": "/books/OL10816047M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10816084M 3 2011-04-25T20:53:23.300661 {"publishers": ["BPP Publishing Ltd"], "subtitle": "Management Information (Acca Practice & Revision Kits)", "last_modified": {"type": "/type/datetime", "value": "2011-04-25T20:53:23.300661"}, "title": "Acca Paper 3 - Foundation", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780751708073"], "physical_format": "Paperback", "isbn_10": ["0751708070"], "publish_date": "January 31, 2001", "key": "/books/OL10816084M", "authors": [{"key": "/authors/OL2828100A"}], "latest_revision": 3, "oclc_numbers": ["52928950"], "works": [{"key": "/works/OL8472583W"}], "type": {"key": "/type/edition"}, "subjects": ["Accounting", "Management & management techniques", "21st century", "Study guides, home study & revision notes"], "revision": 3}
+/type/edition /books/OL1081626M 8 2022-12-09T19:17:12.573781 {"publishers": ["Random House"], "number_of_pages": 110, "isbn_10": ["0679867481"], "subject_place": ["United States"], "lc_classifications": ["PN2287.S3368 C66 1994"], "key": "/books/OL1081626M", "authors": [{"key": "/authors/OL383094A"}], "publish_places": ["New York"], "pagination": "110 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:118596469:964", "ia:meetarnoldschwar0000conk", "promise:bwb_daily_pallets_2020-10-14"], "title": "Meet Arnold Schwarzenegger", "dewey_decimal_class": ["791.43/028/092", "B"], "identifiers": {"goodreads": ["2408070"], "librarything": ["3764397"]}, "languages": [{"key": "/languages/eng"}], "lccn": ["94005180"], "subjects": ["Schwarzenegger, Arnold -- Juvenile literature.", "Schwarzenegger, Arnold.", "Motion picture actors and actresses -- United States -- Biography -- Juvenile literature.", "Bodybuilders -- United States -- Biography -- Juvenile literature.", "Actors and actresses.", "Bodybuilders."], "publish_date": "1994", "publish_country": "nyu", "series": ["A Bullseye biography"], "by_statement": "by Thomas Conklin.", "oclc_numbers": ["29910744"], "works": [{"key": "/works/OL2629361W"}], "type": {"key": "/type/edition"}, "covers": [11678657], "ocaid": "meetarnoldschwar0000conk", "local_id": ["urn:bwbsku:P6-BNP-634"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T19:17:12.573781"}}
+/type/edition /books/OL108162M 6 2020-12-02T09:34:20.488787 {"number_of_pages": 1352, "table_of_contents": [{"pagenum": "1077", "level": 0, "type": {"key": "/type/toc_item"}}], "subject_place": ["Portugal."], "lc_classifications": ["KKQ2070 .C355 1998"], "edition_name": "2a. ed.", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part28.utf8:97348078:746"], "title": "Direito constitucional e teoria da constituic\u0327a\u0303o", "languages": [{"key": "/languages/por"}], "subjects": ["Constitutional law -- Portugal.", "Constitutional law."], "publish_country": "po ", "by_statement": "J.J. Gomes Canotilho.", "type": {"key": "/type/edition"}, "publishers": ["Almedina"], "key": "/books/OL108162M", "authors": [{"key": "/authors/OL72517A"}], "publish_places": ["Coimbra"], "pagination": "1352 p. ;", "dewey_decimal_class": ["342.469"], "notes": "Includes bibliographical references and index.", "identifiers": {"librarything": ["247928"], "goodreads": ["6374159"]}, "lccn": ["99226673"], "isbn_10": ["972401102X"], "publish_date": "1998", "works": [{"key": "/works/OL842669W"}], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-02T09:34:20.488787"}}
+/type/edition /books/OL10816405M 2 2009-12-15T00:54:53.833235 {"physical_format": "Paperback", "weight": "3.2 pounds", "title": "CIMA P9 (Cima Strategic Level Text)", "isbn_10": ["0751716928"], "publishers": ["BPP Professional Education"], "edition_name": "Rev Ed edition", "isbn_13": ["9780751716924"], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:54:53.833235"}, "publish_date": "July 30, 2004", "key": "/books/OL10816405M", "authors": [{"key": "/authors/OL2828101A"}], "latest_revision": 2, "subjects": ["Budgeting & financial management", "Management accounting", "Business/Economics"], "works": [{"key": "/works/OL8472823W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "11.3 x 8.1 x 1.3 inches", "revision": 2}
+/type/edition /books/OL10816483M 3 2011-04-25T16:20:27.877721 {"publishers": ["BPP Professional Education"], "physical_format": "CD-ROM", "last_modified": {"type": "/type/datetime", "value": "2011-04-25T16:20:27.877721"}, "title": "CIMA C2 Financial Accounting Fundamentals", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "edition_name": "Rev Ed edition", "isbn_13": ["9780751718744"], "isbn_10": ["0751718742"], "publish_date": "October 31, 2004", "key": "/books/OL10816483M", "authors": [{"key": "/authors/OL2828101A"}], "latest_revision": 3, "oclc_numbers": ["67374045"], "works": [{"key": "/works/OL8472782W"}], "type": {"key": "/type/edition"}, "subjects": ["Financial accounting", "Business/Economics"], "revision": 3}
+/type/edition /books/OL10816664M 2 2011-04-30T08:54:48.093192 {"publishers": ["BPP (Letts Educational) Ltd"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-30T08:54:48.093192"}, "title": "CIMA - Strategic Financial Management (Stage 4)", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780751730524"], "isbn_10": ["0751730521"], "publish_date": "1995", "key": "/books/OL10816664M", "latest_revision": 2, "oclc_numbers": ["85930843"], "type": {"key": "/type/edition"}, "subjects": ["Budgeting & financial management"], "revision": 2}
+/type/edition /books/OL10816677M 3 2022-12-09T01:47:37.818271 {"publishers": ["BPP (Letts Educational) Ltd"], "physical_format": "Paperback", "subtitle": "Organisational Management and Development (CIMA)", "title": "CIMA Study Text Stage 3", "isbn_13": ["9780751730708"], "isbn_10": ["075173070X"], "key": "/books/OL10816677M", "oclc_numbers": ["122297522"], "type": {"key": "/type/edition"}, "works": [{"key": "/works/OL31787669W"}], "local_id": ["urn:bwbsku:KO-715-788"], "source_records": ["promise:bwb_daily_pallets_2021-01-22"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T01:47:37.818271"}}
+/type/edition /books/OL10816850M 1 2008-04-30T09:38:13.731961 {"physical_format": "Spiral-bound", "subtitle": "MCQ Cards (2000)", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["BPP Business Education Ltd"], "title": "CIMA Paper 3a - Stage 1: Economics for Business: Exam Dates - 05-01", "isbn_13": ["9780751736229"], "isbn_10": ["0751736228"], "publish_date": "July 2000", "key": "/books/OL10816850M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10817042M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["BPP (Letts Educational) Ltd"], "title": "Business Law Study Text", "isbn_13": ["9780751740042"], "isbn_10": ["0751740047"], "publish_date": "1993", "key": "/books/OL10817042M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10817062M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["BPP (Letts Educational) Ltd"], "title": "CIMA Marketing Operations Text (CIMA Guides)", "isbn_13": ["9780751740325"], "isbn_10": ["0751740322"], "publish_date": "1995", "key": "/books/OL10817062M", "type": {"key": "/type/edition"}, "subjects": ["Sales & marketing", "Study guides, home study & revision notes"], "revision": 1}
+/type/edition /books/OL10817312M 2 2009-12-15T00:54:54.892282 {"publishers": ["BPP Publishing Ltd"], "title": "ICSA Study Text", "isbn_10": ["0751750891"], "isbn_13": ["9780751750898"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:54:54.892282"}, "publish_date": "September 1998", "key": "/books/OL10817312M", "authors": [{"key": "/authors/OL2828106A"}], "latest_revision": 2, "subjects": ["Company secretary: role & responsibilities", "English law: company law", "Secretarial & office skills", "Study guides, home study & revision notes"], "works": [{"key": "/works/OL8472899W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10817456M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "subtitle": "Corporate Finance Regulation and Taxation FA96 (ICSA Practice and Revision Kit)", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["BPP (Letts Educational) Ltd"], "title": "ICSA Practice and Revision Kit", "isbn_13": ["9780751759440"], "isbn_10": ["0751759449"], "publish_date": "1996", "key": "/books/OL10817456M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10817493M 2 2011-04-30T05:15:32.083864 {"publishers": ["BPP (Letts Educational) Ltd"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-30T05:15:32.083864"}, "title": "AAT - Taxation - Unit 19 (Technician Stage) Tutorial Text", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780751760361"], "isbn_10": ["0751760366"], "publish_date": "June 1994", "key": "/books/OL10817493M", "latest_revision": 2, "oclc_numbers": ["316234140"], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10817606M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "subtitle": "Interactive Text (1999)", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["BPP Business Education Ltd"], "title": "AAT Unit 5 - Intermediate Stage: Cost Information: Exam Dates - 12-99, 06-00", "isbn_13": ["9780751761559"], "isbn_10": ["0751761559"], "publish_date": "May 1999", "key": "/books/OL10817606M", "type": {"key": "/type/edition"}, "subjects": ["Accounting", "Cost accounting"], "revision": 1}
+/type/edition /books/OL10817808M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "title": "Planning & Decision-Making Core Module 6", "publishers": ["BPP (Letts Educational) Ltd"], "isbn_13": ["9780751770056"], "isbn_10": ["0751770051"], "key": "/books/OL10817808M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10817910M 2 2009-12-15T00:54:54.892282 {"physical_format": "Paperback", "title": "Financial Planning Certificate (Fpc Study Text)", "isbn_10": ["0751799505"], "publishers": ["BPP Publishing Ltd"], "edition_name": "5Rev Ed edition", "isbn_13": ["9780751799507"], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:54:54.892282"}, "publish_date": "May 1999", "key": "/books/OL10817910M", "authors": [{"key": "/authors/OL2828100A"}], "latest_revision": 2, "subjects": ["Accounting", "Finance", "Financial services industry"], "works": [{"key": "/works/OL8472620W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10818639M 3 2019-07-31T10:36:28.089480 {"publishers": ["Health Education Authority"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2019-07-31T10:36:28.089480"}, "title": "Public Health Regulations - Making the Link", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780752118048"], "isbn_10": ["0752118048"], "publish_date": "February 9, 2000", "key": "/books/OL10818639M", "latest_revision": 3, "oclc_numbers": ["45256178"], "works": [{"key": "/works/OL2432934W"}], "type": {"key": "/type/edition"}, "subjects": ["English law: statutes & regulations", "Public health & preventive medicine"], "revision": 3}
+/type/edition /books/OL10818696M 5 2022-10-31T22:21:20.813942 {"publishers": ["Boxtree Ltd"], "number_of_pages": 96, "title": "My \"Neighbours\" Diary", "identifiers": {"goodreads": ["1377326"]}, "isbn_13": ["9780752201139"], "physical_format": "Paperback", "isbn_10": ["0752201131"], "publish_date": "October 31, 1995", "key": "/books/OL10818696M", "authors": [{"key": "/authors/OL3503092A"}, {"key": "/authors/OL3503093A"}], "oclc_numbers": ["35137717"], "type": {"key": "/type/edition"}, "subjects": ["Biography: general", "Television", "Australia"], "works": [{"key": "/works/OL29252403W"}], "source_records": ["amazon:0752201131"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-31T22:21:20.813942"}}
+/type/edition /books/OL10819238M 3 2010-04-13T06:18:06.007347 {"publishers": ["Boxtree Ltd"], "physical_format": "Hardcover", "key": "/books/OL10819238M", "weight": "1.4 ounces", "title": "The Little Book of Dylan", "number_of_pages": 48, "covers": [2594992], "isbn_13": ["9780752225227"], "isbn_10": ["0752225227"], "publish_date": "February 4, 2005", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:18:06.007347"}, "authors": [{"key": "/authors/OL2828223A"}], "latest_revision": 3, "works": [{"key": "/works/OL8473156W"}], "type": {"key": "/type/edition"}, "subjects": ["Humour & jokes", "Cinema/Film: Book"], "physical_dimensions": "4.5 x 4.4 x 0.6 inches", "revision": 3}
+/type/edition /books/OL10819259M 6 2022-12-03T21:38:01.885741 {"publishers": ["Boxtree Ltd"], "identifiers": {"goodreads": ["797852"]}, "subtitle": "An Irreverent Guide to Relationships", "weight": "4 ounces", "covers": [2595010], "physical_format": "Paperback", "key": "/books/OL10819259M", "authors": [{"key": "/authors/OL3091944A"}, {"key": "/authors/OL2824884A"}], "subjects": ["Humour", "Topic - Relationships", "Humor"], "isbn_13": ["9780752261539"], "title": "He Says Mars, She Says Venus", "number_of_pages": 128, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0752261533"], "publish_date": "January 2002", "oclc_numbers": ["48108958"], "type": {"key": "/type/edition"}, "physical_dimensions": "4.5 x 2.9 x 0.5 inches", "works": [{"key": "/works/OL31196656W"}], "source_records": ["amazon:0752261533"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-03T21:38:01.885741"}}
+/type/edition /books/OL10819469M 5 2022-05-25T00:18:23.368805 {"publishers": ["Tempus Publishing Ltd"], "number_of_pages": 128, "title": "Tring", "identifiers": {"goodreads": ["4108359"], "librarything": ["4050448"]}, "isbn_13": ["9780752403717"], "physical_format": "Paperback", "isbn_10": ["0752403710"], "publish_date": "1996", "key": "/books/OL10819469M", "authors": [{"key": "/authors/OL2026925A"}, {"key": "/authors/OL2828656A"}], "type": {"key": "/type/edition"}, "works": [{"key": "/works/OL27776838W"}], "source_records": ["bwb:9780752403717"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T00:18:23.368805"}}
+/type/edition /books/OL10819954M 6 2020-08-28T01:42:48.797542 {"publishers": ["Tempus"], "identifiers": {"goodreads": ["6030145"]}, "subtitle": "1740-1917", "weight": "1.2 pounds", "covers": [2595210], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2020-08-28T01:42:48.797542"}, "latest_revision": 6, "key": "/books/OL10819954M", "authors": [{"key": "/authors/OL2828561A"}], "subjects": ["Maritime history", "History", "History - General History", "History: World", "North Sea", "General", "Transportation / Ships & Shipbuilding / History", "Europe - Great Britain - General"], "isbn_13": ["9780752417493"], "source_records": ["bwb:9780752417493"], "title": "The Comprehensive Guide to Shipwrecks of the North East Coast: Volume One", "number_of_pages": 224, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0752417495"], "publish_date": "November 1, 2000", "works": [{"key": "/works/OL8473908W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.6 x 6.8 x 0.7 inches", "revision": 6}
+/type/edition /books/OL10819966M 3 2022-05-25T02:05:20.998077 {"publishers": ["Tempus Pub Ltd"], "languages": [{"key": "/languages/eng"}], "title": "Waco", "number_of_pages": 128, "isbn_13": ["9780752417677"], "physical_format": "Paperback", "isbn_10": ["0752417673"], "publish_date": "December 2000", "key": "/books/OL10819966M", "authors": [{"key": "/authors/OL3503418A"}, {"key": "/authors/OL3503419A"}], "oclc_numbers": ["49394807"], "type": {"key": "/type/edition"}, "subjects": ["Aircraft: general interest", "Military - Aviation", "History", "History: World"], "works": [{"key": "/works/OL27779694W"}], "source_records": ["bwb:9780752417677"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T02:05:20.998077"}}
+/type/edition /books/OL10820116M 5 2022-05-25T03:23:53.732473 {"publishers": ["Tempus"], "subtitle": "Crystal Palace Football Club (100 Greats)", "weight": "11.4 ounces", "covers": [2595295], "physical_format": "Paperback", "key": "/books/OL10820116M", "authors": [{"key": "/authors/OL3503467A"}], "subjects": ["Soccer (Association football)", "Sports & Recreation", "Sports", "London, Greater London", "Sports & Recreation / Soccer", "Soccer"], "languages": [{"key": "/languages/eng"}], "title": "100 Greats", "number_of_pages": 128, "isbn_13": ["9780752421766"], "isbn_10": ["075242176X"], "publish_date": "November 1, 2001", "oclc_numbers": ["149119977"], "works": [{"key": "/works/OL9489154W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.1 x 6.5 x 0.4 inches", "source_records": ["bwb:9780752421766"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T03:23:53.732473"}}
+/type/edition /books/OL1082038M 11 2021-09-17T16:10:21.055411 {"publishers": ["M.E. Sharpe"], "number_of_pages": 1230, "subtitle": "an economic, historical, and legal analysis", "isbn_10": ["1563240858", "1563241803", "1563241811"], "series": ["Columbia University seminar series"], "covers": [1895127, 1895125, 1895068], "lc_classifications": ["KF1649.A2 A419 1994", "KF1649.A2A419 1994"], "key": "/books/OL1082038M", "publish_places": ["Armonk, N.Y"], "contributions": ["Kovaleff, Theodore Philip, 1943-"], "pagination": "2 v. (1230 p.) :", "source_records": ["marc:marc_records_scriblio_net/part24.dat:44415112:844", "marc:marc_ithaca_college/ic_marc.mrc:134438886:824", "marc:talis_openlibrary_contribution/talis-openlibrary-contribution.mrc:821155411:613", "bwb:9781563241802", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:118953371:844", "bwb:9781563241819", "bwb:9781563240850"], "title": "The antitrust impulse", "dewey_decimal_class": ["343.73/0721", "347.303721"], "notes": {"type": "/type/text", "value": "Includes bibliographical references and index."}, "identifiers": {"goodreads": ["4715406"]}, "languages": [{"key": "/languages/eng"}], "lccn": ["94005618"], "subjects": ["Antitrust law -- United States"], "publish_date": "1994", "publish_country": "nyu", "subject_place": ["United States."], "by_statement": "Theodore P. Kovaleff, editor.", "works": [{"key": "/works/OL18325078W"}], "type": {"key": "/type/edition"}, "latest_revision": 11, "revision": 11, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2021-09-17T16:10:21.055411"}}
+/type/edition /books/OL10820772M 4 2022-12-05T07:38:57.106035 {"publishers": ["Parragon Plus"], "identifiers": {"librarything": ["1401758"]}, "title": "Wordsworth (Illustrated Poets)", "type": {"key": "/type/edition"}, "number_of_pages": 96, "isbn_13": ["9780752516189"], "isbn_10": ["0752516183"], "publish_date": "December 31, 1996", "key": "/books/OL10820772M", "oclc_numbers": ["225927131"], "physical_format": "Hardcover", "subjects": ["Biography: general", "Poetry & poets: 19th century", "English"], "works": [{"key": "/works/OL31316697W"}], "local_id": ["urn:bwbsku:KQ-692-380"], "source_records": ["promise:bwb_daily_pallets_2022-05-23"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-05T07:38:57.106035"}}
+/type/edition /books/OL10820801M 1 2008-04-30T09:38:13.731961 {"physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Siena"], "number_of_pages": 16, "isbn_13": ["9780752517285"], "isbn_10": ["0752517287"], "publish_date": "June 10, 1996", "key": "/books/OL10820801M", "title": "The Jam Panda's Calculator Book (Jam Pandas)", "type": {"key": "/type/edition"}, "subjects": ["Arithmetic", "Learning & study skills"], "revision": 1}
+/type/edition /books/OL10820860M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "subtitle": "Virgo", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Parragon Plus"], "title": "Horoscopes", "isbn_13": ["9780752519067"], "isbn_10": ["0752519069"], "publish_date": "December 31, 1996", "key": "/books/OL10820860M", "type": {"key": "/type/edition"}, "subjects": ["Star signs & horoscopes"], "revision": 1}
+/type/edition /books/OL10820949M 2 2022-12-09T09:09:22.607463 {"physical_format": "Hardcover", "publishers": ["Parragon Plus"], "number_of_pages": 10, "isbn_13": ["9780752524931"], "isbn_10": ["0752524933"], "publish_date": "April 1999", "key": "/books/OL10820949M", "title": "Family Toe Go on Holiday (Family Toe)", "type": {"key": "/type/edition"}, "subjects": ["Fiction", "TRAVEL & HOLIDAY"], "works": [{"key": "/works/OL31831797W"}], "local_id": ["urn:bwbsku:KO-929-075"], "source_records": ["promise:bwb_daily_pallets_2020-12-07"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T09:09:22.607463"}}
+/type/edition /books/OL10820953M 3 2011-04-27T10:04:45.586918 {"publishers": ["Siena / Parragon"], "last_modified": {"type": "/type/datetime", "value": "2011-04-27T10:04:45.586918"}, "title": "World At War", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780752524986"], "physical_format": "Hardcover", "isbn_10": ["0752524984"], "publish_date": "1998", "key": "/books/OL10820953M", "authors": [{"key": "/authors/OL446633A"}], "latest_revision": 3, "oclc_numbers": ["43026528"], "works": [{"key": "/works/OL2930227W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10821194M 4 2022-11-15T06:22:55.885468 {"publishers": ["Parragon Publishing"], "title": "How to Draw Anything - A Complete Guide", "identifiers": {"librarything": ["278612"]}, "isbn_13": ["9780752538143"], "physical_format": "Hardcover", "isbn_10": ["0752538144"], "publish_date": "2000", "key": "/books/OL10821194M", "oclc_numbers": ["47911824"], "type": {"key": "/type/edition"}, "works": [{"key": "/works/OL29310406W"}], "source_records": ["amazon:0752538144"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-15T06:22:55.885468"}}
+/type/edition /books/OL10821641M 2 2010-04-13T06:18:06.007347 {"publishers": ["Parragon Plus"], "isbn_10": ["0752590294"], "number_of_pages": 384, "isbn_13": ["9780752590295"], "covers": [2595564], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:18:06.007347"}, "publish_date": "September 1, 2002", "latest_revision": 2, "key": "/books/OL10821641M", "title": "The Ultimate Book of Jokes", "subjects": ["Jokes & riddles", "Leisure Interests, Hobbies & Sport"], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10821713M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Parragon Publishing"], "number_of_pages": 48, "isbn_13": ["9780752598161"], "isbn_10": ["0752598163"], "publish_date": "June 2003", "key": "/books/OL10821713M", "title": "Card Games (Tins)", "type": {"key": "/type/edition"}, "subjects": ["Games & Activities - Card Games", "Children's Books/Ages 9-12 Nonfiction"], "revision": 1}
+/type/edition /books/OL10821809M 6 2010-08-17T04:37:14.265310 {"publishers": ["Orion Publishing Co"], "number_of_pages": 352, "last_modified": {"type": "/type/datetime", "value": "2010-08-17T04:37:14.265310"}, "title": "The Whole Story OME", "physical_format": "Paperback", "identifiers": {"goodreads": ["2270177"], "librarything": ["6345291"]}, "covers": [2595582], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780752808611"], "isbn_10": ["0752808613"], "publish_date": "April 7, 1997", "key": "/books/OL10821809M", "authors": [{"key": "/authors/OL3503674A"}], "latest_revision": 6, "works": [{"key": "/works/OL9489395W"}], "type": {"key": "/type/edition"}, "subjects": ["Biography: general"], "revision": 6}
+/type/edition /books/OL10821839M 5 2019-07-31T10:38:45.586072 {"publishers": ["Orion Publishing@co"], "number_of_pages": 288, "last_modified": {"type": "/type/datetime", "value": "2019-07-31T10:38:45.586072"}, "title": "Money the Battle for Howard Hughes MILLI", "identifiers": {"goodreads": ["686363"]}, "isbn_13": ["9780752813912"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Hardcover", "isbn_10": ["0752813919"], "publish_date": "March 16, 1998", "key": "/books/OL10821839M", "authors": [{"key": "/authors/OL2686477A"}, {"key": "/authors/OL1586204A"}], "latest_revision": 5, "oclc_numbers": ["38590675"], "works": [{"key": "/works/OL2629217W"}], "type": {"key": "/type/edition"}, "subjects": ["USA", "Biography: general", "Entrepreneurship"], "revision": 5}
+/type/edition /books/OL10822568M 8 2022-12-07T06:59:20.552728 {"publishers": ["Isis Large Print"], "number_of_pages": 320, "weight": "1.2 pounds", "physical_format": "Hardcover", "key": "/books/OL10822568M", "authors": [{"key": "/authors/OL3502548A"}], "subjects": ["European history: Second World War", "Biography & Autobiography", "History - Military / War", "Biography/Autobiography", "Europe", "Military - World War II", "Nursing - General", "Women"], "edition_name": "Lrg edition", "languages": [{"key": "/languages/eng"}], "classifications": {}, "title": "Nurses at War", "notes": {"type": "/type/text", "value": "Ulverscroft Nonfiction"}, "identifiers": {"librarything": ["5603214"], "goodreads": ["5338655"]}, "isbn_13": ["9780753154984"], "isbn_10": ["0753154986"], "publish_date": "September 2001", "works": [{"key": "/works/OL9487713W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.5 x 6.4 x 1.1 inches", "covers": [12658385], "ocaid": "nursesatwarwomen0000star_q0z8", "lc_classifications": ["D810.W7 S73 2000"], "source_records": ["ia:nursesatwarwomen0000star_q0z8", "promise:bwb_daily_pallets_2022-03-17"], "local_id": ["urn:bwbsku:KP-430-319"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-07T06:59:20.552728"}}
+/type/edition /books/OL10822650M 4 2011-04-26T15:10:33.147554 {"publishers": ["Ulverscroft Large Print"], "number_of_pages": 216, "weight": "8 ounces", "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-26T15:10:33.147554"}, "latest_revision": 4, "key": "/books/OL10822650M", "authors": [{"key": "/authors/OL1236429A"}], "subjects": ["Biography: general", "Education"], "isbn_13": ["9780753193112"], "classifications": {}, "title": "The Residuary Legatee", "notes": {"type": "/type/text", "value": "Isis Nonfiction"}, "identifiers": {}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0753193116"], "publish_date": "July 2006", "oclc_numbers": ["58051940"], "works": [{"key": "/works/OL5367555W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6.1 x 0.7 inches", "revision": 4}
+/type/edition /books/OL10822717M 5 2022-12-08T23:40:22.572893 {"publishers": ["Ulverscroft Large Print"], "identifiers": {}, "physical_format": "Paperback", "key": "/books/OL10822717M", "authors": [{"key": "/authors/OL1025158A"}], "subjects": ["Health & Fitness", "Biography / Autobiography", "Health/Fitness", "Handicapped", "Personal Memoirs", "Specific Groups - Special Needs", "Vision"], "edition_name": "Largeprint edition", "languages": [{"key": "/languages/eng"}], "classifications": {}, "title": "Emma And I", "notes": {"type": "/type/text", "value": "Isis"}, "number_of_pages": 256, "isbn_13": ["9780753199596"], "isbn_10": ["0753199599"], "publish_date": "June 30, 2005", "oclc_numbers": ["55693856"], "works": [{"key": "/works/OL4840325W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:KP-047-438"], "source_records": ["promise:bwb_daily_pallets_2021-02-01"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-08T23:40:22.572893"}}
+/type/edition /books/OL10822832M 5 2010-04-24T18:10:03.404107 {"number_of_pages": 32, "subtitle": "ME and My Body", "covers": [2595922], "latest_revision": 5, "contributions": ["Anthony Lewis (Illustrator)"], "source_records": ["amazon:0753402513"], "title": "Fun Finding Out", "subjects": ["Body & health"], "type": {"key": "/type/edition"}, "revision": 5, "publishers": ["Kingfisher Books Ltd"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:10:03.404107"}, "key": "/books/OL10822832M", "authors": [{"key": "/authors/OL27574A"}], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "identifiers": {"goodreads": ["2438874"]}, "isbn_13": ["9780753402511"], "isbn_10": ["0753402513"], "publish_date": "May 4, 1998", "works": [{"key": "/works/OL30569W"}]}
+/type/edition /books/OL10822888M 4 2022-12-09T23:58:34.710851 {"publishers": ["Kingfisher Books Ltd"], "weight": "5 ounces", "title": "California Gold Rush (Sightseers)", "number_of_pages": 31, "isbn_13": ["9780753403730"], "covers": [2595956], "physical_format": "Paperback", "isbn_10": ["0753403730"], "publish_date": "September 2, 1999", "key": "/books/OL10822888M", "oclc_numbers": ["41465123"], "type": {"key": "/type/edition"}, "subjects": ["American history: c 1500 to c 1900", "California", "USA", "c 1800 to c 1900"], "physical_dimensions": "8.8 x 6.1 x 0.4 inches", "works": [{"key": "/works/OL31923324W"}], "local_id": ["urn:bwbsku:KN-847-977"], "source_records": ["promise:bwb_daily_pallets_2020-09-09"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T23:58:34.710851"}}
+/type/edition /books/OL1082363M 7 2022-12-04T11:41:25.442560 {"publishers": ["Celestial Arts"], "number_of_pages": 40, "subtitle": "experiences of childhood sexual abuse and Healing", "isbn_10": ["0890877114"], "lc_classifications": ["RC569.5.A28 H67 1994"], "key": "/books/OL1082363M", "authors": [{"key": "/authors/OL576790A"}], "publish_places": ["Berkeley, Calif"], "pagination": "xiv, 40 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:119237339:682", "promise:bwb_daily_pallets_2022-09-07"], "title": "Survivors", "dewey_decimal_class": ["616.85/8369"], "identifiers": {"librarything": ["5440878"], "goodreads": ["867066"]}, "languages": [{"key": "/languages/eng"}], "lccn": ["94005951"], "subjects": ["Adult child sexual abuse victims -- Portraits.", "Adult child sexual abuse victims."], "publish_date": "1994", "publish_country": "cau", "by_statement": "by Khristne Hopkins.", "oclc_numbers": ["29877967"], "works": [{"key": "/works/OL3462023W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:O8-CWW-916"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T11:41:25.442560"}}
+/type/edition /books/OL10823733M 3 2010-08-17T04:38:28.103854 {"publishers": ["Bounty Books"], "physical_format": "Hardcover", "weight": "3.2 pounds", "title": "Figure Drawing & Anatomy", "identifiers": {"librarything": ["767480"]}, "last_modified": {"type": "/type/datetime", "value": "2010-08-17T04:38:28.103854"}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780753712795"], "isbn_10": ["0753712792"], "publish_date": "January 1, 2007", "key": "/books/OL10823733M", "authors": [{"key": "/authors/OL1456667A"}], "latest_revision": 3, "works": [{"key": "/works/OL5902150W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "11.6 x 8.7 x 1 inches", "revision": 3}
+/type/edition /books/OL10823943M 3 2011-01-07T09:22:16.099011 {"publishers": ["Chivers Large print (Chivers, Windsor, Paragon & C"], "number_of_pages": 328, "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-01-07T09:22:16.099011"}, "latest_revision": 3, "key": "/books/OL10823943M", "authors": [{"key": "/authors/OL2820787A"}], "subjects": ["Biography: film, television & music", "Television"], "edition_name": "Large Print Ed edition", "classifications": {}, "title": "Cilla Black", "notes": {"type": "/type/text", "value": "Windsor Selections"}, "identifiers": {}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780754013518"], "isbn_10": ["0754013510"], "publish_date": "December 1, 1999", "works": [{"key": "/works/OL8454128W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10824509M 7 2010-08-17T04:38:28.103854 {"publishers": ["BBC Audiobooks Ltd"], "weight": "2.9 ounces", "covers": [2596603], "physical_format": "Audio CD", "last_modified": {"type": "/type/datetime", "value": "2010-08-17T04:38:28.103854"}, "latest_revision": 7, "key": "/books/OL10824509M", "authors": [{"key": "/authors/OL30266A"}], "contributions": ["Ewan Stewart (Narrator)"], "subjects": ["Crime & mystery", "Mystery/Suspense"], "edition_name": "New Ed edition", "title": "Hide and Seek (BBC MP3-CD Audio Collection)", "identifiers": {"goodreads": ["352836"], "librarything": ["122273"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780754076223"], "isbn_10": ["0754076229"], "publish_date": "January 3, 2005", "works": [{"key": "/works/OL483830W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "5.6 x 5 x 0.5 inches", "revision": 7}
+/type/edition /books/OL10824583M 7 2022-12-10T14:22:22.131263 {"publishers": ["Chivers Press"], "number_of_pages": 197, "weight": "13.6 ounces", "covers": [2596619], "physical_format": "Hardcover", "key": "/books/OL10824583M", "authors": [{"key": "/authors/OL26205A"}], "subjects": ["Westerns - General", "Fiction", "Fiction - Western", "Westerns"], "edition_name": "New Ed edition", "languages": [{"key": "/languages/eng"}], "title": "The Owl Hoot Trail (Gunsmoke Western)", "identifiers": {"goodreads": ["161566"], "amazon": [""]}, "isbn_13": ["9780754081807"], "isbn_10": ["075408180X"], "publish_date": "July 2002", "oclc_numbers": ["59450724"], "type": {"key": "/type/edition"}, "physical_dimensions": "7.5 x 4.8 x 0.7 inches", "works": [{"key": "/works/OL25070283W"}], "ocaid": "owlhoottrail0000fost", "lc_classifications": ["PS3511"], "source_records": ["ia:owlhoottrail0000fost", "promise:bwb_daily_pallets_2020-03-26"], "local_id": ["urn:bwbsku:586-BAA-390"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T14:22:22.131263"}}
+/type/edition /books/OL10824694M 6 2011-04-30T14:19:08.526300 {"publishers": ["Chivers"], "identifiers": {"goodreads": ["295607"]}, "subtitle": "A Firefighter's Story of Survival and Escape from the World Trade Center", "covers": [5076627], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-30T14:19:08.526300"}, "latest_revision": 6, "key": "/books/OL10824694M", "authors": [{"key": "/authors/OL2702132A"}, {"key": "/authors/OL834367A"}], "subjects": ["True stories of endurance & survival", "USA", "New York", "New York (State)", "Rescue work", "September 11 Terrorist Attacks", "September 11 Terrorist Attacks, 2001", "World Trade Center (New York,", "World Trade Center (New York, N.Y.)", "History: American"], "edition_name": "Largeprint edition", "languages": [{"key": "/languages/eng"}], "title": "Last Man Down", "number_of_pages": 349, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780754092452"], "isbn_10": ["0754092453"], "publish_date": "June 2002", "oclc_numbers": ["50198279"], "works": [{"key": "/works/OL14982317W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL10825264M 5 2011-04-29T20:33:32.841138 {"publishers": ["Minerva Press"], "number_of_pages": 99, "weight": "2.9 ounces", "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T20:33:32.841138"}, "latest_revision": 5, "key": "/books/OL10825264M", "authors": [{"key": "/authors/OL3504383A"}], "subjects": ["Poetry & poets: from c 1900 -", "Works by individual poets: from c 1900 -", "English"], "title": "Nature's Breath", "identifiers": {"goodreads": ["6302337"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780754109044"], "isbn_10": ["0754109046"], "publish_date": "August 7, 2000", "oclc_numbers": ["45329980"], "works": [{"key": "/works/OL9490264W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "6.6 x 4.2 x 0.4 inches", "revision": 5}
+/type/edition /books/OL10825726M 4 2022-12-04T23:23:08.488171 {"publishers": ["Minerva Press"], "physical_format": "Hardcover", "weight": "5.6 ounces", "title": "Lug-lug", "number_of_pages": 28, "isbn_13": ["9780754115489"], "isbn_10": ["0754115488"], "publish_date": "November 1, 2000", "key": "/books/OL10825726M", "authors": [{"key": "/authors/OL3504717A"}, {"key": "/authors/OL3504718A"}], "oclc_numbers": ["46394683"], "type": {"key": "/type/edition"}, "subjects": ["Fiction", "Picture books"], "physical_dimensions": "8 x 8 x 0.3 inches", "works": [{"key": "/works/OL28942123W"}], "covers": [12907289], "ocaid": "luglug0000lugl", "source_records": ["ia:luglug0000lugl", "promise:bwb_daily_pallets_2022-07-11"], "local_id": ["urn:bwbsku:KR-064-041"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T23:23:08.488171"}}
+/type/edition /books/OL10825788M 4 2011-04-30T00:42:47.008797 {"publishers": ["Minerva Press Ltd."], "subtitle": "Man of the Twentieth Century", "weight": "1.2 pounds", "covers": [2596828], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-30T00:42:47.008797"}, "latest_revision": 4, "key": "/books/OL10825788M", "authors": [{"key": "/authors/OL2968421A"}], "subjects": ["Biography: general", "British & Irish history: from c 1900 -", "Political leaders & leadership", "British Isles", "USA", "Historical - British", "Political", "Presidents & Heads of State", "Biography & Autobiography", "Biography / Autobiography", "Biography/Autobiography"], "languages": [{"key": "/languages/eng"}], "title": "Winston s Churchill", "number_of_pages": 296, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780754116264"], "isbn_10": ["0754116263"], "publish_date": "April 2002", "oclc_numbers": ["50055451"], "works": [{"key": "/works/OL8738235W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8 x 5 x 0.7 inches", "revision": 4}
+/type/edition /books/OL10825796M 3 2010-04-13T06:18:06.007347 {"publishers": ["Minerva Press Ltd."], "number_of_pages": 200, "weight": "8.6 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0754116360"], "title": "Beef on the Bone", "isbn_13": ["9780754116363"], "covers": [2596833], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:18:06.007347"}, "latest_revision": 3, "key": "/books/OL10825796M", "authors": [{"key": "/authors/OL3108678A"}], "publish_date": "August 2001", "works": [{"key": "/works/OL8962382W"}], "type": {"key": "/type/edition"}, "subjects": ["Modern fiction", "General", "Fiction", "Fiction - General"], "physical_dimensions": "7.9 x 5.1 x 0.5 inches", "revision": 3}
+/type/edition /books/OL10826101M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Forward Press"], "number_of_pages": 200, "isbn_13": ["9780754321071"], "isbn_10": ["075432107X"], "publish_date": "September 30, 2000", "key": "/books/OL10826101M", "authors": [{"key": "/authors/OL23883A"}], "title": "Up Up and Away Worthing", "type": {"key": "/type/edition"}, "subjects": ["Poetry anthologies: from c 1900 -", "England"], "revision": 1}
+/type/edition /books/OL10826474M 3 2019-07-31T10:39:58.764044 {"publishers": ["Tolley Publishing Co Ltd"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2019-07-31T10:39:58.764044"}, "title": "Tolley's Capital Allowances 2001-02", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780754511939"], "isbn_10": ["0754511936"], "publish_date": "November 19, 2001", "key": "/books/OL10826474M", "authors": [{"key": "/authors/OL3311212A"}, {"key": "/authors/OL3298391A"}], "latest_revision": 3, "oclc_numbers": ["659899106"], "works": [{"key": "/works/OL13755823W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10826548M 5 2011-04-29T09:42:12.691611 {"publishers": ["Tolley Publishing Co Ltd"], "last_modified": {"type": "/type/datetime", "value": "2011-04-29T09:42:12.691611"}, "title": "Gibraltar - International Finance Centre", "identifiers": {"goodreads": ["5690500"]}, "isbn_13": ["9780754513407"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0754513408"], "publish_date": "July 31, 2002", "key": "/books/OL10826548M", "authors": [{"key": "/authors/OL3505096A"}], "latest_revision": 5, "oclc_numbers": ["49691835"], "works": [{"key": "/works/OL9491162W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10826589M 1 2008-04-30T09:38:13.731961 {"physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["LexisNexis UK"], "title": "Tolley's E-Contracts", "isbn_13": ["9780754515043"], "isbn_10": ["0754515044"], "publish_date": "July 7, 2001", "key": "/books/OL10826589M", "authors": [{"key": "/authors/OL1192768A"}, {"key": "/authors/OL46377A"}], "type": {"key": "/type/edition"}, "subjects": ["English law: contract law"], "revision": 1}
+/type/edition /books/OL1082664M 7 2020-11-18T07:37:12.044070 {"publishers": ["McFarland & Co."], "identifiers": {"goodreads": ["3766846"]}, "subtitle": "a guide to 765 books for librarians and teachers, K-9", "isbn_10": ["089950907X"], "covers": [9511382], "lc_classifications": ["Z1232 .A53 1994", "PS173.I6 .A53 1994"], "latest_revision": 7, "key": "/books/OL1082664M", "authors": [{"key": "/authors/OL217644A"}], "ocaid": "nativeamericansi0000ande", "publish_places": ["Jefferson, N.C"], "pagination": "xiii, 166 p. ;", "source_records": ["ia:nativeamericansi0000ande", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:119491821:773"], "title": "Native Americans in fiction", "dewey_decimal_class": ["016.813008/09282"], "notes": {"type": "/type/text", "value": "Includes indexes."}, "number_of_pages": 166, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["94006271"], "subjects": ["Children's stories, American -- Bibliography.", "Indians in literature -- Bibliography."], "publish_date": "1994", "publish_country": "ncu", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T07:37:12.044070"}, "by_statement": "by Vicki Anderson.", "oclc_numbers": ["30028056"], "works": [{"key": "/works/OL1814611W"}], "type": {"key": "/type/edition"}, "revision": 7}
+/type/edition /books/OL1082672M 10 2022-12-04T10:46:37.122938 {"publishers": ["St. Martin's Press"], "number_of_pages": 542, "subtitle": "Ethel Skakel Kennedy : an American drama of power, privilege, and politics", "ia_box_id": ["IA130217"], "isbn_10": ["0312110405"], "subject_place": ["United States"], "covers": [6931691], "ia_loaded_id": ["othermrskennedye00oppe"], "lc_classifications": ["E840.8.K4 O67 1994"], "key": "/books/OL1082672M", "authors": [{"key": "/authors/OL545758A"}], "ocaid": "othermrskennedye00oppe", "publish_places": ["New York"], "subjects": ["Kennedy, Ethel, 1928-", "Kennedy, Robert F., 1925-1968", "Politicians' spouses -- United States -- Biography"], "languages": [{"key": "/languages/eng"}], "pagination": "xiii, 542 p., [16] p. of plates :", "source_records": ["marc:marc_records_scriblio_net/part24.dat:44976803:901", "marc:CollingswoodLibraryMarcDump10-27-2008/Collingswood.out:13670945:1232", "ia:othermrskennedye00oppe", "marc:marc_openlibraries_sanfranciscopubliclibrary/sfpl_chq_2018_12_24_run02.mrc:85969125:1965", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:119497986:901", "promise:bwb_daily_pallets_2022-09-12"], "title": "The other Mrs. Kennedy", "dewey_decimal_class": ["973.922/092", "B"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 489-521) and index."}, "identifiers": {"librarything": ["2268736"], "goodreads": ["70469"]}, "edition_name": "1st ed.", "lccn": ["94006279"], "local_id": ["urn:sfpl:31223052246684", "urn:sfpl:31223035421552", "urn:sfpl:31223036074699", "urn:bwbsku:W7-DBR-790"], "publish_date": "1994", "publish_country": "nyu", "by_statement": "Jerry Oppenheimer.", "works": [{"key": "/works/OL3358972W"}], "type": {"key": "/type/edition"}, "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T10:46:37.122938"}}
+/type/edition /books/OL10827010M 5 2010-04-24T18:10:03.404107 {"publishers": ["Ashgate Pub Ltd"], "number_of_pages": 296, "subtitle": "The Case of the Secretariat of Programming and Budget (The Political Economy of Latin America)", "weight": "12 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0754611043"], "identifiers": {"goodreads": ["2762130"]}, "isbn_13": ["9780754611042"], "covers": [2597013], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:10:03.404107"}, "latest_revision": 5, "key": "/books/OL10827010M", "authors": [{"key": "/authors/OL3505240A"}], "publish_date": "November 1999", "title": "Bureaucracy and Politics in Mexico", "works": [{"key": "/works/OL9491291W"}], "type": {"key": "/type/edition"}, "subjects": ["Central government", "Political science & theory", "Political structure & processes", "Mexico", "Political Process - General", "Political Science", "Politics/International Relations"], "physical_dimensions": "8.5 x 6 x 0.6 inches", "revision": 5}
+/type/edition /books/OL10827105M 4 2010-04-24T18:10:03.404107 {"publishers": ["Ashgate Pub Ltd"], "number_of_pages": 180, "subtitle": "Turkish Berliners and the Politics of Citizenship in Germany (Research in Migration and Ethnic Relations)", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:10:03.404107"}, "title": "Transforming Citizenship from Below", "type": {"key": "/type/edition"}, "identifiers": {"goodreads": ["3488897"]}, "isbn_13": ["9780754614913"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0754614913"], "publish_date": "April 2004", "key": "/books/OL10827105M", "authors": [{"key": "/authors/OL685251A"}], "latest_revision": 4, "works": [{"key": "/works/OL3836646W"}], "physical_format": "Hardcover", "subjects": ["Ethnic studies", "Immigration & emigration", "Emigration & Immigration", "Ethnic Studies - General", "Social Science", "Sociology"], "revision": 4}
+/type/edition /books/OL1082714M 13 2022-12-04T09:03:02.869451 {"publishers": ["Dorling Kindersley"], "identifiers": {"librarything": ["7962"], "goodreads": ["890605"]}, "ia_box_id": ["IA127706"], "isbn_10": ["1564586154"], "covers": [800434, -1], "lc_classifications": ["ND450 .B43 1994"], "key": "/books/OL1082714M", "authors": [{"key": "/authors/OL22645A"}], "ocaid": "storyofpainting00beck", "publish_places": ["London", "New York"], "contributions": ["Wright, Patricia, 1944-"], "subjects": ["Painting, European", "Painting, American"], "languages": [{"key": "/languages/eng"}], "pagination": "400 p. :", "source_records": ["marc:marc_records_scriblio_net/part24.dat:45014671:762", "marc:CollingswoodLibraryMarcDump10-27-2008/Collingswood.out:14407699:1264", "ia:storyofpainting00beck", "marc:marc_openlibraries_sanfranciscopubliclibrary/sfpl_chq_2018_12_24_run02.mrc:94070983:2922", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:119536517:762", "promise:bwb_daily_pallets_2022-09-12"], "title": "The story of painting", "dewey_decimal_class": ["759"], "notes": {"type": "/type/text", "value": "Includes index."}, "number_of_pages": 400, "edition_name": "1st American ed.", "lccn": ["94006322"], "local_id": ["urn:sfpl:31223035170639", "urn:sfpl:31223061032703", "urn:sfpl:31223035170290", "urn:sfpl:31223035170621", "urn:sfpl:31223035170092", "urn:sfpl:31223076189589", "urn:sfpl:31223114497259", "urn:sfpl:31223035170647", "urn:sfpl:31223035171298", "urn:bwbsku:W7-CNL-900"], "publish_date": "1994", "publish_country": "enk", "by_statement": "Wendy Beckett ; contributing consultant, Patricia Wright.", "works": [{"key": "/works/OL11797W"}], "type": {"key": "/type/edition"}, "latest_revision": 13, "revision": 13, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T09:03:02.869451"}}
+/type/edition /books/OL10827153M 6 2020-12-03T19:36:23.254493 {"publishers": ["Ashgate Publishing"], "identifiers": {"goodreads": ["4964425"], "librarything": ["9781479"]}, "subtitle": "Strategic Issues in Health Care Management", "weight": "12.8 ounces", "covers": [5077099], "physical_format": "Hardcover", "key": "/books/OL10827153M", "contributions": ["Rosemary K. Rushmer (Editor)", "Huw T. O. Davies (Editor)", "Manouche Tavakoli (Editor)"], "subjects": ["Health systems & services", "Political Science", "Medical / Nursing", "Politics/International Relations", "Health Care Delivery", "Public Policy - Social Policy", "Congresses", "Great Britain", "Health planning", "Health services administration", "Organizational change"], "isbn_13": ["9780754616115"], "title": "Organisation Development in Health Care", "number_of_pages": 191, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0754616118"], "publish_date": "January 2002", "type": {"key": "/type/edition"}, "physical_dimensions": "8.6 x 5.9 x 0.7 inches", "works": [{"key": "/works/OL23745456W"}], "lccn": ["2001096523"], "lc_classifications": ["RA395.G6 O745 2002"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part28.utf8:241022691:3408"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-03T19:36:23.254493"}}
+/type/edition /books/OL10827453M 3 2011-05-14T07:47:38.729545 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T07:47:38.729545"}, "title": "FOODSNET CORP.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 17, "isbn_13": ["9780597232947"], "edition_name": "April 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597232946"], "publish_date": "April 25, 2000", "key": "/books/OL10827453M", "authors": [{"key": "/authors/OL2727133A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14969727W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10827454M 3 2011-11-10T06:03:44.469019 {"publishers": ["Icon Group International, Inc."], "physical_format": "Ring-bound", "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "last_modified": {"type": "/type/datetime", "value": "2011-11-10T06:03:44.469019"}, "title": "FOOTBALL CLUB KOBENHAVN A/S", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 17, "edition_name": "April 2000 edition", "isbn_13": ["9780597232954"], "isbn_10": ["0597232954"], "publish_date": "April 25, 2000", "key": "/books/OL10827454M", "authors": [{"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL8176729W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10827470M 3 2011-11-10T05:53:55.378072 {"publishers": ["Icon Group International, Inc."], "physical_format": "Ring-bound", "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "last_modified": {"type": "/type/datetime", "value": "2011-11-10T05:53:55.378072"}, "title": "FORESTAL CHOLGUAN S.A.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 17, "edition_name": "April 2000 edition", "isbn_13": ["9780597233111"], "isbn_10": ["059723311X"], "publish_date": "April 25, 2000", "key": "/books/OL10827470M", "authors": [{"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL8176731W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL1082748M 10 2022-06-22T09:05:28.746476 {"publishers": ["Cambridge University Press"], "identifiers": {"goodreads": ["3093362"]}, "subtitle": "from the ultraviolet to the submillimeter", "isbn_10": ["0521410282"], "dewey_decimal_class": ["621.36/2"], "covers": [337397], "lc_classifications": ["QC373.O59 R54 1994", "QC787.P46 R54 1994"], "key": "/books/OL1082748M", "authors": [{"key": "/authors/OL576917A"}], "ocaid": "detectionoflight0000riek", "publish_places": ["Cambridge", "New York, NY, USA"], "contributions": ["Visnovsky, Karen."], "subjects": ["Optical detectors."], "uri_descriptions": ["Table of contents", "Publisher description"], "pagination": "xiv, 344 p. :", "source_records": ["ia:detectionoflight0000riek", "marc:marc_openlibraries_sanfranciscopubliclibrary/sfpl_chq_2018_12_24_run02.mrc:107722244:1504", "bwb:9780521410281", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:119565176:961", "ia:detectionoflight0000riek_g5s4"], "title": "Detection of light", "lccn": ["94006358"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 329-340) and index."}, "number_of_pages": 344, "languages": [{"key": "/languages/eng"}], "url": ["http://www.loc.gov/catdir/toc/cam023/94006358.html", "http://www.loc.gov/catdir/description/cam026/94006358.html"], "local_id": ["urn:sfpl:31223041281073"], "publish_date": "1994", "publish_country": "enk", "by_statement": "G.H. Rieke ; edited by Karen Visnovsky ; illustrated by Karen Swarthout.", "works": [{"key": "/works/OL3462605W"}], "type": {"key": "/type/edition"}, "uris": ["http://www.loc.gov/catdir/toc/cam023/94006358.html", "http://www.loc.gov/catdir/description/cam026/94006358.html"], "oclc_numbers": ["29913222"], "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-22T09:05:28.746476"}}
+/type/edition /books/OL1082783M 7 2020-11-18T07:38:25.720578 {"publishers": ["Avebury"], "number_of_pages": 255, "isbn_10": ["1856286703"], "series": ["Developments in nursing and health care ;", "1"], "covers": [3872854], "lc_classifications": ["RC440 .M33 1994"], "latest_revision": 7, "key": "/books/OL1082783M", "authors": [{"key": "/authors/OL576934A"}], "ocaid": "nursingtheoriesq0000mcke", "publish_places": ["Aldershot, Hants, England", "Brookfield, Vt., USA"], "pagination": "xiv, 255 p. :", "source_records": ["ia:nursingtheoriesq0000mcke", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:119596798:1032"], "title": "Nursing theories and quality of care", "dewey_decimal_class": ["610.73/68"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 227-254)."}, "identifiers": {"goodreads": ["7205341"]}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["94006399"], "subjects": ["Psychiatric nursing -- Philosophy -- Case studies.", "Nursing models -- Evaluation -- Case studies.", "Psychiatric nursing -- Evaluation -- Case studies.", "Psychiatric Nursing.", "Models, Nursing.", "Quality of Health Care -- standards."], "publish_date": "1994", "publish_country": "enk", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T07:38:25.720578"}, "by_statement": "Hugh P. McKenna.", "oclc_numbers": ["29953195"], "works": [{"key": "/works/OL3462662W"}], "type": {"key": "/type/edition"}, "revision": 7}
+/type/edition /books/OL10828799M 3 2011-11-10T19:19:36.343958 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "last_modified": {"type": "/type/datetime", "value": "2011-11-10T19:19:36.343958"}, "title": "INDEPENDENT NEWS AND MEDIA PLC", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 17, "isbn_13": ["9780597246401"], "edition_name": "April 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597246408"], "publish_date": "April 25, 2000", "key": "/books/OL10828799M", "authors": [{"key": "/authors/OL2727138A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14983975W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10828824M 3 2011-11-10T05:57:15.133568 {"publishers": ["Icon Group International, Inc."], "physical_format": "Ring-bound", "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "last_modified": {"type": "/type/datetime", "value": "2011-11-10T05:57:15.133568"}, "title": "INDUSTRIAL CREDIT & INVEST CORP OF INDIA", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 17, "edition_name": "April 2000 edition", "isbn_13": ["9780597246654"], "isbn_10": ["0597246653"], "publish_date": "April 25, 2000", "key": "/books/OL10828824M", "authors": [{"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL8177098W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10829232M 3 2022-04-07T16:44:01.348525 {"publishers": ["Icon Group International"], "languages": [{"key": "/languages/eng"}], "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "title": "JMS CO., LTD.", "number_of_pages": 17, "isbn_13": ["9780597250736"], "edition_name": "April 2000 edition", "physical_format": "Ring-bound", "isbn_10": ["0597250731"], "publish_date": "April 25, 2000", "key": "/books/OL10829232M", "authors": [{"key": "/authors/OL2727138A"}, {"key": "/authors/OL2727133A"}], "works": [{"key": "/works/OL14965384W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-04-07T16:44:01.348525"}}
+/type/edition /books/OL10829439M 3 2011-11-10T01:09:00.309598 {"publishers": ["Icon Group International, Inc."], "physical_format": "Ring-bound", "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "last_modified": {"type": "/type/datetime", "value": "2011-11-10T01:09:00.309598"}, "title": "KELSEY INDUSTRIES PLC", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 17, "edition_name": "April 2000 edition", "isbn_13": ["9780597252808"], "isbn_10": ["0597252807"], "publish_date": "April 25, 2000", "key": "/books/OL10829439M", "authors": [{"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL8177350W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10829767M 3 2022-04-07T16:43:50.128077 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "isbn_10": ["059725608X"], "number_of_pages": 17, "isbn_13": ["9780597256080"], "edition_name": "April 2000 edition", "languages": [{"key": "/languages/eng"}], "publish_date": "April 25, 2000", "key": "/books/OL10829767M", "authors": [{"key": "/authors/OL2727138A"}, {"key": "/authors/OL2727133A"}], "subjects": ["General", "Business / Economics / Finance"], "title": "KYOEI TANKER CO., LTD.", "works": [{"key": "/works/OL14984151W"}], "type": {"key": "/type/edition"}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-04-07T16:43:50.128077"}}
+/type/edition /books/OL10829792M 3 2022-04-07T17:01:38.564918 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "isbn_10": ["0597256330"], "number_of_pages": 17, "isbn_13": ["9780597256332"], "edition_name": "April 2000 edition", "languages": [{"key": "/languages/eng"}], "publish_date": "April 25, 2000", "key": "/books/OL10829792M", "authors": [{"key": "/authors/OL2727138A"}, {"key": "/authors/OL2727133A"}], "subjects": ["General", "Business / Economics / Finance"], "title": "L E LUNDBERGFORETAGEN AB", "works": [{"key": "/works/OL14984197W"}], "type": {"key": "/type/edition"}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-04-07T17:01:38.564918"}}
+/type/edition /books/OL10829902M 3 2011-11-10T01:06:02.452419 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "Labor Productivity Benchmarks and International Gap Analysis", "last_modified": {"type": "/type/datetime", "value": "2011-11-10T01:06:02.452419"}, "title": "LEAD CO., INC. (THE)", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 17, "isbn_13": ["9780597257438"], "edition_name": "April 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597257434"], "publish_date": "April 25, 2000", "key": "/books/OL10829902M", "authors": [{"key": "/authors/OL2727138A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14984187W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10829986M 3 2011-11-10T00:36:00.328464 {"publishers": ["Icon Group International, Inc."], "physical_format": "Ring-bound", "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "last_modified": {"type": "/type/datetime", "value": "2011-11-10T00:36:00.328464"}, "title": "LIFE TECHNOLOGIES, INC.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 17, "edition_name": "April 2000 edition", "isbn_13": ["9780597258275"], "isbn_10": ["0597258279"], "publish_date": "April 25, 2000", "key": "/books/OL10829986M", "authors": [{"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL8177536W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10830079M 3 2011-11-10T06:00:30.175701 {"publishers": ["Icon Group International, Inc."], "physical_format": "Ring-bound", "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "last_modified": {"type": "/type/datetime", "value": "2011-11-10T06:00:30.175701"}, "title": "LONGVIEW FIBRE COMPANY", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 17, "edition_name": "April 2000 edition", "isbn_13": ["9780597259203"], "isbn_10": ["0597259208"], "publish_date": "April 25, 2000", "key": "/books/OL10830079M", "authors": [{"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL8177606W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10830126M 3 2022-04-07T16:42:04.821460 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "isbn_10": ["0597259674"], "number_of_pages": 17, "isbn_13": ["9780597259678"], "edition_name": "April 2000 edition", "languages": [{"key": "/languages/eng"}], "publish_date": "April 25, 2000", "key": "/books/OL10830126M", "authors": [{"key": "/authors/OL2727138A"}, {"key": "/authors/OL2727133A"}], "subjects": ["General", "Business / Economics / Finance"], "title": "LYONDELL CHEMICAL COMPANY", "works": [{"key": "/works/OL14984239W"}], "type": {"key": "/type/edition"}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-04-07T16:42:04.821460"}}
+/type/edition /books/OL10830331M 3 2011-11-10T18:28:55.077642 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "last_modified": {"type": "/type/datetime", "value": "2011-11-10T18:28:55.077642"}, "title": "MASSBANK CORP.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 17, "isbn_13": ["9780597261725"], "edition_name": "April 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597261725"], "publish_date": "April 25, 2000", "key": "/books/OL10830331M", "authors": [{"key": "/authors/OL2727138A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14984303W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10830337M 3 2022-04-06T19:10:15.640883 {"physical_format": "Ring-bound", "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "publishers": ["Icon Group International, Inc."], "isbn_10": ["0597261784"], "number_of_pages": 17, "edition_name": "April 2000 edition", "isbn_13": ["9780597261787"], "publish_date": "April 25, 2000", "key": "/books/OL10830337M", "authors": [{"key": "/authors/OL2727133A"}], "title": "MATEC CORP.", "works": [{"key": "/works/OL8177735W"}], "type": {"key": "/type/edition"}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-04-06T19:10:15.640883"}}
+/type/edition /books/OL1083045M 11 2022-12-08T08:34:40.622340 {"publishers": ["H.W. Wilson"], "identifiers": {"goodreads": ["1586067"], "librarything": ["9235293"]}, "subtitle": "twenty tellable folktales for multicultural festivals", "isbn_10": ["0824208625"], "covers": [3872835], "lc_classifications": ["GR76 .M33 1994", "GR76.M33 1994"], "key": "/books/OL1083045M", "authors": [{"key": "/authors/OL398859A"}], "publish_places": ["Bronx, N.Y"], "pagination": "xiii, 225 p. :", "source_records": ["amazon:0824208625", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:119828245:798", "ia:celebrateworldtw0000macd", "bwb:9780824208622", "promise:bwb_daily_pallets_2021-06-03"], "title": "Celebrate the world", "dewey_decimal_class": ["398.2"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 213-215) and index."}, "number_of_pages": 225, "languages": [{"key": "/languages/eng"}], "lccn": ["94006682"], "subjects": ["Tales.", "Festivals.", "Storytelling.", "Folklore -- Performance."], "publish_date": "1994", "publish_country": "nyu", "by_statement": "by Margaret Read MacDonald ; illustrations by Roxane Murphy Smith.", "oclc_numbers": ["29909024"], "works": [{"key": "/works/OL2724248W"}], "type": {"key": "/type/edition"}, "ocaid": "celebrateworldtw0000macd", "local_id": ["urn:bwbsku:P7-AYW-400"], "latest_revision": 11, "revision": 11, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-08T08:34:40.622340"}}
+/type/edition /books/OL10830588M 3 2022-04-06T19:15:08.067057 {"physical_format": "Ring-bound", "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "publishers": ["Icon Group International, Inc."], "isbn_10": ["0597264309"], "number_of_pages": 17, "edition_name": "April 2000 edition", "isbn_13": ["9780597264306"], "publish_date": "April 25, 2000", "key": "/books/OL10830588M", "authors": [{"key": "/authors/OL2727133A"}], "title": "MICHEL THIERRY SA", "works": [{"key": "/works/OL8177840W"}], "type": {"key": "/type/edition"}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-04-06T19:15:08.067057"}}
+/type/edition /books/OL10830988M 3 2011-11-10T01:09:00.309598 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "last_modified": {"type": "/type/datetime", "value": "2011-11-10T01:09:00.309598"}, "title": "NANOMETRICS INC.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 17, "isbn_13": ["9780597268304"], "edition_name": "April 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597268304"], "publish_date": "April 25, 2000", "key": "/books/OL10830988M", "authors": [{"key": "/authors/OL2727138A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14984584W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10830994M 3 2011-05-14T10:15:09.015772 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T10:15:09.015772"}, "title": "NARASAKI SANGYO CO., LTD.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 17, "isbn_13": ["9780597268366"], "edition_name": "April 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597268363"], "publish_date": "April 25, 2000", "key": "/books/OL10830994M", "authors": [{"key": "/authors/OL2727133A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14965801W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10831182M 3 2011-05-14T05:50:16.255356 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T05:50:16.255356"}, "title": "NICHIMO CO., LTD.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 17, "isbn_13": ["9780597270246"], "edition_name": "April 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597270244"], "publish_date": "April 25, 2000", "key": "/books/OL10831182M", "authors": [{"key": "/authors/OL2727133A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14965871W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Financial Analysis", "Labor Productivity", "Statistical Analysis", "Forecasting", "Company Study", "Human Resources.", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10831389M 2 2011-05-14T10:23:12.419057 {"publishers": ["Icon Group International"], "languages": [{"key": "/languages/eng"}], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2011-05-14T10:23:12.419057"}, "title": "(Labor Productivity Series)", "number_of_pages": 17, "isbn_13": ["9780597272318"], "edition_name": "April 2000 edition", "physical_format": "Ring-bound", "isbn_10": ["059727231X"], "publish_date": "April 25, 2000", "key": "/books/OL10831389M", "authors": [{"key": "/authors/OL2727133A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 2, "works": [{"key": "/works/OL8173560W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Human Resources.", "Company Study", "Forecasting", "Statistical Analysis", "Labor Productivity", "Financial Analysis", "Business / Economics / Finance"], "revision": 2}
+/type/edition /books/OL10831719M 3 2011-05-14T08:49:46.642239 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T08:49:46.642239"}, "title": "ORIENT POWER HOLDINGS LTD.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 17, "isbn_13": ["9780597275616"], "edition_name": "April 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597275610"], "publish_date": "April 25, 2000", "key": "/books/OL10831719M", "authors": [{"key": "/authors/OL2727133A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14972624W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10831794M 3 2011-05-14T08:51:05.885305 {"publishers": ["Icon Group International"], "languages": [{"key": "/languages/eng"}], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T08:51:05.885305"}, "title": "OY SHELL AB", "number_of_pages": 17, "isbn_13": ["9780597276361"], "edition_name": "April 2000 edition", "physical_format": "Ring-bound", "isbn_10": ["0597276366"], "publish_date": "April 25, 2000", "key": "/books/OL10831794M", "authors": [{"key": "/authors/OL2727133A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14972681W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10832003M 3 2011-11-10T05:50:48.259914 {"publishers": ["Icon Group International, Inc."], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "last_modified": {"type": "/type/datetime", "value": "2011-11-10T05:50:48.259914"}, "title": "PETER TEMMING AG", "number_of_pages": 17, "isbn_13": ["9780597278457"], "edition_name": "April 2000 edition", "physical_format": "Ring-bound", "isbn_10": ["0597278458"], "publish_date": "April 25, 2000", "key": "/books/OL10832003M", "authors": [{"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL8178228W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10832469M 3 2011-11-10T19:19:36.343958 {"publishers": ["Icon Group International, Inc."], "physical_format": "Ring-bound", "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "last_modified": {"type": "/type/datetime", "value": "2011-11-10T19:19:36.343958"}, "title": "RAYMOND JAMES FINANCIAL, INC.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 20, "edition_name": "October 2000 edition", "isbn_13": ["9780597283116"], "isbn_10": ["0597283117"], "publish_date": "October 31, 2000", "key": "/books/OL10832469M", "authors": [{"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL8178495W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL1083294M 8 2022-12-09T05:27:07.066116 {"publishers": ["Peterson's"], "number_of_pages": 90, "isbn_10": ["156079352X"], "series": ["Careers without college"], "covers": [1889876], "lc_classifications": ["PN1580 .P45 1994"], "key": "/books/OL1083294M", "authors": [{"key": "/authors/OL577106A"}], "publish_places": ["Princeton, N.J"], "pagination": "xiii, 90 p. :", "source_records": ["amazon:156079352X", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:120038341:698", "ia:entertainment0000pete", "promise:bwb_daily_pallets_2020-12-22"], "title": "Entertainment", "dewey_decimal_class": ["791/.023"], "notes": {"type": "/type/text", "value": "\"A New Century Communications book.\""}, "identifiers": {"goodreads": ["4483073"]}, "languages": [{"key": "/languages/eng"}], "lccn": ["94006948"], "subjects": ["Performing arts -- Vocational guidance.", "Broadcasting -- Vocational guidance."], "publish_date": "1994", "publish_country": "nju", "by_statement": "by Linda Peterson.", "works": [{"key": "/works/OL3463441W"}], "type": {"key": "/type/edition"}, "ocaid": "entertainment0000pete", "local_id": ["urn:bwbsku:O6-EIV-808"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T05:27:07.066116"}}
+/type/edition /books/OL10832988M 3 2022-04-07T16:54:15.704934 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "isbn_10": ["0597288313"], "number_of_pages": 20, "isbn_13": ["9780597288319"], "edition_name": "October 2000 edition", "languages": [{"key": "/languages/eng"}], "publish_date": "October 31, 2000", "key": "/books/OL10832988M", "authors": [{"key": "/authors/OL2727138A"}, {"key": "/authors/OL2727133A"}], "subjects": ["General", "Business / Economics / Finance"], "title": "SASOL LTD.", "works": [{"key": "/works/OL14984887W"}], "type": {"key": "/type/edition"}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-04-07T16:54:15.704934"}}
+/type/edition /books/OL10833074M 3 2011-11-10T19:57:44.249460 {"publishers": ["Icon Group International"], "languages": [{"key": "/languages/eng"}], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "last_modified": {"type": "/type/datetime", "value": "2011-11-10T19:57:44.249460"}, "title": "SCHWEIZERISCHE RUECKVERSICHERUNGS-GES.", "number_of_pages": 20, "isbn_13": ["9780597289187"], "edition_name": "October 2000 edition", "physical_format": "Ring-bound", "isbn_10": ["0597289182"], "publish_date": "October 31, 2000", "key": "/books/OL10833074M", "authors": [{"key": "/authors/OL2727138A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14984905W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10833236M 3 2011-11-10T01:18:23.503587 {"publishers": ["Icon Group International, Inc."], "physical_format": "Ring-bound", "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "last_modified": {"type": "/type/datetime", "value": "2011-11-10T01:18:23.503587"}, "title": "SHAFTESBURY PLC", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 17, "edition_name": "April 2000 edition", "isbn_13": ["9780597290800"], "isbn_10": ["0597290806"], "publish_date": "April 25, 2000", "key": "/books/OL10833236M", "authors": [{"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL8178838W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10833868M 3 2011-11-10T01:06:02.452419 {"publishers": ["Icon Group International"], "languages": [{"key": "/languages/eng"}], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "last_modified": {"type": "/type/datetime", "value": "2011-11-10T01:06:02.452419"}, "title": "STELLENBOSCH FARMERS WINERY GROUP LTD", "number_of_pages": 20, "isbn_13": ["9780597297137"], "edition_name": "October 2000 edition", "physical_format": "Ring-bound", "isbn_10": ["0597297134"], "publish_date": "October 31, 2000", "key": "/books/OL10833868M", "authors": [{"key": "/authors/OL2727138A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14984955W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10833941M 3 2011-05-14T01:03:36.277674 {"publishers": ["Icon Group International, Inc."], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T01:03:36.277674"}, "title": "SUBA INDAH PT.", "number_of_pages": 17, "isbn_13": ["9780597297861"], "edition_name": "April 2000 edition", "physical_format": "Ring-bound", "isbn_10": ["059729786X"], "publish_date": "April 25, 2000", "key": "/books/OL10833941M", "authors": [{"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL8179154W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10834248M 3 2011-05-14T06:07:54.224827 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T06:07:54.224827"}, "title": "TAT KONSERVE SANAYII AS", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 20, "isbn_13": ["9780597300936"], "edition_name": "October 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597300933"], "publish_date": "October 31, 2000", "key": "/books/OL10834248M", "authors": [{"key": "/authors/OL2727138A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14966692W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Financial Analysis", "Labor Productivity", "Statistical Analysis", "Forecasting", "Company Study", "Human Resources.", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10834358M 3 2011-05-14T06:09:07.699239 {"publishers": ["Icon Group International, Inc."], "physical_format": "Ring-bound", "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T06:09:07.699239"}, "title": "TEMPUS GROUP PLC", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 20, "edition_name": "October 2000 edition", "isbn_13": ["9780597302039"], "isbn_10": ["0597302030"], "publish_date": "October 31, 2000", "key": "/books/OL10834358M", "authors": [{"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL8169266W"}], "type": {"key": "/type/edition"}, "subjects": ["Company Study", "Financial Analysis", "Forecasting", "Human Resources.", "Labor Productivity", "Statistical Analysis"], "revision": 3}
+/type/edition /books/OL10834444M 3 2011-05-14T06:10:22.332417 {"publishers": ["Icon Group International, Inc."], "physical_format": "Ring-bound", "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T06:10:22.332417"}, "title": "THOMSON-CSF SA", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 20, "edition_name": "October 2000 edition", "isbn_13": ["9780597302893"], "isbn_10": ["0597302898"], "publish_date": "October 31, 2000", "key": "/books/OL10834444M", "authors": [{"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL8169322W"}], "type": {"key": "/type/edition"}, "subjects": ["Company Study", "Financial Analysis", "Forecasting", "Human Resources.", "Labor Productivity", "Statistical Analysis"], "revision": 3}
+/type/edition /books/OL10834937M 3 2011-05-14T09:47:46.830950 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T09:47:46.830950"}, "title": "UCB SA", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 20, "isbn_13": ["9780597307829"], "edition_name": "October 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597307822"], "publish_date": "October 31, 2000", "key": "/books/OL10834937M", "authors": [{"key": "/authors/OL2727133A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14976462W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Human Resources.", "Company Study", "Forecasting", "Statistical Analysis", "Labor Productivity", "Financial Analysis", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10834977M 3 2011-05-14T06:13:31.679425 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T06:13:31.679425"}, "title": "UNIDARE PLC", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 20, "isbn_13": ["9780597308222"], "edition_name": "October 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597308225"], "publish_date": "October 31, 2000", "key": "/books/OL10834977M", "authors": [{"key": "/authors/OL2727138A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14966890W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Company Study", "Financial Analysis", "Labor Productivity", "Statistical Analysis", "Forecasting", "Human Resources.", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10835013M 3 2011-05-14T06:13:55.813051 {"publishers": ["Icon Group International, Inc."], "physical_format": "Ring-bound", "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T06:13:55.813051"}, "title": "UNIPAPEL, S.A.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 20, "edition_name": "October 2000 edition", "isbn_13": ["9780597308581"], "isbn_10": ["0597308586"], "publish_date": "October 31, 2000", "key": "/books/OL10835013M", "authors": [{"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL8169489W"}], "type": {"key": "/type/edition"}, "subjects": ["Company Study", "Financial Analysis", "Forecasting", "Human Resources.", "Labor Productivity", "Statistical Analysis"], "revision": 3}
+/type/edition /books/OL10835030M 3 2011-05-14T06:14:12.163356 {"publishers": ["Icon Group International, Inc."], "physical_format": "Ring-bound", "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T06:14:12.163356"}, "title": "UNITED DENTAL CARE, INC.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 17, "edition_name": "April 2000 edition", "isbn_13": ["9780597308758"], "isbn_10": ["0597308756"], "publish_date": "April 25, 2000", "key": "/books/OL10835030M", "authors": [{"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL8169506W"}], "type": {"key": "/type/edition"}, "subjects": ["Company Study", "Financial Analysis", "Forecasting", "Human Resources.", "Labor Productivity", "Statistical Analysis"], "revision": 3}
+/type/edition /books/OL10835319M 3 2011-05-14T09:55:54.159664 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T09:55:54.159664"}, "title": "VORARLBERGER VOLKSBANK REG. GEN.M.B.H.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 17, "isbn_13": ["9780597311642"], "edition_name": "April 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597311641"], "publish_date": "April 25, 2000", "key": "/books/OL10835319M", "authors": [{"key": "/authors/OL2727133A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14976596W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Company Study", "Financial Analysis", "Labor Productivity", "Statistical Analysis", "Forecasting", "Human Resources.", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL1083577M 8 2020-11-18T07:46:06.561339 {"publishers": ["Liturgical Press"], "identifiers": {"goodreads": ["2161834"], "librarything": ["2026524"]}, "subtitle": "a pratical guide to shared responsibility", "isbn_10": ["0814621651"], "covers": [611190], "lc_classifications": ["BX1920 .H69 1994"], "latest_revision": 8, "key": "/books/OL1083577M", "authors": [{"key": "/authors/OL223699A"}], "publish_places": ["Collegeville, Minn"], "pagination": "160 p. :", "source_records": ["marc:marc_records_scriblio_net/part24.dat:45770697:754", "marc:marc_loc_updates/v38.i08.records.utf8:1984014:700", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:120278296:700"], "title": "Parish planning", "dewey_decimal_class": ["254/.0273"], "notes": {"type": "/type/text", "value": "Includes bibliographical references."}, "number_of_pages": 160, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["94007251"], "subjects": ["Catholic Church -- Government", "Parish councils", "Clergy", "Lay ministry"], "publish_date": "1994", "publish_country": "mnu", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T07:46:06.561339"}, "by_statement": "Robert G. Howes.", "oclc_numbers": ["30078873"], "works": [{"key": "/works/OL1868375W"}], "type": {"key": "/type/edition"}, "revision": 8}
+/type/edition /books/OL10835867M 3 2011-05-14T06:25:41.231582 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T06:25:41.231582"}, "title": "AG BAD NEUENAHR", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 17, "isbn_13": ["9780597317125"], "edition_name": "April 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597317127"], "publish_date": "April 25, 2000", "key": "/books/OL10835867M", "authors": [{"key": "/authors/OL2727133A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14976898W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Financial Analysis", "Labor Productivity", "Statistical Analysis", "Forecasting", "Company Study", "Human Resources.", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10835953M 3 2011-05-14T06:33:19.685011 {"publishers": ["Icon Group International, Inc."], "physical_format": "Ring-bound", "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T06:33:19.685011"}, "title": "ANGEION CORP.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 17, "edition_name": "April 2000 edition", "isbn_13": ["9780597317989"], "isbn_10": ["0597317984"], "publish_date": "April 25, 2000", "key": "/books/OL10835953M", "authors": [{"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL8169950W"}], "type": {"key": "/type/edition"}, "subjects": ["Company Study", "Financial Analysis", "Forecasting", "Human Resources.", "Labor Productivity", "Statistical Analysis"], "revision": 3}
+/type/edition /books/OL1083662M 8 2022-12-17T13:31:35.777868 {"publishers": ["Knopf", "Distributed by Random House"], "number_of_pages": 260, "description": {"type": "/type/text", "value": "A retelling of classical Greek myths."}, "isbn_10": ["067943643X"], "series": ["Everyman's library children's classics"], "covers": [418183], "lc_classifications": ["PZ8.1.H318 Wo 1994", "PZ8.1.H318Wo 1994"], "key": "/books/OL1083662M", "authors": [{"key": "/authors/OL26681A"}], "publish_places": ["New York"], "contributions": ["Rackham, Arthur, 1867-1939, ill."], "pagination": "260 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:120356096:1096", "bwb:9780679436430"], "title": "A wonder book for girls and boys", "dewey_decimal_class": ["398.2/0938"], "identifiers": {"librarything": ["69815"], "goodreads": ["816216"]}, "languages": [{"key": "/languages/eng"}], "lccn": ["94007352"], "subjects": ["Mythology, Greek -- Juvenile literature.", "Mythology, Greek."], "publish_date": "1994", "publish_country": "nyu", "by_statement": "Nathaniel Hawthorne ; with illustrations by Arthur Rackham.", "oclc_numbers": ["30031288"], "works": [{"key": "/works/OL455667W"}], "type": {"key": "/type/edition"}, "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T13:31:35.777868"}}
+/type/edition /books/OL10836814M 3 2011-05-14T10:11:31.388251 {"publishers": ["Icon Group International, Inc."], "physical_format": "Ring-bound", "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T10:11:31.388251"}, "title": "EPICOR SOFTWARE CORP..", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 17, "edition_name": "April 2000 edition", "isbn_13": ["9780597326592"], "isbn_10": ["0597326592"], "publish_date": "April 25, 2000", "key": "/books/OL10836814M", "authors": [{"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL8170282W"}], "type": {"key": "/type/edition"}, "subjects": ["Company Study", "Financial Analysis", "Forecasting", "Human Resources.", "Labor Productivity", "Statistical Analysis"], "revision": 3}
+/type/edition /books/OL10837014M 3 2011-05-14T07:55:34.385775 {"publishers": ["Icon Group International, Inc."], "physical_format": "Ring-bound", "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T07:55:34.385775"}, "title": "GLOBALINK, INC.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 17, "edition_name": "April 2000 edition", "isbn_13": ["9780597328596"], "isbn_10": ["0597328595"], "publish_date": "April 25, 2000", "key": "/books/OL10837014M", "authors": [{"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL8170364W"}], "type": {"key": "/type/edition"}, "subjects": ["Company Study", "Financial Analysis", "Forecasting", "Human Resources.", "Labor Productivity", "Statistical Analysis"], "revision": 3}
+/type/edition /books/OL10837089M 2 2009-12-15T00:55:07.223727 {"physical_format": "Ring-bound", "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "publishers": ["Icon Group International, Inc."], "isbn_10": ["0597329346"], "number_of_pages": 17, "edition_name": "April 2000 edition", "isbn_13": ["9780597329340"], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:55:07.223727"}, "publish_date": "April 25, 2000", "latest_revision": 2, "key": "/books/OL10837089M", "authors": [{"key": "/authors/OL2727133A"}], "title": "HAMPTON TRUST PLC", "subjects": ["Company Study", "Financial Analysis", "Forecasting", "Human Resources.", "Labor Productivity", "Statistical Analysis"], "works": [{"key": "/works/OL8170404W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10837346M 3 2011-05-14T08:16:20.296568 {"publishers": ["Icon Group International, Inc."], "physical_format": "Ring-bound", "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T08:16:20.296568"}, "title": "IRWIN NATURALS/4HEALTH, INC.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 17, "edition_name": "April 2000 edition", "isbn_13": ["9780597331916"], "isbn_10": ["059733191X"], "publish_date": "April 25, 2000", "key": "/books/OL10837346M", "authors": [{"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL8170636W"}], "type": {"key": "/type/edition"}, "subjects": ["Company Study", "Financial Analysis", "Forecasting", "Human Resources.", "Labor Productivity", "Statistical Analysis"], "revision": 3}
+/type/edition /books/OL10837455M 3 2011-05-14T08:24:15.310970 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "Labor Productivity Benchmarks and International Gap Analysis", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T08:24:15.310970"}, "title": "KROLL-O'GARA COMPANY (THE)", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 17, "isbn_13": ["9780597333002"], "edition_name": "April 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597333009"], "publish_date": "April 25, 2000", "key": "/books/OL10837455M", "authors": [{"key": "/authors/OL2727138A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14975781W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Financial Analysis", "Labor Productivity", "Statistical Analysis", "Forecasting", "Company Study", "Human Resources.", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10837726M 3 2011-05-14T08:36:03.637911 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T08:36:03.637911"}, "title": "MONTEREY PASTA COMPANY", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 17, "isbn_13": ["9780597335716"], "edition_name": "April 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597335710"], "publish_date": "April 25, 2000", "key": "/books/OL10837726M", "authors": [{"key": "/authors/OL2727138A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14975894W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Financial Analysis", "Labor Productivity", "Statistical Analysis", "Forecasting", "Company Study", "Human Resources.", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10837742M 3 2011-05-14T05:48:10.930420 {"publishers": ["Icon Group International, Inc."], "physical_format": "Ring-bound", "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T05:48:10.930420"}, "title": "MS INTERNATIONAL PLC", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 17, "edition_name": "April 2000 edition", "isbn_13": ["9780597335877"], "isbn_10": ["0597335877"], "publish_date": "April 25, 2000", "key": "/books/OL10837742M", "authors": [{"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL8171168W"}], "type": {"key": "/type/edition"}, "subjects": ["Company Study", "Financial Analysis", "Forecasting", "Human Resources.", "Labor Productivity", "Statistical Analysis"], "revision": 3}
+/type/edition /books/OL1083786M 10 2022-02-25T12:12:19.418003 {"publishers": ["University of Texas Press"], "number_of_pages": 282, "subtitle": "from the Aztecs to Independence", "isbn_10": ["0292724853", "0292724861"], "subject_place": ["Mexico"], "covers": [2351798], "lc_classifications": ["F1224 .F5413 1994", "F1224.F5413 1994"], "key": "/books/OL1083786M", "authors": [{"key": "/authors/OL219537A"}], "publish_places": ["Austin"], "lccn": ["94007482"], "uri_descriptions": ["Publisher description"], "edition_name": "1st ed.", "pagination": "ix, 282 p. :", "source_records": ["bwb:9780292724860", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:120472359:1178", "bwb:9780292724853"], "title": "Memory, myth, and time in Mexico", "url": ["http://www.loc.gov/catdir/description/texas041/94007482.html"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. [251]-265) and index."}, "identifiers": {"librarything": ["2748172"], "goodreads": ["5333158", "1404010"]}, "languages": [{"key": "/languages/eng"}], "dewey_decimal_class": ["972/.0072"], "subjects": ["Indians of Mexico -- Historiography.", "Mexico -- Historiography.", "Mexico -- History -- Philosophy."], "publish_date": "1994", "publish_country": "txu", "series": ["Translations from Latin America series"], "by_statement": "by Enrique Florescano ; translated by Albert G. Bork with the assistance of Kathryn R. Bork.", "work_title": ["Memoria mexicana."], "works": [{"key": "/works/OL1833331W"}], "type": {"key": "/type/edition"}, "uris": ["http://www.loc.gov/catdir/description/texas041/94007482.html"], "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-25T12:12:19.418003"}}
+/type/edition /books/OL10838236M 3 2011-05-14T09:04:48.623885 {"publishers": ["Icon Group International, Inc."], "physical_format": "Ring-bound", "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T09:04:48.623885"}, "title": "RIVA GROUP PLC", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 17, "edition_name": "April 2000 edition", "isbn_13": ["9780597340819"], "isbn_10": ["0597340811"], "publish_date": "April 25, 2000", "key": "/books/OL10838236M", "authors": [{"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL8171835W"}], "type": {"key": "/type/edition"}, "subjects": ["Company Study", "Financial Analysis", "Forecasting", "Human Resources.", "Labor Productivity", "Statistical Analysis"], "revision": 3}
+/type/edition /books/OL10838335M 2 2009-12-15T00:55:07.223727 {"physical_format": "Ring-bound", "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "publishers": ["Icon Group International, Inc."], "isbn_10": ["0597341818"], "number_of_pages": 17, "edition_name": "April 2000 edition", "isbn_13": ["9780597341816"], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:55:07.223727"}, "publish_date": "April 25, 2000", "latest_revision": 2, "key": "/books/OL10838335M", "authors": [{"key": "/authors/OL2727133A"}], "title": "SECHILIENNE SA", "subjects": ["Company Study", "Financial Analysis", "Forecasting", "Human Resources.", "Labor Productivity", "Statistical Analysis"], "works": [{"key": "/works/OL8171979W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10838817M 2 2009-12-15T00:55:07.223727 {"physical_format": "Ring-bound", "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "publishers": ["Icon Group International, Inc."], "isbn_10": ["059734664X"], "number_of_pages": 17, "edition_name": "April 2000 edition", "isbn_13": ["9780597346644"], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:55:07.223727"}, "publish_date": "April 25, 2000", "latest_revision": 2, "key": "/books/OL10838817M", "authors": [{"key": "/authors/OL2727133A"}], "title": "USAIR GROUP, INC.", "subjects": ["Company Study", "Financial Analysis", "Forecasting", "Human Resources.", "Labor Productivity", "Statistical Analysis"], "works": [{"key": "/works/OL8172966W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10839169M 3 2011-05-14T06:24:11.305199 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T06:24:11.305199"}, "title": "ADSTAR.COM, INC.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 24, "isbn_13": ["9780597350160"], "edition_name": "October 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597350167"], "publish_date": "October 31, 2000", "key": "/books/OL10839169M", "authors": [{"key": "/authors/OL2727133A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14976841W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Company Study.", "Forecasting", "Financial Analysis", "Statistical Analysis", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10839180M 3 2011-05-14T06:24:21.805098 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T06:24:21.805098"}, "title": "ADVANCED ENVIRONMENTAL RECYCLING", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 24, "isbn_13": ["9780597350276"], "edition_name": "October 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597350272"], "publish_date": "October 31, 2000", "key": "/books/OL10839180M", "authors": [{"key": "/authors/OL2727133A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14976848W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Company Study.", "Forecasting", "Statistical Analysis", "Financial Analysis", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10839192M 3 2011-05-14T05:05:38.092919 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T05:05:38.092919"}, "title": "ADVTECH EDUCATION HOLDINGS LTD.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 24, "isbn_13": ["9780597350399"], "edition_name": "October 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597350396"], "publish_date": "October 31, 2000", "key": "/books/OL10839192M", "authors": [{"key": "/authors/OL2727138A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14964065W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Company Study.", "Forecasting", "Statistical Analysis", "Financial Analysis", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10839485M 3 2011-05-14T05:13:07.601034 {"publishers": ["Icon Group International, Inc."], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T05:13:07.601034"}, "title": "BANCO DE BOGOTA S.A.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 24, "edition_name": "October 2000 edition", "isbn_13": ["9780597353321"], "isbn_10": ["0597353328"], "publish_date": "October 31, 2000", "key": "/books/OL10839485M", "authors": [{"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL8168095W"}], "type": {"key": "/type/edition"}, "subjects": ["Company Study.", "Financial Analysis", "Forecasting", "Statistical Analysis"], "revision": 3}
+/type/edition /books/OL10839575M 3 2011-05-14T05:06:08.926852 {"publishers": ["Icon Group International, Inc."], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T05:06:08.926852"}, "title": "AINSWORTH LUMBER LTD", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 24, "edition_name": "October 2000 edition", "isbn_13": ["9780597354229"], "isbn_10": ["0597354227"], "publish_date": "October 31, 2000", "key": "/books/OL10839575M", "authors": [{"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL8167788W"}], "type": {"key": "/type/edition"}, "subjects": ["Company Study.", "Financial Analysis", "Forecasting", "Statistical Analysis"], "revision": 3}
+/type/edition /books/OL10839643M 3 2011-05-14T01:09:38.619729 {"publishers": ["Icon Group International"], "languages": [{"key": "/languages/eng"}], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T01:09:38.619729"}, "title": "AMB HOLDINGS LTD.", "number_of_pages": 24, "isbn_13": ["9780597354908"], "edition_name": "October 2000 edition", "physical_format": "Ring-bound", "isbn_10": ["0597354901"], "publish_date": "October 31, 2000", "key": "/books/OL10839643M", "authors": [{"key": "/authors/OL2727138A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14964126W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Financial Analysis", "Statistical Analysis", "Forecasting", "Company Study.", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10839841M 3 2011-05-14T06:49:07.805280 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T06:49:07.805280"}, "title": "BION ENVIRONMENTAL TECHNOLOGIES, INC.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 24, "isbn_13": ["9780597356889"], "edition_name": "October 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597356882"], "publish_date": "October 31, 2000", "key": "/books/OL10839841M", "authors": [{"key": "/authors/OL2727133A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14977512W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Financial Analysis", "Statistical Analysis", "Forecasting", "Company Study.", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10839907M 3 2011-05-14T06:51:15.064915 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T06:51:15.064915"}, "title": "BOOTS & COOTS INTL WELL CONTROL, INC.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 24, "isbn_13": ["9780597357541"], "edition_name": "October 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597357544"], "publish_date": "October 31, 2000", "key": "/books/OL10839907M", "authors": [{"key": "/authors/OL2727133A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14977581W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Financial Analysis", "Statistical Analysis", "Forecasting", "Company Study.", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL1084026M 7 2022-07-17T06:14:46.766703 {"publishers": ["Princeton Architectural Press"], "identifiers": {"librarything": ["3973548"]}, "isbn_10": ["1878271997"], "covers": [924323], "lc_classifications": ["NA682.P67 A73 1994", "NA682.P67A73 1994"], "key": "/books/OL1084026M", "publish_places": ["New York"], "contributions": ["Fausch, Deborah, 1950-", "Princeton University. School of Architecture."], "languages": [{"key": "/languages/eng"}], "pagination": "414 p. :", "source_records": ["marc:marc_records_scriblio_net/part24.dat:46172985:1040", "marc:marc_cca/b10621386.out:12240668:953", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:120679611:1035", "bwb:9781878271990"], "title": "Architecture, in fashion", "dewey_decimal_class": ["724/.6"], "notes": {"type": "/type/text", "value": "Includes bibliographical references.\nA collection of essays and projects resulting from a symposium organized by graduate students of Princeton University School of Architecture in April 1991."}, "number_of_pages": 414, "edition_name": "1st ed.", "lccn": ["94007730"], "subjects": ["Symbolism in architecture -- Congresses", "Architecture, Postmodern -- Congresses", "Deconstructivism (Architecture) -- Congresses"], "publish_date": "1994", "publish_country": "nyu", "by_statement": "edited by Deborah Fausch ... [et al.].", "works": [{"key": "/works/OL18343983W"}], "type": {"key": "/type/edition"}, "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T06:14:46.766703"}}
+/type/edition /books/OL10840390M 3 2011-05-14T05:22:00.426428 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T05:22:00.426428"}, "title": "CLIENTELE LIFE ASSURANCE COMPANY LTD.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 24, "isbn_13": ["9780597362378"], "edition_name": "October 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597362378"], "publish_date": "October 31, 2000", "key": "/books/OL10840390M", "authors": [{"key": "/authors/OL2727138A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14964550W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Financial Analysis", "Statistical Analysis", "Forecasting", "Company Study.", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10840395M 3 2011-05-14T07:10:22.457602 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T07:10:22.457602"}, "title": "CLIPSAL INDUSTRIES (HOLDINGS) LTD.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 24, "isbn_13": ["9780597362422"], "edition_name": "October 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597362424"], "publish_date": "October 31, 2000", "key": "/books/OL10840395M", "authors": [{"key": "/authors/OL2727133A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14978036W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Financial Analysis", "Statistical Analysis", "Forecasting", "Company Study.", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10841237M 3 2011-05-14T07:38:13.164388 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T07:38:13.164388"}, "title": "ERC INDUSTRIES, INC.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 24, "isbn_13": ["9780597370847"], "edition_name": "October 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597370842"], "publish_date": "October 31, 2000", "key": "/books/OL10841237M", "authors": [{"key": "/authors/OL2727133A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14978920W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Financial Analysis", "Statistical Analysis", "Forecasting", "Company Study.", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10841353M 3 2011-05-14T07:41:51.015292 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T07:41:51.015292"}, "title": "FAUQUIER BANKSHARES, INC.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 24, "isbn_13": ["9780597372001"], "edition_name": "October 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597372004"], "publish_date": "October 31, 2000", "key": "/books/OL10841353M", "authors": [{"key": "/authors/OL2727133A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14979031W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Financial Analysis", "Statistical Analysis", "Forecasting", "Company Study.", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10841710M 3 2011-05-14T07:52:59.669237 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T07:52:59.669237"}, "title": "GENERAL AMERICAN TRANSPORTATION CORP", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 24, "isbn_13": ["9780597375576"], "edition_name": "October 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597375577"], "publish_date": "October 31, 2000", "key": "/books/OL10841710M", "authors": [{"key": "/authors/OL2727133A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14979342W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Company Study.", "Financial Analysis", "Statistical Analysis", "Forecasting", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10841734M 3 2011-05-14T05:32:30.714782 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T05:32:30.714782"}, "title": "GEOGRAPHICS, INC.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 24, "isbn_13": ["9780597375811"], "edition_name": "October 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["059737581X"], "publish_date": "October 31, 2000", "key": "/books/OL10841734M", "authors": [{"key": "/authors/OL2727133A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14979380W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Statistical Analysis", "Forecasting", "Company Study.", "Financial Analysis", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10841898M 3 2011-05-14T05:34:10.978282 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T05:34:10.978282"}, "title": "GRUNDSTUECKS- UND BAUGESELLSCHAFT AG", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 24, "isbn_13": ["9780597377457"], "edition_name": "October 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597377456"], "publish_date": "October 31, 2000", "key": "/books/OL10841898M", "authors": [{"key": "/authors/OL2727133A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14970243W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Financial Analysis", "Statistical Analysis", "Forecasting", "Company Study.", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10842197M 3 2011-05-14T08:09:52.932819 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T08:09:52.932819"}, "title": "HYUNDAI ELEVATOR CO., LTD.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 24, "isbn_13": ["9780597380440"], "edition_name": "October 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597380449"], "publish_date": "October 31, 2000", "key": "/books/OL10842197M", "authors": [{"key": "/authors/OL2727133A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14979808W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Financial Analysis", "Statistical Analysis", "Forecasting", "Company Study.", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10842438M 3 2011-05-14T05:39:28.702588 {"publishers": ["Icon Group International, Inc."], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T05:39:28.702588"}, "title": "INTERNATIONAL LEISURE HOSTS, LTD.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 24, "edition_name": "October 2000 edition", "isbn_13": ["9780597382857"], "isbn_10": ["0597382859"], "publish_date": "October 31, 2000", "key": "/books/OL10842438M", "authors": [{"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL8168757W"}], "type": {"key": "/type/edition"}, "subjects": ["Company Study.", "Financial Analysis", "Forecasting", "Statistical Analysis"], "revision": 3}
+/type/edition /books/OL10842623M 2 2009-12-15T00:55:08.293980 {"physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "publishers": ["Icon Group International, Inc."], "isbn_10": ["0597384703"], "number_of_pages": 24, "edition_name": "October 2000 edition", "isbn_13": ["9780597384707"], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:55:08.293980"}, "publish_date": "October 31, 2000", "latest_revision": 2, "key": "/books/OL10842623M", "authors": [{"key": "/authors/OL2727133A"}], "title": "JOHNSON SERVICE GROUP PLC", "subjects": ["Company Study.", "Financial Analysis", "Forecasting", "Statistical Analysis"], "works": [{"key": "/works/OL8170703W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10842645M 5 2011-05-14T05:41:48.442086 {"publishers": ["Icon Group International, Inc."], "number_of_pages": 24, "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T05:41:48.442086"}, "title": "JUPITER PRIMADONA GROWTH TRUST PLC", "physical_format": "Ring-bound", "identifiers": {"goodreads": ["924389"]}, "isbn_13": ["9780597384929"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "edition_name": "October 2000 edition", "isbn_10": ["0597384924"], "publish_date": "October 31, 2000", "key": "/books/OL10842645M", "authors": [{"key": "/authors/OL2727133A"}], "latest_revision": 5, "works": [{"key": "/works/OL8168799W"}], "type": {"key": "/type/edition"}, "subjects": ["Company Study.", "Financial Analysis", "Forecasting", "Statistical Analysis"], "revision": 5}
+/type/edition /books/OL10843118M 3 2011-05-14T08:30:51.623952 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T08:30:51.623952"}, "title": "MATHOMO GROUP LTD.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 24, "isbn_13": ["9780597389658"], "edition_name": "October 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597389659"], "publish_date": "October 31, 2000", "key": "/books/OL10843118M", "authors": [{"key": "/authors/OL2727138A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14971504W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Financial Analysis", "Statistical Analysis", "Forecasting", "Company Study.", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10843405M 3 2011-05-14T08:36:24.991264 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T08:36:24.991264"}, "title": "MOSHI MOSHI HOTLINE, INC.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 24, "isbn_13": ["9780597392528"], "edition_name": "October 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597392528"], "publish_date": "October 31, 2000", "key": "/books/OL10843405M", "authors": [{"key": "/authors/OL2727133A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14980271W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Financial Analysis", "Statistical Analysis", "Forecasting", "Company Study.", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10843427M 3 2011-05-14T08:36:55.801483 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T08:36:55.801483"}, "title": "MTD CAPITAL BHD.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 24, "isbn_13": ["9780597392740"], "edition_name": "October 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597392749"], "publish_date": "October 31, 2000", "key": "/books/OL10843427M", "authors": [{"key": "/authors/OL2727133A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14975897W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Company Study.", "Financial Analysis", "Statistical Analysis", "Forecasting", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10843612M 3 2011-05-14T08:40:22.755832 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T08:40:22.755832"}, "title": "NEUTRAL POSTURE ERGONOMICS, INC.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 24, "isbn_13": ["9780597394591"], "edition_name": "October 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597394598"], "publish_date": "October 31, 2000", "key": "/books/OL10843612M", "authors": [{"key": "/authors/OL2727138A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14972049W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Financial Analysis", "Statistical Analysis", "Forecasting", "Company Study.", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10844053M 3 2011-05-14T08:52:39.445158 {"publishers": ["Icon Group International, Inc."], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T08:52:39.445158"}, "title": "PASCUAL HERMANOS, S.A.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 24, "edition_name": "October 2000 edition", "isbn_13": ["9780597399008"], "isbn_10": ["059739900X"], "publish_date": "October 31, 2000", "key": "/books/OL10844053M", "authors": [{"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL8171321W"}], "type": {"key": "/type/edition"}, "subjects": ["Company Study.", "Financial Analysis", "Forecasting", "Statistical Analysis"], "revision": 3}
+/type/edition /books/OL10844799M 3 2011-05-14T06:01:28.030413 {"publishers": ["Icon Group International, Inc."], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T06:01:28.030413"}, "title": "SEED COMPANY LTD.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 24, "edition_name": "October 2000 edition", "isbn_13": ["9780597406461"], "isbn_10": ["0597406464"], "publish_date": "October 31, 2000", "key": "/books/OL10844799M", "authors": [{"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL8169101W"}], "type": {"key": "/type/edition"}, "subjects": ["Company Study.", "Financial Analysis", "Forecasting", "Statistical Analysis"], "revision": 3}
+/type/edition /books/OL10845183M 3 2011-05-14T09:24:48.131510 {"publishers": ["Icon Group International, Inc."], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T09:24:48.131510"}, "title": "STANDARD AUTOMOTIVE CORP.", "number_of_pages": 24, "isbn_13": ["9780597410307"], "edition_name": "October 2000 edition", "physical_format": "Ring-bound", "isbn_10": ["0597410305"], "publish_date": "October 31, 2000", "key": "/books/OL10845183M", "authors": [{"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL8172279W"}], "type": {"key": "/type/edition"}, "subjects": ["Company Study.", "Financial Analysis", "Forecasting", "Statistical Analysis"], "revision": 3}
+/type/edition /books/OL1084541M 7 2020-11-18T07:55:41.511705 {"publishers": ["Glencoe Macmillan/McGraw-Hill"], "number_of_pages": 182, "isbn_10": ["0028010523"], "covers": [4936093, 4548334, 3873363], "lc_classifications": ["Z52.5.M52 G66 1994"], "latest_revision": 7, "key": "/books/OL1084541M", "authors": [{"key": "/authors/OL247064A"}], "publish_places": ["New York, NY"], "contributions": ["Alcorn, Pete."], "lccn": ["94008360"], "uri_descriptions": ["Table of contents"], "pagination": "vii, 182 p. ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:121139190:738"], "title": "Microsoft Word for the Macintosh", "url": ["http://www.loc.gov/catdir/toc/mh031/94008360.html"], "notes": {"type": "/type/text", "value": "Includes index."}, "identifiers": {"goodreads": ["4730930"]}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "dewey_decimal_class": ["652.5/536"], "subjects": ["Microsoft Word.", "Word processing."], "publish_date": "1995", "publish_country": "nyu", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T07:55:41.511705"}, "by_statement": "Danny Goodman with Pete Alcorn.", "oclc_numbers": ["30034311"], "works": [{"key": "/works/OL2040104W"}], "type": {"key": "/type/edition"}, "uris": ["http://www.loc.gov/catdir/toc/mh031/94008360.html"], "revision": 7}
+/type/edition /books/OL10845489M 3 2011-05-14T09:36:05.672623 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T09:36:05.672623"}, "title": "TELESTE OYJ", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 24, "isbn_13": ["9780597413360"], "edition_name": "October 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597413363"], "publish_date": "October 31, 2000", "key": "/books/OL10845489M", "authors": [{"key": "/authors/OL2727133A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14980824W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Financial Analysis", "Statistical Analysis", "Forecasting", "Company Study.", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10845733M 3 2011-05-14T09:45:48.285087 {"publishers": ["Icon Group International, Inc."], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T09:45:48.285087"}, "title": "TRI-NATIONAL DEVELOPMENT CORP.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 24, "edition_name": "October 2000 edition", "isbn_13": ["9780597415807"], "isbn_10": ["0597415803"], "publish_date": "October 31, 2000", "key": "/books/OL10845733M", "authors": [{"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL8172775W"}], "type": {"key": "/type/edition"}, "subjects": ["Company Study.", "Financial Analysis", "Forecasting", "Statistical Analysis"], "revision": 3}
+/type/edition /books/OL10845886M 3 2011-05-14T09:49:18.345138 {"publishers": ["Icon Group International, Inc."], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T09:49:18.345138"}, "title": "UNITED ARTISTS THEATRE CIRCUIT, INC.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 24, "edition_name": "October 2000 edition", "isbn_13": ["9780597417337"], "isbn_10": ["0597417334"], "publish_date": "October 31, 2000", "key": "/books/OL10845886M", "authors": [{"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL8172898W"}], "type": {"key": "/type/edition"}, "subjects": ["Company Study.", "Financial Analysis", "Forecasting", "Statistical Analysis"], "revision": 3}
+/type/edition /books/OL10845888M 2 2009-12-15T00:55:11.393537 {"physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis", "publishers": ["Icon Group International, Inc."], "isbn_10": ["0597417350"], "number_of_pages": 24, "edition_name": "October 2000 edition", "isbn_13": ["9780597417351"], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:55:11.393537"}, "publish_date": "October 31, 2000", "latest_revision": 2, "key": "/books/OL10845888M", "authors": [{"key": "/authors/OL2727133A"}], "title": "UNITED BANCORP, INC. (MI)", "subjects": ["Company Study.", "Financial Analysis", "Forecasting", "Statistical Analysis"], "works": [{"key": "/works/OL8169499W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10846294M 3 2011-05-14T10:01:24.000136 {"publishers": ["Icon Group International, Inc."], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T10:01:24.000136"}, "title": "WORMS & CIE", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 24, "edition_name": "October 2000 edition", "isbn_13": ["9780597421419"], "isbn_10": ["0597421412"], "publish_date": "October 31, 2000", "key": "/books/OL10846294M", "authors": [{"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL8173348W"}], "type": {"key": "/type/edition"}, "subjects": ["Company Study.", "Financial Analysis", "Forecasting", "Statistical Analysis"], "revision": 3}
+/type/edition /books/OL10846323M 3 2011-05-14T06:19:53.357077 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "International Competitive Benchmarks and Financial Gap Analysis (Financial Performance Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T06:19:53.357077"}, "title": "YACHIYO INDUSTRY CO., LTD.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 24, "isbn_13": ["9780597421709"], "edition_name": "October 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597421706"], "publish_date": "October 31, 2000", "key": "/books/OL10846323M", "authors": [{"key": "/authors/OL2727133A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14974159W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Financial Analysis", "Statistical Analysis", "Forecasting", "Company Study.", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10846462M 3 2011-05-14T06:22:41.442633 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T06:22:41.442633"}, "title": "ACCRUE SOFTWARE, INC.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 20, "isbn_13": ["9780597423093"], "edition_name": "October 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597423091"], "publish_date": "October 31, 2000", "key": "/books/OL10846462M", "authors": [{"key": "/authors/OL2727133A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14976781W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Financial Analysis", "Labor Productivity", "Statistical Analysis", "Forecasting", "Company Study", "Human Resources.", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10846784M 3 2011-05-14T06:34:54.199005 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T06:34:54.199005"}, "title": "ARBOMEDIA.NET AG", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 20, "isbn_13": ["9780597426315"], "edition_name": "October 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597426317"], "publish_date": "October 31, 2000", "key": "/books/OL10846784M", "authors": [{"key": "/authors/OL2727133A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14977156W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Financial Analysis", "Labor Productivity", "Statistical Analysis", "Forecasting", "Company Study", "Human Resources.", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL1084772M 11 2022-12-09T05:28:58.711164 {"publishers": ["State University of New York Press"], "number_of_pages": 342, "subtitle": "the persistent truth of Machiavellism", "isbn_10": ["0791422798", "0791422801"], "covers": [3873635, 1490979], "lc_classifications": ["JA79 .S3166 1995", "JA79.S3166 1995"], "key": "/books/OL1084772M", "authors": [{"key": "/authors/OL120312A"}], "publish_places": ["Albany"], "pagination": "xii, 342 p. ;", "source_records": ["amazon:0791422801", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:121340322:852", "ia:amoralpoliticspe0000scha", "bwb:9780791422809", "bwb:9780791422793", "promise:bwb_daily_pallets_2020-12-22"], "title": "Amoral politics", "dewey_decimal_class": ["172"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 309-332) and index."}, "identifiers": {"goodreads": ["3447723", "62605"], "librarything": ["3962053"]}, "languages": [{"key": "/languages/eng"}], "lccn": ["94008609"], "subjects": ["Political ethics -- History.", "Political leadership -- Moral and ethical aspects -- History.", "Machiavellianism (Psychology) -- History."], "publish_date": "1995", "publish_country": "nyu", "by_statement": "Ben-Ami Scharfstein.", "works": [{"key": "/works/OL1191539W"}], "type": {"key": "/type/edition"}, "ocaid": "amoralpoliticspe0000scha", "local_id": ["urn:bwbsku:W6-BPC-375"], "latest_revision": 11, "revision": 11, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T05:28:58.711164"}}
+/type/edition /books/OL10847881M 3 2011-05-14T07:22:30.137095 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T07:22:30.137095"}, "title": "DAIICHI COMMODITIES CO., LTD.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 20, "isbn_13": ["9780597437281"], "edition_name": "October 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597437289"], "publish_date": "October 31, 2000", "key": "/books/OL10847881M", "authors": [{"key": "/authors/OL2727133A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14978413W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Financial Analysis", "Labor Productivity", "Statistical Analysis", "Forecasting", "Company Study", "Human Resources.", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10847907M 3 2011-05-14T07:24:26.169978 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T07:24:26.169978"}, "title": "DATA SYSTEMS NETWORK CORP.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 20, "isbn_13": ["9780597437540"], "edition_name": "October 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597437548"], "publish_date": "October 31, 2000", "key": "/books/OL10847907M", "authors": [{"key": "/authors/OL2727133A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14978450W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Financial Analysis", "Labor Productivity", "Statistical Analysis", "Forecasting", "Company Study", "Human Resources.", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL1084809M 8 2022-12-04T10:10:58.090689 {"publishers": ["Clarkson Potter"], "number_of_pages": 207, "isbn_10": ["0517882159"], "subject_place": ["Great Britain"], "dewey_decimal_class": ["747.22"], "covers": [323383], "lc_classifications": ["NK2043.A1 S56 1994"], "key": "/books/OL1084809M", "authors": [{"key": "/authors/OL385562A"}], "publish_places": ["New York"], "contributions": ["Cliff, Stafford."], "subject_time": ["20th century."], "edition_name": "Rev. ed.", "pagination": "207 p. :", "uri_descriptions": ["Publisher description"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:121372180:996", "promise:bwb_daily_pallets_2022-09-12"], "title": "English style", "lccn": ["94008648"], "notes": {"type": "/type/text", "value": "\"A little style book.\"\nAbridgement of 1984 ed., with updated front matter."}, "identifiers": {"goodreads": ["61096"], "librarything": ["1051759"]}, "languages": [{"key": "/languages/eng"}], "url": ["http://www.loc.gov/catdir/description/random047/94008648.html"], "subjects": ["Interior decoration -- Great Britain -- History -- 20th century.", "Decoration and ornament -- Great Britain -- History -- 20th century."], "publish_date": "1994", "publish_country": "nyu", "by_statement": "Suzanne Slesin and Stafford Cliff ; photographs by Ken Kirkwood.", "works": [{"key": "/works/OL2645317W"}], "type": {"key": "/type/edition"}, "uris": ["http://www.loc.gov/catdir/description/random047/94008648.html"], "local_id": ["urn:bwbsku:O8-CLO-570"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T10:10:58.090689"}}
+/type/edition /books/OL10848119M 3 2011-05-14T07:32:17.441128 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T07:32:17.441128"}, "title": "EASY SOFTWARE AG", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 20, "isbn_13": ["9780597439667"], "edition_name": "October 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597439664"], "publish_date": "October 31, 2000", "key": "/books/OL10848119M", "authors": [{"key": "/authors/OL2727133A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14978706W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Financial Analysis", "Labor Productivity", "Statistical Analysis", "Forecasting", "Company Study", "Human Resources.", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL1084850M 14 2023-01-10T04:41:57.962449 {"publishers": ["Westminster John Knox Press"], "number_of_pages": 123, "subtitle": "letting Christ into our lives", "ia_box_id": ["IA175201"], "isbn_10": ["0664254470"], "covers": [399550], "ia_loaded_id": ["dramaofchristmas00kels"], "lc_classifications": ["BT315.2 .K37 1994", "BT315.2.K37 1994"], "key": "/books/OL1084850M", "authors": [{"key": "/authors/OL327986A"}], "ocaid": "dramaofchristmas00kels", "publish_places": ["Louisville, Ky"], "subjects": ["Jesus Christ -- Nativity.", "Christmas."], "languages": [{"key": "/languages/eng"}], "pagination": "123 p. ;", "source_records": ["ia:dramaofchristmas00kels", "marc:marc_openlibraries_sanfranciscopubliclibrary/sfpl_chq_2018_12_24_run02.mrc:103153105:1432", "marc:marc_claremont_school_theology/CSTMARC1_barcode.mrc:208770698:1927", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:121406370:696", "marc:marc_claremont_school_theology/CSTMARC1_multibarcode.mrc:209035841:1927", "bwb:9780664254476", "marc:marc_columbia/Columbia-extract-20221130-009.mrc:502049148:1128"], "title": "The drama of Christmas", "dewey_decimal_class": ["232.92"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 113-123)."}, "identifiers": {"librarything": ["395933"], "goodreads": ["2400819"]}, "edition_name": "1st ed.", "lccn": ["94008690"], "local_id": ["urn:sfpl:31223036247220", "urn:cst:10011435712"], "publish_date": "1994", "publish_country": "kyu", "by_statement": "Morton Kelsey.", "oclc_numbers": ["30035886"], "works": [{"key": "/works/OL2394959W"}], "type": {"key": "/type/edition"}, "latest_revision": 14, "revision": 14, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2023-01-10T04:41:57.962449"}}
+/type/edition /books/OL10848768M 3 2011-05-14T07:55:36.854073 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T07:55:36.854073"}, "title": "GLOBAL MED TECHNOLOGIES, INC.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 20, "isbn_13": ["9780597446153"], "edition_name": "October 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597446156"], "publish_date": "October 31, 2000", "key": "/books/OL10848768M", "authors": [{"key": "/authors/OL2727133A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14979421W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Financial Analysis", "Labor Productivity", "Statistical Analysis", "Forecasting", "Company Study", "Human Resources.", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10848848M 5 2011-05-14T07:57:42.575497 {"publishers": ["Icon Group International"], "number_of_pages": 20, "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "edition_name": "October 2000 edition", "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T07:57:42.575497"}, "latest_revision": 5, "key": "/books/OL10848848M", "authors": [{"key": "/authors/OL2727133A"}, {"key": "/authors/OL2727133A"}], "subjects": ["General", "Human Resources.", "Company Study", "Forecasting", "Statistical Analysis", "Labor Productivity", "Financial Analysis", "Business / Economics / Finance"], "isbn_13": ["9780597446955"], "title": "GREATER ROME BANCSHARES, INC.", "identifiers": {"goodreads": ["533477"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597446954"], "publish_date": "October 31, 2000", "works": [{"key": "/works/OL14975595W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10849191M 3 2011-05-14T08:11:31.023788 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T08:11:31.023788"}, "title": "IMAGE GUIDED TECHNOLOGIES, INC.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 20, "isbn_13": ["9780597450389"], "edition_name": "October 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597450382"], "publish_date": "October 31, 2000", "key": "/books/OL10849191M", "authors": [{"key": "/authors/OL2727133A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14979863W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Financial Analysis", "Labor Productivity", "Statistical Analysis", "Forecasting", "Company Study", "Human Resources.", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10849363M 3 2011-05-14T08:15:26.370102 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T08:15:26.370102"}, "title": "INTERNOLIX AG", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 20, "isbn_13": ["9780597452109"], "edition_name": "October 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597452105"], "publish_date": "October 31, 2000", "key": "/books/OL10849363M", "authors": [{"key": "/authors/OL2727133A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14979991W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Human Resources.", "Financial Analysis", "Labor Productivity", "Statistical Analysis", "Forecasting", "Company Study", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10849626M 3 2011-05-14T08:22:42.704683 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T08:22:42.704683"}, "title": "KOGURE CORP.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 20, "isbn_13": ["9780597454738"], "edition_name": "October 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597454736"], "publish_date": "October 31, 2000", "key": "/books/OL10849626M", "authors": [{"key": "/authors/OL2727133A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14980139W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Financial Analysis", "Labor Productivity", "Statistical Analysis", "Forecasting", "Company Study", "Human Resources.", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10849658M 3 2011-05-14T08:24:21.064450 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T08:24:21.064450"}, "title": "KSP YHTIOT OYJ", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 20, "isbn_13": ["9780597455063"], "edition_name": "October 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597455066"], "publish_date": "October 31, 2000", "key": "/books/OL10849658M", "authors": [{"key": "/authors/OL2727133A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14980164W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Financial Analysis", "Labor Productivity", "Statistical Analysis", "Forecasting", "Company Study", "Human Resources.", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10849864M 3 2011-05-14T08:29:06.231965 {"publishers": ["Icon Group International, Inc."], "physical_format": "Ring-bound", "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T08:29:06.231965"}, "title": "MACLELLAN GROUP PLC", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 20, "edition_name": "October 2000 edition", "isbn_13": ["9780597457128"], "isbn_10": ["0597457123"], "publish_date": "October 31, 2000", "key": "/books/OL10849864M", "authors": [{"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL8170987W"}], "type": {"key": "/type/edition"}, "subjects": ["Company Study", "Financial Analysis", "Forecasting", "Human Resources.", "Labor Productivity", "Statistical Analysis"], "revision": 3}
+/type/edition /books/OL10850393M 3 2011-05-14T08:41:05.959067 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T08:41:05.959067"}, "title": "NEXTERA ENTERPRISES, INC.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 20, "isbn_13": ["9780597462412"], "edition_name": "October 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597462410"], "publish_date": "October 31, 2000", "key": "/books/OL10850393M", "authors": [{"key": "/authors/OL2727138A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14972090W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Financial Analysis", "Labor Productivity", "Statistical Analysis", "Forecasting", "Company Study", "Human Resources.", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10850404M 3 2011-05-14T08:41:21.761224 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T08:41:21.761224"}, "title": "NICOR INC.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 20, "isbn_13": ["9780597462528"], "edition_name": "October 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597462526"], "publish_date": "October 31, 2000", "key": "/books/OL10850404M", "authors": [{"key": "/authors/OL2727138A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14972101W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Company Study", "Financial Analysis", "Labor Productivity", "Statistical Analysis", "Forecasting", "Human Resources.", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10850435M 3 2011-05-14T08:43:14.594956 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T08:43:14.594956"}, "title": "NISHIKAWA KEISOKU CO., LTD.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 20, "isbn_13": ["9780597462832"], "edition_name": "October 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597462836"], "publish_date": "October 31, 2000", "key": "/books/OL10850435M", "authors": [{"key": "/authors/OL2727133A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14980342W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Financial Analysis", "Labor Productivity", "Statistical Analysis", "Forecasting", "Company Study", "Human Resources.", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL1085069M 9 2022-11-11T06:49:55.611318 {"publishers": ["Susquehanna University Press", "Associated University Presses"], "number_of_pages": 318, "isbn_10": ["0945636644"], "subject_place": ["United States"], "local_id": ["urn:phillips:31867001180327", "urn:scms:0188500285302"], "lc_classifications": ["E437 .B56 1994", "E437.B56 1994"], "key": "/books/OL1085069M", "authors": [{"key": "/authors/OL577780A"}], "publish_places": ["Selinsgrove [Pa.]", "London", "Cranbury, NJ"], "subject_time": ["1815-1861."], "pagination": "318 p. :", "source_records": ["marc:marc_openlibraries_phillipsacademy/PANO_FOR_IA_05072019.mrc:79681347:1277", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:121594081:885", "ia:jamesbuchananame0000bind", "bwb:9780945636649", "marc:marc_scms/20220805_ADAM_MARC_records.mrc:89719964:1656"], "title": "James Buchanan and the American empire", "dewey_decimal_class": ["973.6/8/092", "B"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 302-308) and index."}, "identifiers": {"goodreads": ["4749337"], "librarything": ["2856531"]}, "languages": [{"key": "/languages/eng"}], "lccn": ["94008922"], "subjects": ["Buchanan, James, 1791-1868.", "Presidents -- United States -- Biography.", "United States -- Foreign relations -- 1815-1861."], "publish_date": "1994", "publish_country": "pau", "by_statement": "Frederick Moore Binder.", "works": [{"key": "/works/OL3466542W"}], "type": {"key": "/type/edition"}, "covers": [11657822], "ocaid": "jamesbuchananame0000bind", "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-11T06:49:55.611318"}}
+/type/edition /books/OL10850732M 3 2011-05-14T08:52:18.866355 {"publishers": ["Icon Group International, Inc."], "physical_format": "Ring-bound", "subtitle": "Labor Productivity Benchmarks and International Gap Analysis", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T08:52:18.866355"}, "title": "PARAGON TRADE BRANDS, INC.(OLD)", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 20, "edition_name": "October 2000 edition", "isbn_13": ["9780597465802"], "isbn_10": ["0597465800"], "publish_date": "October 31, 2000", "key": "/books/OL10850732M", "authors": [{"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL8171307W"}], "type": {"key": "/type/edition"}, "subjects": ["Company Study", "Financial Analysis", "Forecasting", "Human Resources.", "Labor Productivity", "Statistical Analysis"], "revision": 3}
+/type/edition /books/OL10850769M 3 2011-05-14T08:53:16.126237 {"publishers": ["Icon Group International, Inc."], "physical_format": "Ring-bound", "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T08:53:16.126237"}, "title": "PEEBLES INC.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 20, "edition_name": "October 2000 edition", "isbn_13": ["9780597466175"], "isbn_10": ["0597466173"], "publish_date": "October 31, 2000", "key": "/books/OL10850769M", "authors": [{"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL8171351W"}], "type": {"key": "/type/edition"}, "subjects": ["Company Study", "Financial Analysis", "Forecasting", "Human Resources.", "Labor Productivity", "Statistical Analysis"], "revision": 3}
+/type/edition /books/OL10851178M 3 2011-05-14T09:04:09.620988 {"publishers": ["Icon Group International, Inc."], "physical_format": "Ring-bound", "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T09:04:09.620988"}, "title": "RICA FOODS, INC.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 20, "edition_name": "October 2000 edition", "isbn_13": ["9780597470264"], "isbn_10": ["059747026X"], "publish_date": "October 31, 2000", "key": "/books/OL10851178M", "authors": [{"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL8171818W"}], "type": {"key": "/type/edition"}, "subjects": ["Company Study", "Financial Analysis", "Forecasting", "Human Resources.", "Labor Productivity", "Statistical Analysis"], "revision": 3}
+/type/edition /books/OL10851709M 3 2011-05-14T09:24:26.578378 {"publishers": ["Icon Group International, Inc."], "physical_format": "Ring-bound", "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T09:24:26.578378"}, "title": "SR.TELEPERFORMANCE", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 20, "edition_name": "October 2000 edition", "isbn_13": ["9780597475573"], "isbn_10": ["0597475571"], "publish_date": "October 31, 2000", "key": "/books/OL10851709M", "authors": [{"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL8172272W"}], "type": {"key": "/type/edition"}, "subjects": ["Company Study", "Financial Analysis", "Forecasting", "Human Resources.", "Labor Productivity", "Statistical Analysis"], "revision": 3}
+/type/edition /books/OL10851732M 2 2009-12-15T00:55:13.737320 {"physical_format": "Ring-bound", "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "publishers": ["Icon Group International, Inc."], "isbn_10": ["0597475806"], "number_of_pages": 20, "edition_name": "October 2000 edition", "isbn_13": ["9780597475801"], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:55:13.737320"}, "publish_date": "October 31, 2000", "latest_revision": 2, "key": "/books/OL10851732M", "authors": [{"key": "/authors/OL2727133A"}], "title": "STC BROADCASTING, INC.", "subjects": ["Company Study", "Financial Analysis", "Forecasting", "Human Resources.", "Labor Productivity", "Statistical Analysis"], "works": [{"key": "/works/OL8172297W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10851794M 3 2011-05-14T09:29:09.794484 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T09:29:09.794484"}, "title": "SUN - LIFE CORP.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 20, "isbn_13": ["9780597476426"], "edition_name": "October 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["059747642X"], "publish_date": "October 31, 2000", "key": "/books/OL10851794M", "authors": [{"key": "/authors/OL2727133A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14980755W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Financial Analysis", "Labor Productivity", "Statistical Analysis", "Forecasting", "Company Study", "Human Resources.", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10851943M 3 2011-05-14T09:34:40.906228 {"publishers": ["Icon Group International"], "physical_format": "Ring-bound", "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T09:34:40.906228"}, "title": "TECHNICAL MANAGEMENT INC.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 20, "isbn_13": ["9780597477911"], "edition_name": "October 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597477914"], "publish_date": "October 31, 2000", "key": "/books/OL10851943M", "authors": [{"key": "/authors/OL2727133A"}, {"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL14980815W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Financial Analysis", "Labor Productivity", "Statistical Analysis", "Forecasting", "Company Study", "Human Resources.", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10852338M 9 2022-12-09T06:24:40.546254 {"identifiers": {"goodreads": ["7183459"], "librarything": ["8617714"]}, "title": "Cyberspace Crime (International Library of Criminology, Criminal Justice & Penology.)", "authors": [{"key": "/authors/OL3496379A"}], "publish_date": "June 2003", "publishers": ["Ashgate Publishing"], "weight": "2.6 pounds", "covers": [5311937, 5077330], "physical_format": "Hardcover", "subjects": ["Computer fraud & hacking", "Crime & criminology", "Data security & data encryption", "Computer Crime", "Computers", "True Crime / Espionage", "Computer Books: Internet General", "General", "Security - General", "Computer crimes"], "isbn_13": ["9780754621904"], "source_records": ["marc:marc_western_washington_univ/wwu_bibs.mrc_revrev.mrc:768930393:927", "marc:marc_loc_2016/BooksAll.2016.part29.utf8:203357754:823", "ia:cyberspacecrime0000unse"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0754621901"], "type": {"key": "/type/edition"}, "physical_dimensions": "9.7 x 6.8 x 2 inches", "lccn": ["2002066593"], "lc_classifications": ["HV6773 .C93 2003"], "ocaid": "cyberspacecrime0000unse", "key": "/books/OL10852338M", "number_of_pages": 500, "works": [{"key": "/works/OL9479734W"}], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T06:24:40.546254"}}
+/type/edition /books/OL10852773M 9 2023-01-03T17:09:58.092103 {"publishers": ["Ashgate Pub Co"], "subtitle": "Byzantine Chant and Other Music Repertory Recovered", "physical_format": "Hardcover", "lc_classifications": ["ML136.A89T68 2007", "ML136.A89 T68 2010", "ML136.A89 T68 2016"], "key": "/books/OL10852773M", "authors": [{"key": "/authors/OL3505527A"}], "subjects": ["Bibliographies, catalogues, discographies", "Greece", "General", "Music"], "isbn_13": ["9780754651680"], "source_records": ["marc:marc_loc_updates/v38.i07.records.utf8:7146937:996", "bwb:9780754651680", "marc:marc_loc_2016/BooksAll.2016.part33.utf8:136949323:1115", "marc:marc_columbia/Columbia-extract-20221130-031.mrc:224000898:4595", "marc:marc_columbia/Columbia-extract-20221130-017.mrc:37509924:1582", "marc:harvard_bibliographic_metadata/ab.bib.12.20150123.full.mrc:459592106:1455"], "title": "A Descriptive Catalogue of the Music Collection of the National Library of Greece", "number_of_pages": 500, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0754651681"], "publish_date": "January 2008", "works": [{"key": "/works/OL9491582W"}], "type": {"key": "/type/edition"}, "lccn": ["2006036168"], "oclc_numbers": ["993686614", "76481370"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2023-01-03T17:09:58.092103"}}
+/type/edition /books/OL10853914M 7 2022-11-17T21:55:06.038797 {"publishers": ["Lorenz Books"], "number_of_pages": 264, "subtitle": "Everything you need to know about golf and how to play ... including step-by-step sequences throughout", "covers": [2598092], "physical_format": "Paperback", "key": "/books/OL10853914M", "authors": [{"key": "/authors/OL2843250A"}], "subjects": ["Golf", "Sports & Recreation", "Sports", "Golf - Instruction", "Sports & Recreation / Golf", "Golf - General"], "languages": [{"key": "/languages/eng"}], "title": "Improve Your Golf: A Practical Step-By-Step Instruction Course, Reference Manual & Trouble-shooter", "identifiers": {"goodreads": ["4023810"]}, "isbn_13": ["9780754817666"], "isbn_10": ["0754817660"], "publish_date": "April 25, 2008", "oclc_numbers": ["124965721"], "works": [{"key": "/works/OL8502378W"}], "type": {"key": "/type/edition"}, "lc_classifications": ["GV965"], "source_records": ["bwb:9780754817666"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T21:55:06.038797"}}
+/type/edition /books/OL1085398M 10 2022-12-04T06:41:08.122419 {"publishers": ["Putnam"], "identifiers": {"goodreads": ["1110267"], "librarything": ["435028"], "amazon": ["B000JRANFG"], "better_world_books": ["BWBM52296614"]}, "subtitle": "a workbook for developing deep confidence and self-acceptance", "isbn_10": ["0874777631"], "covers": [666104], "lc_classifications": ["BF575.S39 T38 1994", "BF575.S39T38 1994"], "key": "/books/OL1085398M", "authors": [{"key": "/authors/OL577914A"}], "publish_places": ["New York"], "pagination": "xxx, 224 p. ;", "source_records": ["bwb:9780874777635", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:121881474:787", "promise:bwb_daily_pallets_2022-11-11"], "title": "Ending the struggle against yourself", "dewey_decimal_class": ["158/.1"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 221-224).\n\"A Jeremy P. Tarcher/Putnam book.\""}, "number_of_pages": 224, "languages": [{"key": "/languages/eng"}], "lccn": ["94009267"], "subjects": ["Self-confidence.", "Self-acceptance.", "Self-doubt."], "publish_date": "1994", "publish_country": "nyu", "by_statement": "Stan Taubman.", "works": [{"key": "/works/OL3467179W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:O8-BVA-864", "urn:bwbsku:O8-BVS-799"], "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T06:41:08.122419"}}
+/type/edition /books/OL10854534M 8 2022-11-12T00:27:45.206775 {"publishers": ["Headline Book Publishing"], "number_of_pages": 282, "weight": "1.2 pounds", "covers": [2598431], "physical_format": "Hardcover", "key": "/books/OL10854534M", "authors": [{"key": "/authors/OL63218A"}], "subjects": ["Adventure / thriller", "Modern fiction", "Fiction"], "title": "Faith Without Doubt", "identifiers": {"goodreads": ["1869691"], "librarything": ["3806932"]}, "isbn_13": ["9780755302970"], "isbn_10": ["0755302974"], "publish_date": "January 3, 2005", "works": [{"key": "/works/OL767350W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.2 x 6.4 x 1.1 inches", "lc_classifications": ["PR6052"], "source_records": ["bwb:9780755302970", "promise:bwb_daily_pallets_2022-10-24"], "local_id": ["urn:bwbsku:KR-414-247"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-12T00:27:45.206775"}}
+/type/edition /books/OL10855146M 8 2022-07-18T20:19:13.726019 {"publishers": ["Compass Point Books"], "number_of_pages": 24, "weight": "5.6 ounces", "covers": [2598675], "physical_format": "Library Binding", "key": "/books/OL10855146M", "authors": [{"key": "/authors/OL1390540A"}], "ocaid": "unusualfarms0000haug", "subjects": ["Lifestyles - Farm & Ranch Life", "Technology - Agriculture", "Juvenile Nonfiction", "Children's Books/Ages 4-8 Nonfiction", "Agriculture", "Farms", "Juvenile literature", "Children: Grades 1-2", "Children: Grades 2-3"], "isbn_13": ["9780756506681"], "source_records": ["ia:unusualfarms0000haug", "marc:marc_loc_2016/BooksAll.2016.part31.utf8:142947564:705", "bwb:9780756506681"], "title": "Unusual Farms (Let's See Library)", "identifiers": {"goodreads": ["269612"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0756506689"], "publish_date": "August 2004", "works": [{"key": "/works/OL5717391W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "7.7 x 7.2 x 0.3 inches", "lccn": ["2004005560"], "lc_classifications": ["S519 .H379 2005", "S519.G544 2004"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-18T20:19:13.726019"}}
+/type/edition /books/OL10855279M 6 2022-07-18T21:34:48.351673 {"publishers": ["Compass Point Books"], "weight": "13.1 ounces", "covers": [2598706], "physical_format": "Library Binding", "key": "/books/OL10855279M", "authors": [{"key": "/authors/OL575940A"}], "ocaid": "teensinnigeria0000dell", "subjects": ["Juvenile Social Science (General)", "Juvenile Nonfiction", "Children's Books/Ages 9-12 Fiction", "Children's Books/Ages 9-12 People & Places", "Children: Grades 4-6", "General", "People & Places - Africa", "Social Issues - Adolescence", "Social Science - Customs, Traditions, Anthropology", "Juvenile literature", "Nigeria", "Social conditions", "Social life and customs", "Teenagers"], "isbn_13": ["9780756533069"], "source_records": ["ia:teensinnigeria0000dell", "marc:marc_loc_2016/BooksAll.2016.part34.utf8:105804768:753", "bwb:9780756533069"], "title": "Teens in Nigeria (Global Connections)", "number_of_pages": 96, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0756533066"], "publish_date": "July 2007", "works": [{"key": "/works/OL3458151W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.2 x 7.2 x 0.4 inches", "lccn": ["2007004607"], "lc_classifications": ["HQ799.N5 D45 2008", "HQ799.N5D45 2007"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-18T21:34:48.351673"}}
+/type/edition /books/OL10855327M 8 2020-12-08T18:13:50.867190 {"publishers": ["DK Preschool"], "weight": "4 ounces", "covers": [2598724], "physical_format": "Board book", "key": "/books/OL10855327M", "authors": [{"key": "/authors/OL2655350A"}], "subjects": ["Juvenile Nonfiction", "Children's Books/Baby-Preschool", "Spanish: Preschool", "Foreign Language Study - Spanish", "Transportation - General", "Juvenile Nonfiction / Transportation / General", "Foreign Language Study - General"], "edition_name": "Brdbk Blg edition", "languages": [{"key": "/languages/spa"}, {"key": "/languages/eng"}], "source_records": ["marc:marc_loc_updates/v35.i20.records.utf8:17855068:1323", "marc:marc_loc_updates/v37.i16.records.utf8:2545204:1323", "marc:SanFranPL13/SanFranPL13.out:88989255:2840", "marc:marc_loc_2016/BooksAll.2016.part31.utf8:224995976:1323"], "title": "Maquinas Ocupadas / Busy Machines (My 1st Board Books)", "number_of_pages": 24, "isbn_13": ["9780756604448"], "isbn_10": ["0756604443"], "publish_date": "June 21, 2004", "oclc_numbers": ["56064592"], "works": [{"key": "/works/OL7959043W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "3.4 x 3.4 x 0.7 inches", "lccn": ["2004302495"], "lc_classifications": ["TL147 .B86318 2004"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-08T18:13:50.867190"}}
+/type/edition /books/OL10855439M 2 2009-12-15T00:55:17.244666 {"physical_format": "Board book", "publishers": ["DK CHILDREN"], "isbn_10": ["0756625904"], "number_of_pages": 48, "isbn_13": ["9780756625900"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:55:17.244666"}, "publish_date": "January 15, 2007", "latest_revision": 2, "key": "/books/OL10855439M", "authors": [{"key": "/authors/OL2655350A"}], "title": "My First Phonics Board Book", "subjects": ["Concepts - First Words", "Juvenile Nonfiction / Concepts / General", "Children's Books/Baby-Preschool", "Children's Baby - Language Arts"], "works": [{"key": "/works/OL7960334W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10856048M 5 2012-09-14T21:28:43.124076 {"publishers": ["Diane Pub Co"], "subtitle": "Glosario Espanol-Ingles Para Los Auxilliares De Salud", "weight": "8.8 ounces", "covers": [5077763], "edition_name": "Bilingual edition", "physical_format": "Plastic comb", "last_modified": {"type": "/type/datetime", "value": "2012-09-14T21:28:43.124076"}, "latest_revision": 5, "key": "/books/OL10856048M", "subjects": ["Spanish: Adult Nonfiction"], "isbn_13": ["9780756702427"], "title": "English-Spanish Glossary for Health Aides", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/spa"}, {"key": "/languages/eng"}], "isbn_10": ["0756702429"], "publish_date": "July 1999", "oclc_numbers": ["57600269"], "works": [{"key": "/works/OL8480419W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.8 x 8.2 x 0.2 inches", "revision": 5}
+/type/edition /books/OL10856403M 4 2010-04-24T18:10:03.404107 {"publishers": ["Diane Pub Co"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:10:03.404107"}, "title": "State of the Cities, 1999", "identifiers": {"goodreads": ["7025676"]}, "isbn_13": ["9780756707897"], "edition_name": "3rd edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0756707897"], "publish_date": "December 1999", "key": "/books/OL10856403M", "authors": [{"key": "/authors/OL2943109A"}], "latest_revision": 4, "works": [{"key": "/works/OL8697714W"}], "type": {"key": "/type/edition"}, "subjects": ["Sociology"], "revision": 4}
+/type/edition /books/OL10856512M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Paperback", "subtitle": "Hearings Before the Committee on Energy & Natural Resources, U.S. Senate", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Diane Pub."], "number_of_pages": 197, "isbn_13": ["9780756709921"], "isbn_10": ["075670992X"], "publish_date": "1999", "key": "/books/OL10856512M", "title": "Electric Power Industry Competition Legislation", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10857145M 2 2009-12-15T00:55:18.897226 {"publishers": ["Diane Pub Co"], "subtitle": "The Facts for Inmates And Officers, And a Self-care Manual for Inmates Living With HIV", "weight": "15.2 ounces", "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:55:18.897226"}, "latest_revision": 2, "key": "/books/OL10857145M", "authors": [{"key": "/authors/OL2831070A"}], "subjects": ["AIDS & HIV", "Medical"], "edition_name": "5th Rev edition", "title": "AIDS And Prisons", "number_of_pages": 144, "isbn_13": ["9780756719692"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0756719690"], "publish_date": "December 1993", "works": [{"key": "/works/OL8480315W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "11 x 8.4 x 0.4 inches", "revision": 2}
+/type/edition /books/OL10857255M 2 2009-12-15T00:55:18.897226 {"publishers": ["Diane Pub Co"], "subtitle": "A Report to the Congress", "weight": "8.8 ounces", "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:55:18.897226"}, "latest_revision": 2, "key": "/books/OL10857255M", "authors": [{"key": "/authors/OL3506407A"}], "subjects": ["Railroads - General", "Transportation"], "languages": [{"key": "/languages/eng"}], "title": "Action Plan for the Restructuring and Rationalization of the National Intercity Rail Passenger System", "number_of_pages": 63, "isbn_13": ["9780756721503"], "isbn_10": ["0756721504"], "publish_date": "February 2003", "works": [{"key": "/works/OL9493344W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.5 x 8.2 x 0.2 inches", "revision": 2}
+/type/edition /books/OL10857372M 4 2012-09-15T07:48:21.537165 {"publishers": ["Diane Pub Co"], "physical_format": "Plastic comb", "last_modified": {"type": "/type/datetime", "value": "2012-09-15T07:48:21.537165"}, "title": "Approved Drug Products With Therapeutic Equivalence Evaluations", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780756723255"], "covers": [5078308], "edition_name": "22nd edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0756723256"], "publish_date": "2002", "key": "/books/OL10857372M", "latest_revision": 4, "works": [{"key": "/works/OL8480666W"}], "type": {"key": "/type/edition"}, "subjects": ["Medical"], "revision": 4}
+/type/edition /books/OL10857510M 3 2010-04-24T18:10:03.404107 {"publishers": ["Diane Pub Co"], "number_of_pages": 308, "subtitle": "North American Pollutant Releases and Transfers Sourcebook \u00a999", "key": "/books/OL10857510M", "languages": [{"key": "/languages/eng"}], "title": "Taking Stock", "identifiers": {"goodreads": ["5686694"]}, "isbn_13": ["9780756725112"], "physical_format": "Paperback", "isbn_10": ["0756725119"], "publish_date": "July 2003", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:10:03.404107"}, "type": {"key": "/type/edition"}, "latest_revision": 3, "contributions": ["Catherine Miller (Editor)", "Nancy Levine (Editor)"], "subjects": ["Environmental Engineering & Technology", "Technology", "Science/Mathematics"], "revision": 3}
+/type/edition /books/OL10857676M 4 2010-04-24T18:10:03.404107 {"publishers": ["Diane Pub Co"], "number_of_pages": 76, "subtitle": "Hearing Before the Committee on the Judiciary, U.S. Senate", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:10:03.404107"}, "title": "Identity Theft", "type": {"key": "/type/edition"}, "identifiers": {"goodreads": ["5826464"]}, "isbn_13": ["9780756726959"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0756726956"], "publish_date": "September 2000", "key": "/books/OL10857676M", "authors": [{"key": "/authors/OL2629153A"}], "latest_revision": 4, "works": [{"key": "/works/OL7910251W"}], "physical_format": "Paperback", "subjects": ["Internet - Security", "Security - General", "Computers", "Computer Books: General"], "revision": 4}
+/type/edition /books/OL10857707M 3 2010-04-24T18:10:03.404107 {"publishers": ["Diane Pub Co"], "number_of_pages": 121, "key": "/books/OL10857707M", "weight": "12 ounces", "languages": [{"key": "/languages/eng"}], "title": "Environmental Impacts of Synthetic Based Drilling Fluids", "identifiers": {"goodreads": ["1456912"]}, "isbn_13": ["9780756727307"], "physical_format": "Paperback", "isbn_10": ["0756727308"], "publish_date": "October 2000", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:10:03.404107"}, "authors": [{"key": "/authors/OL3506540A"}, {"key": "/authors/OL3506541A"}, {"key": "/authors/OL3506542A"}], "latest_revision": 3, "type": {"key": "/type/edition"}, "subjects": ["Environmental Engineering & Technology", "Technology", "Science/Mathematics"], "physical_dimensions": "10.8 x 8.8 x 0.2 inches", "revision": 3}
+/type/edition /books/OL10857850M 2 2009-12-15T00:55:20.037424 {"physical_format": "Paperback", "subtitle": "A First View of Available Measures", "publishers": ["Diane Pub Co"], "isbn_10": ["0756729041"], "number_of_pages": 86, "isbn_13": ["9780756729042"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:55:20.037424"}, "publish_date": "December 2000", "latest_revision": 2, "key": "/books/OL10857850M", "authors": [{"key": "/authors/OL3506596A"}], "title": "America\u00aas Children and the Environment", "subjects": ["Environmental Conservation & Protection - General", "Environmental Science", "Science", "Science/Mathematics"], "works": [{"key": "/works/OL9493633W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10858264M 3 2010-04-24T18:10:03.404107 {"languages": [{"key": "/languages/eng"}], "number_of_pages": 107, "type": {"key": "/type/edition"}, "weight": "9.6 ounces", "publishers": ["Diane Pub Co"], "title": "Checking the Net Contents of Packaged Goods", "identifiers": {"goodreads": ["1849085"]}, "isbn_13": ["9780756733711"], "edition_name": "4th edition", "physical_format": "Paperback", "isbn_10": ["0756733715"], "publish_date": "February 2001", "key": "/books/OL10858264M", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:10:03.404107"}, "latest_revision": 3, "contributions": ["Tom Coleman (Editor)", "Terry L. Grimes (Editor)"], "subjects": ["Engineering - Industrial", "Technology", "Science/Mathematics"], "physical_dimensions": "10.7 x 8.4 x 0.3 inches", "revision": 3}
+/type/edition /books/OL10858632M 5 2011-04-28T13:35:32.469293 {"publishers": ["Diane Pub Co"], "identifiers": {"goodreads": ["2947678"]}, "subtitle": "Hearing Before The Committee On Energy And Commerce, U.s. House Of Representatives", "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-28T13:35:32.469293"}, "latest_revision": 5, "key": "/books/OL10858632M", "authors": [{"key": "/authors/OL3506429A"}], "subjects": ["Electronic Commerce", "Computers", "Computer Books: General"], "isbn_13": ["9780756742256"], "title": "State Impediments To E-commerce: Consumer Protection Or Veiled Protectionism?", "number_of_pages": 48, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0756742250"], "publish_date": "June 2, 2004", "oclc_numbers": ["149222147"], "works": [{"key": "/works/OL9493397W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL1085890M 10 2020-11-18T08:09:51.586053 {"other_titles": ["Aesop's fables.", "Country mouse and the city mouse. English."], "publishers": ["Bantam Books"], "identifiers": {"goodreads": ["1407823", "535745"], "librarything": ["3346972"]}, "ia_box_id": ["IA125503"], "isbn_10": ["0553097407", "0553375725"], "series": ["A Bank Street ready-to-read"], "covers": [3874198, 3874114], "ia_loaded_id": ["townmousecountry00sche"], "lc_classifications": ["PZ8.2.S34 To 1995"], "latest_revision": 10, "key": "/books/OL1085890M", "authors": [{"key": "/authors/OL234938A"}], "ocaid": "townmousecountry00sche", "publish_places": ["New York"], "contributions": ["Hannon, Holly, ill."], "description": {"type": "/type/text", "value": "When the town mouse and the country mouse visit each other, they find they prefer very different ways of life."}, "pagination": "47 p. :", "source_records": ["ia:townmousecountry00sche", "ia:townmouseco00sche", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:122329138:1038"], "title": "The town mouse and the country mouse", "dewey_decimal_class": ["398.2/45293233", "E"], "notes": {"type": "/type/text", "value": "\"A Byron Preiss book.\""}, "number_of_pages": 47, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["94009789"], "subjects": ["Fables.", "Mice -- Folklore.", "Folklore."], "publish_date": "1995", "publish_country": "nyu", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T08:09:51.586053"}, "by_statement": "[retold] by Ellen Schecter ; illustrated by Holly Hannon.", "works": [{"key": "/works/OL1957674W"}], "type": {"key": "/type/edition"}, "revision": 10}
+/type/edition /books/OL10859098M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Paperback", "subtitle": "Architectural Marvels You Can Build at the Beach", "weight": "11.2 ounces", "publishers": ["Diane Pub Co"], "number_of_pages": 96, "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780756758301"], "isbn_10": ["0756758300"], "publish_date": "June 1999", "key": "/books/OL10859098M", "authors": [{"key": "/authors/OL21996A"}, {"key": "/authors/OL3079238A"}, {"key": "/authors/OL3079239A"}], "title": "Sandtiquity", "type": {"key": "/type/edition"}, "subjects": ["Construction - General", "Design & Drafting", "Technology", "Science/Mathematics"], "physical_dimensions": "10 x 7.9 x 0.3 inches", "revision": 1}
+/type/edition /books/OL10860045M 8 2022-12-03T19:52:35.575804 {"publishers": ["Health Communications Inc"], "covers": [8322131], "physical_format": "Hardcover", "key": "/books/OL10860045M", "authors": [{"key": "/authors/OL3507021A"}], "ocaid": "collectionofchic0000unse", "classifications": {}, "source_records": ["ia:collectionofchic0000unse", "amazon:0757303358"], "title": "Chicken Soup for the Mother's Soul Collection", "identifiers": {"goodreads": ["2139543"], "librarything": ["3847668"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0757303358"], "publish_date": "2005", "oclc_numbers": ["122258275"], "works": [{"key": "/works/OL9494050W"}], "type": {"key": "/type/edition"}, "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-03T19:52:35.575804"}}
+/type/edition /books/OL10860402M 5 2021-12-30T02:47:22.490725 {"publishers": ["Kendall Hunt Pub Co"], "physical_format": "Paperback", "weight": "1.6 pounds", "title": "Jazz History Overview", "identifiers": {"goodreads": ["2704087"]}, "isbn_13": ["9780757508554"], "covers": [5078386], "edition_name": "Pap/Com edition", "languages": [{"key": "/languages/eng"}], "authors": [{"key": "/authors/OL3507290A"}, {"key": "/authors/OL499049A"}], "isbn_10": ["0757508553"], "publish_date": "October 2002", "key": "/books/OL10860402M", "subjects": ["Genres & Styles - Jazz", "Music", "Audio Adult: Other"], "type": {"key": "/type/edition"}, "physical_dimensions": "10.4 x 8.5 x 0.1 inches", "works": [{"key": "/works/OL26776287W"}], "source_records": ["bwb:9780757508554"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-30T02:47:22.490725"}}
+/type/edition /books/OL10860835M 7 2022-12-09T19:48:56.405773 {"publishers": ["Kendall/Hunt Publishing Company"], "identifiers": {"goodreads": ["6488875"], "librarything": ["3197402"]}, "subtitle": "Exercising Stewardship", "weight": "1.6 pounds", "physical_format": "Paperback", "key": "/books/OL10860835M", "authors": [{"key": "/authors/OL947487A"}, {"key": "/authors/OL2898973A"}], "subjects": ["Physical Education", "Education / Physical Education", "PHYSICAL EDUCATION AND TRAINING", "Christianity - General", "Religion", "Education / Teaching"], "edition_name": "4 edition", "title": "Physical Fitness and the Christian", "number_of_pages": 274, "isbn_13": ["9780757521263"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0757521266"], "publish_date": "August 1, 2005", "type": {"key": "/type/edition"}, "physical_dimensions": "10.8 x 8.3 x 0.7 inches", "works": [{"key": "/works/OL24846164W"}], "covers": [11694805], "ocaid": "physicalfitnessc0000dieh", "source_records": ["ia:physicalfitnessc0000dieh", "bwb:9780757521263", "promise:bwb_daily_pallets_2020-10-14"], "local_id": ["urn:bwbsku:W6-BGC-742"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T19:48:56.405773"}}
+/type/edition /books/OL10860986M 5 2021-12-30T02:13:43.082547 {"publishers": ["Kendall/Hunt Publishing Company"], "number_of_pages": 98, "title": "Instructor's Manual to Accompany Fundamental Mathematics for Elementary and Middle School Teachers", "type": {"key": "/type/edition"}, "identifiers": {"goodreads": ["5764662"]}, "isbn_13": ["9780757524943"], "edition_name": "2 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["075752494X"], "publish_date": "August 1, 2005", "key": "/books/OL10860986M", "authors": [{"key": "/authors/OL3507156A"}], "works": [{"key": "/works/OL9494164W"}], "physical_format": "Paperback", "subjects": ["Study & Teaching", "MATHEMATICS_STUDY AND TEACHING", "Mathematics / Study & Teaching", "Mathematics"], "source_records": ["bwb:9780757524943"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-30T02:13:43.082547"}}
+/type/edition /books/OL10861291M 4 2021-12-30T01:14:35.534045 {"publishers": ["Kendall/Hunt Publishing Company"], "weight": "6.4 ounces", "physical_format": "Spiral-bound", "key": "/books/OL10861291M", "authors": [{"key": "/authors/OL3507698A"}], "subjects": ["LIFE SKILLS", "NUTRITION", "Reference / Personal & Practical Guides", "Physical Education", "Education"], "isbn_13": ["9780757537684"], "title": "Pre-K Life Skills and Nutrition Units", "number_of_pages": 58, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0757537685"], "publish_date": "September 1, 2006", "oclc_numbers": ["148661171"], "works": [{"key": "/works/OL9494648W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.5 x 8.2 x 0.2 inches", "source_records": ["bwb:9780757537684"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-30T01:14:35.534045"}}
+/type/edition /books/OL10861389M 7 2022-08-04T20:26:49.462132 {"publishers": ["Kendall/Hunt Publishing Company"], "weight": "4 ounces", "covers": [2599710], "edition_name": "Spi Lab edition", "physical_format": "Plastic comb", "key": "/books/OL10861389M", "subjects": ["PHYSICS", "Science", "Science/Mathematics"], "isbn_13": ["9780757540233"], "title": "INTRODUCTION TO PHYSICS II LABORATORY MANUAL", "number_of_pages": 32, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0757540236"], "publish_date": "January 30, 2007", "oclc_numbers": ["156810962"], "works": [{"key": "/works/OL5092986W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.5 x 8.2 x 0.2 inches", "source_records": ["bwb:9780757540233", "amazon:0757540236"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-04T20:26:49.462132"}}
+/type/edition /books/OL10861932M 3 2010-04-24T18:10:03.404107 {"languages": [{"key": "/languages/eng"}], "number_of_pages": 46, "key": "/books/OL10861932M", "publishers": ["Icon Group International"], "title": "The 2000 Import and Export Market for Preserved, Concentrated or Sweetened Milk and Cream in South Africa (World Trade Report)", "identifiers": {"goodreads": ["4224498"]}, "isbn_13": ["9780757602948"], "edition_name": "2000 edition", "physical_format": "Ring-bound", "isbn_10": ["0757602940"], "publish_date": "January 2, 2001", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:10:03.404107"}, "authors": [{"key": "/authors/OL3484483A"}, {"key": "/authors/OL3484484A"}, {"key": "/authors/OL3484482A"}], "latest_revision": 3, "type": {"key": "/type/edition"}, "subjects": ["General", "International Trade", "Global Analysis", "Export Statistics", "Data", "International Study", "South Africa", "Import Statistics", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL1086212M 5 2020-11-18T08:13:23.268008 {"publishers": ["Permanent Press"], "identifiers": {"goodreads": ["730930"]}, "subtitle": "a Bert Swain mystery", "isbn_10": ["1877946567"], "subject_place": ["New York (N.Y.)", "United States"], "lc_classifications": ["PS3564.A8493 N6 1995"], "latest_revision": 5, "key": "/books/OL1086212M", "authors": [{"key": "/authors/OL541734A"}], "publish_places": ["Sag Harbor, N.Y"], "pagination": "202 p. ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:122615371:707"], "title": "No good deed", "dewey_decimal_class": ["813/.54"], "number_of_pages": 202, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["94010137"], "subjects": ["Hospitals -- United States -- Staff -- Fiction.", "New York (N.Y.) -- Fiction."], "publish_date": "1995", "publish_country": "nyu", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T08:13:23.268008"}, "by_statement": "by Paul Nathan.", "oclc_numbers": ["30030798"], "works": [{"key": "/works/OL3340965W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10862271M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780757606335"], "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "publishers": ["Icon Group International"], "number_of_pages": 15, "edition_name": "2000 edition", "isbn_10": ["0757606334"], "publish_date": "January 5, 2001", "key": "/books/OL10862271M", "authors": [{"key": "/authors/OL3484259A"}, {"key": "/authors/OL3484259A"}], "title": "The 2000 Import and Export Market for Unmilled Barley in Serbia & Montenegro (World Trade Report)", "type": {"key": "/type/edition"}, "subjects": ["General", "Export Statistics", "Data", "Unmilled Barley", "International Study", "Global Analysis", "International Trade", "Import Statistics", "Serbia & Montenegro", "Business / Economics / Finance"], "revision": 1}
+/type/edition /books/OL10862490M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780757608520"], "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "publishers": ["Icon Group International"], "number_of_pages": 14, "edition_name": "2000 edition", "isbn_10": ["0757608523"], "publish_date": "January 5, 2001", "key": "/books/OL10862490M", "authors": [{"key": "/authors/OL3484263A"}, {"key": "/authors/OL3484512A"}, {"key": "/authors/OL3484513A"}], "title": "The 2000 Import and Export Market for Buckwheat, Millet, Canary Seed, and Grain Sorghum in Ireland (World Trade Report)", "type": {"key": "/type/edition"}, "subjects": ["General", "Ireland", "Import Statistics", "International Trade", "International Study, Global Analysis", "Grain Sorghum", "Export Statistics", "Data", "Buckwheat", "Millet", "Canary Seed", "Business / Economics / Finance"], "revision": 1}
+/type/edition /books/OL10862634M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780757609961"], "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "publishers": ["Icon Group International"], "number_of_pages": 97, "edition_name": "2000 edition", "isbn_10": ["0757609961"], "publish_date": "January 5, 2001", "key": "/books/OL10862634M", "authors": [{"key": "/authors/OL3495202A"}, {"key": "/authors/OL3484529A"}, {"key": "/authors/OL3484530A"}, {"key": "/authors/OL3484531A"}], "title": "The 2000 Import and Export Market for Preparations of Cereal and Fruit and Vegetable Flours in Greece (World Trade Report)", "type": {"key": "/type/edition"}, "subjects": ["General", "Flour", "Export Statistics", "Data", "Greece", "Import Statistics", "International Trade", "Global Analysis", "International Study", "Business / Economics / Finance"], "revision": 1}
+/type/edition /books/OL10862635M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780757609978"], "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "publishers": ["Icon Group International"], "number_of_pages": 30, "edition_name": "2000 edition", "isbn_10": ["075760997X"], "publish_date": "January 5, 2001", "key": "/books/OL10862635M", "authors": [{"key": "/authors/OL3495202A"}, {"key": "/authors/OL3484530A"}, {"key": "/authors/OL3484529A"}, {"key": "/authors/OL3484531A"}], "title": "The 2000 Import and Export Market for Preparations of Cereal and Fruit and Vegetable Flours in Guatemala (World Trade Report)", "type": {"key": "/type/edition"}, "subjects": ["General", "Guatemala", "Import Statistics", "International Trade", "Global Analysis", "International Study", "Flour", "Data", "Export Statistics", "Business / Economics / Finance"], "revision": 1}
+/type/edition /books/OL10862636M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780757609985"], "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "publishers": ["Icon Group International"], "number_of_pages": 16, "edition_name": "2000 edition", "isbn_10": ["0757609988"], "publish_date": "January 5, 2001", "key": "/books/OL10862636M", "authors": [{"key": "/authors/OL3495202A"}, {"key": "/authors/OL3484531A"}, {"key": "/authors/OL3484530A"}, {"key": "/authors/OL3484529A"}], "title": "The 2000 Import and Export Market for Preparations of Cereal and Fruit and Vegetable Flours in Guyana (World Trade Report)", "type": {"key": "/type/edition"}, "subjects": ["General", "Guyana", "Import Statistics", "International Trade", "Global Analysis", "International Study", "Flour", "Data", "Export Statistics", "Business / Economics / Finance"], "revision": 1}
+/type/edition /books/OL10862806M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780757611681"], "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "publishers": ["Icon Group International"], "number_of_pages": 58, "edition_name": "2000 edition", "isbn_10": ["0757611680"], "publish_date": "January 5, 2001", "key": "/books/OL10862806M", "authors": [{"key": "/authors/OL3484521A"}, {"key": "/authors/OL3484522A"}, {"key": "/authors/OL3484523A"}], "title": "The 2000 Import and Export Market for Macaroni and Spaghetti in Greece (World Trade Report)", "type": {"key": "/type/edition"}, "subjects": ["General", "International Study", "Spaghetti", "Export Statistics", "Data", "Macaroni", "Greece", "Import Statistics", "International Trade", "Global Analysis", "Business / Economics / Finance"], "revision": 1}
+/type/edition /books/OL1086300M 9 2022-12-17T11:46:58.860343 {"publishers": ["Dutton"], "identifiers": {"librarything": ["7801691"], "goodreads": ["816671"]}, "subtitle": "right brain/left brain relationships and how to make them work", "ia_box_id": ["IA147611"], "isbn_10": ["0525937315"], "ia_loaded_id": ["whenoppositesatt00cutt"], "lc_classifications": ["HQ801 .C88 1994", "HQ801.C88 1994"], "key": "/books/OL1086300M", "authors": [{"key": "/authors/OL578223A"}], "publish_places": ["New York"], "pagination": "xvii, 285 p. ;", "source_records": ["ia:whenoppositesatt00cutt", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:122696796:829", "promise:bwb_daily_pallets_2022-09-13", "bwb:9780525937319"], "title": "When opposites attract", "dewey_decimal_class": ["158/.2"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 255-276) and index."}, "number_of_pages": 285, "languages": [{"key": "/languages/eng"}], "lccn": ["94010234"], "subjects": ["Man-woman relationships.", "Gay couples.", "Cerebral dominance.", "Interpersonal communication.", "Communication in marriage."], "publish_date": "1994", "publish_country": "nyu", "by_statement": "Rebecca Cutter.", "oclc_numbers": ["30109027"], "works": [{"key": "/works/OL3469244W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:W7-CTS-161"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T11:46:58.860343"}}
+/type/edition /books/OL1086304M 9 2022-12-04T16:27:53.638234 {"publishers": ["Wiley Law Publications"], "isbn_10": ["0471046639", "0471046663", "0471046671"], "subject_place": ["United States.", "United States"], "covers": [3874418, 3874407, 3874387], "lc_classifications": ["KF3457 .D43 1994", "KF3457.D43 1994"], "key": "/books/OL1086304M", "authors": [{"key": "/authors/OL21631A"}], "publish_places": ["New York"], "contributions": ["Decker, Kurt H."], "languages": [{"key": "/languages/eng"}], "pagination": "2 v. :", "source_records": ["marc:marc_records_scriblio_net/part24.dat:48194961:1440", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:122700247:1440", "bwb:9780471046677", "bwb:9780471046660", "promise:bwb_daily_pallets_2022-08-23"], "title": "Drafting and revising employment policies and handbooks", "dewey_decimal_class": ["344.73/01", "347.3041"], "notes": {"type": "/type/text", "value": "Kept up to date by pocket parts and supplements.\nIncludes bibliographical references.\nSupplements published: Gaithersburg : Aspen publishers (2000- ).\nRev. ed. of: Drafting and revising employment handbooks. c1991.\nSystem requirements for accompanying computer disk: IBM PCs and compatibles."}, "identifiers": {"goodreads": ["4362481"], "librarything": ["7947988"]}, "edition_name": "2nd ed.", "lccn": ["94010238"], "subjects": ["Labor laws and legislation -- United States", "Employees -- Dismissal of -- Law and legislation -- United States", "Labor contract -- United States", "Employee handbooks -- United States -- Authorship"], "publish_date": "1994", "publish_country": "nyu", "series": ["Human resources library"], "by_statement": "Kurt H. Decker.", "works": [{"key": "/works/OL66747W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:W7-CZD-581"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T16:27:53.638234"}}
+/type/edition /books/OL10863504M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780757618666"], "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Icon Group International, Inc."], "number_of_pages": 16, "edition_name": "2000 edition", "isbn_10": ["0757618669"], "publish_date": "January 18, 2001", "key": "/books/OL10863504M", "authors": [{"key": "/authors/OL3484540A"}, {"key": "/authors/OL3484541A"}], "title": "The 2000 Import and Export Market for Frozen and Temporarily Perserved Vegetables in New Caledonia (World Trade Report)", "type": {"key": "/type/edition"}, "subjects": ["Data", "Export Statistics", "Global Analysis", "Import Statistics", "International Study", "International Trade", "New Caledonia"], "revision": 1}
+/type/edition /books/OL10864360M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780757627224"], "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Icon Group International, Inc."], "number_of_pages": 70, "edition_name": "2000 edition", "isbn_10": ["0757627226"], "publish_date": "January 19, 2001", "key": "/books/OL10864360M", "authors": [{"key": "/authors/OL3508097A"}, {"key": "/authors/OL3484569A"}], "title": "The 2000 Import and Export Market for Sugar, Sugar Preparations and Honey in Japan (World Trade Report)", "type": {"key": "/type/edition"}, "subjects": ["Data", "Export Statistics", "Global Analysis", "Import Statistics", "International Study", "International Trade", "Japan", "Sugar"], "revision": 1}
+/type/edition /books/OL10865009M 3 2010-12-18T20:25:29.776199 {"publishers": ["Icon Group International, Inc."], "number_of_pages": 57, "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2010-12-18T20:25:29.776199"}, "latest_revision": 3, "key": "/books/OL10865009M", "authors": [{"key": "/authors/OL3484572A"}], "subjects": ["Coffee", "Czech Republic", "Data", "Export Statistics", "Global Analysis", "Import Statistics", "International Study", "International Trade"], "edition_name": "2000 edition", "classifications": {}, "title": "The 2000 Import and Export Market for Coffee in Czech Republic", "notes": {"type": "/type/text", "value": "World Trade Report"}, "identifiers": {}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780757633713"], "isbn_10": ["0757633714"], "publish_date": "January 19, 2001", "works": [{"key": "/works/OL9465014W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10866024M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780757643866"], "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Icon Group International, Inc."], "number_of_pages": 107, "edition_name": "2000 edition", "isbn_10": ["0757643868"], "publish_date": "January 22, 2001", "key": "/books/OL10866024M", "authors": [{"key": "/authors/OL3494354A"}, {"key": "/authors/OL3494355A"}], "title": "The 2000 Import and Export Market for Beverages and Tobacco in Mexico (World Trade Report)", "type": {"key": "/type/edition"}, "subjects": ["Data", "Export Statistics", "Global Analysis", "Import Statistics", "International Study", "International Trade", "Mexico"], "revision": 1}
+/type/edition /books/OL10866307M 5 2010-12-19T03:36:12.156340 {"publishers": ["Icon Group International, Inc."], "number_of_pages": 18, "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2010-12-19T03:36:12.156340"}, "latest_revision": 5, "key": "/books/OL10866307M", "authors": [{"key": "/authors/OL3494339A"}], "subjects": ["Data", "Export Statistics", "Global Analysis", "Import Statistics", "International Study", "International Trade", "St. Kitts and Nevis", "Wine"], "edition_name": "2000 edition", "classifications": {}, "title": "The 2000 Import and Export Market for Wine in St. Kitts and Nevis", "notes": {"type": "/type/text", "value": "World Trade Report"}, "identifiers": {"goodreads": ["213022"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780757646690"], "isbn_10": ["0757646697"], "publish_date": "January 22, 2001", "works": [{"key": "/works/OL9476610W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10866892M 3 2022-08-04T19:50:25.974745 {"physical_format": "Ring-bound", "languages": [{"key": "/languages/eng"}], "publishers": ["Icon Group International"], "isbn_10": ["0757652557"], "number_of_pages": 126, "covers": [2600141], "edition_name": "2000 edition", "isbn_13": ["9780757652554"], "publish_date": "October 27, 2000", "key": "/books/OL10866892M", "authors": [{"key": "/authors/OL2813958A"}, {"key": "/authors/OL3508374A"}, {"key": "/authors/OL3508375A"}], "title": "The 2000-2005 World Outlook for Frozen Ready Meals and Pizzas (Strategic Planning Series)", "subjects": ["Frozen Ready Meals and Pizzas", "The World", "World Statistical Outlook", "General", "Business & Economics", "Business / Economics / Finance", "Business/Economics"], "type": {"key": "/type/edition"}, "works": [{"key": "/works/OL28601373W"}], "source_records": ["amazon:0757652557"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-04T19:50:25.974745"}}
+/type/edition /books/OL1086768M 4 2020-11-18T08:19:02.408159 {"publishers": ["American Society of Safety Engineers"], "identifiers": {"goodreads": ["3973558"]}, "isbn_10": ["0939874997"], "subject_place": ["United States."], "lc_classifications": ["T55 .M356 1994"], "latest_revision": 4, "key": "/books/OL1086768M", "authors": [{"key": "/authors/OL29374A"}], "publish_places": ["[Des Plaines, IL]"], "languages": [{"key": "/languages/eng"}], "pagination": "v, 435 p. :", "source_records": ["marc:marc_records_scriblio_net/part24.dat:48610212:704", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:123109542:699"], "title": "Safety engineering", "dewey_decimal_class": ["363.11/0973"], "notes": {"type": "/type/text", "value": "Includes bibliographical references and index."}, "number_of_pages": 435, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "edition_name": "2nd ed.", "lccn": ["94010722"], "subjects": ["Industrial safety -- United States"], "publish_date": "1994", "publish_country": "ilu", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T08:19:02.408159"}, "by_statement": "Gilbert Marshall.", "works": [{"key": "/works/OL93642W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10868342M 3 2011-05-14T12:19:36.994591 {"publishers": ["Icon Group International"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T12:19:36.994591"}, "title": "The 2000-2005 Outlook for Fruit Juices and Juice Drinks in Africa", "number_of_pages": 36, "isbn_13": ["9780757671661"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0757671667"], "publish_date": "June 2001", "key": "/books/OL10868342M", "authors": [{"key": "/authors/OL2727138A"}], "latest_revision": 3, "works": [{"key": "/works/OL8181303W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business & Economics", "Business / Economics / Finance", "Business/Economics"], "revision": 3}
+/type/edition /books/OL10868665M 3 2011-05-14T11:54:29.825054 {"publishers": ["Icon Group International"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T11:54:29.825054"}, "title": "The 2000-2005 Outlook for Aircraft Engines and Engine Parts in Europe", "number_of_pages": 40, "isbn_13": ["9780757674891"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0757674895"], "publish_date": "July 2001", "key": "/books/OL10868665M", "authors": [{"key": "/authors/OL2727138A"}], "latest_revision": 3, "works": [{"key": "/works/OL8179348W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business & Economics", "Business / Economics / Finance", "Business/Economics"], "revision": 3}
+/type/edition /books/OL10868924M 3 2011-05-14T11:58:33.160036 {"publishers": ["Icon Group International"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T11:58:33.160036"}, "title": "The 2000-2005 Outlook for Biscuits in Europe", "number_of_pages": 36, "isbn_13": ["9780757677489"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0757677487"], "publish_date": "July 2001", "key": "/books/OL10868924M", "authors": [{"key": "/authors/OL2727138A"}], "latest_revision": 3, "works": [{"key": "/works/OL8179684W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business & Economics", "Business / Economics / Finance", "Business/Economics"], "revision": 3}
+/type/edition /books/OL10868929M 3 2011-05-14T11:58:36.729748 {"publishers": ["Icon Group International"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T11:58:36.729748"}, "title": "The 2000-2005 Outlook for Bituminous Coal in Asia", "number_of_pages": 28, "isbn_13": ["9780757677533"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0757677533"], "publish_date": "July 2001", "key": "/books/OL10868929M", "authors": [{"key": "/authors/OL2727138A"}], "latest_revision": 3, "works": [{"key": "/works/OL8179690W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business & Economics", "Business / Economics / Finance", "Business/Economics"], "revision": 3}
+/type/edition /books/OL10869037M 3 2011-05-14T12:00:00.385518 {"publishers": ["Icon Group International"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T12:00:00.385518"}, "title": "The 2000-2005 Outlook for Breakfast Cereals in Latin America", "number_of_pages": 24, "isbn_13": ["9780757678615"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0757678610"], "publish_date": "July 2001", "key": "/books/OL10869037M", "authors": [{"key": "/authors/OL2727138A"}], "latest_revision": 3, "works": [{"key": "/works/OL8179818W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business & Economics", "Business / Economics / Finance", "Business/Economics"], "revision": 3}
+/type/edition /books/OL10869207M 3 2011-05-14T12:02:41.203386 {"publishers": ["Icon Group International"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T12:02:41.203386"}, "title": "The 2000-2005 Outlook for Carpet Shampoos in Oceana", "number_of_pages": 20, "isbn_13": ["9780757680311"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0757680313"], "publish_date": "July 2001", "key": "/books/OL10869207M", "authors": [{"key": "/authors/OL2727138A"}], "latest_revision": 3, "works": [{"key": "/works/OL8180016W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business & Economics", "Business / Economics / Finance", "Business/Economics"], "revision": 3}
+/type/edition /books/OL10869520M 3 2011-05-14T12:07:09.252480 {"publishers": ["Icon Group International"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T12:07:09.252480"}, "title": "The 2000-2005 Outlook for Construction Sand and Gravel in the Middle East", "number_of_pages": 24, "isbn_13": ["9780757683442"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0757683444"], "publish_date": "July 2001", "key": "/books/OL10869520M", "authors": [{"key": "/authors/OL2727138A"}], "latest_revision": 3, "works": [{"key": "/works/OL8180356W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business & Economics", "Business / Economics / Finance", "Business/Economics"], "revision": 3}
+/type/edition /books/OL10869610M 3 2011-05-14T12:08:44.040009 {"publishers": ["Icon Group International"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T12:08:44.040009"}, "title": "The 2000-2005 Outlook for Crude Petroleum Extraction and Natural Gas Extraction in Oceana", "number_of_pages": 20, "isbn_13": ["9780757684340"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0757684343"], "publish_date": "July 2001", "key": "/books/OL10869610M", "authors": [{"key": "/authors/OL2727138A"}], "latest_revision": 3, "works": [{"key": "/works/OL8180467W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business & Economics", "Business / Economics / Finance", "Business/Economics"], "revision": 3}
+/type/edition /books/OL10869780M 3 2011-05-14T12:11:23.968941 {"publishers": ["Icon Group International"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T12:11:23.968941"}, "title": "The 2000-2005 Outlook for Dried Desserts in Asia", "number_of_pages": 28, "isbn_13": ["9780757686047"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0757686044"], "publish_date": "July 2001", "key": "/books/OL10869780M", "authors": [{"key": "/authors/OL2727138A"}], "latest_revision": 3, "works": [{"key": "/works/OL8180673W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business & Economics", "Business / Economics / Finance", "Business/Economics"], "revision": 3}
+/type/edition /books/OL10869790M 3 2011-05-14T12:11:33.105966 {"publishers": ["Icon Group International"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T12:11:33.105966"}, "title": "The 2000-2005 Outlook for Dried Milk Powders in Latin America", "number_of_pages": 24, "isbn_13": ["9780757686146"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0757686141"], "publish_date": "July 2001", "key": "/books/OL10869790M", "authors": [{"key": "/authors/OL2727138A"}], "latest_revision": 3, "works": [{"key": "/works/OL8180682W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business & Economics", "Business / Economics / Finance", "Business/Economics"], "revision": 3}
+/type/edition /books/OL10870247M 3 2011-05-14T12:17:52.036764 {"publishers": ["Icon Group International"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T12:17:52.036764"}, "title": "The 2000-2005 Outlook for Formula Milk in Oceana", "number_of_pages": 20, "isbn_13": ["9780757690716"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0757690718"], "publish_date": "July 2001", "key": "/books/OL10870247M", "authors": [{"key": "/authors/OL2727138A"}], "latest_revision": 3, "works": [{"key": "/works/OL8181182W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business & Economics", "Business / Economics / Finance", "Business/Economics"], "revision": 3}
+/type/edition /books/OL10870250M 3 2011-05-14T12:17:59.782481 {"publishers": ["Icon Group International"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T12:17:59.782481"}, "title": "The 2000-2005 Outlook for Franchising in Africa", "number_of_pages": 40, "isbn_13": ["9780757690747"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0757690742"], "publish_date": "July 2001", "key": "/books/OL10870250M", "authors": [{"key": "/authors/OL2727138A"}], "latest_revision": 3, "works": [{"key": "/works/OL8181191W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business & Economics", "Business / Economics / Finance", "Business/Economics"], "revision": 3}
+/type/edition /books/OL10870328M 3 2011-05-14T12:18:54.016898 {"publishers": ["Icon Group International"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T12:18:54.016898"}, "title": "The 2000-2005 Outlook for Frozen Red Meat in Europe", "number_of_pages": 36, "isbn_13": ["9780757691522"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0757691528"], "publish_date": "July 2001", "key": "/books/OL10870328M", "authors": [{"key": "/authors/OL2727138A"}], "latest_revision": 3, "works": [{"key": "/works/OL8181270W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business & Economics", "Business / Economics / Finance", "Business/Economics"], "revision": 3}
+/type/edition /books/OL10871339M 3 2011-01-11T22:07:38.736336 {"publishers": ["Rigby"], "physical_format": "Paperback", "classifications": {}, "last_modified": {"type": "/type/datetime", "value": "2011-01-11T22:07:38.736336"}, "title": "Dwy Emergent/BB Complete Pkg", "notes": {"type": "/type/text", "value": "Discovery World"}, "identifiers": {}, "isbn_13": ["9780757827877"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["075782787X"], "publish_date": "September 2001", "key": "/books/OL10871339M", "authors": [{"key": "/authors/OL2812577A"}], "latest_revision": 3, "works": [{"key": "/works/OL8432000W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Textbooks"], "revision": 3}
+/type/edition /books/OL10871387M 2 2010-04-13T06:18:57.746635 {"physical_format": "Audio CD", "subtitle": "Technology Component (Pebble Soup)", "weight": "3 ounces", "title": "Explorations/Exploraciones", "publishers": ["Rigby"], "isbn_13": ["9780757874970"], "covers": [2600650], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0757874975"], "publish_date": "May 2003", "key": "/books/OL10871387M", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:18:57.746635"}, "latest_revision": 2, "subjects": ["General", "Software - Children Ages 4-8"], "type": {"key": "/type/edition"}, "physical_dimensions": "6.4 x 5.5 x 0.4 inches", "revision": 2}
+/type/edition /books/OL10871557M 4 2011-04-26T03:05:33.286817 {"publishers": ["Alfred Publishing Company"], "physical_format": "Paperback", "subtitle": "Kalmus Edition", "last_modified": {"type": "/type/datetime", "value": "2011-04-26T03:05:33.286817"}, "title": "Attila", "number_of_pages": 212, "isbn_13": ["9780757903939"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0757903932"], "publish_date": "March 1985", "key": "/books/OL10871557M", "authors": [{"key": "/authors/OL2071725A"}], "latest_revision": 4, "oclc_numbers": ["47662161"], "works": [{"key": "/works/OL7209539W"}], "type": {"key": "/type/edition"}, "subjects": ["Genres & Styles - Classical", "Instruction & Study - Voice", "Songbooks - General", "Genres & Styles - Opera", "Music", "Music/Songbooks"], "revision": 4}
+/type/edition /books/OL10871599M 3 2010-04-13T06:18:57.746635 {"publishers": ["Alfred Pub Co"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:18:57.746635"}, "source_records": ["amazon:0757904696"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "title": "Steve Smith", "isbn_13": ["9780757904691"], "covers": [2600791], "edition_name": "DVD edition", "physical_format": "Hardcover", "isbn_10": ["0757904696"], "publish_date": "August 2003", "key": "/books/OL10871599M", "authors": [{"key": "/authors/OL2628161A"}], "latest_revision": 3, "works": [{"key": "/works/OL271587W"}], "type": {"key": "/type/edition"}, "subjects": ["Instruction & Study - General", "Musical Instruments - Percussion", "Music"], "revision": 3}
+/type/edition /books/OL1087167M 10 2022-02-25T12:09:42.400914 {"publishers": ["University of Texas Press"], "number_of_pages": 284, "subtitle": "Naj Tunich and the tradition of Maya cave painting", "description": {"type": "/type/text", "value": "\"Describes the cave site of Naj Tunich in the southeastern Pete\u0301n region of Guatemala. Includes an analysis of the cave painting style and iconography and (with Barbara MacLeod) of the hieroglyphic texts that accompany some of them. A survey of cave paintings from other parts of the Maya world and elsewhere in Mesoamerica provides a broad comparative context\"--Handbook of Latin American Studies, v. 57."}, "isbn_10": ["029275552X"], "subject_place": ["Naj Tunich Site (Guatemala)", "Guatemala.", "Antiquities."], "dewey_decimal_class": ["972.81"], "covers": [156816], "lc_classifications": ["F1435.1.N35 S76 1995", "F1435.1.N35S76 1995"], "key": "/books/OL1087167M", "authors": [{"key": "/authors/OL578567A"}], "ocaid": "imagesfromunderw0000ston", "publish_places": ["Austin"], "subjects": ["Maya art -- Guatemala.", "Maya painting -- Guatemala.", "Cave paintings -- Guatemala.", "Mayas -- Antiquities.", "Naj Tunich Site (Guatemala)"], "uri_descriptions": ["Publisher description"], "edition_name": "1st ed.", "pagination": "x, 284 p., [8] p. of plates :", "source_records": ["marc:OpenLibraries-Trent-MARCs/multi2.mrc:7756902:1260", "ia:imagesfromunderw0000ston", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:123456629:1657", "bwb:9780292755529"], "title": "Images from the underworld", "lccn": ["94011145"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 261-278) and index."}, "identifiers": {"goodreads": ["902538"], "librarything": ["787752"]}, "languages": [{"key": "/languages/eng"}], "url": ["http://www.loc.gov/catdir/description/texas041/94011145.html"], "local_id": ["urn:trent:0116403997277", "urn:trent:0116404034146", "urn:trent:0116411288339"], "publish_date": "1995", "publish_country": "txu", "by_statement": "Andrea J. Stone.", "works": [{"key": "/works/OL3471087W"}], "type": {"key": "/type/edition"}, "uris": ["http://www.loc.gov/catdir/description/texas041/94011145.html"], "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-25T12:09:42.400914"}}
+/type/edition /books/OL10872053M 4 2011-04-27T04:56:57.706536 {"publishers": ["Alfred Publishing Company"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2011-04-27T04:56:57.706536"}, "title": "Ten Trios on Familiar Hymns", "number_of_pages": 24, "isbn_13": ["9780757912719"], "covers": [2600996], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0757912710"], "publish_date": "September 2003", "key": "/books/OL10872053M", "authors": [{"key": "/authors/OL2853686A"}], "latest_revision": 4, "oclc_numbers": ["60691475"], "works": [{"key": "/works/OL8528807W"}], "type": {"key": "/type/edition"}, "subjects": ["Musical Instruments - Piano", "Music", "Music/Songbooks"], "revision": 4}
+/type/edition /books/OL10872127M 2 2010-04-13T06:18:57.746635 {"publishers": ["Warner Bros. Publications"], "key": "/books/OL10872127M", "title": "Music Expressions Grade 5 Teacher Edition Volume 4", "isbn_13": ["9780757914072"], "covers": [5078792], "physical_format": "Spiral-bound", "isbn_10": ["0757914071"], "publish_date": "2004", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:18:57.746635"}, "latest_revision": 2, "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10872987M 5 2022-08-05T01:04:09.661212 {"publishers": ["Alfred Pub Co"], "languages": [{"key": "/languages/eng"}], "title": "Oboe Concerto in G Minor", "number_of_pages": 20, "isbn_13": ["9780757977497"], "physical_format": "Paperback", "isbn_10": ["0757977499"], "publish_date": "March 1985", "key": "/books/OL10872987M", "authors": [{"key": "/authors/OL601846A"}], "oclc_numbers": ["47808725"], "works": [{"key": "/works/OL8422250W"}], "type": {"key": "/type/edition"}, "subjects": ["Genres & Styles - Classical", "Individual Composer & Musician", "Musical Instruments - Woodwinds", "Music"], "source_records": ["amazon:0757977499"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-05T01:04:09.661212"}}
+/type/edition /books/OL1087305M 17 2022-12-07T12:04:39.222772 {"publishers": ["Rutgers University Press"], "number_of_pages": 165, "series": ["Women writers", "Women writers (New Brunswick, N.J.)"], "covers": [608823, 608822], "local_id": ["urn:sfpl:31223101781467", "urn:sfpl:31223042064122", "urn:bwbsku:P7-DZC-548"], "lc_classifications": ["PS3565.A8 W43 1994", "PS3565.A8W43 1994"], "key": "/books/OL1087305M", "authors": [{"key": "/authors/OL32981A"}], "publish_places": ["New Brunswick, N.J"], "contributions": ["Showalter, Elaine."], "subjects": ["Oates, Joyce Carol, 1938-", "Teenage girls -- Fiction.", "Serial murders -- Fiction."], "pagination": "vi, 165 p. ;", "source_records": ["amazon:0813521343", "marc:marc_openlibraries_sanfranciscopubliclibrary/sfpl_chq_2018_12_24_run02.mrc:125242734:2103", "bwb:9780813521350", "bwb:9780813521343", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:123580664:1234", "ia:whereareyougoing0000oate", "promise:bwb_daily_pallets_2022-03-17"], "title": "\"Where are you going, where have you been?\"", "dewey_decimal_class": ["813/.54"], "notes": {"type": "/type/text", "value": "Includes the text of the story, a chronology, essays about the story, and bibliographical references (p. 163-164)."}, "identifiers": {"goodreads": ["15979", "761996"], "librarything": ["151857"]}, "languages": [{"key": "/languages/eng"}], "lccn": ["94011284"], "isbn_10": ["0813521343", "0813521351"], "publish_date": "1994", "publish_country": "nju", "by_statement": "Joyce Carol Oates ; edited and with an introduction by Elaine Showalter.", "works": [{"key": "/works/OL14958438W"}], "type": {"key": "/type/edition"}, "ocaid": "whereareyougoing0000oate", "latest_revision": 17, "revision": 17, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-07T12:04:39.222772"}}
+/type/edition /books/OL10873541M 3 2011-04-30T10:10:49.521747 {"publishers": ["Alfred Publishing Company"], "subtitle": "Conga Basics", "edition_name": "Vhs edition", "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-30T10:10:49.521747"}, "latest_revision": 3, "key": "/books/OL10873541M", "authors": [{"key": "/authors/OL3509264A"}], "subjects": ["Instruction & Study - General", "Musical Instruments - Percussion", "Music", "Music/Songbooks"], "isbn_13": ["9780757995859"], "title": "Getting Started on Congas", "number_of_pages": 1, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0757995853"], "publish_date": "April 2002", "oclc_numbers": ["185702105"], "works": [{"key": "/works/OL9495780W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10873626M 5 2010-04-24T18:10:30.540584 {"publishers": ["Alfred Publishing Company"], "languages": [{"key": "/languages/eng"}], "title": "Ultimate Play-Along Horn Trax Billy Cobham Conundrum", "isbn_10": ["075799783X"], "identifiers": {"goodreads": ["7086948"]}, "isbn_13": ["9780757997839"], "covers": [2601334], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:10:30.540584"}, "publish_date": "April 2004", "key": "/books/OL10873626M", "authors": [{"key": "/authors/OL3509265A"}], "latest_revision": 5, "works": [{"key": "/works/OL9495784W"}], "type": {"key": "/type/edition"}, "subjects": ["Musical Instruments - Brass", "Music/Songbooks"], "revision": 5}
+/type/edition /books/OL10873680M 4 2011-06-08T09:41:15.901540 {"publishers": ["Alfred Publishing Company"], "covers": [5079020], "edition_name": "Vhs edition", "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-06-08T09:41:15.901540"}, "latest_revision": 4, "key": "/books/OL10873680M", "authors": [{"key": "/authors/OL3509280A"}], "subjects": ["Genres & Styles - Blues", "Instruction & Study - General", "Musical Instruments - Guitar", "Music", "Music/Songbooks"], "isbn_13": ["9780757998942"], "title": "A Living Legend", "number_of_pages": 1, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0757998941"], "publish_date": "August 2002", "oclc_numbers": ["185699900"], "works": [{"key": "/works/OL9495806W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL1087381M 9 2022-05-25T03:17:08.171370 {"publishers": ["W.H. Freeman"], "identifiers": {"goodreads": ["6094104"], "librarything": ["7526298"]}, "subtitle": "fundamentals of applied microbiology", "isbn_10": ["0716726084"], "covers": [1354691], "lc_classifications": ["TP248.27.M53 G57 1995", "TP248.27.M53G57 1995"], "key": "/books/OL1087381M", "authors": [{"key": "/authors/OL578632A"}], "ocaid": "microbialbiotech0000glaz", "publish_places": ["New York"], "contributions": ["Nikaido, Hiroshi."], "pagination": "xviii, 662 p. :", "source_records": ["amazon:0716726084", "ia:microbialbiotech0000glaz", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:123651149:708", "bwb:9780716726081"], "title": "Microbial biotechnology", "dewey_decimal_class": ["660/.62"], "notes": {"type": "/type/text", "value": "Includes bibliographical references and index."}, "number_of_pages": 662, "languages": [{"key": "/languages/eng"}], "lccn": ["94011367"], "subjects": ["Microbial biotechnology."], "publish_date": "1995", "publish_country": "nyu", "by_statement": "Alexander N. Glazer, Hiroshi Nikaido.", "works": [{"key": "/works/OL3471434W"}], "type": {"key": "/type/edition"}, "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T03:17:08.171370"}}
+/type/edition /books/OL10873925M 14 2021-02-02T05:01:05.307935 {"publishers": ["Dafina"], "identifiers": {"librarything": ["5168224"], "goodreads": ["1850676"]}, "subtitle": "Perry Skky Jr. Series #2 (Perry Skky Jr.) (Perry Skky Jr.)", "ia_box_id": ["IA170101"], "weight": "7.2 ounces", "covers": [2601414], "local_id": ["urn:sfpl:31223092076604"], "physical_format": "Paperback", "ia_loaded_id": ["pressinghard00moor"], "lc_classifications": ["", "PZ7.M788125 Pr 2007"], "key": "/books/OL10873925M", "authors": [{"key": "/authors/OL1390423A"}], "ocaid": "pressinghard00moor", "subjects": ["Juvenile Fiction", "Children's Books - Young Adult Fiction", "Fiction - General", "Children: Young Adult (Gr. 10-12)", "General", "People & Places - United States - African-American", "Literature & Fiction / Genre Fiction", "Fiction / General", "Love & Romance", "Religious - Christian", "Christian life", "Dating (Social customs)", "Fiction", "Friendship"], "isbn_13": ["9780758218728"], "source_records": ["ia:pressinghard00moor", "marc:marc_openlibraries_sanfranciscopubliclibrary/sfpl_chq_2018_12_24_run03.mrc:218565436:2189", "bwb:9780758218728", "marc:marc_loc_2016/BooksAll.2016.part37.utf8:14838660:1568", "ia:pressinghard0000moor"], "title": "Pressing Hard", "lccn": ["2009455091"], "number_of_pages": 208, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0758218729"], "publish_date": "September 1, 2007", "oclc_numbers": ["148733235"], "works": [{"key": "/works/OL5716768W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "13 x 8.2 x 0.7 inches", "latest_revision": 14, "revision": 14, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-02-02T05:01:05.307935"}}
+/type/edition /books/OL10874122M 3 2011-05-14T09:52:46.198822 {"publishers": ["Icon Group International, Inc."], "physical_format": "Ring-bound", "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T09:52:46.198822"}, "title": "VARIAN SEMICONDUCTOR EQUIPMENT ASSOCIATE", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 20, "edition_name": "October 2000 edition", "isbn_13": ["9780597482748"], "isbn_10": ["0597482748"], "publish_date": "October 31, 2000", "key": "/books/OL10874122M", "authors": [{"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL8173032W"}], "type": {"key": "/type/edition"}, "subjects": ["Company Study", "Financial Analysis", "Forecasting", "Human Resources.", "Labor Productivity", "Statistical Analysis"], "revision": 3}
+/type/edition /books/OL1087420M 5 2020-11-18T08:25:58.370943 {"publishers": ["Routledge"], "number_of_pages": 324, "isbn_10": ["0415100364"], "series": ["Routledge small business series"], "lc_classifications": ["HG4027.7 .F55 1994"], "latest_revision": 5, "key": "/books/OL1087420M", "publish_places": ["London", "New York"], "contributions": ["Hughes, A., 1946-", "Storey, D. J."], "pagination": "xiv, 324 p. :", "source_records": ["marc:marc_records_scriblio_net/part24.dat:49182949:985", "marc:marc_loc_updates/v37.i20.records.utf8:1620997:994", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:123686635:996"], "title": "Finance and the small firm", "dewey_decimal_class": ["658.15/92"], "notes": {"type": "/type/text", "value": "Includes bibliographical references and index."}, "identifiers": {"goodreads": ["2999505"]}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["94011409"], "subjects": ["Small business -- Great Britain -- Finance", "High technology industries -- Great Britain -- Finance", "Minority business enterprises -- Great Britain -- Finance", "Venture capital -- Great Britain", "Small business -- Great Britain -- Finance"], "publish_date": "1994", "publish_country": "enk", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T08:25:58.370943"}, "subject_place": ["Great Britain", "Great Britain."], "by_statement": "edited by A. Hughes and D.J. Storey.", "works": [{"key": "/works/OL18242105W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10874287M 3 2011-05-14T09:57:57.097270 {"publishers": ["Icon Group International, Inc."], "physical_format": "Ring-bound", "subtitle": "Labor Productivity Benchmarks and International Gap Analysis (Labor Productivity Series)", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T09:57:57.097270"}, "title": "WELDOTRON CORP.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 20, "edition_name": "October 2000 edition", "isbn_13": ["9780597484391"], "isbn_10": ["0597484392"], "publish_date": "October 31, 2000", "key": "/books/OL10874287M", "authors": [{"key": "/authors/OL2727133A"}], "latest_revision": 3, "works": [{"key": "/works/OL8173200W"}], "type": {"key": "/type/edition"}, "subjects": ["Company Study", "Financial Analysis", "Forecasting", "Human Resources.", "Labor Productivity", "Statistical Analysis"], "revision": 3}
+/type/edition /books/OL10875039M 3 2010-04-24T18:10:03.404107 {"languages": [{"key": "/languages/eng"}], "number_of_pages": 54, "key": "/books/OL10875039M", "publishers": ["Icon Group International"], "title": "The 2000 Import and Export Market for Salts and Pure Sodium Chrloride in France (World Trade Report)", "identifiers": {"goodreads": ["6854055"]}, "isbn_13": ["9780597535659"], "edition_name": "2000 edition", "physical_format": "Ring-bound", "isbn_10": ["0597535655"], "publish_date": "February 16, 2001", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:10:03.404107"}, "authors": [{"key": "/authors/OL3494448A"}, {"key": "/authors/OL3494449A"}, {"key": "/authors/OL3494450A"}], "latest_revision": 3, "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10875475M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780597540011"], "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "publishers": ["Icon Group International"], "number_of_pages": 14, "edition_name": "2000 edition", "isbn_10": ["0597540012"], "publish_date": "February 16, 2001", "key": "/books/OL10875475M", "authors": [{"key": "/authors/OL3484382A"}, {"key": "/authors/OL3494467A"}, {"key": "/authors/OL3494468A"}], "title": "The 2000 Import and Export Market for Nickel Ores, Concentrates, and Mattes in China (World Trade Report)", "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 1}
+/type/edition /books/OL10875492M 3 2010-04-24T18:10:30.540584 {"languages": [{"key": "/languages/eng"}], "number_of_pages": 15, "key": "/books/OL10875492M", "publishers": ["Icon Group International"], "title": "The 2000 Import and Export Market for Nickel Ores, Concentrates, and Mattes in Taiwan (World Trade Report)", "identifiers": {"goodreads": ["4385775"]}, "isbn_13": ["9780597540189"], "edition_name": "2000 edition", "physical_format": "Ring-bound", "isbn_10": ["0597540187"], "publish_date": "February 16, 2001", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:10:30.540584"}, "authors": [{"key": "/authors/OL3484382A"}, {"key": "/authors/OL3494467A"}, {"key": "/authors/OL3494468A"}], "latest_revision": 3, "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10875573M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780597540998"], "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "publishers": ["Icon Group International"], "number_of_pages": 15, "edition_name": "2000 edition", "isbn_10": ["0597540993"], "publish_date": "February 16, 2001", "key": "/books/OL10875573M", "authors": [{"key": "/authors/OL3484385A"}, {"key": "/authors/OL3494472A"}, {"key": "/authors/OL3484576A"}], "title": "The 2000 Import and Export Market for Zinc Ores and Concentrates in India (World Trade Report)", "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 1}
+/type/edition /books/OL1087604M 8 2021-09-29T01:26:27.261093 {"publishers": ["Rourke Press"], "isbn_10": ["1571030638"], "covers": [8554737], "lc_classifications": ["PN2055 .C63 1994", "PN2055.C63 1994"], "key": "/books/OL1087604M", "authors": [{"key": "/authors/OL578576A"}], "ocaid": "actors0000conl", "publish_places": ["Vero Beach, FL"], "pagination": "p. cm.", "source_records": ["marc:marc_records_scriblio_net/part24.dat:49341041:680", "marc:marc_loc_updates/v37.i38.records.utf8:5725575:680", "amazon:1571030638", "ia:actors0000conl", "bwb:9781571030634"], "title": "Actors", "dewey_decimal_class": ["792/.028"], "notes": {"type": "/type/text", "value": "Includes index."}, "identifiers": {"goodreads": ["3854925"]}, "languages": [{"key": "/languages/eng"}], "lccn": ["94011603"], "subjects": ["Acting -- Vocational guidance -- Juvenile literature", "Actors and actresses", "Acting", "Occupations"], "publish_date": "1994", "publish_country": "flu", "by_statement": "Laura Conlon.", "oclc_numbers": ["30474299"], "works": [{"key": "/works/OL3471138W"}], "type": {"key": "/type/edition"}, "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2021-09-29T01:26:27.261093"}}
+/type/edition /books/OL10876208M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780597547348"], "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "publishers": ["Icon Group International"], "number_of_pages": 18, "edition_name": "2000 edition", "isbn_10": ["0597547343"], "publish_date": "February 16, 2001", "key": "/books/OL10876208M", "authors": [{"key": "/authors/OL3494537A"}, {"key": "/authors/OL3494475A"}, {"key": "/authors/OL3494538A"}], "title": "The 2000 Import and Export Market for Fatty Acids, Acid Oils, and Residues in Sri Lanka (World Trade Report)", "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 1}
+/type/edition /books/OL10876924M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780597554506"], "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "publishers": ["Icon Group International"], "number_of_pages": 12, "edition_name": "2000 edition", "isbn_10": ["0597554501"], "publish_date": "February 16, 2001", "key": "/books/OL10876924M", "authors": [{"key": "/authors/OL3484424A"}, {"key": "/authors/OL3494581A"}, {"key": "/authors/OL3494527A"}], "title": "The 2000 Import and Export Market for Pigments, Paints, Varnishes and Related Materials in Fiji (World Trade Report)", "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 1}
+/type/edition /books/OL10877100M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780597556265"], "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "publishers": ["Icon Group International"], "number_of_pages": 221, "edition_name": "2000 edition", "isbn_10": ["0597556261"], "publish_date": "February 16, 2001", "key": "/books/OL10877100M", "authors": [{"key": "/authors/OL2813958A"}, {"key": "/authors/OL3494593A"}, {"key": "/authors/OL3494594A"}], "title": "The 2000 Import and Export Market for Medicinal and Pharmaceutical Products in Germany (World Trade Report)", "type": {"key": "/type/edition"}, "subjects": ["General", "Business & Economics", "Business / Economics / Finance", "Business/Economics"], "revision": 1}
+/type/edition /books/OL10877138M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780597556647"], "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "publishers": ["Icon Group International"], "number_of_pages": 60, "edition_name": "2000 edition", "isbn_10": ["0597556644"], "publish_date": "February 16, 2001", "key": "/books/OL10877138M", "authors": [{"key": "/authors/OL3495239A"}, {"key": "/authors/OL3494593A"}, {"key": "/authors/OL3494594A"}], "title": "The 2000 Import and Export Market for Medicinal and Pharmaceutical Products in Poland (World Trade Report)", "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 1}
+/type/edition /books/OL10877199M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780597557255"], "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "publishers": ["Icon Group International"], "number_of_pages": 36, "edition_name": "2000 edition", "isbn_10": ["059755725X"], "publish_date": "February 16, 2001", "key": "/books/OL10877199M", "authors": [{"key": "/authors/OL3494583A"}, {"key": "/authors/OL3494584A"}, {"key": "/authors/OL3494585A"}], "title": "The 2000 Import and Export Market for Provitamins and Vitamins in Malaysia (World Trade Report)", "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 1}
+/type/edition /books/OL10877214M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780597557408"], "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "publishers": ["Icon Group International"], "number_of_pages": 24, "edition_name": "2000 edition", "isbn_10": ["0597557403"], "publish_date": "February 16, 2001", "key": "/books/OL10877214M", "authors": [{"key": "/authors/OL3494583A"}, {"key": "/authors/OL3494584A"}, {"key": "/authors/OL3494585A"}], "title": "The 2000 Import and Export Market for Provitamins and Vitamins in Romania (World Trade Report)", "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 1}
+/type/edition /books/OL10877223M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780597557491"], "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "publishers": ["Icon Group International"], "number_of_pages": 44, "edition_name": "2000 edition", "isbn_10": ["0597557497"], "publish_date": "February 16, 2001", "key": "/books/OL10877223M", "authors": [{"key": "/authors/OL3494583A"}, {"key": "/authors/OL3494584A"}, {"key": "/authors/OL3494585A"}], "title": "The 2000 Import and Export Market for Provitamins and Vitamins in Taiwan (World Trade Report)", "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 1}
+/type/edition /books/OL10877268M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780597557941"], "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "publishers": ["Icon Group International"], "number_of_pages": 43, "edition_name": "2000 edition", "isbn_10": ["0597557942"], "publish_date": "February 19, 2001", "key": "/books/OL10877268M", "authors": [{"key": "/authors/OL3495230A"}, {"key": "/authors/OL3494526A"}, {"key": "/authors/OL3494527A"}], "title": "The 2000 Import and Export Market for Mineral Fuels, Lubricants, and Related Materials in India (World Trade Report)", "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 1}
+/type/edition /books/OL10877564M 3 2010-12-18T18:49:04.034634 {"publishers": ["Icon Group International, Inc."], "number_of_pages": 13, "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2010-12-18T18:49:04.034634"}, "latest_revision": 3, "key": "/books/OL10877564M", "authors": [{"key": "/authors/OL3484333A"}], "subjects": ["Data", "Export Statistics", "Global Analysis", "Import Statistics", "International Study", "International Trade", "Jamaica"], "edition_name": "2000 edition", "classifications": {}, "title": "The 2000 Import and Export Market for Tobacco Refuse in Jamaica", "notes": {"type": "/type/text", "value": "World Trade Report"}, "identifiers": {}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780597560903"], "isbn_10": ["0597560900"], "publish_date": "January 22, 2001", "works": [{"key": "/works/OL9464051W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10877626M 3 2010-12-18T23:30:55.509333 {"publishers": ["Icon Group International, Inc."], "number_of_pages": 34, "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2010-12-18T23:30:55.509333"}, "latest_revision": 3, "key": "/books/OL10877626M", "authors": [{"key": "/authors/OL3494351A"}], "subjects": ["Data", "Export Statistics", "Global Analysis", "Import Statistics", "International Study", "International Trade", "Israel"], "edition_name": "2000 edition", "classifications": {}, "title": "The 2000 Import and Export Market for Manufactured Tobacco in Israel", "notes": {"type": "/type/text", "value": "World Trade Report"}, "identifiers": {}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780597561528"], "isbn_10": ["0597561524"], "publish_date": "January 22, 2001", "works": [{"key": "/works/OL9477077W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10878338M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780597568640"], "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Icon Group International, Inc."], "number_of_pages": 38, "edition_name": "2000 edition", "isbn_10": ["0597568642"], "publish_date": "January 22, 2001", "key": "/books/OL10878338M", "authors": [{"key": "/authors/OL3494375A"}, {"key": "/authors/OL3494370A"}], "title": "The 2000 Import and Export Market for Oil Seeds and Oleaginous Fruit in Hong Kong (World Trade Report)", "type": {"key": "/type/edition"}, "subjects": ["Data", "Export Statistics", "Global Analysis", "Hong Kong", "Import Statistics", "International Study", "International Trade"], "revision": 1}
+/type/edition /books/OL1087868M 8 2022-10-18T07:20:26.907534 {"publishers": ["R. Bentley"], "number_of_pages": 271, "subtitle": "a hands-on guide to getting the most from your Alfa", "isbn_10": ["0837607078"], "covers": [637205], "lc_classifications": ["TL215.A35 B733 1994", "TL215.A35B733 1994"], "key": "/books/OL1087868M", "authors": [{"key": "/authors/OL578812A"}], "publish_places": ["Cambridge, Mass"], "pagination": "x, 271 p. :", "source_records": ["amazon:0837607078", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:124085995:678", "bwb:9780837607078"], "title": "Alfa Romeo owner's bible", "dewey_decimal_class": ["629.222/2"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 259-265) and index."}, "identifiers": {"goodreads": ["836993"], "librarything": ["202557"]}, "languages": [{"key": "/languages/eng"}], "lccn": ["94011886"], "subjects": ["Alfa Romeo automobile."], "publish_date": "1994", "publish_country": "mau", "by_statement": "by Pat Braden.", "works": [{"key": "/works/OL3472391W"}], "type": {"key": "/type/edition"}, "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T07:20:26.907534"}}
+/type/edition /books/OL10878756M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780597572821"], "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Icon Group International, Inc."], "number_of_pages": 14, "edition_name": "2000 edition", "isbn_10": ["0597572828"], "publish_date": "January 23, 2001", "key": "/books/OL10878756M", "authors": [{"key": "/authors/OL3494374A"}, {"key": "/authors/OL3494370A"}], "title": "The 2000 Import and Export Market for Whole or Broken Oils Seeds and Oleaginous Fruit in Trinidad and Tobago (World Trade Report)", "type": {"key": "/type/edition"}, "subjects": ["Data", "Export Statistics", "Global Analysis", "Import Statistics", "International Study", "International Trade", "Trinidad and Tobago"], "revision": 1}
+/type/edition /books/OL10878841M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780597573675"], "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Icon Group International, Inc."], "number_of_pages": 51, "edition_name": "2000 edition", "isbn_10": ["0597573670"], "publish_date": "January 23, 2001", "key": "/books/OL10878841M", "authors": [{"key": "/authors/OL3509327A"}, {"key": "/authors/OL3494387A"}], "title": "The 2000 Import and Export Market for Crude, Synthetic and Reclaimed Rubber in India (World Trade Report)", "type": {"key": "/type/edition"}, "subjects": ["Data", "Export Statistics", "Global Analysis", "Import Statistics", "India", "International Study", "International Trade"], "revision": 1}
+/type/edition /books/OL10878997M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780597575242"], "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Icon Group International, Inc."], "number_of_pages": 21, "edition_name": "2000 edition", "isbn_10": ["059757524X"], "publish_date": "January 23, 2001", "key": "/books/OL10878997M", "authors": [{"key": "/authors/OL2727135A"}, {"key": "/authors/OL2727136A"}, {"key": "/authors/OL2727137A"}], "title": "The 2000 Import and Export Market for Synthetic and Reclaimed Rubber, Rubber Latex and Waste Scrap in Peru (World Trade Report)", "type": {"key": "/type/edition"}, "subjects": ["Data", "Export Statistics", "Global Analysis", "Import Statistics", "International Study", "International Trade", "Peru"], "revision": 1}
+/type/edition /books/OL10879279M 3 2010-04-24T18:10:30.540584 {"publishers": ["Icon Group International, Inc."], "number_of_pages": 13, "key": "/books/OL10879279M", "title": "The 2000 Import and Export Market for Fuel Wood and Wood Charcoal Excluding Wood Waste in Honduras (World Trade Report)", "identifiers": {"goodreads": ["4698278"]}, "isbn_13": ["9780597578069"], "edition_name": "2000 edition", "physical_format": "Ring-bound", "isbn_10": ["0597578060"], "publish_date": "January 23, 2001", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:10:30.540584"}, "authors": [{"key": "/authors/OL3494391A"}, {"key": "/authors/OL3494392A"}], "latest_revision": 3, "type": {"key": "/type/edition"}, "subjects": ["Data", "Export Statistics", "Global Analysis", "Honduras", "Import Statistics", "International Study", "International Trade"], "revision": 3}
+/type/edition /books/OL10879290M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780597578175"], "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Icon Group International, Inc."], "number_of_pages": 16, "edition_name": "2000 edition", "isbn_10": ["0597578176"], "publish_date": "January 23, 2001", "key": "/books/OL10879290M", "authors": [{"key": "/authors/OL3494391A"}, {"key": "/authors/OL3494392A"}], "title": "The 2000 Import and Export Market for Fuel Wood and Wood Charcoal Excluding Wood Waste in Mexico (World Trade Report)", "type": {"key": "/type/edition"}, "subjects": ["Data", "Export Statistics", "Global Analysis", "Import Statistics", "International Study", "International Trade", "Mexico"], "revision": 1}
+/type/edition /books/OL1087939M 7 2022-12-09T17:24:28.406004 {"publishers": ["Wadsworth"], "number_of_pages": 656, "subtitle": "a contemporary handbook", "isbn_10": ["0534244386"], "subject_place": ["United States."], "lc_classifications": ["HV6025 .C7397 1995"], "key": "/books/OL1087939M", "publish_places": ["Belmont, Calif"], "contributions": ["Sheley, Joseph F."], "languages": [{"key": "/languages/eng"}], "pagination": "xxvii, 656 p. :", "source_records": ["marc:marc_records_scriblio_net/part24.dat:49642319:720", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:124149398:714", "ia:criminologyconte0000unse", "promise:bwb_daily_pallets_2021-02-04", "promise:bwb_daily_pallets_2020-11-13"], "title": "Criminology", "dewey_decimal_class": ["364.973"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 573-642) and indexes."}, "identifiers": {"librarything": ["112363"]}, "edition_name": "2nd ed.", "lccn": ["94011961"], "subjects": ["Criminology -- United States."], "publish_date": "1995", "publish_country": "cau", "by_statement": "Joseph F. Sheley [editor].", "works": [{"key": "/works/OL19574985W"}], "type": {"key": "/type/edition"}, "covers": [10572450], "ocaid": "criminologyconte0000unse", "local_id": ["urn:bwbsku:O7-AEV-336", "urn:bwbsku:W6-AOK-077"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T17:24:28.406004"}}
+/type/edition /books/OL10879573M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780597581007"], "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Icon Group International, Inc."], "number_of_pages": 160, "edition_name": "2000 edition", "isbn_10": ["0597581002"], "publish_date": "January 23, 2001", "key": "/books/OL10879573M", "authors": [{"key": "/authors/OL3494403A"}, {"key": "/authors/OL3494404A"}], "title": "The 2000 Import and Export Market for Simply Worked Wood and Wood Railway Sleepers in United States (World Trade Report)", "type": {"key": "/type/edition"}, "subjects": ["Data", "Export Statistics", "Global Analysis", "Import Statistics", "International Study", "International Trade", "United States"], "revision": 1}
+/type/edition /books/OL1087959M 7 2020-11-18T08:31:32.642885 {"publishers": ["Derrydale Books", "Distributed by Random House Value Pub."], "identifiers": {"goodreads": ["4333980"], "librarything": ["60174"]}, "description": {"type": "/type/text", "value": "A man who sleeps for twenty years in the Catskill Mountains wakes to a much-changed world."}, "isbn_10": ["0517119420"], "subject_place": ["Catskill Mountains Region (N.Y.)", "New York (State)"], "lc_classifications": ["PZ7.I68 Ri 1994"], "latest_revision": 7, "key": "/books/OL1087959M", "authors": [{"key": "/authors/OL19725A"}], "publish_places": ["New York", "Avenel, N.J"], "contributions": ["Wyeth, N. C. 1882-1945, ill."], "pagination": "102 p. :", "source_records": ["marc:marc_records_scriblio_net/part24.dat:49659065:898", "marc:marc_loc_updates/v38.i11.records.utf8:5433956:1042", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:124164723:1042"], "title": "Rip Van Winkle", "dewey_decimal_class": ["[Fic]"], "number_of_pages": 102, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["94011983"], "subjects": ["Catskill Mountains Region (N.Y.) -- Fiction", "New York (State) -- Fiction"], "publish_date": "1994", "publish_country": "nju", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T08:31:32.642885"}, "by_statement": "by Washington Irving ; pictures & decorations by N.C. Wyeth.", "oclc_numbers": ["30155991"], "works": [{"key": "/works/OL63995W"}], "type": {"key": "/type/edition"}, "revision": 7}
+/type/edition /books/OL10880069M 3 2010-12-19T04:34:53.786910 {"publishers": ["Icon Group International, Inc."], "number_of_pages": 14, "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2010-12-19T04:34:53.786910"}, "latest_revision": 3, "key": "/books/OL10880069M", "authors": [{"key": "/authors/OL3494412A"}], "subjects": ["Data", "Export Statistics", "Global Analysis", "Import Statistics", "International Study", "International Trade", "Thailand"], "edition_name": "2000 edition", "classifications": {}, "title": "The 2000 Import and Export Market for Sulphite Chemical Wood Pulp in Thailand", "notes": {"type": "/type/text", "value": "World Trade Report"}, "identifiers": {}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780597585968"], "isbn_10": ["0597585962"], "publish_date": "January 23, 2001", "works": [{"key": "/works/OL9477192W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10880166M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780597586934"], "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Icon Group International, Inc."], "number_of_pages": 117, "edition_name": "2000 edition", "isbn_10": ["0597586934"], "publish_date": "January 23, 2001", "key": "/books/OL10880166M", "authors": [{"key": "/authors/OL3494432A"}, {"key": "/authors/OL3494433A"}], "title": "The 2000 Import and Export Market for Textile Fibers and Their Wastes Excluding Wool Tops in Turkey (World Trade Report)", "type": {"key": "/type/edition"}, "subjects": ["Data", "Export Statistics", "Global Analysis", "Import Statistics", "International Study", "International Trade", "Turkey"], "revision": 1}
+/type/edition /books/OL10880661M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780597591884"], "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "publishers": ["Icon Group International"], "number_of_pages": 64, "edition_name": "2000 edition", "isbn_10": ["0597591881"], "publish_date": "February 15, 2001", "key": "/books/OL10880661M", "authors": [{"key": "/authors/OL3484370A"}, {"key": "/authors/OL3484370A"}], "title": "The 2000 Import and Export Market for Natural Sands in United States (World Trade Report)", "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 1}
+/type/edition /books/OL10880697M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780597592249"], "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "publishers": ["Icon Group International"], "number_of_pages": 23, "edition_name": "2000 edition", "isbn_10": ["0597592241"], "publish_date": "February 15, 2001", "key": "/books/OL10880697M", "authors": [{"key": "/authors/OL3484371A"}, {"key": "/authors/OL3494445A"}, {"key": "/authors/OL3494446A"}], "title": "The 2000 Import and Export Market for Sulphur and Unroasted Iron Pyrites in Netherlands (World Trade Report)", "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 1}
+/type/edition /books/OL10880863M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780597593901"], "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "publishers": ["Icon Group International"], "number_of_pages": 47, "edition_name": "2000 edition", "isbn_10": ["0597593906"], "publish_date": "February 15, 2001", "key": "/books/OL10880863M", "authors": [{"key": "/authors/OL3494558A"}, {"key": "/authors/OL3494559A"}, {"key": "/authors/OL3494560A"}], "title": "The 2000 Import and Export Market for Ethers, Alcohol Peroxides, Ether Peroxides, and Epoxides in Australia (World Trade Report)", "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 1}
+/type/edition /books/OL10881863M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780597603907"], "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "publishers": ["Icon Group International"], "number_of_pages": 99, "edition_name": "2000 edition", "isbn_10": ["0597603901"], "publish_date": "February 20, 2001", "key": "/books/OL10881863M", "authors": [{"key": "/authors/OL2813963A"}, {"key": "/authors/OL2813964A"}], "title": "The 2000 Import and Export Market for Refined Petroleum Products in Russia (World Trade Report)", "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 1}
+/type/edition /books/OL10881969M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780597604966"], "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "publishers": ["Icon Group International"], "number_of_pages": 25, "edition_name": "2000 edition", "isbn_10": ["0597604967"], "publish_date": "February 20, 2001", "key": "/books/OL10881969M", "authors": [{"key": "/authors/OL3494505A"}, {"key": "/authors/OL3494507A"}, {"key": "/authors/OL3494506A"}], "title": "The 2000 Import and Export Market for Motor Spirit and Other Light Oils in Venezuela (World Trade Report)", "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 1}
+/type/edition /books/OL10882227M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780597607547"], "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "publishers": ["Icon Group International"], "number_of_pages": 17, "edition_name": "2000 edition", "isbn_10": ["0597607540"], "publish_date": "February 20, 2001", "key": "/books/OL10882227M", "authors": [{"key": "/authors/OL3484398A"}, {"key": "/authors/OL3494513A"}, {"key": "/authors/OL3494514A"}], "title": "The 2000 Import and Export Market for Mineral Tars and Distillation Products in Colombia (World Trade Report)", "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 1}
+/type/edition /books/OL10882280M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780597608070"], "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "publishers": ["Icon Group International"], "number_of_pages": 17, "edition_name": "2000 edition", "isbn_10": ["0597608075"], "publish_date": "February 20, 2001", "key": "/books/OL10882280M", "authors": [{"key": "/authors/OL3484399A"}, {"key": "/authors/OL3494515A"}, {"key": "/authors/OL3494516A"}, {"key": "/authors/OL3494517A"}], "title": "The 2000 Import and Export Market for Pitch and Pitch Coke from Coal Tar and Mineral Tars in Italy (World Trade Report)", "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 1}
+/type/edition /books/OL10882574M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780597611018"], "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "publishers": ["Icon Group International"], "number_of_pages": 15, "edition_name": "2000 edition", "isbn_10": ["0597611017"], "publish_date": "February 20, 2001", "key": "/books/OL10882574M", "authors": [{"key": "/authors/OL3495232A"}, {"key": "/authors/OL3494540A"}, {"key": "/authors/OL3494543A"}, {"key": "/authors/OL3494544A"}], "title": "The 2000 Import and Export Market for Animal and Vegetable Oils, Fats, and Waxes in Yemen (World Trade Report)", "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 1}
+/type/edition /books/OL10882657M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780597611841"], "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "publishers": ["Icon Group International"], "number_of_pages": 16, "edition_name": "2000 edition", "isbn_10": ["059761184X"], "publish_date": "February 20, 2001", "key": "/books/OL10882657M", "authors": [{"key": "/authors/OL3484401A"}, {"key": "/authors/OL3494530A"}, {"key": "/authors/OL3494528A"}, {"key": "/authors/OL3494529A"}], "title": "The 2000 Import and Export Market for Fish and Marine Mammal Fats and Oils in Czech Republic (World Trade Report)", "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 1}
+/type/edition /books/OL10882801M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780597613289"], "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "publishers": ["Icon Group International"], "number_of_pages": 14, "edition_name": "2000 edition", "isbn_10": ["0597613281"], "publish_date": "February 20, 2001", "key": "/books/OL10882801M", "authors": [{"key": "/authors/OL3494533A"}, {"key": "/authors/OL3494534A"}, {"key": "/authors/OL3494535A"}], "title": "The 2000 Import and Export Market for Soft, Crude, Refined, and Purified Fixed Vegetable Oils in Burma (World Trade Report)", "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 1}
+/type/edition /books/OL10882936M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780597614637"], "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "publishers": ["Icon Group International"], "number_of_pages": 16, "edition_name": "2000 edition", "isbn_10": ["0597614636"], "publish_date": "February 20, 2001", "key": "/books/OL10882936M", "authors": [{"key": "/authors/OL3484404A"}, {"key": "/authors/OL3484404A"}], "title": "The 2000 Import and Export Market for Linseed Oil in Malaysia (World Trade Report)", "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 1}
+/type/edition /books/OL10883564M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780597620911"], "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Icon Group International, Inc."], "number_of_pages": 50, "edition_name": "2000 edition", "isbn_10": ["0597620911"], "publish_date": "March 15, 2001", "key": "/books/OL10883564M", "authors": [{"key": "/authors/OL3494673A"}, {"key": "/authors/OL3494674A"}, {"key": "/authors/OL3494665A"}], "title": "The 2000 Import and Export Market for Impregnated, Coated, and Surface-colored Paper and Paperboard in India (World Trade Report)", "type": {"key": "/type/edition"}, "subjects": ["Data", "Export Statistics", "Global Analysis", "Import Statistics", "India", "International Trade"], "revision": 1}
+/type/edition /books/OL1088361M 8 2022-12-10T10:17:24.604232 {"other_titles": ["World's most exciting cruises", "World's most exciting cruises"], "publishers": ["Hippocrene Books"], "number_of_pages": 510, "subtitle": "with personal reports from travel writers on cruise getaways", "isbn_10": ["078180258X"], "lc_classifications": ["G550 .L54 1994", "G550.L54 1994"], "key": "/books/OL1088361M", "authors": [{"key": "/authors/OL578972A"}], "publish_places": ["New York"], "contributions": ["Lane, Lea."], "pagination": "510 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:124525973:796", "bwb:9780781802581", "promise:bwb_daily_pallets_2020-04-30"], "title": "Insiders' guide to the world's most exciting cruises", "dewey_decimal_class": ["910.4/5"], "notes": {"type": "/type/text", "value": "Includes index."}, "identifiers": {"librarything": ["8762358"], "goodreads": ["4699247"], "amazon": [""]}, "languages": [{"key": "/languages/eng"}], "lccn": ["94012404"], "subjects": ["Ocean travel.", "Cruise ships."], "publish_date": "1994", "publish_country": "nyu", "by_statement": "Shirley Linde and Lea Lane.", "oclc_numbers": ["30474697"], "works": [{"key": "/works/OL3473288W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:O6-BRF-846"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T10:17:24.604232"}}
+/type/edition /books/OL10883788M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780597623158"], "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Icon Group International, Inc."], "number_of_pages": 71, "edition_name": "2000 edition", "isbn_10": ["0597623155"], "publish_date": "March 15, 2001", "key": "/books/OL10883788M", "authors": [{"key": "/authors/OL3494748A"}, {"key": "/authors/OL3494749A"}], "title": "The 2000 Import and Export Market for Non-refractory Ceramic Bricks, Tiles, and Pipes in Australia (World Trade Report)", "type": {"key": "/type/edition"}, "subjects": ["Australia", "Data", "Export Statistics", "Global Analysis", "Import Statistics", "International Trade"], "revision": 1}
+/type/edition /books/OL10883841M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780597623684"], "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Icon Group International, Inc."], "number_of_pages": 14, "edition_name": "2000 edition", "isbn_10": ["0597623686"], "publish_date": "March 15, 2001", "key": "/books/OL10883841M", "authors": [{"key": "/authors/OL3494748A"}, {"key": "/authors/OL3494749A"}], "title": "The 2000 Import and Export Market for Non-refractory Ceramic Bricks, Tiles, and Pipes in Paraguay (World Trade Report)", "type": {"key": "/type/edition"}, "subjects": ["Data", "Export Statistics", "Global Analysis", "Import Statistics", "International Trade", "Paraguay"], "revision": 1}
+/type/edition /books/OL10883954M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780597624810"], "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Icon Group International, Inc."], "number_of_pages": 16, "edition_name": "2000 edition", "isbn_10": ["059762481X"], "publish_date": "March 15, 2001", "key": "/books/OL10883954M", "authors": [{"key": "/authors/OL3494756A"}, {"key": "/authors/OL3494757A"}], "title": "The 2000 Import and Export Market for Abrasive Powder and Grain in Guatemala (World Trade Report)", "type": {"key": "/type/edition"}, "subjects": ["Data", "Export Statistics", "Global Analysis", "Guatemala", "Import Statistics", "International Trade"], "revision": 1}
+/type/edition /books/OL1088401M 5 2020-11-18T08:36:10.436833 {"publishers": ["Glencoe/McGraw-Hill", "Oregon Institute of Technology"], "number_of_pages": 370, "subtitle": "an ASEE history", "isbn_10": ["0028004035"], "subject_place": ["United States"], "lc_classifications": ["T73 .E475 1995"], "latest_revision": 5, "key": "/books/OL1088401M", "publish_places": ["Westerville, OH", "Klamath Falls, Or"], "contributions": ["O'Hair, Michael Thomas, 1944-", "American Society for Engineering Education. Engineering Technology Centennial Committee."], "pagination": "xiii, 370 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:124561789:1072"], "title": "Engineering technology", "dewey_decimal_class": ["620/.0071/073"], "notes": {"type": "/type/text", "value": "Includes index."}, "identifiers": {"goodreads": ["808460"]}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["94012447"], "subjects": ["American Society for Engineering Education -- History.", "Engineering -- Study and teaching -- United States -- History."], "publish_date": "1995", "publish_country": "ohu", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T08:36:10.436833"}, "by_statement": "general editor, Michael T. O'Hair ; manuscript editor, Marilyn A. Dyrud ; production editor, Barbara A. Wolf ; managing editor, Lawrence J. Wolf : Engineering Technology Centennial Committee.", "oclc_numbers": ["30437352"], "works": [{"key": "/works/OL268442W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10884485M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780597630125"], "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Icon Group International, Inc."], "number_of_pages": 21, "edition_name": "2000 edition", "isbn_10": ["0597630127"], "publish_date": "March 15, 2001", "key": "/books/OL10884485M", "authors": [{"key": "/authors/OL3494808A"}, {"key": "/authors/OL3494809A"}, {"key": "/authors/OL3494749A"}], "title": "The 2000 Import and Export Market for Blanks for and Seamless Tubes and Pipes in Algeria (World Trade Report)", "type": {"key": "/type/edition"}, "subjects": ["Algeria", "Data", "Export Statistics", "Global Analysis", "Import Statistics", "International Trade"], "revision": 1}
+/type/edition /books/OL1088456M 8 2023-01-01T23:27:33.315758 {"publishers": ["Crossing Press"], "subtitle": "daily reflections for gay men, queer boys, magnificent queens, and the people who love them", "isbn_10": ["0895947277", "0895947269"], "local_id": ["urn:sfpl:31223037872075", "urn:sfpl:31223039199980"], "lc_classifications": ["HQ76.25 .S73 1994"], "key": "/books/OL1088456M", "authors": [{"key": "/authors/OL243743A"}], "publish_places": ["Freedom, CA"], "pagination": "1 v. (unpaged) :", "source_records": ["marc:marc_openlibraries_sanfranciscopubliclibrary/sfpl_chq_2018_12_24_run02.mrc:102272769:1767", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:124607309:775", "marc:marc_columbia/Columbia-extract-20221130-011.mrc:75320769:1074", "marc:harvard_bibliographic_metadata/ab.bib.12.20150123.full.mrc:238733527:1135"], "title": "A few tricks along the way", "dewey_decimal_class": ["305.38/9664"], "notes": {"type": "/type/text", "value": "Includes index."}, "identifiers": {"goodreads": ["3752911", "332991"], "librarything": ["497422"]}, "languages": [{"key": "/languages/eng"}], "lccn": ["94012505"], "subjects": ["Gays -- Psychology -- Miscellanea.", "Affirmations."], "publish_date": "1994", "publish_country": "cau", "by_statement": "Gary J. Stern.", "works": [{"key": "/works/OL2019957W"}], "type": {"key": "/type/edition"}, "oclc_numbers": ["30516629"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2023-01-01T23:27:33.315758"}}
+/type/edition /books/OL10884764M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780597632914"], "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Icon Group International, Inc."], "number_of_pages": 13, "edition_name": "2000 edition", "isbn_10": ["059763291X"], "publish_date": "March 15, 2001", "key": "/books/OL10884764M", "authors": [{"key": "/authors/OL3494817A"}, {"key": "/authors/OL3494818A"}, {"key": "/authors/OL3494819A"}], "title": "The 2000 Import and Export Market for Rough Steel and Iron Forgings and Stampings in Zimbabwe (World Trade Report)", "type": {"key": "/type/edition"}, "subjects": ["Data", "Export Statistics", "Global Analysis", "Import Statistics", "International Study", "International Trade", "Zimbabwe"], "revision": 1}
+/type/edition /books/OL10884819M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780597633461"], "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Icon Group International, Inc."], "number_of_pages": 54, "edition_name": "2000 edition", "isbn_10": ["0597633460"], "publish_date": "March 15, 2001", "key": "/books/OL10884819M", "authors": [{"key": "/authors/OL3494821A"}, {"key": "/authors/OL3494779A"}], "title": "The 2000 Import and Export Market for Rough Castings of Iron and Steel in Switzerland (World Trade Report)", "type": {"key": "/type/edition"}, "subjects": ["Data", "Export Statistics", "Global Analysis", "Import Statistics", "International Study", "International Trade", "Switzerland"], "revision": 1}
+/type/edition /books/OL10884892M 3 2010-12-20T23:27:23.124172 {"publishers": ["Icon Group International, Inc."], "number_of_pages": 67, "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2010-12-20T23:27:23.124172"}, "latest_revision": 3, "key": "/books/OL10884892M", "authors": [{"key": "/authors/OL3494847A"}], "subjects": ["Data", "Export Statistics", "Global Analysis", "Import Statistics", "International Study", "International Trade", "Peru"], "edition_name": "2000 edition", "classifications": {}, "title": "The 2000 Import and Export Market for Non-ferrous Metals in Peru", "notes": {"type": "/type/text", "value": "World Trade Report"}, "identifiers": {}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780597634192"], "isbn_10": ["059763419X"], "publish_date": "March 15, 2001", "works": [{"key": "/works/OL9477868W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10884982M 3 2010-12-20T22:45:10.431254 {"publishers": ["Icon Group International, Inc."], "number_of_pages": 34, "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2010-12-20T22:45:10.431254"}, "latest_revision": 3, "key": "/books/OL10884982M", "authors": [{"key": "/authors/OL3494825A"}], "subjects": ["Austria", "Data", "Export Statistics", "Global Analysis", "Import Statistics", "International Study", "International Trade"], "edition_name": "2000 edition", "classifications": {}, "title": "The 2000 Import and Export Market for Unwrought, Unworked or Semi-manufactured Silver in Austria", "notes": {"type": "/type/text", "value": "World Trade Report"}, "identifiers": {}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780597635090"], "isbn_10": ["0597635099"], "publish_date": "March 16, 2001", "works": [{"key": "/works/OL9477674W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10885152M 3 2010-12-19T01:19:58.276561 {"publishers": ["Icon Group International, Inc."], "number_of_pages": 91, "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2010-12-19T01:19:58.276561"}, "latest_revision": 3, "key": "/books/OL10885152M", "authors": [{"key": "/authors/OL3494832A"}], "subjects": ["Copper", "Data", "Export Statistics", "Global Analysis", "Import Statistics", "International Study", "International Trade", "Turkey"], "edition_name": "2000 edition", "classifications": {}, "title": "The 2000 Import and Export Market for Copper in Turkey", "notes": {"type": "/type/text", "value": "World Trade Report"}, "identifiers": {}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780597636790"], "isbn_10": ["0597636796"], "publish_date": "March 16, 2001", "works": [{"key": "/works/OL9477799W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10885176M 3 2022-04-06T17:55:04.017130 {"physical_format": "Paperback", "publishers": ["Icon Group International"], "isbn_10": ["0597682887"], "number_of_pages": 20, "isbn_13": ["9780597682889"], "languages": [{"key": "/languages/eng"}], "publish_date": "January 2001", "key": "/books/OL10885176M", "authors": [{"key": "/authors/OL2727138A"}], "title": "2000 Import and Export Market for Baby Carriages, Toys, Games and Sporting Goods in Dominica", "subjects": ["General", "Business / Economics / Finance"], "works": [{"key": "/works/OL9459501W"}], "type": {"key": "/type/edition"}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-04-06T17:55:04.017130"}}
+/type/edition /books/OL10885233M 3 2011-05-14T13:10:48.248665 {"publishers": ["Icon Group International"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T13:10:48.248665"}, "title": "The 2000 Import and Export Market for Baby Carriages, Toys, Games and Sporting Goods in United States", "number_of_pages": 212, "isbn_13": ["9780597683459"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["059768345X"], "publish_date": "January 2001", "key": "/books/OL10885233M", "authors": [{"key": "/authors/OL2727138A"}], "latest_revision": 3, "works": [{"key": "/works/OL8185330W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business & Economics", "Business / Economics / Finance", "Business/Economics"], "revision": 3}
+/type/edition /books/OL10885730M 3 2022-04-06T17:51:36.372686 {"physical_format": "Paperback", "publishers": ["Icon Group International"], "isbn_10": ["0597688427"], "number_of_pages": 52, "isbn_13": ["9780597688423"], "languages": [{"key": "/languages/eng"}], "publish_date": "January 2001", "key": "/books/OL10885730M", "authors": [{"key": "/authors/OL2727138A"}], "title": "2000 Import and Export Market for Gramophone Records and Similar Sound Recordings in Poland", "subjects": ["General", "Business / Economics / Finance"], "works": [{"key": "/works/OL9460153W"}], "type": {"key": "/type/edition"}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-04-06T17:51:36.372686"}}
+/type/edition /books/OL10886141M 3 2022-04-06T18:11:30.095719 {"physical_format": "Paperback", "publishers": ["Icon Group International"], "isbn_10": ["059769253X"], "number_of_pages": 20, "isbn_13": ["9780597692536"], "languages": [{"key": "/languages/eng"}], "publish_date": "January 2001", "key": "/books/OL10886141M", "authors": [{"key": "/authors/OL2727138A"}], "title": "2000 Import and Export Market for Essential Oils, Perfumes and Toilet Preparations in Netherlands Antilles", "subjects": ["General", "Business / Economics / Finance"], "works": [{"key": "/works/OL9459931W"}], "type": {"key": "/type/edition"}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-04-06T18:11:30.095719"}}
+/type/edition /books/OL10886235M 3 2022-04-06T17:47:31.128376 {"physical_format": "Paperback", "publishers": ["Icon Group International"], "isbn_10": ["0597693471"], "number_of_pages": 20, "isbn_13": ["9780597693472"], "languages": [{"key": "/languages/eng"}], "publish_date": "January 2001", "key": "/books/OL10886235M", "authors": [{"key": "/authors/OL2727138A"}], "title": "2000 Import and Export Market for Essential Oils, Perfume and Flavor Materials in Trinidad and Tobago", "subjects": ["General", "Business / Economics / Finance"], "works": [{"key": "/works/OL9459873W"}], "type": {"key": "/type/edition"}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-04-06T17:47:31.128376"}}
+/type/edition /books/OL10886327M 3 2022-04-06T18:04:25.255408 {"physical_format": "Paperback", "publishers": ["Icon Group International"], "isbn_10": ["0597694397"], "number_of_pages": 48, "isbn_13": ["9780597694394"], "languages": [{"key": "/languages/eng"}], "publish_date": "January 2001", "key": "/books/OL10886327M", "authors": [{"key": "/authors/OL2727138A"}], "title": "2000 Import and Export Market for Cork and Wood Manufactures Excluding Furniture in Argentina", "subjects": ["General", "Business / Economics / Finance"], "works": [{"key": "/works/OL9459743W"}], "type": {"key": "/type/edition"}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-04-06T18:04:25.255408"}}
+/type/edition /books/OL10886393M 3 2022-04-06T17:45:30.293147 {"physical_format": "Paperback", "publishers": ["Icon Group International"], "isbn_10": ["0597695059"], "number_of_pages": 68, "isbn_13": ["9780597695056"], "languages": [{"key": "/languages/eng"}], "publish_date": "January 2001", "key": "/books/OL10886393M", "authors": [{"key": "/authors/OL2727138A"}], "title": "2000 Import and Export Market for Cork and Wood Manufactures Excluding Furniture in Poland", "subjects": ["General", "Business / Economics / Finance"], "works": [{"key": "/works/OL9459796W"}], "type": {"key": "/type/edition"}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-04-06T17:45:30.293147"}}
+/type/edition /books/OL10886407M 3 2022-04-06T18:02:04.985973 {"physical_format": "Paperback", "publishers": ["Icon Group International"], "isbn_10": ["0597695199"], "number_of_pages": 20, "isbn_13": ["9780597695193"], "languages": [{"key": "/languages/eng"}], "publish_date": "January 2001", "key": "/books/OL10886407M", "authors": [{"key": "/authors/OL2727138A"}], "title": "2000 Import and Export Market for Cork and Wood Manufactures Excluding Furniture in Suriname", "subjects": ["General", "Business / Economics / Finance"], "works": [{"key": "/works/OL9459808W"}], "type": {"key": "/type/edition"}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-04-06T18:02:04.985973"}}
+/type/edition /books/OL10886903M 3 2011-11-10T18:56:48.845567 {"publishers": ["Icon Group International"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-11-10T18:56:48.845567"}, "title": "2000 Import and Export Market for Medicaments Including Veterinary Medicaments in Brazil", "number_of_pages": 84, "isbn_13": ["9780597700156"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["059770015X"], "publish_date": "January 2001", "key": "/books/OL10886903M", "authors": [{"key": "/authors/OL2727138A"}], "latest_revision": 3, "works": [{"key": "/works/OL9461285W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10887098M 3 2011-11-10T18:46:54.056589 {"publishers": ["Icon Group International"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-11-10T18:46:54.056589"}, "title": "2000 Import and Export Market for Iron and Steel Wire Rod in Hong Kong", "number_of_pages": 28, "isbn_13": ["9780597702105"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597702101"], "publish_date": "January 2001", "key": "/books/OL10887098M", "authors": [{"key": "/authors/OL2727138A"}], "latest_revision": 3, "works": [{"key": "/works/OL9460732W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10887116M 3 2011-11-10T05:50:48.259914 {"publishers": ["Icon Group International"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-11-10T05:50:48.259914"}, "title": "2000 Import and Export Market for Iron and Steel Wire Rod in Paraguay", "number_of_pages": 16, "isbn_13": ["9780597702280"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597702284"], "publish_date": "January 2001", "key": "/books/OL10887116M", "authors": [{"key": "/authors/OL2727138A"}], "latest_revision": 3, "works": [{"key": "/works/OL9460750W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10887192M 3 2011-11-10T18:59:54.330386 {"publishers": ["Icon Group International"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-11-10T18:59:54.330386"}, "title": "2000 Import and Export Market for Iron and Steel Bars, Rods, and Hollow Mining Drill Steel in North Korea", "number_of_pages": 20, "isbn_13": ["9780597703041"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597703043"], "publish_date": "January 2001", "key": "/books/OL10887192M", "authors": [{"key": "/authors/OL2727138A"}], "latest_revision": 3, "works": [{"key": "/works/OL9460521W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL1088737M 8 2023-01-06T16:08:25.028880 {"publishers": ["Parthenon Pub. Group"], "number_of_pages": 350, "isbn_10": ["1850705860"], "covers": [2042589], "lc_classifications": ["QM507 .S38 1995", "QM507.S38 1995"], "key": "/books/OL1088737M", "authors": [{"key": "/authors/OL579115A"}], "publish_places": ["New York"], "contributions": ["Schuknecht, Harold F. 1917-"], "languages": [{"key": "/languages/eng"}], "pagination": "xiv, 350 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:124855733:1362", "bwb:9781850705864", "marc:marc_columbia/Columbia-extract-20221130-009.mrc:48285687:2115"], "title": "Anatomy of the temporal bone with surgical implications", "dewey_decimal_class": ["611/.85"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 289-303) and index.\nCompanion v. to: Pathology of the ear / Harold F. Schuknecht. 2nd ed. c1993 ; and, Surgery of the ear and temporal bone / editors, Joseph B. Nadol, Jr., Harold F. Schuknecht. c1993.\nSchuknecht's name appears first on the earlier edition.\nViewmaster reels in pocket."}, "identifiers": {"goodreads": ["3327062"]}, "edition_name": "2nd ed.", "lccn": ["94012793"], "subjects": ["Temporal bone -- Anatomy.", "Temporal bone -- Anatomy -- Atlases.", "Temporal Bone -- anatomy & histology.", "Ear -- anatomy & histology."], "publish_date": "1995", "publish_country": "nyu", "by_statement": "A. Julianna Gulya, Harold F. Schuknecht.", "oclc_numbers": ["30595278"], "works": [{"key": "/works/OL3473944W"}], "type": {"key": "/type/edition"}, "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2023-01-06T16:08:25.028880"}}
+/type/edition /books/OL10887708M 3 2011-11-10T18:21:57.185581 {"publishers": ["Icon Group International"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-11-10T18:21:57.185581"}, "title": "2000 Import and Export Market for Worked Copper and Copper Alloys in Iran", "number_of_pages": 28, "isbn_13": ["9780597708206"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597708207"], "publish_date": "January 2001", "key": "/books/OL10887708M", "authors": [{"key": "/authors/OL2727138A"}], "latest_revision": 3, "works": [{"key": "/works/OL9463631W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10888031M 3 2011-11-10T19:54:23.995197 {"publishers": ["Icon Group International"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-11-10T19:54:23.995197"}, "title": "2000 Import and Export Market for Unwrought Aluminium and Aluminium Alloys in Singapore", "number_of_pages": 44, "isbn_13": ["9780597711435"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597711437"], "publish_date": "January 2001", "key": "/books/OL10888031M", "authors": [{"key": "/authors/OL2727138A"}], "latest_revision": 3, "works": [{"key": "/works/OL9463164W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10888779M 5 2011-11-10T18:25:22.197254 {"publishers": ["Icon Group International"], "physical_format": "Paperback", "revision": 5, "last_modified": {"type": "/type/datetime", "value": "2011-11-10T18:25:22.197254"}, "title": "2000 Import and Export Market for Small Wares, Toilet Articles, and Feather Dusters in Jordan", "number_of_pages": 20, "isbn_13": ["9780597718922"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["059771892X"], "publish_date": "January 2001", "key": "/books/OL10888779M", "authors": [{"key": "/authors/OL2727138A"}], "latest_revision": 5, "works": [{"key": "/works/OL9462718W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "identifiers": {"goodreads": ["6806348"]}}
+/type/edition /books/OL10888791M 3 2011-05-14T01:09:38.619729 {"publishers": ["Icon Group International"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2011-05-14T01:09:38.619729"}, "title": "2000 Import and Export Market for Small Wares, Toilet Articles, and Feather Dusters in Nicaragua", "number_of_pages": 24, "isbn_13": ["9780597719042"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0597719047"], "publish_date": "January 2001", "key": "/books/OL10888791M", "authors": [{"key": "/authors/OL2727138A"}], "latest_revision": 3, "works": [{"key": "/works/OL9462729W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10889230M 3 2011-05-14T13:23:17.472279 {"publishers": ["Icon Group International"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T13:23:17.472279"}, "title": "The 2000 Import and Export Market for Hand and Pneumatic Tools and Parts in Italy", "number_of_pages": 132, "isbn_13": ["9780597723438"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597723435"], "publish_date": "January 2001", "key": "/books/OL10889230M", "authors": [{"key": "/authors/OL2727138A"}], "latest_revision": 3, "works": [{"key": "/works/OL8186302W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business & Economics", "Business / Economics / Finance", "Business/Economics"], "revision": 3}
+/type/edition /books/OL10889771M 3 2011-05-14T14:15:38.631527 {"publishers": ["Icon Group International"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2011-05-14T14:15:38.631527"}, "title": "The 2000 Import and Export Market for Washing, Cleaning, Drying, and Bleaching Textile Machinery in Japan", "number_of_pages": 144, "isbn_13": ["9780597728846"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0597728844"], "publish_date": "January 2001", "key": "/books/OL10889771M", "authors": [{"key": "/authors/OL2727138A"}], "latest_revision": 3, "works": [{"key": "/works/OL8190229W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business & Economics", "Business / Economics / Finance", "Business/Economics"], "revision": 3}
+/type/edition /books/OL1088985M 10 2022-12-10T08:14:16.335733 {"publishers": ["W. Morrow"], "number_of_pages": 350, "subtitle": "a Jake Lassiter novel", "ia_box_id": ["IA140613"], "isbn_10": ["0688127185"], "subject_place": ["Miami (Fla.)", "Hawaii"], "covers": [3876014], "ia_loaded_id": ["slashbackjakelas00levi"], "lc_classifications": ["PS3562.E8995 S57 1995", "PS3562.E8995S57 1995"], "key": "/books/OL1088985M", "authors": [{"key": "/authors/OL222943A"}], "ocaid": "slashbackjakelas00levi", "publish_places": ["New York"], "languages": [{"key": "/languages/eng"}], "pagination": "350 p. ;", "source_records": ["ia:slashbackjakelas00levi", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:125076665:806", "bwb:9780688127183", "promise:bwb_daily_pallets_2020-06-04"], "title": "Slashback", "dewey_decimal_class": ["813/.54"], "identifiers": {"librarything": ["1411409"], "goodreads": ["5693183"], "amazon": [""]}, "edition_name": "1st ed.", "lccn": ["94013051"], "subjects": ["Lassiter, Jake (Fictitious character) -- Fiction.", "Miami (Fla.) -- Fiction.", "Hawaii -- Fiction."], "publish_date": "1995", "publish_country": "nyu", "by_statement": "Paul Levine.", "works": [{"key": "/works/OL1861863W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:772-BAA-768"], "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T08:14:16.335733"}}
+/type/edition /books/OL10889883M 3 2011-11-10T18:18:34.669586 {"publishers": ["Icon Group International"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-11-10T18:18:34.669586"}, "title": "2000 Import and Export Market for Paper Manufacturing and Pulp Mill Machinery in Canada", "number_of_pages": 96, "isbn_13": ["9780597729966"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597729964"], "publish_date": "January 2001", "key": "/books/OL10889883M", "authors": [{"key": "/authors/OL2727138A"}], "latest_revision": 3, "works": [{"key": "/works/OL9461891W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10889904M 3 2011-11-10T05:50:48.259914 {"publishers": ["Icon Group International"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-11-10T05:50:48.259914"}, "title": "2000 Import and Export Market for Paper Manufacturing and Pulp Mill Machinery in Israel", "number_of_pages": 36, "isbn_13": ["9780597730177"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597730172"], "publish_date": "January 2001", "key": "/books/OL10889904M", "authors": [{"key": "/authors/OL2727138A"}], "latest_revision": 3, "works": [{"key": "/works/OL9461911W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL10890319M 3 2011-05-14T14:00:48.742041 {"publishers": ["Icon Group International"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T14:00:48.742041"}, "title": "The 2000 Import and Export Market for Specialized Industrial Machinery and Equipment in Iran", "number_of_pages": 36, "isbn_13": ["9780597734328"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597734321"], "publish_date": "April 2001", "key": "/books/OL10890319M", "authors": [{"key": "/authors/OL2727138A"}], "latest_revision": 3, "works": [{"key": "/works/OL8189116W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business & Economics", "Business / Economics / Finance", "Business/Economics"], "revision": 3}
+/type/edition /books/OL10890420M 3 2011-05-14T14:03:29.116761 {"publishers": ["Icon Group International"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T14:03:29.116761"}, "title": "The 2000 Import and Export Market for Specialized Industrial Machine Tools in Paraguay", "number_of_pages": 16, "isbn_13": ["9780597735332"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597735336"], "publish_date": "April 2001", "key": "/books/OL10890420M", "authors": [{"key": "/authors/OL2727138A"}], "latest_revision": 3, "works": [{"key": "/works/OL8189293W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business & Economics", "Business / Economics / Finance", "Business/Economics"], "revision": 3}
+/type/edition /books/OL10890560M 3 2011-05-14T13:59:30.183385 {"publishers": ["Icon Group International"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T13:59:30.183385"}, "title": "The 2000 Import and Export Market for Specialized Industrial Machinery and Appliances in Guatemala", "number_of_pages": 26, "isbn_13": ["9780597736735"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597736731"], "publish_date": "April 2001", "key": "/books/OL10890560M", "authors": [{"key": "/authors/OL2727138A"}], "latest_revision": 3, "works": [{"key": "/works/OL8189027W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business & Economics", "Business / Economics / Finance", "Business/Economics"], "revision": 3}
+/type/edition /books/OL10890577M 3 2011-05-14T13:59:41.208674 {"publishers": ["Icon Group International"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T13:59:41.208674"}, "title": "The 2000 Import and Export Market for Specialized Industrial Machinery and Appliances in Malta", "number_of_pages": 13, "isbn_13": ["9780597736902"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597736901"], "publish_date": "April 2001", "key": "/books/OL10890577M", "authors": [{"key": "/authors/OL2727138A"}], "latest_revision": 3, "works": [{"key": "/works/OL8189044W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business & Economics", "Business / Economics / Finance", "Business/Economics"], "revision": 3}
+/type/edition /books/OL10890695M 3 2011-05-14T13:44:23.957977 {"publishers": ["Icon Group International"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T13:44:23.957977"}, "title": "The 2000 Import and Export Market for Metalworking Machinery in Zimbabwe", "number_of_pages": 16, "isbn_13": ["9780597738081"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597738084"], "publish_date": "April 2001", "key": "/books/OL10890695M", "authors": [{"key": "/authors/OL2727138A"}], "latest_revision": 3, "works": [{"key": "/works/OL8187873W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business & Economics", "Business / Economics / Finance", "Business/Economics"], "revision": 3}
+/type/edition /books/OL10890866M 3 2011-05-14T13:45:06.370537 {"publishers": ["Icon Group International"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T13:45:06.370537"}, "title": "The 2000 Import and Export Market for Metalworking Machine Tool Parts in Costa Rica", "number_of_pages": 16, "isbn_13": ["9780597739798"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["059773979X"], "publish_date": "April 2001", "key": "/books/OL10890866M", "authors": [{"key": "/authors/OL2727138A"}], "latest_revision": 3, "works": [{"key": "/works/OL8187934W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business & Economics", "Business / Economics / Finance", "Business/Economics"], "revision": 3}
+/type/edition /books/OL10890897M 3 2011-05-14T13:45:27.247051 {"publishers": ["Icon Group International"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T13:45:27.247051"}, "title": "The 2000 Import and Export Market for Metalworking Machine Tool Parts in Russia", "number_of_pages": 72, "isbn_13": ["9780597740107"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597740100"], "publish_date": "April 2001", "key": "/books/OL10890897M", "authors": [{"key": "/authors/OL2727138A"}], "latest_revision": 3, "works": [{"key": "/works/OL8187966W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business & Economics", "Business / Economics / Finance", "Business/Economics"], "revision": 3}
+/type/edition /books/OL10891020M 3 2011-05-14T13:32:01.813762 {"publishers": ["Icon Group International"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T13:32:01.813762"}, "title": "The 2000 Import and Export Market for Iron and Steel Chain and Chain Parts in Taiwan", "number_of_pages": 84, "isbn_13": ["9780597741333"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597741336"], "publish_date": "April 2001", "key": "/books/OL10891020M", "authors": [{"key": "/authors/OL2727138A"}], "latest_revision": 3, "works": [{"key": "/works/OL8186940W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business & Economics", "Business / Economics / Finance", "Business/Economics"], "revision": 3}
+/type/edition /books/OL10891268M 3 2011-05-14T13:52:54.288428 {"publishers": ["Icon Group International"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T13:52:54.288428"}, "title": "The 2000 Import and Export Market for Power Generating Machinery and Equipment in Thailand", "number_of_pages": 64, "isbn_13": ["9780597743818"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597743819"], "publish_date": "April 2001", "key": "/books/OL10891268M", "authors": [{"key": "/authors/OL2727138A"}], "latest_revision": 3, "works": [{"key": "/works/OL8188530W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business & Economics", "Business / Economics / Finance", "Business/Economics"], "revision": 3}
+/type/edition /books/OL10891430M 3 2011-05-14T13:28:16.731886 {"publishers": ["Icon Group International"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T13:28:16.731886"}, "title": "The 2000 Import and Export Market for Internal Combustion Piston Engines and Parts in Czech Republic", "number_of_pages": 96, "isbn_13": ["9780597745447"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597745447"], "publish_date": "April 2001", "key": "/books/OL10891430M", "authors": [{"key": "/authors/OL2727138A"}], "latest_revision": 3, "works": [{"key": "/works/OL8186715W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business & Economics", "Business / Economics / Finance", "Business/Economics"], "revision": 3}
+/type/edition /books/OL10891511M 3 2011-05-14T13:38:49.796099 {"publishers": ["Icon Group International"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T13:38:49.796099"}, "title": "The 2000 Import and Export Market for Marine-Propulsion Internal Combustion Piston Engines in China", "number_of_pages": 48, "isbn_13": ["9780597746253"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597746257"], "publish_date": "April 2001", "key": "/books/OL10891511M", "authors": [{"key": "/authors/OL2727138A"}], "latest_revision": 3, "works": [{"key": "/works/OL8187456W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business & Economics", "Business / Economics / Finance", "Business/Economics"], "revision": 3}
+/type/edition /books/OL10891843M 3 2011-05-14T14:14:15.703159 {"publishers": ["Icon Group International"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T14:14:15.703159"}, "title": "The 2000 Import and Export Market for Unwrought Lead and Lead Alloys in Netherlands", "number_of_pages": 32, "isbn_13": ["9780597749612"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597749612"], "publish_date": "April 2001", "key": "/books/OL10891843M", "authors": [{"key": "/authors/OL2727138A"}], "latest_revision": 3, "works": [{"key": "/works/OL8190136W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business & Economics", "Business / Economics / Finance", "Business/Economics"], "revision": 3}
+/type/edition /books/OL10891879M 3 2011-05-14T14:18:06.499894 {"publishers": ["Icon Group International"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T14:18:06.499894"}, "title": "The 2000 Import and Export Market for Worked Lead and Lead Alloys in Denmark", "number_of_pages": 20, "isbn_13": ["9780597749971"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597749973"], "publish_date": "April 2001", "key": "/books/OL10891879M", "authors": [{"key": "/authors/OL2727138A"}], "latest_revision": 3, "works": [{"key": "/works/OL8190419W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business & Economics", "Business / Economics / Finance", "Business/Economics"], "revision": 3}
+/type/edition /books/OL10892002M 3 2011-05-14T14:14:42.437347 {"publishers": ["Icon Group International"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T14:14:42.437347"}, "title": "The 2000 Import and Export Market for Unwrought Zinc and Zinc Alloys in Denmark", "number_of_pages": 24, "isbn_13": ["9780597751202"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["059775120X"], "publish_date": "April 2001", "key": "/books/OL10892002M", "authors": [{"key": "/authors/OL2727138A"}], "latest_revision": 3, "works": [{"key": "/works/OL8190171W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business & Economics", "Business / Economics / Finance", "Business/Economics"], "revision": 3}
+/type/edition /books/OL10892030M 3 2011-05-14T14:15:12.862126 {"publishers": ["Icon Group International"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T14:15:12.862126"}, "title": "The 2000 Import and Export Market for Unwrought Zinc and Zinc Alloys in South Africa", "number_of_pages": 32, "isbn_13": ["9780597751486"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["059775148X"], "publish_date": "April 2001", "key": "/books/OL10892030M", "authors": [{"key": "/authors/OL2727138A"}], "latest_revision": 3, "works": [{"key": "/works/OL8190200W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business & Economics", "Business / Economics / Finance", "Business/Economics"], "revision": 3}
+/type/edition /books/OL10892228M 3 2011-05-14T13:41:41.256356 {"publishers": ["Icon Group International"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T13:41:41.256356"}, "title": "The 2000 Import and Export Market for Metal Containers for Storage and Transport in Iran", "number_of_pages": 20, "isbn_13": ["9780597753480"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597753482"], "publish_date": "April 2001", "key": "/books/OL10892228M", "authors": [{"key": "/authors/OL2727138A"}], "latest_revision": 3, "works": [{"key": "/works/OL8187663W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business & Economics", "Business / Economics / Finance", "Business/Economics"], "revision": 3}
+/type/edition /books/OL10892342M 3 2011-05-14T14:16:26.827434 {"publishers": ["Icon Group International"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T14:16:26.827434"}, "title": "The 2000 Import and Export Market for Wire Products and Fencing Grills in Russia", "number_of_pages": 88, "isbn_13": ["9780597754630"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597754632"], "publish_date": "April 2001", "key": "/books/OL10892342M", "authors": [{"key": "/authors/OL2727138A"}], "latest_revision": 3, "works": [{"key": "/works/OL8190294W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business & Economics", "Business / Economics / Finance", "Business/Economics"], "revision": 3}
+/type/edition /books/OL10892444M 3 2011-05-14T13:20:31.605505 {"publishers": ["Icon Group International"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T13:20:31.605505"}, "title": "The 2000 Import and Export Market for General Industrial Machinery, Equipment, and Parts in Hungary", "number_of_pages": 60, "isbn_13": ["9780597755651"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597755655"], "publish_date": "April 2001", "key": "/books/OL10892444M", "authors": [{"key": "/authors/OL2727138A"}], "latest_revision": 3, "works": [{"key": "/works/OL8186072W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business & Economics", "Business / Economics / Finance", "Business/Economics"], "revision": 3}
+/type/edition /books/OL10892767M 3 2011-05-14T14:10:00.690878 {"publishers": ["Icon Group International"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T14:10:00.690878"}, "title": "The 2000 Import and Export Market for Temperature-Change Machines, Plant and Laboratory Equipment in Hong Kong", "number_of_pages": 76, "isbn_13": ["9780597758881"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597758883"], "publish_date": "April 2001", "key": "/books/OL10892767M", "authors": [{"key": "/authors/OL2727138A"}], "latest_revision": 3, "works": [{"key": "/works/OL8189826W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business & Economics", "Business / Economics / Finance", "Business/Economics"], "revision": 3}
+/type/edition /books/OL10892793M 3 2011-05-14T14:10:24.755061 {"publishers": ["Icon Group International"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T14:10:24.755061"}, "title": "The 2000 Import and Export Market for Temperature-Change Machines, Plant and Laboratory Equipment in Philippines", "number_of_pages": 44, "isbn_13": ["9780597759147"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597759146"], "publish_date": "April 2001", "key": "/books/OL10892793M", "authors": [{"key": "/authors/OL2727138A"}], "latest_revision": 3, "works": [{"key": "/works/OL8189852W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business & Economics", "Business / Economics / Finance", "Business/Economics"], "revision": 3}
+/type/edition /books/OL10893234M 3 2011-05-14T13:12:14.371270 {"publishers": ["Icon Group International"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T13:12:14.371270"}, "title": "The 2000 Import and Export Market for Calculating Machines, Cash Registers, and Ticket-Issuing Machines in India", "number_of_pages": 44, "isbn_13": ["9780597763557"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597763550"], "publish_date": "April 2001", "key": "/books/OL10893234M", "authors": [{"key": "/authors/OL2727138A"}], "latest_revision": 3, "works": [{"key": "/works/OL8185455W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business & Economics", "Business / Economics / Finance", "Business/Economics"], "revision": 3}
+/type/edition /books/OL10893484M 3 2011-05-14T13:49:09.375761 {"publishers": ["Icon Group International"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T13:49:09.375761"}, "title": "The 2000 Import and Export Market for Office Machine Parts and Accessories in Vietnam", "number_of_pages": 20, "isbn_13": ["9780597766053"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597766053"], "publish_date": "April 2001", "key": "/books/OL10893484M", "authors": [{"key": "/authors/OL2727138A"}], "latest_revision": 3, "works": [{"key": "/works/OL8188239W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business & Economics", "Business / Economics / Finance", "Business/Economics"], "revision": 3}
+/type/edition /books/OL10893539M 3 2011-05-14T14:08:17.709834 {"publishers": ["Icon Group International"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T14:08:17.709834"}, "title": "The 2000 Import and Export Market for Telecommunications and Sound Recording Apparatuses in Paraguay", "number_of_pages": 20, "isbn_13": ["9780597766602"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597766606"], "publish_date": "April 2001", "key": "/books/OL10893539M", "authors": [{"key": "/authors/OL2727138A"}], "latest_revision": 3, "works": [{"key": "/works/OL8189696W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business & Economics", "Business / Economics / Finance", "Business/Economics"], "revision": 3}
+/type/edition /books/OL10894143M 3 2011-05-14T13:08:10.645777 {"publishers": ["Icon Group International"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T13:08:10.645777"}, "title": "The 2000 Import and Export Market for Agricultural Hand Tools in Indonesia", "number_of_pages": 16, "isbn_13": ["9780597772641"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597772649"], "publish_date": "April 2001", "key": "/books/OL10894143M", "authors": [{"key": "/authors/OL2727138A"}], "latest_revision": 3, "works": [{"key": "/works/OL8185107W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business & Economics", "Business / Economics / Finance", "Business/Economics"], "revision": 3}
+/type/edition /books/OL10894443M 3 2011-05-14T13:18:52.235920 {"publishers": ["Icon Group International"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T13:18:52.235920"}, "title": "The 2000 Import and Export Market for Domestic Articles and Pot Scourers in Hong Kong", "number_of_pages": 144, "isbn_13": ["9780597775642"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597775648"], "publish_date": "April 2001", "key": "/books/OL10894443M", "authors": [{"key": "/authors/OL2727138A"}], "latest_revision": 3, "works": [{"key": "/works/OL8185956W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business & Economics", "Business / Economics / Finance", "Business/Economics"], "revision": 3}
+/type/edition /books/OL10895645M 3 2011-05-14T12:36:14.824286 {"publishers": ["Icon Group International"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T12:36:14.824286"}, "title": "The 2000-2005 Outlook for Medical Equipment in the Middle East", "number_of_pages": 23, "isbn_13": ["9780597800610"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597800618"], "publish_date": "August 2001", "key": "/books/OL10895645M", "authors": [{"key": "/authors/OL2727138A"}], "latest_revision": 3, "works": [{"key": "/works/OL8182583W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business & Economics", "Business / Economics / Finance", "Business/Economics"], "revision": 3}
+/type/edition /books/OL10895787M 3 2011-05-14T12:37:14.637398 {"publishers": ["Icon Group International"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2011-05-14T12:37:14.637398"}, "title": "The 2000-2005 Outlook for Mining Services in Europe", "number_of_pages": 35, "isbn_13": ["9780597802041"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0597802041"], "publish_date": "August 2001", "key": "/books/OL10895787M", "authors": [{"key": "/authors/OL2727138A"}], "latest_revision": 3, "works": [{"key": "/works/OL8182655W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business & Economics", "Business / Economics / Finance", "Business/Economics"], "revision": 3}
+/type/edition /books/OL10896007M 3 2011-05-14T12:40:12.872416 {"publishers": ["Icon Group International"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T12:40:12.872416"}, "title": "The 2000-2005 Outlook for Nonstore Retailers and Mail Order in Oceana", "number_of_pages": 20, "isbn_13": ["9780597804243"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597804249"], "publish_date": "August 2001", "key": "/books/OL10896007M", "authors": [{"key": "/authors/OL2727138A"}], "latest_revision": 3, "works": [{"key": "/works/OL8182889W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business & Economics", "Business / Economics / Finance", "Business/Economics"], "revision": 3}
+/type/edition /books/OL10896126M 3 2011-05-14T12:34:55.986758 {"publishers": ["Icon Group International"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T12:34:55.986758"}, "title": "The 2000-2005 Outlook for Manifold Business Forms in Europe", "number_of_pages": 36, "isbn_13": ["9780597805431"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597805431"], "publish_date": "August 2001", "key": "/books/OL10896126M", "authors": [{"key": "/authors/OL2727138A"}], "latest_revision": 3, "works": [{"key": "/works/OL8182481W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business & Economics", "Business / Economics / Finance", "Business/Economics"], "revision": 3}
+/type/edition /books/OL10896322M 3 2011-05-14T12:43:44.413074 {"publishers": ["Icon Group International"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T12:43:44.413074"}, "title": "The 2000-2005 Outlook for Pet Foods in Europe", "number_of_pages": 36, "isbn_13": ["9780597807411"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597807418"], "publish_date": "August 2001", "key": "/books/OL10896322M", "authors": [{"key": "/authors/OL2727138A"}], "latest_revision": 3, "works": [{"key": "/works/OL8183180W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business & Economics", "Business / Economics / Finance", "Business/Economics"], "revision": 3}
+/type/edition /books/OL10896416M 3 2011-05-14T12:44:56.575721 {"publishers": ["Icon Group International"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T12:44:56.575721"}, "title": "The 2000-2005 Outlook for Plain Noodles in Oceana", "number_of_pages": 20, "isbn_13": ["9780597808357"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["059780835X"], "publish_date": "August 2001", "key": "/books/OL10896416M", "authors": [{"key": "/authors/OL2727138A"}], "latest_revision": 3, "works": [{"key": "/works/OL8183260W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business & Economics", "Business / Economics / Finance", "Business/Economics"], "revision": 3}
+/type/edition /books/OL10896495M 3 2011-05-14T12:46:25.722658 {"publishers": ["Icon Group International"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T12:46:25.722658"}, "title": "The 2000-2005 Outlook for Potash, Soda, and Boratic Minerals in Asia", "number_of_pages": 28, "isbn_13": ["9780597809149"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597809143"], "publish_date": "August 2001", "key": "/books/OL10896495M", "authors": [{"key": "/authors/OL2727138A"}], "latest_revision": 3, "works": [{"key": "/works/OL8183375W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business & Economics", "Business / Economics / Finance", "Business/Economics"], "revision": 3}
+/type/edition /books/OL10897015M 7 2022-12-08T04:18:57.653769 {"publishers": ["Thomson Learning"], "physical_format": "Paperback", "title": "Introducing Theatre, 7th Edition", "identifiers": {"librarything": ["5547026"], "goodreads": ["1410824"]}, "isbn_13": ["9780759304000"], "edition_name": "7 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0759304009"], "publish_date": "August 10, 2001", "key": "/books/OL10897015M", "authors": [{"key": "/authors/OL2777968A"}, {"key": "/authors/OL2777969A"}], "oclc_numbers": ["49278093"], "type": {"key": "/type/edition"}, "subjects": ["Performing Arts/Dance"], "works": [{"key": "/works/OL26446965W"}], "covers": [12475087], "ocaid": "introducingtheat0000reil_a7a3", "lc_classifications": ["PN2037 .R425 2001"], "source_records": ["ia:introducingtheat0000reil_a7a3", "promise:bwb_daily_pallets_2021-07-13"], "local_id": ["urn:bwbsku:W6-AWW-400"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-08T04:18:57.653769"}}
+/type/edition /books/OL10897229M 4 2010-04-24T18:10:30.540584 {"publishers": ["Thomson Custom Publishing"], "number_of_pages": 490, "contributions": ["Lindy Biggs (Editor)", "James Hansen (Editor)", "William Trimble (Editor)"], "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:10:30.540584"}, "title": "Readings in Technology and Civilization (Volume II)", "physical_format": "Paperback", "identifiers": {"goodreads": ["3770336"]}, "isbn_13": ["9780759338692"], "covers": [5079214], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0759338698"], "publish_date": "2004", "key": "/books/OL10897229M", "latest_revision": 4, "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10897275M 3 2010-04-16T07:36:40.509586 {"publishers": ["Custom Publishing"], "physical_format": "Hardcover", "subtitle": "Alvin Community College English Department", "key": "/books/OL10897275M", "title": "Freshman Reader ", "number_of_pages": 1295, "identifiers": {"goodreads": ["2878237"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0759343934"], "publish_date": "2004", "last_modified": {"type": "/type/datetime", "value": "2010-04-16T07:36:40.509586"}, "authors": [{"key": "/authors/OL3509507A"}], "latest_revision": 3, "works": [{"key": "/works/OL9495995W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10897615M 4 2011-04-26T16:37:28.795393 {"publishers": ["Authorhouse"], "number_of_pages": 536, "weight": "1.6 pounds", "covers": [2601941], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-26T16:37:28.795393"}, "latest_revision": 4, "key": "/books/OL10897615M", "authors": [{"key": "/authors/OL3020390A"}, {"key": "/authors/OL3509677A"}], "subjects": ["Fantasy - General", "Fiction", "Fiction - Fantasy", "Fantasy"], "isbn_13": ["9780759606999"], "title": "Dark Obsession", "identifiers": {"librarything": ["9201256"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0759606994"], "publish_date": "February 2001", "oclc_numbers": ["550539518"], "type": {"key": "/type/edition"}, "physical_dimensions": "8.1 x 5 x 1.4 inches", "revision": 4}
+/type/edition /books/OL10897901M 4 2011-04-30T14:43:09.282872 {"publishers": ["Authorhouse"], "subtitle": "A Book of Etiquette for Single Men", "weight": "5.4 ounces", "covers": [2602240], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-30T14:43:09.282872"}, "latest_revision": 4, "key": "/books/OL10897901M", "authors": [{"key": "/authors/OL3509827A"}], "subjects": ["Etiquette & entertaining", "Etiquette", "Reference"], "languages": [{"key": "/languages/eng"}], "title": "Manners", "number_of_pages": 106, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780759620131"], "isbn_10": ["075962013X"], "publish_date": "May 2001", "oclc_numbers": ["55072927"], "works": [{"key": "/works/OL9496384W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8 x 5 x 0.4 inches", "revision": 4}
+/type/edition /books/OL108979M 3 2020-12-02T09:46:28.069281 {"subject_place": ["Poland"], "lc_classifications": ["HD87 .G79 1999"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part28.utf8:98264211:642"], "title": "Wspo\u0301\u0142czesne problemy polityki gospodarczej", "languages": [{"key": "/languages/pol"}], "subjects": ["Economic policy.", "Poland -- Economic policy."], "publish_country": "pl ", "by_statement": "Waldemar Grzywacz.", "type": {"key": "/type/edition"}, "publishers": ["Polskie Towarzystwo Ekonomiczne"], "key": "/books/OL108979M", "authors": [{"key": "/authors/OL73038A"}], "publish_places": ["Szczecin"], "pagination": "204 p. :", "lccn": ["99227921"], "notes": {"type": "/type/text", "value": "Includes bibliographical references."}, "number_of_pages": 204, "isbn_10": ["8387249173"], "publish_date": "1999", "works": [{"key": "/works/OL846190W"}], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-02T09:46:28.069281"}}
+/type/edition /books/OL10898140M 3 2010-04-13T06:18:57.746635 {"publishers": ["1st Books Library"], "number_of_pages": 112, "weight": "5.6 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0759631557"], "title": "Yellow on Green", "isbn_13": ["9780759631557"], "covers": [2602494], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:18:57.746635"}, "latest_revision": 3, "key": "/books/OL10898140M", "authors": [{"key": "/authors/OL3509972A"}], "publish_date": "June 1, 2001", "works": [{"key": "/works/OL9496545W"}], "type": {"key": "/type/edition"}, "subjects": ["General & Literary Fiction", "Sports", "Fiction / Sports", "Fiction", "Fiction - General"], "physical_dimensions": "8.2 x 5.1 x 0.3 inches", "revision": 3}
+/type/edition /books/OL10898145M 5 2010-04-24T18:10:30.540584 {"publishers": ["1st Books Library"], "languages": [{"key": "/languages/eng"}], "identifiers": {"goodreads": ["1447158"]}, "weight": "14.9 ounces", "title": "Pipe Dream (Tiffany Tyler)", "number_of_pages": 352, "isbn_13": ["9780759631786"], "covers": [2602501], "physical_format": "Paperback", "authors": [{"key": "/authors/OL247150A"}], "isbn_10": ["0759631786"], "latest_revision": 5, "key": "/books/OL10898145M", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:10:30.540584"}, "publish_date": "September 1, 2001", "works": [{"key": "/works/OL2040685W"}], "type": {"key": "/type/edition"}, "subjects": ["General & Literary Fiction", "General", "Fiction / General", "Fiction", "Fiction - General"], "physical_dimensions": "8 x 5.1 x 0.9 inches", "revision": 5}
+/type/edition /books/OL10898533M 6 2011-04-28T14:29:48.588869 {"publishers": ["Authorhouse"], "identifiers": {"goodreads": ["2298278"]}, "subtitle": "Could Rap Be Poetry?", "weight": "5.8 ounces", "covers": [2602915], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-28T14:29:48.588869"}, "latest_revision": 6, "key": "/books/OL10898533M", "authors": [{"key": "/authors/OL3510236A"}], "subjects": ["Poetry texts & anthologies", "American - African American", "Poetry"], "isbn_13": ["9780759650435"], "title": "One of the Last Great Poets Standing", "number_of_pages": 132, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0759650438"], "publish_date": "November 2001", "oclc_numbers": ["52372740"], "works": [{"key": "/works/OL9496853W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8 x 5 x 0.4 inches", "revision": 6}
+/type/edition /books/OL1089854M 7 2020-11-18T08:51:42.836590 {"publishers": ["PWS Pub. Co."], "isbn_10": ["0534944701"], "covers": [1275205], "lc_classifications": ["QA154.2 .J63 1995"], "latest_revision": 7, "key": "/books/OL1089854M", "authors": [{"key": "/authors/OL579509A"}], "publish_places": ["Boston"], "contributions": ["Willis, Alden T.", "Lazaris, Jeanne, 1932-"], "languages": [{"key": "/languages/eng"}], "pagination": "1 v. (various pagings) ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:125842611:919"], "title": "Intermediate algebra", "dewey_decimal_class": ["512.9"], "notes": {"type": "/type/text", "value": "Includes index."}, "identifiers": {"librarything": ["2586693"], "goodreads": ["2587346"]}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "edition_name": "6th ed., annotated instructor's ed.", "lccn": ["94013965"], "subjects": ["Algebra."], "publish_date": "1995", "publish_country": "mau", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T08:51:42.836590"}, "by_statement": "C.L. Johnston, Alden T. Willis, Jeanne Lazaris.", "oclc_numbers": ["30399930"], "works": [{"key": "/works/OL3475933W"}], "type": {"key": "/type/edition"}, "revision": 7}
+/type/edition /books/OL10898726M 4 2011-06-08T01:41:15.120749 {"publishers": ["1st Books Library"], "weight": "11.8 ounces", "covers": [2603133], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-06-08T01:41:15.120749"}, "latest_revision": 4, "key": "/books/OL10898726M", "authors": [{"key": "/authors/OL2099334A"}], "subjects": ["General & Literary Fiction", "General", "Fiction / General", "Fiction", "Fiction - General"], "isbn_13": ["9780759658820"], "source_records": ["amazon:075965882X"], "title": "Chapter 11", "number_of_pages": 208, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["075965882X"], "publish_date": "January 1, 2002", "oclc_numbers": ["54207500"], "works": [{"key": "/works/OL177813W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.1 x 6.1 x 0.6 inches", "revision": 4}
+/type/edition /books/OL10898734M 3 2010-04-13T06:18:57.746635 {"publishers": ["Authorhouse"], "number_of_pages": 124, "subtitle": "Warrior of Hope", "weight": "7.5 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0759659192"], "title": "Steve Svetson", "isbn_13": ["9780759659193"], "covers": [5079191], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:18:57.746635"}, "latest_revision": 3, "key": "/books/OL10898734M", "authors": [{"key": "/authors/OL3510353A"}], "publish_date": "January 2002", "works": [{"key": "/works/OL9496978W"}], "type": {"key": "/type/edition"}, "subjects": ["General & Literary Fiction", "General", "Fiction", "Fiction - General"], "physical_dimensions": "9.1 x 6.1 x 0.4 inches", "revision": 3}
+/type/edition /books/OL10899125M 6 2011-04-29T22:01:48.905082 {"publishers": ["Authorhouse"], "identifiers": {"goodreads": ["13526"]}, "weight": "9.6 ounces", "covers": [2603540], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T22:01:48.905082"}, "latest_revision": 6, "key": "/books/OL10899125M", "authors": [{"key": "/authors/OL3510564A"}], "subjects": ["Horror & ghost stories", "Horror - General", "Fiction - Horror", "Fiction"], "languages": [{"key": "/languages/eng"}], "title": "The Witch and the Devil's Son", "number_of_pages": 216, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780759675537"], "isbn_10": ["0759675538"], "publish_date": "March 2002", "oclc_numbers": ["52123668"], "works": [{"key": "/works/OL9497236W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.1 x 5.1 x 0.6 inches", "revision": 6}
+/type/edition /books/OL10899419M 5 2010-04-24T18:10:30.540584 {"publishers": ["1st Books Library"], "languages": [{"key": "/languages/eng"}], "identifiers": {"goodreads": ["6020921"]}, "weight": "14.9 ounces", "title": "Ten Marvelous Men", "number_of_pages": 384, "isbn_13": ["9780759687011"], "covers": [5079308], "physical_format": "Paperback", "authors": [{"key": "/authors/OL3510323A"}], "isbn_10": ["0759687013"], "latest_revision": 5, "key": "/books/OL10899419M", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:10:30.540584"}, "publish_date": "July 22, 2002", "works": [{"key": "/works/OL9496942W"}], "type": {"key": "/type/edition"}, "subjects": ["Short stories", "Short Stories (single author)", "Fiction / Short Stories (single author)", "Fiction", "Fiction - General"], "physical_dimensions": "8 x 5 x 0.9 inches", "revision": 5}
+/type/edition /books/OL10899475M 4 2010-04-13T06:18:57.746635 {"publishers": ["Authorhouse"], "number_of_pages": 476, "weight": "2.3 pounds", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0759689466"], "title": "Yorkshire West", "isbn_13": ["9780759689466"], "covers": [2603886], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:18:57.746635"}, "latest_revision": 4, "key": "/books/OL10899475M", "authors": [{"key": "/authors/OL1434648A"}], "publish_date": "February 2003", "works": [{"key": "/works/OL5846990W"}], "type": {"key": "/type/edition"}, "subjects": ["Language teaching & learning material & coursework", "Composition & Creative Writing - Play/Scriptwriting", "Language Arts & Disciplines", "Language Arts / Linguistics / Literacy", "Language"], "physical_dimensions": "11 x 8.2 x 1 inches", "revision": 4}
+/type/edition /books/OL10899723M 6 2021-10-08T06:21:54.893719 {"publishers": ["Hard Shell Word Factory"], "title": "Sally [3 1/2\" Diskette]", "identifiers": {"librarything": ["3787271"], "goodreads": ["4147606"]}, "physical_format": "CD-ROM", "isbn_10": ["0759903298"], "publish_date": "2001", "key": "/books/OL10899723M", "authors": [{"key": "/authors/OL764168A"}], "oclc_numbers": ["53236055"], "works": [{"key": "/works/OL4081133W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780759903296"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-10-08T06:21:54.893719"}}
+/type/edition /books/OL10899788M 4 2021-07-09T04:59:50.274564 {"isbn_13": ["9780759940918"], "title": "Deadly Secrets, An Indian Creek Texas Mystery", "covers": [2604213], "physical_format": "Paperback", "isbn_10": ["0759940916"], "key": "/books/OL10899788M", "oclc_numbers": ["58868854"], "type": {"key": "/type/edition"}, "works": [{"key": "/works/OL24684191W"}], "ocaid": "deadlysecrets0000morr", "source_records": ["ia:deadlysecrets0000morr"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-07-09T04:59:50.274564"}}
+/type/edition /books/OL10900197M 2 2009-12-15T00:55:50.404454 {"publishers": ["Brentwood-Benson"], "weight": "4 ounces", "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:55:50.404454"}, "latest_revision": 2, "key": "/books/OL10900197M", "authors": [{"key": "/authors/OL2807993A"}], "subjects": ["Music / Songbooks", "Music"], "languages": [{"key": "/languages/eng"}], "title": "Exalt His Name", "number_of_pages": 64, "isbn_13": ["9780760101339"], "isbn_10": ["0760101337"], "publish_date": "January 1, 1995", "works": [{"key": "/works/OL8416093W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.2 x 7 x 0.1 inches", "revision": 2}
+/type/edition /books/OL10900346M 3 2010-04-13T06:18:57.746635 {"publishers": ["Verity"], "physical_format": "Audio CD", "key": "/books/OL10900346M", "title": "Instrumentally Yours", "covers": [2604325], "isbn_13": ["9780760116043"], "isbn_10": ["0760116040"], "publish_date": "December 1997", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:18:57.746635"}, "authors": [{"key": "/authors/OL3511018A"}], "latest_revision": 3, "works": [{"key": "/works/OL9497735W"}], "type": {"key": "/type/edition"}, "subjects": ["Genres & Styles - Jazz", "Religious - Contemporary Christian", "Religious - Gospel", "CD-Miscellaneous Music"], "physical_dimensions": "5.6 x 4.9 x 0.4 inches", "revision": 3}
+/type/edition /books/OL10900411M 2 2009-12-15T00:55:50.404454 {"publishers": ["Brentwood-Benson"], "weight": "2.1 ounces", "physical_format": "Audio Cassette", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:55:50.404454"}, "latest_revision": 2, "key": "/books/OL10900411M", "authors": [{"key": "/authors/OL3511037A"}], "subjects": ["Music / Songbooks", "Songbooks - General", "Music", "Audio _ Miscellaneous Music"], "edition_name": "Abridged edition", "title": "Spirit of Brokeness", "isbn_13": ["9780760120460"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0760120463"], "publish_date": "November 1, 1997", "works": [{"key": "/works/OL9497765W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "4.2 x 2.8 x 0.6 inches", "revision": 2}
+/type/edition /books/OL10900522M 6 2020-12-03T15:15:42.842847 {"publishers": ["Motorbooks International"], "number_of_pages": 224, "subtitle": "Taglione and His World-Beating Motorcycles", "weight": "2.3 pounds", "covers": [6276714], "physical_format": "Hardcover", "key": "/books/OL10900522M", "authors": [{"key": "/authors/OL3511068A"}, {"key": "/authors/OL81383A"}], "subjects": ["Motorcycles: general interest", "Motorcycles - History", "Motorcycles - General", "Transportation", "1920-", "Automobile engineers", "Biography", "Ducati motorcycle", "History", "Italy", "Motorcycles", "Taglioni, Fabio,"], "languages": [{"key": "/languages/eng"}], "first_sentence": {"type": "/type/text", "value": "I well remember the first time I met Ing. (Ingenere - engineer) Taglioni during the first of the countless visits I have been fortunate enough to have made over the years to the Ducati headquarters at No. 3 Via C, Borgo Panigale, Bologna."}, "title": "Ducati", "identifiers": {"goodreads": ["4881516"]}, "isbn_13": ["9780760310038"], "isbn_10": ["0760310033"], "publish_date": "January 15, 2001", "oclc_numbers": ["45888966"], "type": {"key": "/type/edition"}, "physical_dimensions": "10.6 x 7.9 x 0.8 inches", "works": [{"key": "/works/OL23743765W"}], "lccn": ["2001030176"], "lc_classifications": ["TL140.T28 W35 2001"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part28.utf8:208006652:805"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-03T15:15:42.842847"}}
+/type/edition /books/OL10900531M 10 2020-08-03T03:33:53.425051 {"publishers": ["Motorbooks International"], "number_of_pages": 160, "weight": "2.9 pounds", "isbn_10": ["0760310386"], "covers": [2604404], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2020-08-03T03:33:53.425051"}, "latest_revision": 10, "key": "/books/OL10900531M", "authors": [{"key": "/authors/OL1346351A"}], "ocaid": "superyachts00john", "contributions": ["Michael Ng (Photographer)", "Paul Todd (Photographer)"], "languages": [{"key": "/languages/eng"}], "first_sentence": {"type": "/type/text", "value": "Masefield might well have had Shenandoah in mind when he wrote his famous poem in 1902, as this was the year of the schooner's launch from the Townsend and Downey Shipyard in New York."}, "source_records": ["marc:marc_loc_2016/BooksAll.2016.part01.utf8:29778547:674"], "title": "Super Yachts", "lccn": ["00046296"], "identifiers": {"goodreads": ["6893995"], "librarything": ["2978085"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780760310380"], "subjects": ["Ships & shipping: general interest", "Sailing - General", "Ships & Shipbuilding - Pictorial", "Ships & Shipbuilding - General", "Transportation", "Yachts"], "publish_date": "January 15, 2001", "oclc_numbers": ["44979663"], "works": [{"key": "/works/OL5594036W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "12.1 x 9.9 x 0.8 inches", "revision": 10}
+/type/edition /books/OL10900719M 5 2010-04-24T18:10:30.540584 {"publishers": ["Motorbooks"], "number_of_pages": 24, "weight": "8 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0760325898"], "identifiers": {"goodreads": ["117637"]}, "isbn_13": ["9780760325896"], "covers": [2604559], "edition_name": "First edition", "physical_format": "Calendar", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:10:30.540584"}, "latest_revision": 5, "key": "/books/OL10900719M", "authors": [{"key": "/authors/OL240435A"}], "publish_date": "August 15, 2006", "title": "Harley-Davidson Racing 2007", "works": [{"key": "/works/OL1997210W"}], "type": {"key": "/type/edition"}, "subjects": ["Motor Sports", "Motorcycles - General", "Transportation / Motorcycles / General", "Non-Classifiable", "Calendars & Diaries", "Calendar"], "physical_dimensions": "12.4 x 12.1 x 0.2 inches", "revision": 5}
+/type/edition /books/OL1090088M 10 2021-12-26T14:12:37.993263 {"publishers": ["H. Holt"], "identifiers": {"goodreads": ["231738"], "librarything": ["494474"]}, "subtitle": "in which a father addresses his son on questions of ethics ...", "ia_box_id": ["IA147721"], "isbn_10": ["0805032711"], "covers": [9530202], "ia_loaded_id": ["amadorinwhichfat00sava"], "lc_classifications": ["BJ1144 .S3512 1994", "BJ1144.S3512 1994"], "key": "/books/OL1090088M", "authors": [{"key": "/authors/OL277179A"}], "ocaid": "amadorinwhichfat00sava", "publish_places": ["New York"], "work_title": ["E\u0301tica para Amador."], "pagination": "190 p. ;", "source_records": ["ia:amadorinwhichfat00sava", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:126047356:773", "bwb:9780805032710"], "title": "Amador", "dewey_decimal_class": ["170/.44"], "notes": {"type": "/type/text", "value": "\"A John Macrae book.\""}, "number_of_pages": 190, "languages": [{"key": "/languages/eng"}], "lccn": ["94014218"], "subjects": ["Ethics.", "Fathers and sons.", "Liberty."], "publish_date": "1994", "publish_country": "nyu", "by_statement": "Fernando Savater ; translated from the Spanish by Alastair Reid.", "oclc_numbers": ["30109402"], "works": [{"key": "/works/OL2184670W"}], "type": {"key": "/type/edition"}, "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-26T14:12:37.993263"}}
+/type/edition /books/OL10901340M 4 2010-04-24T18:10:30.540584 {"publishers": ["Dorset Press"], "number_of_pages": 366, "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:10:30.540584"}, "title": "What Do Women Really Want? Cats, Chocolate, Shoes and Love 2003 Calendar", "type": {"key": "/type/edition"}, "identifiers": {"goodreads": ["136570"]}, "isbn_13": ["9780760734629"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0760734623"], "publish_date": "2003", "key": "/books/OL10901340M", "authors": [{"key": "/authors/OL3511231A"}, {"key": "/authors/OL34872A"}, {"key": "/authors/OL2946214A"}, {"key": "/authors/OL2824312A"}], "latest_revision": 4, "subjects": ["Entertainment - Humor"], "works": [{"key": "/works/OL14950389W"}], "physical_format": "Calendar", "revision": 4}
+/type/edition /books/OL10901465M 8 2022-08-17T18:52:04.582707 {"publishers": ["Barnes & Noble"], "number_of_pages": 160, "subtitle": "Scorpio", "covers": [5079354], "physical_format": "Paperback", "key": "/books/OL10901465M", "authors": [{"key": "/authors/OL1208383A"}], "subjects": ["NEW AGE - ASTROLOGY TRD PB", "Astrology - Horoscopes", "Body, Mind & Spirit", "New Age"], "isbn_13": ["9780760746684"], "source_records": ["amazon:0760746680", "bwb:9780760746684"], "title": "The Year Ahead 2005", "identifiers": {"goodreads": ["5107877"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0760746680"], "publish_date": "November 22, 2004", "oclc_numbers": ["150339959"], "works": [{"key": "/works/OL101189W"}], "type": {"key": "/type/edition"}, "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-17T18:52:04.582707"}}
+/type/edition /books/OL10901717M 4 2022-12-17T17:38:39.846188 {"publishers": ["Sterling"], "languages": [{"key": "/languages/eng"}], "identifiers": {"librarything": ["9322178"]}, "title": "Instant French (Instant Language Guides Series)", "physical_format": "Pamphlet", "number_of_pages": 24, "edition_name": "Pmplt edition", "isbn_13": ["9780760769515"], "isbn_10": ["0760769516"], "publish_date": "March 31, 2005", "key": "/books/OL10901717M", "authors": [{"key": "/authors/OL2626050A"}], "oclc_numbers": ["172984684"], "type": {"key": "/type/edition"}, "subjects": ["Foreign Travel - FOREIGN PHRASE BOOKS T PB", "Travel / Europe / Spain & Portugal", "Sale Books", "Europe - Spain & Portugal", "Travel", "Travel - Foreign"], "works": [{"key": "/works/OL32458442W"}], "source_records": ["bwb:9780760769515"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T17:38:39.846188"}}
+/type/edition /books/OL10902256M 7 2018-02-04T05:05:22.556122 {"publishers": ["Sundance Publications, Limited"], "identifiers": {"goodreads": ["1796007"], "librarything": ["5880365"]}, "covers": [8131239], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2018-02-04T05:05:22.556122"}, "latest_revision": 7, "key": "/books/OL10902256M", "authors": [{"key": "/authors/OL1388698A"}], "ocaid": "knockitoff0000clar", "languages": [{"key": "/languages/eng"}], "source_records": ["ia:knockitoff0000clar"], "title": "Knock It Off! (Triple Play: Asking for Trouble 3)", "number_of_pages": 48, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780760848036"], "isbn_10": ["0760848033"], "publish_date": "January 2000", "oclc_numbers": ["45162669"], "works": [{"key": "/works/OL5708306W"}], "type": {"key": "/type/edition"}, "revision": 7}
+/type/edition /books/OL10902584M 2 2009-12-15T00:55:51.894383 {"physical_format": "Paperback", "title": "The Down Jacket Syndrome", "isbn_10": ["076100159X"], "publishers": ["Northwest Pub"], "isbn_13": ["9780761001591"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:55:51.894383"}, "publish_date": "December 1995", "key": "/books/OL10902584M", "authors": [{"key": "/authors/OL3511450A"}], "latest_revision": 2, "subjects": ["Business/Economics"], "works": [{"key": "/works/OL9498299W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10902763M 4 2010-04-24T18:10:30.540584 {"publishers": ["Northwest Pub"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:10:30.540584"}, "title": "The Joy of Spiritual Discovery", "identifiers": {"goodreads": ["5018183"]}, "isbn_13": ["9780761003755"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0761003754"], "publish_date": "November 1995", "key": "/books/OL10902763M", "authors": [{"key": "/authors/OL1198486A"}], "latest_revision": 4, "works": [{"key": "/works/OL5287095W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL1090348M 5 2020-11-18T08:56:58.041679 {"publishers": ["Prentice Hall"], "identifiers": {"goodreads": ["842343"], "librarything": ["2208792"]}, "isbn_10": ["0131105043"], "lc_classifications": ["QB981 .B49 1995"], "latest_revision": 5, "key": "/books/OL1090348M", "authors": [{"key": "/authors/OL390127A"}], "publish_places": ["Englewood Cliffs, N.J"], "pagination": "xii, 212 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:126273857:615"], "title": "An introduction to cosmology", "dewey_decimal_class": ["523.1"], "notes": {"type": "/type/text", "value": "Includes bibliogaphical references (p. 207-208) and index."}, "number_of_pages": 212, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["94014493"], "subjects": ["Cosmology."], "publish_date": "1995", "publish_country": "nju", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T08:56:58.041679"}, "by_statement": "Jeremy Bernstein.", "works": [{"key": "/works/OL2673680W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10903650M 3 2010-04-13T06:18:57.746635 {"publishers": ["Workman Publishing Company"], "number_of_pages": 320, "weight": "15.5 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0761141804"], "title": "Dream Cars Page-A-Day Calendar 2007 (Large Page-A-Day)", "isbn_13": ["9780761141808"], "covers": [2605292], "physical_format": "Calendar", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:18:57.746635"}, "latest_revision": 3, "key": "/books/OL10903650M", "authors": [{"key": "/authors/OL2838177A"}], "publish_date": "June 1, 2006", "works": [{"key": "/works/OL8494765W"}], "type": {"key": "/type/edition"}, "subjects": ["Transportation / Automotive / General", "Non-Classifiable", "Calendars & Diaries", "Calendar"], "physical_dimensions": "7 x 6.1 x 1.8 inches", "revision": 3}
+/type/edition /books/OL10903779M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Millbrook Press"], "title": "Earth Our Home", "isbn_13": ["9780761307525"], "isbn_10": ["0761307524"], "publish_date": "May 10, 1996", "key": "/books/OL10903779M", "type": {"key": "/type/edition"}, "subjects": ["Non-Classifiable", "Nonfiction - General"], "revision": 1}
+/type/edition /books/OL10903954M 7 2020-12-01T14:09:18.519186 {"publishers": ["Millbrook Press"], "number_of_pages": 30, "weight": "13.9 ounces", "covers": [2605438], "physical_format": "Library Binding", "lc_classifications": ["G175 .K45 2000"], "latest_revision": 7, "key": "/books/OL10903954M", "authors": [{"key": "/authors/OL235316A"}], "ocaid": "tremendoustreks0000kent", "subjects": ["Activity Books - Hidden Picture", "History - General", "Non-Classifiable", "Health & Daily Living - General", "Juvenile Nonfiction", "Children's 9-12 - History - General", "Children's Books/Ages 9-12 Nonfiction", "Juvenile literature", "Pictorial works", "Picture puzzles", "Voyages and travels", "Children: Grades 2-3"], "isbn_13": ["9780761318194"], "source_records": ["ia:tremendoustreks0000kent", "marc:marc_loc_2016/BooksAll.2016.part28.utf8:14197722:1117"], "title": "Tremendous Treks", "lccn": ["99047444"], "identifiers": {"librarything": ["3564448"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0761318194"], "publish_date": "February 1, 2000", "last_modified": {"type": "/type/datetime", "value": "2020-12-01T14:09:18.519186"}, "works": [{"key": "/works/OL1960185W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "11.4 x 9 x 0.4 inches", "revision": 7}
+/type/edition /books/OL10904473M 2 2010-04-13T06:18:57.746635 {"physical_format": "Library Binding", "subtitle": "Group 4", "weight": "2 pounds", "publishers": ["Benchmark Books (NY)"], "number_of_pages": 32, "isbn_13": ["9780761415091"], "covers": [5079545], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0761415092"], "publish_date": "September 2001", "latest_revision": 2, "key": "/books/OL10904473M", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:18:57.746635"}, "title": "We Can Read", "subjects": ["General", "Animals - General", "Juvenile Nonfiction", "Children's Books/Ages 4-8 Fiction", "Children: Grades 1-2"], "type": {"key": "/type/edition"}, "physical_dimensions": "11.2 x 6.5 x 1.8 inches", "revision": 2}
+/type/edition /books/OL10904619M 7 2022-07-18T21:04:34.968399 {"publishers": ["Benchmark Books (NY)"], "number_of_pages": 24, "weight": "6.1 ounces", "covers": [2605628], "physical_format": "Library Binding", "key": "/books/OL10904619M", "authors": [{"key": "/authors/OL1071797A"}], "subjects": ["Preschool Reading Skills", "Juvenile Nonfiction", "Children's Books/Ages 9-12 Fiction", "Spanish: Preschool", "General", "Concepts - Opposites", "Readers - Beginner"], "isbn_13": ["9780761423652"], "classifications": {}, "title": "Sucio Limpio/ Dirty Clean", "notes": {"type": "/type/text", "value": "Bookworms - Exactamente Lo Opuesto"}, "identifiers": {}, "languages": [{"key": "/languages/spa"}], "isbn_10": ["0761423656"], "publish_date": "September 2006", "works": [{"key": "/works/OL4965412W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "7.3 x 7.2 x 0.3 inches", "lccn": ["2006015798", "2006017272"], "lc_classifications": ["PE1591 .G63718 2006", "PE1591 .G63718 2007", "PE1591.G63718 2006"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part33.utf8:110598862:949", "ia:dirtycleansuciol0000gord", "bwb:9780761423652"], "ocaid": "dirtycleansuciol0000gord", "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-18T21:04:34.968399"}}
+/type/edition /books/OL10904828M 14 2022-12-17T16:53:29.249400 {"publishers": ["Marshall Cavendish Corp/Ccb"], "number_of_pages": 144, "covers": [9461514], "physical_format": "Hardcover", "key": "/books/OL10904828M", "authors": [{"key": "/authors/OL85310A"}], "ocaid": "manolitofoureyes0000lind_d5l2", "contributions": ["Emilio Urberuaga (Illustrator)"], "subjects": ["People & Places - Europe", "Readers - Chapter Books", "Social Issues - Friendship", "Juvenile Fiction", "Children: Grades 4-6"], "isbn_13": ["9780761453031"], "source_records": ["amazon:0761453032", "marc:marc_loc_updates/v36.i31.records.utf8:10212482:1091", "marc:marc_loc_updates/v36.i33.records.utf8:6421447:1091", "marc:marc_loc_updates/v37.i35.records.utf8:17019380:1186", "ia:manolitofoureyes0000lind_d5l2", "marc:marc_loc_2016/BooksAll.2016.part34.utf8:136443888:1186", "ia:manolitofoureyes0000lind_n9o8", "bwb:9780761453031"], "title": "Manolito Four-eyes", "identifiers": {"librarything": ["346048"], "goodreads": ["2025313"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0761453032"], "publish_date": "May 2008", "oclc_numbers": ["163592654"], "works": [{"key": "/works/OL953179W"}], "type": {"key": "/type/edition"}, "lccn": ["2007028354"], "lc_classifications": ["PZ7.L65911 Man 2008", "PZ7.L65911Man 2008"], "latest_revision": 14, "revision": 14, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T16:53:29.249400"}}
+/type/edition /books/OL1090494M 4 2020-11-18T08:58:20.237645 {"publishers": ["P. Lang"], "subtitle": "Alfonso V en los \"dichos y hechos\" de A. Beccadelli", "isbn_10": ["0820421502"], "subject_place": ["Naples (Kingdom)"], "lc_classifications": ["DG848.112.A4 P38 1995"], "latest_revision": 4, "key": "/books/OL1090494M", "authors": [{"key": "/authors/OL579710A"}], "publish_places": ["New York"], "contributions": ["Beccadelli, Antonio, 1394-1471."], "subject_time": ["Spanish rule, 1442-1707."], "pagination": "xii, 106 p. ;", "source_records": ["bwb:9780820421506", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:126398046:1078"], "title": "Pri\u0301ncipe y mecenas", "dewey_decimal_class": ["945/.7305"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. [103]-106)."}, "number_of_pages": 106, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/spa"}], "lccn": ["94014647"], "subjects": ["Alfonso V, King of Aragon, 1396-1458 -- Public opinion.", "Beccadelli, Antonio, 1394-1471.", "Naples (Kingdom) -- History -- Spanish rule, 1442-1707."], "publish_date": "1995", "publish_country": "nyu", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T08:58:20.237645"}, "series": ["Currents in comparative Romance languages and literatures,", "vol. 17"], "by_statement": "Nadia Patrone.", "works": [{"key": "/works/OL3476852W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10905322M 3 2010-12-25T00:46:51.968631 {"publishers": ["Prima Publishing"], "physical_format": "Paperback", "classifications": {}, "last_modified": {"type": "/type/datetime", "value": "2010-12-25T00:46:51.968631"}, "title": "Mario Tennis", "notes": {"type": "/type/text", "value": "Prima's Official Strategy Guide"}, "identifiers": {}, "isbn_13": ["9780761533030"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0761533036"], "publish_date": "August 2000", "key": "/books/OL10905322M", "authors": [{"key": "/authors/OL2838355A"}], "latest_revision": 3, "works": [{"key": "/works/OL8495226W"}], "type": {"key": "/type/edition"}, "subjects": ["Video & Electronic - General", "Games", "Games / Gamebooks / Crosswords", "Computer Books: General", "Games/Puzzles"], "revision": 3}
+/type/edition /books/OL10905471M 3 2011-04-23T02:02:18.001510 {"publishers": ["Psychological Corp"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-23T02:02:18.001510"}, "weight": "2.3 pounds", "title": "Autism a Comprehensive Occupational Therapy Approach", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780761600121"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0761600124"], "publish_date": "January 2006", "key": "/books/OL10905471M", "authors": [{"key": "/authors/OL3296300A"}], "latest_revision": 3, "oclc_numbers": ["150375426"], "works": [{"key": "/works/OL9238325W"}], "type": {"key": "/type/edition"}, "subjects": ["Psychopathology - Autism", "Psychology"], "physical_dimensions": "10.8 x 8.5 x 0.8 inches", "revision": 3}
+/type/edition /books/OL10905510M 3 2010-04-24T18:10:30.540584 {"publishers": ["Psychological Corp"], "number_of_pages": 133, "key": "/books/OL10905510M", "title": "Sensorimotor Performance Analysis (Spa", "identifiers": {"goodreads": ["4975179"]}, "isbn_13": ["9780761617563"], "edition_name": "Manual edition", "physical_format": "Hardcover", "isbn_10": ["0761617566"], "publish_date": "March 1999", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:10:30.540584"}, "authors": [{"key": "/authors/OL3512079A"}, {"key": "/authors/OL3512080A"}], "latest_revision": 3, "type": {"key": "/type/edition"}, "subjects": ["Pediatrics", "Medical"], "revision": 3}
+/type/edition /books/OL10905522M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780761620945"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "publishers": ["Psychological Corp"], "title": "Therapyworks, Picture Cards R", "edition_name": "Crds edition", "isbn_10": ["076162094X"], "publish_date": "May 1999", "key": "/books/OL10905522M", "type": {"key": "/type/edition"}, "subjects": ["Study Skills", "Education"], "revision": 1}
+/type/edition /books/OL10905584M 2 2009-12-08T04:52:11.411608 {"physical_format": "Paperback", "publishers": ["Communication Skill Builders/Therapy Skill Bu"], "isbn_10": ["0761632298"], "number_of_pages": 192, "isbn_13": ["9780761632290"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-08T04:52:11.411608"}, "publish_date": "May 2000", "key": "/books/OL10905584M", "authors": [{"key": "/authors/OL38541A"}], "title": "150 Sequential Language Activities", "latest_revision": 2, "works": [{"key": "/works/OL543459W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10905728M 2 2009-12-15T00:55:54.873071 {"publishers": ["Elsevier"], "title": "Familiar Actions & Objects Manual;", "isbn_10": ["076165304X"], "isbn_13": ["9780761653042"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:55:54.873071"}, "publish_date": "March 29, 1995", "key": "/books/OL10905728M", "authors": [{"key": "/authors/OL2865002A"}], "latest_revision": 2, "subjects": ["Psychological testing & measurement"], "works": [{"key": "/works/OL8549646W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10905977M 4 2010-04-24T18:10:30.540584 {"publishers": ["Communication Skill Builders/Therapy Skill Bu"], "number_of_pages": 63, "subtitle": "Barrier Games for Referential Communication", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:10:30.540584"}, "title": "Creatures and Critters", "type": {"key": "/type/edition"}, "identifiers": {"goodreads": ["6960747"]}, "isbn_13": ["9780761674344"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0761674349"], "publish_date": "January 1987", "key": "/books/OL10905977M", "authors": [{"key": "/authors/OL445389A"}], "latest_revision": 4, "works": [{"key": "/works/OL2923218W"}], "physical_format": "Hardcover", "revision": 4}
+/type/edition /books/OL10906454M 5 2020-10-08T01:48:07.705071 {"publishers": ["University Press of America"], "weight": "11.2 ounces", "covers": [5437321, 5079803], "physical_format": "Paperback", "lc_classifications": ["LB1738.T54 1999"], "latest_revision": 5, "key": "/books/OL10906454M", "authors": [{"key": "/authors/OL3512257A"}], "subjects": ["Curriculum planning & development", "Reference, Information and Interdisciplinary Subjects", "Higher", "Non-Classifiable", "Curricula", "Education", "Education / Teaching", "Case studies", "College teachers", "In-service training", "United States"], "isbn_13": ["9780761815143"], "source_records": ["bwb:9780761815143"], "title": "Themes and Issues in Faculty Development", "number_of_pages": 240, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0761815147"], "publish_date": "October 20, 1999", "last_modified": {"type": "/type/datetime", "value": "2020-10-08T01:48:07.705071"}, "works": [{"key": "/works/OL9499275W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.9 x 5.8 x 0.4 inches", "revision": 5}
+/type/edition /books/OL10906462M 8 2022-11-17T11:04:29.823138 {"publishers": ["University Press of America"], "number_of_pages": 224, "weight": "14.4 ounces", "covers": [5359876, 5079766], "physical_format": "Hardcover", "lc_classifications": ["BF575.L8 M29 2000", "BF575.L8M29 2000"], "key": "/books/OL10906462M", "authors": [{"key": "/authors/OL3104964A"}], "subjects": ["Counselling", "Philosophy", "Psychology", "Religion: general", "General", "Personal Growth - General", "Philosophy / General", "Psychotherapy - Counseling", "Self-Help", "Love", "Self-acceptance"], "isbn_13": ["9780761815730"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part28.utf8:17551705:708", "bwb:9780761815730"], "title": "Self-Love", "lccn": ["99051513"], "identifiers": {"goodreads": ["5479199"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0761815732"], "publish_date": "March 9, 2000", "oclc_numbers": ["42692069"], "works": [{"key": "/works/OL8957500W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.3 x 6.3 x 0.7 inches", "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T11:04:29.823138"}}
+/type/edition /books/OL10907107M 5 2020-10-08T16:15:28.063862 {"publishers": ["Sage Publications, Inc"], "number_of_pages": 296, "physical_format": "Hardcover", "lc_classifications": [""], "latest_revision": 5, "key": "/books/OL10907107M", "contributions": ["George S. Tavlas (Editor)", "Michael K. Ulan (Editor)"], "subjects": ["Business & Economics / Economics / General", "Economics - General", "Business & Economics", "Business / Economics / Finance", "Business/Economics"], "isbn_13": ["9780761926009"], "source_records": ["bwb:9780761926009"], "title": "Exchange-Rate Regimes and Capital Flows (The ANNALS of the American Academy of Political and Social Science Series)", "identifiers": {"goodreads": ["4114363"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0761926003"], "publish_date": "January 1, 2002", "last_modified": {"type": "/type/datetime", "value": "2020-10-08T16:15:28.063862"}, "works": [{"key": "/works/OL20999877W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10907578M 3 2021-09-15T12:34:30.735612 {"physical_format": "Paperback", "publishers": ["Sage Publications"], "isbn_10": ["0761954716"], "number_of_pages": 240, "isbn_13": ["9780761954712"], "languages": [{"key": "/languages/eng"}], "publish_date": "March 31, 2008", "key": "/books/OL10907578M", "authors": [{"key": "/authors/OL3512724A"}], "title": "Landscape, Place and Identity", "subjects": ["Human geography", "Interdisciplinary Studies", "Science", "Environmental Studies", "Science/Mathematics", "Environmental Science", "Earth Sciences - Geography"], "works": [{"key": "/works/OL9499692W"}], "type": {"key": "/type/edition"}, "lc_classifications": ["GF21"], "source_records": ["bwb:9780761954712"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-09-15T12:34:30.735612"}}
+/type/edition /books/OL10907766M 2 2020-08-27T00:24:58.178971 {"publishers": ["Sage Publications Ltd"], "physical_format": "Paperback", "subtitle": "A Practioner's Guide to Design, Analysis & Interpretation (Clinical Psychology in Practice Series)", "last_modified": {"type": "/type/datetime", "value": "2020-08-27T00:24:58.178971"}, "source_records": ["bwb:9780761964384"], "title": "Single Case Studies", "number_of_pages": 192, "isbn_13": ["9780761964384"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["076196438X"], "publish_date": "April 2003", "key": "/books/OL10907766M", "authors": [{"key": "/authors/OL3512771A"}, {"key": "/authors/OL3512772A"}, {"key": "/authors/OL2789273A"}], "latest_revision": 2, "works": [{"key": "/works/OL21711900W"}], "type": {"key": "/type/edition"}, "subjects": ["Sociology"], "revision": 2}
+/type/edition /books/OL1090779M 7 2022-10-17T02:43:00.462079 {"publishers": ["Macmillan"], "number_of_pages": 959, "isbn_10": ["0025781154"], "lc_classifications": ["P361 .M28 1994", "P361.M28 1994"], "key": "/books/OL1090779M", "publish_places": ["New York"], "contributions": ["Que\u0301bec/Ame\u0301rique International."], "languages": [{"key": "/languages/eng"}], "pagination": "xxx, 959 p. :", "source_records": ["marc:marc_records_scriblio_net/part24.dat:52154128:812", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:126652146:811", "bwb:9780025781153"], "title": "The Macmillan visual dictionary.", "dewey_decimal_class": ["413/.1"], "notes": {"type": "/type/text", "value": "Captions in English, French, German, and Spanish.\nIncludes indexes.\n\"Created and produced by Que\u0301bec/Ame\u0301rique International\"--T.p. verso."}, "identifiers": {"librarything": ["80511"], "goodreads": ["2023295"]}, "edition_name": "Multilingual ed.", "lccn": ["94015016"], "subjects": ["Picture dictionaries, Polyglot."], "publish_date": "1994", "publish_country": "nyu", "works": [{"key": "/works/OL18879874W"}], "type": {"key": "/type/edition"}, "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T02:43:00.462079"}}
+/type/edition /books/OL10908233M 5 2020-10-08T03:35:34.866290 {"publishers": ["Sage Publications Pvt. Ltd"], "subtitle": "Challenges for the Manufacturing Industry (Response Books)", "weight": "1.1 pounds", "covers": [5080016], "physical_format": "Hardcover", "lc_classifications": ["HD9736.I52B48 2000"], "latest_revision": 5, "key": "/books/OL10908233M", "authors": [{"key": "/authors/OL3512865A"}], "subjects": ["Personnel & human resources management", "Human Resources & Personnel Management", "Manufacturing", "Business & Economics / Human Resources & Personnel Management", "Technology & Industrial Arts", "Case studies", "Corporate culture", "India", "Management", "Manufacturing industries", "Business/Economics"], "isbn_13": ["9780761994138"], "source_records": ["bwb:9780761994138"], "title": "Managing the Workforce", "number_of_pages": 304, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0761994130"], "publish_date": "December 2000", "last_modified": {"type": "/type/datetime", "value": "2020-10-08T03:35:34.866290"}, "works": [{"key": "/works/OL9499775W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.6 x 5.7 x 1 inches", "revision": 5}
+/type/edition /books/OL10908449M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Reader's Digest"], "title": "The Gift of Friendship (Reader's Digest Life Touched with Wonder Series)", "isbn_13": ["9780762188703"], "isbn_10": ["0762188707"], "publish_date": "2001", "key": "/books/OL10908449M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10908516M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780762208524"], "physical_format": "Paperback", "subtitle": "Modular, Grade 7 (Seeing and Thinking Mathematically)", "weight": "2.4 pounds", "languages": [{"key": "/languages/eng"}], "publishers": ["Glencoe/Mcgraw-Hill"], "title": "Math Scape Student Set", "edition_name": "Student edition", "isbn_10": ["076220852X"], "publish_date": "January 1997", "key": "/books/OL10908516M", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "type": {"key": "/type/edition"}, "subjects": ["Mathematics - General", "Juvenile Nonfiction", "Children: Young Adult (Gr. 7-9)"], "physical_dimensions": "10.7 x 8.4 x 0.7 inches", "revision": 1}
+/type/edition /books/OL10908721M 6 2022-12-29T04:36:11.502508 {"publishers": ["JAI Press"], "number_of_pages": 232, "weight": "1.1 pounds", "covers": [2606831], "physical_format": "Hardcover", "key": "/books/OL10908721M", "contributions": ["Geoff Troman (Editor)", "Bob Jeffrey (Editor)", "Geoffrey Walford (Editor)"], "subjects": ["Ethnography", "Education", "Education / Teaching", "General", "Education / General", "Congresses", "Educational anthropology", "Ethnology", "Etnografie.", "Methodology", "gtt"], "isbn_13": ["9780762312528"], "source_records": ["marc:marc_miami_univ_ohio/allbibs0186.out:1085146:1112", "marc:marc_columbia/Columbia-extract-20221130-012.mrc:13180198:1354"], "title": "Methodological Issues and Practices in Ethnography, Volume 11 (Studies in Educational Ethnography)", "identifiers": {"goodreads": ["2623315"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0762312521"], "publish_date": "December 16, 2005", "works": [{"key": "/works/OL18939188W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.4 x 6 x 0.9 inches", "lc_classifications": ["GN345 .M48 2005"], "oclc_numbers": ["61703427"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-29T04:36:11.502508"}}
+/type/edition /books/OL10908949M 4 2022-09-17T19:35:20.726497 {"publishers": ["Running Press Book Publishers"], "subtitle": "Includes 6 Noecards With Envelopes, Pen, and a Double Photo Frame (Noteables)", "weight": "3.5 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0762407530"], "title": "Motherhood", "isbn_13": ["9780762407538"], "covers": [2606965], "physical_format": "Paperback", "key": "/books/OL10908949M", "authors": [{"key": "/authors/OL2843145A"}], "publish_date": "April 2000", "works": [{"key": "/works/OL8502073W"}], "type": {"key": "/type/edition"}, "subjects": ["Motherhood", "Parenting - Motherhood", "Family & Relationships", "Gifts", "Family/Marriage"], "physical_dimensions": "3.4 x 2.8 x 1.3 inches", "source_records": ["bwb:9780762407538"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-17T19:35:20.726497"}}
+/type/edition /books/OL10909149M 8 2022-01-27T15:58:16.551157 {"publishers": ["Running Press Kids"], "number_of_pages": 22, "weight": "7.2 ounces", "covers": [2607108], "physical_format": "Board book", "key": "/books/OL10909149M", "authors": [{"key": "/authors/OL68455A"}], "contributions": ["Don Daily (Illustrator)"], "subjects": ["Board books", "Holidays & Celebrations - Easter & Lent", "Juvenile Fiction", "Children's Books/Baby-Preschool", "Fiction", "Rabbits", "Toys", "Children: Kindergarten"], "edition_name": "New Ed edition", "languages": [{"key": "/languages/eng"}], "source_records": ["amazon:0762429356", "bwb:9780762429356"], "title": "The Velveteen Rabbit", "identifiers": {"goodreads": ["144995"], "librarything": ["39"]}, "isbn_13": ["9780762429356"], "isbn_10": ["0762429356"], "publish_date": "February 2007", "works": [{"key": "/works/OL274440W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "6.4 x 5 x 0.7 inches", "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-27T15:58:16.551157"}}
+/type/edition /books/OL10909297M 2 2009-12-15T00:55:59.280730 {"physical_format": "Map", "publishers": ["Universal Map Enterprises"], "isbn_10": ["0762500301"], "number_of_pages": 1, "isbn_13": ["9780762500307"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:55:59.280730"}, "publish_date": "January 1998", "latest_revision": 2, "key": "/books/OL10909297M", "authors": [{"key": "/authors/OL2843451A"}], "title": "Ohio Roadmap", "subjects": ["United States - General", "Travel - United States"], "works": [{"key": "/works/OL8503409W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10909352M 2 2009-12-15T00:55:59.280730 {"physical_format": "Paperback", "weight": "3.2 ounces", "title": "World Reference Pack", "isbn_10": ["0762502088"], "publishers": ["Universal Map Enterprises"], "isbn_13": ["9780762502080"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:55:59.280730"}, "publish_date": "October 1996", "key": "/books/OL10909352M", "authors": [{"key": "/authors/OL3233335A"}], "latest_revision": 2, "subjects": ["Atlases - World", "Reference"], "works": [{"key": "/works/OL9155654W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "11 x 8.5 x 0.1 inches", "revision": 2}
+/type/edition /books/OL10909531M 6 2011-04-22T23:20:39.854347 {"publishers": ["UniversalMAP"], "subtitle": "Including Chickasaw, Daphne, Fairhope, Prichard", "physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2011-04-22T23:20:39.854347"}, "latest_revision": 6, "key": "/books/OL10909531M", "authors": [{"key": "/authors/OL2843450A"}], "isbn_13": ["9780762506231"], "classifications": {}, "title": "Mobile & Mobile County, Alabama", "notes": {"type": "/type/text", "value": ", street map"}, "identifiers": {"goodreads": ["5090037"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0762506237"], "publish_date": "1997", "oclc_numbers": ["38182334"], "works": [{"key": "/works/OL8502967W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL10909707M 5 2011-04-25T16:20:27.877721 {"publishers": ["UniversalMAP"], "physical_format": "Unknown Binding", "subtitle": "Including Barberton, Cuyahoga Falls, Fairlawn ... Silver Lake & neighboring communities", "last_modified": {"type": "/type/datetime", "value": "2011-04-25T16:20:27.877721"}, "title": "Akron & Summit County, Ohio streetmap", "identifiers": {"goodreads": ["7335061"]}, "isbn_13": ["9780762508914"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0762508914"], "publish_date": "1998", "key": "/books/OL10909707M", "authors": [{"key": "/authors/OL2843450A"}], "latest_revision": 5, "oclc_numbers": ["39786114"], "works": [{"key": "/works/OL8502806W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10909797M 3 2020-12-11T12:25:49.323371 {"publishers": ["Universal Map"], "physical_format": "Unknown Binding", "title": "Galveston", "isbn_13": ["9780762511006"], "isbn_10": ["0762511001"], "key": "/books/OL10909797M", "oclc_numbers": ["53037003"], "type": {"key": "/type/edition"}, "works": [{"key": "/works/OL23936217W"}], "lccn": ["2005273688"], "lc_classifications": ["BX6480.G365 B46 1986"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part32.utf8:183627018:708"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-11T12:25:49.323371"}}
+/type/edition /books/OL10910024M 5 2011-06-08T02:43:56.770568 {"publishers": ["Universal Map Enterprise Inc. [distributor]"], "physical_format": "Unknown Binding", "subtitle": "Including Armel, Brucetown, Clear Brook ... & neighbouring communities", "last_modified": {"type": "/type/datetime", "value": "2011-06-08T02:43:56.770568"}, "title": "Frederick County, Virginia, StreetMap", "identifiers": {"goodreads": ["5374184"]}, "isbn_13": ["9780762517053"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0762517050"], "publish_date": "1998", "key": "/books/OL10910024M", "authors": [{"key": "/authors/OL2773256A"}], "latest_revision": 5, "oclc_numbers": ["45122280"], "works": [{"key": "/works/OL8335243W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10910080M 3 2011-04-26T09:39:56.333192 {"publishers": ["Universal Map"], "physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2011-04-26T09:39:56.333192"}, "title": "Casper & Cheyenne, Wyoming streetmap", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780762518463"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0762518464"], "publish_date": "2000", "key": "/books/OL10910080M", "authors": [{"key": "/authors/OL2843450A"}], "latest_revision": 3, "oclc_numbers": ["46855476"], "works": [{"key": "/works/OL8502830W"}], "type": {"key": "/type/edition"}, "subjects": ["Cheyenne (Wyo.)", "Casper (Wyo.)", "Maps"], "revision": 3}
+/type/edition /books/OL10910093M 2 2011-04-26T01:17:59.805966 {"publishers": ["Universal Map Enterprises"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2011-04-26T01:17:59.805966"}, "title": "Polk/McDowell County, NC (City & County Street Folding Maps)", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780762518777"], "physical_format": "Paperback", "isbn_10": ["0762518774"], "publish_date": "January 2001", "key": "/books/OL10910093M", "latest_revision": 2, "oclc_numbers": ["51570279"], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10910313M 5 2011-04-27T01:07:41.816401 {"publishers": ["UniversalMAP"], "identifiers": {"goodreads": ["5164454"]}, "subtitle": "Including Counties of Broward, Charlotte, Collier, de Soto, Glades, Hardee, Hendry, Highlands, Lee, Manatee, Martin, M", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T01:07:41.816401"}, "title": "Southern Florida Roadmap", "type": {"key": "/type/edition"}, "number_of_pages": 1, "isbn_13": ["9780762526727"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0762526726"], "publish_date": "January 2002", "key": "/books/OL10910313M", "authors": [{"key": "/authors/OL2843451A"}], "latest_revision": 5, "oclc_numbers": ["50537586"], "works": [{"key": "/works/OL8503476W"}], "physical_format": "Hardcover", "revision": 5}
+/type/edition /books/OL10910677M 4 2012-06-06T00:47:03.638814 {"publishers": ["Universal Map Enterprises"], "number_of_pages": 1, "physical_format": "Map", "last_modified": {"type": "/type/datetime", "value": "2012-06-06T00:47:03.638814"}, "latest_revision": 4, "key": "/books/OL10910677M", "authors": [{"key": "/authors/OL2843451A"}], "isbn_13": ["9780762536054"], "classifications": {}, "title": "Nashville TN Deluxe Flip Map", "notes": {"type": "/type/text", "value": "Deluxe City Flip Map"}, "identifiers": {}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0762536055"], "publish_date": "January 2004", "oclc_numbers": ["60188475"], "works": [{"key": "/works/OL8503373W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10910826M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Universal Map Enterprises"], "title": "New York City, NY (City Wall Maps)", "isbn_13": ["9780762539390"], "isbn_10": ["0762539399"], "publish_date": "January 2001", "key": "/books/OL10910826M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10910931M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Universal Map Enterprises"], "title": "Augusta, Ga (City Wall Maps)", "isbn_13": ["9780762543885"], "isbn_10": ["0762543884"], "publish_date": "January 2001", "key": "/books/OL10910931M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10911604M 4 2011-04-25T23:24:59.977717 {"publishers": ["Regents of the University of California"], "physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2011-04-25T23:24:59.977717"}, "title": "Laying a foundation to introduce evidence: (preparing and using evidence at trial) : here's how and when to do it (CEB action guide)", "number_of_pages": 118, "isbn_13": ["9780762606368"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0762606363"], "publish_date": "2002", "key": "/books/OL10911604M", "authors": [{"key": "/authors/OL932023A"}], "latest_revision": 4, "oclc_numbers": ["48996770"], "works": [{"key": "/works/OL4584551W"}], "type": {"key": "/type/edition"}, "subjects": ["California", "Evidence (Law)", "Outlines, syllabi, etc"], "revision": 4}
+/type/edition /books/OL10911763M 4 2021-11-02T13:31:52.160317 {"publishers": ["Woodall Pub Co"], "languages": [{"key": "/languages/eng"}], "weight": "1.2 pounds", "title": "Woodall's Canadian Camping Guide, 2000", "isbn_10": ["0762705922"], "number_of_pages": 432, "isbn_13": ["9780762705924"], "covers": [2607381], "edition_name": "1997-1999 edition", "physical_format": "Paperback", "key": "/books/OL10911763M", "authors": [{"key": "/authors/OL2748907A"}], "publish_date": "December 1, 1999", "works": [{"key": "/works/OL8262218W"}], "type": {"key": "/type/edition"}, "subjects": ["Hotel & holiday accommodation guides", "Travel", "Travel - Foreign", "Parks & Campgrounds", "Camp sites, facilities, etc.", "Canada", "Directories"], "physical_dimensions": "11 x 8.2 x 0.5 inches", "lc_classifications": ["GV191.6"], "source_records": ["bwb:9780762705924"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-11-02T13:31:52.160317"}}
+/type/edition /books/OL1091206M 5 2011-05-04T23:44:01.962323 {"publishers": ["University of Notre Dame Press"], "identifiers": {"librarything": ["1002664"], "goodreads": ["1206419"]}, "subtitle": "the De doctrina Christiana of Augustine in the Middle Ages", "isbn_10": ["026801650X"], "series": ["Notre Dame conferences in medieval studies ;", "no. 6", "Notre Dame conferences in medieval studies ;", "6."], "covers": [5048860, 3876480], "lc_classifications": ["BR65.A6552 R42 1995"], "latest_revision": 5, "key": "/books/OL1091206M", "publish_places": ["Notre Dame, Ind"], "contributions": ["English, Edward D."], "subject_time": ["Middle Ages, 600-1500", "Medieval, 500-1500"], "pagination": "xi, 188 p. ;", "title": "Reading and wisdom", "dewey_decimal_class": ["230/.14"], "notes": {"type": "/type/text", "value": "Includes bibliographical references.\nPapers originally presented at a conference entitled De doctrina Christiana, held at the University of Notre Dame, Apr. 4-7, 1991."}, "number_of_pages": 188, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["94015467"], "subjects": ["Augustine, Saint, Bishop of Hippo. -- Congresses.", "Augustine, Saint, Bishop of Hippo -- Influence -- Congresses.", "Theology -- History -- Middle Ages, 600-1500 -- Congresses.", "Learning and scholarship -- History -- Medieval, 500-1500 -- Congresses."], "publish_date": "1995", "publish_country": "inu", "last_modified": {"type": "/type/datetime", "value": "2011-05-04T23:44:01.962323"}, "by_statement": "edited by Edward D. English.", "works": [{"key": "/works/OL5282229W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL1091220M 15 2022-12-09T17:50:28.713835 {"publishers": ["B. Adams"], "identifiers": {"librarything": ["3314"], "goodreads": ["4507207"]}, "subtitle": "the very important top officer", "ia_box_id": ["IA122211"], "isbn_10": ["1558503862"], "covers": [6600371, 783203], "ia_loaded_id": ["sellingtovitoverpar00pari"], "lc_classifications": ["HF5439.8 .P37 1994"], "key": "/books/OL1091220M", "authors": [{"key": "/authors/OL407544A"}], "ocaid": "sellingtovitover00pari", "publish_places": ["Holbrook, Mass"], "pagination": "233 p. :", "source_records": ["ia:sellingtovitover00pari", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:127038822:679", "ia:sellingtovitover0000pari", "promise:bwb_daily_pallets_2021-03-08", "promise:bwb_daily_pallets_2020-11-02"], "title": "Selling to VITO", "dewey_decimal_class": ["658.85"], "notes": {"type": "/type/text", "value": "Includes index."}, "number_of_pages": 233, "languages": [{"key": "/languages/eng"}], "lccn": ["94015481"], "subjects": ["Sales personnel -- Training of", "Selling -- Personnel management", "Executives"], "publish_date": "1994", "publish_country": "mau", "by_statement": "Anthony Parinello.", "oclc_numbers": ["30318334"], "works": [{"key": "/works/OL2769765W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:151-BAC-632", "urn:bwbsku:W6-BIT-739"], "latest_revision": 15, "revision": 15, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T17:50:28.713835"}}
+/type/edition /books/OL10912784M 4 2010-04-24T18:10:30.540584 {"publishers": ["Learning Company Books"], "number_of_pages": 32, "subtitle": "Level 1", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:10:30.540584"}, "title": "Lucky for Us, Learn to Read Library", "type": {"key": "/type/edition"}, "identifiers": {"goodreads": ["1437676"]}, "isbn_13": ["9780763080372"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0763080373"], "publish_date": "April 30, 2006", "key": "/books/OL10912784M", "authors": [{"key": "/authors/OL2844039A"}], "latest_revision": 4, "works": [{"key": "/works/OL8505197W"}], "physical_format": "Paperback", "subjects": ["General", "Readers - Beginner", "Juvenile Nonfiction", "Children's Books/Ages 4-8 Fiction", "Children: Kindergarten"], "revision": 4}
+/type/edition /books/OL10912810M 2 2010-08-17T04:47:30.924910 {"publishers": ["Browntrout Pubs (Cal)"], "physical_format": "Calendar", "last_modified": {"type": "/type/datetime", "value": "2010-08-17T04:47:30.924910"}, "weight": "9.6 ounces", "title": "Cal 97 Rottweilers", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "identifiers": {"librarything": ["6261347"]}, "isbn_13": ["9780763101237"], "edition_name": "Wall edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0763101230"], "publish_date": "July 1996", "key": "/books/OL10912810M", "authors": [{"key": "/authors/OL2626615A"}], "latest_revision": 2, "type": {"key": "/type/edition"}, "subjects": ["Dogs - General", "Calendars - Animals", "Calendar"], "physical_dimensions": "12.2 x 12.2 x 0.2 inches", "revision": 2}
+/type/edition /books/OL10912924M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Unknown Binding", "weight": "9.1 ounces", "publishers": ["Brown Trout"], "title": "Corvettes 1998 Calendar", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780763105303"], "isbn_10": ["0763105309"], "publish_date": "August 28, 1997", "key": "/books/OL10912924M", "authors": [{"key": "/authors/OL2626615A"}], "type": {"key": "/type/edition"}, "subjects": ["Automotive - Domestic - Pictorial", "Calendars - Ships, Trains, Planes, Cars & Bikes"], "physical_dimensions": "0.2 x 12 x 11.9 inches", "revision": 1}
+/type/edition /books/OL10913403M 3 2011-05-14T12:52:36.905824 {"publishers": ["Icon Group International"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T12:52:36.905824"}, "title": "The 2000-2005 Outlook for Rubber Tires for Cars in Europe", "number_of_pages": 36, "isbn_13": ["9780597813221"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597813221"], "publish_date": "August 2001", "key": "/books/OL10913403M", "authors": [{"key": "/authors/OL2727138A"}], "latest_revision": 3, "works": [{"key": "/works/OL8183845W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business & Economics", "Business / Economics / Finance", "Business/Economics"], "revision": 3}
+/type/edition /books/OL10913800M 3 2011-05-14T12:59:16.626679 {"publishers": ["Icon Group International"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T12:59:16.626679"}, "title": "The 2000-2005 Outlook for Telecommunications Equipment in Asia", "number_of_pages": 28, "isbn_13": ["9780597817199"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597817197"], "publish_date": "August 2001", "key": "/books/OL10913800M", "authors": [{"key": "/authors/OL2727138A"}], "latest_revision": 3, "works": [{"key": "/works/OL8184383W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business & Economics", "Business / Economics / Finance", "Business/Economics"], "revision": 3}
+/type/edition /books/OL1091429M 10 2021-08-18T22:12:34.254128 {"publishers": ["Rowman & Littlefield"], "identifiers": {"goodreads": ["1630661", "2078976"]}, "subtitle": "the rhetoric of social welfare in the Netherlands and France, 1815-1854", "isbn_10": ["0847679330", "0847679349"], "subject_place": ["Netherlands", "France", "Netherlands.", "France."], "covers": [3876459, 3876446], "lc_classifications": ["HV4112 .G68 1995", "HV4112.G68 1995"], "key": "/books/OL1091429M", "authors": [{"key": "/authors/OL325261A"}], "publish_places": ["Lanham, MD"], "subject_time": ["19th century."], "pagination": "xx, 273 p. :", "source_records": ["amazon:0847679330", "bwb:9780847679331", "bwb:9780847679348", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:127220520:1121", "ia:povertypolitical0000goud"], "title": "Poverty and political culture", "dewey_decimal_class": ["362.5/8/094409034"], "notes": {"type": "/type/text", "value": "Includes bibliographical references and index."}, "number_of_pages": 273, "languages": [{"key": "/languages/eng"}], "lccn": ["94015707"], "subjects": ["Poor -- Services for -- Netherlands.", "Poor -- Services for -- France.", "Political culture -- Netherlands -- History -- 19th century.", "Political culture -- France -- History -- 19th century.", "Netherlands -- Social conditions -- 19th century.", "France -- Social conditions -- 19th century."], "publish_date": "1995", "publish_country": "mdu", "by_statement": "Frances Gouda ; foreword by Arjo Klamer.", "works": [{"key": "/works/OL2383125W"}], "type": {"key": "/type/edition"}, "ocaid": "povertypolitical0000goud", "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2021-08-18T22:12:34.254128"}}
+/type/edition /books/OL10914487M 3 2011-05-14T13:04:05.595556 {"publishers": ["Icon Group International"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-05-14T13:04:05.595556"}, "title": "The 2000-2005 Outlook for Video Games and Hardware in Oceana", "number_of_pages": 20, "isbn_13": ["9780597824067"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0597824061"], "publish_date": "August 2001", "key": "/books/OL10914487M", "authors": [{"key": "/authors/OL2727138A"}], "latest_revision": 3, "works": [{"key": "/works/OL8184751W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business & Economics", "Business / Economics / Finance", "Business/Economics"], "revision": 3}
+/type/edition /books/OL10914644M 2 2010-04-13T06:19:53.102804 {"publishers": ["Icon Group International, Inc."], "subtitle": "A 2004 Global Trade Perspective", "isbn_10": ["0597825947"], "number_of_pages": 51, "isbn_13": ["9780597825941"], "covers": [2536537], "physical_format": "Spiral-bound", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:19:53.102804"}, "publish_date": "February 7, 2005", "latest_revision": 2, "key": "/books/OL10914644M", "title": "The World Market for Hand Sieves and Hand Riddles", "subjects": ["Business & Economics / General"], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10914667M 2 2010-04-13T06:19:53.102804 {"publishers": ["Icon Group International, Inc."], "subtitle": "A 2004 Global Trade Perspective", "isbn_10": ["059782617X"], "number_of_pages": 143, "isbn_13": ["9780597826177"], "covers": [2536560], "physical_format": "Spiral-bound", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:19:53.102804"}, "publish_date": "February 7, 2005", "latest_revision": 2, "key": "/books/OL10914667M", "title": "The World Market for Fungicides for Retail Sale", "subjects": ["Business & Economics / General"], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10915308M 3 2011-05-05T00:37:21.709723 {"publishers": ["Icon Group International, Inc."], "subtitle": "A 2004 Global Trade Perspective", "last_modified": {"type": "/type/datetime", "value": "2011-05-05T00:37:21.709723"}, "title": "The World Market for Live Bovine Animals", "number_of_pages": 85, "isbn_13": ["9780597878244"], "covers": [2537201], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Spiral-bound", "isbn_10": ["0597878242"], "publish_date": "February 7, 2005", "key": "/books/OL10915308M", "latest_revision": 3, "works": [{"key": "/works/OL3331063W"}], "type": {"key": "/type/edition"}, "subjects": ["Business & Economics / General"], "revision": 3}
+/type/edition /books/OL10915480M 3 2011-05-05T00:41:25.975109 {"publishers": ["Icon Group International, Inc."], "subtitle": "A 2004 Global Trade Perspective", "last_modified": {"type": "/type/datetime", "value": "2011-05-05T00:41:25.975109"}, "title": "The World Market for Powder, Flour, and Meal Made from Fruit", "number_of_pages": 67, "isbn_13": ["9780597880063"], "covers": [2537373], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Spiral-bound", "isbn_10": ["0597880069"], "publish_date": "February 7, 2005", "key": "/books/OL10915480M", "latest_revision": 3, "works": [{"key": "/works/OL3331646W"}], "type": {"key": "/type/edition"}, "subjects": ["Business & Economics / General"], "revision": 3}
+/type/edition /books/OL10915511M 3 2011-05-05T00:32:40.131814 {"publishers": ["Icon Group International, Inc."], "subtitle": "A 2004 Global Trade Perspective", "last_modified": {"type": "/type/datetime", "value": "2011-05-05T00:32:40.131814"}, "title": "The World Market for Avocados, Guavas, Mangoes, and Mangosteens", "number_of_pages": 94, "isbn_13": ["9780597880377"], "covers": [2537404], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Spiral-bound", "isbn_10": ["0597880379"], "publish_date": "February 7, 2005", "key": "/books/OL10915511M", "latest_revision": 3, "works": [{"key": "/works/OL3330144W"}], "type": {"key": "/type/edition"}, "subjects": ["Business & Economics / General"], "revision": 3}
+/type/edition /books/OL10916037M 2 2010-04-13T06:19:53.102804 {"publishers": ["Icon Group International, Inc."], "subtitle": "A 2004 Global Trade Perspective", "isbn_10": ["0597886121"], "number_of_pages": 102, "isbn_13": ["9780597886126"], "covers": [2537930], "physical_format": "Spiral-bound", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:19:53.102804"}, "publish_date": "February 7, 2005", "latest_revision": 2, "key": "/books/OL10916037M", "title": "The World Market for Acyclic Amides, Acyclic Carbamates, and Their Derivatives and Salts Thereof", "subjects": ["Business & Economics / General"], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10916640M 3 2011-05-05T00:41:25.975109 {"publishers": ["Icon Group International, Inc."], "subtitle": "A 2004 Global Trade Perspective", "last_modified": {"type": "/type/datetime", "value": "2011-05-05T00:41:25.975109"}, "title": "The World Market for Stainless Steel Semi-Finished Products", "number_of_pages": 77, "isbn_13": ["9780597892530"], "covers": [2538533], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Spiral-bound", "isbn_10": ["0597892539"], "publish_date": "February 7, 2005", "key": "/books/OL10916640M", "latest_revision": 3, "works": [{"key": "/works/OL3331946W"}], "type": {"key": "/type/edition"}, "subjects": ["Business & Economics / General"], "revision": 3}
+/type/edition /books/OL10916775M 3 2011-05-05T00:41:25.975109 {"publishers": ["Icon Group International, Inc."], "subtitle": "A 2004 Global Trade Perspective", "last_modified": {"type": "/type/datetime", "value": "2011-05-05T00:41:25.975109"}, "title": "The World Market for Unwrought Tin Alloys", "number_of_pages": 68, "isbn_13": ["9780597893995"], "covers": [2538668], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Spiral-bound", "isbn_10": ["0597893993"], "publish_date": "February 7, 2005", "key": "/books/OL10916775M", "latest_revision": 3, "works": [{"key": "/works/OL3332239W"}], "type": {"key": "/type/edition"}, "subjects": ["Business & Economics / General"], "revision": 3}
+/type/edition /books/OL10917085M 2 2010-04-13T06:19:53.102804 {"publishers": ["Icon Group International, Inc."], "subtitle": "A 2004 Global Trade Perspective", "isbn_10": ["0597897336"], "number_of_pages": 160, "isbn_13": ["9780597897337"], "covers": [2538978], "physical_format": "Spiral-bound", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:19:53.102804"}, "publish_date": "February 7, 2005", "latest_revision": 2, "key": "/books/OL10917085M", "title": "The World Market for Men's and Boys' Shirts of Knitted or Crocheted Textile Fabrics", "subjects": ["Business & Economics / General"], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10917109M 3 2011-05-05T00:37:21.709723 {"publishers": ["Icon Group International, Inc."], "subtitle": "A 2004 Global Trade Perspective", "last_modified": {"type": "/type/datetime", "value": "2011-05-05T00:37:21.709723"}, "title": "The World Market for Garments of Knitted or Crocheted Fabrics That Have Been Coated, Impregnated, Covered, or Laminated with Plastics, Rubber, or Other Materials", "number_of_pages": 94, "isbn_13": ["9780597897610"], "covers": [2539002], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Spiral-bound", "isbn_10": ["0597897611"], "publish_date": "February 7, 2005", "key": "/books/OL10917109M", "latest_revision": 3, "works": [{"key": "/works/OL3330735W"}], "type": {"key": "/type/edition"}, "subjects": ["Business & Economics / General"], "revision": 3}
+/type/edition /books/OL10917269M 3 2011-05-05T00:37:21.709723 {"publishers": ["Icon Group International, Inc."], "subtitle": "A 2004 Global Trade Perspective", "last_modified": {"type": "/type/datetime", "value": "2011-05-05T00:37:21.709723"}, "title": "The World Market for Decalcomanias", "number_of_pages": 105, "isbn_13": ["9780597899386"], "covers": [2539163], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Spiral-bound", "isbn_10": ["059789938X"], "publish_date": "February 7, 2005", "key": "/books/OL10917269M", "latest_revision": 3, "works": [{"key": "/works/OL3330475W"}], "type": {"key": "/type/edition"}, "subjects": ["Business & Economics / General"], "revision": 3}
+/type/edition /books/OL10917494M 4 2019-07-31T04:51:20.735963 {"publishers": ["Random House Children's Books (A Division of Random House Group)"], "number_of_pages": 144, "last_modified": {"type": "/type/datetime", "value": "2019-07-31T04:51:20.735963"}, "title": "Summer in Warehouse", "identifiers": {"librarything": ["4078789"]}, "isbn_13": ["9780600206934"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0600206939"], "publish_date": "July 21, 1983", "key": "/books/OL10917494M", "latest_revision": 4, "oclc_numbers": ["16593075"], "works": [{"key": "/works/OL160013W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10917868M 3 2010-04-24T18:10:30.540584 {"publishers": ["Hamlyn"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:10:30.540584"}, "title": "Everyone's Book of Ships", "identifiers": {"goodreads": ["4402227"]}, "isbn_13": ["9780600374886"], "isbn_10": ["0600374882"], "publish_date": "January 1, 1981", "key": "/books/OL10917868M", "authors": [{"key": "/authors/OL29103A"}], "latest_revision": 3, "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10918000M 5 2022-12-10T02:33:20.393047 {"publishers": ["Hamlyn"], "physical_format": "Paperback", "title": "Step by step karate skills", "number_of_pages": 127, "isbn_13": ["9780600503507"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["060050350X"], "publish_date": "1987", "key": "/books/OL10918000M", "authors": [{"key": "/authors/OL987569A"}], "oclc_numbers": ["17839521"], "works": [{"key": "/works/OL4738362W"}], "type": {"key": "/type/edition"}, "covers": [11720888], "ocaid": "stepbystepkarate0000brad", "lc_classifications": ["GV1114.3"], "source_records": ["ia:stepbystepkarate0000brad", "promise:bwb_daily_pallets_2020-07-30"], "local_id": ["urn:bwbsku:KN-518-715"], "identifiers": {"amazon": [""]}, "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T02:33:20.393047"}}
+/type/edition /books/OL10918038M 6 2020-07-23T05:55:49.268631 {"publishers": ["Reed Dump"], "number_of_pages": 300, "subtitle": "An Illustrated History of Sculpture, Painting and Architecture", "covers": [10305731], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2020-07-23T05:55:49.268631"}, "latest_revision": 6, "key": "/books/OL10918038M", "authors": [{"key": "/authors/OL1958594A"}], "ocaid": "asianartillustra0000unse", "contributions": ["Trewin Copplestone (Editor)"], "edition_name": "Rev. Ed edition", "languages": [{"key": "/languages/eng"}], "source_records": ["ia:asianartillustra0000unse"], "title": "Asian Art", "identifiers": {"goodreads": ["2850335"], "librarything": ["7193857"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780600551096"], "isbn_10": ["0600551091"], "publish_date": "June 1988", "works": [{"key": "/works/OL7002761W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL10918158M 7 2022-12-09T16:06:27.544323 {"publishers": ["Hamlyn"], "number_of_pages": 64, "classifications": {}, "title": "Cocker Spaniels", "physical_format": "Board book", "notes": {"type": "/type/text", "value": "Dog Breed Handbooks"}, "identifiers": {"librarything": ["8201575"]}, "isbn_13": ["9780600557968"], "isbn_10": ["0600557960"], "publish_date": "August 20, 1988", "key": "/books/OL10918158M", "authors": [{"key": "/authors/OL1346060A"}], "oclc_numbers": ["18627504"], "works": [{"key": "/works/OL5593056W"}], "type": {"key": "/type/edition"}, "covers": [10628388], "ocaid": "cockerspaniels0000saye", "lc_classifications": ["SF429.C55"], "source_records": ["ia:cockerspaniels0000saye", "promise:bwb_daily_pallets_2020-11-19"], "local_id": ["urn:bwbsku:KO-506-350"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T16:06:27.544323"}}
+/type/edition /books/OL10918265M 8 2022-12-08T03:54:03.717735 {"publishers": ["Hamlyn"], "number_of_pages": 80, "title": "Red Star Rising", "physical_format": "Hardcover", "identifiers": {"librarything": ["8192147"], "goodreads": ["800886"]}, "covers": [9273776], "isbn_13": ["9780600564379"], "isbn_10": ["0600564371"], "publish_date": "May 12, 1989", "key": "/books/OL10918265M", "authors": [{"key": "/authors/OL23114A"}], "type": {"key": "/type/edition"}, "works": [{"key": "/works/OL31613334W"}], "local_id": ["urn:bwbsku:O7-BZN-404"], "source_records": ["promise:bwb_daily_pallets_2021-07-26"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-08T03:54:03.717735"}}
+/type/edition /books/OL1091830M 7 2020-11-18T09:12:40.003204 {"publishers": ["Heinle & Heinle Publishers"], "identifiers": {"goodreads": ["3728445"], "librarything": ["1025758"]}, "isbn_10": ["0838449506"], "covers": [3876801], "lc_classifications": ["PC2129.E5 C64 1994"], "latest_revision": 7, "key": "/books/OL1091830M", "authors": [{"key": "/authors/OL580199A"}], "ocaid": "connaissancesetr00col_k39", "publish_places": ["Boston, Mass"], "contributions": ["Miller, Floy."], "pagination": "xvii, 317 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:127569393:658"], "title": "Connaissances et re\u0301actions", "dewey_decimal_class": ["448.2/421"], "number_of_pages": 317, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/fre"}], "lccn": ["94016128"], "subjects": ["French language -- Textbooks for foreign speakers -- English."], "publish_date": "1995", "publish_country": "mau", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T09:12:40.003204"}, "by_statement": "Charlotte Cole, Floy Miller.", "works": [{"key": "/works/OL3479155W"}], "type": {"key": "/type/edition"}, "revision": 7}
+/type/edition /books/OL10918360M 6 2022-12-07T19:41:15.278962 {"publishers": ["Hamlyn"], "number_of_pages": 208, "title": "The WORLD ATLAS GOLF COURSES", "type": {"key": "/type/edition"}, "identifiers": {"goodreads": ["563276"], "librarything": ["7649328"]}, "isbn_13": ["9780600568063"], "isbn_10": ["0600568067"], "publish_date": "June 1, 1990", "key": "/books/OL10918360M", "authors": [{"key": "/authors/OL3513651A"}], "works": [{"key": "/works/OL9500737W"}], "physical_format": "Unknown Binding", "subjects": ["Golf"], "local_id": ["urn:bwbsku:KQ-024-307"], "source_records": ["promise:bwb_daily_pallets_2022-03-17"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-07T19:41:15.278962"}}
+/type/edition /books/OL1091987M 6 2022-05-25T23:33:18.241637 {"publishers": ["G. Braziller"], "subtitle": "a novel", "isbn_10": ["0807613649"], "covers": [3876971], "local_id": ["urn:sfpl:31223040716160"], "lc_classifications": ["PS3567.U337 S65 1994", "PS3567.U337S65 1994"], "key": "/books/OL1091987M", "authors": [{"key": "/authors/OL580265A"}], "publish_places": ["New York"], "languages": [{"key": "/languages/eng"}], "pagination": "201 p. ;", "source_records": ["marc:marc_openlibraries_sanfranciscopubliclibrary/sfpl_chq_2018_12_24_run02.mrc:121273460:1364", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:127707390:599", "bwb:9780807613641"], "title": "Something in between", "dewey_decimal_class": ["813/.54"], "number_of_pages": 201, "edition_name": "1st ed.", "lccn": ["94016295"], "subjects": ["Depressions -- Fiction."], "publish_date": "1994", "publish_country": "nyu", "by_statement": "Sterling Quinlan.", "works": [{"key": "/works/OL3479403W"}], "type": {"key": "/type/edition"}, "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T23:33:18.241637"}}
+/type/edition /books/OL10919959M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "subtitle": "Workbook 1 (National Curriculum Ginn Mathematics)", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Heinemann Educational Books - Primary Division"], "number_of_pages": 24, "isbn_13": ["9780602239299"], "isbn_10": ["060223929X"], "publish_date": "August 20, 1990", "key": "/books/OL10919959M", "title": "National Curriculum Ginn Mathematics 3", "type": {"key": "/type/edition"}, "subjects": ["For National Curriculum Key Stage 2", "Mathematics"], "revision": 1}
+/type/edition /books/OL10920017M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780602243395"], "physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Ginn & Company"], "title": "Pocket Facts (Pocket Reads)", "edition_name": "2Rev Ed edition", "isbn_10": ["0602243394"], "publish_date": "July 18, 2005", "key": "/books/OL10920017M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10920076M 2 2011-04-29T04:07:42.292237 {"publishers": ["Heinemann Educational Books - Primary Division"], "physical_format": "Paperback", "subtitle": "Workbook 2", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T04:07:42.292237"}, "title": "Ginn Mathematics: Level 3", "number_of_pages": 40, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780602246266"], "isbn_10": ["0602246261"], "latest_revision": 2, "key": "/books/OL10920076M", "oclc_numbers": ["17355782"], "type": {"key": "/type/edition"}, "subjects": ["Mathematics", "For National Curriculum Key Stage 1", "For National Curriculum Key Stage 2"], "revision": 2}
+/type/edition /books/OL10920346M 2 2011-04-27T04:21:27.365517 {"publishers": ["Heinemann Educational Books - Primary Division"], "physical_format": "Paperback", "subtitle": "Junior Stages - Stage 3 (Reasons for Writing)", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T04:21:27.365517"}, "title": "Writing Skills Workbook", "number_of_pages": 48, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780602254612"], "isbn_10": ["0602254612"], "publish_date": "April 19, 1993", "key": "/books/OL10920346M", "latest_revision": 2, "oclc_numbers": ["315926748"], "type": {"key": "/type/edition"}, "subjects": ["English", "English language: specific skills"], "revision": 2}
+/type/edition /books/OL10920549M 3 2021-08-18T18:48:49.788276 {"publishers": ["Ginn & Company"], "title": "All Aboard", "number_of_pages": 12, "isbn_13": ["9780602257873"], "physical_format": "Paperback", "isbn_10": ["0602257875"], "publish_date": "January 17, 1994", "key": "/books/OL10920549M", "works": [{"key": "/works/OL574634W"}], "type": {"key": "/type/edition"}, "subjects": ["Early learning / early learning concepts", "English language reading schemes"], "covers": [11695495], "ocaid": "placeswevisit0000moon", "source_records": ["ia:placeswevisit0000moon"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-08-18T18:48:49.788276"}}
+/type/edition /books/OL1092088M 9 2021-08-19T00:22:27.167648 {"publishers": ["Oxford University Press"], "identifiers": {"goodreads": ["871059"], "librarything": ["549609"]}, "subtitle": "Thomas Jefferson and the problem of debt", "isbn_10": ["019505878X"], "subject_place": ["United States"], "covers": [3876875], "lc_classifications": ["HJ8032.A2 S55 1995", "HJ8032.A2S55 1995"], "key": "/books/OL1092088M", "authors": [{"key": "/authors/OL580310A"}], "publish_places": ["New York"], "subject_time": ["18th century."], "pagination": "viii, 377 p. ;", "source_records": ["bwb:9780195058789", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:127793336:876", "ia:principleinteres0000sloa"], "title": "Principle and interest", "dewey_decimal_class": ["336.3/4/0973"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 247-370) and index."}, "number_of_pages": 377, "languages": [{"key": "/languages/eng"}], "lccn": ["94016400"], "subjects": ["Jefferson, Thomas, 1743-1826.", "Debts, Public -- United States -- History -- 18th century."], "publish_date": "1995", "publish_country": "nyu", "by_statement": "Herbert E. Sloan.", "works": [{"key": "/works/OL3479630W"}], "type": {"key": "/type/edition"}, "ocaid": "principleinteres0000sloa", "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2021-08-19T00:22:27.167648"}}
+/type/edition /books/OL10920934M 2 2008-08-31T08:28:14.933046 {"physical_format": "Paperback", "subtitle": "Level 3 (Abacus)", "last_modified": {"type": "/type/datetime", "value": "2008-08-31T08:28:14.933046"}, "publishers": ["Heinemann Educational Books - Primary Division"], "number_of_pages": 64, "isbn_13": ["9780602264604"], "isbn_10": ["060226460X"], "publish_date": "October 1, 1996", "key": "/books/OL10920934M", "authors": [{"key": "/authors/OL883839A"}, {"key": "/authors/OL446116A"}], "title": "Ginn Mathematics Textbook 2", "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10921270M 2 2011-04-30T03:49:16.363805 {"publishers": ["Heinemann Educational Books - Primary Division"], "physical_format": "Paperback", "subtitle": "Forces (Star Science)", "last_modified": {"type": "/type/datetime", "value": "2011-04-30T03:49:16.363805"}, "title": "Star Science 1 & 2 Teachers' Notes", "number_of_pages": 24, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780602270636"], "isbn_10": ["0602270634"], "publish_date": "January 1996", "key": "/books/OL10921270M", "latest_revision": 2, "oclc_numbers": ["315874227"], "type": {"key": "/type/edition"}, "subjects": ["For National Curriculum Key Stage 1", "General science"], "revision": 2}
+/type/edition /books/OL10921871M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "subtitle": "Fifth Set", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Ginn & Company"], "number_of_pages": 32, "isbn_13": ["9780602281847"], "isbn_10": ["0602281849"], "key": "/books/OL10921871M", "title": "Reading", "type": {"key": "/type/edition"}, "subjects": ["English language: reading skills"], "revision": 1}
+/type/edition /books/OL10922244M 2 2008-08-31T08:28:14.933046 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-08-31T08:28:14.933046"}, "publishers": ["Ginn & Company"], "title": "New Abacus", "isbn_13": ["9780602289775"], "isbn_10": ["0602289777"], "publish_date": "May 20, 1999", "key": "/books/OL10922244M", "authors": [{"key": "/authors/OL883839A"}, {"key": "/authors/OL446116A"}], "type": {"key": "/type/edition"}, "subjects": ["Mathematics"], "revision": 2}
+/type/edition /books/OL10922360M 3 2011-04-29T19:08:57.189849 {"publishers": ["Ginn & Company"], "last_modified": {"type": "/type/datetime", "value": "2011-04-29T19:08:57.189849"}, "title": "New Abacus", "number_of_pages": 32, "isbn_13": ["9780602291730"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0602291739"], "publish_date": "April 20, 1999", "key": "/books/OL10922360M", "authors": [{"key": "/authors/OL883839A"}, {"key": "/authors/OL446116A"}], "latest_revision": 3, "oclc_numbers": ["173076352"], "type": {"key": "/type/edition"}, "subjects": ["Mathematics"], "revision": 3}
+/type/edition /books/OL10922582M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "subtitle": "Plum Magic (All Aboard)", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Ginn & Company"], "title": "All Aboard Stage 6", "isbn_13": ["9780602295516"], "isbn_10": ["0602295513"], "publish_date": "February 1, 1999", "key": "/books/OL10922582M", "type": {"key": "/type/edition"}, "subjects": ["English language reading schemes", "Fiction"], "revision": 1}
+/type/edition /books/OL10922728M 2 2008-08-31T08:28:14.933046 {"physical_format": "Paperback", "subtitle": "Games Pack (New Abacus)", "last_modified": {"type": "/type/datetime", "value": "2008-08-31T08:28:14.933046"}, "publishers": ["Heinemann Educational Books - Primary Division"], "title": "New Abacus 6", "isbn_13": ["9780602298609"], "isbn_10": ["0602298601"], "publish_date": "February 22, 2001", "key": "/books/OL10922728M", "authors": [{"key": "/authors/OL883839A"}, {"key": "/authors/OL446116A"}], "type": {"key": "/type/edition"}, "subjects": ["Mathematics"], "revision": 2}
+/type/edition /books/OL10923216M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "subtitle": "Infant Non-Fiction Easy Buy Pack (All Aboard)", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Ginn & Company"], "title": "All Aboard", "isbn_13": ["9780602310141"], "isbn_10": ["0602310148"], "publish_date": "January 20, 2003", "key": "/books/OL10923216M", "type": {"key": "/type/edition"}, "subjects": ["English language reading schemes"], "revision": 1}
+/type/edition /books/OL10923706M 1 2008-04-30T09:38:13.731961 {"physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Hamlyn young books"], "title": "One Smiling Grandma", "isbn_13": ["9780603512520"], "isbn_10": ["0603512526"], "publish_date": "September 14, 1992", "key": "/books/OL10923706M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10923747M 1 2008-04-30T09:38:13.731961 {"physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Hamlyn young books"], "title": "Childs Bk of Animal Families", "isbn_13": ["9780603513336"], "isbn_10": ["0603513336"], "publish_date": "July 31, 1992", "key": "/books/OL10923747M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10924049M 3 2022-11-15T09:31:22.418768 {"publishers": ["Hamlyn young books"], "key": "/books/OL10924049M", "title": "SAM - Norman in Trouble Tape", "isbn_13": ["9780603520167"], "physical_format": "Hardcover", "isbn_10": ["0603520162"], "publish_date": "October 10, 1994", "authors": [{"key": "/authors/OL2802446A"}], "works": [{"key": "/works/OL8403947W"}], "type": {"key": "/type/edition"}, "source_records": ["amazon:0603520162"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-15T09:31:22.418768"}}
+/type/edition /books/OL1092431M 7 2020-11-18T09:18:54.937984 {"publishers": ["University Press of America"], "number_of_pages": 140, "subtitle": "Kurozumi Munetada, founder of Kurozumikyo\u0304", "isbn_10": ["081919574X", "0819195758"], "lc_classifications": ["BL2222.K8892 K88613 1994", "BL2222.K8892K88613"], "latest_revision": 7, "key": "/books/OL1092431M", "authors": [{"key": "/authors/OL580426A"}], "publish_places": ["Lanham, Md"], "contributions": ["Stoesz, Willis."], "pagination": "140 p. :", "source_records": ["bwb:9780819195746", "bwb:9780819195753", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:128098028:1021"], "title": "The opening way", "dewey_decimal_class": ["299/.5619", "B"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. [133]-140) and indexes."}, "identifiers": {"goodreads": ["3385807"]}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["94016763"], "subjects": ["Kurozumi, Munetada, 1780-1850.", "Kurozumikyo\u0304 (Religious organization) -- Biography."], "publish_date": "1994", "publish_country": "mdu", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T09:18:54.937984"}, "by_statement": "Kurozumi Tadaaki ; translated by Julie Iezzi and Harold Wright with assistance from Kamiya Sumio ; edited by Willis Stoesz.", "work_title": ["Kyo\u0304soden."], "works": [{"key": "/works/OL3480154W"}], "type": {"key": "/type/edition"}, "revision": 7}
+/type/edition /books/OL10924325M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["William Heinemann Ltd"], "title": "Read and Colour Postman Pat", "isbn_13": ["9780603554797"], "isbn_10": ["0603554792"], "publish_date": "July 11, 1994", "key": "/books/OL10924325M", "type": {"key": "/type/edition"}, "subjects": ["Colouring & painting", "Fiction"], "revision": 1}
+/type/edition /books/OL10924637M 2 2009-12-15T00:56:06.442599 {"publishers": ["Demco Media"], "weight": "6.4 ounces", "physical_format": "Turtleback", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:56:06.442599"}, "latest_revision": 2, "key": "/books/OL10924637M", "authors": [{"key": "/authors/OL233100A"}], "subjects": ["General", "Children's 9-12", "Fiction", "Friendship", "Children: Grades 4-6"], "languages": [{"key": "/languages/eng"}], "title": "Soup for President (Dell Yearling Book)", "number_of_pages": 107, "isbn_13": ["9780606030731"], "isbn_10": ["0606030735"], "publish_date": "October 1986", "works": [{"key": "/works/OL1942379W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "7.8 x 5 x 0.5 inches", "revision": 2}
+/type/edition /books/OL10924645M 5 2022-12-07T01:43:01.569970 {"publishers": ["Yearling Books"], "weight": "8 ounces", "title": "The Great Brain Reforms", "identifiers": {"librarything": ["70048"]}, "isbn_13": ["9780606034555"], "physical_format": "Turtleback", "isbn_10": ["0606034552"], "publish_date": "1983", "physical_dimensions": "8 x 5.2 x 0.8 inches", "key": "/books/OL10924645M", "authors": [{"key": "/authors/OL580649A"}], "works": [{"key": "/works/OL7518390W"}], "type": {"key": "/type/edition"}, "first_sentence": {"type": "/type/text", "value": "MY BROTHER TOM and eldest brother Sweyn arrived home for summer vacation on Sunday, June 5, 1898."}, "local_id": ["urn:bwbsku:P7-ASN-444"], "source_records": ["promise:bwb_daily_pallets_2022-03-17"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-07T01:43:01.569970"}}
+/type/edition /books/OL1092477M 5 2020-11-18T09:19:24.586474 {"publishers": ["Pleasant Co."], "subtitle": "a play about Kirsten for you and your friends to perform.", "isbn_10": ["1562471139"], "series": ["The American girls collection."], "covers": [795253], "lc_classifications": ["PN3157 .T747 1994"], "latest_revision": 5, "key": "/books/OL1092477M", "authors": [{"key": "/authors/OL28717A"}], "publish_places": ["Middleton, WI"], "contributions": ["Shaw, Janet Beeler, 1937-", "Tripp, Valerie, 1951-"], "languages": [{"key": "/languages/eng"}], "pagination": "1 portfolio ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:128138709:1382"], "title": "Kirsten's theater kit", "dewey_decimal_class": ["792.9/2"], "notes": {"type": "/type/text", "value": "\"Ages 7 and up\"--Cover p. [2] envelope.\nTitle from envelope.\nEnvelope contains a Director's guide (15 p.) and four copies of the play Home is where the heart is, (32 p.) adapted by Valerie Tripp from Meet Kirsten, an American girl, by Janet Shaw."}, "identifiers": {"goodreads": ["1295444"], "librarything": ["1000536"]}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "edition_name": "1st ed.", "lccn": ["94016811"], "subjects": ["Children's theater.", "Theater -- Production and direction.", "Children's plays, American.", "Emigration and immigration -- Drama.", "Swedish Americans -- Drama.", "Plays."], "publish_date": "1994", "publish_country": "wiu", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T09:19:24.586474"}, "works": [{"key": "/works/OL23535156W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10924902M 7 2010-08-19T06:28:11.827434 {"publishers": ["Turtleback Books Distributed by Demco Media"], "weight": "15.2 ounces", "physical_format": "Turtleback", "last_modified": {"type": "/type/datetime", "value": "2010-08-19T06:28:11.827434"}, "latest_revision": 7, "key": "/books/OL10924902M", "authors": [{"key": "/authors/OL21001A"}], "contributions": ["Peter Brooks (Editor)"], "subjects": ["Classics", "Literature - Classics / Criticism", "Literature: Classics"], "isbn_13": ["9780606192019"], "source_records": ["amazon:0606192018"], "title": "Wings of the Dove", "identifiers": {"goodreads": ["1673372"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0606192018"], "publish_date": "October 2000", "works": [{"key": "/works/OL276397W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "7.5 x 5 x 1.2 inches", "revision": 7}
+/type/edition /books/OL10925039M 5 2011-01-09T20:58:40.742763 {"publishers": ["Turtleback Books Distributed by Demco Media"], "weight": "7.2 ounces", "first_sentence": {"type": "/type/text", "value": "Agapanthus Hum had tunes inside her, tunes for running and whirling, tunes for dancing in the wind, tunes that bubbled toothpaste and gurgled lemonade."}, "covers": [5080567], "physical_format": "Turtleback", "last_modified": {"type": "/type/datetime", "value": "2011-01-09T20:58:40.742763"}, "latest_revision": 5, "key": "/books/OL10925039M", "authors": [{"key": "/authors/OL4753461A"}], "contributions": ["Jennifer Plecas (Illustrator)"], "subjects": ["Juvenile Fiction", "Fiction - General", "Children: Kindergarten", "General", "Girls & Women", "Sports & Recreation - General", "Acrobats", "Eyeglasses", "Fiction"], "isbn_13": ["9780606205351"], "classifications": {}, "title": "Agapanthus Hum and the Eyeglasses", "notes": {"type": "/type/text", "value": "Puffin Easy-to-Read"}, "identifiers": {}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0606205357"], "publish_date": "February 2002", "works": [{"key": "/works/OL15023630W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.2 x 6.2 x 0.2 inches", "revision": 5}
+/type/edition /books/OL10926062M 2 2010-04-13T06:19:53.102804 {"physical_format": "Calendar", "languages": [{"key": "/languages/eng"}], "weight": "9.6 ounces", "publishers": ["Browntrout Pubs (Cal)"], "title": "Astronomy 2002 Wall Calendar", "covers": [2609618], "edition_name": "Wall edition", "isbn_13": ["9780763143367"], "isbn_10": ["0763143367"], "publish_date": "June 1, 2001", "key": "/books/OL10926062M", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:19:53.102804"}, "latest_revision": 2, "subjects": ["Astronomy, Space & Time", "Non-Classifiable", "Calendar"], "type": {"key": "/type/edition"}, "physical_dimensions": "11.8 x 11.5 x 0.2 inches", "revision": 2}
+/type/edition /books/OL10926147M 2 2010-04-13T06:19:53.102804 {"physical_format": "Calendar", "languages": [{"key": "/languages/eng"}], "weight": "9.3 ounces", "publishers": ["Browntrout Pubs (Cal)"], "title": "Extreme Sports 2003 Calendar", "covers": [2609797], "edition_name": "Wall edition", "isbn_13": ["9780763149147"], "isbn_10": ["0763149144"], "publish_date": "December 2002", "key": "/books/OL10926147M", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:19:53.102804"}, "latest_revision": 2, "subjects": ["Miscellaneous Items", "Non-Classifiable", "Calendar"], "type": {"key": "/type/edition"}, "physical_dimensions": "12.2 x 12 x 0.2 inches", "revision": 2}
+/type/edition /books/OL10926364M 2 2010-04-13T06:19:53.102804 {"physical_format": "Calendar", "languages": [{"key": "/languages/eng"}], "publishers": ["Browntrout Publishers"], "isbn_10": ["0763160830"], "contributions": ["XIV Erik (Photographer)", "Kirk Lee Aeder (Photographer)"], "number_of_pages": 14, "covers": [2610560], "edition_name": "Wall edition", "isbn_13": ["9780763160838"], "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:19:53.102804"}, "publish_date": "May 2003", "latest_revision": 2, "key": "/books/OL10926364M", "title": "Shortboards 2004 Calendar", "subjects": ["Miscellaneous Items", "General", "Non-Classifiable", "Calendars - Sports & Recreation", "Calendar"], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10926650M 2 2010-04-13T06:19:53.102804 {"physical_format": "Calendar", "languages": [{"key": "/languages/eng"}], "weight": "1.6 ounces", "publishers": ["Browntrout Publishers"], "number_of_pages": 12, "covers": [2610846], "edition_name": "Wall edition", "isbn_13": ["9780763163730"], "isbn_10": ["0763163732"], "publish_date": "May 2003", "latest_revision": 2, "key": "/books/OL10926650M", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:19:53.102804"}, "title": "Siberian Husky Puppies 2004 Mini Calendar", "subjects": ["Miscellaneous Items", "Dogs - Breeds", "Non-Classifiable", "Calendars - Animals", "Calendar"], "type": {"key": "/type/edition"}, "physical_dimensions": "6 x 6 x 0.2 inches", "revision": 2}
+/type/edition /books/OL10926675M 2 2010-04-13T06:19:53.102804 {"physical_format": "Calendar", "publishers": ["Browntrout Publishers"], "isbn_10": ["0763163988"], "number_of_pages": 12, "isbn_13": ["9780763163983"], "covers": [2610871], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:19:53.102804"}, "publish_date": "May 2003", "latest_revision": 2, "key": "/books/OL10926675M", "title": "Horses Slimline 2004 Calendar", "subjects": ["Miscellaneous Items", "Non-Classifiable", "Calendar"], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10926905M 2 2010-04-13T06:19:53.102804 {"physical_format": "Calendar", "languages": [{"key": "/languages/fre"}], "weight": "9.6 ounces", "publishers": ["Browntrout Publishers"], "number_of_pages": 14, "covers": [2611101], "edition_name": "Bilingual edition", "isbn_13": ["9780763167219"], "isbn_10": ["0763167215"], "publish_date": "May 2003", "latest_revision": 2, "key": "/books/OL10926905M", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:19:53.102804"}, "title": "Chevaux/Horses 2004 Calendar", "subjects": ["Miscellaneous Items", "Non-Classifiable", "Calendar"], "type": {"key": "/type/edition"}, "physical_dimensions": "12.1 x 12.1 x 0.1 inches", "revision": 2}
+/type/edition /books/OL10927076M 6 2013-03-18T14:10:41.914919 {"publishers": ["Browntrout Publishers"], "weight": "12.8 ounces", "covers": [2611269], "physical_format": "Calendar", "last_modified": {"type": "/type/datetime", "value": "2013-03-18T14:10:41.914919"}, "latest_revision": 6, "key": "/books/OL10927076M", "authors": [{"key": "/authors/OL3241871A"}], "subjects": ["Non-Classifiable", "Calendar"], "edition_name": "2005 Wall Calendar edition", "languages": [{"key": "/languages/eng"}], "title": "America 2005 Weekly Engagement Calendar", "number_of_pages": 54, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780763171544"], "isbn_10": ["0763171549"], "publish_date": "June 15, 2004", "works": [{"key": "/works/OL8784019W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "7.6 x 6.8 x 0.6 inches", "revision": 6}
+/type/edition /books/OL1092725M 14 2022-12-04T10:46:32.511244 {"publishers": ["University of Chicago Press"], "identifiers": {"librarything": ["2283201"], "goodreads": ["1715528", "1807886"]}, "isbn_10": ["0226885666", "0226885674"], "series": ["Chicago lectures in mathematics series", "Chicago lectures in mathematics."], "covers": [3876816, 1148916], "lc_classifications": ["QA613.2 .W45 1994", "QA613.2.W45 1994"], "key": "/books/OL1092725M", "authors": [{"key": "/authors/OL580534A"}], "ocaid": "topologicalclass00wein", "publish_places": ["Chicago"], "lccn": ["94017071"], "uri_descriptions": ["Publisher description", "Table of contents"], "pagination": "xiii, 283 p. :", "source_records": ["ia:topologicalclass00wein", "ia:topologicalclass00wein_172", "bwb:9780226885667", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:128354472:1045", "bwb:9780226885674", "ia:topologicalclass0000wein", "promise:bwb_daily_pallets_2022-09-12"], "title": "The topological classification of stratified spaces", "url": ["http://www.loc.gov/catdir/description/uchi051/94017071.html", "http://www.loc.gov/catdir/toc/uchi051/94017071.html"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. [265]-278) and index."}, "number_of_pages": 283, "languages": [{"key": "/languages/eng"}], "dewey_decimal_class": ["514/.32"], "subjects": ["Topological manifolds.", "Topological spaces."], "publish_date": "1994", "publish_country": "ilu", "by_statement": "Shmuel Weinberger.", "works": [{"key": "/works/OL3480667W"}], "type": {"key": "/type/edition"}, "uris": ["http://www.loc.gov/catdir/description/uchi051/94017071.html", "http://www.loc.gov/catdir/toc/uchi051/94017071.html"], "local_id": ["urn:bwbsku:O8-DDD-966"], "latest_revision": 14, "revision": 14, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T10:46:32.511244"}}
+/type/edition /books/OL1092749M 6 2020-11-18T09:22:08.410021 {"other_titles": ["Atlas of the developing rat brain."], "publishers": ["Academic Press"], "isbn_10": ["0125476108"], "pagination": "1 v. (unpaged) :", "covers": [1099747], "lc_classifications": ["QL737.R666 P39 1994"], "latest_revision": 6, "key": "/books/OL1092749M", "authors": [{"key": "/authors/OL36024A"}], "publish_places": ["San Diego"], "contributions": ["Ashwell, Ken W. S.", "To\u0308rk, Istvan."], "lccn": ["94017100"], "uri_descriptions": ["Publisher description", "Table of contents"], "edition_name": "2nd ed.", "genres": ["Atlases."], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:128377084:1160"], "title": "Atlas of the developing rat nervous system", "url": ["http://www.loc.gov/catdir/description/els032/94017100.html", "http://www.loc.gov/catdir/toc/els032/94017100.html"], "notes": {"type": "/type/text", "value": "Includes bibliographical references and index.\nRev. ed. of: Atlas of the developing rat brain / George Paxinos ... [et al.]. c1991."}, "identifiers": {"goodreads": ["4901355"]}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "dewey_decimal_class": ["599/.033"], "subjects": ["Rats -- Nervous system -- Growth -- Atlases.", "Rats -- Embryology -- Atlases."], "publish_date": "1994", "publish_country": "cau", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T09:22:08.410021"}, "by_statement": "George Paxinos, Ken W.S. Ashwell, Istvan To\u0308rk.", "works": [{"key": "/works/OL517188W"}], "type": {"key": "/type/edition"}, "uris": ["http://www.loc.gov/catdir/description/els032/94017100.html", "http://www.loc.gov/catdir/toc/els032/94017100.html"], "revision": 6}
+/type/edition /books/OL10927651M 6 2013-03-18T14:10:41.914919 {"publishers": ["Browntrout Publishers"], "weight": "4.8 ounces", "covers": [2612112], "physical_format": "Calendar", "last_modified": {"type": "/type/datetime", "value": "2013-03-18T14:10:41.914919"}, "latest_revision": 6, "key": "/books/OL10927651M", "authors": [{"key": "/authors/OL3241871A"}], "subjects": ["Non-Classifiable", "Blank Books/Journals", "Calendar"], "edition_name": "2005 Wall Calendar edition", "languages": [{"key": "/languages/eng"}], "title": "Astrology Birthday 2005 Slimline Calendar", "number_of_pages": 14, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780763183646"], "isbn_10": ["0763183644"], "publish_date": "June 15, 2004", "works": [{"key": "/works/OL8784038W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "16.4 x 5.5 x 0.3 inches", "revision": 6}
+/type/edition /books/OL1092782M 8 2020-11-18T09:22:29.723106 {"publishers": ["G.K. Hall", "Chivers Press"], "number_of_pages": 619, "subject_place": ["Atlanta (Ga.)"], "pagination": "619 p. (large print) ;", "covers": [1549951], "local_id": ["urn:sfpl:31223035895656"], "lc_classifications": ["PS3569.I28 D69 1994b"], "latest_revision": 8, "key": "/books/OL1092782M", "authors": [{"key": "/authors/OL217125A"}], "publish_places": ["Thorndike, Me", "Bath, Avon, England"], "subjects": ["Periodicals -- Publishing -- Fiction", "Women journalists -- Fiction", "Young women -- Fiction", "Large type books", "Atlanta (Ga.) -- Fiction"], "genres": ["Fiction."], "source_records": ["marc:marc_records_scriblio_net/part24.dat:53918315:893", "marc:marc_loc_updates/v36.i04.records.utf8:8853313:893", "marc:marc_openlibraries_sanfranciscopubliclibrary/sfpl_chq_2018_12_24_run02.mrc:91032676:1850", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:128408353:893"], "title": "Downtown", "dewey_decimal_class": ["813/.54"], "identifiers": {"goodreads": ["2732435", "2732428"], "librarything": ["21755"]}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["94017134"], "isbn_10": ["0816174105", "0816174113"], "publish_date": "1994", "publish_country": "meu", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T09:22:29.723106"}, "by_statement": "Anne Rivers Siddons.", "works": [{"key": "/works/OL1810252W"}], "type": {"key": "/type/edition"}, "revision": 8}
+/type/edition /books/OL10928452M 5 2011-04-22T20:22:46.580899 {"publishers": ["Rigby"], "number_of_pages": 16, "last_modified": {"type": "/type/datetime", "value": "2011-04-22T20:22:46.580899"}, "title": "Strk C Cat's Birthday Is (Sound Tracks Musical Phonics)", "type": {"key": "/type/edition"}, "identifiers": {"librarything": ["8324282"], "goodreads": ["2485829"]}, "isbn_13": ["9780763521844"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0763521841"], "publish_date": "December 1997", "key": "/books/OL10928452M", "authors": [{"key": "/authors/OL32265A"}], "latest_revision": 5, "oclc_numbers": ["42844031"], "physical_format": "Paperback", "subjects": ["General", "Textbooks"], "revision": 5}
+/type/edition /books/OL10929163M 7 2011-04-28T05:17:22.138375 {"publishers": ["Rigby"], "number_of_pages": 16, "physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2011-04-28T05:17:22.138375"}, "latest_revision": 7, "key": "/books/OL10929163M", "authors": [{"key": "/authors/OL2623771A"}], "subjects": ["General", "Elephants", "Fiction", "Readers (Elementary)", "Textbooks"], "isbn_13": ["9780763560270"], "classifications": {}, "title": "Pmp Yel 8 Jumbo Is", "notes": {"type": "/type/text", "value": "PMS"}, "identifiers": {"goodreads": ["6915208"], "librarything": ["3980015"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0763560278"], "publish_date": "August 1999", "oclc_numbers": ["48252279"], "works": [{"key": "/works/OL15064163W"}], "type": {"key": "/type/edition"}, "revision": 7}
+/type/edition /books/OL10929216M 5 2022-10-28T07:11:19.569143 {"publishers": ["Rigby"], "number_of_pages": 16, "physical_format": "Unknown Binding", "key": "/books/OL10929216M", "authors": [{"key": "/authors/OL2803307A"}], "subjects": ["General", "Juvenile literature", "Plants", "Readers (Primary)", "Textbooks"], "isbn_13": ["9780763560911"], "classifications": {}, "title": "Rlg1-7 N/F My Plant Is", "notes": {"type": "/type/text", "value": "Rigby Literacy"}, "identifiers": {"librarything": ["7764043"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["076356091X"], "publish_date": "January 2000", "works": [{"key": "/works/OL8406047W"}], "type": {"key": "/type/edition"}, "source_records": ["amazon:076356091X"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-28T07:11:19.569143"}}
+/type/edition /books/OL1092922M 8 2022-12-04T23:25:10.607393 {"publishers": ["Singular Pub. Group"], "number_of_pages": 242, "isbn_10": ["1565930681"], "series": ["Coping with aging series"], "covers": [9781230], "lc_classifications": ["RC866.D43 K54 1994"], "key": "/books/OL1092922M", "authors": [{"key": "/authors/OL580604A"}], "ocaid": "copingwithbowelb00king", "publish_places": ["San Diego, Calif"], "contributions": ["Harke, Judy."], "pagination": "xii, 242 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:128532312:790", "ia:copingwithbowelb0000king", "promise:bwb_daily_pallets_2022-07-11"], "title": "Coping with bowel and bladder problems", "dewey_decimal_class": ["618.97/6342"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. [233]-236) and index."}, "identifiers": {"librarything": ["3802821"]}, "languages": [{"key": "/languages/eng"}], "lccn": ["94017284"], "subjects": ["Fecal incontinence in old age.", "Urinary incontinence in old age."], "publish_date": "1994", "publish_country": "cau", "by_statement": "Barbara Doherty King, Judy Harke.", "works": [{"key": "/works/OL3480984W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:KR-031-203"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T23:25:10.607393"}}
+/type/edition /books/OL10929496M 3 2011-04-29T02:39:19.985320 {"publishers": ["Rigby"], "physical_format": "Unknown Binding", "subtitle": "Teacher's resource book", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T02:39:19.985320"}, "title": "Sails literacy series", "number_of_pages": 59, "isbn_13": ["9780763570064"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0763570060"], "publish_date": "1999", "key": "/books/OL10929496M", "authors": [{"key": "/authors/OL2879967A"}], "latest_revision": 3, "oclc_numbers": ["46964900"], "works": [{"key": "/works/OL8579435W"}], "type": {"key": "/type/edition"}, "subjects": ["Language experience approach", "Language experience approach in education", "Reading (Elementary)"], "revision": 3}
+/type/edition /books/OL10929537M 6 2012-06-02T01:29:30.531223 {"publishers": ["Rigby"], "number_of_pages": 16, "weight": "1.3 ounces", "series": ["Rigby PM Benchmark Collection Level 4"], "covers": [2613124], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2012-06-02T01:29:30.531223"}, "latest_revision": 6, "key": "/books/OL10929537M", "authors": [{"key": "/authors/OL1205597A"}], "contributions": ["Ben Spiby (Illustrator)"], "subjects": ["General", "Children's Baby/PS - Animals/Pets"], "isbn_13": ["9780763572587"], "classifications": {}, "title": "Little Cat Is Hungry", "identifiers": {"goodreads": ["450971"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0763572586"], "publish_date": "January 2000", "works": [{"key": "/works/OL5303609W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.2 x 6.5 x 0.1 inches", "revision": 6}
+/type/edition /books/OL10929725M 4 2011-03-01T05:24:56.527190 {"publishers": ["Rigby"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-03-01T05:24:56.527190"}, "latest_revision": 4, "key": "/books/OL10929725M", "authors": [{"key": "/authors/OL2854730A"}], "contributions": ["Steck-Vaughn Company (Other Contributor)"], "subjects": ["Textbooks"], "isbn_13": ["9780763584726"], "classifications": {}, "title": "Dw2 Rd Red Art Around Wrld", "notes": {"type": "/type/text", "value": "Discovery World\r\n6/Pk"}, "identifiers": {}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["076358472X"], "publish_date": "February 1998", "works": [{"key": "/works/OL8531423W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10929823M 10 2022-11-19T02:51:43.189789 {"publishers": ["Candlewick"], "number_of_pages": 56, "subtitle": "An Aesop's Fable Revisited", "isbn_10": ["0763630217"], "covers": [2613162], "physical_format": "Hardcover", "key": "/books/OL10929823M", "authors": [{"key": "/authors/OL241042A"}], "ocaid": "grasshopperssong0000giov", "contributions": ["Chris Raschka (Illustrator)"], "subjects": ["Performing Arts - General", "Juvenile Fiction / Performing Arts", "Art (painting sculpture artists architecture etc.)", "Legends, Myths, & Fables - General", "Juvenile Fiction", "Children's Books - Young Adult Fiction", "Ants", "Fiction", "Grasshoppers", "Trials", "Children: Kindergarten"], "isbn_13": ["9780763630218"], "source_records": ["marc:marc_openlibraries_sanfranciscopubliclibrary/sfpl_chq_2018_12_24_run03.mrc:310127130:2416", "ia:grasshopperssong0000giov", "marc:marc_loc_2016/BooksAll.2016.part33.utf8:153234531:1314", "bwb:9780763630218"], "title": "The Grasshopper's Song", "identifiers": {"goodreads": ["1787258"], "librarything": ["3960449"]}, "languages": [{"key": "/languages/eng"}], "local_id": ["urn:sfpl:31223089316971", "urn:sfpl:31223089317144"], "publish_date": "May 13, 2008", "works": [{"key": "/works/OL2001530W"}], "type": {"key": "/type/edition"}, "lccn": ["2006051849"], "lc_classifications": ["PZ7.G43923 Jim 2008", "PZ7.G43923Jim 2007"], "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T02:51:43.189789"}}
+/type/edition /books/OL10930206M 9 2020-12-17T13:06:32.043501 {"publishers": ["Jones & Bartlett Publishers"], "number_of_pages": 288, "weight": "7 ounces", "covers": [2613345], "physical_format": "Paperback", "lc_classifications": ["", "RC280.L8 H32 2004"], "key": "/books/OL10930206M", "authors": [{"key": "/authors/OL2844183A"}], "subjects": ["Nursing", "Reference, Information and Interdisciplinary Subjects", "Medical", "Medical / Nursing", "Nursing - Critical & Intensive care", "Oncology", "Pulmonary & Thoracic Medicine", "Medical / Nursing / General", "Nursing - General"], "edition_name": "1 edition", "languages": [{"key": "/languages/eng"}], "source_records": ["bwb:9780763724214", "marc:marc_loc_2016/BooksAll.2016.part34.utf8:178041342:1110"], "title": "Pocket Guide to Lung Cancer (Jones and Bartlett Series in Oncology)", "identifiers": {"goodreads": ["5250817"]}, "isbn_13": ["9780763724214"], "isbn_10": ["0763724211"], "publish_date": "December 2003", "oclc_numbers": ["54492539"], "works": [{"key": "/works/OL8505640W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "6.6 x 4.9 x 0.5 inches", "lccn": ["2007279542"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-17T13:06:32.043501"}}
+/type/edition /books/OL10930275M 9 2020-12-11T03:03:04.216352 {"publishers": ["Jones & Bartlett Publishers"], "number_of_pages": 218, "weight": "6.9 ounces", "covers": [2613363], "physical_format": "Paperback", "lc_classifications": ["RC262.P615 2004", "RC262 .P615 2004"], "key": "/books/OL10930275M", "authors": [{"key": "/authors/OL2815018A"}], "subjects": ["Coping with illness", "Oncology", "Medical", "Medical / Nursing", "Nursing - Oncology & Cancer", "Medical / Nursing / General", "Nursing - General", "Reference", "Cancer", "Complications", "Fatigue", "Handbooks", "Neoplasms"], "edition_name": "1 edition", "languages": [{"key": "/languages/eng"}], "source_records": ["bwb:9780763733599", "marc:marc_loc_2016/BooksAll.2016.part32.utf8:99944063:882"], "title": "Pocket Guide to Managing Cancer Fatigue (Jones and Bartlett Series in Oncology)", "identifiers": {"goodreads": ["1397827"]}, "isbn_13": ["9780763733599"], "isbn_10": ["0763733598"], "publish_date": "March 18, 2004", "oclc_numbers": ["55080489"], "works": [{"key": "/works/OL8443268W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "7.1 x 4.4 x 0.5 inches", "lccn": ["2004558292"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-11T03:03:04.216352"}}
+/type/edition /books/OL10930960M 13 2022-12-04T18:53:45.984866 {"publishers": ["Barrons Educational Series"], "number_of_pages": 32, "subtitle": "A First Look at...Asthma (A First Look at...Series)", "covers": [2613752], "physical_format": "Paperback", "key": "/books/OL10930960M", "authors": [{"key": "/authors/OL2733273A"}], "contributions": ["Leslie Harker (Illustrator)"], "subjects": ["Health & Daily Living - Diseases", "Juvenile Nonfiction / Health / Diseases", "Juvenile Nonfiction", "Children: Kindergarten"], "isbn_13": ["9780764138980"], "source_records": ["amazon:0764138987", "marc:marc_loc_updates/v36.i39.records.utf8:6789950:948", "marc:marc_loc_updates/v36.i41.records.utf8:5539411:979", "marc:marc_loc_updates/v36.i42.records.utf8:17506740:1082", "marc:marc_loc_updates/v37.i10.records.utf8:7467614:1082", "marc:marc_loc_2016/BooksAll.2016.part35.utf8:91708956:1082", "promise:bwb_daily_pallets_2022-08-13"], "title": "Why Is It So Hard to Breathe?", "identifiers": {"librarything": ["7710850"], "goodreads": ["7163393"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0764138987"], "publish_date": "June 1, 2008", "oclc_numbers": ["172979363"], "works": [{"key": "/works/OL8215389W"}], "type": {"key": "/type/edition"}, "lccn": ["2007943054"], "lc_classifications": ["RJ436.A8 T46 2008"], "local_id": ["urn:bwbsku:O8-CDP-882"], "latest_revision": 13, "revision": 13, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T18:53:45.984866"}}
+/type/edition /books/OL10931009M 8 2012-07-07T06:56:55.189102 {"publishers": ["Barrons Juveniles"], "number_of_pages": 63, "weight": "7.2 ounces", "series": ["Megascope Series"], "covers": [5080933], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2012-07-07T06:56:55.189102"}, "latest_revision": 8, "key": "/books/OL10931009M", "authors": [{"key": "/authors/OL3112465A"}, {"key": "/authors/OL1074639A"}], "subjects": ["General", "History - Medieval", "Children's 9-12", "Civilization, Medieval", "Juvenile literature", "Medieval civilization", "Children: Grades 3-4"], "isbn_13": ["9780764150944"], "classifications": {}, "title": "Life in the Middle Ages", "identifiers": {"goodreads": ["4807413"], "librarything": ["3158686"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0764150944"], "publish_date": "April 1998", "oclc_numbers": ["39350057"], "works": [{"key": "/works/OL15020625W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "7.8 x 5.5 x 0.2 inches", "revision": 8}
+/type/edition /books/OL10931294M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Barron's Educational Series"], "title": "Last Straw Strategies", "isbn_13": ["9780764178092"], "isbn_10": ["0764178091"], "publish_date": "May 2004", "key": "/books/OL10931294M", "type": {"key": "/type/edition"}, "subjects": ["Assortments not to be sold separately"], "physical_dimensions": "7.2 x 5.3 x 0.5 inches", "revision": 1}
+/type/edition /books/OL10931494M 5 2022-12-05T09:56:27.565712 {"publishers": ["Bethany House Publishers"], "languages": [{"key": "/languages/eng"}], "physical_format": "Paperback", "subtitle": "Volumes 7-12", "weight": "1 pounds", "title": "Three Cousins Detective Pack", "isbn_10": ["0764281593"], "identifiers": {"goodreads": ["664659"]}, "isbn_13": ["9780764281594"], "covers": [2614134], "edition_name": "Boxed edition", "key": "/books/OL10931494M", "authors": [{"key": "/authors/OL32105A"}], "publish_date": "November 2000", "type": {"key": "/type/edition"}, "subjects": ["Mysteries, Espionage, & Detective Stories", "Readers - Beginner", "Religious - Christian", "Juvenile Fiction", "Children's 9-12 - Fiction - Mysteries / Detective", "Children: Grades 4-6"], "physical_dimensions": "7.8 x 5.4 x 1.7 inches", "works": [{"key": "/works/OL31327421W"}], "local_id": ["urn:bwbsku:W7-BZE-103"], "source_records": ["promise:bwb_daily_pallets_2022-05-06"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-05T09:56:27.565712"}}
+/type/edition /books/OL10931533M 3 2010-04-24T18:11:03.046166 {"publishers": ["Bethany House Publishers"], "languages": [{"key": "/languages/eng"}], "key": "/books/OL10931533M", "title": "Happy Easter God Prepack", "type": {"key": "/type/edition"}, "identifiers": {"goodreads": ["2223937"]}, "isbn_13": ["9780764287244"], "physical_format": "Hardcover", "isbn_10": ["0764287249"], "publish_date": "February 2001", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:11:03.046166"}, "authors": [{"key": "/authors/OL32105A"}], "latest_revision": 3, "contributions": ["Jim Lewis (Illustrator)"], "subjects": ["Promotional Items"], "revision": 3}
+/type/edition /books/OL10931591M 4 2010-04-24T18:11:03.046166 {"publishers": ["Bethany House Publishers"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:11:03.046166"}, "title": "Sharing Your Faith with a Hindu Prepack", "identifiers": {"goodreads": ["5145021"]}, "isbn_13": ["9780764289149"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0764289144"], "publish_date": "August 2002", "key": "/books/OL10931591M", "authors": [{"key": "/authors/OL2845355A"}], "latest_revision": 4, "works": [{"key": "/works/OL8507363W"}], "type": {"key": "/type/edition"}, "subjects": ["Christian Ministry - Evangelism - Personal Witnessing", "Religion - World Religions"], "revision": 4}
+/type/edition /books/OL1093168M 17 2022-11-15T15:08:45.993339 {"publishers": ["Island Press"], "number_of_pages": 213, "subtitle": "on education, environment, and the human prospect", "ia_box_id": ["IA101308"], "links": [{"url": "http://www.loc.gov/catdir/enhancements/fy0666/94017546-d.html", "title": "Publisher description"}], "covers": [787186, 787185], "local_id": ["urn:sfpl:31223045342434", "urn:cst:10011453092"], "lc_classifications": ["GE70 .O77 1994", "", "GE70.O77 1994"], "key": "/books/OL1093168M", "authors": [{"key": "/authors/OL580691A"}], "ocaid": "earthinmindonedu00orrdrich", "publish_places": ["Washington, DC"], "subjects": ["Environmental education -- Philosophy.", "Education -- Philosophy."], "pagination": "ix, 213 p. ;", "source_records": ["ia:earthinmindonedu00orrdrich", "marc:marc_openlibraries_sanfranciscopubliclibrary/sfpl_chq_2018_12_24_run02.mrc:111996170:1513", "marc:marc_claremont_school_theology/CSTMARC1_barcode.mrc:209929505:4536", "bwb:9781559632959", "bwb:9781559632942", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:128743484:863", "marc:marc_claremont_school_theology/CSTMARC1_multibarcode.mrc:210194900:4536", "amazon:1559632941"], "title": "Earth in mind", "dewey_decimal_class": ["363.7/0071"], "notes": {"type": "/type/text", "value": "Includes bibliographical references and index."}, "identifiers": {"librarything": ["342473"], "goodreads": ["4906378", "2171203"]}, "languages": [{"key": "/languages/eng"}], "lccn": ["94017546"], "isbn_10": ["1559632941", "155963295X"], "publish_date": "1994", "publish_country": "dcu", "by_statement": "David W. Orr", "works": [{"key": "/works/OL3481441W"}], "type": {"key": "/type/edition"}, "latest_revision": 17, "revision": 17, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-15T15:08:45.993339"}}
+/type/edition /books/OL10932072M 9 2022-02-26T00:49:52.035423 {"publishers": ["Schiffer Publishing Ltd"], "subtitle": "How the Other Side Intervenes in Our Lives", "physical_format": "Paperback", "key": "/books/OL10932072M", "authors": [{"key": "/authors/OL22293A"}], "subjects": ["Mind, Body, Spirit", "Unexplained Phenomena", "Body, Mind & Spirit", "New Age"], "isbn_13": ["9780764328923"], "source_records": ["amazon:0764328921", "marc:marc_loc_updates/v37.i09.records.utf8:4807354:724", "marc:marc_loc_updates/v37.i18.records.utf8:5699497:736", "marc:marc_loc_2016/BooksAll.2016.part35.utf8:90547647:736", "bwb:9780764328923"], "title": "The Spirit Connection", "identifiers": {"goodreads": ["2700004"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0764328921"], "publish_date": "February 2008", "oclc_numbers": ["183266453"], "works": [{"key": "/works/OL15128688W"}], "type": {"key": "/type/edition"}, "lccn": ["2007940875"], "lc_classifications": ["BF1311.F8 H66 2008", "BF1311.F8H66 2008"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-26T00:49:52.035423"}}
+/type/edition /books/OL1093233M 7 2022-07-17T03:45:35.158114 {"publishers": ["American Mathematical Society"], "number_of_pages": 399, "subtitle": "1943-1993 : a fifty year celebration : AMS special session commemorating the first fifty years of c*-algebra theory, January 13-14, 1993, San Antonio, Texas", "isbn_10": ["0821851756"], "series": ["Contemporary mathematics,", "v. 167", "Contemporary mathematics (American Mathematical Society) ;", "v. 167."], "covers": [3877296], "lc_classifications": ["QA326 .C2 1994", "QA326.C2 1994"], "key": "/books/OL1093233M", "publish_places": ["Providence, R.I"], "contributions": ["Doran, Robert S., 1937-", "American Mathematical Society."], "pagination": "ix, 399 p. :", "source_records": ["marc:marc_records_scriblio_net/part24.dat:54314763:960", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:128803884:960", "bwb:9780821851753"], "title": "C*-algebras", "dewey_decimal_class": ["512/.55"], "notes": {"type": "/type/text", "value": "Includes bibliographical references."}, "identifiers": {"goodreads": ["4290663"], "librarything": ["4400334"]}, "languages": [{"key": "/languages/eng"}], "lccn": ["94017615"], "subjects": ["C*-algebras -- Congresses."], "publish_date": "1994", "publish_country": "riu", "by_statement": "Robert S. Doran, editor.", "works": [{"key": "/works/OL18826012W"}], "type": {"key": "/type/edition"}, "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T03:45:35.158114"}}
+/type/edition /books/OL10932558M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Group Publishing"], "title": "Preschool Sticker Sheets, 15 Sheets Per Package", "isbn_13": ["9780764499326"], "isbn_10": ["0764499327"], "publish_date": "January 1999", "key": "/books/OL10932558M", "type": {"key": "/type/edition"}, "subjects": ["Christianity - Education - Teaching Aids", "Religion - Vacation Bible School"], "revision": 1}
+/type/edition /books/OL10932957M 2 2009-12-15T00:56:14.782674 {"physical_format": "Paperback", "title": "Holiday 2003 Dummies Consumer Bundle", "isbn_10": ["0764544225"], "publishers": ["John Wiley and Sons"], "isbn_13": ["9780764544224"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:56:14.782674"}, "publish_date": "December 2, 2003", "key": "/books/OL10932957M", "authors": [{"key": "/authors/OL2743788A"}], "latest_revision": 2, "works": [{"key": "/works/OL8244509W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL1093317M 6 2020-11-18T09:27:58.085693 {"publishers": ["Irwin"], "identifiers": {"goodreads": ["3714204"], "librarything": ["803952"]}, "isbn_10": ["0256140227", "0256176833"], "series": ["The Irwin series in statistics"], "covers": [8347938], "lc_classifications": ["HF1017 .W433 1995"], "latest_revision": 6, "key": "/books/OL1093317M", "authors": [{"key": "/authors/OL400456A"}], "ocaid": "appliedstatistic0000webs", "publish_places": ["Chicago"], "languages": [{"key": "/languages/eng"}], "pagination": "xxii, 1047 p. :", "source_records": ["ia:appliedstatistic0000webs", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:128877986:788"], "title": "Applied statistics for business and economics", "dewey_decimal_class": ["519.5/02433"], "notes": {"type": "/type/text", "value": "\"Instructor's edition.\"\nIncludes index."}, "number_of_pages": 1047, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "edition_name": "2nd ed.", "lccn": ["94017704"], "subjects": ["Commercial statistics.", "Economics -- Statistical methods."], "publish_date": "1995", "publish_country": "ilu", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T09:27:58.085693"}, "by_statement": "Allen L. Webster.", "works": [{"key": "/works/OL2733239W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL10933331M 2 2022-10-18T11:03:55.528536 {"physical_format": "Paperback", "publishers": ["Hungry Minds Inc,U.S."], "title": "Barnes & Noble Cliffsnotes Asrt. C Box 1 of 4", "isbn_13": ["9780764582400"], "isbn_10": ["0764582402"], "publish_date": "November 5, 2002", "key": "/books/OL10933331M", "type": {"key": "/type/edition"}, "subjects": ["Education"], "works": [{"key": "/works/OL29062105W"}], "source_records": ["bwb:9780764582400"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T11:03:55.528536"}}
+/type/edition /books/OL1093382M 8 2022-10-18T12:04:40.150538 {"publishers": ["Jossey-Bass"], "number_of_pages": 330, "subtitle": "narratives of change in Hungary and Estonia", "isbn_10": ["0787900222"], "subject_place": ["Hungary", "Estonia", "Hungary.", "Estonia."], "covers": [9697730], "lc_classifications": ["HN420.5.A8 B47 1994", "HN420.5.A8B47 1994"], "key": "/books/OL1093382M", "authors": [{"key": "/authors/OL578724A"}], "ocaid": "freedomnarrative00berg", "publish_places": ["San Francisco"], "contributions": ["Weiss, Berne, 1943-"], "subjects": ["Post-communism -- Hungary.", "Post-communism -- Estonia.", "Liberty.", "Interviews -- Hungary.", "Interviews -- Estonia.", "Hungary -- Social conditions -- 1989-", "Estonia -- Social conditions."], "subject_time": ["1989-"], "languages": [{"key": "/languages/eng"}], "pagination": "xviii, 330 p. ;", "source_records": ["marc:marc_openlibraries_sanfranciscopubliclibrary/sfpl_chq_2018_12_24_run02.mrc:92752364:1855", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:128936645:1075", "bwb:9780787900229"], "title": "Freedom!", "dewey_decimal_class": ["306/.09439"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 315-319) and index."}, "identifiers": {"goodreads": ["4208177"]}, "edition_name": "1st ed.", "lccn": ["94017770"], "local_id": ["urn:sfpl:31223019888669"], "publish_date": "1994", "publish_country": "cau", "series": ["The Jossey-Bass social and behavioral science series"], "by_statement": "William Bergquist, Berne Weiss.", "works": [{"key": "/works/OL3471918W"}], "type": {"key": "/type/edition"}, "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T12:04:40.150538"}}
+/type/edition /books/OL1093405M 12 2021-12-26T12:12:09.438995 {"publishers": ["Middlebury College Press", "University Press of New England"], "number_of_pages": 258, "isbn_10": ["087451682X", "0874517109"], "subject_place": ["New England.", "New York (State)"], "covers": [3877234, 1625646], "lc_classifications": ["SD144.N37 F88 1994", "SD144.N37F88 1994"], "key": "/books/OL1093405M", "ocaid": "futureofnorthern0000unse", "publish_places": ["Middlebury, Vt", "Hanover, NH"], "contributions": ["Klyza, Christopher McGrory.", "Trombulak, Stephen C."], "subjects": ["Forests and forestry -- New England.", "Forests and forestry -- New York (State)", "Forest policy -- New England.", "Forest policy -- New York (State)", "Forest ecology -- New England.", "Forest ecology -- New York (State)", "Forest products industry -- New England.", "Forest products industry -- New York (State)"], "pagination": "ix, 258 p. ;", "source_records": ["marc:marc_records_scriblio_net/part24.dat:54463504:1263", "amazon:087451682X", "amazon:0874517109", "marc:marc_openlibraries_sanfranciscopubliclibrary/sfpl_chq_2018_12_24_run02.mrc:126585880:2231", "ia:futureofnorthern0000unse", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:128955486:1263", "bwb:9780874516821", "bwb:9780874517101"], "title": "The Future of the northern forest", "dewey_decimal_class": ["333.75/0974"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. [239]-254) and index."}, "identifiers": {"librarything": ["4595100"], "goodreads": ["3165337", "566092"]}, "languages": [{"key": "/languages/eng"}], "lccn": ["94017794"], "local_id": ["urn:sfpl:31223042178138", "urn:sfpl:31223045591600"], "publish_date": "1994", "publish_country": "vtu", "by_statement": "edited by Christopher McGrory Klyza, Stephen C. Trombulak.", "works": [{"key": "/works/OL18849098W"}], "type": {"key": "/type/edition"}, "latest_revision": 12, "revision": 12, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-26T12:12:09.438995"}}
+/type/edition /books/OL1093437M 18 2022-12-04T12:32:33.356839 {"publishers": ["Routledge"], "identifiers": {"librarything": ["131569"], "goodreads": ["2344292", "1012125"]}, "isbn_10": ["0415096219", "0415096227"], "subject_place": ["Developing countries", "Commonwealth countries."], "covers": [263160, 263159], "lc_classifications": ["PR9080 .P57 1995", "PR9080 .P57 1994", "PR9080.P57 1995"], "key": "/books/OL1093437M", "ocaid": "postcolonialstud00ashc_015", "publish_places": ["London", "New York"], "contributions": ["Ashcroft, Bill, 1946-", "Griffiths, Gareth, 1943-", "Tiffin, Helen."], "subjects": ["Commonwealth literature (English) -- History and criticism", "English literature -- Developing countries -- History and criticism", "Postcolonialism -- Commonwealth countries", "Postcolonialism in literature", "Decolonization in literature", "Imperialism in literature", "Colonies in literature"], "pagination": "xvii, 526 p. :", "source_records": ["marc:marc_records_scriblio_net/part24.dat:54493923:1161", "marc:marc_cca/b10621386.out:32457720:1167", "ia:postcolonialstud00ashc_366", "marc:OpenLibraries-Trent-MARCs/multi2.mrc:7245386:1140", "ia:postcolonialstud0000unse", "ia:postcolonialstud00ashc_320", "marc:marc_claremont_school_theology/CSTMARC1_barcode.mrc:210256369:11163", "bwb:9780415096225", "bwb:9780415096218", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:128985732:1262", "marc:marc_claremont_school_theology/CSTMARC1_multibarcode.mrc:210521792:11163", "promise:bwb_daily_pallets_2022-09-07"], "title": "The post-colonial studies reader", "dewey_decimal_class": ["820.9/358"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 491-513) and index."}, "number_of_pages": 526, "languages": [{"key": "/languages/eng"}], "lccn": ["94017829"], "local_id": ["urn:trent:0116404172433", "urn:trent:0116404181038", "urn:cst:10017018579", "urn:bwbsku:O8-BTR-530"], "publish_date": "1995", "publish_country": "enk", "by_statement": "edited by Bill Ashcroft, Gareth Griffiths, and Helen Tiffin.", "works": [{"key": "/works/OL16976930W"}], "type": {"key": "/type/edition"}, "latest_revision": 18, "revision": 18, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T12:32:33.356839"}}
+/type/edition /books/OL10935133M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Calendar", "weight": "1.2 pounds", "publishers": ["Pomegranate (Cal)"], "title": "Impressionism 2004 Calendar", "isbn_13": ["9780764922619"], "isbn_10": ["0764922610"], "publish_date": "June 2003", "key": "/books/OL10935133M", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "type": {"key": "/type/edition"}, "subjects": ["Impressionism", "Stationery items", "Non-Classifiable", "Calendar"], "physical_dimensions": "8.2 x 7.5 x 0.8 inches", "revision": 1}
+/type/edition /books/OL10935248M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780764923937"], "physical_format": "Calendar", "weight": "3.2 ounces", "languages": [{"key": "/languages/eng"}], "publishers": ["Pomegranate (Cal)"], "title": "Frank Lloyd Wright Designs 2004 Calendar", "edition_name": "Miniature edition", "isbn_10": ["0764923935"], "publish_date": "June 2003", "key": "/books/OL10935248M", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "type": {"key": "/type/edition"}, "subjects": ["Stationery items", "Non-Classifiable", "Calendar"], "physical_dimensions": "7 x 6.8 x 0.2 inches", "revision": 1}
+/type/edition /books/OL10935396M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780764930034"], "physical_format": "Calendar", "subtitle": "2006 (Wall) Calendar", "weight": "8.8 ounces", "languages": [{"key": "/languages/eng"}], "publishers": ["Pomegranate (Cal)"], "title": "Jacob Lawrence", "edition_name": "Wall edition", "isbn_10": ["0764930036"], "publish_date": "July 30, 2005", "key": "/books/OL10935396M", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "type": {"key": "/type/edition"}, "subjects": ["Non-Classifiable", "Calendar"], "physical_dimensions": "12.8 x 11.8 x 0.2 inches", "revision": 1}
+/type/edition /books/OL10935766M 2 2011-06-08T10:43:24.492278 {"publishers": ["Smithmark Pub"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2011-06-08T10:43:24.492278"}, "title": "Webster's New Complete Thesaurus (Webster's Dictionary Series)", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780765107572"], "physical_format": "Hardcover", "isbn_10": ["0765107570"], "publish_date": "January 1998", "key": "/books/OL10935766M", "latest_revision": 2, "oclc_numbers": ["228387162"], "type": {"key": "/type/edition"}, "subjects": ["Sale Books", "Reference"], "revision": 2}
+/type/edition /books/OL10936184M 3 2010-04-13T06:21:13.129510 {"publishers": ["Modern Curriculum Press"], "physical_format": "Paperback", "subtitle": "Visitors Of Another Kind - Pack One (Six Pack)", "key": "/books/OL10936184M", "title": "MC COMICS", "number_of_pages": 16, "covers": [2615714], "isbn_13": ["9780765219268"], "isbn_10": ["0765219263"], "publish_date": "2000", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:21:13.129510"}, "authors": [{"key": "/authors/OL3398836A"}], "latest_revision": 3, "works": [{"key": "/works/OL9355653W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Education / Teaching"], "revision": 3}
+/type/edition /books/OL10936497M 2 2009-12-15T00:56:15.927070 {"publishers": ["Walter de Gruyter & Co."], "subtitle": "INDICES AD PHILONIS ALEXANDRINI OPERA", "title": "PHILONIS ALEXANDRINI: OPERA QUAE SUPERSUNT, VOLUME VII, PART II", "isbn_10": ["0765584530"], "isbn_13": ["9780765584533"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:56:15.927070"}, "publish_date": "1963", "key": "/books/OL10936497M", "authors": [{"key": "/authors/OL3515445A"}], "latest_revision": 2, "works": [{"key": "/works/OL9503006W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10936678M 9 2023-01-08T00:12:48.378673 {"publishers": ["Transaction Publishers"], "number_of_pages": 254, "subtitle": "J. Edgar Hoover's FBI Surveillance of American Sociology", "weight": "15.2 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0765805634"], "identifiers": {"goodreads": ["1608922"]}, "isbn_13": ["9780765805638"], "covers": [2615963], "physical_format": "Paperback", "key": "/books/OL10936678M", "authors": [{"key": "/authors/OL2698429A"}], "publish_date": "October 1, 2003", "title": "Stalking Sociologists", "works": [{"key": "/works/OL8101585W"}], "type": {"key": "/type/edition"}, "subjects": ["American history: from c 1900 -", "Espionage & secret services", "History of specific subjects", "Marxism & Communism", "Sociology, Social Studies", "Social Science", "Sociology", "USA", "Social History", "United States - State & Local - General", "Social Science / Sociology / General", "Criminology", "20th century", "Federal Bureau of Investigatio", "Federal Bureau of Investigation", "History", "United States", "United States."], "physical_dimensions": "8.9 x 6 x 0.7 inches", "lccn": ["2003065011"], "lc_classifications": ["HM477.U6 K44 2004", "HM477.U6"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part30.utf8:203017716:1020", "bwb:9780765805638", "ia:stalkingsociolog0000keen", "marc:marc_columbia/Columbia-extract-20221130-009.mrc:299681197:3168"], "ocaid": "stalkingsociolog0000keen", "oclc_numbers": ["52739297"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2023-01-08T00:12:48.378673"}}
+/type/edition /books/OL10936787M 7 2022-07-18T21:28:08.202974 {"publishers": ["Enslow Publishers"], "weight": "13 ounces", "covers": [2616050], "physical_format": "Library Binding", "key": "/books/OL10936787M", "authors": [{"key": "/authors/OL2647363A"}], "ocaid": "healthsciencepro0000gard_j3b5", "subjects": ["Health & Daily Living - Diet & Nutrition", "Science & Nature - Experiments & Projects", "Juvenile Nonfiction", "Children's Books/Ages 9-12 Science", "Experiments", "Juvenile literature", "Nutrition", "Science", "Science projects", "Children: Grades 4-6", "Children: Young Adult (Gr. 7-9)"], "isbn_13": ["9780766014428"], "source_records": ["ia:healthsciencepro0000gard_j3b5", "marc:marc_loc_2016/BooksAll.2016.part28.utf8:186442113:869", "bwb:9780766014428"], "title": "Health Science Projects About Nutrition (Science Projects)", "number_of_pages": 112, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0766014428"], "publish_date": "January 2002", "oclc_numbers": ["45880070"], "works": [{"key": "/works/OL7940104W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.3 x 6.3 x 0.5 inches", "lccn": ["2001000306"], "lc_classifications": ["QP143 .G37 2002", "QP143.G37 2002"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-18T21:28:08.202974"}}
+/type/edition /books/OL10936808M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Library Binding", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Enslow Publishers"], "title": "Drug Awareness/Health Grades 5-12, Set a", "isbn_13": ["9780766015258"], "isbn_10": ["0766015254"], "publish_date": "September 2001", "key": "/books/OL10936808M", "type": {"key": "/type/edition"}, "subjects": ["Children's Books/Ages 9-12 Nonfiction"], "revision": 1}
+/type/edition /books/OL10936895M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Library Binding", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Enslow Publishers"], "title": "Biographies of the Wild West M-239 with CDROM", "isbn_13": ["9780766019324"], "isbn_10": ["0766019322"], "publish_date": "September 2001", "key": "/books/OL10936895M", "type": {"key": "/type/edition"}, "subjects": ["Children's Books/Ages 9-12 Biography"], "revision": 1}
+/type/edition /books/OL1093722M 3 2020-11-18T09:32:02.169427 {"publishers": ["Kluwer Academic"], "subtitle": "essays in honor of Joseph J. Kockelmans", "isbn_10": ["0792329112"], "series": ["Contributions to phenomenology ;", "v. 17"], "lc_classifications": ["BD241 .Q47 1994"], "latest_revision": 3, "key": "/books/OL1093722M", "publish_places": ["Dordrecht", "Boston"], "contributions": ["Stapleton, Timothy J., 1951-"], "pagination": "x, 496 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:129242474:851"], "title": "The Question of hermeneutics", "dewey_decimal_class": ["121/.68"], "notes": {"type": "/type/text", "value": "\"Bibliography of Joseph J. Kockelmans\": p. [473]-489.\nIncludes bibliographical references and index."}, "number_of_pages": 496, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["94018131"], "subjects": ["Kockelmans, Joseph J., 1923-", "Hermeneutics."], "publish_date": "1994", "publish_country": "ne ", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T09:32:02.169427"}, "by_statement": "edited by Timothy J. Stapleton.", "works": [{"key": "/works/OL8361315W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10937360M 4 2017-08-26T06:03:55.818203 {"publishers": ["Kessinger Publishing"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2017-08-26T06:03:55.818203"}, "weight": "3.6 pounds", "title": "Freethinkers Collection", "number_of_pages": 740, "isbn_13": ["9780766137592"], "covers": [2616521], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0766137597"], "publish_date": "February 2003", "key": "/books/OL10937360M", "authors": [{"key": "/authors/OL18523A"}], "latest_revision": 4, "type": {"key": "/type/edition"}, "subjects": ["General", "Philosophy"], "physical_dimensions": "11 x 8.2 x 1.4 inches", "revision": 4}
+/type/edition /books/OL10937544M 3 2010-04-13T06:21:13.129510 {"publishers": ["Kessinger Publishing"], "languages": [{"key": "/languages/eng"}], "weight": "1.6 pounds", "title": "Romanae Historiae", "isbn_10": ["0766161315"], "number_of_pages": 308, "isbn_13": ["9780766161313"], "covers": [2616705], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:21:13.129510"}, "latest_revision": 3, "physical_dimensions": "11.1 x 8.3 x 0.7 inches", "key": "/books/OL10937544M", "authors": [{"key": "/authors/OL2851722A"}], "publish_date": "May 2003", "works": [{"key": "/works/OL8521885W"}], "type": {"key": "/type/edition"}, "subjects": ["European history: BCE to c 500 CE", "Ancient Rome", "Ancient - Rome", "History - General History"], "first_sentence": {"type": "/type/text", "value": "BEfore we handle the description of the particular places in the Roman City, it will not be amiss to premise somewhat concerning the ancient manner of building and razing Cities."}, "revision": 3}
+/type/edition /books/OL10937895M 3 2010-04-13T06:21:13.129510 {"publishers": ["Kessinger Publishing, LLC"], "number_of_pages": 48, "weight": "4.6 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0766198065"], "title": "The Cincinnati Masonic Study School", "isbn_13": ["9780766198067"], "covers": [2617057], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:21:13.129510"}, "latest_revision": 3, "key": "/books/OL10937895M", "authors": [{"key": "/authors/OL3071234A"}], "publish_date": "December 8, 2005", "works": [{"key": "/works/OL8907030W"}], "type": {"key": "/type/edition"}, "subjects": ["Freemasonry", "Spirituality - General", "Body, Mind & Spirit-Spirituality - General", "Social Science / Freemasonry", "Social Science", "New Age / Body, Mind & Spirit", "Sociology"], "physical_dimensions": "11 x 8.2 x 0.1 inches", "revision": 3}
+/type/edition /books/OL10937912M 3 2010-04-13T06:21:13.129510 {"publishers": ["Kessinger Publishing, LLC"], "weight": "2 pounds", "covers": [2617074], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:21:13.129510"}, "latest_revision": 3, "key": "/books/OL10937912M", "authors": [{"key": "/authors/OL3293975A"}], "contributions": ["F. C. Yohn (Illustrator)"], "subjects": ["General & Literary Fiction", "Literary", "Fiction / Literary", "Fiction", "Fiction - General"], "isbn_13": ["9780766198555"], "first_sentence": {"type": "/type/text", "value": "SYLVIA was reading in her grandfather's library when the bell tinkled."}, "title": "A Hoosier Chronicle", "number_of_pages": 624, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0766198553"], "publish_date": "March 1, 2005", "works": [{"key": "/works/OL9235146W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.9 x 6 x 1.5 inches", "revision": 3}
+/type/edition /books/OL10938025M 6 2020-05-22T20:13:33.741627 {"publishers": ["Modern Publishing"], "ia_box_id": ["IA116601"], "covers": [10017162], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2020-05-22T20:13:33.741627"}, "latest_revision": 6, "key": "/books/OL10938025M", "authors": [{"key": "/authors/OL2852595A"}], "ocaid": "bestgift00fish", "subjects": ["General", "Children's 9-12"], "languages": [{"key": "/languages/eng"}], "title": "The Best Gift (Fisher-Price Phonics Storybooks)", "identifiers": {"librarything": ["5808563"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780766601703"], "isbn_10": ["0766601706"], "publish_date": "December 1998", "works": [{"key": "/works/OL8525384W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL10938091M 7 2012-06-12T15:08:22.253479 {"publishers": ["Modern Pub"], "physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2012-06-12T15:08:22.253479"}, "latest_revision": 7, "key": "/books/OL10938091M", "authors": [{"key": "/authors/OL243635A"}], "subjects": ["Juvenile fiction", "Ladybugs", "Stuffed animals (Toys)"], "isbn_13": ["9780766605626"], "classifications": {}, "title": "Lucky ladybug", "notes": {"type": "/type/text", "value": "Honey bear books"}, "identifiers": {"goodreads": ["686014"], "librarything": ["6030320"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0766605620"], "publish_date": "2000", "oclc_numbers": ["48393661"], "works": [{"key": "/works/OL2019206W"}], "type": {"key": "/type/edition"}, "revision": 7}
+/type/edition /books/OL10938396M 2 2010-04-13T06:21:13.129510 {"publishers": ["C R Gibson Co"], "title": "Florencia Magnetic Page Photo Album", "isbn_10": ["0766709345"], "isbn_13": ["9780766709348"], "covers": [2617165], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:21:13.129510"}, "publish_date": "2000", "key": "/books/OL10938396M", "latest_revision": 2, "subjects": ["Book Accessories", "Photo Albums"], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10938526M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["C.R. Gibson Company"], "title": "From This Day Forward Gift Bag", "isbn_13": ["9780766727090"], "isbn_10": ["0766727092"], "publish_date": "January 1998", "key": "/books/OL10938526M", "type": {"key": "/type/edition"}, "subjects": ["Unassigned Title"], "revision": 1}
+/type/edition /books/OL10938892M 5 2010-04-24T18:11:03.046166 {"publishers": ["C.R. Gibson Company"], "languages": [{"key": "/languages/eng"}], "subtitle": "10 Notes, 10 Lined Envelopes, Satin Bow Tie, Printed Box Tray and Lid, Multiple is 3.", "title": "Boxed Notes, Sing to the Lord", "isbn_10": ["0766762866"], "identifiers": {"goodreads": ["2934047"]}, "isbn_13": ["9780766762862"], "covers": [2617283], "physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:11:03.046166"}, "publish_date": "January 2000", "key": "/books/OL10938892M", "authors": [{"key": "/authors/OL48831A"}], "latest_revision": 5, "works": [{"key": "/works/OL634081W"}], "type": {"key": "/type/edition"}, "subjects": ["Healthy Living", "Gifts"], "physical_dimensions": "5.6 x 4.4 x 1.1 inches", "revision": 5}
+/type/edition /books/OL10939372M 3 2011-04-27T01:59:28.441225 {"publishers": ["Delmar Thomson Learning"], "subtitle": "The Law of Trademarks, Copyrights, Patents, and Trade Secrets", "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T01:59:28.441225"}, "latest_revision": 3, "key": "/books/OL10939372M", "authors": [{"key": "/authors/OL399129A"}], "subjects": ["Intellectual Property - General", "Legal Reference / Law Profession"], "isbn_13": ["9780766813564"], "title": "Intellectual Property", "number_of_pages": 512, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0766813568"], "publish_date": "January 2000", "oclc_numbers": ["52627005"], "works": [{"key": "/works/OL2725882W"}], "type": {"key": "/type/edition"}, "first_sentence": {"type": "/type/text", "value": "Intellectual property law protects the results of human creative endeavor."}, "revision": 3}
+/type/edition /books/OL1093943M 15 2020-11-18T09:35:37.232391 {"publishers": ["Oxford University Press"], "number_of_pages": 282, "isbn_10": ["0195094093"], "series": ["Oxford engineering science series ;", "44"], "covers": [1125208], "lc_classifications": ["TA357.5.M84 B74 1995", "TA357.5.M84B74 1995"], "latest_revision": 15, "key": "/books/OL1093943M", "authors": [{"key": "/authors/OL580997A"}], "ocaid": "cavitationbubble00bren", "publish_places": ["New York"], "pagination": "xv, 282 p. :", "source_records": ["ia:cavitationbubble00bren", "ia:cavitationbubble00bren_148", "ia:cavitationbubble00bren_180", "ia:cavitationbubble00bren_767", "ia:cavitationbubble00bren_804", "ia:cavitationbubble00bren_875", "ia:cavitationbubble00bren_919", "bwb:9780195094091", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:129433099:972"], "title": "Cavitation and bubble dynamics", "dewey_decimal_class": ["620.1/064"], "notes": {"type": "/type/text", "value": "Includes bibliographical references and index."}, "identifiers": {"goodreads": ["680943"], "librarything": ["765627"]}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["94018365"], "subjects": ["Multiphase flow.", "Cavitation.", "Bubbles."], "publish_date": "1995", "publish_country": "nyu", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T09:35:37.232391"}, "by_statement": "Christopher E. Brennen.", "works": [{"key": "/works/OL3482534W"}], "type": {"key": "/type/edition"}, "revision": 15}
+/type/edition /books/OL10939492M 8 2022-11-15T11:23:15.441560 {"publishers": ["Thomson Delmar Learning"], "identifiers": {"goodreads": ["4385551"]}, "weight": "2.6 pounds", "isbn_10": ["0766822834"], "edition_name": "1 edition", "physical_format": "Hardcover", "key": "/books/OL10939492M", "authors": [{"key": "/authors/OL2852627A"}], "isbn_13": ["9780766822832"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part01.utf8:45211809:720", "amazon:0766822834"], "title": "License to Drive Idaho (License to Drive)", "lccn": ["00063845"], "number_of_pages": 576, "languages": [{"key": "/languages/eng"}], "subjects": ["Advice on careers & achieving success", "Business & Economics", "Education / Teaching", "Career/Job", "Automotive - General", "Counseling - Vocational Guidance", "Driver Education", "Education / Driver Education", "Careers - General", "Automobile driving", "Driver's licenses", "Idaho"], "publish_date": "October 17, 2000", "oclc_numbers": ["44794952"], "works": [{"key": "/works/OL8525458W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 8.8 x 1 inches", "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-15T11:23:15.441560"}}
+/type/edition /books/OL10939714M 3 2011-04-28T07:49:42.858940 {"publishers": ["Delmar Learning"], "physical_format": "CD-ROM", "subtitle": "Framing Methods & Plans (Architectural Drafting & Design)", "last_modified": {"type": "/type/datetime", "value": "2011-04-28T07:49:42.858940"}, "title": "Architectural Drafting & Design Video #6", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780766830912"], "edition_name": "1 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0766830918"], "publish_date": "April 19, 2001", "key": "/books/OL10939714M", "authors": [{"key": "/authors/OL2818800A"}], "latest_revision": 3, "oclc_numbers": ["50882248"], "works": [{"key": "/works/OL8449322W"}], "type": {"key": "/type/edition"}, "subjects": ["Drafting & Mechanical Drawing", "General", "Technology / Technical & Manufacturing Industries & Trades", "Technical & Manufacturing Industries & Trades", "Technology & Engineering", "Architecture", "Science/Mathematics"], "revision": 3}
+/type/edition /books/OL10939811M 2 2009-12-15T00:56:19.711592 {"publishers": ["Delmar Thomson Learning"], "subtitle": "(passcode For Website)", "weight": "0.8 ounces", "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:56:19.711592"}, "latest_revision": 2, "key": "/books/OL10939811M", "authors": [{"key": "/authors/OL2734373A"}], "subjects": ["Nutrition", "Medical"], "edition_name": "8 edition", "title": "Advantage Web Tutor On Blackboard To Accompany Nutrition And Diet Therapy", "isbn_13": ["9780766835719"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0766835715"], "publish_date": "January 2003", "works": [{"key": "/works/OL8221005W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8 x 5.6 x 0.6 inches", "revision": 2}
+/type/edition /books/OL10939832M 2 2009-12-15T00:56:19.711592 {"physical_format": "Hardcover", "publishers": ["Delmar Thomson Learning"], "isbn_10": ["0766838196"], "number_of_pages": 640, "isbn_13": ["9780766838192"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:56:19.711592"}, "publish_date": "January 2002", "key": "/books/OL10939832M", "authors": [{"key": "/authors/OL3251928A"}], "title": "Electrical Wiring Residential", "latest_revision": 2, "works": [{"key": "/works/OL9182507W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10939842M 3 2010-08-10T04:15:11.905746 {"publishers": ["Delmar Thomson Learning"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-08-10T04:15:11.905746"}, "title": "The AutoCAD 2002 Tutor for Engineering Graphics (AutoCAD)", "number_of_pages": 1472, "isbn_13": ["9780766838611"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0766838617"], "publish_date": "January 2002", "key": "/books/OL10939842M", "authors": [{"key": "/authors/OL225848A"}], "latest_revision": 3, "works": [{"key": "/works/OL1886547W"}], "type": {"key": "/type/edition"}, "subjects": ["Engineering - Mechanical", "Mechanical", "Technology", "Technology & Industrial Arts"], "first_sentence": {"type": "/type/text", "value": "When you first launch AutoCAD 2002, you will see the drawing screen illustrated in Figure 1-1."}, "revision": 3}
+/type/edition /books/OL10940424M 2 2009-12-15T00:56:19.711592 {"publishers": ["Graphique deFrance"], "key": "/books/OL10940424M", "title": "Vintage Posters 2006 Calendar", "physical_format": "Paperback", "isbn_10": ["0767134583"], "publish_date": "2005", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:56:19.711592"}, "authors": [{"key": "/authors/OL3515850A"}], "latest_revision": 2, "works": [{"key": "/works/OL9503798W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10940584M 2 2009-12-15T00:56:20.821929 {"publishers": ["Dove Tail Music/Genevox"], "subtitle": "For Younger Children (3)", "title": "Made for Praise", "isbn_10": ["0767333330"], "isbn_13": ["9780767333337"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:56:20.821929"}, "publish_date": "1997", "key": "/books/OL10940584M", "authors": [{"key": "/authors/OL3515870A"}], "latest_revision": 2, "works": [{"key": "/works/OL9503824W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10940808M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780767413688"], "physical_format": "Paperback", "subtitle": "The Art and Science of Public Speaking", "weight": "2.4 pounds", "languages": [{"key": "/languages/eng"}], "publishers": ["Mayfield Pub Co"], "title": "Between One and Many", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "edition_name": "3rd Pkg edition", "isbn_10": ["0767413687"], "publish_date": "January 1999", "key": "/books/OL10940808M", "authors": [{"key": "/authors/OL2640702A"}, {"key": "/authors/OL2640703A"}], "type": {"key": "/type/edition"}, "subjects": ["Public Speaking", "Language Arts & Disciplines", "Language"], "physical_dimensions": "9 x 7.2 x 1.8 inches", "revision": 1}
+/type/edition /books/OL1094084M 4 2022-12-04T04:22:16.079810 {"publishers": ["Mansell Pub."], "identifiers": {"goodreads": ["5068598"]}, "isbn_10": ["0720121914"], "series": ["Global development and the environment series", "Global development and the environment."], "lc_classifications": ["HC435.2 .C474 1995"], "key": "/books/OL1094084M", "publish_places": ["London", "New York"], "contributions": ["Chapman, Graham.", "Thompson, M. 1937-"], "subject_time": ["1947-"], "pagination": "xv, 208 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:129556019:1004", "ia:waterquestforsus0000unse"], "title": "Water and the quest for sustainable development in the Ganges valley", "dewey_decimal_class": ["333.91/62/09541"], "notes": {"type": "/type/text", "value": "Includes bibliographical references and index."}, "number_of_pages": 208, "languages": [{"key": "/languages/eng"}], "lccn": ["94018515"], "subjects": ["Sustainable development -- India.", "Water -- India.", "Environmental policy -- India.", "India -- Economic conditions -- 1947-"], "publish_date": "1995", "publish_country": "enk", "subject_place": ["India", "India."], "by_statement": "edited by G.P. Chapman and M. Thompson.", "works": [{"key": "/works/OL23535193W"}], "type": {"key": "/type/edition"}, "covers": [13025282], "ocaid": "waterquestforsus0000unse", "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T04:22:16.079810"}}
+/type/edition /books/OL10940964M 6 2011-04-29T10:57:05.891969 {"publishers": ["Bantam Dell Pub Group (P)"], "physical_format": "Mass Market Paperback", "subtitle": "Repair Your Life While Repairing Your Credit", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T10:57:05.891969"}, "title": "Seven Steps to Freedom from Debt", "identifiers": {"goodreads": ["2095775"]}, "covers": [2618347], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780767901703"], "isbn_10": ["0767901703"], "publish_date": "May 1, 1998", "key": "/books/OL10940964M", "authors": [{"key": "/authors/OL387326A"}], "latest_revision": 6, "oclc_numbers": ["230728435"], "works": [{"key": "/works/OL2656207W"}], "type": {"key": "/type/edition"}, "subjects": ["Consumer Behavior - General", "Business & Economics", "Business/Economics"], "revision": 6}
+/type/edition /books/OL1094136M 7 2020-11-18T09:37:42.707483 {"publishers": ["Abbeville Press"], "identifiers": {"goodreads": ["891101"], "librarything": ["3330273"]}, "isbn_10": ["1558598243"], "series": ["Abbeville stylebooks"], "covers": [8547373], "lc_classifications": ["N6494.A7 S76 1994"], "latest_revision": 7, "key": "/books/OL1094136M", "authors": [{"key": "/authors/OL31808A"}], "ocaid": "artdeco0000stri", "publish_places": ["New York"], "pagination": "95 p. :", "source_records": ["amazon:1558598243", "ia:artdeco0000stri", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:129603043:653"], "title": "Art deco", "dewey_decimal_class": ["724/.6"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 94)\n\"An Archetype Press book.\""}, "number_of_pages": 95, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["94018571"], "subjects": ["Art deco."], "publish_date": "1994", "publish_country": "nyu", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T09:37:42.707483"}, "by_statement": "Richard Striner.", "works": [{"key": "/works/OL15119829W"}], "type": {"key": "/type/edition"}, "revision": 7}
+/type/edition /books/OL10941744M 4 2022-01-26T22:13:44.430777 {"publishers": ["SAE International"], "weight": "8.8 ounces", "physical_format": "Paperback", "key": "/books/OL10941744M", "authors": [{"key": "/authors/OL2853341A"}], "subjects": ["Transport Technology", "Transportation", "Automotive", "Automotive - Customizing", "Public Transportation", "Automobiles", "Collision avoidance systems", "Collision damage", "Pedestrian accidents", "Safety measures"], "languages": [{"key": "/languages/eng"}], "title": "Pedestrian Safety (Progress in Technology)", "number_of_pages": 175, "isbn_13": ["9780768013429"], "isbn_10": ["0768013429"], "publish_date": "January 2004", "works": [{"key": "/works/OL8527122W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.6 x 8.3 x 0.4 inches", "lccn": ["2003115015"], "lc_classifications": ["TL242 .P43 2004", "TL242.P43 2004"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part30.utf8:216955088:903", "bwb:9780768013429"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-26T22:13:44.430777"}}
+/type/edition /books/OL10942734M 3 2010-08-17T04:56:27.959327 {"publishers": ["Turtleback Books Distributed by Demco Media"], "subtitle": "The Science of Really Gross Things", "weight": "1.1 pounds", "physical_format": "Turtleback", "last_modified": {"type": "/type/datetime", "value": "2010-08-17T04:56:27.959327"}, "latest_revision": 3, "key": "/books/OL10942734M", "authors": [{"key": "/authors/OL29765A"}], "subjects": ["Health & Daily Living - General", "Science & Nature - Anatomy & Physiology", "Juvenile Nonfiction", "Body, Human", "Human physiology", "Juvenile literature", "Children: Grades 3-4"], "isbn_13": ["9780606278607"], "source_records": ["amazon:0606278605"], "title": "Grossology", "identifiers": {"librarything": ["656614"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0606278605"], "publish_date": "September 2002", "works": [{"key": "/works/OL116184W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.5 x 9.5 x 0.5 inches", "revision": 3}
+/type/edition /books/OL10942905M 3 2010-08-15T02:31:13.518060 {"publishers": ["Turtleback Books Distributed by Demco Media"], "physical_format": "Turtleback", "last_modified": {"type": "/type/datetime", "value": "2010-08-15T02:31:13.518060"}, "title": "Plant Products (Life of Plants)", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780606280877"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0606280871"], "publish_date": "April 2002", "key": "/books/OL10942905M", "authors": [{"key": "/authors/OL1394428A"}], "latest_revision": 3, "works": [{"key": "/works/OL5735728W"}], "type": {"key": "/type/edition"}, "subjects": ["Science & Nature - Flowers & Plants", "Juvenile Nonfiction", "Children: Grades 3-4"], "revision": 3}
+/type/edition /books/OL10943027M 4 2010-04-24T18:11:03.046166 {"publishers": ["Turtleback Books Distributed by Demco Media"], "physical_format": "Turtleback", "first_sentence": {"type": "/type/text", "value": "imon was a very old cat."}, "key": "/books/OL10943027M", "weight": "14.4 ounces", "title": "The Grannyman", "identifiers": {"goodreads": ["2536701"]}, "isbn_13": ["9780606282741"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0606282742"], "latest_revision": 4, "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:11:03.046166"}, "authors": [{"key": "/authors/OL220273A"}], "publish_date": "April 2002", "works": [{"key": "/works/OL1839038W"}], "type": {"key": "/type/edition"}, "subjects": ["Animals - Cats", "Family - General", "Juvenile Fiction", "Cats", "Fiction", "Old age", "Children: Grades 1-2"], "physical_dimensions": "11.2 x 9.2 x 0.5 inches", "revision": 4}
+/type/edition /books/OL10943115M 2 2009-10-17T16:05:19.251528 {"publishers": ["Turtleback Books Distributed by Demco Media"], "languages": [{"key": "/languages/eng"}], "source_records": ["amazon:0606284575"], "weight": "8 ounces", "title": "Hidden Talents", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780606284578"], "physical_format": "Turtleback", "authors": [{"key": "/authors/OL24096A"}], "isbn_10": ["0606284575"], "publish_date": "February 2002", "physical_dimensions": "7.5 x 5.2 x 1 inches", "key": "/books/OL10943115M", "last_modified": {"type": "/type/datetime", "value": "2009-10-17T16:05:19.251528"}, "latest_revision": 2, "subjects": ["Social Issues - New Experience", "Juvenile Fiction", "Extrasensory perception", "Fiction", "Schools", "Children: Grades 4-6"], "works": [{"key": "/works/OL90671W"}], "type": {"key": "/type/edition"}, "first_sentence": {"type": "/type/text", "value": "All I needed was handcuffs."}, "revision": 2}
+/type/edition /books/OL10943361M 2 2009-10-17T00:31:14.589030 {"publishers": ["Turtleback Books Distributed by Demco Media"], "languages": [{"key": "/languages/eng"}], "source_records": ["amazon:0606290338"], "weight": "8 ounces", "title": "Borrowers Afloat", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780606290333"], "physical_format": "Turtleback", "authors": [{"key": "/authors/OL39640A"}], "isbn_10": ["0606290338"], "publish_date": "September 2003", "physical_dimensions": "7.8 x 5.2 x 0.5 inches", "key": "/books/OL10943361M", "last_modified": {"type": "/type/datetime", "value": "2009-10-17T00:31:14.589030"}, "latest_revision": 2, "subjects": ["Classics", "Family - General", "Juvenile Fiction", "Fantasy fiction", "Children: Grades 4-6"], "works": [{"key": "/works/OL78563W"}], "type": {"key": "/type/edition"}, "first_sentence": {"type": "/type/text", "value": "\"But what do they talk about?\""}, "revision": 2}
+/type/edition /books/OL1094377M 9 2022-12-14T10:44:37.816905 {"notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 62) and index."}, "identifiers": {"librarything": ["3847961"], "goodreads": ["3580585"]}, "title": "Everything you need to know about depression", "authors": [{"key": "/authors/OL79028A"}], "publish_date": "1994", "publishers": ["Rosen Pub. Group"], "isbn_10": ["0823916871"], "series": ["The need to know library"], "lc_classifications": ["RC537 .A94 1994"], "publish_places": ["New York"], "languages": [{"key": "/languages/eng"}], "pagination": "64 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:129841844:841", "ia:everythingyounee0000ayer_y3q6", "promise:bwb_daily_pallets_2020-12-09"], "dewey_decimal_class": ["616.85/27"], "edition_name": "1st ed.", "lccn": ["94018822"], "subjects": ["Depression, Mental -- Juvenile literature.", "Depression in adolescence -- Juvenile literature.", "Depression, Mental."], "publish_country": "nyu", "by_statement": "Eleanor H. Ayer.", "oclc_numbers": ["30437302"], "type": {"key": "/type/edition"}, "ocaid": "everythingyounee0000ayer_y3q6", "key": "/books/OL1094377M", "number_of_pages": 64, "works": [{"key": "/works/OL893297W"}], "local_id": ["urn:bwbsku:O7-APV-197"], "covers": [13082274], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-14T10:44:37.816905"}}
+/type/edition /books/OL10943799M 6 2010-08-17T04:57:46.588580 {"publishers": ["Turtleback Books Distributed by Demco Media"], "identifiers": {"goodreads": ["2830510"], "librarything": ["760994"]}, "weight": "5.4 ounces", "covers": [2540245], "physical_format": "Turtleback", "last_modified": {"type": "/type/datetime", "value": "2010-08-17T04:57:46.588580"}, "latest_revision": 6, "key": "/books/OL10943799M", "authors": [{"key": "/authors/OL536295A"}], "contributions": ["Paul Meisel (Illustrator)"], "subjects": ["Animals - Dogs", "Readers - Beginner", "Readers - Intermediate", "Juvenile Fiction", "Children's 4-8 - Fiction - General", "Dogs", "Fiction", "Children: Grades 4-6"], "isbn_13": ["9780606309035"], "title": "Go Away Dog (My First I Can Read)", "number_of_pages": 32, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0606309039"], "publish_date": "August 30, 2004", "works": [{"key": "/works/OL3282714W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.5 x 5.8 x 0.5 inches", "revision": 6}
+/type/edition /books/OL1094388M 10 2021-03-03T14:07:20.862216 {"other_titles": ["Book of Ruth."], "publishers": ["United Bible Societies"], "number_of_pages": 110, "isbn_10": ["0826701116"], "series": ["UBS handbook series", "Helps for translators"], "covers": [631144], "lc_classifications": ["BS1315.2 .W32 1994"], "key": "/books/OL1094388M", "authors": [{"key": "/authors/OL396090A"}], "publish_places": ["New York"], "contributions": ["Nida, Eugene Albert, 1914-"], "subjects": ["Bible. O.T. Ruth -- Translating.", "Bible. O.T. Ruth -- Commentaries."], "languages": [{"key": "/languages/eng"}], "pagination": "ix, 110 p. ;", "source_records": ["marc:marc_loc_updates/v39.i35.records.utf8:1541950:1043", "marc:marc_claremont_school_theology/CSTMARC1_barcode.mrc:209965354:1958", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:129851386:1031", "marc:marc_claremont_school_theology/CSTMARC1_multibarcode.mrc:210230749:1958"], "title": "A handbook on the book of Ruth", "dewey_decimal_class": ["222/.35077"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 97-99) and index.\nPreviously published: A translator's handbook on the book of Ruth. 2nd ed. c1992."}, "identifiers": {"librarything": ["565710"], "goodreads": ["1618678"]}, "edition_name": "2nd ed.", "lccn": ["94018833"], "local_id": ["urn:cst:10011420032"], "publish_date": "1994", "publish_country": "nyu", "work_title": ["Translator's handbook on the book of Ruth"], "by_statement": "by Jan de Waard and Eugene A. Nida.", "oclc_numbers": ["30473615"], "works": [{"key": "/works/OL2708904W"}], "type": {"key": "/type/edition"}, "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2021-03-03T14:07:20.862216"}}
+/type/edition /books/OL10944386M 2 2009-12-09T06:57:17.551523 {"physical_format": "Unknown Binding", "languages": [{"key": "/languages/eng"}], "subtitle": "7.5 minute series (topographic)", "publishers": ["For sale by the Survey"], "isbn_10": ["0607000511"], "title": "Casa Grande West quadrangle, Arizona--Pinal Co., 1992", "edition_name": "Map edited 1995 edition", "isbn_13": ["9780607000511"], "last_modified": {"type": "/type/datetime", "value": "2009-12-09T06:57:17.551523"}, "publish_date": "1995", "key": "/books/OL10944386M", "authors": [{"key": "/authors/OL79165A"}], "latest_revision": 2, "works": [{"key": "/works/OL896078W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10944614M 3 2011-04-29T17:14:32.740963 {"publishers": ["Division of Geology and Land Survey"], "physical_format": "Unknown Binding", "subtitle": "7.5 minute series (topographic)", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T17:14:32.740963"}, "title": "Lecoma quadrangle, Missouri, 1992", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780607003475"], "edition_name": "Minor revision 1995 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0607003472"], "publish_date": "1995", "key": "/books/OL10944614M", "authors": [{"key": "/authors/OL79165A"}], "latest_revision": 3, "oclc_numbers": ["34173637"], "works": [{"key": "/works/OL899339W"}], "type": {"key": "/type/edition"}, "subjects": ["Maps, Topographic", "Missouri"], "revision": 3}
+/type/edition /books/OL10944616M 3 2011-04-27T06:38:12.693972 {"publishers": ["For sale by the Survey"], "physical_format": "Unknown Binding", "subtitle": "7.5 minute series (topographic)", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T06:38:12.693972"}, "title": "Sing Peak quadrangle, California--Madera Co", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780607003550"], "edition_name": "Provisional ed. 1992, minor revision 1994 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0607003553"], "publish_date": "1995", "key": "/books/OL10944616M", "authors": [{"key": "/authors/OL79165A"}], "latest_revision": 3, "oclc_numbers": ["33418819"], "works": [{"key": "/works/OL901284W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10944693M 3 2011-04-30T11:30:23.469611 {"publishers": ["For sale by the Survey"], "physical_format": "Unknown Binding", "subtitle": "7.5 minute series (topographic)", "last_modified": {"type": "/type/datetime", "value": "2011-04-30T11:30:23.469611"}, "title": "Wilkes--Barre East quadrangle, Pennsylvania--Luzerne Co., 1994", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780607005233"], "edition_name": "Map edited 1995 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0607005238"], "publish_date": "1995", "key": "/books/OL10944693M", "authors": [{"key": "/authors/OL79165A"}], "latest_revision": 3, "oclc_numbers": ["34178844"], "works": [{"key": "/works/OL902324W"}], "type": {"key": "/type/edition"}, "subjects": ["Maps, Topographic", "Pennsylvania"], "revision": 3}
+/type/edition /books/OL10945257M 3 2011-04-29T17:14:32.740963 {"publishers": ["For sale by the Survey"], "physical_format": "Unknown Binding", "subtitle": "7.5 minute series (topographic)", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T17:14:32.740963"}, "title": "Turn quadrangle, New Mexico, 1991", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780607622492"], "edition_name": "Rev. 1995 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0607622490"], "publish_date": "1996", "key": "/books/OL10945257M", "authors": [{"key": "/authors/OL79165A"}], "latest_revision": 3, "oclc_numbers": ["35132261"], "works": [{"key": "/works/OL901906W"}], "type": {"key": "/type/edition"}, "subjects": ["Maps, Topographic", "New Mexico"], "revision": 3}
+/type/edition /books/OL10945268M 5 2011-04-29T03:07:38.103704 {"publishers": ["For sale by Information Services"], "physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T03:07:38.103704"}, "title": "Geologic map of the Gillam Draw quadrangle, Rio Blanco County, Colorado (Miscellaneous field studies)", "identifiers": {"goodreads": ["5085863"]}, "isbn_13": ["9780607622638"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0607622636"], "publish_date": "1996", "key": "/books/OL10945268M", "authors": [{"key": "/authors/OL79165A"}], "latest_revision": 5, "oclc_numbers": ["35080148"], "works": [{"key": "/works/OL897577W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10945473M 2 2009-12-09T06:57:17.551523 {"physical_format": "Unknown Binding", "languages": [{"key": "/languages/eng"}], "subtitle": "47093, digital raster graphic data", "publishers": ["USGS Branch of Distribution"], "isbn_10": ["0607847212"], "title": "Bigfork, MN and Pokegama Lake, MN: Hibbing, MN ", "edition_name": "Ed. 1 edition", "isbn_13": ["9780607847215"], "last_modified": {"type": "/type/datetime", "value": "2009-12-09T06:57:17.551523"}, "publish_date": "1996", "key": "/books/OL10945473M", "authors": [{"key": "/authors/OL79165A"}], "latest_revision": 2, "works": [{"key": "/works/OL895817W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10945603M 2 2009-12-09T06:57:54.505649 {"physical_format": "Unknown Binding", "subtitle": "US GEODATA", "title": "Lane County, KS [computer file]: Digital orthophoto quadrangle data ", "isbn_10": ["0607854146"], "publishers": ["USGS Branch of Distribution"], "isbn_13": ["9780607854145"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-09T06:57:54.505649"}, "publish_date": "1996", "key": "/books/OL10945603M", "authors": [{"key": "/authors/OL79165A"}], "latest_revision": 2, "subjects": ["Maps, Topographic", "Lane County (Kan.)"], "works": [{"key": "/works/OL899300W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10945653M 3 2011-04-27T15:36:04.154440 {"publishers": ["For sale by the Survey"], "physical_format": "Unknown Binding", "subtitle": "7.5 minute series (topographic)", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T15:36:04.154440"}, "title": "San Felipe Mesa quadrangle, New Mexico--Sandoval Co., 1990", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780607854879"], "edition_name": "Rev. 1995 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0607854871"], "publish_date": "1996", "key": "/books/OL10945653M", "authors": [{"key": "/authors/OL79165A"}], "latest_revision": 3, "oclc_numbers": ["35979994"], "works": [{"key": "/works/OL901109W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10945707M 3 2011-04-25T16:20:27.877721 {"publishers": ["Louisiana Dept. of Transportation and Development"], "physical_format": "Unknown Binding", "subtitle": "7.5 minute series (topographic)", "last_modified": {"type": "/type/datetime", "value": "2011-04-25T16:20:27.877721"}, "title": "Deridder quadrangle, Louisiana--Beauregard Parish, 1994", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780607856903"], "edition_name": "Rev. 1997 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0607856904"], "publish_date": "1997", "key": "/books/OL10945707M", "authors": [{"key": "/authors/OL79165A"}], "latest_revision": 3, "oclc_numbers": ["37713588"], "works": [{"key": "/works/OL896611W"}], "type": {"key": "/type/edition"}, "subjects": ["Maps, Topographic", "Louisiana"], "revision": 3}
+/type/edition /books/OL109459M 2 2020-12-02T09:52:52.435646 {"publishers": ["Instituto Cultural de Macau"], "pagination": "1 v.", "subtitle": "cinquentena\u0301rio da morte de Fernando Pessoa (1935-1985).", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part28.utf8:98765939:654"], "title": "Fernando Pessoa", "lccn": ["99228579"], "notes": {"type": "/type/text", "value": "PRIORITY 3."}, "languages": [{"key": "/languages/por"}], "lc_classifications": ["IN PROCESS", "MLCM 2006/01729 (P)"], "publish_date": "1985", "publish_country": "mh ", "key": "/books/OL109459M", "publish_places": ["Macau"], "works": [{"key": "/works/OL23723771W"}], "type": {"key": "/type/edition"}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-02T09:52:52.435646"}}
+/type/edition /books/OL10946103M 3 2011-04-26T16:07:53.704029 {"publishers": ["For sale by the Survey"], "physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2011-04-26T16:07:53.704029"}, "title": "Quantico quadrangle, Virginia--Maryland, 1994", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780607870596"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0607870591"], "publish_date": "1998", "key": "/books/OL10946103M", "authors": [{"key": "/authors/OL79165A"}], "latest_revision": 3, "oclc_numbers": ["43973862"], "works": [{"key": "/works/OL900775W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10946277M 3 2011-04-29T07:54:18.305013 {"publishers": ["For sale by the Survey"], "physical_format": "Unknown Binding", "subtitle": "7.5 minute series (topographic)", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T07:54:18.305013"}, "title": "Antioch quadrangle, Ohio--Monroe Co., 1994", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780607873474"], "edition_name": "Rev. 1997 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0607873477"], "publish_date": "1998", "key": "/books/OL10946277M", "authors": [{"key": "/authors/OL79165A"}], "latest_revision": 3, "oclc_numbers": ["40057040"], "works": [{"key": "/works/OL895530W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10946333M 3 2011-04-27T10:32:42.642190 {"publishers": ["For sale by the Survey"], "physical_format": "Unknown Binding", "subtitle": "7.5 minute series (topographic)", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T10:32:42.642190"}, "title": "Suffield quadrangle, Ohio--Portage Co., 1994", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780607874044"], "edition_name": "Rev. 1997 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["060787404X"], "publish_date": "1997", "key": "/books/OL10946333M", "authors": [{"key": "/authors/OL79165A"}], "latest_revision": 3, "oclc_numbers": ["39082704"], "works": [{"key": "/works/OL901588W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10946379M 3 2011-04-26T03:42:41.654696 {"publishers": ["For sale by the Survey"], "physical_format": "Unknown Binding", "subtitle": "7.5 minute series (topographic)", "last_modified": {"type": "/type/datetime", "value": "2011-04-26T03:42:41.654696"}, "title": "Caldwell North quadrangle, Ohio, 1994", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780607874501"], "edition_name": "Rev. 1997 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0607874503"], "publish_date": "1998", "key": "/books/OL10946379M", "authors": [{"key": "/authors/OL79165A"}], "latest_revision": 3, "oclc_numbers": ["40063731"], "works": [{"key": "/works/OL896002W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10946386M 3 2011-04-26T18:35:30.743315 {"publishers": ["For sale by the Survey"], "physical_format": "Unknown Binding", "subtitle": "7.5 minute series (topographic)", "last_modified": {"type": "/type/datetime", "value": "2011-04-26T18:35:30.743315"}, "title": "Bloomfield quadrangle, Ohio, 1994", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780607874570"], "edition_name": "Rev. 1997 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0607874570"], "publish_date": "1998", "key": "/books/OL10946386M", "authors": [{"key": "/authors/OL79165A"}], "latest_revision": 3, "oclc_numbers": ["40327119"], "works": [{"key": "/works/OL895856W"}], "type": {"key": "/type/edition"}, "subjects": ["Maps, Topographic", "Ohio"], "revision": 3}
+/type/edition /books/OL10946405M 2 2009-12-09T06:57:36.529586 {"physical_format": "Unknown Binding", "languages": [{"key": "/languages/eng"}], "subtitle": "7.5 minute series (topographic)", "publishers": ["For sale by the Survey"], "isbn_10": ["0607874767"], "title": "Fredericksburg quadrangle, Ohio, 1994", "edition_name": "Rev. 1997 edition", "isbn_13": ["9780607874761"], "last_modified": {"type": "/type/datetime", "value": "2009-12-09T06:57:36.529586"}, "publish_date": "1997", "key": "/books/OL10946405M", "authors": [{"key": "/authors/OL79165A"}], "latest_revision": 2, "works": [{"key": "/works/OL897115W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10946547M 5 2011-04-22T19:53:26.068740 {"publishers": ["Louisiana Dept. of Public Works"], "physical_format": "Unknown Binding", "subtitle": "7.5 minute series (topographic)", "last_modified": {"type": "/type/datetime", "value": "2011-04-22T19:53:26.068740"}, "title": "New Iberia South quadrangle, Louisiana--Iberia Parish, 1994", "identifiers": {"goodreads": ["5091391"]}, "isbn_13": ["9780607880700"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0607880708"], "publish_date": "1998", "key": "/books/OL10946547M", "authors": [{"key": "/authors/OL79165A"}], "latest_revision": 5, "oclc_numbers": ["42907348"], "works": [{"key": "/works/OL900122W"}], "type": {"key": "/type/edition"}, "subjects": ["Maps, Topographic", "Louisiana"], "revision": 5}
+/type/edition /books/OL10947286M 3 2011-04-28T09:09:17.677672 {"publishers": ["For sale by the Survey"], "physical_format": "Unknown Binding", "subtitle": "7.5 minute series (topographic)", "last_modified": {"type": "/type/datetime", "value": "2011-04-28T09:09:17.677672"}, "title": "Canton West quadrangle, Ohio--Stark Co., 1994", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780607914542"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0607914548"], "publish_date": "2000", "key": "/books/OL10947286M", "authors": [{"key": "/authors/OL79165A"}], "latest_revision": 3, "oclc_numbers": ["47680761"], "works": [{"key": "/works/OL896048W"}], "type": {"key": "/type/edition"}, "subjects": ["Maps, Topographic", "Ohio"], "revision": 3}
+/type/edition /books/OL10947346M 3 2011-04-29T12:13:25.119719 {"publishers": ["Division of Geology and Land Survey"], "physical_format": "Unknown Binding", "subtitle": "7.5 minute series (topographic)", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T12:13:25.119719"}, "title": "Springfield quadrangle, Missouri--Greene Co., 1996", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780607916621"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0607916621"], "publish_date": "2000", "key": "/books/OL10947346M", "authors": [{"key": "/authors/OL79165A"}], "latest_revision": 3, "oclc_numbers": ["45369214"], "works": [{"key": "/works/OL901432W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10947388M 3 2011-04-26T21:13:47.506929 {"publishers": ["For sale by the Survey"], "physical_format": "Unknown Binding", "subtitle": "7.5 minute series (topographic)", "last_modified": {"type": "/type/datetime", "value": "2011-04-26T21:13:47.506929"}, "title": "Deale quadrangle, Maryland, 1997", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780607917246"], "edition_name": "Photoinspected 1997, boundaries verified 1999 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0607917245"], "publish_date": "1999", "key": "/books/OL10947388M", "authors": [{"key": "/authors/OL79165A"}], "latest_revision": 3, "oclc_numbers": ["42910927"], "works": [{"key": "/works/OL896570W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10947586M 3 2011-04-29T07:54:18.305013 {"publishers": ["For sale by the Survey"], "physical_format": "Unknown Binding", "subtitle": "7.5 minute series (topographic)", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T07:54:18.305013"}, "title": "McAlevys Fort quadrangle, Pennsylvania", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780607923841"], "edition_name": "Photoinspected 1998, boundaries rev. 1999 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0607923849"], "publish_date": "1999", "key": "/books/OL10947586M", "authors": [{"key": "/authors/OL79165A"}], "latest_revision": 3, "oclc_numbers": ["45295516"], "works": [{"key": "/works/OL899648W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10947667M 3 2011-04-30T13:25:16.965771 {"publishers": ["For sale by the Survey"], "physical_format": "Unknown Binding", "subtitle": "7.5 minute series (topographic)", "last_modified": {"type": "/type/datetime", "value": "2011-04-30T13:25:16.965771"}, "title": "French Village quadrangle, Illinois--St. Clair Co", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780607925142"], "edition_name": "Photoinspected 1998, boundaries verified 1999 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0607925140"], "publish_date": "1999", "key": "/books/OL10947667M", "authors": [{"key": "/authors/OL79165A"}], "latest_revision": 3, "oclc_numbers": ["43269449"], "works": [{"key": "/works/OL897128W"}], "type": {"key": "/type/edition"}, "subjects": ["Maps, Topographic", "Illinois"], "revision": 3}
+/type/edition /books/OL10948364M 3 2011-06-08T02:55:38.003552 {"publishers": ["For sale by the Survey"], "physical_format": "Unknown Binding", "subtitle": "7.5 minute series (topographic)", "last_modified": {"type": "/type/datetime", "value": "2011-06-08T02:55:38.003552"}, "title": "Bethany quadrangle, West Virginia--Pennsylvania", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780607942101"], "edition_name": "Photoinspected 1998, boundaries rev. 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["060794210X"], "publish_date": "2000", "key": "/books/OL10948364M", "authors": [{"key": "/authors/OL79165A"}], "latest_revision": 3, "oclc_numbers": ["45606986"], "works": [{"key": "/works/OL895780W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL1094858M 6 2020-11-18T09:45:07.366086 {"publishers": ["Chelsea House"], "number_of_pages": 111, "isbn_10": ["0791023443", "0791023699"], "subject_place": ["United States"], "covers": [3878239, 3877863], "lc_classifications": ["PN1995.9.T5 S38 1995"], "latest_revision": 6, "key": "/books/OL1094858M", "authors": [{"key": "/authors/OL581344A"}], "ocaid": "threestoogespopc00mark", "publish_places": ["New York"], "contributions": ["Scordato, Ellen."], "pagination": "111 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:130265603:1166"], "title": "The Three Stooges", "dewey_decimal_class": ["791.43/028/0922", "B"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 105) and index.\nFilmography: p. 106-107."}, "identifiers": {"goodreads": ["6519901"]}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["94019343"], "subjects": ["Three Stooges (Comedy team) -- Juvenile literature.", "Three Stooges (Comedy team)", "Three Stooges films -- Juvenile literature.", "Motion picture actors and actresses -- United States -- Biography -- Juvenile literature.", "Comedians -- United States -- Biography -- Juvenile literature.", "Actors and actresses.", "Comedians."], "publish_date": "1995", "publish_country": "nyu", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T09:45:07.366086"}, "series": ["Pop culture legends"], "by_statement": "Mark and Ellen Scordato.", "works": [{"key": "/works/OL3484016W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL10948668M 4 2011-04-29T12:13:25.119719 {"publishers": ["U.S. Geological Survey"], "physical_format": "Unknown Binding", "subtitle": "30 x 60 minute series (topographic) (Surface management status)", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T12:13:25.119719"}, "source_records": ["amazon:0607948906"], "title": "Colorado: Lamar : 1:100,000-scale topographic map ", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780607948905"], "edition_name": "BLM ed. 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0607948906"], "publish_date": "2000", "key": "/books/OL10948668M", "authors": [{"key": "/authors/OL18485A"}], "latest_revision": 4, "oclc_numbers": ["44779914"], "works": [{"key": "/works/OL69894W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10948805M 3 2011-04-27T21:33:59.071979 {"publishers": ["For sale by the Survey"], "physical_format": "Unknown Binding", "subtitle": "7.5 minute series (topographic)", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T21:33:59.071979"}, "title": "Fruitland quadrangle, North Carolina", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780607955309"], "edition_name": "Photoinspected 1997, boundaries verified 2000 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0607955309"], "publish_date": "2001", "key": "/books/OL10948805M", "authors": [{"key": "/authors/OL79165A"}], "latest_revision": 3, "oclc_numbers": ["47935870"], "works": [{"key": "/works/OL897143W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10948910M 5 2011-04-27T23:00:30.950549 {"publishers": ["For sale by the Survey"], "subtitle": "7.5 minute series (topographic)", "edition_name": "Planimetry derived 1999, boundaries current as of edition", "physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T23:00:30.950549"}, "latest_revision": 5, "key": "/books/OL10948910M", "authors": [{"key": "/authors/OL79165A"}], "subjects": ["Maps, Topographic", "Pennsylvania"], "isbn_13": ["9780607960891"], "title": "Delano quadrangle, Pennsylvania--Schuylkill Co", "identifiers": {"goodreads": ["2484038"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0607960892"], "publish_date": "2001", "oclc_numbers": ["49598287"], "works": [{"key": "/works/OL896587W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10949527M 4 2011-04-26T00:04:34.573521 {"publishers": ["U.S. Geological Survey"], "physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2011-04-26T00:04:34.573521"}, "source_records": ["amazon:060798953X"], "title": "Oregon: Adel : 1:100,000-scale topographic map (Surface management status, mineral management status)", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780607989533"], "edition_name": "BLM ed., 2002 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["060798953X"], "publish_date": "2002", "key": "/books/OL10949527M", "authors": [{"key": "/authors/OL18485A"}], "latest_revision": 4, "oclc_numbers": ["50505944"], "works": [{"key": "/works/OL430831W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10949625M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Books on Demand"], "type": {"key": "/type/edition"}, "number_of_pages": 295, "isbn_13": ["9780608027937"], "isbn_10": ["0608027936"], "publish_date": "December 1985", "key": "/books/OL10949625M", "title": "States Vs. Markets in the World-System", "contributions": ["Peter Evans (Editor)", "Evelyne H. Stephens (Editor)", "Dietrich Rueschemeyer (Editor)"], "subjects": ["History & Theory - General", "Politics - Current Events"], "revision": 1}
+/type/edition /books/OL1094978M 13 2022-07-11T18:45:06.365628 {"publishers": ["Cambridge University Press"], "identifiers": {"goodreads": ["4246922", "1708741"]}, "isbn_10": ["0521473497", "052148362X"], "subject_place": ["France", "Paris"], "covers": [342377], "lc_classifications": ["KJV3747 .S93 1995"], "key": "/books/OL1094978M", "authors": [{"key": "/authors/OL581391A"}], "ocaid": "politicsparlemen00swan", "publish_places": ["Cambridge", "New York, NY"], "subjects": ["France. Parlement (Paris) -- History.", "Justice, Administration of -- France -- Paris -- History -- 18th century.", "France -- Politics and government -- 1715-1774."], "lccn": ["94019471"], "subject_time": ["18th century.", "1715-1774."], "pagination": "x, 390 p. ;", "uri_descriptions": ["Book review (H-Net)", "Publisher description", "Table of contents"], "source_records": ["marc:OpenLibraries-Trent-MARCs/tier5.mrc:47167232:1061", "amazon:0521473497", "ia:politicsparlemen0000swan", "bwb:9780521483629", "bwb:9780521473491", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:130376356:1153", "marc:marc_uic/UIC_2022.mrc:134841318:1711"], "title": "Politics and the Parlement of Paris under Louis XV, 1754-1774", "url": ["http://www.h-net.org/review/hrev-a0a5i4-aa", "http://www.loc.gov/catdir/description/cam026/94019471.html", "http://www.loc.gov/catdir/toc/cam021/94019471.html"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 369-379) and index."}, "number_of_pages": 390, "languages": [{"key": "/languages/eng"}], "dewey_decimal_class": ["328.44/071/09033"], "local_id": ["urn:trent:0116404429031"], "publish_date": "1995", "publish_country": "enk", "by_statement": "Julian Swann.", "works": [{"key": "/works/OL3484243W"}], "type": {"key": "/type/edition"}, "uris": ["http://www.h-net.org/review/hrev-a0a5i4-aa", "http://www.loc.gov/catdir/description/cam026/94019471.html", "http://www.loc.gov/catdir/toc/cam021/94019471.html"], "oclc_numbers": ["30670941"], "latest_revision": 13, "revision": 13, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-11T18:45:06.365628"}}
+/type/edition /books/OL10949795M 2 2009-12-15T00:56:25.099817 {"physical_format": "Hardcover", "title": "Second Annual Opportunities for Minority Students at Law Schools in the U. S.", "isbn_10": ["0609603132"], "publishers": ["Crown Publishing Group (NY)"], "isbn_13": ["9780609603130"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:56:25.099817"}, "publish_date": "September 1999", "key": "/books/OL10949795M", "authors": [{"key": "/authors/OL3516332A"}], "latest_revision": 2, "subjects": ["Regional & Ethnic - American - General", "Cooking / Wine"], "works": [{"key": "/works/OL9504424W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10950298M 5 2010-04-24T18:11:03.046166 {"publishers": ["Rebound by Sagebrush"], "languages": [{"key": "/languages/spa"}], "identifiers": {"goodreads": ["1030347"]}, "weight": "11.7 ounces", "title": "Pesca De Nessa/Nessa's Fish (Libros Colibri)", "number_of_pages": 32, "isbn_13": ["9780613056809"], "covers": [2540535], "physical_format": "Library Binding", "authors": [{"key": "/authors/OL226804A"}], "isbn_10": ["0613056809"], "latest_revision": 5, "key": "/books/OL10950298M", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:11:03.046166"}, "publish_date": "October 1999", "works": [{"key": "/works/OL1894894W"}], "type": {"key": "/type/edition"}, "subjects": ["Action & Adventure", "Action & Adventure - General", "People & Places - United States - Native American", "Children's 4-8 - Picturebooks", "Children: Grades 2-3"], "physical_dimensions": "9.2 x 9.1 x 0.4 inches", "revision": 5}
+/type/edition /books/OL10950412M 7 2022-11-17T15:08:12.831390 {"publishers": ["Bt Bound"], "languages": [{"key": "/languages/spa"}, {"key": "/languages/ice"}], "title": "Chico Para Jessica/Older Boy", "isbn_13": ["9780613069151"], "edition_name": "Spanish edition", "physical_format": "Library Binding", "isbn_10": ["0613069153"], "publish_date": "October 1999", "key": "/books/OL10950412M", "authors": [{"key": "/authors/OL716700A"}], "works": [{"key": "/works/OL2482778W"}], "type": {"key": "/type/edition"}, "subjects": ["Spanish: Grades 3-4"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T15:08:12.831390"}}
+/type/edition /books/OL10950906M 4 2010-04-24T18:11:03.046166 {"publishers": ["Bt Bound"], "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:11:03.046166"}, "title": "Matt Damon and Ben Affleck", "identifiers": {"goodreads": ["6093336"]}, "isbn_13": ["9780613118521"], "physical_format": "Library Binding", "isbn_10": ["0613118529"], "publish_date": "October 1999", "key": "/books/OL10950906M", "authors": [{"key": "/authors/OL244630A"}], "latest_revision": 4, "works": [{"key": "/works/OL2025879W"}], "type": {"key": "/type/edition"}, "subjects": ["Biography & Autobiography - Performing Arts", "Performing Arts - Film", "Juvenile Nonfiction", "Children: Grades 3-4"], "revision": 4}
+/type/edition /books/OL10951038M 7 2022-06-10T21:37:54.515393 {"publishers": ["Tandem Library"], "languages": [{"key": "/languages/spa"}], "weight": "6.1 ounces", "title": "La semilla de zanahoria", "identifiers": {"goodreads": ["7305762"]}, "isbn_13": ["9780613142069"], "covers": [5082244], "physical_format": "School & Library Binding", "authors": [{"key": "/authors/OL247209A"}], "isbn_10": ["0613142063"], "physical_dimensions": "8.2 x 6.2 x 0.4 inches", "key": "/books/OL10951038M", "publish_date": "October 1999", "works": [{"key": "/works/OL2040921W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Children's Books/Baby-Preschool", "Spanish: Grades 4-7"], "first_sentence": {"type": "/type/text", "value": "Un ninito sembro una semilla de zanahoria."}, "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-10T21:37:54.515393"}}
+/type/edition /books/OL10951393M 3 2009-12-15T00:56:26.901146 {"physical_format": "School & Library Binding", "weight": "5.4 ounces", "title": "Beat Box Talks", "isbn_10": ["0613231384"], "publishers": ["Tandem Library"], "isbn_13": ["9780613231381"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:56:26.901146"}, "publish_date": "September 1988", "key": "/books/OL10951393M", "authors": [{"key": "/authors/OL1198310A"}], "latest_revision": 3, "subjects": ["General", "Fiction", "Children's Books/Ages 9-12 Fiction"], "works": [{"key": "/works/OL5286774W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "7.1 x 4.9 x 0.4 inches", "revision": 3}
+/type/edition /books/OL10951452M 4 2010-04-24T18:11:03.046166 {"publishers": ["Bt Bound"], "physical_format": "Library Binding", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:11:03.046166"}, "title": "Into the Woods", "identifiers": {"goodreads": ["1827471"]}, "isbn_13": ["9780613257237"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0613257235"], "publish_date": "September 2000", "key": "/books/OL10951452M", "authors": [{"key": "/authors/OL1389425A"}], "latest_revision": 4, "works": [{"key": "/works/OL5712143W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Juvenile Fiction", "Children: Grades 4-6"], "revision": 4}
+/type/edition /books/OL10952070M 4 2010-04-24T18:11:03.046166 {"publishers": ["Tandem Library"], "physical_format": "Library Binding", "weight": "9.6 ounces", "title": "Familia Numerozzi/Family Minus", "identifiers": {"goodreads": ["1033549"]}, "isbn_13": ["9780613359429"], "languages": [{"key": "/languages/spa"}], "authors": [{"key": "/authors/OL1235100A"}], "isbn_10": ["0613359429"], "publish_date": "March 2001", "key": "/books/OL10952070M", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:11:03.046166"}, "latest_revision": 4, "works": [{"key": "/works/OL5363245W"}], "type": {"key": "/type/edition"}, "subjects": ["Science & Technology", "Juvenile Fiction", "Spanish: Grades 1-2"], "physical_dimensions": "9 x 7.2 x 0.2 inches", "revision": 4}
+/type/edition /books/OL10952274M 4 2022-12-10T01:51:06.123504 {"publishers": ["Tandem Library"], "number_of_pages": 108, "subtitle": "Fifty Activities and Things to Make", "weight": "1.1 pounds", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0613496272"], "title": "Geography", "isbn_13": ["9780613496278"], "covers": [2540838], "physical_format": "School & Library Binding", "key": "/books/OL10952274M", "authors": [{"key": "/authors/OL25035A"}], "publish_date": "December 2003", "works": [{"key": "/works/OL34549W"}], "type": {"key": "/type/edition"}, "subjects": ["Earth Sciences - Geography", "Teaching Methods & Materials - Social Science", "Science & Nature - Experiments & Projects", "Juvenile Nonfiction", "Education / Teaching", "Children: Grades 4-6"], "physical_dimensions": "10.9 x 8.5 x 0.5 inches", "local_id": ["urn:bwbsku:P6-BZX-699"], "source_records": ["promise:bwb_daily_pallets_2020-08-06"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T01:51:06.123504"}}
+/type/edition /books/OL10952559M 5 2011-04-26T22:15:42.386210 {"publishers": ["Tandem Library"], "subtitle": "Pikachu's Apple Company", "weight": "8 ounces", "physical_format": "School & Library Binding", "last_modified": {"type": "/type/datetime", "value": "2011-04-26T22:15:42.386210"}, "latest_revision": 5, "key": "/books/OL10952559M", "authors": [{"key": "/authors/OL1608774A"}], "subjects": ["Media Tie-In", "Juvenile Fiction", "Children: Grades 1-2"], "isbn_13": ["9780613575546"], "title": "Pikachu and Pichu", "identifiers": {"goodreads": ["2913984"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0613575547"], "publish_date": "December 2003", "oclc_numbers": ["63120488"], "works": [{"key": "/works/OL6225572W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "7.6 x 5.2 x 0.4 inches", "revision": 5}
+/type/edition /books/OL10952922M 4 2010-04-24T18:11:03.046166 {"publishers": ["Tandem Library"], "physical_format": "School & Library Binding", "weight": "8.8 ounces", "title": "Little Engine That Could Goes on a Class Trip", "identifiers": {"goodreads": ["1362916"]}, "isbn_13": ["9780613675635"], "languages": [{"key": "/languages/eng"}], "authors": [{"key": "/authors/OL3231905A"}], "isbn_10": ["0613675630"], "publish_date": "December 2003", "key": "/books/OL10952922M", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:11:03.046166"}, "latest_revision": 4, "works": [{"key": "/works/OL9153082W"}], "type": {"key": "/type/edition"}, "subjects": ["Readers - Beginner", "School & Education", "Transportation - General", "Juvenile Fiction", "Fiction", "Lost children", "Railroads", "School field trips", "Zoos", "Children: Kindergarten"], "physical_dimensions": "8 x 7.9 x 0.3 inches", "revision": 4}
+/type/edition /books/OL10952955M 4 2010-04-24T18:11:03.046166 {"publishers": ["Tandem Library"], "physical_format": "School & Library Binding", "weight": "13.6 ounces", "title": "Missions of the Monterey Bay Area", "identifiers": {"goodreads": ["6769093"]}, "isbn_13": ["9780613682619"], "languages": [{"key": "/languages/eng"}], "authors": [{"key": "/authors/OL393130A"}], "isbn_10": ["0613682610"], "publish_date": "December 2003", "key": "/books/OL10952955M", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:11:03.046166"}, "latest_revision": 4, "works": [{"key": "/works/OL2690737W"}], "type": {"key": "/type/edition"}, "subjects": ["Christian Ministry - Missions", "Religion", "California", "History", "Juvenile literature", "Missions", "Monterey Bay Region", "Spanish mission buildings"], "physical_dimensions": "8.5 x 7.9 x 0.5 inches", "revision": 4}
+/type/edition /books/OL10953083M 4 2010-04-24T18:11:03.046166 {"publishers": ["Tandem Library"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:11:03.046166"}, "title": "David y Goliat", "identifiers": {"goodreads": ["6838041"]}, "isbn_13": ["9780613711159"], "languages": [{"key": "/languages/spa"}], "isbn_10": ["0613711157"], "publish_date": "October 1998", "key": "/books/OL10953083M", "authors": [{"key": "/authors/OL3516585A"}], "latest_revision": 4, "works": [{"key": "/works/OL9504803W"}], "type": {"key": "/type/edition"}, "subjects": ["Juvenile Fiction", "Short Stories", "Children's Baby - Fiction - General"], "revision": 4}
+/type/edition /books/OL10953089M 2 2009-12-09T04:11:15.499768 {"physical_format": "Hardcover", "title": "Dalila La Taimada y Su Torre de Mentiras", "isbn_10": ["0613711211"], "publishers": ["Tandem Library"], "isbn_13": ["9780613711210"], "languages": [{"key": "/languages/spa"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-09T04:11:15.499768"}, "publish_date": "October 1999", "key": "/books/OL10953089M", "authors": [{"key": "/authors/OL66269A"}], "latest_revision": 2, "subjects": ["Juvenile Fiction", "Short Stories", "Children's Baby - Fiction - General"], "works": [{"key": "/works/OL791854W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10953247M 2 2009-12-15T00:56:28.373063 {"physical_format": "Hardcover", "title": "Vamos a Divertirnos - Azul", "isbn_10": ["0613712846"], "publishers": ["Tandem Library"], "isbn_13": ["9780613712842"], "languages": [{"key": "/languages/spa"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:56:28.373063"}, "publish_date": "June 2000", "key": "/books/OL10953247M", "authors": [{"key": "/authors/OL3221059A"}], "latest_revision": 2, "subjects": ["Activity Books - Coloring Books", "Juvenile Nonfiction", "Children's 9-12", "Children's Books/Ages 9-12 Nonfiction"], "works": [{"key": "/works/OL9139070W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10953476M 2 2010-08-17T04:59:15.702802 {"publishers": ["Tandem Library"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-08-17T04:59:15.702802"}, "title": "Hamtaro's New Home (Hamtaro (Sagebrush))", "contributions": ["Ruth Koeppel (Adapter)", "Bill Alger (Illustrator)"], "identifiers": {"librarything": ["8492958"]}, "isbn_13": ["9780613722186"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0613722183"], "publish_date": "June 2003", "key": "/books/OL10953476M", "latest_revision": 2, "type": {"key": "/type/edition"}, "subjects": ["Juvenile Fiction", "Media Tie-In", "Movie Tie - In", "Children's All Ages", "Children's Books/All Ages"], "revision": 2}
+/type/edition /books/OL10953651M 6 2020-11-16T22:42:09.094517 {"publishers": ["Tandem Library"], "languages": [{"key": "/languages/eng"}], "classifications": {}, "last_modified": {"type": "/type/datetime", "value": "2020-11-16T22:42:09.094517"}, "title": "Last Vampire Collector's Edition", "notes": {"type": "/type/text", "value": "Last Vampire Collector's Editions"}, "identifiers": {"goodreads": ["632494"]}, "isbn_13": ["9780613730501"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Unknown Binding", "isbn_10": ["061373050X"], "publish_date": "January 1998", "key": "/books/OL10953651M", "authors": [{"key": "/authors/OL92956A"}], "latest_revision": 6, "works": [{"key": "/works/OL1000705W"}], "type": {"key": "/type/edition"}, "subjects": ["Horror & Ghost Stories", "Children's Books - Young Adult Fiction"], "revision": 6}
+/type/edition /books/OL10953861M 2 2009-12-15T00:56:28.373063 {"physical_format": "Hardcover", "title": "In Mathematics: Level F (Strategies for Success: Level 6)", "isbn_10": ["0613740378"], "publishers": ["Tandem Library"], "isbn_13": ["9780613740371"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:56:28.373063"}, "publish_date": "December 2000", "key": "/books/OL10953861M", "authors": [{"key": "/authors/OL2812577A"}], "latest_revision": 2, "subjects": ["General", "Juvenile Fiction", "Children's 9-12", "Children's Books/Ages 9-12 Fiction"], "works": [{"key": "/works/OL8432166W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10954036M 2 2009-12-15T00:56:28.373063 {"physical_format": "Hardcover", "subtitle": "Duke Gets a Dip!", "title": "Adventures of Check-Up Pup", "isbn_10": ["0613746317"], "publishers": ["Tandem Library"], "isbn_13": ["9780613746311"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:56:28.373063"}, "publish_date": "December 2001", "key": "/books/OL10954036M", "authors": [{"key": "/authors/OL3510354A"}], "latest_revision": 2, "subjects": ["Animals - Pets", "Juvenile Fiction", "Short Stories", "Children's 4-8 - Animals/Pets"], "works": [{"key": "/works/OL9496979W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL1095407M 7 2023-01-06T16:11:29.278461 {"publishers": ["Appleton & Lange"], "identifiers": {"goodreads": ["2654538"], "librarything": ["4829162"]}, "isbn_10": ["0838579116"], "covers": [1588446], "lc_classifications": ["RE334 .C37 1995"], "key": "/books/OL1095407M", "authors": [{"key": "/authors/OL581527A"}], "publish_places": ["Norwalk, CT"], "languages": [{"key": "/languages/eng"}], "pagination": "xxiii, 552 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:130756241:850", "marc:marc_columbia/Columbia-extract-20221130-009.mrc:48941377:2406"], "title": "Primary care of the anterior segment", "dewey_decimal_class": ["617.7"], "notes": {"type": "/type/text", "value": "Includes bibliographical references and index."}, "number_of_pages": 552, "edition_name": "2nd ed.", "lccn": ["94019931"], "subjects": ["Anterior segment (Eye) -- Diseases.", "Anterior Eye Segment.", "Eye Diseases -- diagnosis.", "Eye Diseases -- therapy.", "Primary Health Care."], "publish_date": "1995", "publish_country": "ctu", "by_statement": "Louis J. Catania.", "works": [{"key": "/works/OL3485175W"}], "type": {"key": "/type/edition"}, "oclc_numbers": ["30593816"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2023-01-06T16:11:29.278461"}}
+/type/edition /books/OL10954344M 4 2010-04-24T18:11:03.046166 {"publishers": ["Tandem Library"], "physical_format": "Hardcover", "subtitle": "Pedro Claver, Santo Patrono de Los Esclavo", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:11:03.046166"}, "title": "Peter Claver, Patron Saint of Slaves", "identifiers": {"goodreads": ["1665282"]}, "isbn_13": ["9780613757683"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0613757688"], "publish_date": "January 2001", "key": "/books/OL10954344M", "authors": [{"key": "/authors/OL1424957A"}], "latest_revision": 4, "works": [{"key": "/works/OL5816174W"}], "type": {"key": "/type/edition"}, "subjects": ["Biography & Autobiography - Religious", "Juvenile Nonfiction", "Religion - Christianity", "Religion - Christianity - General", "Children's 4-8 - Biography / Autobiography", "Children's Books/Ages 4-8 Nonfiction"], "revision": 4}
+/type/edition /books/OL1095462M 10 2022-12-10T13:13:40.603049 {"other_titles": ["Yes, you can."], "publishers": ["Andrews and McMeel"], "identifiers": {"librarything": ["243222"], "goodreads": ["1396698"], "amazon": [""]}, "ia_box_id": ["IA150501"], "isbn_10": ["0836280784"], "ia_loaded_id": ["yesyoucanachiev000stow"], "lc_classifications": ["HG179 .S8446 1994"], "key": "/books/OL1095462M", "authors": [{"key": "/authors/OL581546A"}], "publish_places": ["Kansas City, Mo"], "contributions": ["Jonathan, Jack."], "pagination": "xxi, 280 p. :", "source_records": ["ia:yesyoucanachiev000stow", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:130806753:674", "ia:yesyoucanachieve0000stow", "promise:bwb_daily_pallets_2021-08-13", "promise:bwb_daily_pallets_2020-04-02"], "title": "Yes, you can-- achieve financial independence", "dewey_decimal_class": ["332.024"], "number_of_pages": 280, "languages": [{"key": "/languages/eng"}], "lccn": ["94019990"], "subjects": ["Finance, Personal."], "publish_date": "1994", "publish_country": "mou", "by_statement": "by James E. Stowers, with Jack Jonathan.", "oclc_numbers": ["30474374"], "works": [{"key": "/works/OL3485335W"}], "type": {"key": "/type/edition"}, "covers": [12544569], "ocaid": "yesyoucanachieve0000stow", "local_id": ["urn:bwbsku:W6-AXG-822", "urn:bwbsku:310-ABB-565"], "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T13:13:40.603049"}}
+/type/edition /books/OL10954887M 2 2009-12-15T00:56:29.613973 {"physical_format": "Hardcover", "title": "God Danced", "isbn_10": ["0613775635"], "publishers": ["Tandem Library"], "isbn_13": ["9780613775632"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:56:29.613973"}, "publish_date": "April 2002", "key": "/books/OL10954887M", "authors": [{"key": "/authors/OL3122723A"}], "latest_revision": 2, "subjects": ["Juvenile Fiction", "Religious - Christian", "Social Issues - Friendship", "Social Situations - Friendship", "Children's 9-12 - Fiction - Religious"], "works": [{"key": "/works/OL8988311W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10955255M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Tandem Library"], "title": "Winter Games", "isbn_13": ["9780613784191"], "isbn_10": ["0613784197"], "publish_date": "August 1991", "key": "/books/OL10955255M", "authors": [{"key": "/authors/OL3516882A"}, {"key": "/authors/OL2903427A"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Juvenile Fiction", "Children's Baby/Preschool", "Children's Books/Baby-Preschool"], "revision": 1}
+/type/edition /books/OL10955300M 4 2010-04-24T18:11:03.046166 {"publishers": ["Tandem Library"], "languages": [{"key": "/languages/eng"}], "subtitle": "Quebec's Intelligentsia And the Fascist Temptation, 19 (KC Flanagan Girl Detective)", "key": "/books/OL10955300M", "title": "Panic in Puerto Vallarta", "identifiers": {"goodreads": ["2612268"]}, "isbn_13": ["9780613785761"], "physical_format": "School & Library Binding", "isbn_10": ["0613785762"], "publish_date": "June 1998", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:11:03.046166"}, "authors": [{"key": "/authors/OL1425453A"}, {"key": "/authors/OL357227A"}], "latest_revision": 4, "type": {"key": "/type/edition"}, "subjects": ["Action & Adventure", "Action & Adventure - General", "Mysteries, Espionage, & Detective Stories", "Juvenile Fiction", "Children's 12-Up - Fiction - General", "Mystery and detective stories", "Children: Young Adult (Gr. 7-9)"], "revision": 4}
+/type/edition /books/OL10955906M 3 2010-04-24T18:11:03.046166 {"publishers": ["Tandem Library"], "languages": [{"key": "/languages/eng"}], "key": "/books/OL10955906M", "title": "Mystery of Moosehead Falls with Cassette(s)", "identifiers": {"goodreads": ["5909619"]}, "isbn_13": ["9780613805353"], "physical_format": "Hardcover", "isbn_10": ["0613805356"], "publish_date": "May 2002", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:11:03.046166"}, "authors": [{"key": "/authors/OL1295343A"}, {"key": "/authors/OL3516983A"}], "latest_revision": 3, "type": {"key": "/type/edition"}, "subjects": ["General", "Juvenile Fiction", "Children's 9-12", "Children's Books/Ages 9-12 Fiction"], "revision": 3}
+/type/edition /books/OL10956036M 3 2010-04-24T18:11:03.046166 {"publishers": ["Tandem Library"], "languages": [{"key": "/languages/spa"}], "key": "/books/OL10956036M", "title": "Un Viaje En Globo", "identifiers": {"goodreads": ["4227958"]}, "isbn_13": ["9780613806909"], "physical_format": "Hardcover", "isbn_10": ["0613806905"], "publish_date": "July 2000", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:11:03.046166"}, "authors": [{"key": "/authors/OL3517029A"}, {"key": "/authors/OL3204530A"}], "latest_revision": 3, "type": {"key": "/type/edition"}, "subjects": ["General", "Juvenile Nonfiction", "Children's 9-12", "Children's Books/Ages 9-12 Nonfiction"], "revision": 3}
+/type/edition /books/OL10956169M 6 2010-12-19T04:39:52.757328 {"publishers": ["Tandem Library"], "languages": [{"key": "/languages/spa"}], "last_modified": {"type": "/type/datetime", "value": "2010-12-19T04:39:52.757328"}, "title": "Aventuras de Ulises, Las", "identifiers": {"librarything": ["34660"], "goodreads": ["2552198"]}, "isbn_13": ["9780613808569"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Hardcover", "isbn_10": ["0613808568"], "publish_date": "July 2000", "key": "/books/OL10956169M", "authors": [{"key": "/authors/OL4326820A"}], "latest_revision": 6, "works": [{"key": "/works/OL1417707W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Juvenile Nonfiction", "Children's 9-12", "Children's Books/Ages 9-12 Nonfiction"], "revision": 6}
+/type/edition /books/OL1095617M 13 2022-08-12T14:56:32.575324 {"publishers": ["Bantam Books"], "number_of_pages": 198, "ia_box_id": ["IA176801"], "covers": [9628044], "ia_loaded_id": ["heavensprice00brow_0"], "lc_classifications": ["PS3552.R718 H4 1995"], "key": "/books/OL1095617M", "authors": [{"key": "/authors/OL22261A"}], "ocaid": "heavensprice00brow_0", "publish_places": ["New York"], "pagination": "198 p. ;", "source_records": ["marc:marc_records_scriblio_net/part24.dat:56444345:505", "ia:heavensprice00brow_0", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:130942589:505"], "title": "Heaven's price", "dewey_decimal_class": ["813/.54"], "identifiers": {"goodreads": ["3364554"], "librarything": ["116298"]}, "languages": [{"key": "/languages/eng"}], "lccn": ["94020158"], "isbn_10": ["0553096729"], "publish_date": "1995", "publish_country": "nyu", "by_statement": "Sandra Brown.", "works": [{"key": "/works/OL15334589W"}], "type": {"key": "/type/edition"}, "latest_revision": 13, "revision": 13, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-12T14:56:32.575324"}}
+/type/edition /books/OL10956240M 2 2009-12-08T04:25:48.596518 {"physical_format": "School & Library Binding", "weight": "8 ounces", "title": "Rugrats Aventuras En Panales", "isbn_10": ["0613809289"], "publishers": ["Tandem Library"], "isbn_13": ["9780613809283"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-08T04:25:48.596518"}, "publish_date": "April 1999", "key": "/books/OL10956240M", "authors": [{"key": "/authors/OL36715A"}], "latest_revision": 2, "subjects": ["Interactive Adventure", "Juvenile Fiction", "Children's Baby/Preschool", "Children's Books/Baby-Preschool", "Children: Young Adult (Gr. 7-9)"], "works": [{"key": "/works/OL523674W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "7.8 x 5.2 x 0.8 inches", "revision": 2}
+/type/edition /books/OL1095629M 9 2022-11-15T20:24:36.636675 {"publishers": ["Lexington Books", "Maxwell Macmillan Canada", "Maxwell Macmillan International"], "number_of_pages": 163, "subtitle": "still with us after all these years", "isbn_10": ["0029143950"], "subject_place": ["United States."], "covers": [9283215], "lc_classifications": ["HV5822.L9 L73 1994", "HV5822.L9L73 1994"], "key": "/books/OL1095629M", "ocaid": "lsdstillwithusaf0000unse", "publish_places": ["New York", "Toronto", "New York"], "contributions": ["Henderson, Leigh A.", "Glass, William J."], "pagination": "163 p. :", "source_records": ["ia:lsdstillwithusaf0000unse", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:130950671:813", "bwb:9780029143957", "marc:marc_scms/20220805_ADAM_MARC_records.mrc:101504967:2142", "amazon:0029143950"], "title": "LSD", "dewey_decimal_class": ["362.29/4"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 143-156) and index."}, "identifiers": {"librarything": ["2280275"], "goodreads": ["4587478"]}, "languages": [{"key": "/languages/eng"}], "lccn": ["94020172"], "subjects": ["LSD (Drug) -- United States."], "publish_date": "1994", "publish_country": "nyu", "by_statement": "edited by Leigh A. Henderson, William J. Glass.", "works": [{"key": "/works/OL924475W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:scms:0188500200228"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-15T20:24:36.636675"}}
+/type/edition /books/OL10956350M 3 2011-04-29T03:07:38.103704 {"publishers": ["Good Apple Inc"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T03:07:38.103704"}, "title": "Book Reports 2-3", "identifiers": {"librarything": ["6033764"]}, "isbn_13": ["9780768205701"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0768205700"], "publish_date": "August 2000", "key": "/books/OL10956350M", "latest_revision": 3, "oclc_numbers": ["53062421"], "type": {"key": "/type/edition"}, "subjects": ["General", "Education", "Education / Teaching"], "revision": 3}
+/type/edition /books/OL10956485M 3 2010-04-13T06:21:13.129510 {"publishers": ["Frank Schaffer"], "languages": [{"key": "/languages/eng"}], "key": "/books/OL10956485M", "weight": "1 ounces", "title": "Valentines Reward Stickers", "isbn_13": ["9780768208696"], "covers": [2618608], "physical_format": "Paperback", "isbn_10": ["0768208696"], "publish_date": "September 11, 2001", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:21:13.129510"}, "authors": [{"key": "/authors/OL2813985A"}], "latest_revision": 3, "works": [{"key": "/works/OL8441441W"}], "type": {"key": "/type/edition"}, "subjects": ["Education / Elementary", "Elementary", "Education"], "physical_dimensions": "12.5 x 2.8 x 0.1 inches", "revision": 3}
+/type/edition /books/OL10956681M 3 2010-04-13T06:21:13.129510 {"publishers": ["Frank Schaffer"], "languages": [{"key": "/languages/eng"}], "weight": "10.9 ounces", "title": "Teddy Bear Weather Bulletin Board Set", "isbn_10": ["0768216699"], "isbn_13": ["9780768216691"], "covers": [2618795], "edition_name": "Pstr edition", "physical_format": "Poster", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:21:13.129510"}, "latest_revision": 3, "key": "/books/OL10956681M", "authors": [{"key": "/authors/OL2813985A"}], "publish_date": "September 11, 2001", "works": [{"key": "/works/OL8441307W"}], "type": {"key": "/type/edition"}, "subjects": ["Education / Elementary", "Elementary", "Education"], "physical_dimensions": "23 x 18 x 0.1 inches", "revision": 3}
+/type/edition /books/OL10956782M 4 2012-09-08T12:03:11.533625 {"publishers": ["Frank Schaffer"], "weight": "8.6 ounces", "covers": [2618876], "edition_name": "Lslf edition", "physical_format": "Loose leaf", "last_modified": {"type": "/type/datetime", "value": "2012-09-08T12:03:11.533625"}, "latest_revision": 4, "key": "/books/OL10956782M", "subjects": ["Education / Elementary", "Elementary", "Education", "Education / Teaching"], "isbn_13": ["9780768225563"], "title": "Completion of Sixth Grade Fit-in-a-Frame Award (Award Certificates)", "number_of_pages": 36, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0768225566"], "publish_date": "January 15, 2003", "works": [{"key": "/works/OL8439796W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8 x 8 x 0.2 inches", "revision": 4}
+/type/edition /books/OL10957464M 2 2009-12-15T00:56:32.148530 {"physical_format": "Hardcover", "title": "Ribbons of Time Journal", "isbn_10": ["0768327148"], "publishers": ["Cedco Publishing Company"], "isbn_13": ["9780768327144"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:56:32.148530"}, "publish_date": "August 2005", "key": "/books/OL10957464M", "authors": [{"key": "/authors/OL105725A"}], "latest_revision": 2, "subjects": ["Non-Classifiable", "Nonfiction", "Novelty"], "works": [{"key": "/works/OL1055872W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10957468M 4 2010-04-24T18:11:03.046166 {"publishers": ["Cedco Publishing Company"], "number_of_pages": 64, "key": "/books/OL10957468M", "languages": [{"key": "/languages/eng"}], "title": "Baby's First Five Years Grandparent's Record Book Mermaid", "identifiers": {"goodreads": ["3102199"]}, "isbn_13": ["9780768327342"], "physical_format": "Hardcover", "isbn_10": ["0768327342"], "publish_date": "August 2005", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:11:03.046166"}, "authors": [{"key": "/authors/OL2853379A"}, {"key": "/authors/OL504688A"}], "latest_revision": 4, "type": {"key": "/type/edition"}, "subjects": ["Life Stages - Infants & Toddlers/General", "Parenting - Grandparenting", "Non-Classifiable", "Blank Books / Diaries / Memory Books", "Family / Parenting / Childbirth", "Blank Books/Journals", "Novelty"], "revision": 4}
+/type/edition /books/OL10958151M 2 2009-12-15T00:56:32.148530 {"publishers": ["Cedco Publishing"], "key": "/books/OL10958151M", "title": "San Francisco 2006 12-Month Wall Calendar", "isbn_13": ["9780768373356"], "physical_format": "Calendar", "isbn_10": ["0768373352"], "publish_date": "July 1, 2005", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:56:32.148530"}, "authors": [{"key": "/authors/OL2853379A"}], "latest_revision": 2, "works": [{"key": "/works/OL8527372W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10958168M 2 2009-12-15T00:56:32.148530 {"physical_format": "Calendar", "languages": [{"key": "/languages/eng"}], "publishers": ["Cedco Pub (Cal)"], "isbn_10": ["0768373875"], "title": "Barbie 2006 Calendar", "edition_name": "Boxed edition", "isbn_13": ["9780768373875"], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:56:32.148530"}, "publish_date": "August 30, 2005", "key": "/books/OL10958168M", "authors": [{"key": "/authors/OL2853379A"}], "latest_revision": 2, "subjects": ["Non-Classifiable", "Calendar"], "works": [{"key": "/works/OL8527267W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10958246M 4 2010-04-24T18:11:03.046166 {"publishers": ["Destiny Image Publishers"], "physical_format": "Audio CD", "subtitle": "Volume 3", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:11:03.046166"}, "title": "Catch the Fire", "identifiers": {"goodreads": ["3735735"]}, "isbn_13": ["9780768400830"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["076840083X"], "publish_date": "August 1997", "key": "/books/OL10958246M", "authors": [{"key": "/authors/OL3517128A"}], "latest_revision": 4, "works": [{"key": "/works/OL9506235W"}], "type": {"key": "/type/edition"}, "subjects": ["Unassigned Title"], "physical_dimensions": "5.7 x 4.9 x 0.4 inches", "revision": 4}
+/type/edition /books/OL10958706M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Hardcover", "weight": "9.8 pounds", "publishers": ["Info USA Inc"], "title": "Wisconsin Business Directory 2000 (Wisconsin Business to Business Marketing Directory)", "isbn_13": ["9780768701814"], "isbn_10": ["0768701813"], "publish_date": "December 1999", "key": "/books/OL10958706M", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "type": {"key": "/type/edition"}, "subjects": ["Directories", "Reference - General", "Business & Economics", "Reference"], "physical_dimensions": "12.5 x 9.2 x 4.2 inches", "revision": 1}
+/type/edition /books/OL10959571M 2 2010-04-13T06:21:13.129510 {"physical_format": "Calendar", "languages": [{"key": "/languages/eng"}], "subtitle": "The Wertheimer Collection", "weight": "13.1 ounces", "publishers": ["Landmark Calendars"], "title": "Elvis 2004 Calendar", "covers": [2620185], "edition_name": "Engagement edition", "isbn_13": ["9780768852868"], "isbn_10": ["0768852862"], "publish_date": "July 2003", "key": "/books/OL10959571M", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:21:13.129510"}, "latest_revision": 2, "subjects": ["Non-Classifiable", "Calendar"], "type": {"key": "/type/edition"}, "physical_dimensions": "8.8 x 7.5 x 0.8 inches", "revision": 2}
+/type/edition /books/OL10960100M 3 2018-01-10T06:17:01.909784 {"publishers": ["Peterson's Guides"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2018-01-10T06:17:01.909784"}, "title": "Distance Learning Set W/MBA 2000", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780768903188"], "physical_format": "Paperback", "isbn_10": ["0768903181"], "publish_date": "October 2000", "key": "/books/OL10960100M", "authors": [{"key": "/authors/OL2626143A"}], "latest_revision": 3, "works": [{"key": "/works/OL9513416W"}], "type": {"key": "/type/edition"}, "subjects": ["Graduate School Guides - Business", "Study Guides", "Reference"], "revision": 3}
+/type/edition /books/OL10960455M 3 2011-04-27T18:12:33.336032 {"publishers": ["Peterson's"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T18:12:33.336032"}, "title": "SAT II Success Math 1C and 2C, 4th ed", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780768915549"], "edition_name": "4 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0768915546"], "publish_date": "November 15, 2004", "key": "/books/OL10960455M", "authors": [{"key": "/authors/OL2626143A"}], "latest_revision": 3, "oclc_numbers": ["156824084"], "works": [{"key": "/works/OL15195842W"}], "type": {"key": "/type/edition"}, "subjects": ["Study Aids / SAT & PSAT (Scholastic Assessment Test & Preliminary Scholastic Assessment Test)", "SAT & PSAT", "Study Aids", "Test Prep"], "revision": 3}
+/type/edition /books/OL10960624M 3 2011-04-30T02:04:02.230920 {"publishers": ["Peterson's"], "weight": "1.5 pounds", "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-30T02:04:02.230920"}, "latest_revision": 3, "key": "/books/OL10960624M", "authors": [{"key": "/authors/OL2626143A"}], "subjects": ["Non-Classifiable", "General", "Education"], "isbn_13": ["9780768923742"], "source_records": ["amazon:0768923743"], "title": "Get Wise! MasteringSeries PracTest One", "number_of_pages": 32, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0768923743"], "publish_date": "June 18, 2006", "oclc_numbers": ["154696527"], "works": [{"key": "/works/OL269156W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.7 x 8.4 x 0.6 inches", "revision": 3}
+/type/edition /books/OL1096087M 10 2022-12-04T15:16:41.522987 {"publishers": ["Chelsea House"], "number_of_pages": 32, "description": {"type": "/type/text", "value": "Details the life and work of Marie Curie from early childhood to the discovery of radium and her two Nobel Prizes."}, "isbn_10": ["0791030113"], "subject_place": ["Poland"], "covers": [7271745, 3878385], "lc_classifications": ["QD22.C8 P37 1995", "QD22.C8P37 1995"], "key": "/books/OL1096087M", "authors": [{"key": "/authors/OL43360A"}], "publish_places": ["Philadelphia"], "pagination": "32 p. :", "source_records": ["marc:marc_records_scriblio_net/part24.dat:56855975:1139", "marc:marc_loc_updates/v36.i44.records.utf8:2644394:1153", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:131357407:1153", "bwb:9780791030110", "promise:bwb_daily_pallets_2022-08-30"], "title": "Marie Curie and radium", "dewey_decimal_class": ["540/.92", "B"], "notes": {"type": "/type/text", "value": "Includes index."}, "identifiers": {"goodreads": ["3753078"], "librarything": ["3097891"]}, "languages": [{"key": "/languages/eng"}], "lccn": ["94020657"], "subjects": ["Curie, Marie, 1867-1934 -- Juvenile literature", "Curie, Marie, 1867-1934", "Chemists -- Poland -- Biography -- Juvenile literature", "Women chemists -- Poland -- Biography -- Juvenile literature", "Radium -- Juvenile literature", "Chemists", "Women -- Biography"], "publish_date": "1995", "publish_country": "pau", "series": ["Science discoveries"], "by_statement": "Steve Parker.", "works": [{"key": "/works/OL133875W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:O8-CUI-313"], "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T15:16:41.522987"}}
+/type/edition /books/OL10961186M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Warner Bros Pubns"], "title": "Greatest", "isbn_13": ["9780769208817"], "isbn_10": ["0769208819"], "publish_date": "July 1999", "key": "/books/OL10961186M", "type": {"key": "/type/edition"}, "subjects": ["General", "Music"], "revision": 1}
+/type/edition /books/OL10961243M 3 2011-04-28T20:26:09.173701 {"publishers": ["Alfred Pub Co"], "physical_format": "Mass Market Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-28T20:26:09.173701"}, "title": "Popular Songs of Inspiration", "number_of_pages": 68, "isbn_13": ["9780769210186"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["076921018X"], "publish_date": "July 3, 1996", "key": "/books/OL10961243M", "authors": [{"key": "/authors/OL2811905A"}], "latest_revision": 3, "oclc_numbers": ["166359026"], "works": [{"key": "/works/OL8422625W"}], "type": {"key": "/type/edition"}, "subjects": ["Musical Instruments - Piano", "Music"], "revision": 3}
+/type/edition /books/OL10961285M 5 2011-04-25T22:09:30.044072 {"publishers": ["Alfred Pub Co"], "identifiers": {"goodreads": ["2247541"]}, "subtitle": "Piano", "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-25T22:09:30.044072"}, "latest_revision": 5, "key": "/books/OL10961285M", "authors": [{"key": "/authors/OL3517278A"}], "subjects": ["Musical Instruments - Piano", "Music"], "isbn_13": ["9780769211480"], "title": "La Boheme", "number_of_pages": 40, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0769211488"], "publish_date": "November 1989", "oclc_numbers": ["156834421"], "works": [{"key": "/works/OL9506437W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10961342M 5 2011-04-27T18:12:33.336032 {"publishers": ["Alfred Publishing Company"], "physical_format": "Mass Market Paperback", "revision": 5, "last_modified": {"type": "/type/datetime", "value": "2011-04-27T18:12:33.336032"}, "title": "Belwin's 21st Century Guitar Method 3", "number_of_pages": 52, "isbn_13": ["9780769213026"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/ger"}], "isbn_10": ["0769213022"], "publish_date": "February 18, 1997", "key": "/books/OL10961342M", "authors": [{"key": "/authors/OL2834587A"}], "latest_revision": 5, "oclc_numbers": ["166357418"], "works": [{"key": "/works/OL8487696W"}], "type": {"key": "/type/edition"}, "subjects": ["Instruction & Study - Techniques", "Musical Instruments - Guitar", "Instruction & Study - General", "Music", "Music/Songbooks"], "identifiers": {"goodreads": ["1591685"]}}
+/type/edition /books/OL10961418M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "subtitle": "50'S & 60's", "weight": "1.4 pounds", "publishers": ["Warner Bros Pubns"], "title": "Encyclopedia of Rock Music", "isbn_13": ["9780769215242"], "isbn_10": ["0769215246"], "publish_date": "June 1988", "key": "/books/OL10961418M", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "type": {"key": "/type/edition"}, "subjects": ["Genres & Styles - Rock", "Music"], "physical_dimensions": "12.2 x 9.2 x 0.5 inches", "revision": 1}
+/type/edition /books/OL10961562M 5 2010-04-24T18:11:03.046166 {"publishers": ["Alfred Publishing Company"], "languages": [{"key": "/languages/eng"}], "subtitle": "Violin (Sacred Instrumental Ensembles for All)", "weight": "3.2 ounces", "title": "Sacred Duets for All", "identifiers": {"goodreads": ["6565701"]}, "isbn_13": ["9780769217437"], "covers": [2620818], "physical_format": "Paperback", "authors": [{"key": "/authors/OL2853567A"}], "isbn_10": ["0769217435"], "latest_revision": 5, "key": "/books/OL10961562M", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:11:03.046166"}, "publish_date": "March 1998", "works": [{"key": "/works/OL8528256W"}], "type": {"key": "/type/edition"}, "subjects": ["Musical Instruments - General", "Music", "Music/Songbooks"], "physical_dimensions": "11.8 x 9.1 x 0.2 inches", "revision": 5}
+/type/edition /books/OL10961607M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Warner Bros Pubns"], "title": "Johann Sebastian Bach - 15 3 Part Sinfonias in Open Score", "isbn_13": ["9780769218076"], "isbn_10": ["0769218075"], "publish_date": "March 2000", "key": "/books/OL10961607M", "type": {"key": "/type/edition"}, "subjects": ["Music"], "revision": 1}
+/type/edition /books/OL10961621M 5 2022-12-03T23:57:17.732151 {"publishers": ["Alfred Publishing Company"], "covers": [5083528], "physical_format": "Paperback", "key": "/books/OL10961621M", "authors": [{"key": "/authors/OL1968071A"}, {"key": "/authors/OL2853581A"}], "subjects": ["Musical Instruments - General", "Music", "Music/Songbooks"], "isbn_13": ["9780769218625"], "source_records": ["bwb:9780769218625", "amazon:0769218628"], "title": "Duets for All", "number_of_pages": 24, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0769218628"], "publish_date": "March 1985", "oclc_numbers": ["154766612"], "works": [{"key": "/works/OL21724179W"}], "type": {"key": "/type/edition"}, "first_sentence": {"type": "/type/text", "value": "1. DUETS FOR ALL enables any two instruments to play duets."}, "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-03T23:57:17.732151"}}
+/type/edition /books/OL10961858M 7 2022-12-10T08:38:23.287258 {"publishers": ["Alfred Publishing Company"], "identifiers": {"goodreads": ["4416684"]}, "weight": "1.6 ounces", "covers": [5083040], "physical_format": "Paperback", "key": "/books/OL10961858M", "authors": [{"key": "/authors/OL3517279A"}], "subjects": ["Instruction & Study - General", "Musical Instruments - General", "Music", "Music/Songbooks"], "languages": [{"key": "/languages/eng"}], "title": "101 Rhythmic Rest Pat Cl", "number_of_pages": 28, "isbn_13": ["9780769222226"], "isbn_10": ["0769222226"], "publish_date": "March 1985", "oclc_numbers": ["154766698"], "works": [{"key": "/works/OL9506438W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "12 x 9 x 0.1 inches", "local_id": ["urn:bwbsku:O6-CUL-958"], "source_records": ["promise:bwb_daily_pallets_2020-06-04"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T08:38:23.287258"}}
+/type/edition /books/OL10962191M 4 2011-04-28T22:41:35.026935 {"publishers": ["Alfred Publishing Company"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-28T22:41:35.026935"}, "title": "Fun With Fundamentals (B-flat Cornet) (First Division Band Course)", "number_of_pages": 32, "isbn_13": ["9780769228990"], "covers": [5083221], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0769228992"], "publish_date": "March 1985", "key": "/books/OL10962191M", "authors": [{"key": "/authors/OL3290583A"}, {"key": "/authors/OL990882A"}], "latest_revision": 4, "oclc_numbers": ["154773371"], "type": {"key": "/type/edition"}, "subjects": ["Instruction & Study - General", "Musical Instruments - General", "Music", "Music/Songbooks"], "revision": 4}
+/type/edition /books/OL1096243M 8 2021-12-24T21:32:28.618630 {"publishers": ["NorthWord Press"], "number_of_pages": 48, "isbn_10": ["155971431X"], "covers": [787995], "lc_classifications": ["QL737.U53 W54 1994", "QL737.U53W54 1994"], "key": "/books/OL1096243M", "authors": [{"key": "/authors/OL195474A"}], "publish_places": ["Minocqua, WI"], "contributions": ["Francis, Michael H. 1953- ill.", "McGee, John F. ill."], "pagination": "48 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:131497669:770", "bwb:9781559714310"], "title": "Bison for kids", "dewey_decimal_class": ["599.73/58"], "identifiers": {"librarything": ["310455"], "goodreads": ["2280926"]}, "languages": [{"key": "/languages/eng"}], "lccn": ["94020823"], "subjects": ["American bison -- Juvenile literature.", "Bison."], "publish_date": "1994", "publish_country": "wiu", "by_statement": "by Todd Wilkinson ; photography by Michael H. Francis ; illustrated by John F. McGee.", "oclc_numbers": ["30737234"], "works": [{"key": "/works/OL1710816W"}], "type": {"key": "/type/edition"}, "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-24T21:32:28.618630"}}
+/type/edition /books/OL10962481M 6 2022-12-04T09:35:14.662472 {"publishers": ["Warner Bros Pubns"], "languages": [{"key": "/languages/eng"}], "subtitle": "Level 5", "weight": "4.8 ounces", "title": "Popular Favorites for the Piano Lesson", "identifiers": {"goodreads": ["6543598"]}, "isbn_13": ["9780769234052"], "covers": [2620992], "physical_format": "Paperback", "authors": [{"key": "/authors/OL2834718A"}], "isbn_10": ["0769234054"], "key": "/books/OL10962481M", "publish_date": "February 1998", "works": [{"key": "/works/OL8488486W"}], "type": {"key": "/type/edition"}, "subjects": ["Musical Instruments - Piano", "Music"], "physical_dimensions": "12 x 8.8 x 0.2 inches", "local_id": ["urn:bwbsku:W7-CNS-700"], "source_records": ["promise:bwb_daily_pallets_2022-09-12"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T09:35:14.662472"}}
+/type/edition /books/OL10962678M 2 2010-04-13T06:22:01.764003 {"physical_format": "Mass Market Paperback", "weight": "2.4 ounces", "title": "Christmas Carols for the Very Young", "publishers": ["Warner Bros Pubns"], "isbn_13": ["9780769237329"], "covers": [5083223], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0769237320"], "publish_date": "March 22, 1985", "key": "/books/OL10962678M", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:22:01.764003"}, "latest_revision": 2, "subjects": ["Music"], "type": {"key": "/type/edition"}, "physical_dimensions": "12 x 8.7 x 0.1 inches", "revision": 2}
+/type/edition /books/OL10962906M 2 2009-12-15T00:56:35.439052 {"physical_format": "Paperback", "title": "Wieck Piano Studies", "isbn_10": ["0769240496"], "publishers": ["Warner Bros Pubns"], "isbn_13": ["9780769240497"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:56:35.439052"}, "publish_date": "March 22, 1985", "key": "/books/OL10962906M", "authors": [{"key": "/authors/OL3517350A"}], "latest_revision": 2, "subjects": ["Music"], "works": [{"key": "/works/OL9506574W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL1096293M 7 2022-12-07T03:49:07.869299 {"publishers": ["McGraw-Hill"], "number_of_pages": 483, "subtitle": "an application developer's guide to APPC", "isbn_10": ["0079117333"], "series": ["J. Ranade workstation series"], "lc_classifications": ["QA76.73.C15 W3546 1995"], "key": "/books/OL1096293M", "authors": [{"key": "/authors/OL581847A"}], "publish_places": ["New York"], "contributions": ["Schwaller, Peter J."], "pagination": "xvii, 483 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:131543378:1032", "ia:cpicprogrammingi0000walk", "promise:bwb_daily_pallets_2022-03-17"], "title": "CPI-C programming in C", "dewey_decimal_class": ["005.7/12"], "notes": {"type": "/type/text", "value": "System requirements for computer disk: PC; DOS, Windows, OS/2 or UNIX operating system; Borland C++ 3.1 (C++ for OS/2), IBM C Set/2 (C Set++), or Microsoft C 6.00A (7 or Visual C++) compiler; CPI-C with library of calls.\nIncludes index."}, "identifiers": {"goodreads": ["713470"]}, "languages": [{"key": "/languages/eng"}], "lccn": ["94020879"], "subjects": ["C (Computer program language)", "Application software."], "publish_date": "1995", "publish_country": "nyu", "by_statement": "John Q. Walker II, Peter J. Schwaller.", "oclc_numbers": ["30593171"], "works": [{"key": "/works/OL3486757W"}], "type": {"key": "/type/edition"}, "covers": [12678045], "ocaid": "cpicprogrammingi0000walk", "local_id": ["urn:bwbsku:P7-BRH-299"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-07T03:49:07.869299"}}
+/type/edition /books/OL1096315M 5 2020-11-18T10:00:15.492098 {"publishers": ["Birkha\u0308user Verlag"], "identifiers": {"goodreads": ["4781428", "6133657"]}, "subtitle": "extremes and rare events", "isbn_10": ["3764350717", "0817650717"], "series": ["DMV Seminar ;", "Bd. 23"], "covers": [2235421], "lc_classifications": ["QA273.6 .F35 1994"], "latest_revision": 5, "key": "/books/OL1096315M", "authors": [{"key": "/authors/OL581851A"}], "publish_places": ["Basel", "Boston"], "contributions": ["Hu\u0308sler, J.", "Reiss, R.-D."], "pagination": "xi, 282 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:131562547:1030"], "title": "Laws of small numbers", "dewey_decimal_class": ["519.2/4"], "notes": {"type": "/type/text", "value": "Includes bibliographical references and indexes.\nSystem requirements for accompanying computer disk: IBM compatiable PC; MS-DOS."}, "number_of_pages": 282, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["94020902"], "subjects": ["Extreme value theory.", "Poisson processes."], "publish_date": "1994", "publish_country": "sz ", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T10:00:15.492098"}, "by_statement": "Michael Falk, Ju\u0308rg Hu\u0308sler, Rolf-Dieter Reiss.", "works": [{"key": "/works/OL3486770W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10963315M 4 2011-04-27T11:01:25.143110 {"publishers": ["Alfred Publishing Company"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T11:01:25.143110"}, "title": "Cantata No. 37 - Wer Da Glaubet Und Getauft Wird, Kalmus Edition", "number_of_pages": 36, "isbn_13": ["9780769245799"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["076924579X"], "publish_date": "August 1995", "key": "/books/OL10963315M", "authors": [{"key": "/authors/OL443516A"}], "latest_revision": 4, "oclc_numbers": ["154770490"], "works": [{"key": "/works/OL2911532W"}], "type": {"key": "/type/edition"}, "subjects": ["Genres & Styles - Classical", "Songbooks - General", "Music", "Music/Songbooks"], "revision": 4}
+/type/edition /books/OL10963398M 4 2011-04-27T22:31:21.026873 {"publishers": ["Alfred Publishing Company"], "covers": [2621127], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T22:31:21.026873"}, "latest_revision": 4, "key": "/books/OL10963398M", "authors": [{"key": "/authors/OL2907729A"}], "subjects": ["Feature", "Instructional", "Performance", "Instruction & Study - General", "Musical Instruments - Percussion", "Music", "Video - Non-Fiction"], "edition_name": "Vhs edition", "languages": [{"key": "/languages/eng"}], "title": "Double Bass Drumming", "number_of_pages": 1, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780769247236"], "isbn_10": ["0769247237"], "publish_date": "January 1992", "oclc_numbers": ["185699635"], "works": [{"key": "/works/OL8635126W"}], "type": {"key": "/type/edition"}, "first_sentence": {"type": "/type/text", "value": "All of the musical notation in his book is in 4/4 time."}, "revision": 4}
+/type/edition /books/OL1096382M 4 2020-11-18T10:01:02.421086 {"other_titles": ["Smart voter's guide to health care reform."], "publishers": ["Institute of Governmental Studies Press, University of California"], "isbn_10": ["0877723583"], "subject_place": ["California."], "covers": [7935621], "lc_classifications": ["RA395.A4 B36 1994"], "latest_revision": 4, "key": "/books/OL1096382M", "authors": [{"key": "/authors/OL581874A"}], "ocaid": "healthcarereform00bank", "publish_places": ["Berkeley, CA"], "contributions": ["Kunz, Kimberly.", "Macdonald, Tracy."], "pagination": "xvi, 105 p. :", "source_records": ["ia:healthcarereform00bank", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:131622821:904"], "title": "Health care reform", "dewey_decimal_class": ["362.1/09794"], "notes": {"type": "/type/text", "value": "Includes bibliographical references.\nCover title: The smart voter's guide to health care reform."}, "number_of_pages": 105, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["94020975"], "subjects": ["Health care reform -- California."], "publish_date": "1994", "publish_country": "cau", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T10:01:02.421086"}, "by_statement": "Dwayne Banks, Kimberly Kunz, and Tracy Macdonald.", "works": [{"key": "/works/OL3486905W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10964020M 3 2011-04-28T18:34:49.187738 {"publishers": ["Warner Bros Pubns"], "subtitle": "Piano, Vocal, Chords", "weight": "1.1 pounds", "covers": [2621265], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-28T18:34:49.187738"}, "latest_revision": 3, "key": "/books/OL10964020M", "subjects": ["Genres & Styles - Country & Bluegrass - General", "Music"], "isbn_13": ["9780769258485"], "title": "The Greatest Country Hits of 1997-1998", "number_of_pages": 160, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0769258484"], "publish_date": "March 1998", "oclc_numbers": ["39529752"], "type": {"key": "/type/edition"}, "physical_dimensions": "11.7 x 8.9 x 0.5 inches", "revision": 3}
+/type/edition /books/OL10964499M 4 2010-04-24T18:11:03.046166 {"publishers": ["Alfred Publishing Company"], "number_of_pages": 24, "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:11:03.046166"}, "title": "Original Big Band Sounds", "type": {"key": "/type/edition"}, "identifiers": {"goodreads": ["7267573"]}, "isbn_13": ["9780769266282"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0769266282"], "publish_date": "July 1996", "key": "/books/OL10964499M", "authors": [{"key": "/authors/OL3517442A"}], "latest_revision": 4, "works": [{"key": "/works/OL9506732W"}], "physical_format": "Paperback", "subjects": ["Genres & Styles - Jazz", "Instruction & Study - General", "Musical Instruments - General", "Music", "Music/Songbooks"], "revision": 4}
+/type/edition /books/OL10964928M 4 2011-04-30T11:58:59.260202 {"publishers": ["Alfred Publishing Company"], "physical_format": "Paperback", "subtitle": "Satb With Sb Soli, Kalmus Edition", "last_modified": {"type": "/type/datetime", "value": "2011-04-30T11:58:59.260202"}, "title": "Cantata No. 59, Wer mich liebet, der wird mein Wort halten", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780769274027"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0769274021"], "publish_date": "March 1985", "key": "/books/OL10964928M", "authors": [{"key": "/authors/OL443516A"}], "latest_revision": 4, "oclc_numbers": ["44970587"], "works": [{"key": "/works/OL2911553W"}], "type": {"key": "/type/edition"}, "subjects": ["Genres & Styles - Classical", "Individual Composer & Musician", "Songbooks - General", "Music", "Music/Songbooks"], "revision": 4}
+/type/edition /books/OL10965102M 6 2011-04-27T17:12:26.852069 {"publishers": ["Alfred Publishing Company"], "number_of_pages": 250, "subtitle": "Kalmus Edition", "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T17:12:26.852069"}, "latest_revision": 6, "key": "/books/OL10965102M", "authors": [{"key": "/authors/OL601846A"}], "subjects": ["Genres & Styles - Classical", "Individual Composer & Musician", "Songbooks - General", "Music", "Music/Songbooks"], "languages": [{"key": "/languages/eng"}], "title": "Semele (1744)", "identifiers": {"goodreads": ["4762151"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780769276694"], "isbn_10": ["0769276695"], "publish_date": "March 1985", "oclc_numbers": ["154765017"], "works": [{"key": "/works/OL8422260W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL10965177M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Warner Bros Pubns"], "title": "Classical Duets for Pia Bk-2", "isbn_13": ["9780769277783"], "isbn_10": ["0769277780"], "publish_date": "March 2000", "key": "/books/OL10965177M", "type": {"key": "/type/edition"}, "subjects": ["Music"], "revision": 1}
+/type/edition /books/OL1096565M 9 2022-12-08T15:57:40.747135 {"notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 361-373) and index.\n\"Published for the World Bank.\""}, "identifiers": {"librarything": ["5673014"], "goodreads": ["3762648"]}, "title": "Labor markets and social policy in Central and Eastern Europe", "subtitle": "the transition and beyond", "publish_date": "1994", "publishers": ["Oxford University Press"], "isbn_10": ["0195209982"], "subject_place": ["Europe, Eastern", "Europe, Central", "Europe, Eastern.", "Europe, Central."], "covers": [4601659, 3878334], "lc_classifications": ["HD5764.7.A6 L28 1994", "HD5764.7.A6.L28 1994"], "publish_places": ["New York, N.Y"], "contributions": ["Barr, N. A."], "subject_time": ["1989-"], "pagination": "xviii, 387 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:131786343:1145", "bwb:9780195209983", "ia:labormarketssoci0000unse_w6q7", "promise:bwb_daily_pallets_2021-04-01"], "dewey_decimal_class": ["331.12/0947"], "languages": [{"key": "/languages/eng"}], "lccn": ["94021174"], "subjects": ["Labor market -- Europe, Eastern.", "Labor market -- Europe, Central.", "Europe, Eastern -- Social policy.", "Europe, Central -- Social policy.", "Europe, Eastern -- Economic conditions -- 1989-", "Europe, Central -- Economic conditions."], "publish_country": "nyu", "by_statement": "edited by Nicholas Barr.", "type": {"key": "/type/edition"}, "ocaid": "labormarketssoci0000unse_w6q7", "key": "/books/OL1096565M", "number_of_pages": 387, "works": [{"key": "/works/OL8005312W"}], "local_id": ["urn:bwbsku:W6-AJH-303"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-08T15:57:40.747135"}}
+/type/edition /books/OL10965673M 4 2021-09-29T03:31:31.040891 {"publishers": ["Warner Bros Pubns"], "physical_format": "Mass Market Paperback", "title": "Tschaikowsky Works Volume 3", "isbn_13": ["9780769284880"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0769284884"], "publish_date": "March 22, 1985", "key": "/books/OL10965673M", "authors": [{"key": "/authors/OL260354A"}], "works": [{"key": "/works/OL2104935W"}], "type": {"key": "/type/edition"}, "subjects": ["Music"], "source_records": ["bwb:9780769284880"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-09-29T03:31:31.040891"}}
+/type/edition /books/OL10965999M 5 2022-06-18T06:57:02.768857 {"publishers": ["Alfred Publishing Company"], "subtitle": "Kalmus Edition", "covers": [5084464], "physical_format": "Paperback", "key": "/books/OL10965999M", "contributions": ["Karl King (Composer)", "Jerry Brubaker (Contributor)"], "subjects": ["Genres & Styles - Classical", "Instruction & Study - Voice", "Songbooks - General", "Music", "Music/Songbooks"], "languages": [{"key": "/languages/eng"}], "title": "Thirty-six Eight-measure Vocalises for Elementary Teaching", "number_of_pages": 20, "isbn_13": ["9780769293417"], "isbn_10": ["0769293417"], "publish_date": "March 1985", "oclc_numbers": ["154753619"], "works": [{"key": "/works/OL658120W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780769293417"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-18T06:57:02.768857"}}
+/type/edition /books/OL10966048M 6 2022-12-31T02:38:30.927281 {"publishers": ["Alfred Publishing Company"], "languages": [{"key": "/languages/eng"}], "title": "Two Pieces (Kalmus Edition)", "isbn_10": ["0769294219"], "identifiers": {"goodreads": ["4302249"]}, "isbn_13": ["9780769294216"], "covers": [5084097], "physical_format": "Paperback", "publish_date": "March 1985", "key": "/books/OL10966048M", "authors": [{"key": "/authors/OL92841A"}], "works": [{"key": "/works/OL8238951W"}], "type": {"key": "/type/edition"}, "subjects": ["Musical Instruments - Strings", "Music/Songbooks"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-31T02:38:30.927281"}}
+/type/edition /books/OL10966248M 5 2011-04-27T17:14:20.075066 {"publishers": ["Alfred Publishing Company"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2011-04-27T17:14:20.075066"}, "title": "Three Preludes and Fugues, Op. 109, Kalmus Edition", "number_of_pages": 36, "isbn_13": ["9780769298245"], "covers": [5084927], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0769298249"], "publish_date": "March 1985", "key": "/books/OL10966248M", "authors": [{"key": "/authors/OL2689638A"}], "latest_revision": 5, "oclc_numbers": ["52599584"], "works": [{"key": "/works/OL9495263W"}], "type": {"key": "/type/edition"}, "subjects": ["Musical Instruments - Piano", "Genres & Styles - Classical", "Music", "Music/Songbooks"], "revision": 5}
+/type/edition /books/OL1096625M 12 2023-01-10T05:02:04.535709 {"publishers": ["Crossroad"], "number_of_pages": 155, "subtitle": "the struggle for the soul of America : a peace and justice manifesto", "ia_box_id": ["IA180201"], "subject_place": ["Church and social problems"], "covers": [7128146], "local_id": ["urn:cst:10017046991"], "ia_loaded_id": ["crackingmonolith00rank"], "lc_classifications": ["BR115.J8 R32 1994", "BR115.J8R32 1994"], "key": "/books/OL1096625M", "authors": [{"key": "/authors/OL581962A"}], "ocaid": "crackingmonolith00rank", "publish_places": ["New York"], "subjects": ["Christianity and justice.", "Peace -- Religious aspects -- Christianity.", "Leadership -- Religious aspects -- Christianity.", "Church and social problems -- United States."], "pagination": "xx, 155 p. ;", "source_records": ["ia:crackingmonolith00rank", "marc:marc_claremont_school_theology/CSTMARC1_barcode.mrc:210887322:2116", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:131838465:879", "marc:marc_claremont_school_theology/CSTMARC1_multibarcode.mrc:211153277:2116", "bwb:9780824514396", "marc:marc_columbia/Columbia-extract-20221130-009.mrc:503340135:1355"], "title": "Cracking the monolith", "dewey_decimal_class": ["261.8/0973"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. [147]-155)."}, "identifiers": {"goodreads": ["5052423"], "librarything": ["6524865"]}, "languages": [{"key": "/languages/eng"}], "lccn": ["94021235"], "isbn_10": ["0824514394"], "publish_date": "1994", "publish_country": "nyu", "by_statement": "William W. Rankin.", "oclc_numbers": ["30700383"], "works": [{"key": "/works/OL3487229W"}], "type": {"key": "/type/edition"}, "latest_revision": 12, "revision": 12, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2023-01-10T05:02:04.535709"}}
+/type/edition /books/OL10966335M 8 2022-12-04T05:24:14.789527 {"publishers": ["Alfred Publishing Company"], "physical_format": "Paperback", "title": "Stray Leaves, Op. 202 (Kalmus Edition)", "identifiers": {"librarything": ["3165410"]}, "covers": [5084654], "languages": [{"key": "/languages/eng"}], "publish_date": "September 2000", "key": "/books/OL10966335M", "authors": [{"key": "/authors/OL2318127A"}], "works": [{"key": "/works/OL7569935W"}], "type": {"key": "/type/edition"}, "subjects": ["Musical Instruments - Piano", "Songbooks - General", "Music", "Music/Songbooks"], "source_records": ["bwb:9780769299914", "promise:bwb_daily_pallets_2022-11-23"], "isbn_10": ["0769299911"], "isbn_13": ["9780769299914"], "oclc_numbers": ["45587635"], "classifications": {}, "local_id": ["urn:bwbsku:T2-EHY-315"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T05:24:14.789527"}}
+/type/edition /books/OL10966353M 6 2020-06-10T07:36:30.996851 {"publishers": ["Singular Publishing Group Inc"], "identifiers": {"goodreads": ["4999098"]}, "weight": "13.8 ounces", "covers": [2621792], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2020-06-10T07:36:30.996851"}, "latest_revision": 6, "key": "/books/OL10966353M", "ocaid": "geneticshearingl00berl_905", "contributions": ["Charles I. Berlin (Editor)", "Bronya J. B. Keats (Editor)"], "subjects": ["Audiology & otology", "Audiology & Speech Pathology", "Genetics", "Medical / Nursing", "Medical"], "edition_name": "1 edition", "languages": [{"key": "/languages/eng"}], "source_records": ["ia:geneticshearingl00berl_905", "ia:geneticshearingl0000unse"], "title": "Genetics & Hearing Loss (Genetics and Hearing Loss)", "number_of_pages": 180, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780769301037"], "isbn_10": ["0769301037"], "publish_date": "April 24, 2000", "works": [{"key": "/works/OL19852433W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.3 x 6.2 x 0.6 inches", "revision": 6}
+/type/edition /books/OL10966420M 2 2009-12-15T00:56:40.034851 {"publishers": ["Institute of Electrical & Electronics Enginee"], "subtitle": "Proceedings (Ieee Computer ... Vision and Pattern Recognition//Proceedings)", "weight": "6.6 pounds", "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:56:40.034851"}, "latest_revision": 2, "key": "/books/OL10966420M", "authors": [{"key": "/authors/OL3517627A"}], "subjects": ["Computer Vision", "Pattern Recognition", "Computers", "Computers - General Information", "Computer Books: General", "Artificial Intelligence - General"], "languages": [{"key": "/languages/eng"}], "title": "1999 IEEE Computer Society Conference on Computer Vision and Pattern Recognition: June 23-25, 1999 Fort Collins, Colorado ", "number_of_pages": 1000, "isbn_13": ["9780769501499"], "isbn_10": ["0769501494"], "publish_date": "May 1999", "works": [{"key": "/works/OL9507021W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "11 x 9 x 2.8 inches", "revision": 2}
+/type/edition /books/OL1096662M 7 2022-02-25T13:53:10.044839 {"publishers": ["St. Martin's Press"], "number_of_pages": 345, "isbn_10": ["0312112793"], "subject_place": ["United States."], "covers": [10178607], "lc_classifications": ["HQ76.8.U5 T4 1995", "HQ76.8.U5T4 1995"], "key": "/books/OL1096662M", "authors": [{"key": "/authors/OL581979A"}], "publish_places": ["New York"], "languages": [{"key": "/languages/eng"}], "pagination": "xx, 345 p. ;", "source_records": ["amazon:0312112793", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:131870901:803", "bwb:9780312112790"], "title": "The gay militants", "dewey_decimal_class": ["305.9/0664"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 315-332).\nOriginally published: New York : Stein and Day, 1971. With new introd. by Jonathan Ned Katz."}, "identifiers": {"goodreads": ["3110391"], "librarything": ["239783"]}, "edition_name": "1st. pbk. ed.", "lccn": ["94021273"], "subjects": ["Gay liberation movement -- United States."], "publish_date": "1995", "publish_country": "nyu", "series": ["Stonewall Inn editions"], "by_statement": "Donn Teal.", "works": [{"key": "/works/OL3487273W"}], "type": {"key": "/type/edition"}, "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-25T13:53:10.044839"}}
+/type/edition /books/OL10966753M 3 2010-04-13T06:22:01.764003 {"publishers": ["Institute of Electrical & Electronics Enginee"], "subtitle": "2001 International", "key": "/books/OL10966753M", "languages": [{"key": "/languages/eng"}], "title": "Database Engineering and Applications Symposium (Ideas 2001)", "number_of_pages": 400, "isbn_13": ["9780769511412"], "covers": [5536394, 5085133], "physical_format": "Paperback", "isbn_10": ["0769511414"], "publish_date": "August 2001", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:22:01.764003"}, "authors": [{"key": "/authors/OL1918824A"}], "latest_revision": 3, "works": [{"key": "/works/OL6927257W"}], "type": {"key": "/type/edition"}, "subjects": ["Miscellaneous Software", "Computer Bks - Other Applications"], "revision": 3}
+/type/edition /books/OL10966835M 2 2009-12-15T00:56:40.034851 {"physical_format": "Paperback", "publishers": ["Ieee"], "isbn_10": ["076951328X"], "number_of_pages": 200, "isbn_13": ["9780769513287"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:56:40.034851"}, "publish_date": "December 2001", "latest_revision": 2, "key": "/books/OL10966835M", "authors": [{"key": "/authors/OL3517728A"}], "title": "Stereo and Multi-Baseline Vision (Smbv 2001), 2001 IEEE Workshop on", "subjects": ["Reference - General", "Computers", "Computer Books: General"], "works": [{"key": "/works/OL9507165W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10966941M 2 2009-12-15T00:56:40.034851 {"publishers": ["Ieee"], "subtitle": "26 February-1 March 2002-San Jose, California (International Conference on Data Engineering)", "weight": "3.9 pounds", "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:56:40.034851"}, "latest_revision": 2, "key": "/books/OL10966941M", "authors": [{"key": "/authors/OL3517647A"}], "subjects": ["Computer Communications & Networking", "Database software", "Databases & data structures", "Database Management - General", "Database Engineering", "Computers", "Computer Books: General"], "languages": [{"key": "/languages/eng"}], "title": "Proceedings of the 18th International Conference on Data Engineering", "number_of_pages": 701, "isbn_13": ["9780769515311"], "isbn_10": ["0769515312"], "publish_date": "May 2002", "works": [{"key": "/works/OL9507048W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "11 x 9 x 1.8 inches", "revision": 2}
+/type/edition /books/OL10967134M 4 2010-04-24T18:12:34.996110 {"publishers": ["Institute of Electrical & Electronics Enginee"], "number_of_pages": 500, "subtitle": "29-31 March 2005, Snowbird, Ut", "key": "/books/OL10967134M", "title": "2005 Data Compression Conference", "type": {"key": "/type/edition"}, "identifiers": {"goodreads": ["5725607"]}, "isbn_13": ["9780769523095"], "edition_name": "1 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0769523099"], "latest_revision": 4, "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:12:34.996110"}, "authors": [{"key": "/authors/OL251874A"}], "publish_date": "March 2005", "works": [{"key": "/works/OL2062176W"}], "physical_format": "Hardcover", "subjects": ["Data compression", "Science", "Computers - General Information", "Science/Mathematics", "Computer Science", "General", "Reference"], "revision": 4}
+/type/edition /books/OL10967216M 3 2020-12-14T09:24:42.442908 {"publishers": ["IEEE"], "languages": [{"key": "/languages/eng"}], "subtitle": "Proceedings of the 38th IEEE/ACM International Symposium on Microarchitecture 2005", "title": "Micro-38", "isbn_13": ["9780769524405"], "physical_format": "Paperback", "isbn_10": ["0769524400"], "publish_date": "2005", "key": "/books/OL10967216M", "works": [{"key": "/works/OL12289726W"}], "type": {"key": "/type/edition"}, "lccn": ["2006278006"], "lc_classifications": ["MLCM 2006/41527 (Q)"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part33.utf8:165698584:1198"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-14T09:24:42.442908"}}
+/type/edition /books/OL10967280M 5 2022-11-15T10:22:24.169786 {"publishers": ["Landoll"], "languages": [{"key": "/languages/eng"}], "identifiers": {"librarything": ["4108308"]}, "title": "Bedtime for Kittens", "physical_format": "Board book", "number_of_pages": 20, "isbn_13": ["9780769600246"], "isbn_10": ["0769600247"], "publish_date": "September 1999", "key": "/books/OL10967280M", "authors": [{"key": "/authors/OL2853949A"}], "oclc_numbers": ["39359981"], "works": [{"key": "/works/OL8529383W"}], "type": {"key": "/type/edition"}, "subjects": ["Animals - Cats", "Bedtime & Dreams", "Children's 4-8 - Lift the Flap"], "source_records": ["amazon:0769600247"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-15T10:22:24.169786"}}
+/type/edition /books/OL10967362M 2 2009-12-15T00:56:40.034851 {"physical_format": "Paperback", "publishers": ["Landoll"], "isbn_10": ["0769602770"], "number_of_pages": 32, "isbn_13": ["9780769602776"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:56:40.034851"}, "publish_date": "September 1999", "latest_revision": 2, "key": "/books/OL10967362M", "authors": [{"key": "/authors/OL2853949A"}], "title": "Tweeted Pan", "subjects": ["Activity Books - Coloring Books", "Children's Books/Ages 4-8 Nonfiction"], "works": [{"key": "/works/OL8529641W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10967436M 2 2009-12-15T00:56:40.034851 {"physical_format": "Unknown Binding", "title": "Mini-Puzzle #3", "isbn_10": ["0769605303"], "publishers": ["Landoll"], "isbn_13": ["9780769605302"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:56:40.034851"}, "publish_date": "September 1999", "key": "/books/OL10967436M", "authors": [{"key": "/authors/OL2853949A"}], "latest_revision": 2, "subjects": ["Non-Classifiable", "Children's 4-8 - Puzzles"], "works": [{"key": "/works/OL8529705W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10967586M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780769608303"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "publishers": ["Landoll"], "number_of_pages": 32, "edition_name": "Activity edition", "isbn_10": ["0769608302"], "publish_date": "April 2001", "key": "/books/OL10967586M", "title": "Road Runner Activity Pad (Looney Tunes (Activity Books))", "type": {"key": "/type/edition"}, "subjects": ["Activity Books - General", "Juvenile Nonfiction", "Activity Books", "Children: Kindergarten"], "revision": 1}
+/type/edition /books/OL10967798M 2 2009-12-15T00:56:41.292593 {"physical_format": "Paperback", "weight": "1.8 pounds", "title": "Chicken Run with Book and Poster and Crayons and Paint Brush", "isbn_10": ["0769616801"], "publishers": ["American Education Publishing"], "isbn_13": ["9780769616803"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:56:41.292593"}, "publish_date": "May 2000", "key": "/books/OL10967798M", "authors": [{"key": "/authors/OL2853948A"}], "latest_revision": 2, "subjects": ["Activity Books", "Children's 4-8 - Activity Books"], "works": [{"key": "/works/OL8529266W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "14.5 x 10.2 x 2.9 inches", "revision": 2}
+/type/edition /books/OL10968204M 4 2011-04-30T12:31:30.927401 {"publishers": ["Spectrum"], "weight": "7.4 ounces", "covers": [2622053], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-30T12:31:30.927401"}, "latest_revision": 4, "key": "/books/OL10968204M", "authors": [{"key": "/authors/OL2813985A"}], "subjects": ["Juvenile Nonfiction / Study Aids / Test Preparation", "Study Aids - Test Preparation", "Juvenile Nonfiction", "Children: Grades 4-6"], "edition_name": "Stu Wkb edition", "languages": [{"key": "/languages/eng"}], "title": "Language Arts Test Practice Student Edition, Consumable Grade 5", "number_of_pages": 92, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780769644752"], "isbn_10": ["0769644759"], "publish_date": "September 26, 2005", "oclc_numbers": ["179801745"], "works": [{"key": "/works/OL8440313W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.9 x 8.5 x 0.2 inches", "revision": 4}
+/type/edition /books/OL10968489M 5 2022-11-12T04:17:00.374930 {"publishers": ["Spectrum"], "weight": "11.2 ounces", "covers": [2622279], "physical_format": "Paperback", "key": "/books/OL10968489M", "authors": [{"key": "/authors/OL2813985A"}], "subjects": ["Juvenile Nonfiction", "Education / Teaching", "Children: Grades 3-4", "Elementary", "Teaching Methods & Materials - Language Arts", "Juvenile Nonfiction / Language Arts / Vocabulary & Spelling", "Language Arts - Vocabulary & Spelling"], "edition_name": "Upd Rev edition", "languages": [{"key": "/languages/eng"}], "title": "Spectrum Vocabulary, Grade 3 (Spectrum)", "number_of_pages": 160, "isbn_13": ["9780769680934"], "isbn_10": ["0769680933"], "publish_date": "December 15, 2006", "oclc_numbers": ["191825659"], "works": [{"key": "/works/OL8441587W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.6 x 8.2 x 0.5 inches", "local_id": ["urn:bwbsku:o8-bnw-950"], "source_records": ["promise:bwb_daily_pallets_2022-10-17"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-12T04:17:00.374930"}}
+/type/edition /books/OL10968601M 3 2011-04-25T22:48:47.921874 {"publishers": ["Shortland Publications"], "weight": "1.4 ounces", "title": "Up and Down (Storyteller Setting Sun)", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780769902234"], "covers": [2622395], "physical_format": "Paperback", "isbn_10": ["0769902235"], "publish_date": "January 1, 2001", "key": "/books/OL10968601M", "last_modified": {"type": "/type/datetime", "value": "2011-04-25T22:48:47.921874"}, "latest_revision": 3, "oclc_numbers": ["153971947"], "type": {"key": "/type/edition"}, "subjects": ["English language early readers"], "physical_dimensions": "7.1 x 6.1 x 0.1 inches", "revision": 3}
+/type/edition /books/OL10968805M 3 2011-04-22T22:46:41.793363 {"publishers": ["McGraw-Hill"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-22T22:46:41.793363"}, "title": "Studying Insects (Ryerson Science in Action)", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 127, "edition_name": "Metric Ed edition", "isbn_13": ["9780770032227"], "isbn_10": ["0770032222"], "publish_date": "December 31, 1971", "key": "/books/OL10968805M", "authors": [{"key": "/authors/OL2940310A"}], "latest_revision": 3, "oclc_numbers": ["462030873"], "works": [{"key": "/works/OL8691847W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10969246M 3 2010-08-17T05:01:22.457053 {"publishers": ["Mcclelland Stewart Inc"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-08-17T05:01:22.457053"}, "title": "You Can Weave", "identifiers": {"librarything": ["3235949"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780771015250"], "isbn_10": ["0771015259"], "latest_revision": 3, "key": "/books/OL10969246M", "authors": [{"key": "/authors/OL2745721A"}], "works": [{"key": "/works/OL8249833W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10969588M 2 2009-12-15T00:56:43.320105 {"publishers": ["Gage"], "key": "/books/OL10969588M", "title": "WORLD HISTORY 2 1900-1968", "physical_format": "Paperback", "isbn_10": ["0771581572"], "publish_date": "1972", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:56:43.320105"}, "authors": [{"key": "/authors/OL3518187A"}], "latest_revision": 2, "works": [{"key": "/works/OL9507710W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10970168M 6 2010-08-17T05:01:22.457053 {"publishers": ["Addison Wesley Publishing Company"], "languages": [{"key": "/languages/eng"}], "number_of_pages": 343, "last_modified": {"type": "/type/datetime", "value": "2010-08-17T05:01:22.457053"}, "source_records": ["amazon:0773054014", "marc:marc_upei/marc-for-openlibrary-bigset.mrc:151367474:773"], "title": "Historical Perspectives on Law and Society in Canada (New Canadian Readings)", "identifiers": {"goodreads": ["4802926"], "librarything": ["9666257"]}, "isbn_13": ["9780773054011"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0773054014"], "publish_date": "January 1994", "key": "/books/OL10970168M", "authors": [{"key": "/authors/OL2799735A"}], "latest_revision": 6, "works": [{"key": "/works/OL8397675W"}], "type": {"key": "/type/edition"}, "subjects": ["Law", "Legal Reference / Law Profession"], "revision": 6}
+/type/edition /books/OL10970420M 2 2008-09-04T05:21:44.396454 {"physical_format": "Paperback", "weight": "8.8 ounces", "publishers": ["The Edwin Mellen Press Ltd"], "number_of_pages": 49, "last_modified": {"type": "/type/datetime", "value": "2008-09-04T05:21:44.396454"}, "isbn_13": ["9780773405530"], "isbn_10": ["0773405534"], "publish_date": "1999", "key": "/books/OL10970420M", "authors": [{"key": "/authors/OL2531483A"}], "title": "Richard Whytford's \"The Pype or Tonne of the Life of Perfection\": Part 1: Introductory Study (Salzburg Studies: Elizabethan and Renaissance Studies)", "type": {"key": "/type/edition"}, "subjects": ["Christian life & practice"], "physical_dimensions": "9.4 x 6.5 x 0.4 inches", "revision": 2}
+/type/edition /books/OL1097056M 12 2021-09-15T20:32:26.932069 {"publishers": ["A & C Black", "Theatre Arts Books/Routledge"], "identifiers": {"librarything": ["4705815"], "goodreads": ["2699735"]}, "subtitle": "from the classroom to the stage", "ia_box_id": ["IA132517"], "isbn_10": ["0878300562"], "covers": [6721905, 672690], "lc_classifications": ["GV1788 .L34 1994", "GT730 .B7 1972", "GV1788.L34 1994"], "key": "/books/OL1097056M", "authors": [{"key": "/authors/OL122743A"}, {"key": "/authors/OL5270620A"}], "ocaid": "beginningballetf00laws", "publish_places": ["London", "New York"], "languages": [{"key": "/languages/eng"}], "pagination": "96 p. :", "source_records": ["marc:marc_records_scriblio_net/part24.dat:57726702:712", "ia:beginningballetf00laws", "ia:beginningballetf00laws", "marc:marc_loc_2016/BooksAll.2016.part07.utf8:106709038:613", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:132220555:929", "bwb:9780878300563"], "title": "Beginning ballet", "dewey_decimal_class": ["792.8"], "notes": {"type": "/type/text", "value": "Originally published: 1977.\nIncludes index."}, "number_of_pages": 96, "edition_name": "Paperback ed.", "lccn": ["94021681", "72085476"], "subjects": ["Ballet dancing -- Handbooks, manuals, etc"], "publish_date": "1994", "publish_country": "enk", "by_statement": "Joan Lawson.", "works": [{"key": "/works/OL1214886W"}], "type": {"key": "/type/edition"}, "latest_revision": 12, "revision": 12, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2021-09-15T20:32:26.932069"}}
+/type/edition /books/OL10971034M 6 2022-12-22T17:48:41.253160 {"publishers": ["Edwin Mellen Press"], "languages": [{"key": "/languages/eng"}], "number_of_pages": 304, "subtitle": "Essays on the Cinemas of China, Japan, South Korea and Hong Kong", "weight": "1.2 pounds", "title": "How East Asian Films Are Reshaping National Identities", "isbn_10": ["0773454985"], "type": {"key": "/type/edition"}, "identifiers": {"goodreads": ["1606180"]}, "isbn_13": ["9780773454989"], "covers": [5533175, 5085458], "physical_format": "Hardcover", "key": "/books/OL10971034M", "publish_date": "February 21, 2007", "contributions": ["Hyangjin Lee (Foreword)", "Andrew David Jackson (Editor)", "Michael Gibb (Editor)", "Dave White (Editor)"], "subjects": ["Film theory & criticism", "History", "History: World", "East Asia, Far East", "Nonfiction", "Asia - General", "Film & Video - General", "East Asia", "Motion pictures", "National characteristics, East Asian, in motion pictures"], "physical_dimensions": "9.3 x 6.3 x 0.9 inches", "works": [{"key": "/works/OL24064671W"}], "lccn": ["2007296329"], "lc_classifications": ["PN1995.9.N353 H69 2006"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part34.utf8:182613581:1001", "marc:marc_columbia/Columbia-extract-20221130-019.mrc:115106846:2678"], "oclc_numbers": ["86087667"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-22T17:48:41.253160"}}
+/type/edition /books/OL10971119M 9 2022-12-29T21:33:57.351839 {"publishers": ["Edwin Mellen Press"], "identifiers": {"goodreads": ["2129311"], "librarything": ["9683126"]}, "subtitle": "Studies in C.G. Jung, Arthur Miller, And William Shakespeare", "weight": "1.3 pounds", "covers": [5086310], "physical_format": "Hardcover", "key": "/books/OL10971119M", "authors": [{"key": "/authors/OL3518812A"}], "subjects": ["Plays & playwrights: from c 1900 -", "Psychoanalysis & psychoanalytical theory", "Shakespeare studies & criticism", "American", "Drama", "Movements - Jungian", "Literary Criticism", "Plays / Drama", "Evil in literature", "Individuation (Psychology) in literature", "Psychological aspects", "English"], "isbn_13": ["9780773457539"], "title": "Individuation And the Power of Evil on the Nature of the Human Psyche", "number_of_pages": 272, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0773457534"], "publish_date": "June 30, 2006", "works": [{"key": "/works/OL9508469W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6.2 x 1 inches", "lccn": ["2006043334"], "lc_classifications": ["PS3525.I5156 Z725 2006", "PS3525.I5156Z725"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part33.utf8:144999100:1281", "bwb:9780773457539", "marc:marc_columbia/Columbia-extract-20221130-012.mrc:127771949:2426"], "oclc_numbers": ["64898246"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-29T21:33:57.351839"}}
+/type/edition /books/OL109713M 2 2020-12-02T09:56:39.814681 {"subject_place": ["Nigeria"], "lc_classifications": ["JQ3096 .N52 1997"], "contributions": ["Ozumba, G. O."], "subject_time": ["1960-"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part28.utf8:99037320:735"], "title": "Nigeria government and politics", "languages": [{"key": "/languages/eng"}], "subjects": ["Nigeria -- Politics and government -- 1960-", "Nigeria -- Economic conditions -- 1960-"], "publish_country": "nr ", "by_statement": "edited by G.O.Ozumba.", "oclc_numbers": ["40671372"], "type": {"key": "/type/edition"}, "publishers": ["Vitalis Books", "AAU"], "key": "/books/OL109713M", "publish_places": ["Ariaria, Aba"], "pagination": "224 p. ;", "dewey_decimal_class": ["320.9669"], "notes": {"type": "/type/text", "value": "Includes bibliographical references."}, "number_of_pages": 224, "lccn": ["99228964"], "isbn_10": ["9782988022"], "publish_date": "1997", "works": [{"key": "/works/OL23723835W"}], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-02T09:56:39.814681"}}
+/type/edition /books/OL10971817M 4 2022-12-22T06:20:37.586548 {"publishers": ["Edwin Mellen Pr"], "number_of_pages": 276, "weight": "1.2 pounds", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0773476652"], "title": "New Testament Commentaries (Bibliographies for Biblical Research, Vol 1)", "isbn_13": ["9780773476653"], "covers": [5085651], "physical_format": "Hardcover", "key": "/books/OL10971817M", "authors": [{"key": "/authors/OL235315A"}], "publish_date": "August 2000", "works": [{"key": "/works/OL1960124W"}], "type": {"key": "/type/edition"}, "subjects": ["Biblical concordances & commentaries", "Bibliographies, catalogues, discographies", "Essays, journals, letters & other prose works", "New Testament", "Biblical Commentary - New Testament", "Bible", "Bible.", "Bibliography", "Commentaries", "N.T", "N.T.", "Religion"], "physical_dimensions": "9.2 x 6.2 x 0.8 inches", "oclc_numbers": ["50212071"], "source_records": ["marc:marc_columbia/Columbia-extract-20221130-010.mrc:42290484:1051"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-22T06:20:37.586548"}}
+/type/edition /books/OL10972130M 2 2009-12-15T00:56:48.046572 {"publishers": ["The Edwin Mellen Press Ltd"], "key": "/books/OL10972130M", "title": "Critical Editions of Spanish Artistic Ballads (Romanceros Artisticos): 1580-1650: From the \"Romancero\" of Gabriel Lobo Lasso De La Vega: Segunda Parte ... (Mellen Critical Editions and Translations)", "isbn_13": ["9780773486317"], "physical_format": "Hardcover", "isbn_10": ["0773486313"], "publish_date": "July 1997", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:56:48.046572"}, "authors": [{"key": "/authors/OL2857010A"}], "latest_revision": 2, "works": [{"key": "/works/OL8534672W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10972278M 9 2020-10-12T08:14:31.495489 {"publishers": ["McGill-Queen's University Press"], "identifiers": {"goodreads": ["7094006"]}, "subtitle": "A Strategy of War Crimes", "weight": "1.2 pounds", "covers": [5086710], "physical_format": "Hardcover", "lc_classifications": [""], "latest_revision": 9, "key": "/books/OL10972278M", "authors": [{"key": "/authors/OL28682A"}], "subjects": ["Eastern Europe - Balkan Republics", "International Relations - General", "Europe - General", "International", "Balkan Peninsula - History", "War Crimes And Criminals", "History", "History - General History", "Military"], "isbn_13": ["9780773523852"], "source_records": ["amazon:0773523855", "bwb:9780773523852"], "title": "The Serbian Project and Its Adversaries", "number_of_pages": 300, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0773523855"], "publish_date": "August 21, 2003", "last_modified": {"type": "/type/datetime", "value": "2020-10-12T08:14:31.495489"}, "oclc_numbers": ["48229975"], "works": [{"key": "/works/OL66984W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.6 x 5.5 x 1 inches", "revision": 9}
+/type/edition /books/OL10972758M 5 2022-12-04T05:53:14.100438 {"publishers": ["Paperjacks"], "title": "Flint and Feather - The Complete Poems", "identifiers": {"goodreads": ["1877550"], "librarything": ["690637"]}, "physical_format": "Mass Market Paperback", "isbn_10": ["0773770216"], "publish_date": "1972", "key": "/books/OL10972758M", "authors": [{"key": "/authors/OL224896A"}], "works": [{"key": "/works/OL1878129W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:P8-BDA-780"], "source_records": ["promise:bwb_daily_pallets_2022-11-18"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T05:53:14.100438"}}
+/type/edition /books/OL10972924M 4 2019-07-31T11:49:40.413336 {"publishers": ["Ont Instit for Studies Education"], "languages": [{"key": "/languages/eng"}], "identifiers": {"goodreads": ["3204571"]}, "last_modified": {"type": "/type/datetime", "value": "2019-07-31T11:49:40.413336"}, "title": "Values and Living Learning Mat/Gr 7& 8", "physical_format": "Paperback", "number_of_pages": 199, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780774450614"], "isbn_10": ["0774450614"], "publish_date": "January 1983", "key": "/books/OL10972924M", "authors": [{"key": "/authors/OL3496896A"}, {"key": "/authors/OL1005686A"}], "latest_revision": 4, "works": [{"key": "/works/OL4783790W"}], "type": {"key": "/type/edition"}, "subjects": ["Aims & Objectives", "Education / Teaching"], "revision": 4}
+/type/edition /books/OL10973201M 3 2011-04-25T20:15:28.271589 {"publishers": ["Univ of Ottawa Pr"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2011-04-25T20:15:28.271589"}, "title": "Canadian Human Rights Yearbook, 1991-92 (Canadian Human Rights Yearbook/Annuaire Canadien Des Droits De La Personne)", "type": {"key": "/type/edition"}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780776604008"], "physical_format": "Hardcover", "isbn_10": ["0776604007"], "publish_date": "March 1992", "key": "/books/OL10973201M", "authors": [{"key": "/authors/OL25283A"}, {"key": "/authors/OL3519543A"}], "latest_revision": 3, "oclc_numbers": ["62964715"], "contributions": ["Michel Morin (Contributor)"], "subjects": ["Political And Civil Rights", "Reference"], "revision": 3}
+/type/edition /books/OL10973207M 3 2011-04-30T05:15:32.083864 {"publishers": ["University of Ottawa Press"], "physical_format": "Paperback", "subtitle": "Practice and Theory", "last_modified": {"type": "/type/datetime", "value": "2011-04-30T05:15:32.083864"}, "title": "Conference Interpretation", "number_of_pages": 304, "isbn_13": ["9780776604473"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0776604473"], "publish_date": "June 2001", "key": "/books/OL10973207M", "authors": [{"key": "/authors/OL2738999A"}], "latest_revision": 3, "oclc_numbers": ["230183006"], "works": [{"key": "/works/OL8229642W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "History - General History", "Politics/International Relations"], "revision": 3}
+/type/edition /books/OL10973868M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "weight": "2 pounds", "publishers": ["Crabtree Pub Co"], "title": "I'm the Chef", "isbn_13": ["9780778702924"], "isbn_10": ["0778702928"], "publish_date": "October 2002", "key": "/books/OL10973868M", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "type": {"key": "/type/edition"}, "subjects": ["Children: Grades 3-4"], "physical_dimensions": "11.5 x 9 x 0.8 inches", "revision": 1}
+/type/edition /books/OL109743M 12 2022-12-05T05:58:08.431936 {"identifiers": {"goodreads": ["1335916"]}, "series": ["Monographs of the Society for Research in Child Development ;", "serial no. 255, vol. 63, no. 4", "Monographs of the Society for Research in Child Development ;", "v. 63, no. 4."], "covers": [3710336], "lc_classifications": ["BF720.A85 C37 1998"], "contributions": ["Nagell, Katherine.", "Tomasello, Michael.", "Butterworth, George.", "Moore, Chris, 1958-"], "source_records": ["marc:marc_records_scriblio_net/part28.dat:71258489:1373", "marc:marc_ithaca_college/ic_marc.mrc:162858178:1321", "marc:marc_loc_2016/BooksAll.2016.part28.utf8:99072235:1474", "ia:socialcognitionj0000carp", "bwb:9780226094618", "ia:socialcognitionj0000carp_u1u0", "promise:bwb_daily_pallets_2022-05-25"], "title": "Social cognition, joint attention, and communicative competence from 9 to 15 months of age", "languages": [{"key": "/languages/eng"}], "subjects": ["Attention in infants", "Interpersonal communication in infants", "Cognition in infants", "Communicative competence in children", "Social perception in children"], "publish_country": "ilu", "by_statement": "Malinda Carpenter, Katherine Nagell, Michael Tomasello ; with commentary by George Butterworth, Chris Moore.", "oclc_numbers": ["40391983"], "type": {"key": "/type/edition"}, "publishers": ["University of Chicago Press"], "key": "/books/OL109743M", "authors": [{"key": "/authors/OL73506A"}], "publish_places": ["Chicago, IL"], "pagination": "vi, 176 p. :", "dewey_decimal_class": ["155.42/23"], "notes": {"type": "/type/text", "value": "Includes bibliographical references."}, "number_of_pages": 176, "lccn": ["99229007"], "isbn_10": ["0226094618"], "publish_date": "1998", "works": [{"key": "/works/OL849835W"}], "ocaid": "socialcognitionj0000carp", "local_id": ["urn:bwbsku:O8-ARD-384"], "latest_revision": 12, "revision": 12, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-05T05:58:08.431936"}}
+/type/edition /books/OL10974403M 6 2012-06-05T18:53:07.359912 {"publishers": ["Wright Group"], "identifiers": {"librarything": ["3527832"], "goodreads": ["2621401"]}, "physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2012-06-05T18:53:07.359912"}, "latest_revision": 6, "key": "/books/OL10974403M", "authors": [{"key": "/authors/OL2857941A"}], "subjects": ["Rain forest animals", "Rain forests"], "isbn_13": ["9780780215078"], "classifications": {}, "title": "Animals of the tropical rain forest", "notes": {"type": "/type/text", "value": "Sunshine books"}, "number_of_pages": 24, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0780215079"], "publish_date": "1994", "works": [{"key": "/works/OL8536494W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL10974603M 4 2011-04-28T04:45:30.654294 {"publishers": ["The Wright Group"], "identifiers": {"librarything": ["5710755"]}, "subtitle": "The story of a beach", "physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2011-04-28T04:45:30.654294"}, "latest_revision": 4, "key": "/books/OL10974603M", "authors": [{"key": "/authors/OL3519849A"}], "subjects": ["Beaches", "Reading (Primary)"], "languages": [{"key": "/languages/eng"}], "title": "From rocks to sand", "number_of_pages": 12, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780780245747"], "isbn_10": ["0780245741"], "publish_date": "1996", "oclc_numbers": ["40277319"], "works": [{"key": "/works/OL9509626W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10975369M 4 2010-04-24T18:12:34.996110 {"publishers": ["Tandem Library"], "physical_format": "School & Library Binding", "subtitle": "The Inside Story", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:12:34.996110"}, "title": "Britney Spears Is A Three-headed Alien", "identifiers": {"goodreads": ["6451661"]}, "isbn_13": ["9780613824446"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["061382444X"], "publish_date": "June 2001", "key": "/books/OL10975369M", "authors": [{"key": "/authors/OL478348A"}], "latest_revision": 4, "works": [{"key": "/works/OL3071310W"}], "type": {"key": "/type/edition"}, "subjects": ["Humorous Stories", "Science Fiction, Fantasy, & Magic", "Juvenile Fiction", "Children's 12-Up - Fiction - Science Fiction", "Fiction", "Human-alien encounters", "Rock musicians", "Children: Young Adult (Gr. 7-9)"], "revision": 4}
+/type/edition /books/OL10975412M 2 2009-12-15T00:56:51.501193 {"physical_format": "Hardcover", "subtitle": "Ciclo Egb / Serie del Sol", "title": "Ciencias Sociales 6 - 2b", "isbn_10": ["0613825608"], "publishers": ["Tandem Library"], "isbn_13": ["9780613825603"], "languages": [{"key": "/languages/spa"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:56:51.501193"}, "publish_date": "February 1998", "key": "/books/OL10975412M", "authors": [{"key": "/authors/OL3520033A"}], "latest_revision": 2, "subjects": ["General", "Juvenile Nonfiction", "Children's 9-12", "Children's Books/Ages 9-12 Nonfiction"], "works": [{"key": "/works/OL9510486W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10975487M 2 2009-12-15T00:56:51.501193 {"physical_format": "Hardcover", "title": "Fundamentos de Fisica - Volumen 1 6 Edicion", "isbn_10": ["0613826906"], "publishers": ["Tandem Library"], "isbn_13": ["9780613826907"], "languages": [{"key": "/languages/spa"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:56:51.501193"}, "publish_date": "April 2001", "key": "/books/OL10975487M", "authors": [{"key": "/authors/OL769057A"}], "latest_revision": 2, "subjects": ["Activity Books - General", "Juvenile Nonfiction", "Children's 9-12", "Children's Books/Ages 9-12 Nonfiction"], "works": [{"key": "/works/OL4103157W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10975751M 5 2010-08-10T12:35:32.309314 {"publishers": ["Tandem Library"], "physical_format": "Hardcover", "subtitle": "Communicating You", "last_modified": {"type": "/type/datetime", "value": "2010-08-10T12:35:32.309314"}, "title": "Becoming a Contagious Christian Youth Edition Student's Guide", "identifiers": {"goodreads": ["1680973"]}, "isbn_13": ["9780613832779"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0613832779"], "publish_date": "March 2001", "key": "/books/OL10975751M", "authors": [{"key": "/authors/OL2887093A"}, {"key": "/authors/OL218949A"}, {"key": "/authors/OL43934A"}], "latest_revision": 5, "works": [{"key": "/works/OL15048427W"}], "type": {"key": "/type/edition"}, "subjects": ["Juvenile Nonfiction", "Religion - Christianity", "Religion - Christianity - General", "Religion - Inspirational", "Children's 12-Up - Religion - General", "Children's Books/Young Adult Religion"], "revision": 5}
+/type/edition /books/OL1097585M 9 2021-09-15T14:49:24.984762 {"publishers": ["Workman Pub."], "number_of_pages": 346, "ia_box_id": ["IA102511"], "isbn_10": ["1563056828"], "covers": [796392], "lc_classifications": ["TP577 .K63 1995", "TP577.K63 1995"], "key": "/books/OL1097585M", "authors": [{"key": "/authors/OL582326A"}], "ocaid": "beerloversrating00klei", "publish_places": ["New York, NY"], "pagination": "346 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:132684163:523", "bwb:9781563056826"], "title": "The beer lover's rating guide", "dewey_decimal_class": ["641.2/3"], "identifiers": {"librarything": ["469954"], "goodreads": ["3285603"]}, "languages": [{"key": "/languages/eng"}], "lccn": ["94022247"], "subjects": ["Beer."], "publish_date": "1995", "publish_country": "nyu", "by_statement": "by Bob Klein.", "works": [{"key": "/works/OL3488739W"}], "type": {"key": "/type/edition"}, "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2021-09-15T14:49:24.984762"}}
+/type/edition /books/OL1097609M 7 2020-11-18T10:14:58.094754 {"publishers": ["Mcgraw-Hill"], "number_of_pages": 304, "subtitle": "reengineering information and communication systems", "isbn_10": ["0070425930"], "covers": [1074424], "lc_classifications": ["HD30.3 .M563 1995"], "latest_revision": 7, "key": "/books/OL1097609M", "authors": [{"key": "/authors/OL236381A"}], "ocaid": "analyzingoutsour0000mino", "publish_places": ["New York"], "pagination": "xiii, 304 p. :", "source_records": ["ia:analyzingoutsour0000mino", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:132705098:953"], "title": "Analyzing outsourcing", "dewey_decimal_class": ["658.4/038"], "notes": {"type": "/type/text", "value": "Includes bibliographical references and index."}, "identifiers": {"goodreads": ["4300857"], "librarything": ["3040083"]}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["94022273"], "subjects": ["Business enterprises -- Communication systems -- Management.", "Information technology -- Management.", "Management information systems.", "Electronic data processing departments -- Contracting out.", "Information services -- Contracting out.", "Reengineering (Management)"], "publish_date": "1995", "publish_country": "nyu", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T10:14:58.094754"}, "by_statement": "Daniel Minoli.", "works": [{"key": "/works/OL1968177W"}], "type": {"key": "/type/edition"}, "revision": 7}
+/type/edition /books/OL10976116M 4 2010-04-24T18:12:34.996110 {"publishers": ["Tandem Library"], "physical_format": "School & Library Binding", "subtitle": "How To Play Like A Pro (Converse All Star Sports Series)", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:12:34.996110"}, "title": "Converser All Star Footballo", "identifiers": {"goodreads": ["6820865"]}, "isbn_13": ["9780613841108"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0613841107"], "publish_date": "August 1996", "key": "/books/OL10976116M", "authors": [{"key": "/authors/OL2736709A"}], "latest_revision": 4, "works": [{"key": "/works/OL8226107W"}], "type": {"key": "/type/edition"}, "subjects": ["Sports & Recreation - Football", "Juvenile Nonfiction", "Children's 9-12 - Sports / Recreation / Outdoors", "Children's Books/Ages 9-12 Nonfiction", "Football", "Juvenile literature", "Training", "Children: Young Adult (Gr. 7-9)"], "revision": 4}
+/type/edition /books/OL10976254M 2 2009-12-15T00:56:51.501193 {"physical_format": "Hardcover", "title": "DOS Venaditos - Tapa Dura -", "isbn_10": ["0613843428"], "publishers": ["Tandem Library"], "isbn_13": ["9780613843423"], "languages": [{"key": "/languages/spa"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:56:51.501193"}, "publish_date": "November 1995", "key": "/books/OL10976254M", "authors": [{"key": "/authors/OL3520221A"}], "latest_revision": 2, "subjects": ["Interactive Adventure", "Juvenile Fiction", "Children's Baby/Preschool", "Children's Books/Baby-Preschool"], "works": [{"key": "/works/OL9510899W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10976262M 3 2010-12-10T20:46:35.532623 {"publishers": ["Tandem Library"], "languages": [{"key": "/languages/eng"}], "subtitle": "And H-O Scale Model", "last_modified": {"type": "/type/datetime", "value": "2010-12-10T20:46:35.532623"}, "title": "Cut and Assemble a Nineteenth Century Mill Town", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780613843591"], "physical_format": "Hardcover", "isbn_10": ["0613843592"], "publish_date": "March 1993", "key": "/books/OL10976262M", "authors": [{"key": "/authors/OL2689000A"}], "latest_revision": 3, "works": [{"key": "/works/OL9200265W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Juvenile Fiction", "Children's 9-12", "Children's Books/Ages 9-12 Fiction"], "revision": 3}
+/type/edition /books/OL10976281M 3 2010-04-24T18:12:34.996110 {"publishers": ["Tandem Library"], "languages": [{"key": "/languages/spa"}], "subtitle": "Veremos El Fin de La Civilizacion Actual, I Want to", "key": "/books/OL10976281M", "title": "Yo Quiero Ser Un Misionero", "identifiers": {"goodreads": ["2872345"]}, "isbn_13": ["9780613844604"], "physical_format": "Hardcover", "isbn_10": ["0613844602"], "publish_date": "April 1998", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:12:34.996110"}, "authors": [{"key": "/authors/OL2859650A"}, {"key": "/authors/OL744337A"}, {"key": "/authors/OL2859651A"}], "latest_revision": 3, "type": {"key": "/type/edition"}, "subjects": ["Juvenile Nonfiction", "Religion - Christianity", "Religion - Christianity - General", "Children's 4-8 - Religion - Missions", "Children's Books/Ages 4-8 Nonfiction"], "revision": 3}
+/type/edition /books/OL10976287M 4 2010-04-24T18:12:34.996110 {"publishers": ["Tandem Library"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:12:34.996110"}, "title": "Wee Sing for Christmas", "contributions": ["Nancy Spence Klein (Illustrator)"], "identifiers": {"goodreads": ["1038059"]}, "isbn_13": ["9780613844697"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0613844696"], "publish_date": "September 2002", "key": "/books/OL10976287M", "authors": [{"key": "/authors/OL36916A"}, {"key": "/authors/OL2724632A"}], "latest_revision": 4, "subjects": ["General", "Juvenile Fiction", "Children's 4-8", "Children's Books/Ages 4-8 Fiction"], "works": [{"key": "/works/OL15045373W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL1097642M 7 2020-11-18T10:15:18.976573 {"publishers": ["M&T Books"], "identifiers": {"librarything": ["1311390"], "goodreads": ["5497268"]}, "subtitle": "Mac tools, toys & tales", "isbn_10": ["1558513957"], "lc_classifications": ["QA76.8.M3 H68 1994"], "latest_revision": 7, "key": "/books/OL1097642M", "authors": [{"key": "/authors/OL582348A"}], "publish_places": ["New York, N.Y"], "pagination": "x, 244 p. :", "source_records": ["amazon:1558513957", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:132732842:773"], "title": "Late night with MacHack", "dewey_decimal_class": ["005.265"], "notes": {"type": "/type/text", "value": "System requirements for computer disc: Macintosh; System 6 or 7; CD-ROM drive.\nIncludes index."}, "number_of_pages": 244, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["94022310"], "subjects": ["Macintosh (Computer) -- Programming -- Congresses."], "publish_date": "1994", "publish_country": "nyu", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T10:15:18.976573"}, "by_statement": "[Doug Houseman].", "oclc_numbers": ["30738008"], "works": [{"key": "/works/OL3488797W"}], "type": {"key": "/type/edition"}, "revision": 7}
+/type/edition /books/OL10976535M 5 2022-02-06T12:03:04.767237 {"publishers": ["Tandem Library"], "physical_format": "Hardcover", "subjects": ["Animals - Dinosaurs & Prehistoric Creatures", "Imagination & Play", "Juvenile Fiction", "Sports & Recreation - Imaginative Play", "Children's 4-8 - Picturebooks"], "source_records": ["amazon:0613851242"], "isbn_10": ["0613851242"], "contributions": ["Hans Wilhelm (Illustrator)", "Miriam Fabiancic (Translator)"], "identifiers": {"goodreads": ["6254476"]}, "isbn_13": ["9780613851244"], "languages": [{"key": "/languages/spa"}], "publish_date": "May 2002", "key": "/books/OL10976535M", "authors": [{"key": "/authors/OL18868A"}], "title": "Que Llueva, Que Llueva! / Rain, Rain Go Away! (Dinofours)", "works": [{"key": "/works/OL104371W"}], "type": {"key": "/type/edition"}, "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-06T12:03:04.767237"}}
+/type/edition /books/OL10976984M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Tandem Library"], "title": "North American Ducks, Geese and Swans Coloring Book", "isbn_13": ["9780613860383"], "isbn_10": ["0613860381"], "publish_date": "July 1996", "key": "/books/OL10976984M", "authors": [{"key": "/authors/OL2746079A"}, {"key": "/authors/OL3520340A"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Juvenile Fiction", "Children's 4-8", "Children's Books/Ages 4-8 Fiction"], "revision": 1}
+/type/edition /books/OL10977322M 2 2009-12-15T00:56:52.802407 {"physical_format": "Hardcover", "title": "Blustery Day", "isbn_10": ["0613868331"], "publishers": ["Tandem Library"], "isbn_13": ["9780613868334"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:56:52.802407"}, "publish_date": "July 2001", "key": "/books/OL10977322M", "authors": [{"key": "/authors/OL3234445A"}], "latest_revision": 2, "subjects": ["General", "Juvenile Fiction", "Children's 4-8 - Fiction - General"], "works": [{"key": "/works/OL9157511W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10977943M 3 2010-04-13T06:22:01.764003 {"publishers": ["Tandem Library"], "languages": [{"key": "/languages/eng"}], "subtitle": "A Challenging Collection of Cross-Number Puzzles", "key": "/books/OL10977943M", "title": "Crossmatics", "isbn_13": ["9780613885539"], "covers": [3372297, 6257065], "physical_format": "Hardcover", "isbn_10": ["0613885538"], "publish_date": "February 1997", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:22:01.764003"}, "authors": [{"key": "/authors/OL3520498A"}], "latest_revision": 3, "works": [{"key": "/works/OL9511498W"}], "type": {"key": "/type/edition"}, "subjects": ["Juvenile Nonfiction", "Study Aids - General", "Children's 12-Up - Education", "Children's Books/Young Adult Misc. Nonfiction"], "revision": 3}
+/type/edition /books/OL10978320M 3 2020-05-10T08:18:51.126963 {"publishers": ["Tandem Library"], "languages": [{"key": "/languages/spa"}], "last_modified": {"type": "/type/datetime", "value": "2020-05-10T08:18:51.126963"}, "source_records": ["amazon:0613895460"], "title": "Aprendo Las Letras - MIS Juguetes", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780613895460"], "physical_format": "Hardcover", "isbn_10": ["0613895460"], "publish_date": "October 1996", "key": "/books/OL10978320M", "authors": [{"key": "/authors/OL2623771A"}], "latest_revision": 3, "works": [{"key": "/works/OL259241W"}], "type": {"key": "/type/edition"}, "subjects": ["Interactive Adventure", "Juvenile Fiction", "Children's Baby/Preschool", "Children's Books/Baby-Preschool"], "revision": 3}
+/type/edition /books/OL10978325M 2 2009-12-15T00:56:54.310509 {"physical_format": "Hardcover", "title": "Mio Mi Diario Intimo", "isbn_10": ["0613895517"], "publishers": ["Tandem Library"], "isbn_13": ["9780613895514"], "languages": [{"key": "/languages/spa"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:56:54.310509"}, "publish_date": "September 2003", "key": "/books/OL10978325M", "authors": [{"key": "/authors/OL3520544A"}], "latest_revision": 2, "subjects": ["Juvenile Nonfiction", "School & Education", "Children's 9-12", "Children's Books/Ages 9-12 Nonfiction"], "works": [{"key": "/works/OL9511555W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10978714M 3 2010-04-24T18:12:34.996110 {"publishers": ["Tandem Library"], "languages": [{"key": "/languages/eng"}], "subtitle": "Storybook For Young Children In Sign Language", "key": "/books/OL10978714M", "weight": "12 ounces", "title": "I Was So Mad", "identifiers": {"goodreads": ["2325844"]}, "isbn_13": ["9780613909693"], "physical_format": "School & Library Binding", "isbn_10": ["0613909690"], "publish_date": "June 1986", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:12:34.996110"}, "authors": [{"key": "/authors/OL2112350A"}], "latest_revision": 3, "type": {"key": "/type/edition"}, "subjects": ["General", "Juvenile Fiction", "Children's 4-8", "Children's Books/Ages 4-8 Fiction", "Children: Kindergarten"], "physical_dimensions": "9 x 7.8 x 0.5 inches", "revision": 3}
+/type/edition /books/OL10978770M 4 2010-04-24T18:12:34.996110 {"publishers": ["Tandem Library"], "physical_format": "School & Library Binding", "subtitle": "Developing Secret And Publi", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:12:34.996110"}, "title": "Cryptography for Internet And Database Applications", "identifiers": {"goodreads": ["5004866"]}, "isbn_13": ["9780613913300"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0613913302"], "publish_date": "September 2002", "key": "/books/OL10978770M", "authors": [{"key": "/authors/OL2737081A"}], "latest_revision": 4, "works": [{"key": "/works/OL8226653W"}], "type": {"key": "/type/edition"}, "subjects": ["Security", "Internet - Security", "Networking - General", "Security - General", "Computers", "Computer Bks - Internet", "Computers - Computer Security", "Computer security", "Cryptography", "Database security", "Computer Books: General"], "revision": 4}
+/type/edition /books/OL10979128M 2 2009-12-15T00:56:54.310509 {"physical_format": "Hardcover", "title": "Pictures of Adam", "isbn_10": ["0613929691"], "publishers": ["Tandem Library"], "isbn_13": ["9780613929691"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:56:54.310509"}, "publish_date": "September 2000", "key": "/books/OL10979128M", "authors": [{"key": "/authors/OL771269A"}], "latest_revision": 2, "subjects": ["Juvenile Fiction", "Social Issues - General", "Social Situations - General", "Children's 9-12 - Fiction - General"], "works": [{"key": "/works/OL4112430W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10979278M 3 2010-08-13T15:06:00.900148 {"publishers": ["Tandem Library"], "physical_format": "School & Library Binding", "last_modified": {"type": "/type/datetime", "value": "2010-08-13T15:06:00.900148"}, "weight": "9.6 ounces", "title": "Los Mundos Magicos De Harry Potter", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780613932189"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0613932188"], "publish_date": "November 2002", "key": "/books/OL10979278M", "authors": [{"key": "/authors/OL1399035A"}], "latest_revision": 3, "works": [{"key": "/works/OL5751217W"}], "type": {"key": "/type/edition"}, "subjects": ["Juvenile Fiction", "Short Stories", "Literary", "Fiction", "Children's 9-12", "Children's Books/Ages 9-12 Fiction"], "physical_dimensions": "8.8 x 5.9 x 0.7 inches", "revision": 3}
+/type/edition /books/OL10979371M 4 2010-04-24T18:12:34.996110 {"publishers": ["Tandem Library"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:12:34.996110"}, "title": "Three Little Pigs Book & Night Light (Good Night Classic)", "contributions": ["Jim Harris (Illustrator)"], "identifiers": {"goodreads": ["6736433"]}, "isbn_13": ["9780613934077"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0613934075"], "publish_date": "October 1995", "key": "/books/OL10979371M", "authors": [{"key": "/authors/OL383576A"}], "latest_revision": 4, "works": [{"key": "/works/OL2632536W"}], "type": {"key": "/type/edition"}, "subjects": ["Fairy Tales & Folklore - Single Title", "Juvenile Fiction", "Children's 4-8 - Books With Items"], "revision": 4}
+/type/edition /books/OL10979718M 4 2010-04-24T18:12:34.996110 {"publishers": ["Tandem Library"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:12:34.996110"}, "title": "Sailor Moon #04 (Sailor Moon)", "contributions": ["Anita Sangupta (Translator)"], "identifiers": {"goodreads": ["1792681"]}, "isbn_13": ["9780613941372"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0613941373"], "publish_date": "January 2003", "key": "/books/OL10979718M", "authors": [{"key": "/authors/OL1437438A"}], "latest_revision": 4, "works": [{"key": "/works/OL5855159W"}], "type": {"key": "/type/edition"}, "subjects": ["Comics & Graphic Novels - General", "Juvenile Fiction", "Science Fiction, Fantasy, & Magic", "Children's 12-Up - Fiction - Fantasy", "Children's Books/Young Adult Graphic Novels"], "revision": 4}
+/type/edition /books/OL10979938M 2 2009-12-15T00:56:55.384062 {"physical_format": "Hardcover", "title": "Pequenos Pintores La Bella y La Bestia", "isbn_10": ["0613946081"], "publishers": ["Tandem Library"], "isbn_13": ["9780613946087"], "languages": [{"key": "/languages/spa"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:56:55.384062"}, "publish_date": "July 2003", "key": "/books/OL10979938M", "authors": [{"key": "/authors/OL3213420A"}], "latest_revision": 2, "subjects": ["Activity Books - Coloring Books", "Juvenile Nonfiction", "Children's 4-8", "Children's Books/Ages 4-8 Nonfiction"], "works": [{"key": "/works/OL9127399W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10979978M 4 2010-04-24T18:12:34.996110 {"publishers": ["Tandem Library"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:12:34.996110"}, "title": "Pahicaplapa", "identifiers": {"goodreads": ["6212470"]}, "isbn_13": ["9780613946551"], "languages": [{"key": "/languages/spa"}], "isbn_10": ["0613946553"], "publish_date": "October 1996", "key": "/books/OL10979978M", "authors": [{"key": "/authors/OL3520656A"}], "latest_revision": 4, "works": [{"key": "/works/OL9511759W"}], "type": {"key": "/type/edition"}, "subjects": ["Interactive Adventure", "Juvenile Fiction", "Children's Baby/Preschool", "Children's Books/Baby-Preschool"], "revision": 4}
+/type/edition /books/OL1098030M 7 2011-04-29T20:33:32.841138 {"publishers": ["Black Tie Press"], "subtitle": "poems", "isbn_10": ["0941749320"], "covers": [3879503], "lc_classifications": ["PS3568.A846 D8 1994"], "latest_revision": 7, "key": "/books/OL1098030M", "authors": [{"key": "/authors/OL25221A"}], "publish_places": ["Houston"], "languages": [{"key": "/languages/eng"}], "pagination": "p. cm.", "source_records": ["marc:marc_records_scriblio_net/part24.dat:58571866:588", "marc:marc_loc_updates/v37.i38.records.utf8:5936572:588"], "title": "Duende", "lccn": ["94022714"], "identifiers": {"librarything": ["2316738"], "goodreads": ["2227964"]}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "edition_name": "1st ed.", "subjects": ["Young adult poetry, American", "American poetry"], "publish_date": "1994", "publish_country": "txu", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T20:33:32.841138"}, "by_statement": "by Donald Rawley.", "oclc_numbers": ["30892730"], "works": [{"key": "/works/OL156223W"}], "type": {"key": "/type/edition"}, "revision": 7}
+/type/edition /books/OL10980424M 4 2010-04-24T18:12:34.996110 {"publishers": ["Tandem Library"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:12:34.996110"}, "title": "Libro de Las Sombras, El", "identifiers": {"goodreads": ["4788162"]}, "isbn_13": ["9780613956819"], "languages": [{"key": "/languages/spa"}], "isbn_10": ["0613956818"], "publish_date": "February 2001", "key": "/books/OL10980424M", "authors": [{"key": "/authors/OL1393340A"}], "latest_revision": 4, "works": [{"key": "/works/OL5730972W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Juvenile Fiction", "Children's Baby/Preschool", "Children's Books/Baby-Preschool"], "revision": 4}
+/type/edition /books/OL10980631M 2 2009-12-15T00:56:57.040849 {"physical_format": "Hardcover", "title": "Pooh - Un Cuento de Colores - Libro Para Colorear", "isbn_10": ["0613961307"], "publishers": ["Tandem Library"], "isbn_13": ["9780613961301"], "languages": [{"key": "/languages/spa"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:56:57.040849"}, "publish_date": "May 2000", "key": "/books/OL10980631M", "authors": [{"key": "/authors/OL2728855A"}], "latest_revision": 2, "subjects": ["Activity Books - Coloring Books", "Juvenile Nonfiction", "Children's 9-12", "Children's Books/Ages 9-12 Nonfiction"], "works": [{"key": "/works/OL8201706W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10980717M 3 2010-04-24T18:12:34.996110 {"publishers": ["Tandem Library"], "languages": [{"key": "/languages/eng"}], "key": "/books/OL10980717M", "title": "My Daddy Is a Guardsman", "identifiers": {"goodreads": ["4288764"]}, "isbn_13": ["9780613962568"], "physical_format": "Hardcover", "isbn_10": ["0613962567"], "publish_date": "October 2002", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:12:34.996110"}, "authors": [{"key": "/authors/OL3071822A"}, {"key": "/authors/OL3330919A"}], "latest_revision": 3, "type": {"key": "/type/edition"}, "subjects": ["General", "Juvenile Fiction", "Children's 4-8", "Children's Books/Ages 4-8 Fiction"], "revision": 3}
+/type/edition /books/OL10980738M 2 2010-08-17T05:05:06.982301 {"publishers": ["Tandem Library"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-08-17T05:05:06.982301"}, "title": "Crushing Avalanches (Awesome Forces of Nature)", "identifiers": {"librarything": ["6392752"]}, "isbn_13": ["9780613963152"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0613963156"], "publish_date": "September 2003", "key": "/books/OL10980738M", "authors": [{"key": "/authors/OL3109653A"}, {"key": "/authors/OL2014881A"}], "latest_revision": 2, "type": {"key": "/type/edition"}, "subjects": ["Juvenile Nonfiction", "Nature - Weather/Natural Disasters", "Science & Nature - Disasters", "Children's 9-12 - Nature / Guide Books", "Children's Books/Ages 9-12 Nonfiction"], "revision": 2}
+/type/edition /books/OL10980902M 2 2009-12-15T00:56:57.040849 {"physical_format": "Hardcover", "title": "Huevos de Pascua", "isbn_10": ["0613967305"], "publishers": ["Tandem Library"], "isbn_13": ["9780613967303"], "languages": [{"key": "/languages/spa"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:56:57.040849"}, "publish_date": "August 1995", "key": "/books/OL10980902M", "authors": [{"key": "/authors/OL3521015A"}], "latest_revision": 2, "subjects": ["Interactive Adventure", "Juvenile Fiction", "Children's Baby/Preschool", "Children's Books/Baby-Preschool"], "works": [{"key": "/works/OL9512536W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL1098112M 5 2020-11-18T10:20:07.858653 {"publishers": ["Birkha\u0308user Verlag"], "identifiers": {"goodreads": ["4852008", "1512397"]}, "subtitle": "the Vladimir Petrovich Potapov memorial volume", "isbn_10": ["3764350911", "0817650911"], "series": ["Operator theory, advances and applications ;", "vol. 72", "Operator theory, advances and applications ;", "v. 72."], "covers": [4716467, 3879939, 2235431], "lc_classifications": ["QA329 .M384 1994"], "latest_revision": 5, "key": "/books/OL1098112M", "publish_places": ["Basel", "Boston"], "contributions": ["Potapov, V. P. 1914-1980.", "Gohberg, I. 1928-", "Sakhnovich, L. A."], "pagination": "xxviii, 211 p. :", "source_records": ["marc:marc_records_scriblio_net/part24.dat:58643850:1084", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:133143048:1080"], "title": "Matrix and operator valued functions", "dewey_decimal_class": ["515/.724"], "notes": {"type": "/type/text", "value": "Includes bibliographical references."}, "number_of_pages": 211, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["94022798"], "subjects": ["Operator-valued functions.", "Functions of complex variables."], "publish_date": "1994", "publish_country": "sz ", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T10:20:07.858653"}, "by_statement": "edited by I. Gohberg, L.A. Sakhnovich.", "works": [{"key": "/works/OL18927809W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10981452M 3 2011-05-04T18:33:50.160237 {"publishers": ["Tandem Library"], "languages": [{"key": "/languages/eng"}], "subtitle": "Grades 1-2", "last_modified": {"type": "/type/datetime", "value": "2011-05-04T18:33:50.160237"}, "title": "Learning Adventures in Science", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780613979672"], "physical_format": "Unknown Binding", "isbn_10": ["0613979672"], "publish_date": "February 1998", "key": "/books/OL10981452M", "authors": [{"key": "/authors/OL2785894A"}, {"key": "/authors/OL2733295A"}], "latest_revision": 3, "works": [{"key": "/works/OL267890W"}], "type": {"key": "/type/edition"}, "subjects": ["Science & Nature - General", "Children's Books/Ages 4-8 Nonfiction"], "revision": 3}
+/type/edition /books/OL1098146M 14 2022-12-04T16:15:38.199970 {"publishers": ["Carolrhoda Books"], "number_of_pages": 88, "subtitle": "the story of Robert Goddard", "ia_box_id": ["IA106501"], "subject_place": ["United States"], "covers": [1628596], "local_id": ["urn:sfpl:31223091456815", "urn:sfpl:31223091456823", "urn:bwbsku:W7-DFX-542"], "ia_loaded_id": ["rocketmanstoryof00stre"], "lc_classifications": ["TL781.85.G6 S77 1995", "TL781.85.G6S77 1995"], "key": "/books/OL1098146M", "authors": [{"key": "/authors/OL18751A"}], "ocaid": "rocketmanstoryof00stre", "publish_places": ["Minneapolis"], "subjects": ["Goddard, Robert Hutchings, 1882-1945 -- Juvenile literature", "Goddard, Robert Hutchings, 1882-1945", "Rocketry -- United States -- Biography -- Juvenile literature", "Physicists", "Rocketry"], "pagination": "88 p. :", "source_records": ["marc:marc_records_scriblio_net/part24.dat:58674934:879", "ia:rocketmanstoryof00stre", "marc:marc_openlibraries_sanfranciscopubliclibrary/sfpl_chq_2018_12_24_run02.mrc:150480570:1984", "bwb:9780876148631", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:133173240:879", "amazon:0876148631", "promise:bwb_daily_pallets_2022-08-25"], "title": "Rocket man", "dewey_decimal_class": ["621.43/56/092", "B"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 86) and index."}, "identifiers": {"librarything": ["5133227"], "goodreads": ["462110"]}, "languages": [{"key": "/languages/eng"}], "lccn": ["94022836"], "isbn_10": ["0876148631"], "publish_date": "1995", "publish_country": "mnu", "by_statement": "Tom Streissguth.", "oclc_numbers": ["30919257"], "works": [{"key": "/works/OL441728W"}], "type": {"key": "/type/edition"}, "latest_revision": 14, "revision": 14, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T16:15:38.199970"}}
+/type/edition /books/OL10981838M 2 2009-12-15T00:56:57.040849 {"physical_format": "Hardcover", "title": "Nuevas Fabulas Infantiles", "isbn_10": ["0613988353"], "publishers": ["Tandem Library"], "isbn_13": ["9780613988353"], "languages": [{"key": "/languages/spa"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:56:57.040849"}, "publish_date": "October 1997", "key": "/books/OL10981838M", "authors": [{"key": "/authors/OL3333226A"}], "latest_revision": 2, "subjects": ["Juvenile Fiction", "Legends, Myths, & Fables - Other", "Children's 4-8 - Fiction - General"], "works": [{"key": "/works/OL9279304W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10982245M 2 2009-12-15T00:56:58.217248 {"publishers": ["French & European Pubns"], "key": "/books/OL10982245M", "title": "Duden Woerterbuch Vol. 6 Aussptache", "isbn_13": ["9780614003697"], "physical_format": "Paperback", "isbn_10": ["0614003695"], "publish_date": "October 1, 1990", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:56:58.217248"}, "authors": [{"key": "/authors/OL3521207A"}], "latest_revision": 2, "works": [{"key": "/works/OL9512817W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10982417M 2 2011-04-25T22:09:30.044072 {"publishers": ["Princeton Book Company Publishers"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2011-04-25T22:09:30.044072"}, "title": "Four Adaptations of Effort Theory in Research & Training", "number_of_pages": 72, "isbn_13": ["9780614062434"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0614062438"], "publish_date": "December 1995", "key": "/books/OL10982417M", "authors": [{"key": "/authors/OL2646613A"}, {"key": "/authors/OL3521263A"}, {"key": "/authors/OL3521264A"}], "latest_revision": 2, "oclc_numbers": ["228385910"], "type": {"key": "/type/edition"}, "subjects": ["Research", "Reference"], "revision": 2}
+/type/edition /books/OL10982421M 1 2008-04-30T09:38:13.731961 {"physical_format": "Hardcover", "weight": "7.3 pounds", "publishers": ["Claitors Pub Div"], "title": "Catalog of Federal Domestic Assistance 1995", "isbn_13": ["9780614063189"], "isbn_10": ["0614063183"], "publish_date": "June 1995", "key": "/books/OL10982421M", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "type": {"key": "/type/edition"}, "subjects": ["Business/Economics"], "physical_dimensions": "11.5 x 11.5 x 2.8 inches", "revision": 1}
+/type/edition /books/OL10982790M 2 2009-12-08T02:17:52.307771 {"physical_format": "Library Binding", "languages": [{"key": "/languages/eng"}], "publishers": ["HarperCollins Publishers"], "isbn_10": ["0614288231"], "contributions": ["Henry Cole (Illustrator)"], "title": "Barefoot, Escape on the Underground Railroad", "isbn_13": ["9780614288230"], "last_modified": {"type": "/type/datetime", "value": "2009-12-08T02:17:52.307771"}, "publish_date": "March 1997", "key": "/books/OL10982790M", "authors": [{"key": "/authors/OL25472A"}], "latest_revision": 2, "subjects": ["General", "Children's 4-8 - Picturebooks"], "works": [{"key": "/works/OL451655W"}], "type": {"key": "/type/edition"}, "first_sentence": {"type": "/type/text", "value": "THE BAREFOOT didn't see the eyes watching him as he ran onto the overgrown pathway."}, "revision": 2}
+/type/edition /books/OL10983031M 5 2020-05-22T18:12:01.164006 {"publishers": ["NIMS, Inc"], "covers": [10006979], "physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2020-05-22T18:12:01.164006"}, "latest_revision": 5, "key": "/books/OL10983031M", "authors": [{"key": "/authors/OL3521476A"}], "ocaid": "notinmyschool0000haye", "subjects": ["Children and violence", "Problem youth", "Violence", "Violence in children", "Youth"], "edition_name": "1st ed edition", "languages": [{"key": "/languages/eng"}], "source_records": ["ia:notinmyschool0000haye"], "title": "Not in MY school!", "number_of_pages": 178, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780615114552"], "isbn_10": ["0615114555"], "publish_date": "2000", "oclc_numbers": ["45214051"], "works": [{"key": "/works/OL9513165W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL1098409M 7 2020-11-18T10:23:00.296234 {"publishers": ["University of Alabama Press"], "identifiers": {"librarything": ["8836173"], "goodreads": ["6003072"]}, "subtitle": "an Alabama medical mosaic", "isbn_10": ["0817307796"], "subject_place": ["Alabama", "Alabama."], "covers": [3879541], "lc_classifications": ["R157 .L64 1995"], "latest_revision": 7, "key": "/books/OL1098409M", "authors": [{"key": "/authors/OL582632A"}], "publish_places": ["Tuscaloosa"], "pagination": "xviii, 287 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:133409335:715"], "title": "Healing hands", "dewey_decimal_class": ["610/.9761"], "number_of_pages": 287, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["94023119"], "subjects": ["Physicians -- Alabama -- Interviews.", "Medicine -- Alabama.", "Oral history."], "publish_date": "1995", "publish_country": "alu", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T10:23:00.296234"}, "by_statement": "J. Mack Lofton, Jr. ; with a foreword by James A. Pittman, Jr.", "oclc_numbers": ["31014928"], "works": [{"key": "/works/OL3490007W"}], "type": {"key": "/type/edition"}, "revision": 7}
+/type/edition /books/OL10984797M 3 2010-04-24T18:12:34.996110 {"languages": [{"key": "/languages/eng"}], "key": "/books/OL10984797M", "title": "Discovery Works, North Carolina Edition, Houghton Mifflin Science, Includes Science Excursion for North Carolina", "publishers": ["Houghton Mifflin Company"], "identifiers": {"goodreads": ["7320627"]}, "isbn_13": ["9780618015290"], "edition_name": "North Carolina edition", "physical_format": "Hardcover", "isbn_10": ["0618015299"], "publish_date": "2000", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:12:34.996110"}, "latest_revision": 3, "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10984831M 3 2020-05-01T17:48:05.360037 {"publishers": ["Houghton Mifflin School"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2020-05-01T17:48:05.360037"}, "weight": "0.8 ounces", "title": "The Call of the Wild", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780618017577"], "edition_name": "Student edition", "physical_format": "Paperback", "isbn_10": ["0618017577"], "publish_date": "June 2000", "key": "/books/OL10984831M", "authors": [{"key": "/authors/OL2733732A"}], "latest_revision": 3, "works": [{"key": "/works/OL14942956W"}], "type": {"key": "/type/edition"}, "subjects": ["Literary Criticism & Collections", "Juvenile Nonfiction", "Children: Young Adult (Gr. 10-12)"], "physical_dimensions": "11.9 x 8.9 x 0.5 inches", "revision": 3}
+/type/edition /books/OL10985052M 3 2011-03-05T08:07:08.534061 {"publishers": ["Houghton Mifflin Company"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-03-05T08:07:08.534061"}, "latest_revision": 3, "key": "/books/OL10985052M", "authors": [{"key": "/authors/OL548453A"}], "subjects": ["History / General", "Civilization", "World - General", "History", "History: World"], "edition_name": "6 edition", "languages": [{"key": "/languages/eng"}], "classifications": {}, "title": "Western Civilization, Volume 2 Sixth Edition And Study Guide, Volume 2, Fifth Edition And", "notes": {"type": "/type/text", "value": "Sixth Edition"}, "identifiers": {}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780618033232"], "isbn_10": ["0618033238"], "publish_date": "June 22, 2000", "works": [{"key": "/works/OL3369393W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10985106M 4 2022-12-08T14:14:24.428788 {"publishers": ["McDougal Littell"], "title": "Modern America Emerges, 1880 - 1920 (Unit 7, In-Depth Resources) (Creating America: A History of the United States)", "identifiers": {"librarything": ["3474675"]}, "isbn_13": ["9780618036837"], "physical_format": "Paperback", "isbn_10": ["0618036830"], "publish_date": "2001", "key": "/books/OL10985106M", "oclc_numbers": ["51557014"], "type": {"key": "/type/edition"}, "works": [{"key": "/works/OL31689299W"}], "local_id": ["urn:bwbsku:P7-AES-663"], "source_records": ["promise:bwb_daily_pallets_2021-04-29"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-08T14:14:24.428788"}}
+/type/edition /books/OL10985114M 2 2011-05-04T18:44:43.099870 {"publishers": ["McDougal Littell"], "languages": [{"key": "/languages/eng"}], "subtitle": "Primary Source Explorer", "last_modified": {"type": "/type/datetime", "value": "2011-05-04T18:44:43.099870"}, "title": "McDougal Littell", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780618037087"], "physical_format": "CD-ROM", "isbn_10": ["061803708X"], "publish_date": "2001", "key": "/books/OL10985114M", "latest_revision": 2, "works": [{"key": "/works/OL8073578W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10985131M 3 2011-03-29T03:46:51.590868 {"publishers": ["Houghton Mifflin College Div"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-03-29T03:46:51.590868"}, "title": "Calculus of a Variable Transcendental Function", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "edition_name": "2nd Pkg edition", "isbn_13": ["9780618038527"], "isbn_10": ["0618038523"], "publish_date": "January 1999", "key": "/books/OL10985131M", "authors": [{"key": "/authors/OL2648745A"}], "latest_revision": 3, "works": [{"key": "/works/OL7942708W"}], "type": {"key": "/type/edition"}, "subjects": ["Calculus", "Mathematics", "Science/Mathematics"], "revision": 3}
+/type/edition /books/OL1098537M 4 2020-11-18T10:24:18.819023 {"publishers": ["Materials Research Society"], "identifiers": {"goodreads": ["3880167"]}, "subtitle": "symposium held November 29-December 3, 1993, Boston, Massachusetts, U.S.A.", "isbn_10": ["1558992316"], "series": ["Materials Research Society symposium proceedings,", "v. 332", "Materials Research Society symposia proceedings ;", "v. 332."], "covers": [4823721, 3879644], "lc_classifications": ["QC176.8.N35 D48 1994"], "latest_revision": 4, "key": "/books/OL1098537M", "publish_places": ["Pittsburgh, Pa"], "contributions": ["Sarikaya, Mehmet.", "Wickramasinghe, H. Kumar.", "Isaacson, Michael"], "pagination": "xiv, 622 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:133521312:1188"], "title": "Determining nanoscale physical properties of materials by microscopy and spectroscopy", "dewey_decimal_class": ["620.1/1299/0287"], "notes": {"type": "/type/text", "value": "Includes bibliographical references and indexes."}, "number_of_pages": 622, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["94023255"], "subjects": ["Nanostructures -- Analysis -- Congresses.", "Microscopy -- Technique -- Congresses.", "Spectrum analysis -- Congresses."], "publish_date": "1994", "publish_country": "pau", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T10:24:18.819023"}, "by_statement": "editors, Mehmet Sarikaya, H. Kumar Wickramasinghe, Michael Isaacson.", "works": [{"key": "/works/OL23535396W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10985406M 4 2022-10-29T14:49:18.915056 {"publishers": ["Houghton Mifflin Co"], "physical_format": "Unknown Binding", "source_records": ["ia:share1300a", "amazon:0618058079"], "title": "Share (Invitations to literacy)", "isbn_13": ["9780618058075"], "covers": [8023887], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0618058079"], "publish_date": "2001", "key": "/books/OL10985406M", "authors": [{"key": "/authors/OL37421A"}], "ocaid": "share1300a", "works": [{"key": "/works/OL530960W"}], "type": {"key": "/type/edition"}, "subjects": ["Language arts (Primary)", "Reading (Primary)"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-29T14:49:18.915056"}}
+/type/edition /books/OL1098546M 4 2020-11-18T10:24:24.206839 {"publishers": ["Rand"], "isbn_10": ["083301580X"], "covers": [3879522], "lc_classifications": ["UB212 .G76 1994"], "latest_revision": 4, "key": "/books/OL1098546M", "authors": [{"key": "/authors/OL582680A"}], "publish_places": ["Santa Monica, CA"], "contributions": ["United States. Army.", "Rand Corporation.", "Arroyo Center."], "pagination": "xix, 31 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:133529286:1010"], "title": "Battalion-level command and control at the National Training Center", "dewey_decimal_class": ["355.3/3041"], "notes": {"type": "/type/text", "value": "\"Prepared for the United States Army.\"\n\"Arroyo Center.\"\nAt head of title: Rand.\n\"MR-496-A\"--cover."}, "number_of_pages": 31, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["94023264"], "subjects": ["United States. Army -- Management.", "United States. Dept. of the Army. National Training Center.", "Command and control systems."], "publish_date": "1994", "publish_country": "cau", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T10:24:24.206839"}, "by_statement": "Jon Grossman.", "works": [{"key": "/works/OL3490204W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10985517M 5 2012-06-01T00:27:20.160849 {"publishers": ["Houghton Mifflin"], "identifiers": {"librarything": ["54594"]}, "physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2012-06-01T00:27:20.160849"}, "latest_revision": 5, "key": "/books/OL10985517M", "authors": [{"key": "/authors/OL231873A"}], "subjects": ["Amelia-Bedelia (Fictitious character)", "Camping", "Humorous stories", "Juvenile fiction"], "isbn_13": ["9780618062041"], "classifications": {}, "title": "Amelia Bedelia goes camping", "notes": {"type": "/type/text", "value": "Houghton Mifflin reading"}, "number_of_pages": 59, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0618062041"], "publish_date": "2001", "oclc_numbers": ["51455119"], "works": [{"key": "/works/OL1932880W"}], "type": {"key": "/type/edition"}, "first_sentence": {"type": "/type/text", "value": "\"Hurry up, Amelia Bedelia,\" called Mr. Rogers."}, "revision": 5}
+/type/edition /books/OL1098635M 6 2020-11-18T10:25:25.640734 {"publishers": ["Harmonie Park Press"], "number_of_pages": 307, "subtitle": "a festschrift in honor of Rose Brandel", "isbn_10": ["0899900704"], "series": ["Detroit monographs in musicology/Studies in music ;", "no. 14"], "lc_classifications": ["ML3799 .T6 1994"], "latest_revision": 6, "key": "/books/OL1098635M", "publish_places": ["Warren, Mich"], "contributions": ["Brandel, Rose.", "Leichtman, Ellen C., 1944-"], "pagination": "xxiii, 307 p. :", "source_records": ["marc:marc_records_scriblio_net/part24.dat:59110052:804", "marc:marc_ithaca_college/ic_marc.mrc:137076859:835", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:133613274:793"], "title": "To the four corners", "dewey_decimal_class": ["780/.89"], "notes": {"type": "/type/text", "value": "Includes bibliographical references and index."}, "identifiers": {"goodreads": ["4571387"], "librarything": ["8717330"]}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["94023360"], "subjects": ["Ethnomusicology", "Dance"], "publish_date": "1994", "publish_country": "miu", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T10:25:25.640734"}, "by_statement": "edited by Ellen C. Leichtman.", "works": [{"key": "/works/OL18340157W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL10986921M 2 2009-12-15T00:57:01.965909 {"physical_format": "Hardcover", "languages": [{"key": "/languages/eng"}], "publishers": ["Houghton Mifflin College Div"], "isbn_10": ["0618120882"], "title": "Financial Management", "edition_name": "5th Pkg edition", "isbn_13": ["9780618120888"], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:57:01.965909"}, "publish_date": "June 1999", "key": "/books/OL10986921M", "authors": [{"key": "/authors/OL407372A"}], "latest_revision": 2, "subjects": ["Accounting - Financial", "Business & Economics", "Business/Economics"], "works": [{"key": "/works/OL2768927W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10987101M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "subtitle": "Overhead Transparencies and Posters", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Houghton Mifflin"], "title": "English", "isbn_13": ["9780618127603"], "isbn_10": ["0618127607"], "publish_date": "2001", "key": "/books/OL10987101M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL10987121M 3 2011-01-15T04:04:28.959303 {"publishers": ["Houghton Mifflin Company"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-01-15T04:04:28.959303"}, "latest_revision": 3, "key": "/books/OL10987121M", "authors": [{"key": "/authors/OL244512A"}], "subjects": ["Mathematics / General", "Probability & Statistics - General", "Mathematics", "Science/Mathematics"], "edition_name": "2 edition", "languages": [{"key": "/languages/eng"}], "classifications": {}, "title": "Understanding Basic Statistics Brief And Student Solutions Manual", "notes": {"type": "/type/text", "value": "Second Edition"}, "identifiers": {}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780618128723"], "isbn_10": ["0618128727"], "publish_date": "November 7, 2000", "works": [{"key": "/works/OL2024881W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10987387M 3 2011-01-14T03:44:00.123520 {"publishers": ["Houghton Mifflin Company"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-01-14T03:44:00.123520"}, "latest_revision": 3, "key": "/books/OL10987387M", "authors": [{"key": "/authors/OL3012006A"}], "subjects": ["Management - General", "Business & Economics / General", "Business / Economics / Finance"], "edition_name": "8 edition", "languages": [{"key": "/languages/eng"}], "classifications": {}, "title": "Management And Study Guide And Cd-rom, Eighth Edition And Smith Manager", "notes": {"type": "/type/text", "value": "Third Edition"}, "identifiers": {}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780618138555"], "isbn_10": ["0618138552"], "publish_date": "December 12, 2000", "works": [{"key": "/works/OL8813656W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10987819M 3 2011-01-14T06:55:11.287926 {"publishers": ["Houghton Mifflin Company"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-01-14T06:55:11.287926"}, "latest_revision": 3, "key": "/books/OL10987819M", "authors": [{"key": "/authors/OL3522773A"}], "subjects": ["History / General", "General", "Political Science", "Politics - Current Events", "Politics/International Relations"], "edition_name": "7 edition", "languages": [{"key": "/languages/eng"}], "classifications": {}, "title": "Before The Law, Seventh Edition And American Courts", "notes": {"type": "/type/text", "value": "Fifth Edition"}, "identifiers": {}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780618159956"], "isbn_10": ["0618159959"], "publish_date": "December 5, 2001", "works": [{"key": "/works/OL9515086W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10988523M 2 2009-12-15T00:57:03.283094 {"publishers": ["Houghton Mifflin Co"], "key": "/books/OL10988523M", "title": "Practical College Study Skills, Custom Publication", "isbn_13": ["9780618184309"], "physical_format": "Paperback", "isbn_10": ["0618184309"], "publish_date": "January 1, 1900", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:57:03.283094"}, "authors": [{"key": "/authors/OL2660962A"}], "latest_revision": 2, "works": [{"key": "/works/OL7992432W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL1098862M 9 2020-11-18T10:27:45.966530 {"publishers": ["Bantam Books"], "number_of_pages": 322, "ia_box_id": ["IA177901"], "isbn_10": ["0553096907"], "covers": [3880000], "ia_loaded_id": ["midnightpartner00davi"], "lc_classifications": ["PS3554.A9319 M5 1995"], "latest_revision": 9, "key": "/books/OL1098862M", "authors": [{"key": "/authors/OL582793A"}], "ocaid": "midnightpartner00davi", "publish_places": ["New York"], "pagination": "322 p. ;", "source_records": ["ia:midnightpartner00davi", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:133826837:582"], "title": "The midnight partner", "dewey_decimal_class": ["813/.54"], "identifiers": {"librarything": ["373525"], "goodreads": ["2745664"]}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["94023599"], "subjects": ["Sex addicts -- Fiction."], "publish_date": "1995", "publish_country": "nyu", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T10:27:45.966530"}, "by_statement": "Bart Davis.", "oclc_numbers": ["31411898"], "works": [{"key": "/works/OL3490649W"}], "type": {"key": "/type/edition"}, "revision": 9}
+/type/edition /books/OL10988701M 4 2010-08-17T05:06:53.645212 {"isbn_13": ["9780618192687"], "subtitle": "Instructor's Lecture Enrichment and Resource Manual", "last_modified": {"type": "/type/datetime", "value": "2010-08-17T05:06:53.645212"}, "title": "Psychology Applied to Teaching", "identifiers": {"goodreads": ["7255904"], "librarything": ["4199510"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0618192689"], "latest_revision": 4, "key": "/books/OL10988701M", "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10988884M 2 2009-12-15T00:57:03.283094 {"publishers": ["Houghton Mifflin Co"], "key": "/books/OL10988884M", "title": "Linear Behavior Module", "isbn_13": ["9780618206247"], "physical_format": "Paperback", "isbn_10": ["0618206248"], "publish_date": "January 1, 1900", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:57:03.283094"}, "authors": [{"key": "/authors/OL3522636A"}], "latest_revision": 2, "works": [{"key": "/works/OL9514626W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10988928M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Houghton Mifflin Company"], "title": "History of World Societies, Volume A and Study Guide, Volume 1, Fifth Edition and Atlas", "isbn_13": ["9780618211944"], "isbn_10": ["0618211942"], "publish_date": "January 2000", "key": "/books/OL10988928M", "authors": [{"key": "/authors/OL2624960A"}], "type": {"key": "/type/edition"}, "subjects": ["World - General", "History - General History"], "revision": 1}
+/type/edition /books/OL10989159M 2 2009-10-23T16:50:35.349581 {"publishers": ["Houghton Mifflin Company"], "physical_format": "Paperback", "source_records": ["amazon:0618226141"], "title": "Reuse This Number", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780618226146"], "languages": [{"key": "/languages/eng"}], "authors": [{"key": "/authors/OL2559788A"}], "isbn_10": ["0618226141"], "publish_date": "January 2001", "key": "/books/OL10989159M", "last_modified": {"type": "/type/datetime", "value": "2009-10-23T16:50:35.349581"}, "latest_revision": 2, "subjects": ["General", "Politics / Current Events"], "works": [{"key": "/works/OL246242W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10989287M 3 2011-03-27T06:45:37.067867 {"publishers": ["Houghton Mifflin Co"], "classifications": {}, "last_modified": {"type": "/type/datetime", "value": "2011-03-27T06:45:37.067867"}, "title": "Politics", "notes": {"type": "/type/text", "value": "Custom Publication"}, "identifiers": {}, "isbn_13": ["9780618233328"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0618233326"], "publish_date": "January 1, 1900", "key": "/books/OL10989287M", "authors": [{"key": "/authors/OL3522845A"}], "latest_revision": 3, "works": [{"key": "/works/OL9515292W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10989806M 5 2021-09-15T05:35:39.907160 {"publishers": ["Houghton Mifflin Company"], "subtitle": "Pronunciation Activities [Audio CD]", "weight": "2.2 ounces", "physical_format": "Audio CD", "lc_classifications": ["", "PE1137 .K699 2005"], "key": "/books/OL10989806M", "authors": [{"key": "/authors/OL2687794A"}], "subjects": ["English as a Second Language", "Foreign Language Study", "Audio - Language", "Language"], "isbn_13": ["9780618259946"], "source_records": ["bwb:9780618259946", "ia:soundbitespronun0000kozy"], "title": "Sound Bites", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0618259945"], "publish_date": "December 3, 2005", "works": [{"key": "/works/OL8073796W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "5.2 x 5 x 0.2 inches", "covers": [11960909], "ocaid": "soundbitespronun0000kozy", "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-09-15T05:35:39.907160"}}
+/type/edition /books/OL1098983M 10 2022-12-10T11:45:25.899161 {"publishers": ["Bull Pub. Co.", "Distributed to the trade by Publishers Group West"], "identifiers": {"goodreads": ["4596808"], "librarything": ["126069"], "amazon": [""]}, "subtitle": "a practical handbook", "ia_box_id": ["IA174401"], "isbn_10": ["0923521313"], "covers": [708838], "ia_loaded_id": ["diabetesmellitus00milc_0"], "lc_classifications": ["RC660.5 .M54 1995"], "key": "/books/OL1098983M", "authors": [{"key": "/authors/OL582851A"}], "ocaid": "diabetesmellitus00milc_0", "publish_places": ["Palo Alto, Calif", "Emeryville, Calif"], "contributions": ["Dunn-Long, Barbara."], "languages": [{"key": "/languages/eng"}], "pagination": "x, 200 p. :", "source_records": ["ia:diabetesmellitus00milc_0", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:133928587:822", "promise:bwb_daily_pallets_2020-04-09"], "title": "Diabetes mellitus", "dewey_decimal_class": ["616.4/62"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 193-196) and index."}, "number_of_pages": 200, "edition_name": "6th ed., completely rev. and updated.", "lccn": ["94023731"], "subjects": ["Diabetes -- Popular works."], "publish_date": "1995", "publish_country": "cau", "by_statement": "Suellyn K. Milcovich, Barbara Dunn-Long.", "oclc_numbers": ["31435381"], "works": [{"key": "/works/OL3490875W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:O6-CLS-226"], "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T11:45:25.899161"}}
+/type/edition /books/OL10990072M 3 2011-03-27T06:30:22.163504 {"publishers": ["Houghton Mifflin Co"], "last_modified": {"type": "/type/datetime", "value": "2011-03-27T06:30:22.163504"}, "title": "Smith Modern America 1877 to 1920", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780618269891"], "physical_format": "Paperback", "isbn_10": ["0618269894"], "publish_date": "January 1, 1900", "key": "/books/OL10990072M", "authors": [{"key": "/authors/OL836203A"}], "latest_revision": 3, "works": [{"key": "/works/OL8217327W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10990477M 3 2011-03-27T07:37:22.080419 {"publishers": ["Houghton Mifflin Co"], "classifications": {}, "last_modified": {"type": "/type/datetime", "value": "2011-03-27T07:37:22.080419"}, "weight": "6 pounds", "title": "Intermediate Algebra Discovery and Visualization and H M Cubed", "notes": {"type": "/type/text", "value": "Custom Publication"}, "identifiers": {}, "isbn_13": ["9780618280964"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Hardcover", "isbn_10": ["0618280960"], "publish_date": "January 1, 1900", "key": "/books/OL10990477M", "authors": [{"key": "/authors/OL3437616A"}], "latest_revision": 3, "works": [{"key": "/works/OL9402199W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.8 x 8.5 x 2.2 inches", "revision": 3}
+/type/edition /books/OL10990741M 4 2011-03-27T07:56:03.370625 {"publishers": ["Houghton Mifflin Co"], "classifications": {}, "last_modified": {"type": "/type/datetime", "value": "2011-03-27T07:56:03.370625"}, "weight": "8.6 pounds", "title": "Precalculus and Student Study and Solution Guide, and CD-ROM, and Student Success Organizer and Smarthinking", "notes": {"type": "/type/text", "value": "Custom Publication"}, "identifiers": {}, "isbn_13": ["9780618294510"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Unknown Binding", "isbn_10": ["0618294511"], "publish_date": "January 1, 1900", "key": "/books/OL10990741M", "authors": [{"key": "/authors/OL2648745A"}], "latest_revision": 4, "works": [{"key": "/works/OL8218233W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL1099098M 13 2022-12-04T10:50:21.729719 {"identifiers": {"goodreads": ["1494322"], "librarything": ["2112536"]}, "subtitle": "life, culture, and politics in the Middle East", "isbn_10": ["1562790722"], "subject_place": ["Israel."], "covers": [795744, 6820551], "lc_classifications": ["DS119.7 .H3625 1995"], "ocaid": "vocabularyofpeac00hare", "description": {"type": "/type/text", "value": "A renowned writer of Hebrew literature who is a Jerusalem native brings together the culture, history and politics of her home country and addresses myths. she suggests a new format for expression of peace. Jews and Arabs should use the basis of their shared culture as a catalyst to a positive future, intent on erasing ignorance and intolerance. hareven offers a levantine perspective on the issues."}, "subject_time": ["1973-"], "languages": [{"key": "/languages/eng"}], "source_records": ["marc:marc_records_scriblio_net/part24.dat:59525405:841", "marc:marc_loc_updates/v37.i37.records.utf8:4994387:836", "ia:vocabularyofpeac00hare", "marc:marc_openlibraries_sanfranciscopubliclibrary/sfpl_chq_2018_12_24_run02.mrc:110782729:1590", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:134030502:836", "amazon:1562790722", "promise:bwb_daily_pallets_2022-09-12"], "title": "The vocabulary of peace", "work_titles": ["Otsar ha-milim shel ha-shalom"], "edition_name": "1st ed.", "subjects": ["Jewish-Arab relations -- 1973-", "Peace movements -- Israel", "National characteristics, Israeli"], "publish_country": "cau", "by_statement": "Shulamith Hareven.", "oclc_numbers": ["31435778"], "type": {"key": "/type/edition"}, "publishers": ["Mercury House"], "ia_box_id": ["IA127003"], "full_title": "The vocabulary of peace life, culture, and politics in the Middle East", "key": "/books/OL1099098M", "authors": [{"key": "/authors/OL528201A"}], "publish_places": ["San Francisco"], "pagination": "viii, 229 p. ;", "dewey_decimal_class": ["956"], "number_of_pages": 229, "isbn_13": ["9781562790721"], "lccn": ["94023851"], "local_id": ["urn:sfpl:31223038682457", "urn:bwbsku:O8-DCT-703"], "publish_date": "1995", "work_title": ["Otsar ha-milim shel ha-shalom."], "works": [{"key": "/works/OL3240307W"}], "latest_revision": 13, "revision": 13, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T10:50:21.729719"}}
+/type/edition /books/OL10991194M 6 2022-12-09T18:46:49.355447 {"publishers": ["Mcdougal Littell/Houghton Mifflin"], "languages": [{"key": "/languages/eng"}], "weight": "2 pounds", "title": "The Interactive Reader Plus", "isbn_13": ["9780618310333"], "physical_format": "Paperback", "isbn_10": ["0618310339"], "publish_date": "February 10, 2003", "key": "/books/OL10991194M", "oclc_numbers": ["54443450"], "type": {"key": "/type/edition"}, "subjects": ["Language Arts - General", "Juvenile Nonfiction", "Children: Young Adult (Gr. 10-12)"], "physical_dimensions": "10.5 x 8.2 x 1 inches", "works": [{"key": "/works/OL24424901W"}], "covers": [10983586], "ocaid": "interactivereade0000unse_t8l8", "lc_classifications": ["LB1573 .I68 2003x"], "source_records": ["ia:interactivereade0000unse_t8l8", "ia:interactivereade0000unse_b1p6", "promise:bwb_daily_pallets_2021-03-03", "promise:bwb_daily_pallets_2020-10-14"], "local_id": ["urn:bwbsku:P6-AIC-617", "urn:bwbsku:O6-EII-015"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T18:46:49.355447"}}
+/type/edition /books/OL10991451M 3 2011-03-27T06:47:19.187036 {"publishers": ["Houghton Mifflin Co"], "classifications": {}, "last_modified": {"type": "/type/datetime", "value": "2011-03-27T06:47:19.187036"}, "title": "Success Strategies", "notes": {"type": "/type/text", "value": "Custom Publication"}, "identifiers": {}, "isbn_13": ["9780618332649"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0618332642"], "publish_date": "December 17, 2002", "key": "/books/OL10991451M", "authors": [{"key": "/authors/OL3522978A"}], "latest_revision": 3, "works": [{"key": "/works/OL9515520W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL10991550M 2 2009-12-15T00:57:05.628894 {"physical_format": "Hardcover", "languages": [{"key": "/languages/eng"}], "publishers": ["Houghton Mifflin Company"], "isbn_10": ["0618335285"], "title": "Physical Science With C D And Lab Manual Tenth Edition, And Pauk How To Succeed", "edition_name": "10 edition", "isbn_13": ["9780618335282"], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:57:05.628894"}, "publish_date": "November 26, 2002", "key": "/books/OL10991550M", "authors": [{"key": "/authors/OL3386500A"}], "latest_revision": 2, "subjects": ["Earth Sciences - Geology", "Science / General", "Science"], "works": [{"key": "/works/OL9341388W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10992353M 2 2009-12-15T00:57:05.628894 {"physical_format": "Unknown Binding", "languages": [{"key": "/languages/eng"}], "publishers": ["Houghton Mifflin Company"], "isbn_10": ["0618374116"], "title": "Applied Statistics For Behavior Sciences, And Workbook, Fifth Edition And C D", "edition_name": "5 edition", "isbn_13": ["9780618374113"], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:57:05.628894"}, "publish_date": "December 4, 2002", "key": "/books/OL10992353M", "authors": [{"key": "/authors/OL2641441A"}], "latest_revision": 2, "subjects": ["General", "Psychology & Psychiatry / General", "Psychology"], "works": [{"key": "/works/OL7914938W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10992516M 5 2011-06-08T02:17:37.164075 {"publishers": ["Houghton Mifflin Company"], "physical_format": "Audio Cassette", "last_modified": {"type": "/type/datetime", "value": "2011-06-08T02:17:37.164075"}, "title": "Key Concepts 1 Audio Cassette", "identifiers": {"goodreads": ["3170943"]}, "isbn_13": ["9780618382422"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0618382429"], "publish_date": "November 30, 2005", "key": "/books/OL10992516M", "authors": [{"key": "/authors/OL2733849A"}], "latest_revision": 5, "oclc_numbers": ["148610054"], "works": [{"key": "/works/OL8217901W"}], "type": {"key": "/type/edition"}, "subjects": ["English as a Second Language", "Foreign Language Study", "Unabridged Audio - Misc.Nonfiction", "Language"], "revision": 5}
+/type/edition /books/OL10992603M 4 2011-04-29T05:50:37.491052 {"publishers": ["Houghton Mifflin Company"], "subtitle": "Used with ...Larson-Algebra for College Students; Larson-Intermediate Algebra", "weight": "1.6 ounces", "edition_name": "4 edition", "physical_format": "CD-ROM", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T05:50:37.491052"}, "latest_revision": 4, "key": "/books/OL10992603M", "authors": [{"key": "/authors/OL2648745A"}], "subjects": ["General", "Algebra for College Students", "Intermediate Algebra", "Mathematics / General", "Algebra - General", "Mathematics", "Science/Mathematics"], "isbn_13": ["9780618388356"], "title": "Hm Mathspace Student Tutorial Cd-rom", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0618388354"], "publish_date": "July 14, 2004", "oclc_numbers": ["148618725"], "works": [{"key": "/works/OL7943038W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "5.5 x 5 x 0.3 inches", "revision": 4}
+/type/edition /books/OL10992695M 6 2022-12-05T03:14:24.547101 {"publishers": ["Houghton Mifflin Co"], "classifications": {}, "title": "Realistically Speaking", "notes": {"type": "/type/text", "value": "Custom Publication"}, "identifiers": {}, "isbn_13": ["9780618393763"], "physical_format": "Paperback", "isbn_10": ["0618393765"], "publish_date": "January 1, 1900", "key": "/books/OL10992695M", "authors": [{"key": "/authors/OL3522730A"}], "oclc_numbers": ["262115910"], "works": [{"key": "/works/OL9514950W"}], "type": {"key": "/type/edition"}, "lccn": ["2005279648"], "lc_classifications": ["PE2815 .P75 2003"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part32.utf8:188809597:833", "promise:bwb_daily_pallets_2022-06-06"], "local_id": ["urn:bwbsku:O8-AMD-002"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-05T03:14:24.547101"}}
+/type/edition /books/OL1099291M 9 2023-01-06T16:37:34.182873 {"publishers": ["Oxford University Press"], "number_of_pages": 397, "subtitle": "regulatory mechanisms of neoplastic cell growth", "isbn_10": ["0198547919"], "series": ["Oxford medical publications"], "covers": [1136050], "lc_classifications": ["RC268.5 .C39 1996", "RC268.5.C39 1996", "RC268.5 .C39 1995"], "key": "/books/OL1099291M", "ocaid": "cellproliferatio0000unse", "publish_places": ["Oxford", "New York"], "contributions": ["Pusztai, L.", "Lewis, Claire E.", "Yap, E."], "pagination": "xxi, 397 p. :", "source_records": ["marc:marc_records_scriblio_net/part24.dat:59696699:1050", "ia:cellproliferatio0000unse", "bwb:9780198547914", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:134206594:1253", "marc:marc_columbia/Columbia-extract-20221130-009.mrc:54978663:3768"], "title": "Cell proliferation in cancer", "dewey_decimal_class": ["616.994/071"], "notes": {"type": "/type/text", "value": "Includes bibliographical references and index."}, "identifiers": {"goodreads": ["3693541"]}, "languages": [{"key": "/languages/eng"}], "lccn": ["94024053"], "subjects": ["Cancer cells.", "Cell proliferation.", "Cell Division.", "Neoplasms -- physiopathology.", "Gene Expression Regulation, Neoplastic.", "Growth Substances."], "publish_date": "1996", "publish_country": "enk", "by_statement": "edited by L. Pusztai, C.E. Lewis, E. Yap.", "works": [{"key": "/works/OL18980797W"}], "type": {"key": "/type/edition"}, "oclc_numbers": ["315939459"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2023-01-06T16:37:34.182873"}}
+/type/edition /books/OL10993335M 4 2010-04-24T18:12:34.996110 {"publishers": ["Houghton Mifflin Company"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:12:34.996110"}, "title": "Marketing Research with Web and S P S S Disc and Wall Street Journal", "identifiers": {"goodreads": ["1999018"]}, "isbn_13": ["9780618416271"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0618416277"], "publish_date": "January 2004", "key": "/books/OL10993335M", "authors": [{"key": "/authors/OL3012054A"}], "latest_revision": 4, "works": [{"key": "/works/OL8813844W"}], "type": {"key": "/type/edition"}, "subjects": ["Marketing - General", "Business / Economics / Finance"], "revision": 4}
+/type/edition /books/OL10993950M 2 2009-12-15T00:57:07.895701 {"physical_format": "Hardcover", "languages": [{"key": "/languages/eng"}], "publishers": ["Houghton Mifflin Company"], "isbn_10": ["0618438963"], "title": "On Course Third Edition With Assessment And Cd", "edition_name": "3 edition", "isbn_13": ["9780618438969"], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:57:07.895701"}, "publish_date": "June 18, 2003", "key": "/books/OL10993950M", "authors": [{"key": "/authors/OL2751568A"}], "latest_revision": 2, "subjects": ["Education / General"], "works": [{"key": "/works/OL8270402W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10994051M 5 2022-02-25T11:47:54.349056 {"publishers": ["Houghton Mifflin Company"], "number_of_pages": 1102, "weight": "5.5 pounds", "physical_format": "Hardcover", "key": "/books/OL10994051M", "authors": [{"key": "/authors/OL37352A"}], "subjects": ["Chemistry - General", "Science", "Test Prep"], "isbn_13": ["9780618442294"], "classifications": {}, "title": "Zumdahl Chem Ise W/Tech Pkg", "notes": {"type": "/type/text", "value": "6ed"}, "identifiers": {}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0618442294"], "publish_date": "January 2003", "works": [{"key": "/works/OL8218390W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.3 x 8.3 x 1.9 inches", "lc_classifications": ["QD31.2.Z84 2003"], "source_records": ["bwb:9780618442294"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-25T11:47:54.349056"}}
+/type/edition /books/OL10994337M 5 2014-06-08T08:34:45.026518 {"publishers": ["Houghton Mifflin Company"], "languages": [{"key": "/languages/eng"}], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2014-06-08T08:34:45.026518"}, "title": "Trimmer Riverside Reader Seventh Edition Plus Raimes Universal Keys With Mla Update And Webcard Plus Media Guide With Cd", "identifiers": {"goodreads": ["7072151"]}, "isbn_13": ["9780618457007"], "edition_name": "7 edition", "physical_format": "Unknown Binding", "isbn_10": ["0618457003"], "publish_date": "October 2, 2003", "key": "/books/OL10994337M", "authors": [{"key": "/authors/OL244553A"}], "latest_revision": 5, "works": [{"key": "/works/OL9515213W"}], "type": {"key": "/type/edition"}, "subjects": ["Language Arts & Disciplines / General"], "revision": 5}
+/type/edition /books/OL10994517M 2 2009-12-08T04:32:57.768035 {"physical_format": "Paperback", "languages": [{"key": "/languages/eng"}], "publishers": ["Houghton Mifflin Company"], "isbn_10": ["0618461051"], "title": "Como Se Dice Workbook With Webcard And Smarthinking 7th Edition", "edition_name": "7 edition", "isbn_13": ["9780618461059"], "last_modified": {"type": "/type/datetime", "value": "2009-12-08T04:32:57.768035"}, "publish_date": "December 16, 2003", "key": "/books/OL10994517M", "authors": [{"key": "/authors/OL37414A"}], "latest_revision": 2, "subjects": ["Foreign Language Study / General", "Spanish", "Foreign Language Study", "Foreign Language - Dictionaries / Phrase Books", "Spanish: Adult Nonfiction"], "works": [{"key": "/works/OL530718W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10994708M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780618466665"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "publishers": ["Houghton Mifflin Company"], "title": "The Reading Edge 4th Edition Plus Kanar Hm Guide To Reading Text 3rd Edition Plus Nist Hm Reading Cd Rom 5th Edition", "edition_name": "4 edition", "isbn_10": ["0618466665"], "publish_date": "November 4, 2003", "key": "/books/OL10994708M", "authors": [{"key": "/authors/OL2544476A"}], "type": {"key": "/type/edition"}, "subjects": ["Language Arts & Disciplines / General", "General", "Language Arts & Disciplines", "Language Arts / Linguistics / Literacy", "Language"], "revision": 1}
+/type/edition /books/OL10994856M 4 2022-02-25T16:22:20.703353 {"publishers": ["Houghton Mifflin Company"], "physical_format": "Paperback", "weight": "14.4 ounces", "title": "Precalculus An Internet Approach Section Exercise", "isbn_13": ["9780618471942"], "edition_name": "1 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0618471944"], "publish_date": "December 9, 2003", "key": "/books/OL10994856M", "authors": [{"key": "/authors/OL2648745A"}], "works": [{"key": "/works/OL7942955W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Mathematics / General", "Pre-Calculus", "Mathematics", "Science/Mathematics"], "physical_dimensions": "10.8 x 8.5 x 0.4 inches", "source_records": ["bwb:9780618471942"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-25T16:22:20.703353"}}
+/type/edition /books/OL10994993M 3 2011-01-14T22:21:39.544813 {"publishers": ["Houghton Mifflin Company"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-01-14T22:21:39.544813"}, "title": "Imagenes with Audio CD Program, Student Audio CD, Workbook, Lab Manual and Answer Key with CDROM", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780618477289"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0618477284"], "publish_date": "January 2003", "key": "/books/OL10994993M", "authors": [{"key": "/authors/OL460888A"}], "latest_revision": 3, "works": [{"key": "/works/OL9170830W"}], "type": {"key": "/type/edition"}, "subjects": ["Spanish", "Foreign Language - Dictionaries / Phrase Books"], "revision": 3}
+/type/edition /books/OL10995025M 4 2010-04-24T18:12:34.996110 {"publishers": ["Houghton Mifflin Company"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:12:34.996110"}, "title": "Interactions 5th Edition Plus Bazerman Writing Skills Handbook Mla 5th Edition Plus Trimmer Guide To Mla 6th Edition", "identifiers": {"goodreads": ["1107599"]}, "isbn_13": ["9780618479184"], "edition_name": "5 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["061847918X"], "publish_date": "December 17, 2003", "key": "/books/OL10995025M", "authors": [{"key": "/authors/OL548469A"}], "latest_revision": 4, "works": [{"key": "/works/OL3369510W"}], "type": {"key": "/type/edition"}, "subjects": ["Language Arts & Disciplines / General", "General", "Language Arts & Disciplines", "Language Arts / Linguistics / Literacy", "Language"], "revision": 4}
+/type/edition /books/OL10995433M 3 2011-04-29T04:40:50.471366 {"publishers": ["Houghton Mifflin Company"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T04:40:50.471366"}, "title": "Latorre Calculus Concepts Brief Third Edition+ Latorre Calculus Concepts Gc Gdethird Edition+ Generic Edu/bb Student Booklet F/pkg.", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780618527014"], "edition_name": "3 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["061852701X"], "publish_date": "July 21, 2004", "key": "/books/OL10995433M", "authors": [{"key": "/authors/OL2660918A"}], "latest_revision": 3, "oclc_numbers": ["148623615"], "works": [{"key": "/works/OL7992379W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Mathematics / General", "Calculus", "Mathematics", "Science/Mathematics"], "revision": 3}
+/type/edition /books/OL10995643M 3 2022-03-02T02:53:09.101951 {"publishers": ["Houghton Mifflin"], "key": "/books/OL10995643M", "title": "Welcome to the Neighborhood VHS Tape (1-58922) Grade Kindergarten (History-Social Studies Unit 2 My World)", "physical_format": "CD-ROM", "isbn_10": ["061853475X"], "publish_date": "2006", "authors": [{"key": "/authors/OL2687452A"}], "works": [{"key": "/works/OL8072354W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780618534753"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-02T02:53:09.101951"}}
+/type/edition /books/OL10995717M 2 2009-12-15T00:57:09.639817 {"physical_format": "Hardcover", "languages": [{"key": "/languages/eng"}], "publishers": ["Houghton Mifflin Company"], "isbn_10": ["0618538542"], "title": "Writers Selections 3rd Edition Plus Hmco Expressways 5.0 Cd 9th Edition Plus Smarthinking", "edition_name": "3 edition", "isbn_13": ["9780618538546"], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:57:09.639817"}, "publish_date": "June 18, 2002", "key": "/books/OL10995717M", "authors": [{"key": "/authors/OL2753558A"}], "latest_revision": 2, "subjects": ["Language Arts & Disciplines / General"], "works": [{"key": "/works/OL8274871W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10995735M 4 2009-12-15T00:57:09.639817 {"physical_format": "Hardcover", "title": "Allen Growing Manager Entrepreur Business+go Venture Entrepreneur CD", "isbn_10": ["0618539085"], "publishers": ["Houghton Mifflin Company"], "isbn_13": ["9780618539086"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:57:09.639817"}, "publish_date": "January 1999", "key": "/books/OL10995735M", "authors": [{"key": "/authors/OL194997A"}], "latest_revision": 4, "subjects": ["Management - General", "Business / Economics / Finance"], "works": [{"key": "/works/OL1708244W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL10995787M 5 2011-04-27T11:01:25.143110 {"publishers": ["Houghton Mifflin Company"], "weight": "3.9 pounds", "edition_name": "4 edition", "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T11:01:25.143110"}, "latest_revision": 5, "key": "/books/OL10995787M", "authors": [{"key": "/authors/OL37435A"}], "subjects": ["Mathematics / General", "General", "Mathematics", "Science/Mathematics"], "isbn_13": ["9780618540778"], "title": "Aufmann Prealgebra Fourth Edition Plus Nolting Math Study Skills Workbook Second Edition Plus Eduspace One Semester", "identifiers": {"goodreads": ["3010408"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0618540776"], "publish_date": "July 6, 2004", "oclc_numbers": ["150385497"], "works": [{"key": "/works/OL531311W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.8 x 8.5 x 1.2 inches", "revision": 5}
+/type/edition /books/OL10995809M 4 2011-04-28T04:17:26.688116 {"publishers": ["Houghton Mifflin Company"], "weight": "8.7 pounds", "edition_name": "8 edition", "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-28T04:17:26.688116"}, "latest_revision": 4, "key": "/books/OL10995809M", "authors": [{"key": "/authors/OL244521A"}], "subjects": ["General", "Science / General", "Chemistry - General", "Science", "Science/Mathematics"], "isbn_13": ["9780618541645"], "title": "General Chemistry With Media Guide And Cd Plus Study And Solutions Manual Plus Labmanual 8th Edition Plus Eduspace Two Semester", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0618541640"], "publish_date": "June 28, 2004", "oclc_numbers": ["148624014"], "works": [{"key": "/works/OL2025006W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.9 x 9.1 x 3.4 inches", "revision": 4}
+/type/edition /books/OL10995825M 3 2011-04-27T19:39:09.874220 {"publishers": ["Houghton Mifflin Company"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T19:39:09.874220"}, "title": "Principles Of Accounting, Complete, With Student Cd With Working Papers, Volume1, Chapter 1-18, 9th Edition Plus Collegiate T's Ps (5th Edition) 6th Edition", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780618542215"], "edition_name": "9 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0618542213"], "publish_date": "August 24, 2004", "key": "/books/OL10995825M", "authors": [{"key": "/authors/OL407372A"}], "latest_revision": 3, "oclc_numbers": ["148615817"], "works": [{"key": "/works/OL2768897W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business & Economics / General", "Accounting - General", "Business & Economics", "Business / Economics / Finance", "Business/Economics"], "revision": 3}
+/type/edition /books/OL10996066M 3 2022-12-14T11:54:06.450862 {"title": "Science Indiana Standards Manager Grade 8", "publish_date": "2004", "languages": [{"key": "/languages/eng"}], "physical_format": "Paperback", "publishers": ["McDougal Littell"], "isbn_13": ["9780618552580"], "isbn_10": ["0618552588"], "type": {"key": "/type/edition"}, "ocaid": "scienceindianast0000mcdo", "source_records": ["ia:scienceindianast0000mcdo"], "key": "/books/OL10996066M", "covers": [13084031], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-14T11:54:06.450862"}}
+/type/edition /books/OL10996612M 5 2011-04-27T03:54:01.151181 {"publishers": ["Houghton Mifflin Company"], "edition_name": "1 edition", "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T03:54:01.151181"}, "latest_revision": 5, "key": "/books/OL10996612M", "authors": [{"key": "/authors/OL1877654A"}], "subjects": ["Language Arts & Disciplines / General", "General", "Language Arts & Disciplines", "Language Arts / Linguistics / Literacy", "Language"], "isbn_13": ["9780618593934"], "classifications": {}, "title": "Perrin, Pocket Guide To Apa, 1st Edition Plus Ahd, 100 Words Almost Everyone Confuses And Misuses", "notes": {"type": "/type/text", "value": "1st Edition"}, "identifiers": {}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0618593934"], "publish_date": "October 25, 2004", "oclc_numbers": ["148622042"], "works": [{"key": "/works/OL6848865W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL10997148M 2 2009-12-15T00:57:10.782895 {"publishers": ["Houghton Mifflin Company"], "subtitle": "For Sales", "weight": "0.8 ounces", "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:57:10.782895"}, "latest_revision": 2, "key": "/books/OL10997148M", "authors": [{"key": "/authors/OL3246415A"}], "subjects": ["General", "Business & Economics / General", "General Business", "Management", "Entrepreneurship", "Business & Economics", "Business / Economics / Finance", "Business/Economics"], "edition_name": "3 edition", "title": "Goventure: Live The Life Of An Entrepreneur", "isbn_13": ["9780618640201"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0618640207"], "publish_date": "May 19, 2006", "works": [{"key": "/works/OL9175458W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "5.5 x 5 x 0.5 inches", "revision": 2}
+/type/edition /books/OL10997293M 3 2011-04-27T01:07:41.816401 {"publishers": ["Houghton Mifflin Company"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T01:07:41.816401"}, "title": "Gillon, American Experiment, Complete, 2nd Edition Plus Cobbs, Major Problem, American History, Volume 1 & Volume 2, 1st Edition Plus Student Research Passkey", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780618655427"], "edition_name": "2 edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0618655425"], "publish_date": "March 4, 2005", "key": "/books/OL10997293M", "authors": [{"key": "/authors/OL830130A"}], "latest_revision": 3, "oclc_numbers": ["148613797"], "works": [{"key": "/works/OL4280701W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "History / General", "United States - General", "History", "History - General History", "History: American"], "revision": 3}
+/type/edition /books/OL10997870M 8 2022-12-04T05:21:14.549114 {"publishers": ["Wright Group"], "number_of_pages": 24, "physical_format": "Unknown Binding", "key": "/books/OL10997870M", "authors": [{"key": "/authors/OL3523201A"}], "subjects": ["Counting", "Insects", "Juvenile fiction"], "isbn_13": ["9780780251175"], "classifications": {}, "title": "The bug bus", "notes": {"type": "/type/text", "value": "Sunshine fact & fantasy"}, "identifiers": {"goodreads": ["5764860"], "librarything": ["8812412"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0780251172"], "publish_date": "1996", "oclc_numbers": ["35819669"], "works": [{"key": "/works/OL9515869W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:O8-BWJ-652"], "source_records": ["promise:bwb_daily_pallets_2022-11-23"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T05:21:14.549114"}}
+/type/edition /books/OL109979M 4 2020-12-02T10:00:27.126983 {"number_of_pages": 359, "lc_classifications": ["PQ6611.E525 B6 1998"], "contributions": ["March, Susana, 1918-"], "subject_time": ["Alfonso XIII, 1886-1931"], "edition_name": "1. ed. en esta presentacio\u0301n.", "genres": ["Fiction."], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part28.utf8:99328013:859"], "title": "La boda de Alfonso XIII", "languages": [{"key": "/languages/spa"}], "subjects": ["Morral Roca, Mateo, 1880-1906 -- Fiction.", "Spain -- History -- Alfonso XIII, 1886-1931 -- Fiction."], "publish_country": "sp ", "by_statement": "R. Ferna\u0301ndez de la Reguera y S. March.", "type": {"key": "/type/edition"}, "other_titles": ["Boda de Alfonso trece", "Alfonso XIII"], "publishers": ["Planeta"], "key": "/books/OL109979M", "authors": [{"key": "/authors/OL60635A"}], "publish_places": ["Barcelona, Espan\u0303a"], "pagination": "359 p. ;", "dewey_decimal_class": ["863/.64"], "identifiers": {"goodreads": ["3580111"]}, "lccn": ["99229328"], "isbn_10": ["8408026690"], "publish_date": "1998", "works": [{"key": "/works/OL743907W"}], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-02T10:00:27.126983"}}
+/type/edition /books/OL10998323M 4 2010-04-24T18:12:34.996110 {"publishers": ["Ieee"], "number_of_pages": 372, "subtitle": "Proceedings of the Thirty-Eighth IEEE Holm Conference on Electrical Contracts/92Ch 3125-2 (Ieee Holm Conference on Electrical Contacts//Electrical Contacts)", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:12:34.996110"}, "title": "Electrical Contracts - 1992", "type": {"key": "/type/edition"}, "identifiers": {"goodreads": ["7257251"]}, "isbn_13": ["9780780305762"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0780305760"], "publish_date": "December 1992", "key": "/books/OL10998323M", "authors": [{"key": "/authors/OL251874A"}], "latest_revision": 4, "works": [{"key": "/works/OL2062225W"}], "physical_format": "Hardcover", "subjects": ["Circuits & components", "Power utilization & applications", "Electric Circuits", "Electronic Circuits", "Science/Mathematics"], "revision": 4}
+/type/edition /books/OL10998510M 5 2010-04-24T18:12:34.996110 {"publishers": ["Ieee"], "languages": [{"key": "/languages/eng"}], "subtitle": "May 4-7, 1994 Washington Hilton Washington, Dc Usa/94Ch3340-7", "weight": "1.6 pounds", "title": "Intersociety Conference on Thermal Phenomena in Electronic Systems: I-Therm IV ", "identifiers": {"goodreads": ["1948636"]}, "isbn_13": ["9780780313729"], "covers": [5505894, 5087315], "physical_format": "Paperback", "authors": [{"key": "/authors/OL3523314A"}], "isbn_10": ["0780313720"], "latest_revision": 5, "key": "/books/OL10998510M", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:12:34.996110"}, "publish_date": "May 1994", "works": [{"key": "/works/OL9516035W"}], "type": {"key": "/type/edition"}, "subjects": ["Electronic devices & materials", "Materials science", "Electronic Apparatus And Devices", "Thermal Properties Of Materials", "Science/Mathematics"], "physical_dimensions": "11 x 8.5 x 0.8 inches", "revision": 5}
+/type/edition /books/OL10998808M 3 2022-12-04T21:57:58.201103 {"physical_format": "Library Binding", "publishers": ["Institute of Electrical & Electronics Enginee"], "isbn_10": ["0780329325"], "number_of_pages": 750, "isbn_13": ["9780780329324"], "languages": [{"key": "/languages/eng"}], "publish_date": "October 1995", "key": "/books/OL10998808M", "authors": [{"key": "/authors/OL2857980A"}], "title": "IEEE 1995 Annual Report Conference on Electrical Insulation and Dielectric Phenomena (IEEE Conference Publications. Ch Series)", "subjects": ["Electricity", "Technology & Industrial Arts"], "works": [{"key": "/works/OL8536580W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:O8-CXN-784"], "source_records": ["promise:bwb_daily_pallets_2022-07-27"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T21:57:58.201103"}}
+/type/edition /books/OL10998962M 2 2009-12-15T00:57:11.969963 {"physical_format": "Paperback", "publishers": ["Institute of Electrical & Electronics Enginee"], "isbn_10": ["0780333837"], "number_of_pages": 1600, "isbn_13": ["9780780333833"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:57:11.969963"}, "publish_date": "April 1997", "latest_revision": 2, "key": "/books/OL10998962M", "authors": [{"key": "/authors/OL3523419A"}], "title": "1996 Winter Simulation Conference (Wsc (Winter Simulation Conference//Proceedings)", "subjects": ["Computer Simulation", "Computers", "Computer Bks - General Information", "Computers - General Information", "Science/Mathematics", "General", "Computer Engineering"], "works": [{"key": "/works/OL9516159W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL10999039M 3 2010-04-13T06:22:01.764003 {"publishers": ["Institute of Electrical & Electronics Enginee"], "key": "/books/OL10999039M", "languages": [{"key": "/languages/eng"}], "title": "1997 International Vacuum Microelectronics Conference", "isbn_13": ["9780780337862"], "covers": [5087510], "physical_format": "Hardcover", "isbn_10": ["0780337867"], "publish_date": "January 1997", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:22:01.764003"}, "authors": [{"key": "/authors/OL3523465A"}], "latest_revision": 3, "works": [{"key": "/works/OL9516227W"}], "type": {"key": "/type/edition"}, "subjects": ["Electricity", "Engineering - Electrical & Electronic", "Technology", "Technology & Industrial Arts", "Science/Mathematics"], "revision": 3}
+/type/edition /books/OL10999218M 6 2011-06-08T03:30:57.418716 {"publishers": ["Institute of Electrical & Electronics Enginee"], "number_of_pages": 120, "subtitle": "Sample Problems and Solutions in Electrical Engineering", "weight": "11.2 ounces", "covers": [5088279], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-06-08T03:30:57.418716"}, "latest_revision": 6, "key": "/books/OL10999218M", "authors": [{"key": "/authors/OL3523529A"}, {"key": "/authors/OL3104335A"}], "subjects": ["Electronics & Communications Engineering", "Technology", "Study Guides", "Science/Mathematics", "Electricity", "Professional - General", "Study guides, home study & revision notes", "Engineering - Electrical & Electronic"], "isbn_13": ["9780780345966"], "title": "Principles and Practice of Engineering (Pe)", "identifiers": {"goodreads": ["4912891"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0780345967"], "publish_date": "September 1998", "oclc_numbers": ["37546238"], "works": [{"key": "/works/OL15009587W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "11 x 8.8 x 0.5 inches", "revision": 6}
+/type/edition /books/OL10999407M 4 2010-08-17T05:09:54.442074 {"publishers": ["Institute of Electrical & Electronics Enginee"], "identifiers": {"librarything": ["5455894"]}, "weight": "1.1 pounds", "covers": [5089027], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-08-17T05:09:54.442074"}, "latest_revision": 4, "key": "/books/OL10999407M", "authors": [{"key": "/authors/OL3523595A"}], "subjects": ["Power generation & distribution", "Power networks, systems, stations & plants", "Electric Power Systems", "Technology", "Technology & Industrial Arts", "Science/Mathematics", "Electricity", "Engineering - Electrical & Electronic", "Power Resources", "Power Resources - General"], "isbn_13": ["9780780352445"], "title": "1999 IEEE Rural Electric Power Conference, 1999 IEEE", "number_of_pages": 200, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0780352440"], "publish_date": "June 1999", "works": [{"key": "/works/OL9516367W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "11 x 8.6 x 0.4 inches", "revision": 4}
+/type/edition /books/OL10999536M 4 2020-12-01T17:25:35.832018 {"publishers": ["Institute of Electrical & Electronics Enginee"], "subtitle": "October 25-27, 1999 the Catamaran Hotel San Diego, California", "weight": "1.4 pounds", "isbn_10": ["0780355970"], "covers": [2623514], "physical_format": "Paperback", "lc_classifications": ["TK7870.15 .E383 1999"], "latest_revision": 4, "key": "/books/OL10999536M", "authors": [{"key": "/authors/OL3523640A"}], "isbn_13": ["9780780355972"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part28.utf8:25936349:1221"], "title": "Electrical Performance of Electronic Packaging", "lccn": ["99062322"], "number_of_pages": 266, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "subjects": ["Electronics engineering", "Engineering: general", "Technical design", "Technology", "Technology & Industrial Arts", "Science/Mathematics", "Electricity", "Electronics - General", "Engineering - Electrical & Electronic", "Industrial Design - Packaging", "Congresses", "Electric properties", "Electronic packaging", "Materials"], "publish_date": "October 1999", "last_modified": {"type": "/type/datetime", "value": "2020-12-01T17:25:35.832018"}, "works": [{"key": "/works/OL9516408W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.8 x 8.5 x 0.6 inches", "revision": 4}
+/type/edition /books/OL10999737M 4 2021-08-26T23:17:09.216388 {"publishers": ["Institute of Electrical & Electronics Enginee"], "weight": "3.6 pounds", "covers": [5088986], "physical_format": "Hardcover", "key": "/books/OL10999737M", "authors": [{"key": "/authors/OL2730977A"}, {"key": "/authors/OL251874A"}, {"key": "/authors/OL2858180A"}], "subjects": ["Communications engineering / telecommunications", "Computer Communications & Networking", "Communication Engineering", "Computer Network Management", "Technology", "Technology & Industrial Arts", "Computer Books: General", "General", "Networking - General", "Engineering - Electrical & Electronic"], "languages": [{"key": "/languages/eng"}], "title": "Network Operations and Management Symposium (Noms) 2000", "number_of_pages": 1048, "isbn_13": ["9780780359277"], "isbn_10": ["0780359275"], "publish_date": "November 2000", "works": [{"key": "/works/OL13565354W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.5 x 6.4 x 2.4 inches", "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-08-26T23:17:09.216388"}}
+/type/edition /books/OL10999813M 3 2010-04-13T06:22:48.040664 {"publishers": ["IEEE Standards Office"], "key": "/books/OL10999813M", "languages": [{"key": "/languages/eng"}], "title": "International Semiconductor Laser Conference Proceedings", "number_of_pages": 160, "isbn_13": ["9780780362611"], "covers": [5088902], "physical_format": "Unknown Binding", "isbn_10": ["0780362616"], "publish_date": "October 2000", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:22:48.040664"}, "authors": [{"key": "/authors/OL2858103A"}], "latest_revision": 3, "works": [{"key": "/works/OL8536871W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Technology", "Technology & Industrial Arts"], "revision": 3}
+/type/edition /books/OL10999882M 7 2021-10-04T10:33:25.116953 {"publishers": ["Institute of Electrical & Electronics Enginee"], "identifiers": {"goodreads": ["7247690"]}, "weight": "2.2 pounds", "covers": [2623569], "physical_format": "Paperback", "key": "/books/OL10999882M", "authors": [{"key": "/authors/OL2858286A"}, {"key": "/authors/OL251874A"}], "subjects": ["Circuits & components", "Neural Networks", "Neural Computing", "Computers", "Technology & Industrial Arts", "Computer Books: General", "General", "Networking - General"], "edition_name": "1st edition", "languages": [{"key": "/languages/eng"}], "title": "Proceedings of the 2000 6th IEEE International Workshop on Cellular Neural Netowrks and Their Applications (CNNA 2000)", "number_of_pages": 462, "isbn_13": ["9780780363441"], "isbn_10": ["0780363442"], "publish_date": "January 15, 2000", "works": [{"key": "/works/OL12001850W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6.5 x 1.2 inches", "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-10-04T10:33:25.116953"}}
+/type/edition /books/OL10999889M 3 2021-08-26T23:17:09.216388 {"physical_format": "Hardcover", "languages": [{"key": "/languages/eng"}], "publishers": ["Ieee"], "isbn_10": ["0780363515"], "contributions": ["RSJ International Conference on Intelligent Robots and Systems (Corporate Author)"], "title": "Intelligent Robots and Systems Proceedings, 2000 Ieee/Rsj International Conference on", "edition_name": "Cdr edition", "isbn_13": ["9780780363519"], "publish_date": "May 1996", "key": "/books/OL10999889M", "authors": [{"key": "/authors/OL251874A"}], "subjects": ["CD-DVD Technology", "Programming Languages - Visual BASIC", "Computers", "Computer Books: General"], "works": [{"key": "/works/OL8210034W"}], "type": {"key": "/type/edition"}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-08-26T23:17:09.216388"}}
+/type/edition /books/OL11000109M 3 2010-04-13T06:22:48.040664 {"publishers": ["Ieee"], "key": "/books/OL11000109M", "languages": [{"key": "/languages/eng"}], "title": "Silicon-On-Insulator Conference (Soi), 2001 IEEE International", "number_of_pages": 178, "isbn_13": ["9780780367395"], "covers": [2623576], "physical_format": "Paperback", "isbn_10": ["0780367391"], "publish_date": "May 2001", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:22:48.040664"}, "authors": [{"key": "/authors/OL3523822A"}], "latest_revision": 3, "works": [{"key": "/works/OL9516585W"}], "type": {"key": "/type/edition"}, "subjects": ["Computer architecture & logic design", "Electronics - Semiconductors", "Semiconductors", "Technology & Engineering", "Science/Mathematics"], "revision": 3}
+/type/edition /books/OL11000346M 5 2010-04-24T18:12:34.996110 {"publishers": ["Ieee"], "languages": [{"key": "/languages/eng"}], "title": "Electron Devices Meeting 2002 International", "isbn_10": ["0780374622"], "identifiers": {"goodreads": ["5857642"]}, "isbn_13": ["9780780374621"], "covers": [5088048], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:12:34.996110"}, "publish_date": "December 2002", "key": "/books/OL11000346M", "authors": [{"key": "/authors/OL3523918A"}], "latest_revision": 5, "works": [{"key": "/works/OL9516677W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Technology", "Science/Mathematics"], "revision": 5}
+/type/edition /books/OL11000442M 3 2020-12-08T04:29:35.268825 {"physical_format": "Hardcover", "subtitle": "May 12-16, 2003, New Orleans, La.", "publishers": ["Institute of Electrical & Electronics Enginee"], "isbn_10": ["0780379705"], "number_of_pages": 1, "isbn_13": ["9780780379701"], "languages": [{"key": "/languages/eng"}], "publish_date": "January 2005", "key": "/books/OL11000442M", "authors": [{"key": "/authors/OL3523940A"}], "title": "2003 IEEE International Workshop on Computer Architectures for Machine Perception (Camp)", "works": [{"key": "/works/OL9516696W"}], "type": {"key": "/type/edition"}, "lccn": ["2003106383"], "lc_classifications": ["QA76.9.A73 I324 2003"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part30.utf8:212231447:946"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-08T04:29:35.268825"}}
+/type/edition /books/OL11000680M 3 2020-12-14T00:17:01.436653 {"publishers": ["Institute of Electrical & Electronics Enginee"], "languages": [{"key": "/languages/eng"}], "subtitle": "Collocated Wtih 4th European Symposium on Photonic Crystals, Espc 20", "title": "Proceedings of 2005 7th International Conference on Transparent Optical Networks", "isbn_13": ["9780780392366"], "physical_format": "Hardcover", "isbn_10": ["0780392361"], "publish_date": "January 2005", "key": "/books/OL11000680M", "works": [{"key": "/works/OL13469996W"}], "type": {"key": "/type/edition"}, "subjects": ["Imaging Systems", "Technology & Industrial Arts"], "lccn": ["2005925911"], "lc_classifications": ["TK5103.59 .I554 2005"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part33.utf8:82395373:1445"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-14T00:17:01.436653"}}
+/type/edition /books/OL11000851M 3 2011-04-25T15:33:34.508454 {"publishers": ["New Line Cinema Corporation"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-25T15:33:34.508454"}, "title": "Cheats", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 86, "isbn_13": ["9780780637092"], "edition_name": "DVD Video edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0780637097"], "publish_date": "January 2003", "key": "/books/OL11000851M", "authors": [{"key": "/authors/OL3524158A"}], "latest_revision": 3, "oclc_numbers": ["52131649"], "works": [{"key": "/works/OL9516949W"}], "type": {"key": "/type/edition"}, "subjects": ["Film & Video - General", "Pop Arts / Pop Culture", "ADDTL FOOTAGE", "CLOSED CAP/SUBTITLED", "Running Time: 86m/COLOR", "Cinema/Film: Comedy"], "revision": 3}
+/type/edition /books/OL11000910M 2 2009-12-15T00:57:13.093381 {"publishers": ["Perfection Learning Prebound"], "subtitle": "Furry Swimmer (Animal Close-Ups)", "title": "The Seal", "isbn_10": ["0780722736"], "isbn_13": ["9780780722736"], "physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:57:13.093381"}, "publish_date": "September 1993", "key": "/books/OL11000910M", "authors": [{"key": "/authors/OL3253524A"}], "latest_revision": 2, "subjects": ["Children: Grades 2-3"], "works": [{"key": "/works/OL9184724W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL11000964M 5 2010-04-24T18:13:04.600301 {"number_of_pages": 115, "weight": "5.8 ounces", "covers": [2623853], "latest_revision": 5, "title": "No eches la culpa a los ninos/Don't Blame the Children (Passages Hi: Lo Novels)", "languages": [{"key": "/languages/spa"}], "subjects": ["Mystery & Detective - General", "General", "Juvenile Fiction", "Children's Books - Young Adult Fiction", "Fiction", "High schools", "Missing persons", "Schools", "Spanish: Grades 4-7"], "type": {"key": "/type/edition"}, "physical_dimensions": "7.2 x 4.2 x 0.5 inches", "revision": 5, "publishers": ["Perfection Learning"], "physical_format": "Library Binding", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:13:04.600301"}, "key": "/books/OL11000964M", "authors": [{"key": "/authors/OL201279A"}, {"key": "/authors/OL3524173A"}, {"key": "/authors/OL199299A"}], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "identifiers": {"goodreads": ["1467580"]}, "isbn_13": ["9780780754980"], "isbn_10": ["0780754980"], "publish_date": "August 1996", "works": [{"key": "/works/OL15041849W"}]}
+/type/edition /books/OL11001026M 8 2022-11-15T17:44:42.848819 {"publishers": ["Perfection Learning"], "number_of_pages": 63, "weight": "6.1 ounces", "covers": [2623863], "physical_format": "Library Binding", "key": "/books/OL11001026M", "authors": [{"key": "/authors/OL54143A"}], "contributions": ["Michael A. Aspengren (Illustrator)"], "subjects": ["Classics", "Short Stories", "Juvenile Fiction", "Children's Books/Ages 9-12 Fiction", "Fairy tales", "Folklore", "Children: Grades 4-6"], "isbn_13": ["9780780778597"], "title": "Tales of Yore (Cover-to-Cover Timeless Classics: Fables, Folktales)", "identifiers": {"librarything": ["7663830"], "goodreads": ["3037206"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0780778596"], "publish_date": "August 1999", "oclc_numbers": ["45192564"], "works": [{"key": "/works/OL687323W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "7.8 x 5.1 x 0.4 inches", "source_records": ["amazon:0780778596"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-15T17:44:42.848819"}}
+/type/edition /books/OL11001112M 3 2011-04-30T00:42:47.008797 {"publishers": ["Omnigraphics"], "subtitle": "A Comprehensive Guide to Federal, State, County, and Local Government Offices in the United States (5th ed)", "weight": "6.6 pounds", "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-30T00:42:47.008797"}, "latest_revision": 3, "key": "/books/OL11001112M", "authors": [{"key": "/authors/OL2858563A"}], "contributions": ["Carroll Publishing (Editor)"], "subjects": ["General", "Public Affairs & Administration", "U.S. Government (General)", "Directories", "Local governments", "Politics and government", "State governments", "Telephone directories", "United States", "Reference"], "edition_name": "5th edition", "title": "Government Phone Book USA: 1997 ", "number_of_pages": 1656, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780780800717"], "isbn_10": ["0780800710"], "publish_date": "December 1996", "oclc_numbers": ["36875403"], "works": [{"key": "/works/OL8537704W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "11.2 x 8.8 x 2.5 inches", "revision": 3}
+/type/edition /books/OL1100133M 6 2020-11-18T10:41:21.887266 {"publishers": ["CRC Press"], "number_of_pages": 244, "isbn_10": ["0849351499"], "covers": [9763558], "lc_classifications": ["QD606 .P76 1995"], "latest_revision": 6, "key": "/books/OL1100133M", "ocaid": "promptgammaneutr00alfa", "publish_places": ["Boca Raton"], "contributions": ["Alfassi, Zeev B.", "Chung, Chien, 1950-"], "pagination": "244 p. :", "source_records": ["ia:promptgammaneutr00alfa", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:134954346:779"], "title": "Prompt gamma neutron activation analysis", "dewey_decimal_class": ["543/.0882"], "notes": {"type": "/type/text", "value": "Includes bibliographical references and index."}, "identifiers": {"goodreads": ["4020959"]}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["94024929"], "subjects": ["Nuclear activation analysis."], "publish_date": "1995", "publish_country": "flu", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T10:41:21.887266"}, "by_statement": "edited by Zeev B. Alfassi, Chien Chung.", "works": [{"key": "/works/OL16937522W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL11001682M 2 2009-12-15T00:57:14.512478 {"publishers": ["Reprint Services Corp"], "weight": "14.4 ounces", "title": "Violin & Old Violin Makers, The (The Works Of A. Mason Clarke)", "isbn_10": ["0781204860"], "isbn_13": ["9780781204866"], "physical_format": "Library Binding", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:57:14.512478"}, "publish_date": "January 1999", "key": "/books/OL11001682M", "authors": [{"key": "/authors/OL1762904A"}], "latest_revision": 2, "subjects": ["Music"], "works": [{"key": "/works/OL6573955W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.3 x 6.1 x 0.5 inches", "revision": 2}
+/type/edition /books/OL11002504M 5 2022-10-28T20:45:21.711153 {"publishers": ["Reprint Services Corp"], "classifications": {}, "title": "Collected Works Of Asa Gray", "notes": {"type": "/type/text", "value": "Notable American Authors"}, "identifiers": {}, "isbn_13": ["9780781229395"], "physical_format": "Library Binding", "isbn_10": ["0781229391"], "publish_date": "January 1999", "key": "/books/OL11002504M", "authors": [{"key": "/authors/OL160842A"}], "works": [{"key": "/works/OL1514234W"}], "type": {"key": "/type/edition"}, "subjects": ["Literature"], "source_records": ["amazon:0781229391"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-28T20:45:21.711153"}}
+/type/edition /books/OL11002537M 4 2011-04-27T10:32:42.642190 {"publishers": ["Reprint Services Corp"], "number_of_pages": 263, "physical_format": "Library Binding", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T10:32:42.642190"}, "latest_revision": 4, "key": "/books/OL11002537M", "authors": [{"key": "/authors/OL3524354A"}], "subjects": ["Literature"], "classifications": {}, "title": "Itinerarium", "notes": {"type": "/type/text", "value": "Notable American Authors"}, "identifiers": {}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780781230001"], "isbn_10": ["0781230004"], "publish_date": "January 1744", "oclc_numbers": ["232622414"], "works": [{"key": "/works/OL9517221W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL11002591M 5 2011-04-30T12:57:12.121289 {"publishers": ["Reprint Services Corp"], "subtitle": "Translated Into English Verse (Notable American Authors)", "weight": "14.4 ounces", "physical_format": "Library Binding", "last_modified": {"type": "/type/datetime", "value": "2011-04-30T12:57:12.121289"}, "latest_revision": 5, "key": "/books/OL11002591M", "authors": [{"key": "/authors/OL155646A"}], "subjects": ["Literature"], "title": "Prometheus And Agamemnon Of Aeschylus", "identifiers": {"goodreads": ["898411"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780781230964"], "isbn_10": ["0781230969"], "publish_date": "January 1849", "oclc_numbers": ["232622460"], "works": [{"key": "/works/OL1471673W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.1 x 6.2 x 0.7 inches", "revision": 5}
+/type/edition /books/OL11002711M 1 2008-04-30T09:38:13.731961 {"physical_format": "Library Binding", "weight": "2.2 pounds", "publishers": ["Reprint Services Corp"], "number_of_pages": 637, "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780781233347"], "isbn_10": ["0781233348"], "publish_date": "January 1900", "key": "/books/OL11002711M", "authors": [{"key": "/authors/OL2206993A"}], "title": "Misc. Works (Notable American Authors)", "type": {"key": "/type/edition"}, "subjects": ["Literature"], "physical_dimensions": "9.3 x 5.7 x 1.6 inches", "revision": 1}
+/type/edition /books/OL11003215M 3 2011-01-03T22:24:45.336740 {"publishers": ["Reprint Services Corp"], "classifications": {}, "last_modified": {"type": "/type/datetime", "value": "2011-01-03T22:24:45.336740"}, "weight": "12.8 ounces", "title": "On limitations to the use of some anthropologic data", "notes": {"type": "/type/text", "value": "LC History-America-E"}, "identifiers": {}, "isbn_13": ["9780781244510"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Library Binding", "isbn_10": ["078124451X"], "latest_revision": 3, "key": "/books/OL11003215M", "authors": [{"key": "/authors/OL215971A"}], "works": [{"key": "/works/OL1799534W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.1 x 7 x 0.2 inches", "revision": 3}
+/type/edition /books/OL11003629M 2 2009-12-15T00:57:15.624268 {"publishers": ["Reprint Services Corp"], "weight": "1.4 pounds", "title": "Travels In Philadelphia", "isbn_10": ["0781254922"], "isbn_13": ["9780781254922"], "physical_format": "Library Binding", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:57:15.624268"}, "publish_date": "January 1920", "key": "/books/OL11003629M", "authors": [{"key": "/authors/OL2858613A"}], "latest_revision": 2, "subjects": ["History"], "works": [{"key": "/works/OL8537980W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.3 x 5.9 x 1.1 inches", "revision": 2}
+/type/edition /books/OL11003924M 7 2010-12-31T20:03:28.360893 {"publishers": ["Reprint Services Corporation"], "number_of_pages": 142, "weight": "1 pounds", "physical_format": "Library Binding", "last_modified": {"type": "/type/datetime", "value": "2010-12-31T20:03:28.360893"}, "latest_revision": 7, "key": "/books/OL11003924M", "authors": [{"key": "/authors/OL19725A"}], "subjects": ["American - General", "Literature", "Literature - Classics / Criticism"], "classifications": {}, "title": "Washington Irving Diary, Spain 1828-1829", "notes": {"type": "/type/text", "value": "BCL1-PS American Literature"}, "identifiers": {"goodreads": ["2051309"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780781267588"], "isbn_10": ["0781267587"], "publish_date": "January 1930", "works": [{"key": "/works/OL6042967W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.3 x 6.2 x 0.8 inches", "revision": 7}
+/type/edition /books/OL11004513M 5 2011-01-05T03:43:17.594291 {"publishers": ["Reprint Services Corp"], "identifiers": {"goodreads": ["2004554"]}, "classifications": {}, "last_modified": {"type": "/type/datetime", "value": "2011-01-05T03:43:17.594291"}, "title": "The Traipsin Woman", "physical_format": "Library Binding", "notes": {"type": "/type/text", "value": "American Biography Series"}, "number_of_pages": 277, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780781283823"], "isbn_10": ["0781283825"], "publish_date": "January 1933", "key": "/books/OL11004513M", "authors": [{"key": "/authors/OL3524707A"}], "latest_revision": 5, "works": [{"key": "/works/OL9517702W"}], "type": {"key": "/type/edition"}, "subjects": ["History"], "revision": 5}
+/type/edition /books/OL11004662M 2 2009-12-15T00:57:16.752955 {"publishers": ["Reprint Services Corp"], "subtitle": "A Champion's Memoirs (American Autobiography)", "isbn_10": ["0781286522"], "number_of_pages": 335, "isbn_13": ["9780781286527"], "physical_format": "Library Binding", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:57:16.752955"}, "publish_date": "January 1948", "latest_revision": 2, "key": "/books/OL11004662M", "authors": [{"key": "/authors/OL3524761A"}], "title": "My Story", "subjects": ["Literature"], "works": [{"key": "/works/OL9517766W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL11004833M 5 2010-12-25T09:00:51.431975 {"publishers": ["Reprint Services Corp"], "number_of_pages": 306, "weight": "1.5 pounds", "physical_format": "Library Binding", "last_modified": {"type": "/type/datetime", "value": "2010-12-25T09:00:51.431975"}, "latest_revision": 5, "key": "/books/OL11004833M", "authors": [{"key": "/authors/OL2689587A"}], "subjects": ["Music"], "classifications": {}, "title": "Dilemma Of American Music And Other Essays, The", "notes": {"type": "/type/text", "value": "Music Book Index"}, "identifiers": {"goodreads": ["2266444"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780781290159"], "isbn_10": ["0781290155"], "publish_date": "January 1928", "works": [{"key": "/works/OL8079198W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.2 x 6.3 x 1 inches", "revision": 5}
+/type/edition /books/OL11005168M 4 2010-12-16T01:03:52.434326 {"publishers": ["Reprint Services Corp"], "physical_format": "Library Binding", "classifications": {}, "last_modified": {"type": "/type/datetime", "value": "2010-12-16T01:03:52.434326"}, "title": "Glimpses of England", "notes": {"type": "/type/text", "value": "Notable American Authors"}, "identifiers": {}, "isbn_13": ["9780781298575"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0781298571"], "publish_date": "1898", "key": "/books/OL11005168M", "authors": [{"key": "/authors/OL2588446A"}], "latest_revision": 4, "works": [{"key": "/works/OL7892482W"}], "type": {"key": "/type/edition"}, "subjects": ["Literature: Classics"], "revision": 4}
+/type/edition /books/OL11005699M 5 2022-12-09T21:49:49.454143 {"publishers": ["Victor Books"], "subtitle": " A Biblical Perspective on End Times", "title": "\"I Shall Return\"...Jesus", "identifiers": {"goodreads": ["6968745"], "librarything": ["3376612"]}, "physical_format": "Paperback", "isbn_10": ["0781454832"], "publish_date": "1997", "key": "/books/OL11005699M", "authors": [{"key": "/authors/OL3524896A"}], "works": [{"key": "/works/OL9517935W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:W6-ART-369"], "source_records": ["promise:bwb_daily_pallets_2020-10-08"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T21:49:49.454143"}}
+/type/edition /books/OL11005810M 7 2023-01-06T18:41:57.243764 {"publishers": ["Lippincott Williams & Wilkins"], "number_of_pages": 393, "subtitle": "Principles and Practice of Collaboration", "weight": "3.4 pounds", "isbn_10": ["0781715792"], "covers": [5089539], "physical_format": "Hardcover", "lc_classifications": ["RF46.5 .N48 1999"], "key": "/books/OL11005810M", "ocaid": "neurosurgicaliss0000unse", "contributions": ["Moises A. Arriaga (Editor)", "J. Diaz Day (Editor)"], "languages": [{"key": "/languages/eng"}], "source_records": ["ia:neurosurgicaliss0000unse", "marc:marc_loc_2016/BooksAll.2016.part27.utf8:231666699:988", "marc:marc_columbia/Columbia-extract-20221130-009.mrc:73923430:1494"], "title": "Neurosurgical Issues in Otolaryngology", "lccn": ["99023052"], "identifiers": {"goodreads": ["1360844"]}, "isbn_13": ["9780781715799"], "edition_name": "1st edition", "subjects": ["Neurosurgery", "Otorhinolaryngology (ENT)", "Otorhinolaryngologic Surgery", "Medical", "Medical / Nursing", "Neurology - General", "Otolaryngology", "Surgery - Neurosurgery", "Surgery - General", "Nervous system", "Surgery"], "publish_date": "September 15, 1999", "works": [{"key": "/works/OL20848718W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "14.5 x 8.8 x 0.8 inches", "oclc_numbers": ["41137523"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2023-01-06T18:41:57.243764"}}
+/type/edition /books/OL11005843M 2 2009-12-15T00:57:17.950017 {"physical_format": "Unknown Binding", "subtitle": "Co-Developed with the National Council of State Boards of Nursing", "weight": "1.7 pounds", "title": "Lippincott's Interactive Care Plan Creator", "isbn_10": ["0781717388"], "publishers": ["Lippincott Williams & Wilkins"], "isbn_13": ["9780781717380"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:57:17.950017"}, "publish_date": "January 1999", "key": "/books/OL11005843M", "authors": [{"key": "/authors/OL3524974A"}], "latest_revision": 2, "subjects": ["Medicine", "Nursing - Assessment & Diagnosis", "Nursing - Fundamentals & Skills", "Medical / Nursing"], "works": [{"key": "/works/OL9517996W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL11005919M 6 2011-04-27T02:57:59.223566 {"publishers": ["Lippincott Williams & Wilkins"], "subtitle": "The Nurse's Active Role in Opioid Administration (CD-ROM for Windows, Institutional Version)", "weight": "8 ounces", "covers": [2624225], "physical_format": "CD-ROM", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T02:57:59.223566"}, "latest_revision": 6, "key": "/books/OL11005919M", "authors": [{"key": "/authors/OL1759840A"}, {"key": "/authors/OL2848037A"}], "subjects": ["Pain & pain management", "Surgical nursing", "Medical"], "edition_name": "CD-Rom edition", "languages": [{"key": "/languages/eng"}], "title": "Pain Management", "identifiers": {"goodreads": ["5375233"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780781720427"], "isbn_10": ["0781720427"], "publish_date": "December 15, 2000", "oclc_numbers": ["47705946"], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6.2 x 1 inches", "revision": 6}
+/type/edition /books/OL11006123M 3 2011-04-28T07:49:42.858940 {"publishers": ["Lippincott Williams & Wilkins,US"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-28T07:49:42.858940"}, "title": "Pathophysiology", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "edition_name": "6Rev Ed edition", "isbn_13": ["9780781728836"], "isbn_10": ["0781728835"], "publish_date": "February 11, 1942", "key": "/books/OL11006123M", "authors": [{"key": "/authors/OL3525095A"}], "latest_revision": 3, "oclc_numbers": ["56482465"], "works": [{"key": "/works/OL9518071W"}], "type": {"key": "/type/edition"}, "subjects": ["Nursing", "Pathology"], "revision": 3}
+/type/edition /books/OL11006132M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780781729208"], "physical_format": "CD-ROM", "subtitle": "Human Health & Function, 3rd Edition, + Karch; Lippincott's 2001 Nursing Drug Guide", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Lippincott Williams & Wilkins Publishers"], "title": "Fund Nursing/2001 Drug Guide, Package Includes: Craven; Fundamentals of Nursing", "edition_name": "1st edition", "isbn_10": ["0781729203"], "publish_date": "January 15, 2001", "key": "/books/OL11006132M", "authors": [{"key": "/authors/OL449580A"}, {"key": "/authors/OL2862782A"}], "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL11006314M 5 2011-04-30T12:31:30.927401 {"publishers": ["Lippincott Williams & Wilkins"], "weight": "4 ounces", "covers": [5089332], "edition_name": "CD-Rom edition", "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-30T12:31:30.927401"}, "latest_revision": 5, "key": "/books/OL11006314M", "contributions": ["Mary W., M.D. Lieh-Lai (Editor)", "Michael, M.D. Fiore (Editor)", "K. Jane, M.D. Lee (Editor)"], "subjects": ["Paediatric medicine", "Pediatrics", "Family & General Practice", "Test Preparation & Review", "Medical / Nursing", "Medical"], "isbn_13": ["9780781738743"], "title": "Pocket Pediatrics for PDA (CD-ROM)", "identifiers": {"goodreads": ["3413895"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0781738741"], "publish_date": "June 15, 2002", "oclc_numbers": ["228130420"], "type": {"key": "/type/edition"}, "physical_dimensions": "7.5 x 5.2 x 0.5 inches", "revision": 5}
+/type/edition /books/OL1100638M 12 2022-12-04T10:24:16.528647 {"publishers": ["Chelsea Green Pub. Co."], "identifiers": {"librarything": ["326851"], "goodreads": ["453604"]}, "subtitle": "growing vegetables year-round the American intensive way ; illustrations by Robin Wimbiscus and Leandre Poisson", "isbn_10": ["0930031695"], "subject_place": ["United States.", "United States"], "covers": [12039193], "lc_classifications": ["SB324.3 .P65 1994", "SB324.3"], "key": "/books/OL1100638M", "authors": [{"key": "/authors/OL583483A"}], "ocaid": "solargardeninggr0000pois", "publish_places": ["White River Junction, Vt"], "contributions": ["Poisson, Gretchen Vogel, 1951-"], "pagination": "xx, 267 p. :", "source_records": ["ia:solargardeninggr0000pois", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:135399651:1339", "bwb:9780930031695", "promise:bwb_daily_pallets_2022-09-12"], "title": "Solar gardening", "dewey_decimal_class": ["635.0483"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 255-257) and index."}, "number_of_pages": 267, "languages": [{"key": "/languages/eng"}], "lccn": ["94025475"], "subjects": ["Vegetable gardening -- United States.", "Organic gardening -- United States.", "Solar greenhouses -- United States -- Management.", "Vegetable gardening.", "Organic gardening.", "Solar greenhouses -- Management."], "publish_date": "1994", "publish_country": "vtu", "series": ["The Real goods independent living book"], "by_statement": "Leandre Poisson and Gretchen Vogel Poisson ; illustrations by Robin Wimbiscus and Leandre Poisson.", "oclc_numbers": ["30624782"], "works": [{"key": "/works/OL3493645W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:O8-CHN-740"], "latest_revision": 12, "revision": 12, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T10:24:16.528647"}}
+/type/edition /books/OL11006503M 6 2011-04-29T16:48:26.289316 {"publishers": ["Lippincott Williams & Wilkins"], "subtitle": "Powered by Skyscape, Inc.", "weight": "3.2 ounces", "covers": [2624497], "physical_format": "CD-ROM", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T16:48:26.289316"}, "latest_revision": 6, "key": "/books/OL11006503M", "authors": [{"key": "/authors/OL3278839A"}], "subjects": ["Education & Training", "Reference", "Medical / Radiology & Nuclear Medicine", "Radiology", "Medical", "Unabridged Audio - Misc.Nonfiction"], "edition_name": "5 Cdr edition", "languages": [{"key": "/languages/eng"}], "title": "Radiology Review Manual, Fifth Edition, for PDA", "identifiers": {"goodreads": ["6975792"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780781746908"], "isbn_10": ["0781746906"], "publish_date": "May 1, 2005", "oclc_numbers": ["227978005"], "works": [{"key": "/works/OL9216184W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "7.5 x 5.3 x 0.6 inches", "revision": 6}
+/type/edition /books/OL11006623M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Lippincott Williams & Wilkins"], "title": "Health Assessment in Nursing + Case Studies on CD-ROM + Nurses' Handbook of Health Assessment (Book", "isbn_13": ["9780781751568"], "isbn_10": ["078175156X"], "publish_date": "August 2004", "key": "/books/OL11006623M", "authors": [{"key": "/authors/OL2626829A"}], "type": {"key": "/type/edition"}, "subjects": ["Nursing - Assessment & Diagnosis", "Medical / Nursing"], "revision": 1}
+/type/edition /books/OL11007238M 8 2022-12-27T09:41:18.577510 {"publishers": ["Lippincott Williams & Wilkins"], "languages": [{"key": "/languages/eng"}], "identifiers": {"librarything": ["7991611"], "goodreads": ["2980393"]}, "title": "A Practical Approach to Pediatric Anesthesia", "type": {"key": "/type/edition"}, "number_of_pages": 688, "isbn_13": ["9780781779432"], "physical_format": "Paperback", "isbn_10": ["078177943X"], "publish_date": "June 1, 2008", "key": "/books/OL11007238M", "works": [{"key": "/works/OL12794226W"}], "contributions": ["Robert S Holzman (Editor)", "Thomas J Mancuso (Editor)", "David M Polaner (Editor)"], "subjects": ["Anaesthetics", "Anesthesiology", "Medical / Anesthesiology", "Medical", "Medical / Nursing"], "lccn": ["2008010718"], "lc_classifications": ["RD139 .H65 2008", "RD139 .P73 2008"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part35.utf8:105380646:1342", "promise:bwb_daily_pallets_2022-12-06", "marc:marc_columbia/Columbia-extract-20221130-014.mrc:49655636:4756"], "local_id": ["urn:bwbsku:T2-DVO-092"], "oclc_numbers": ["185032990"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-27T09:41:18.577510"}}
+/type/edition /books/OL11007447M 4 2022-10-30T22:01:42.169577 {"publishers": ["Lippincott Williams & Wilkins"], "physical_format": "Paperback", "subtitle": "India Edition", "title": "High-yield Pathology", "isbn_13": ["9780781797658"], "edition_name": "2nd edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0781797659"], "publish_date": "July 18, 2005", "key": "/books/OL11007447M", "authors": [{"key": "/authors/OL25326A"}], "oclc_numbers": ["149482402"], "works": [{"key": "/works/OL449856W"}], "type": {"key": "/type/edition"}, "subjects": ["Pathology", "Medical"], "source_records": ["amazon:0781797659"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-30T22:01:42.169577"}}
+/type/edition /books/OL1100755M 14 2022-12-14T04:37:52.670369 {"other_titles": ["Music, culture, and experience"], "publishers": ["University of Chicago Press"], "number_of_pages": 269, "subtitle": "selected papers of John Blacking", "series": ["Chicago studies in ethnomusicology"], "covers": [3880527, 140065], "local_id": ["urn:sfpl:31223047631578", "urn:bwbsku:P8-AZP-151", "urn:bwbsku:KR-380-739"], "lc_classifications": ["ML60 .B63 1995", "ML60.B63 1995"], "url": ["http://www.loc.gov/catdir/description/uchi051/94025598.html", "http://www.loc.gov/catdir/toc/uchi051/94025598.html"], "key": "/books/OL1100755M", "authors": [{"key": "/authors/OL583534A"}], "publish_places": ["Chicago"], "contributions": ["Byron, Reginald.", "Nettl, Bruno, 1930-"], "subjects": ["Ethnomusicology.", "Music -- Social aspects.", "Folk music -- History and criticism."], "uri_descriptions": ["Publisher description", "Table of contents"], "pagination": "xii, 269 p. :", "source_records": ["marc:marc_openlibraries_sanfranciscopubliclibrary/sfpl_chq_2018_12_24_run02.mrc:126893248:2213", "bwb:9780226088297", "bwb:9780226088303", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:135505902:1254", "promise:bwb_daily_pallets_2022-11-17", "promise:bwb_daily_pallets_2022-07-22", "ia:musiccultureexpe0000blac"], "title": "Music, culture, & experience", "dewey_decimal_class": ["780/.89"], "notes": {"type": "/type/text", "value": "Works by John Blacking (p. 247-252).\nIncludes bibliographical references (p. 253-259) and index."}, "identifiers": {"goodreads": ["5505239", "177603"], "librarything": ["1972079"]}, "languages": [{"key": "/languages/eng"}], "lccn": ["94025598"], "isbn_10": ["0226088294", "0226088308"], "publish_date": "1995", "publish_country": "ilu", "by_statement": "edited and with an introduction by Reginald Byron ; with a foreward by Bruno Nettl.", "works": [{"key": "/works/OL3493969W"}], "type": {"key": "/type/edition"}, "uris": ["http://www.loc.gov/catdir/description/uchi051/94025598.html", "http://www.loc.gov/catdir/toc/uchi051/94025598.html"], "ocaid": "musiccultureexpe0000blac", "latest_revision": 14, "revision": 14, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-14T04:37:52.670369"}}
+/type/edition /books/OL11007736M 3 2009-12-15T00:57:20.283680 {"publishers": ["Meadwestvaco"], "subtitle": "Zodiac Art", "weight": "8 ounces", "title": "Cal 95", "isbn_10": ["0781907756"], "isbn_13": ["9780781907750"], "physical_format": "Calendar", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:57:20.283680"}, "publish_date": "June 1994", "key": "/books/OL11007736M", "authors": [{"key": "/authors/OL1926858A"}], "latest_revision": 3, "subjects": ["Calendar"], "works": [{"key": "/works/OL6945324W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "12 x 12 x 0.2 inches", "revision": 3}
+/type/edition /books/OL11008167M 4 2022-10-17T04:34:01.230155 {"publishers": ["Sybex Inc"], "subtitle": "Exchange 2000 Server Administration e-trainer", "weight": "9.6 ounces", "covers": [2624914], "edition_name": "CD-Rom edition", "physical_format": "Paperback", "key": "/books/OL11008167M", "authors": [{"key": "/authors/OL36482A"}], "subjects": ["Computer Software Packages", "IBM mainframe operating systems", "Distributed Computer Systems", "Microcomputer Communication Software", "Computers", "Software - Study Guides - CDROM / Universal", "Computer Books And Software", "Certification - MCSE", "Certification Guides - Msce", "Groupware - Exchange", "Operating Systems - General", "Certification Guides - General", "Client-Server Computing - General", "Programming - General"], "isbn_13": ["9780782150124"], "title": "MCSE", "number_of_pages": 944, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0782150128"], "publish_date": "July 18, 2001", "works": [{"key": "/works/OL521339W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.1 x 7.6 x 1.7 inches", "source_records": ["bwb:9780782150124"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T04:34:01.230155"}}
+/type/edition /books/OL1100860M 10 2021-03-03T14:10:32.632536 {"publishers": ["Mercer University Press"], "number_of_pages": 212, "subtitle": "the costs of community at a 1960s southern school", "subject_place": ["Georgia", "Macon"], "covers": [8545187], "local_id": ["urn:cst:10017011679"], "lc_classifications": ["LD3241.M302 C36 1995"], "key": "/books/OL1100860M", "authors": [{"key": "/authors/OL407661A"}], "ocaid": "stemofjessecosts0000camp", "publish_places": ["Macon, Ga"], "subjects": ["Mercer University -- History.", "School integration -- Georgia -- Macon -- History."], "pagination": "ix, 212 p. :", "source_records": ["amazon:0865544492", "ia:stemofjessecosts0000camp", "marc:marc_claremont_school_theology/CSTMARC1_barcode.mrc:210934864:2226", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:135594755:699", "ia:stemofjessecosts0000camp_e8t0", "marc:marc_claremont_school_theology/CSTMARC1_multibarcode.mrc:211200819:2226"], "title": "The stem of Jesse", "dewey_decimal_class": ["378.758/513"], "identifiers": {"goodreads": ["3282669"], "librarything": ["1186964"]}, "languages": [{"key": "/languages/eng"}], "lccn": ["94025708"], "isbn_10": ["0865544492"], "publish_date": "1995", "publish_country": "gau", "by_statement": "by Will D. Campbell.", "works": [{"key": "/works/OL2770251W"}], "type": {"key": "/type/edition"}, "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2021-03-03T14:10:32.632536"}}
+/type/edition /books/OL11008682M 2 2010-03-17T13:38:00.094905 {"publishers": ["Antioch Pub"], "physical_format": "Stationery", "weight": "8 ounces", "title": "Arthur My Diary", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780782481228"], "languages": [{"key": "/languages/eng"}], "authors": [{"key": "/authors/OL24310A"}], "isbn_10": ["0782481221"], "publish_date": "March 1998", "key": "/books/OL11008682M", "last_modified": {"type": "/type/datetime", "value": "2010-03-17T13:38:00.094905"}, "latest_revision": 2, "subjects": ["Non-Classifiable", "Blank Books/Journals"], "works": [{"key": "/works/OL15004112W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "1 x 4.5 x 5.8 inches", "revision": 2}
+/type/edition /books/OL11008767M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "title": "Mr Plod", "publishers": ["Antioch"], "isbn_13": ["9780782493689"], "isbn_10": ["0782493688"], "key": "/books/OL11008767M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL11008803M 2 2021-08-26T04:38:43.519345 {"languages": [{"key": "/languages/eng"}], "physical_format": "Spiral-bound", "publishers": ["Britannica"], "title": "Packages and Polygons Mathematics in Context Teacher Guide", "isbn_13": ["9780782615333"], "isbn_10": ["0782615333"], "publish_date": "1998", "key": "/books/OL11008803M", "type": {"key": "/type/edition"}, "works": [{"key": "/works/OL24896013W"}], "covers": [11796737], "ocaid": "mathematicsincon0000unse_e9z3", "lc_classifications": ["QA135.5 .M384 1998"], "source_records": ["ia:mathematicsincon0000unse_e9z3"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-08-26T04:38:43.519345"}}
+/type/edition /books/OL11008846M 2 2009-12-15T00:57:20.283680 {"physical_format": "Unknown Binding", "subtitle": "Worksheets for building comprehension and language through literature", "publishers": ["DLM"], "isbn_10": ["0782901506"], "number_of_pages": 64, "isbn_13": ["9780782901504"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:57:20.283680"}, "publish_date": "1993", "latest_revision": 2, "key": "/books/OL11008846M", "authors": [{"key": "/authors/OL3525656A"}], "title": "StoryMasters", "subjects": ["English language", "Study and teaching"], "works": [{"key": "/works/OL9518428W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL11008979M 3 2011-04-29T16:19:58.017857 {"publishers": ["Wintergreen/Orchard House"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T16:19:58.017857"}, "title": "College Admissions Index of Majors and Sports 2002-2003 (College Admissions Index of Majors and Sports)", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780782995121"], "isbn_10": ["0782995128"], "publish_date": "January 2003", "key": "/books/OL11008979M", "authors": [{"key": "/authors/OL3525673A"}], "latest_revision": 3, "oclc_numbers": ["51327001"], "works": [{"key": "/works/OL9518452W"}], "type": {"key": "/type/edition"}, "subjects": ["Education"], "revision": 3}
+/type/edition /books/OL11009458M 2 2009-12-15T00:57:21.723296 {"physical_format": "Paperback", "publishers": ["Books on Demand"], "isbn_10": ["0783757751"], "number_of_pages": 75, "isbn_13": ["9780783757759"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:57:21.723296"}, "publish_date": "December 1986", "latest_revision": 2, "key": "/books/OL11009458M", "authors": [{"key": "/authors/OL416376A"}], "title": "Structuring State and Local Tax Reform Commissions", "subjects": ["Taxation - General", "Business / Economics / Finance"], "works": [{"key": "/works/OL2805445W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL11010122M 3 2011-04-29T05:50:37.491052 {"publishers": ["Houghton Mifflin Company"], "weight": "4.4 pounds", "edition_name": "7 edition", "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T05:50:37.491052"}, "latest_revision": 3, "key": "/books/OL11010122M", "authors": [{"key": "/authors/OL407372A"}], "subjects": ["General", "Business & Economics / General", "Accounting - Managerial", "Business & Economics", "Business / Economics / Finance", "Business/Economics"], "isbn_13": ["9780618734702"], "title": "Managerial Accounting With Cd And Smarthinking Plus Study Guide And Tutorial Cdseventh Edition", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0618734708"], "publish_date": "October 12, 2005", "oclc_numbers": ["148608121"], "works": [{"key": "/works/OL2768848W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "11 x 8.5 x 1.2 inches", "revision": 3}
+/type/edition /books/OL1101030M 4 2020-11-18T10:53:24.270685 {"publishers": ["Springer-Verlag"], "number_of_pages": 401, "subtitle": "proceedings of the Second International Workshop on \"Phase Separation in Cuprate Superconductors,\" September 4-10, 1993, Cottbus, Germany", "isbn_10": ["3540576819", "0387576819"], "lc_classifications": ["QC611.98.C64 P48 1993"], "latest_revision": 4, "key": "/books/OL1101030M", "authors": [{"key": "/authors/OL583638A"}], "publish_places": ["Berlin", "New York"], "contributions": ["Sigmund, E. 1946-", "Mu\u0308ller, K. A. 1927-"], "pagination": "xvii, 401 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:135742620:1155"], "title": "Phase separation in cuprate superconductors", "dewey_decimal_class": ["537.6/236"], "notes": {"type": "/type/text", "value": "Includes bibliographical references."}, "identifiers": {"goodreads": ["3213260", "5449530"]}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["94025887"], "subjects": ["High temperature superconductors -- Congresses.", "Copper oxide superconductors -- Congresses.", "Liquation -- Congresses."], "publish_date": "1994", "publish_country": "gw ", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T10:53:24.270685"}, "by_statement": "E. Sigmund, K.A. Mu\u0308ller, (eds.).", "works": [{"key": "/works/OL3494421W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL11010434M 2 2009-12-15T00:57:21.723296 {"publishers": ["Houghton Mifflin Company"], "weight": "4.8 pounds", "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:57:21.723296"}, "latest_revision": 2, "key": "/books/OL11010434M", "authors": [{"key": "/authors/OL407372A"}], "subjects": ["General", "Business & Economics / General", "Accounting - Financial", "Business & Economics", "Business / Economics / Finance", "Business/Economics"], "edition_name": "9 edition", "title": "Principles Of Financial Accounting With Cd Revised Ninth Edition Plus Eduspace", "isbn_13": ["9780618754342"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0618754342"], "publish_date": "December 7, 2005", "works": [{"key": "/works/OL2768916W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "11.1 x 8.7 x 1.3 inches", "revision": 2}
+/type/edition /books/OL11010628M 2 2009-12-15T00:57:21.723296 {"publishers": ["Houghton Mifflin Company"], "weight": "1.4 pounds", "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:57:21.723296"}, "latest_revision": 2, "key": "/books/OL11010628M", "authors": [{"key": "/authors/OL454167A"}], "subjects": ["History / General", "General", "History", "History - General History", "History: World"], "edition_name": "7 edition", "title": "A People And A Nation Volume 2 Brief 7th Edition Plus U.S History Atlas Plus Student Resource Companion", "isbn_13": ["9780618788057"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0618788050"], "publish_date": "February 21, 2006", "works": [{"key": "/works/OL2970833W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.6 x 8.7 x 0.6 inches", "revision": 2}
+/type/edition /books/OL11010653M 13 2022-11-15T06:53:32.239690 {"publishers": ["Houghton Mifflin Company"], "identifiers": {"goodreads": ["6754286"], "librarything": ["7784296"]}, "subtitle": "Beyond Boundaries", "weight": "2 pounds", "covers": [2542473], "physical_format": "Paperback", "key": "/books/OL11010653M", "authors": [{"key": "/authors/OL1349587A"}, {"key": "/authors/OL240450A"}, {"key": "/authors/OL2734289A"}, {"key": "/authors/OL2734290A"}], "ocaid": "westerncivilizat0000unse_y4f4", "subjects": ["World history", "History", "History - General History", "History: World", "General", "History / General", "Survey of Western Civilization", "World - General"], "edition_name": "5 edition", "languages": [{"key": "/languages/eng"}], "source_records": ["ia:westerncivilizat0000unse_y4f4", "marc:marc_loc_updates/v36.i03.records.utf8:7394821:910", "marc:marc_loc_updates/v37.i07.records.utf8:2805940:949", "ia:westerncivilizat00nobl_351", "marc:marc_loc_2016/BooksAll.2016.part34.utf8:96652676:949", "amazon:0618794271"], "title": "Volume A: To 1500: Volume of ...Noble-Western Civilization", "number_of_pages": 624, "isbn_13": ["9780618794270"], "isbn_10": ["0618794271"], "publish_date": "January 10, 2007", "works": [{"key": "/works/OL14985683W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.9 x 8.5 x 0.6 inches", "lccn": ["2006935032"], "lc_classifications": ["CB245 .W4843 2008"], "latest_revision": 13, "revision": 13, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-15T06:53:32.239690"}}
+/type/edition /books/OL11010939M 2 2009-12-08T02:57:07.503727 {"publishers": ["Houghton Mifflin Company"], "weight": "2.8 pounds", "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2009-12-08T02:57:07.503727"}, "latest_revision": 2, "key": "/books/OL11010939M", "authors": [{"key": "/authors/OL27493A"}], "subjects": ["Education / General", "General", "Education", "Education / Teaching"], "edition_name": "9 edition", "title": "Foundations Of Education 9th Edition Plus Literacy Guide To Reflection", "isbn_13": ["9780618816460"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0618816461"], "publish_date": "April 11, 2006", "works": [{"key": "/works/OL471131W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.2 x 8.2 x 0.8 inches", "revision": 2}
+/type/edition /books/OL11010995M 4 2011-04-30T16:01:34.970343 {"publishers": ["Houghton Mifflin Company"], "weight": "4.5 pounds", "edition_name": "7 edition", "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-30T16:01:34.970343"}, "latest_revision": 4, "key": "/books/OL11010995M", "authors": [{"key": "/authors/OL2648745A"}], "subjects": ["General", "Mathematics / General", "Pre-Calculus", "Mathematics", "Science/Mathematics"], "isbn_13": ["9780618819720"], "title": "Precalculus Plus Mathspace 7th Edition Plus Smarthinking", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["061881972X"], "publish_date": "August 28, 2006", "oclc_numbers": ["148694148"], "works": [{"key": "/works/OL7942972W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10 x 8.3 x 1.5 inches", "revision": 4}
+/type/edition /books/OL11011640M 5 2011-03-05T08:07:10.888211 {"publishers": ["Houghton Mifflin Company"], "weight": "3.8 pounds", "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-03-05T08:07:10.888211"}, "latest_revision": 5, "key": "/books/OL11011640M", "authors": [{"key": "/authors/OL37393A"}], "subjects": ["Marketing - General", "Business & Economics / General", "Business & Economics", "Business / Economics / Finance", "Business/Economics"], "edition_name": "14 edition", "languages": [{"key": "/languages/eng"}], "title": "Pride Marketing Library Edition With Your Guide To A Passkey For Package Fourteenth Edition", "identifiers": {"goodreads": ["2577432"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780618889631"], "isbn_10": ["0618889639"], "publish_date": "February 23, 2007", "works": [{"key": "/works/OL8219710W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "11.1 x 8.7 x 1.2 inches", "revision": 5}
+/type/edition /books/OL11011654M 10 2022-12-05T09:15:23.416324 {"publishers": ["Clarion Books"], "number_of_pages": 22, "covers": [5089845], "physical_format": "Board book", "key": "/books/OL11011654M", "authors": [{"key": "/authors/OL1191650A"}], "subjects": ["Animals - General", "Juvenile Fiction / Animals / General", "Juvenile Fiction", "Children's Books/Baby-Preschool", "Children: Kindergarten"], "edition_name": "Brdbk edition", "title": "Maria Llev\u00f3 Su Traje Rojo (y Enrique Llev\u00f3 Sus T\u00e9nis Verdes) / Mary Wore Her Red Dress and Henry Wore His Green Sneakers", "identifiers": {"goodreads": ["2575358"], "librarything": ["73177"]}, "isbn_13": ["9780618894215"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0618894217"], "publish_date": "August 18, 2008", "works": [{"key": "/works/OL5267819W"}], "type": {"key": "/type/edition"}, "lccn": ["2007041085"], "lc_classifications": ["PZ73 .P44 2008", "PZ73.P44 2007"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part34.utf8:152639778:1316", "bwb:9780618894215", "promise:bwb_daily_pallets_2022-05-16"], "local_id": ["urn:bwbsku:T2-DIV-549", "urn:bwbsku:T2-DGC-522"], "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-05T09:15:23.416324"}}
+/type/edition /books/OL11011909M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780618984879"], "physical_format": "Paperback", "weight": "1.6 pounds", "languages": [{"key": "/languages/eng"}], "publishers": ["Houghton Mifflin Company"], "title": "Muller New World Reader Second Edition Plus Eduspace", "edition_name": "2 edition", "isbn_10": ["0618984879"], "publish_date": "July 24, 2007", "key": "/books/OL11011909M", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "type": {"key": "/type/edition"}, "subjects": ["General", "Language Arts & Disciplines / General", "Readers", "Language Arts & Disciplines", "Language Arts / Linguistics / Literacy", "Language"], "physical_dimensions": "9 x 6.1 x 0.9 inches", "revision": 1}
+/type/edition /books/OL11012086M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780618997923"], "physical_format": "Paperback", "weight": "2.5 pounds", "languages": [{"key": "/languages/eng"}], "publishers": ["Houghton Mifflin Company"], "title": "Cobbs Major Problems In American History Volume Two Second Edition Pluswheeler Discovering America's Past Volume Two Sixth Edition", "edition_name": "2 edition", "isbn_10": ["061899792X"], "publish_date": "July 16, 2007", "key": "/books/OL11012086M", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "type": {"key": "/type/edition"}, "subjects": ["General", "History / General", "United States - General", "History", "History - General History", "History: American"], "physical_dimensions": "9.3 x 7.6 x 1.2 inches", "revision": 1}
+/type/edition /books/OL11012093M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780618998241"], "physical_format": "Hardcover", "subtitle": "Early Transcendental Functions Plus Student Studyguide Volume One Plus Dvd Fourth Edition Plus Eduspace", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "publishers": ["Houghton Mifflin Company"], "title": "Larson Calculus One", "edition_name": "1 edition", "isbn_10": ["0618998241"], "publish_date": "May 23, 2007", "key": "/books/OL11012093M", "type": {"key": "/type/edition"}, "subjects": ["General", "Mathematics / General", "Calculus", "Mathematics", "Science/Mathematics"], "revision": 1}
+/type/edition /books/OL11012158M 3 2011-04-29T10:57:05.891969 {"publishers": ["Course Technology"], "subtitle": "Microsoft Office 2000 Integration", "weight": "14.9 ounces", "edition_name": "1 edition", "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T10:57:05.891969"}, "latest_revision": 3, "key": "/books/OL11012158M", "authors": [{"key": "/authors/OL2734307A"}], "contributions": ["Course Technology (Editor)"], "subjects": ["Microsoft Office", "Miscellaneous Software", "Computers - Other Applications", "Computer Books: General"], "isbn_13": ["9780619014186"], "title": "Course ILT", "number_of_pages": 144, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0619014180"], "publish_date": "December 29, 2000", "oclc_numbers": ["47775897"], "works": [{"key": "/works/OL8220815W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.8 x 8.6 x 0.4 inches", "revision": 3}
+/type/edition /books/OL11012192M 6 2022-12-03T22:58:48.942029 {"publishers": ["Course Technology"], "identifiers": {"librarything": ["3004539"]}, "weight": "15.2 ounces", "covers": [2542608], "physical_format": "Paperback", "key": "/books/OL11012192M", "authors": [{"key": "/authors/OL1862479A"}], "ocaid": "adobeillustrator00annf", "subjects": ["Computer graphics software", "Computers", "Computers - Other Applications", "Computer Books: General", "Miscellaneous Software", "Computers / Interactive Media", "Interactive & Multimedia"], "edition_name": "Book & CD-ROM edition", "languages": [{"key": "/languages/eng"}], "title": "Adobe Illustrator 9.0 - Illustrated Introductory", "number_of_pages": 224, "isbn_13": ["9780619017507"], "isbn_10": ["0619017503"], "publish_date": "October 6, 2000", "works": [{"key": "/works/OL6807806W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.6 x 8.3 x 0.4 inches", "source_records": ["amazon:0619017503"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-03T22:58:48.942029"}}
+/type/edition /books/OL11012241M 5 2010-04-24T18:13:04.600301 {"publishers": ["Course Technology"], "languages": [{"key": "/languages/eng"}], "weight": "0.8 ounces", "title": "Explore! Microsoft Windows 2000 Professional--Brief", "identifiers": {"goodreads": ["2603056"]}, "isbn_13": ["9780619020736"], "covers": [5089737], "edition_name": "1 edition", "physical_format": "CD-ROM", "authors": [{"key": "/authors/OL2837095A"}], "isbn_10": ["0619020733"], "latest_revision": 5, "key": "/books/OL11012241M", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:13:04.600301"}, "publish_date": "February 6, 2001", "works": [{"key": "/works/OL8492280W"}], "type": {"key": "/type/edition"}, "subjects": ["Computing and Information Technology", "Miscellaneous Software", "Computers - Other Applications", "Computer Books: General"], "physical_dimensions": "5 x 5 x 0.2 inches", "revision": 5}
+/type/edition /books/OL11012571M 2 2010-08-17T05:12:46.029429 {"publishers": ["Course Technology Ptr (Sd)"], "physical_format": "CD-ROM", "last_modified": {"type": "/type/datetime", "value": "2010-08-17T05:12:46.029429"}, "weight": "0.8 ounces", "title": "Adobe Pagemaker 7.0. Review Pack", "identifiers": {"librarything": ["8837568"]}, "isbn_13": ["9780619109608"], "edition_name": "Cdr edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0619109602"], "publish_date": "February 3, 2003", "key": "/books/OL11012571M", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "latest_revision": 2, "type": {"key": "/type/edition"}, "subjects": ["CD-DVD Technology", "Computers", "Computer Books: General"], "physical_dimensions": "4.9 x 4.8 x 0.1 inches", "revision": 2}
+/type/edition /books/OL11012591M 5 2011-04-27T15:04:53.726022 {"publishers": ["Course Technology"], "number_of_pages": 140, "last_modified": {"type": "/type/datetime", "value": "2011-04-27T15:04:53.726022"}, "title": "MCSE Courseprep Examguide (MCSE S.)", "type": {"key": "/type/edition"}, "identifiers": {"goodreads": ["1368109"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780619120764"], "isbn_10": ["0619120762"], "latest_revision": 5, "key": "/books/OL11012591M", "authors": [{"key": "/authors/OL1480217A"}], "oclc_numbers": ["48932674"], "works": [{"key": "/works/OL5963712W"}], "physical_format": "Paperback", "subjects": ["Computer Communications & Networking", "General Theory of Computing", "Study guides, home study & revision notes"], "revision": 5}
+/type/edition /books/OL1101267M 5 2020-11-18T10:55:35.959039 {"publishers": ["Pacific Press Pub. Association"], "identifiers": {"goodreads": ["3767392"]}, "subtitle": "devotions and activities for tiny Christians", "isbn_10": ["0816312281"], "lc_classifications": ["BV1590 .T63 1995"], "latest_revision": 5, "key": "/books/OL1101267M", "authors": [{"key": "/authors/OL583737A"}], "publish_places": ["Boise, Idaho"], "pagination": "62 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:135950167:698"], "title": "Jesus and me in the summer", "dewey_decimal_class": ["242/.62"], "notes": {"type": "/type/text", "value": "Ages 3-6."}, "number_of_pages": 62, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["94026144"], "subjects": ["Christian education of preschool children.", "Preschool children -- Religious life."], "publish_date": "1995", "publish_country": "idu", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T10:55:35.959039"}, "by_statement": "by Jennie Todd.", "oclc_numbers": ["30810086"], "works": [{"key": "/works/OL3494941W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL11012699M 2 2009-12-15T00:57:23.023596 {"physical_format": "Hardcover", "languages": [{"key": "/languages/eng"}], "subtitle": "Consulting Skills", "publishers": ["Course Technology"], "isbn_10": ["0619161396"], "title": "Course ILT", "edition_name": "1 edition", "isbn_13": ["9780619161392"], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:57:23.023596"}, "publish_date": "February 28, 2003", "key": "/books/OL11012699M", "authors": [{"key": "/authors/OL2734307A"}], "latest_revision": 2, "subjects": ["Applications of computing", "Computers", "Business / Economics / Finance", "Computer Books: General", "Consulting", "General"], "works": [{"key": "/works/OL8220815W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL11012890M 7 2021-12-29T00:48:33.010031 {"publishers": ["Crisp Learning"], "weight": "1.9 pounds", "covers": [5089809], "physical_format": "Paperback", "key": "/books/OL11012890M", "authors": [{"key": "/authors/OL2675905A"}], "subjects": ["Computer Programming", "Computing and Information Technology", "Programming - General", "Computers", "Computer Books: Languages"], "edition_name": "Spi Pap/CD edition", "languages": [{"key": "/languages/eng"}], "title": "Course ILT XML (Course Ilt)", "identifiers": {"goodreads": ["5114475"]}, "isbn_13": ["9780619205874"], "isbn_10": ["0619205873"], "publish_date": "December 2003", "oclc_numbers": ["56554395"], "works": [{"key": "/works/OL8044583W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.9 x 8.4 x 0.9 inches", "source_records": ["bwb:9780619205874"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-29T00:48:33.010031"}}
+/type/edition /books/OL11013017M 2 2009-12-15T00:57:24.321975 {"publishers": ["Course Technology"], "key": "/books/OL11013017M", "title": "*Acp IE New Horizons", "isbn_13": ["9780619286613"], "physical_format": "Unknown Binding", "isbn_10": ["061928661X"], "publish_date": "June 29, 2004", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:57:24.321975"}, "authors": [{"key": "/authors/OL2765682A"}], "latest_revision": 2, "works": [{"key": "/works/OL8322307W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL1101306M 7 2020-11-18T10:55:55.592740 {"publishers": ["Allyn and Bacon"], "number_of_pages": 298, "isbn_10": ["0205157696"], "covers": [1144209], "lc_classifications": ["PN151 .H446 1995"], "latest_revision": 7, "key": "/books/OL1101306M", "authors": [{"key": "/authors/OL222265A"}], "ocaid": "artofwritingforp0000hens", "publish_places": ["Boston"], "pagination": "xvii, 298 p. :", "source_records": ["ia:artofwritingforp0000hens", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:135980980:651"], "title": "The art of writing for publication", "dewey_decimal_class": ["808/.02"], "notes": {"type": "/type/text", "value": "Includes bibliographical references and indexes.\n\"A Longwood professional book\"--Cover."}, "identifiers": {"goodreads": ["3339922"], "librarything": ["5449471"]}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["94026187"], "subjects": ["Authorship."], "publish_date": "1995", "publish_country": "mau", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T10:55:55.592740"}, "by_statement": "Kenneth T. Henson.", "works": [{"key": "/works/OL1856773W"}], "type": {"key": "/type/edition"}, "revision": 7}
+/type/edition /books/OL11013134M 2 2009-12-15T00:57:24.321975 {"key": "/books/OL11013134M", "title": "Around the Shabbat and Yom Tov Table", "physical_format": "Hardcover", "isbn_10": ["0620188723"], "latest_revision": 2, "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:57:24.321975"}, "authors": [{"key": "/authors/OL3525985A"}], "works": [{"key": "/works/OL9518812W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL11013187M 4 2011-04-26T04:22:52.620361 {"publishers": ["Access Publishers Network"], "number_of_pages": 346, "subtitle": "Planning and Control Techniques", "weight": "1.4 pounds", "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-26T04:22:52.620361"}, "latest_revision": 4, "key": "/books/OL11013187M", "authors": [{"key": "/authors/OL718008A"}], "subjects": ["Project management", "Production & Operations Management", "Business / Economics / Finance"], "languages": [{"key": "/languages/eng"}], "first_sentence": {"type": "/type/text", "value": "Project management offers a structured approach to managing projects."}, "title": "Project Management", "identifiers": {"librarything": ["81217"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780620234146"], "isbn_10": ["0620234148"], "publish_date": "July 2000", "oclc_numbers": ["50196777"], "works": [{"key": "/works/OL3939875W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.5 x 6.7 x 0.8 inches", "revision": 4}
+/type/edition /books/OL11013246M 4 2011-06-08T01:58:01.360913 {"publishers": ["ORTUS BOOKS CC"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2011-06-08T01:58:01.360913"}, "title": "The Legend of Huberta", "identifiers": {"goodreads": ["5674452"]}, "isbn_13": ["9780620268325"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0620268328"], "publish_date": "2001", "key": "/books/OL11013246M", "latest_revision": 4, "oclc_numbers": ["48578661"], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL11013262M 5 2011-04-25T18:24:15.543171 {"publishers": ["Premier Music Education Trust, South Africa and Reddco Entertainment LLC"], "physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2011-04-25T18:24:15.543171"}, "title": "Uncovering the music industry in South Africa", "number_of_pages": 70, "isbn_13": ["9780620278607"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0620278609"], "publish_date": "2000", "key": "/books/OL11013262M", "authors": [{"key": "/authors/OL1660402A"}], "latest_revision": 5, "oclc_numbers": ["52098410"], "works": [{"key": "/works/OL6345254W"}], "type": {"key": "/type/edition"}, "subjects": ["Computer network resources", "Copyright", "Law and legislation", "Music", "Music trade", "Sound recordings", "South Africa", "Webcasting"], "revision": 5}
+/type/edition /books/OL11014217M 4 2010-04-24T18:13:04.600301 {"publishers": ["J L Van Schaik, South Africa"], "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:13:04.600301"}, "title": "Tshithudivha", "identifiers": {"goodreads": ["6806365"]}, "isbn_13": ["9780627014840"], "physical_format": "Paperback", "isbn_10": ["0627014844"], "publish_date": "April 9, 1991", "key": "/books/OL11014217M", "authors": [{"key": "/authors/OL3526421A"}], "latest_revision": 4, "works": [{"key": "/works/OL9519219W"}], "type": {"key": "/type/edition"}, "subjects": ["Drama texts: from c 1900 -"], "revision": 4}
+/type/edition /books/OL11014872M 6 2023-01-10T21:28:56.861331 {"publishers": ["Bsail Blackwell"], "number_of_pages": 346, "title": "The Principles of Semantics", "physical_format": "Hardcover", "identifiers": {"goodreads": ["2722036"], "librarything": ["719816"]}, "isbn_13": ["9780631054702"], "isbn_10": ["0631054707"], "publish_date": "1967", "key": "/books/OL11014872M", "authors": [{"key": "/authors/OL134617A"}], "works": [{"key": "/works/OL1321778W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:P8-AUP-984"], "source_records": ["promise:bwb_daily_pallets_2022-12-30"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2023-01-10T21:28:56.861331"}}
+/type/edition /books/OL11015748M 2 2009-12-15T00:57:27.086475 {"publishers": ["Simon & Schuster Education"], "isbn_10": ["0631902740"], "number_of_pages": 64, "isbn_13": ["9780631902744"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:57:27.086475"}, "publish_date": "November 1988", "latest_revision": 2, "key": "/books/OL11015748M", "authors": [{"key": "/authors/OL892949A"}], "title": "The Somerset Thinking Skills Course", "subjects": ["Learning & study skills", "Special needs & learning difficulties"], "works": [{"key": "/works/OL4475966W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL11015795M 3 2011-04-26T06:46:08.287077 {"publishers": ["Simon & Schuster Education"], "last_modified": {"type": "/type/datetime", "value": "2011-04-26T06:46:08.287077"}, "title": "Project English", "number_of_pages": 48, "isbn_13": ["9780631903826"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0631903828"], "publish_date": "December 1990", "key": "/books/OL11015795M", "authors": [{"key": "/authors/OL964797A"}, {"key": "/authors/OL3501154A"}], "latest_revision": 3, "oclc_numbers": ["24744053"], "type": {"key": "/type/edition"}, "subjects": ["For National Curriculum Key Stage 2", "English language: specific skills"], "revision": 3}
+/type/edition /books/OL11016324M 5 2022-12-13T06:48:41.587294 {"title": "Ln Medical Entomology", "authors": [{"key": "/authors/OL3329928A"}], "publish_date": "January 1987", "publishers": ["Blackwell Science Inc"], "isbn_10": ["063201525X"], "isbn_13": ["9780632015252"], "physical_format": "Paperback", "subjects": ["Health/Fitness"], "type": {"key": "/type/edition"}, "ocaid": "lecturenotesonme0000serv", "source_records": ["ia:lecturenotesonme0000serv", "bwb:9780632015252"], "key": "/books/OL11016324M", "number_of_pages": 272, "works": [{"key": "/works/OL9275942W"}], "lc_classifications": ["RA639.5"], "covers": [13054227], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-13T06:48:41.587294"}}
+/type/edition /books/OL11016549M 6 2022-10-18T09:04:36.998216 {"publishers": ["Halsted Pr"], "identifiers": {"goodreads": ["4342782"]}, "physical_format": "Paperback", "key": "/books/OL11016549M", "authors": [{"key": "/authors/OL392087A"}], "subjects": ["Specific disorders & therapies", "Urology & urogenital medicine", "Health/Fitness"], "edition_name": "4th edition", "languages": [{"key": "/languages/eng"}], "classifications": {}, "title": "Lecture Notes on Vertebrate Zoology", "notes": {"type": "/type/text", "value": "Lecture Notes"}, "number_of_pages": 348, "isbn_13": ["9780632024926"], "isbn_10": ["0632024925"], "publish_date": "June 1989", "works": [{"key": "/works/OL2684946W"}], "type": {"key": "/type/edition"}, "lc_classifications": ["RC871"], "source_records": ["bwb:9780632024926"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T09:04:36.998216"}}
+/type/edition /books/OL1101669M 15 2023-01-10T04:50:14.870447 {"publishers": ["HarperSanFrancisco"], "identifiers": {"goodreads": ["1978403", "1177516"], "librarything": ["498503"]}, "subtitle": "finding the heart of gay spirit and nature with sixteen writers, healers, teachers, and visionaries", "ia_box_id": ["IA151201"], "subject_place": ["United States.", "United States"], "covers": [4943729, 4555196, 3880871, 48529], "local_id": ["urn:sfpl:31223042404682", "urn:sfpl:31223050317370"], "lc_classifications": ["HQ76.2.U5 T56 1994", "HQ76.2.U5T56 1994"], "url": ["http://www.loc.gov/catdir/description/hc044/94026574.html"], "key": "/books/OL1101669M", "authors": [{"key": "/authors/OL390628A"}], "ocaid": "gaysoulfindinghe00thom", "publish_places": ["[San Francisco, Calif.]"], "subjects": ["Gay men -- Religious life -- United States", "Gay men -- United States -- Psychology"], "uri_descriptions": ["Publisher description"], "edition_name": "1st ed.", "pagination": "266 p. :", "source_records": ["marc:marc_records_scriblio_net/part24.dat:61799592:1033", "marc:marc_ithaca_college/ic_marc.mrc:140909597:1017", "ia:gaysoulfindinghe00thom", "marc:marc_openlibraries_sanfranciscopubliclibrary/sfpl_chq_2018_12_24_run02.mrc:96616207:1951", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:136301073:1033", "bwb:9780062510419", "bwb:9780062510402", "marc:marc_columbia/Columbia-extract-20221130-009.mrc:502659816:1383"], "title": "Gay soul", "dewey_decimal_class": ["305.38/9664"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 264-266)."}, "number_of_pages": 266, "languages": [{"key": "/languages/eng"}], "lccn": ["94026574"], "isbn_10": ["0062510401", "006251041X"], "publish_date": "1994", "publish_country": "cau", "by_statement": "interviews and photographs by Mark Thompson.", "works": [{"key": "/works/OL2676827W"}], "type": {"key": "/type/edition"}, "uris": ["http://www.loc.gov/catdir/description/hc044/94026574.html"], "oclc_numbers": ["30777045"], "latest_revision": 15, "revision": 15, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2023-01-10T04:50:14.870447"}}
+/type/edition /books/OL11017112M 7 2020-12-07T17:28:32.044189 {"publishers": ["Lifeway Press"], "number_of_pages": 96, "subtitle": "God's design for mental wellness", "physical_format": "Unknown Binding", "key": "/books/OL11017112M", "authors": [{"key": "/authors/OL2852942A"}], "subjects": ["Mental health", "Religious aspects"], "languages": [{"key": "/languages/eng"}], "title": "With all my mind", "identifiers": {"librarything": ["2799699"], "goodreads": ["5540237"]}, "isbn_13": ["9780633005849"], "isbn_10": ["0633005843"], "publish_date": "2002", "oclc_numbers": ["50173105"], "works": [{"key": "/works/OL8526271W"}], "type": {"key": "/type/edition"}, "lccn": ["2002512489"], "lc_classifications": ["BL65.M45 P67 2002"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part30.utf8:126206014:602"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-07T17:28:32.044189"}}
+/type/edition /books/OL11017319M 9 2022-12-09T21:09:28.362373 {"physical_format": "Paperback", "subtitle": "Climbing Higher with God", "weight": "9.6 ounces", "title": "Vertically Inclined", "identifiers": {"librarything": ["3465484"], "goodreads": ["3041297"]}, "isbn_13": ["9780633095253"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0633095257"], "key": "/books/OL11017319M", "authors": [{"key": "/authors/OL73533A"}], "oclc_numbers": ["54379025"], "works": [{"key": "/works/OL850193W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.8 x 7.2 x 0.4 inches", "covers": [11738521], "ocaid": "verticallyinclin0000kass", "lc_classifications": ["BV4501.2 .K37 2004"], "source_records": ["ia:verticallyinclin0000kass", "promise:bwb_daily_pallets_2020-10-08"], "local_id": ["urn:bwbsku:W6-BVC-694"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T21:09:28.362373"}}
+/type/edition /books/OL11017939M 7 2021-12-26T14:36:44.605452 {"publishers": ["G. Schirmer, Inc."], "languages": [{"key": "/languages/eng"}], "identifiers": {"goodreads": ["4005897"]}, "subtitle": "Intro to the Appoggiatura (Earth Music Series, Book 3)", "title": "Earth Music Series - Book 3", "isbn_10": ["063401210X"], "number_of_pages": 21, "isbn_13": ["9780634012105"], "covers": [2543547], "physical_format": "Paperback", "publish_date": "November 1986", "key": "/books/OL11017939M", "authors": [{"key": "/authors/OL1549812A"}], "works": [{"key": "/works/OL6093221W"}], "type": {"key": "/type/edition"}, "subjects": ["Genres & Styles - Classical", "Instruction & Study - General", "Songbooks - General", "Music / Instruction & Study", "General", "Music"], "source_records": ["bwb:9780634012105"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-26T14:36:44.605452"}}
+/type/edition /books/OL11018355M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Sheet music", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Hal Leonard Corporation"], "title": "Notespeller For Piano 2 International", "isbn_13": ["9780634021251"], "isbn_10": ["0634021257"], "key": "/books/OL11018355M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL11018449M 7 2020-08-28T07:18:20.936698 {"publishers": ["Hal Leonard Corporation"], "number_of_pages": 38, "weight": "5 ounces", "covers": [2543953], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2020-08-28T07:18:20.936698"}, "latest_revision": 7, "key": "/books/OL11018449M", "authors": [{"key": "/authors/OL783948A"}], "subjects": ["Genres & Styles - Classical", "Music / Classical", "Genres & Styles - Jazz", "Instruction & Study - Techniques", "Songbooks - General", "Jazz", "Songbooks", "Music", "Music/Songbooks"], "isbn_13": ["9780634024139"], "source_records": ["bwb:9780634024139"], "title": "Jazz Suite for Horn Quartet and Rhythm Section", "identifiers": {"goodreads": ["6460338"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0634024132"], "publish_date": "April 1, 2000", "oclc_numbers": ["154682133"], "works": [{"key": "/works/OL4156080W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "12 x 9 x 0.1 inches", "revision": 7}
+/type/edition /books/OL11018738M 6 2021-12-26T12:44:21.358503 {"publishers": ["Hal Leonard Corporation"], "physical_format": "Paperback", "title": "Steve Turre Collection", "identifiers": {"goodreads": ["7106313"]}, "isbn_13": ["9780634031427"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0634031422"], "publish_date": "April 1, 2008", "key": "/books/OL11018738M", "authors": [{"key": "/authors/OL3527895A"}], "oclc_numbers": ["149586247"], "works": [{"key": "/works/OL9520582W"}], "type": {"key": "/type/edition"}, "subjects": ["Music / Songbooks", "Genres & Styles - Jazz", "Musical Instruments - Woodwinds", "Songbooks - General", "Jazz", "Musical Instruments - Construction And Repair", "Music", "Music/Songbooks"], "source_records": ["bwb:9780634031427"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-26T12:44:21.358503"}}
+/type/edition /books/OL11019229M 5 2010-04-24T18:13:04.600301 {"publishers": ["Hal Leonard Corporation"], "languages": [{"key": "/languages/eng"}], "title": "Artistic Impressions Of Stephen Nielson", "isbn_10": ["0634042467"], "type": {"key": "/type/edition"}, "identifiers": {"goodreads": ["5046831"]}, "isbn_13": ["9780634042461"], "covers": [2544532], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:13:04.600301"}, "latest_revision": 5, "key": "/books/OL11019229M", "authors": [{"key": "/authors/OL2889309A"}], "works": [{"key": "/works/OL8598785W"}], "contributions": ["Hal Leonard Corp. (Creator)"], "revision": 5}
+/type/edition /books/OL11019427M 3 2021-12-26T12:18:35.905847 {"physical_format": "Paperback", "subtitle": "50 Songs Of Praise and Worship", "title": "Powerful Praise", "isbn_10": ["0634046519"], "publishers": ["Hal Leonard Corporation"], "isbn_13": ["9780634046513"], "languages": [{"key": "/languages/eng"}], "publish_date": "January 1, 2008", "key": "/books/OL11019427M", "authors": [{"key": "/authors/OL2741414A"}], "subjects": ["Music / Songbooks", "Songbooks - General", "Music"], "works": [{"key": "/works/OL8235783W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780634046513"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-26T12:18:35.905847"}}
+/type/edition /books/OL11019452M 6 2011-04-28T23:41:35.980954 {"publishers": ["Creative Concepts"], "identifiers": {"goodreads": ["5144333"]}, "subtitle": "Guitar Transcriptions with Tab", "weight": "1.1 pounds", "covers": [2544734], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-28T23:41:35.980954"}, "latest_revision": 6, "key": "/books/OL11019452M", "authors": [{"key": "/authors/OL443551A"}], "subjects": ["Music / Songbooks", "Songbooks - General", "Music/Songbooks", "Music"], "isbn_13": ["9780634047343"], "title": "Essential Early Rock", "number_of_pages": 144, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0634047345"], "publish_date": "June 1, 2002", "oclc_numbers": ["50617369"], "works": [{"key": "/works/OL2912337W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "11.9 x 8.9 x 0.4 inches", "revision": 6}
+/type/edition /books/OL11019895M 2 2021-12-26T15:00:46.132629 {"languages": [{"key": "/languages/eng"}], "physical_format": "Paperback", "weight": "2.2 pounds", "publishers": ["Integrity Music"], "title": "Hosanna Music Songbook", "isbn_13": ["9780634060977"], "isbn_10": ["063406097X"], "publish_date": "February 2003", "key": "/books/OL11019895M", "type": {"key": "/type/edition"}, "subjects": ["Songbooks - General", "Music"], "physical_dimensions": "9.9 x 7 x 1.3 inches", "works": [{"key": "/works/OL26528560W"}], "source_records": ["bwb:9780634060977"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-26T15:00:46.132629"}}
+/type/edition /books/OL11019920M 6 2022-12-04T23:55:03.100136 {"number_of_pages": 15, "subtitle": "Alto Sax Play-Along Book/CD Pack", "weight": "4 ounces", "covers": [2545127], "edition_name": "Pap/Com edition", "title": "Andrew Lloyd Webber Classics - Alto Sax", "languages": [{"key": "/languages/eng"}], "subjects": ["Music / Songbooks", "Musical Instruments - Woodwinds", "Songbooks - General", "Musical Instruments - Construction And Repair", "Songbooks", "Music", "Music/Songbooks", "Audio Adult: Other"], "type": {"key": "/type/edition"}, "physical_dimensions": "11.6 x 0.5 x 0.5 inches", "publishers": ["Hal Leonard Corporation"], "physical_format": "Paperback", "key": "/books/OL11019920M", "authors": [{"key": "/authors/OL270471A"}], "identifiers": {"goodreads": ["459147"]}, "isbn_13": ["9780634061554"], "isbn_10": ["0634061550"], "publish_date": "July 1, 2006", "works": [{"key": "/works/OL2151870W"}], "local_id": ["urn:bwbsku:KR-091-485"], "source_records": ["promise:bwb_daily_pallets_2022-07-11"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T23:55:03.100136"}}
+/type/edition /books/OL11020063M 6 2021-12-26T16:32:36.428759 {"publishers": ["Scheffel Music Corp."], "number_of_pages": 104, "subtitle": "22 Songs by the Creators of Kismet, Song of Norway and Grand Hotel", "weight": "12 ounces", "covers": [2545258], "physical_format": "Paperback", "key": "/books/OL11020063M", "contributions": ["Robert Wright (Composer)", "George Forrest (Composer)"], "subjects": ["Music / Songbooks", "Songbooks - General", "Music", "Music/Songbooks"], "isbn_13": ["9780634065255"], "title": "The Wright and Forrest Songbook", "identifiers": {"goodreads": ["728341"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0634065254"], "publish_date": "December 1, 2004", "oclc_numbers": ["57590271"], "type": {"key": "/type/edition"}, "physical_dimensions": "11.7 x 8.9 x 0.3 inches", "works": [{"key": "/works/OL26530522W"}], "source_records": ["bwb:9780634065255"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-26T16:32:36.428759"}}
+/type/edition /books/OL11020223M 4 2021-12-26T13:10:52.044661 {"publishers": ["Hal Leonard Publishing Corporation"], "physical_format": "Paperback", "title": "Greatest Pop Hits", "number_of_pages": 40, "isbn_13": ["9780634068263"], "covers": [2545397], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0634068261"], "publish_date": "February 2004", "key": "/books/OL11020223M", "oclc_numbers": ["54891900"], "type": {"key": "/type/edition"}, "subjects": ["Songbooks - General", "Music"], "works": [{"key": "/works/OL26527080W"}], "source_records": ["bwb:9780634068263"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-26T13:10:52.044661"}}
+/type/edition /books/OL11020314M 3 2021-12-26T15:02:52.627551 {"publishers": ["Hal Leonard Corporation"], "weight": "0.8 ounces", "physical_format": "Paperback", "key": "/books/OL11020314M", "authors": [{"key": "/authors/OL2741633A"}], "subjects": ["Instruction & Study - Songwriting", "Music / Songbooks", "Songbooks - General", "Music", "Music/Songbooks"], "languages": [{"key": "/languages/eng"}], "title": "P.O.D. - Payable on Death", "number_of_pages": 96, "isbn_13": ["9780634070297"], "isbn_10": ["0634070290"], "publish_date": "May 1, 2004", "works": [{"key": "/works/OL8238486W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "12 x 8.4 x 0.3 inches", "source_records": ["bwb:9780634070297"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-26T15:02:52.627551"}}
+/type/edition /books/OL11020384M 8 2022-08-17T16:25:48.002735 {"publishers": ["Ricordi"], "number_of_pages": 164, "subtitle": "Vocal Score", "weight": "12.8 ounces", "covers": [5090317], "physical_format": "Paperback", "key": "/books/OL11020384M", "authors": [{"key": "/authors/OL54679A"}], "subjects": ["Genres & Styles - Classical", "Music / Voice", "Instruction & Study - Voice", "Songbooks - General", "Music", "Music/Songbooks"], "isbn_13": ["9780634071423"], "title": "I Capuleti e I Montecchi", "identifiers": {"goodreads": ["3385980"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0634071424"], "publish_date": "May 1, 1987", "oclc_numbers": ["153579438"], "works": [{"key": "/works/OL8253498W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.6 x 7.8 x 0.4 inches", "source_records": ["bwb:9780634071423"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-17T16:25:48.002735"}}
+/type/edition /books/OL11020911M 7 2021-12-24T20:46:30.023827 {"publishers": ["Hal Leonard Corporation"], "identifiers": {"goodreads": ["2601854"]}, "subtitle": "Hal Leonard Student Piano Library Late Elementary/Early Intermediate Composer Showcase", "weight": "4 ounces", "covers": [2545790], "physical_format": "Paperback", "key": "/books/OL11020911M", "authors": [{"key": "/authors/OL2741711A"}], "subjects": ["Music / Songbooks", "Songbooks - General", "Music", "Music/Songbooks"], "isbn_13": ["9780634086328"], "title": "Expeditions in Style", "number_of_pages": 24, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0634086324"], "publish_date": "July 1, 2004", "oclc_numbers": ["56923570"], "works": [{"key": "/works/OL8238910W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "12 x 9 x 0.1 inches", "source_records": ["bwb:9780634086328"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-24T20:46:30.023827"}}
+/type/edition /books/OL110210M 3 2020-12-02T10:53:21.159029 {"table_of_contents": [{"title": "v. 1. Amphibians of the West African Savanna.", "level": 0, "type": {"key": "/type/toc_item"}}], "subject_place": ["Africa, West."], "lc_classifications": ["QL668.E2 R5613 2000"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part28.utf8:99558022:1163"], "title": "Herpetofauna of West Africa", "languages": [{"key": "/languages/eng"}], "subjects": ["Anura -- Africa, West.", "Amphibians -- Africa, West."], "publish_country": "gw ", "series": ["Edition Chimaira ;", "7", "Edition Chimaira (Series) ;", "7."], "by_statement": "Mark-Oliver Ro\u0308del.", "type": {"key": "/type/edition"}, "publishers": ["Chimaira"], "key": "/books/OL110210M", "authors": [{"key": "/authors/OL73808A"}], "publish_places": ["Frankfurt am Main"], "pagination": "v. <1 > :", "lccn": ["99229644"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (v. 1, p. [291]-325).\nTranslation and enlarged version of a 1 volume work published in 1996.\n\"With an audio-CD containing frog calls of 24 species and 4 frog choruses compiled and presented by T. Ulmar Grafe.\""}, "isbn_10": ["393061216X"], "publish_date": "2000", "work_title": ["Amphibien der westafrikanischen savanne."], "works": [{"key": "/works/OL851936W"}], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-02T10:53:21.159029"}}
+/type/edition /books/OL11021281M 6 2011-04-27T20:08:22.799489 {"publishers": ["Gallopade International"], "identifiers": {"goodreads": ["5832874"]}, "covers": [5090330], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T20:08:22.799489"}, "latest_revision": 6, "key": "/books/OL11021281M", "authors": [{"key": "/authors/OL529549A"}, {"key": "/authors/OL2741989A"}], "subjects": ["People & Places - United States", "History - General", "Juvenile Nonfiction", "Children's Books/Ages 4-8 Nonfiction", "Children: Grades 3-4"], "languages": [{"key": "/languages/eng"}], "title": "New York Jography (The New York Experience)", "number_of_pages": 32, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780635001627"], "isbn_10": ["0635001624"], "publish_date": "September 2000", "oclc_numbers": ["461634143"], "works": [{"key": "/works/OL14953007W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL11021292M 3 2010-04-13T06:22:48.040664 {"publishers": ["Gallopade International"], "key": "/books/OL11021292M", "languages": [{"key": "/languages/eng"}], "title": "Let's Discover Ohio Lab Pack", "isbn_13": ["9780635001757"], "covers": [5090379], "physical_format": "Unknown Binding", "isbn_10": ["0635001756"], "publish_date": "September 2001", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:22:48.040664"}, "authors": [{"key": "/authors/OL529549A"}], "latest_revision": 3, "works": [{"key": "/works/OL3247645W"}], "type": {"key": "/type/edition"}, "subjects": ["Study Aids - Test Preparation"], "revision": 3}
+/type/edition /books/OL11021429M 3 2010-04-13T06:22:48.040664 {"publishers": ["Gallopade International"], "weight": "0.8 ounces", "isbn_10": ["0635003570"], "covers": [5091249], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:22:48.040664"}, "latest_revision": 3, "key": "/books/OL11021429M", "authors": [{"key": "/authors/OL529549A"}, {"key": "/authors/OL2741990A"}], "edition_name": "Activity edition", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 12, "isbn_13": ["9780635003577"], "languages": [{"key": "/languages/eng"}], "subjects": ["Readers - Beginner", "Activity Books - General", "Biography & Autobiography - Historical", "Juvenile Nonfiction", "Children: Kindergarten"], "publish_date": "September 2001", "title": "- Betsy Ross (The Virginia Experience)", "works": [{"key": "/works/OL14952685W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.1 x 5.1 x 0.1 inches", "revision": 3}
+/type/edition /books/OL11021478M 5 2011-04-29T05:50:37.491052 {"publishers": ["Gallopade Intl"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T05:50:37.491052"}, "title": "Georgia O'Keeffe (The Wisconsin Experience)", "identifiers": {"goodreads": ["1244236"]}, "isbn_13": ["9780635004222"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0635004224"], "publish_date": "November 15, 2001", "key": "/books/OL11021478M", "authors": [{"key": "/authors/OL529549A"}, {"key": "/authors/OL3233180A"}], "latest_revision": 5, "oclc_numbers": ["228128380"], "works": [{"key": "/works/OL14952810W"}], "type": {"key": "/type/edition"}, "subjects": ["United States - General", "History", "History: American"], "revision": 5}
+/type/edition /books/OL11021660M 2 2009-12-15T00:57:32.763683 {"physical_format": "Unknown Binding", "title": "Pass the Test! 4th Grade Lab Pack", "isbn_10": ["0635006405"], "publishers": ["Gallopade International"], "isbn_13": ["9780635006400"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:57:32.763683"}, "publish_date": "September 2001", "key": "/books/OL11021660M", "authors": [{"key": "/authors/OL529549A"}], "latest_revision": 2, "subjects": ["Study Aids - Test Preparation"], "works": [{"key": "/works/OL3248679W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL11022313M 4 2011-04-27T07:43:55.325002 {"publishers": ["Gallopade International"], "weight": "4 ounces", "covers": [5090930], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T07:43:55.325002"}, "latest_revision": 4, "key": "/books/OL11022313M", "authors": [{"key": "/authors/OL529549A"}], "subjects": ["People & Places - United States - Native American", "Juvenile Nonfiction", "Children's Books/Ages 9-12 People & Places", "Children: Grades 4-6"], "languages": [{"key": "/languages/eng"}], "title": "Minnesota Native Americans (Native American Heritage)", "number_of_pages": 36, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780635022905"], "isbn_10": ["0635022907"], "publish_date": "April 30, 2004", "oclc_numbers": ["149568410"], "works": [{"key": "/works/OL3247982W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.9 x 8.4 x 0.3 inches", "revision": 4}
+/type/edition /books/OL11022322M 4 2010-12-02T23:20:36.565443 {"publishers": ["Gallopade International"], "number_of_pages": 36, "weight": "12.3 ounces", "covers": [5090521], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-12-02T23:20:36.565443"}, "latest_revision": 4, "key": "/books/OL11022322M", "authors": [{"key": "/authors/OL529549A"}], "subjects": ["People & Places - United States - Native American"], "isbn_13": ["9780635023018"], "classifications": {}, "title": "Nevada Indians", "identifiers": {}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0635023016"], "publish_date": "April 2004", "works": [{"key": "/works/OL3248300W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "11 x 8.5 x 0.6 inches", "revision": 4}
+/type/edition /books/OL11022783M 1 2008-04-30T09:38:13.731961 {"physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Maskew Miller Longman (Pty) Ltd"], "title": "Brighter English: Standard 2 (First Language: Brighter English)", "isbn_13": ["9780636003057"], "isbn_10": ["0636003051"], "key": "/books/OL11022783M", "authors": [{"key": "/authors/OL3292611A"}, {"key": "/authors/OL2751103A"}], "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL11022789M 1 2008-04-30T09:38:13.731961 {"physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Maskew Miller Longman (Pty) Ltd"], "title": "Understanding Science: Standard 7 (Science: Understanding Science)", "isbn_13": ["9780636003156"], "isbn_10": ["0636003159"], "key": "/books/OL11022789M", "authors": [{"key": "/authors/OL2769658A"}, {"key": "/authors/OL2691960A"}], "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL11022793M 2 2009-12-15T00:57:32.763683 {"publishers": ["Maskew Miller Longman (Pty) Ltd"], "title": "Rekeningkunde Vir: Gr 9/std 7 (Accounting: Accounting / Rekeningkunde)", "isbn_10": ["063600323X"], "isbn_13": ["9780636003231"], "physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:57:32.763683"}, "latest_revision": 2, "key": "/books/OL11022793M", "authors": [{"key": "/authors/OL3528087A"}], "subjects": ["Accounting"], "works": [{"key": "/works/OL9520891W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL1102299M 4 2020-11-18T11:06:33.373317 {"publishers": ["Fairmont Press", "Distributed by PTR Prentice Hall"], "number_of_pages": 171, "isbn_10": ["0881731757", "0131911570"], "lc_classifications": ["TK3144 .P33 1994"], "latest_revision": 4, "key": "/books/OL1102299M", "authors": [{"key": "/authors/OL55387A"}], "publish_places": ["Lilburn, GA", "Englewood Cliffs, NJ"], "contributions": ["Smalling, Kenneth D., 1927-"], "pagination": "viii, 171 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:136848302:811"], "title": "High voltage power equipment engineering", "dewey_decimal_class": ["621.319"], "notes": {"type": "/type/text", "value": "Includes index."}, "identifiers": {"goodreads": ["4834000", "4831169"]}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["94027238"], "subjects": ["Electric power distribution -- High tension.", "Electric power systems -- Protection."], "publish_date": "1994", "publish_country": "gau", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T11:06:33.373317"}, "by_statement": "Anthony J. Pansini, Kenneth D. Smalling.", "works": [{"key": "/works/OL700949W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL11023419M 3 2011-06-08T03:30:57.418716 {"publishers": ["Maskew Miller Longman (Pty) Ltd"], "last_modified": {"type": "/type/datetime", "value": "2011-06-08T03:30:57.418716"}, "title": "Mathematics: N1 (Mathematics: MML Technical Series)", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780636016361"], "physical_format": "Unknown Binding", "isbn_10": ["0636016366"], "latest_revision": 3, "key": "/books/OL11023419M", "authors": [{"key": "/authors/OL2674179A"}], "oclc_numbers": ["85919058"], "works": [{"key": "/works/OL8027906W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL11023475M 5 2011-04-30T00:42:47.008797 {"publishers": ["Maskew Miller Longman Pty.Ltd ,South Africa"], "last_modified": {"type": "/type/datetime", "value": "2011-04-30T00:42:47.008797"}, "title": "Sunny Day Readers (Second Language: Sunny Day Readers)", "identifiers": {"goodreads": ["5064908"]}, "isbn_13": ["9780636017641"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Unknown Binding", "isbn_10": ["0636017648"], "latest_revision": 5, "key": "/books/OL11023475M", "authors": [{"key": "/authors/OL3528275A"}], "oclc_numbers": ["123793443"], "works": [{"key": "/works/OL9521064W"}], "type": {"key": "/type/edition"}, "subjects": ["ELT graded readers", "Dutch"], "revision": 5}
+/type/edition /books/OL11023489M 1 2008-04-30T09:38:13.731961 {"physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Maskew Miller Longman (Pty) Ltd"], "title": "IsiSekelo: Std 1 (IsiZulu: IsiSekelo)", "isbn_13": ["9780636017788"], "isbn_10": ["0636017788"], "key": "/books/OL11023489M", "authors": [{"key": "/authors/OL3376856A"}, {"key": "/authors/OL3528248A"}, {"key": "/authors/OL3528277A"}], "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL11023629M 3 2011-04-26T22:15:42.386210 {"publishers": ["Maskew Miller Longman Pty.Ltd ,South Africa"], "last_modified": {"type": "/type/datetime", "value": "2011-04-26T22:15:42.386210"}, "title": "Story Books (The Prep Series: a Multilingual Reading & Writing Series (for English, Afrikaans, IsiXhosa, IsiZulu, Sepedi, Setswana, XiTsonga, Siswati, Sesotho, IsiNdebele & Tshivenda))", "number_of_pages": 16, "isbn_13": ["9780636021068"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0636021068"], "publish_date": "October 31, 1995", "key": "/books/OL11023629M", "authors": [{"key": "/authors/OL3528330A"}], "latest_revision": 3, "oclc_numbers": ["122279275"], "works": [{"key": "/works/OL9521111W"}], "type": {"key": "/type/edition"}, "subjects": ["English language readers", "English language: specific skills", "Dutch"], "revision": 3}
+/type/edition /books/OL1102362M 13 2021-02-22T04:54:57.325728 {"publishers": ["Random House"], "identifiers": {"librarything": ["175178"], "goodreads": ["1984002"]}, "subtitle": "hard luck and good times in America", "isbn_10": ["0679430261"], "subject_place": ["United States."], "dewey_decimal_class": ["813/.54", "B"], "covers": [4653670, 3881673], "lc_classifications": ["PS3569.E33 Z464 1995"], "key": "/books/OL1102362M", "authors": [{"key": "/authors/OL21057A"}], "publish_places": ["New York"], "subjects": ["See, Carolyn -- Family", "Novelists, American -- 20th century -- Family relationships", "Substance abuse -- United States", "Family -- United States"], "subject_time": ["20th century"], "pagination": "xxii, 343 p. :", "uri_descriptions": ["Publisher description"], "source_records": ["marc:marc_records_scriblio_net/part24.dat:62402905:858", "marc:marc_cca/b10621386.out:28828016:861", "marc:marc_loc_updates/v37.i27.records.utf8:24420735:860", "marc:marc_openlibraries_sanfranciscopubliclibrary/sfpl_chq_2018_12_24_run02.mrc:104866438:1687", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:136902030:860", "ia:dreaminghardluck0000seec"], "title": "Dreaming", "url": ["http://www.loc.gov/catdir/description/random0412/94027303.html"], "number_of_pages": 343, "languages": [{"key": "/languages/eng"}], "lccn": ["94027303"], "local_id": ["urn:sfpl:31223047123832", "urn:sfpl:31223046136835"], "publish_date": "1995", "publish_country": "nyu", "by_statement": "Carolyn See.", "works": [{"key": "/works/OL14862126W"}], "type": {"key": "/type/edition"}, "uris": ["http://www.loc.gov/catdir/description/random0412/94027303.html"], "ocaid": "dreaminghardluck0000seec", "latest_revision": 13, "revision": 13, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2021-02-22T04:54:57.325728"}}
+/type/edition /books/OL11023898M 2 2011-04-25T14:19:19.075949 {"publishers": ["Maskew Miller Longman Pty.Ltd ,South Africa"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-25T14:19:19.075949"}, "title": "Pulamadiboho (Sesotho: Pulamadiboho - Thuto Ya Puo Ya Sesotho)", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780636025288"], "isbn_10": ["0636025284"], "publish_date": "January 31, 2002", "key": "/books/OL11023898M", "authors": [{"key": "/authors/OL3528401A"}, {"key": "/authors/OL3528402A"}], "latest_revision": 2, "oclc_numbers": ["54695121"], "type": {"key": "/type/edition"}, "subjects": ["Modern languages (ie other than English)", "Dutch"], "revision": 2}
+/type/edition /books/OL11024753M 1 2008-04-30T09:38:13.731961 {"physical_format": "Unknown Binding", "subtitle": "Teacher's Pack (MASKEW/PREP)", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Maskew Miller Longman Pty.Ltd ,South Africa"], "title": "Prep Series", "isbn_13": ["9780636042186"], "isbn_10": ["0636042189"], "key": "/books/OL11024753M", "type": {"key": "/type/edition"}, "subjects": ["English (ie as school subject)", "English Language Teaching (ELT)"], "revision": 1}
+/type/edition /books/OL11024849M 2 2011-04-26T21:46:13.546350 {"publishers": ["Maskew Miller Longman (Pty) Ltd"], "physical_format": "Unknown Binding", "subtitle": "Gr 4 Learner's Book Curriculum 2005 (MASKEW/MATUM)", "last_modified": {"type": "/type/datetime", "value": "2011-04-26T21:46:13.546350"}, "title": "Understanding Mathematics", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780636043305"], "isbn_10": ["0636043304"], "latest_revision": 2, "key": "/books/OL11024849M", "authors": [{"key": "/authors/OL3528219A"}, {"key": "/authors/OL3528547A"}, {"key": "/authors/OL2616768A"}], "oclc_numbers": ["44996419"], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL11024860M 4 2010-04-24T18:13:04.600301 {"publishers": ["Maskew Miller Longman (Pty) Ltd"], "subtitle": "Gr 8;Cur 2005 (Communicating Today)", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:13:04.600301"}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "identifiers": {"goodreads": ["3051563"]}, "isbn_13": ["9780636043411"], "physical_format": "Unknown Binding", "isbn_10": ["063604341X"], "latest_revision": 4, "key": "/books/OL11024860M", "authors": [{"key": "/authors/OL2162098A"}, {"key": "/authors/OL3528293A"}, {"key": "/authors/OL3414754A"}, {"key": "/authors/OL2621744A"}], "title": "Communicating Today", "subjects": ["ELT: specific skills"], "works": [{"key": "/works/OL14947841W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL11024970M 4 2010-04-24T18:13:04.600301 {"publishers": ["Maskew Miller Longman (Pty) Ltd"], "number_of_pages": 120, "subtitle": "Gr 12 SG (Real Results)", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:13:04.600301"}, "title": "Mathematics", "identifiers": {"goodreads": ["5245556"]}, "isbn_13": ["9780636048867"], "covers": [2546374], "physical_format": "Paperback", "isbn_10": ["0636048861"], "publish_date": "December 31, 2001", "key": "/books/OL11024970M", "authors": [{"key": "/authors/OL3528575A"}, {"key": "/authors/OL3528576A"}], "latest_revision": 4, "subjects": ["Mathematics"], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL11024973M 4 2011-06-08T03:30:57.418716 {"publishers": ["Maskew Miller Longman Pty.Ltd ,South Africa"], "physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2011-06-08T03:30:57.418716"}, "title": "Mbili's Story (Stars of Africa)", "identifiers": {"goodreads": ["3383248"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780636048942"], "isbn_10": ["0636048942"], "publish_date": "January 31, 2002", "key": "/books/OL11024973M", "authors": [{"key": "/authors/OL3528577A"}, {"key": "/authors/OL3528578A"}], "latest_revision": 4, "oclc_numbers": ["51335597"], "type": {"key": "/type/edition"}, "subjects": ["English language: reading skills"], "revision": 4}
+/type/edition /books/OL11025174M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["HarperCollins Publishers"], "title": "Healthy Child, Whole Child (the Best of Conventional and Alternative Medicine to Keep Your Kids Healthy)", "isbn_13": ["9780641591730"], "isbn_10": ["064159173X"], "publish_date": "2001", "key": "/books/OL11025174M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL11025317M 4 2010-04-24T18:13:04.600301 {"publishers": ["Australian Government Publishing Service"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:13:04.600301"}, "title": "Eucalyptus Buds & Fruits", "identifiers": {"goodreads": ["6198379"]}, "isbn_13": ["9780642060211"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0642060215"], "publish_date": "December 1984", "key": "/books/OL11025317M", "authors": [{"key": "/authors/OL2661779A"}], "latest_revision": 4, "works": [{"key": "/works/OL7995922W"}], "type": {"key": "/type/edition"}, "subjects": ["Plants - General", "Nature / Field Guide Books"], "revision": 4}
+/type/edition /books/OL1102544M 12 2022-12-08T08:35:10.618917 {"publishers": ["State University of New York Press"], "number_of_pages": 334, "subtitle": "a management perspective", "isbn_10": ["0791424952", "0791424960"], "series": ["SUNY series in international management"], "covers": [4667771, 3881354, 1491019], "lc_classifications": ["HD30.3 .C637 1995", "HD30.3.C637 1995"], "key": "/books/OL1102544M", "ocaid": "communicatingorg0000unse", "publish_places": ["Albany"], "contributions": ["Cushman, Donald P.", "King, Sarah Sanderson, 1932-"], "pagination": "viii, 334 p. ;", "source_records": ["ia:communicatingorg0000unse", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:137063666:948", "ia:communicatingorg0000unse_x2x0", "bwb:9780791424957", "bwb:9780791424964", "promise:bwb_daily_pallets_2022-09-12", "promise:bwb_daily_pallets_2021-06-03"], "title": "Communicating organizational change", "dewey_decimal_class": ["658.4/5"], "notes": {"type": "/type/text", "value": "Includes bibliographical references and index."}, "identifiers": {"goodreads": ["4380567", "895391"], "librarything": ["4801054"]}, "languages": [{"key": "/languages/eng"}], "lccn": ["94027492"], "subjects": ["Communication in management.", "Organizational change.", "Communication in organizations."], "publish_date": "1995", "publish_country": "nyu", "by_statement": "edited by Donald Peter Cushman and Sarah Sanderson King.", "works": [{"key": "/works/OL3275606W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:W7-DBQ-577", "urn:bwbsku:P7-BJR-103"], "latest_revision": 12, "revision": 12, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-08T08:35:10.618917"}}
+/type/edition /books/OL11025973M 2 2010-04-29T01:52:53.373926 {"publishers": ["Australian Government Publishing Service"], "physical_format": "Hardcover", "subtitle": "Archostemata Myxophaga and Adephaga (Zoological Catalogue of Australia, Vol. 4)", "title": "Zoological Catalogue of Australia Vol. 4: Coleoptera", "isbn_10": ["0644048964"], "number_of_pages": 452, "isbn_13": ["9780644048965"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2010-04-29T01:52:53.373926"}, "publish_date": "December 1987", "key": "/books/OL11025973M", "authors": [{"key": "/authors/OL3045507A"}, {"key": "/authors/OL81248A"}], "latest_revision": 2, "works": [{"key": "/works/OL15097171W"}], "type": {"key": "/type/edition"}, "subjects": ["Life Sciences - Zoology - General", "Science"], "revision": 2}
+/type/edition /books/OL11026015M 3 2009-12-15T00:57:35.902057 {"physical_format": "Unknown Binding", "title": "Hydrogeology of Australia, 1987 (Bulletin / Department of Resources and Energy, Bureau of Mineral Resources, Geology, and Geophysics)", "isbn_10": ["0644066482"], "publishers": ["Australian Water Resources Council"], "isbn_13": ["9780644066488"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:57:35.902057"}, "publish_date": "1987", "key": "/books/OL11026015M", "authors": [{"key": "/authors/OL903142A"}], "latest_revision": 3, "works": [{"key": "/works/OL4507857W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL11026281M 2 2011-04-30T00:42:47.008797 {"publishers": ["Australian Govt Pub Service"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2011-04-30T00:42:47.008797"}, "title": "Industrial Relations Regulations (Official Consolidations)", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780644348607"], "physical_format": "Paperback", "isbn_10": ["0644348607"], "publish_date": "October 1995", "key": "/books/OL11026281M", "latest_revision": 2, "oclc_numbers": ["221509073"], "type": {"key": "/type/edition"}, "subjects": ["Reference"], "revision": 2}
+/type/edition /books/OL1102628M 7 2020-11-18T11:10:03.378023 {"publishers": ["Duxbury Press"], "identifiers": {"goodreads": ["3697443"], "librarything": ["437651"]}, "isbn_10": ["0534234429"], "covers": [1273458], "lc_classifications": ["QA276.4 .E44 1995"], "latest_revision": 7, "key": "/books/OL1102628M", "authors": [{"key": "/authors/OL29415A"}], "ocaid": "learningsasincom0000elli", "publish_places": ["Belmont, [Calif.]"], "pagination": "x, 175 p. :", "source_records": ["marc:marc_records_scriblio_net/part24.dat:62637214:625", "ia:learningsasincom0000elli", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:137135496:944"], "title": "Learning SAS in the computer lab", "dewey_decimal_class": ["519.5/078"], "notes": {"type": "/type/text", "value": "Includes index."}, "number_of_pages": 175, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["94027582"], "subjects": ["SAS (Computer file)", "Statistics -- Data processing"], "publish_date": "1995", "publish_country": "cau", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T11:10:03.378023"}, "by_statement": "Rebecca J. Elliott.", "works": [{"key": "/works/OL102037W"}], "type": {"key": "/type/edition"}, "revision": 7}
+/type/edition /books/OL11026417M 2 2009-12-15T00:57:35.902057 {"publishers": ["Australasian Pig Science Assoc"], "key": "/books/OL11026417M", "title": "Manipulating Pig Production III Proceedi", "isbn_13": ["9780646066554"], "physical_format": "Hardcover", "isbn_10": ["0646066552"], "publish_date": "January 1, 1991", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:57:35.902057"}, "authors": [{"key": "/authors/OL3529181A"}], "latest_revision": 2, "works": [{"key": "/works/OL9521733W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL11027102M 2 2011-04-30T11:30:23.469611 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-30T11:30:23.469611"}, "latest_revision": 2, "key": "/books/OL11027102M", "title": "Spiritual Intelligence", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780646431499"], "isbn_10": ["0646431498"], "oclc_numbers": ["224032241"], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL11027127M 2 2011-04-27T19:39:09.874220 {"publishers": ["Citymoments"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T19:39:09.874220"}, "title": "Uncensored Scenes", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780646445977"], "isbn_10": ["0646445979"], "publish_date": "2005", "key": "/books/OL11027127M", "latest_revision": 2, "oclc_numbers": ["224140704"], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL11027472M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Canadian Government Publishing"], "number_of_pages": 83, "isbn_13": ["9780660129525"], "isbn_10": ["0660129523"], "publish_date": "January 2003", "key": "/books/OL11027472M", "title": "Vowel Dimensions", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL11027498M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "weight": "1.9 pounds", "publishers": ["Intl Specialized Book Service Inc"], "title": "Public Accounts of Canada/Part One", "isbn_13": ["9780660133362"], "isbn_10": ["0660133369"], "publish_date": "June 1990", "key": "/books/OL11027498M", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "type": {"key": "/type/edition"}, "subjects": ["History: World"], "physical_dimensions": "10.5 x 8.2 x 1 inches", "revision": 1}
+/type/edition /books/OL11027715M 4 2019-04-04T02:19:35.537178 {"publishers": ["Environment Canada"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2019-04-04T02:19:35.537178"}, "source_records": ["marc:marc_university_of_toronto/uoft.marc:2792643389:822", "marc:talis_openlibrary_contribution/talis-openlibrary-contribution.mrc:644812949:1166"], "title": "Great Lakes Climatological Atlas", "number_of_pages": 145, "isbn_13": ["9780660532110"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0660532115"], "publish_date": "January 1986", "key": "/books/OL11027715M", "authors": [{"key": "/authors/OL3529737A"}], "latest_revision": 4, "works": [{"key": "/works/OL9522295W"}], "type": {"key": "/type/edition"}, "subjects": ["Atlases - World", "Reference"], "revision": 4}
+/type/edition /books/OL11027906M 3 2022-11-15T00:21:02.861160 {"physical_format": "Unknown Binding", "subtitle": "An interactive program to handle page layout for documentation of computer files printed on-line at remote terminals (NHRI paper)", "publishers": ["National Hydrology Research Institute, Inland Waters Directorate"], "isbn_10": ["0662116429"], "number_of_pages": 69, "isbn_13": ["9780662116424"], "languages": [{"key": "/languages/eng"}], "publish_date": "1980", "key": "/books/OL11027906M", "authors": [{"key": "/authors/OL3529787A"}], "title": "Program LAYOUT", "subjects": ["Computer programs", "Hydrology"], "works": [{"key": "/works/OL9522360W"}], "type": {"key": "/type/edition"}, "source_records": ["amazon:0662116429"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-15T00:21:02.861160"}}
+/type/edition /books/OL11028387M 4 2011-01-24T19:44:58.441989 {"publishers": ["Ginn"], "physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2011-01-24T19:44:58.441989"}, "latest_revision": 4, "key": "/books/OL11028387M", "authors": [{"key": "/authors/OL462947A"}], "subjects": ["Politics and government", "United States"], "edition_name": "revised edition", "languages": [{"key": "/languages/eng"}], "classifications": {}, "title": "Teacher's guide to American political behavior", "notes": {"type": "/type/text", "value": "revised edition"}, "identifiers": {}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780663337262"], "isbn_10": ["0663337267"], "publish_date": "1977", "works": [{"key": "/works/OL3011483W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL1102866M 10 2020-11-18T11:12:32.194212 {"publishers": ["Regnery Pub.", "Distributed to the trade by National Book Network"], "identifiers": {"librarything": ["430863"], "goodreads": ["2370921"]}, "isbn_10": ["0895265141"], "subject_place": ["United States"], "covers": [693804], "lc_classifications": ["E877.2 .H35 1994", "E877.2H36 1994"], "latest_revision": 10, "key": "/books/OL1102866M", "authors": [{"key": "/authors/OL584282A"}], "ocaid": "isbn_9780895265142", "publish_places": ["Washington, D.C", "Lanham, MD"], "contributions": ["Hannaford, Peter.", "Hobbs, Charles D."], "subject_time": ["1981-1989"], "pagination": "157 p. :", "source_records": ["ia:isbn_9780895265142", "bwb:9780895265142", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:137346689:911"], "title": "Remembering Reagan", "dewey_decimal_class": ["973.927"], "number_of_pages": 157, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["94027830"], "subjects": ["Reagan, Ronald -- Pictorial works.", "United States -- Politics and government -- 1981-1989 -- Pictorial works."], "publish_date": "1994", "publish_country": "dcu", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T11:12:32.194212"}, "by_statement": "Peter Hannaford and Charles D. Hobbs.", "oclc_numbers": ["30779165"], "works": [{"key": "/works/OL3497576W"}], "type": {"key": "/type/edition"}, "revision": 10}
+/type/edition /books/OL11028711M 4 2011-04-25T20:15:28.271589 {"publishers": ["Silver Burdett And Ginn"], "last_modified": {"type": "/type/datetime", "value": "2011-04-25T20:15:28.271589"}, "title": "World of Reading - Skills Practice - Graden Gates - Level 6", "identifiers": {"goodreads": ["7185949"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0663475406"], "publish_date": "1989", "key": "/books/OL11028711M", "authors": [{"key": "/authors/OL3498646A"}], "latest_revision": 4, "oclc_numbers": ["21096565"], "works": [{"key": "/works/OL9483405W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL11028788M 4 2022-12-08T15:07:52.616594 {"publishers": ["Silver Burdett Ginn Religion"], "physical_format": "Hardcover", "weight": "3 pounds", "title": "Dream Chasers Level 11 World Of Reading 1991", "identifiers": {"librarything": ["9099213"]}, "isbn_13": ["9780663522477"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0663522471"], "publish_date": "June 1991", "key": "/books/OL11028788M", "type": {"key": "/type/edition"}, "subjects": ["Children: Grades 4-6"], "physical_dimensions": "10.5 x 8.2 x 1 inches", "works": [{"key": "/works/OL31538217W"}], "local_id": ["urn:bwbsku:W7-AEJ-267", "urn:bwbsku:T1-BBA-006"], "source_records": ["promise:bwb_daily_pallets_2022-03-17", "promise:bwb_daily_pallets_2021-04-07"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-08T15:07:52.616594"}}
+/type/edition /books/OL11029732M 2 2009-12-15T00:57:38.687826 {"publishers": ["Arco"], "key": "/books/OL11029732M", "title": "Battalion Deputy Chief Fire DP", "isbn_13": ["9780668020640"], "physical_format": "Hardcover", "isbn_10": ["0668020644"], "publish_date": "January 1, 1900", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:57:38.687826"}, "authors": [{"key": "/authors/OL2743111A"}], "latest_revision": 2, "works": [{"key": "/works/OL8242776W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL11029769M 6 2011-04-28T08:20:08.064247 {"publishers": ["Arco Pub"], "identifiers": {"librarything": ["5877077"], "goodreads": ["5936615"]}, "last_modified": {"type": "/type/datetime", "value": "2011-04-28T08:20:08.064247"}, "languages": [{"key": "/languages/eng"}], "number_of_pages": 254, "isbn_13": ["9780668026055"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Hardcover", "isbn_10": ["0668026057"], "publish_date": "September 1973", "key": "/books/OL11029769M", "authors": [{"key": "/authors/OL3530293A"}], "title": "School for Young Riders", "oclc_numbers": ["262379"], "works": [{"key": "/works/OL9522901W"}], "type": {"key": "/type/edition"}, "latest_revision": 6, "revision": 6}
+/type/edition /books/OL11030017M 2 2009-12-15T00:57:38.687826 {"physical_format": "Paperback", "title": "Gre at a Glance", "isbn_10": ["0668063602"], "publishers": ["Arco Pub"], "isbn_13": ["9780668063609"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:57:38.687826"}, "publish_date": "November 1985", "key": "/books/OL11030017M", "authors": [{"key": "/authors/OL1121593A"}], "latest_revision": 2, "subjects": ["Graduate Record Examination", "Study guides"], "works": [{"key": "/works/OL5095081W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL11031096M 2 2009-12-15T00:57:38.687826 {"physical_format": "Hardcover", "subtitle": "United States", "publishers": ["Macmillan Publishing Company"], "isbn_10": ["0783817630"], "contributions": ["Willey (Illustrator)", "Susan Varley (Illustrator)"], "title": "Bibliographic Guide to Government Publications, 1996", "isbn_13": ["9780783817637"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:57:38.687826"}, "publish_date": "October 1997", "key": "/books/OL11031096M", "authors": [{"key": "/authors/OL3353101A"}], "latest_revision": 2, "subjects": ["General", "Reference"], "works": [{"key": "/works/OL9302853W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL11031236M 3 2021-08-24T04:44:41.366720 {"publishers": ["Macmillan Library Reference"], "physical_format": "Hardcover", "title": "Bibliographic Guide to Music 1994 (Bibliographic Guide to Music)", "isbn_10": ["078382193X"], "number_of_pages": 800, "isbn_13": ["9780783821931"], "languages": [{"key": "/languages/eng"}], "publish_date": "March 1995", "key": "/books/OL11031236M", "authors": [{"key": "/authors/OL79856A"}, {"key": "/authors/OL19454A"}], "subjects": ["Bibliographies, catalogues, discographies", "Music", "Yearbooks, annuals, almanacs", "USA"], "works": [{"key": "/works/OL14930931W"}], "type": {"key": "/type/edition"}, "covers": [11767392], "ocaid": "bibliographicgui0000unse_q5y7", "source_records": ["ia:bibliographicgui0000unse_q5y7"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-08-24T04:44:41.366720"}}
+/type/edition /books/OL11031249M 2 2009-12-15T00:57:40.737923 {"publishers": ["G K Hall & Co,US"], "weight": "3.7 ounces", "title": "Smithsonian on Disc", "isbn_10": ["078382209X"], "isbn_13": ["9780783822099"], "physical_format": "3.5\" disk", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:57:40.737923"}, "publish_date": "September 9, 1996", "key": "/books/OL11031249M", "authors": [{"key": "/authors/OL2884094A"}], "latest_revision": 2, "subjects": ["Bibliographies, catalogues, discographies", "Libraries & information centres"], "works": [{"key": "/works/OL8587406W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL11031616M 7 2020-08-03T04:03:51.427329 {"publishers": ["American Society of Civil Engineers"], "identifiers": {"goodreads": ["4912859"]}, "weight": "9.6 ounces", "isbn_10": ["0784405484"], "covers": [5362133, 5091732], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2020-08-03T04:03:51.427329"}, "latest_revision": 7, "key": "/books/OL11031616M", "authors": [{"key": "/authors/OL2864120A"}], "isbn_13": ["9780784405482"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part01.utf8:36869598:1023"], "title": "Standard Guidelines for Artificial Recharge of Ground Water", "lccn": ["00054310"], "number_of_pages": 120, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "subjects": ["Water supply & treatment", "Groundwater Pollution", "Technology & Engineering", "Technology & Industrial Arts", "Science/Mathematics", "Hydraulics", "Environmental - General", "Artificial groundwater recharge", "Artificial recharge of groundw"], "publish_date": "February 1, 2001", "works": [{"key": "/works/OL8547201W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.6 x 8.2 x 0.3 inches", "revision": 7}
+/type/edition /books/OL11031769M 12 2023-01-10T21:07:28.988566 {"publishers": ["American Society of Civil Engineers"], "identifiers": {"goodreads": ["1169358"]}, "weight": "1 pounds", "covers": [2625716], "physical_format": "Paperback", "key": "/books/OL11031769M", "contributions": ["Alok Bhandari (Editor)", "Rao Y. Surampalli (Editor)", "Pascale Champagne (Editor)", "Say Kee Ong (Editor)", "R. D. Tyagi (Editor)"], "subjects": ["Soil & rock mechanics", "Science / Technology", "General", "Technology", "Groundwater", "Purification", "Soil remediation", "Science/Mathematics"], "isbn_13": ["9780784408940"], "source_records": ["amazon:0784408947", "marc:marc_loc_updates/v35.i13.records.utf8:18042387:1249", "marc:marc_loc_updates/v35.i17.records.utf8:10837508:1353", "marc:marc_loc_updates/v35.i26.records.utf8:10686390:1353", "marc:marc_loc_2016/BooksAll.2016.part34.utf8:102267829:1353", "marc:marc_columbia/Columbia-extract-20221130-025.mrc:119999595:4955", "marc:marc_columbia/Columbia-extract-20221130-013.mrc:175744605:2255", "promise:bwb_daily_pallets_2023-01-04"], "title": "Remediation Technologies for Soils and Groundwater", "number_of_pages": 456, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0784408947"], "publish_date": "March 15, 2007", "works": [{"key": "/works/OL18753956W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.4 x 5.5 x 1.1 inches", "lccn": ["2007001848"], "lc_classifications": ["TD878 .R47 2007", "TD878 .R47 2007eb"], "oclc_numbers": ["704517450", "80358667"], "local_id": ["urn:bwbsku:P8-BIA-708"], "latest_revision": 12, "revision": 12, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2023-01-10T21:07:28.988566"}}
+/type/edition /books/OL11031790M 5 2011-04-27T21:05:58.928607 {"publishers": ["American Society of Civil Engineers"], "weight": "3.2 ounces", "covers": [2625736], "edition_name": "Cdr edition", "physical_format": "CD-ROM", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T21:05:58.928607"}, "latest_revision": 5, "key": "/books/OL11031790M", "contributions": ["Jerry Dimaggio (Editor)", "Peter Osborn (Editor)"], "subjects": ["Soil & rock mechanics", "Science / Technology", "Agriculture - Agronomy - Soil Science", "Civil", "Technology & Engineering", "Science/Mathematics"], "isbn_13": ["9780784409404"], "title": "7th International Symposium on Field Measurements in Geomechanics", "identifiers": {"goodreads": ["7195239"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0784409404"], "publish_date": "September 14, 2007", "oclc_numbers": ["174264620"], "type": {"key": "/type/edition"}, "physical_dimensions": "5.6 x 4.9 x 0.4 inches", "revision": 5}
+/type/edition /books/OL11032684M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Standard Publishing Company"], "title": "Middle Elementary Teacher Book (Heartshaper)", "isbn_13": ["9780784759981"], "isbn_10": ["0784759987"], "publish_date": "March 2006", "key": "/books/OL11032684M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL11032955M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Standard Publishing Company"], "title": "4's and 5's Audio/Visuals", "isbn_13": ["9780784764398"], "isbn_10": ["0784764395"], "publish_date": "April 2004", "key": "/books/OL11032955M", "type": {"key": "/type/edition"}, "subjects": ["Christian Education - General", "Religion - Christian Education - Teaching Helps / Programs"], "revision": 1}
+/type/edition /books/OL11033560M 2 2009-12-15T00:57:40.737923 {"physical_format": "Hardcover", "title": "Math Blaster Pre-Algebra", "isbn_10": ["0784912572"], "publishers": ["Knowledge Adventure, Inc."], "isbn_13": ["9780784912577"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:57:40.737923"}, "publish_date": "January 1998", "key": "/books/OL11033560M", "authors": [{"key": "/authors/OL3530857A"}], "latest_revision": 2, "works": [{"key": "/works/OL9523582W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL11033628M 3 2022-12-17T19:02:26.203042 {"publishers": ["Marvel Enterprises"], "subtitle": "Tale of the Tuff Gong", "title": "Bob Marley", "isbn_10": ["0785101489"], "isbn_13": ["9780785101482"], "physical_format": "Paperback", "publish_date": "March 1992", "key": "/books/OL11033628M", "authors": [{"key": "/authors/OL2697698A"}], "subjects": ["Reference"], "works": [{"key": "/works/OL8100303W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780785101482"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T19:02:26.203042"}}
+/type/edition /books/OL11035124M 2 2022-12-10T10:19:02.301623 {"languages": [{"key": "/languages/eng"}], "physical_format": "Spiral-bound", "publishers": ["New Seasons"], "title": "Irish Wit and Wisdom, Daily Words of Wisdom and Blarney", "isbn_13": ["9780785338949"], "isbn_10": ["0785338942"], "publish_date": "2000", "key": "/books/OL11035124M", "type": {"key": "/type/edition"}, "works": [{"key": "/works/OL31976138W"}], "local_id": ["urn:bwbsku:o6-ega-762"], "source_records": ["promise:bwb_daily_pallets_2020-04-30"], "identifiers": {"amazon": [""]}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T10:19:02.301623"}}
+/type/edition /books/OL11036200M 5 2010-04-24T18:13:31.894098 {"publishers": ["Econo-Clad Books"], "languages": [{"key": "/languages/spa"}], "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:13:31.894098"}, "weight": "14.4 ounces", "title": "Tigresa/Tigress", "identifiers": {"goodreads": ["1474880"]}, "isbn_13": ["9780785722137"], "covers": [5092160], "physical_format": "Library Binding", "isbn_10": ["0785722130"], "publish_date": "October 1999", "key": "/books/OL11036200M", "authors": [{"key": "/authors/OL545655A"}], "latest_revision": 5, "works": [{"key": "/works/OL3358494W"}], "type": {"key": "/type/edition"}, "subjects": ["Nature & the Natural World - Ecology", "Nature & the Natural World - Environment", "Children's 4-8 - Picturebooks", "Fiction", "Spanish language", "Spanish language materials", "Tigers", "Wildlife refuges", "Children: Grades 2-3"], "physical_dimensions": "10.8 x 8.8 x 0.5 inches", "revision": 5}
+/type/edition /books/OL11036302M 2 2009-12-15T00:57:43.327937 {"physical_format": "Library Binding", "subtitle": "Visitors from Space", "title": "Comets and Meteors", "isbn_10": ["0785743235"], "publishers": ["Bt Bound"], "isbn_13": ["9780785743231"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:57:43.327937"}, "publish_date": "October 1999", "key": "/books/OL11036302M", "authors": [{"key": "/authors/OL461239A"}], "latest_revision": 2, "subjects": ["Science & Nature - Astronomy", "Juvenile Nonfiction", "Children: Grades 2-3"], "works": [{"key": "/works/OL3005103W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL11036461M 2 2009-12-15T00:58:05.983386 {"physical_format": "Library Binding", "languages": [{"key": "/languages/eng"}], "subtitle": "The Tragedy of the Uss Juneau", "publishers": ["Bt Bound"], "isbn_10": ["0785763619"], "title": "Left to Die", "isbn_13": ["9780785763611"], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:58:05.983386"}, "publish_date": "March 2001", "key": "/books/OL11036461M", "authors": [{"key": "/authors/OL404168A"}], "latest_revision": 2, "subjects": ["United States - General", "History", "History: American"], "works": [{"key": "/works/OL2753999W"}], "type": {"key": "/type/edition"}, "first_sentence": {"type": "/type/text", "value": "Eight months earlier, in March 1942, Capt. Swenson had realized his dream."}, "revision": 2}
+/type/edition /books/OL1103651M 9 2020-11-18T12:13:44.571772 {"publishers": ["Northern Illinois University Press"], "number_of_pages": 304, "subtitle": "selected writings by nineteenth-century American women abroad", "isbn_10": ["0875801951", "0875805612"], "subject_place": ["Foreign countries"], "covers": [4722374, 3881869, 1627320], "lc_classifications": ["PS648.T73 T45 1995", "PS648.T73T45 1995"], "latest_revision": 9, "key": "/books/OL1103651M", "publish_places": ["DeKalb"], "contributions": ["Schriber, Mary Suzanne, 1938-"], "subject_time": ["19th century.", "Women authors."], "pagination": "xxxi, 304 p. :", "source_records": ["bwb:9780875801957", "bwb:9780875805610", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:138059375:1205"], "title": "Telling travels", "dewey_decimal_class": ["818/.409355"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. [301]-304)."}, "identifiers": {"goodreads": ["3908061", "5659097"], "librarything": ["1188088"]}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["94028678"], "subjects": ["Travelers' writings, American.", "Americans -- Foreign countries -- History -- 19th century.", "American prose literature -- Women authors.", "American prose literature -- 19th century.", "Voyages and travels.", "Women travelers."], "publish_date": "1995", "publish_country": "ilu", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T12:13:44.571772"}, "by_statement": "edited by Mary Suzanne Schriber.", "works": [{"key": "/works/OL3358632W"}], "type": {"key": "/type/edition"}, "revision": 9}
+/type/edition /books/OL11036645M 5 2010-04-24T18:13:31.894098 {"publishers": ["Rebound by Sagebrush"], "languages": [{"key": "/languages/eng"}], "title": "Bob Dole (Great Achievers: Lives of the Physically Challenged)", "isbn_10": ["0785785094"], "identifiers": {"goodreads": ["6752536"]}, "isbn_13": ["9780785785095"], "covers": [2626874], "physical_format": "Library Binding", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:13:31.894098"}, "publish_date": "October 1999", "key": "/books/OL11036645M", "authors": [{"key": "/authors/OL445209A"}], "latest_revision": 5, "works": [{"key": "/works/OL2922250W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Children's 9-12", "Children's Books/Ages 9-12 Fiction", "1923-", "Biography", "Dole, Robert J.,", "Juvenile literature", "Legislators", "United States", "Children: Young Adult (Gr. 7-9)"], "revision": 5}
+/type/edition /books/OL1103714M 6 2022-09-17T20:15:31.603519 {"publishers": ["St. Martin's Press"], "number_of_pages": 352, "subtitle": "the Japanese in Tibet", "isbn_10": ["0312123981", "0312123981"], "subject_place": ["Tibet (China)", "China", "Tibet."], "lc_classifications": ["DS785 .B53 1995", "DS785.B53 1995"], "key": "/books/OL1103714M", "authors": [{"key": "/authors/OL584592A"}], "publish_places": ["New York"], "pagination": "xi, 352 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:138113337:840", "bwb:9780312123987"], "title": "Monks, spies, and a soldier of fortune", "dewey_decimal_class": ["951/.5"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. [339]-343) and index.\nMaps of Tibet, China, India on endpapers."}, "identifiers": {"goodreads": ["3803078"]}, "languages": [{"key": "/languages/eng"}], "lccn": ["94028744"], "subjects": ["Japanese -- China -- Tibet.", "Tibet (China) -- History."], "publish_date": "1995", "publish_country": "nyu", "by_statement": "Scott Berry.", "works": [{"key": "/works/OL3499412W"}], "type": {"key": "/type/edition"}, "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-17T20:15:31.603519"}}
+/type/edition /books/OL11037501M 5 2010-08-17T05:21:05.007644 {"publishers": ["French & European Pubns"], "physical_format": "Paperback", "weight": "9.6 ounces", "title": "Theatre Vol. 1 Rendre a Cesar/ la Petite Sirene/ le Dialogue Dans le Marecage", "identifiers": {"goodreads": ["401097"], "librarything": ["8122059"]}, "last_modified": {"type": "/type/datetime", "value": "2010-08-17T05:21:05.007644"}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780785904540"], "isbn_10": ["0785904549"], "publish_date": "October 1, 1987", "key": "/books/OL11037501M", "authors": [{"key": "/authors/OL20371A"}], "latest_revision": 5, "works": [{"key": "/works/OL15088241W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "7.9 x 5.4 x 0.7 inches", "revision": 5}
+/type/edition /books/OL11037512M 2 2010-04-27T20:41:33.885597 {"publishers": ["French & European Pubns"], "key": "/books/OL11037512M", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 276, "isbn_13": ["9780785904687"], "physical_format": "Paperback", "isbn_10": ["0785904689"], "publish_date": "October 1, 1989", "last_modified": {"type": "/type/datetime", "value": "2010-04-27T20:41:33.885597"}, "authors": [{"key": "/authors/OL20371A"}], "title": "En Pelerin et un Etranger", "latest_revision": 2, "works": [{"key": "/works/OL15088165W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL11038378M 6 2022-12-30T23:32:28.183440 {"publishers": ["French & European Pubns"], "title": "Les Beaux Quartiers Le Monde Reel", "identifiers": {"goodreads": ["6100560"]}, "physical_format": "Paperback", "publish_date": "October 1, 1989", "key": "/books/OL11038378M", "authors": [{"key": "/authors/OL52836A"}], "works": [{"key": "/works/OL674919W"}], "type": {"key": "/type/edition"}, "isbn_10": ["0785917144"], "isbn_13": ["9780785917144"], "classifications": {}, "languages": [{"key": "/languages/fre"}], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-30T23:32:28.183440"}}
+/type/edition /books/OL11038477M 6 2010-04-24T18:13:31.894098 {"number_of_pages": 94, "table_of_contents": [{"type": {"key": "/type/toc_item"}, "class": "section"}], "covers": [6285299], "latest_revision": 6, "first_sentence": {"type": "/type/text", "value": "Die Sonne war eine Scheibe aus massivem Gold."}, "title": "Der letzte Flug des Kleinen Prinzen", "edition_name": "firts and second", "type": {"key": "/type/edition"}, "revision": 6, "publishers": ["Patmo Verlag, Dusseldorf and Benziger Verlag Zurich"], "description": {"type": "/type/text", "value": "This is the German translation of the Last Flight of the Little Prince /, le Dernier vol du Petit Prince , done by Damaris M\u00fcller, illustrations by Dietmar Reichert. This German edition has had a large diffusion in Germany and Switzerland. The ilustrations are superb."}, "physical_format": "Bound", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:13:31.894098"}, "key": "/books/OL11038477M", "authors": [{"key": "/authors/OL3531480A"}], "pagination": "94", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "identifiers": {"goodreads": ["376198"]}, "isbn_13": ["9780785918509"], "isbn_10": ["0785918507"], "publish_date": "January 1, 2002", "works": [{"key": "/works/OL9524500W"}]}
+/type/edition /books/OL11038478M 4 2020-05-15T08:00:59.281755 {"publishers": ["French & European Pubns"], "physical_format": "Paperback", "source_records": ["amazon:0785918515"], "title": "Souvenirs de la Maison des Morts", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2020-05-15T08:00:59.281755"}, "isbn_13": ["9780785918516"], "isbn_10": ["0785918515"], "publish_date": "October 1, 1977", "key": "/books/OL11038478M", "authors": [{"key": "/authors/OL22242A"}], "latest_revision": 4, "works": [{"key": "/works/OL166970W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL11038518M 5 2010-04-24T18:13:31.894098 {"publishers": ["French & European Pubns"], "title": "Le\\Trestoulas", "isbn_10": ["0785919031"], "identifiers": {"goodreads": ["2998505"]}, "isbn_13": ["9780785919032"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:13:31.894098"}, "publish_date": "October 1, 1979", "key": "/books/OL11038518M", "authors": [{"key": "/authors/OL2309618A"}], "latest_revision": 5, "works": [{"key": "/works/OL7548748W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL11038761M 6 2022-08-12T08:24:30.146085 {"publishers": ["French & European Pubns"], "physical_format": "Paperback", "key": "/books/OL11038761M", "weight": "8.8 ounces", "title": "Les Vacances du Petit Nicolas", "identifiers": {"goodreads": ["3119846"]}, "publish_date": "1995", "authors": [{"key": "/authors/OL325366A"}, {"key": "/authors/OL863535A"}], "type": {"key": "/type/edition"}, "physical_dimensions": "6.8 x 4.8 x 0.5 inches", "isbn_10": ["0785922202"], "isbn_13": ["9780785922209"], "classifications": {}, "works": [{"key": "/works/OL2383599W"}], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-12T08:24:30.146085"}}
+/type/edition /books/OL11038839M 3 2022-12-02T22:30:56.694076 {"publishers": ["French & European Pubns"], "physical_format": "Paperback", "title": "La Sir\u00e8ne du Mississippi", "number_of_pages": 384, "publish_date": "October 1, 1973", "key": "/books/OL11038839M", "authors": [{"key": "/authors/OL2205533A"}], "type": {"key": "/type/edition"}, "identifiers": {}, "isbn_10": ["0785923292"], "isbn_13": ["9780785923299"], "classifications": {}, "languages": [{"key": "/languages/fre"}], "translated_from": [{"key": "/languages/eng"}], "works": [{"key": "/works/OL30964630W"}], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-02T22:30:56.694076"}}
+/type/edition /books/OL11038936M 4 2010-04-24T18:13:31.894098 {"publishers": ["French & European Pubns"], "title": "Presentation des Haidoucs (les Recits d'Adrien Zograffi)", "isbn_10": ["0785924701"], "identifiers": {"goodreads": ["3604298"]}, "isbn_13": ["9780785924708"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:13:31.894098"}, "publish_date": "October 1, 1983", "key": "/books/OL11038936M", "authors": [{"key": "/authors/OL613207A"}], "latest_revision": 4, "works": [{"key": "/works/OL3610959W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL11039571M 7 2022-10-28T11:10:41.653009 {"publishers": ["French & European Pubns"], "physical_format": "Paperback", "weight": "4 ounces", "title": "Les\\Boulevards de Ceintures", "identifiers": {"goodreads": ["323512"], "librarything": ["2658512"]}, "isbn_13": ["9780785933908"], "isbn_10": ["0785933905"], "publish_date": "October 1, 1978", "key": "/books/OL11039571M", "authors": [{"key": "/authors/OL60496A"}], "works": [{"key": "/works/OL742719W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "6.8 x 4.2 x 0.6 inches", "source_records": ["bwb:9780785933908", "amazon:0785933905"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-28T11:10:41.653009"}}
+/type/edition /books/OL11041168M 4 2010-04-24T18:13:31.894098 {"publishers": ["French & European Pubns"], "title": "Diccionario de la Communicacion Vol. 2", "isbn_10": ["0785958568"], "identifiers": {"goodreads": ["6498117"]}, "isbn_13": ["9780785958567"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:13:31.894098"}, "publish_date": "October 1, 1988", "key": "/books/OL11041168M", "authors": [{"key": "/authors/OL3531929A"}], "latest_revision": 4, "works": [{"key": "/works/OL9525426W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL11041329M 3 2022-11-15T10:58:03.195604 {"publishers": ["French & European Pubns"], "key": "/books/OL11041329M", "title": "Diccionario Comercial Exterior", "isbn_13": ["9780785960416"], "physical_format": "Paperback", "isbn_10": ["0785960414"], "publish_date": "October 1, 1990", "authors": [{"key": "/authors/OL3531962A"}], "works": [{"key": "/works/OL9525513W"}], "type": {"key": "/type/edition"}, "source_records": ["amazon:0785960414"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-15T10:58:03.195604"}}
+/type/edition /books/OL11041426M 4 2010-04-24T18:13:31.894098 {"publishers": ["French & European Pubns"], "title": "Diccionario Espasa Filosofia", "isbn_10": ["0785961453"], "identifiers": {"goodreads": ["5983415"]}, "isbn_13": ["9780785961451"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:13:31.894098"}, "publish_date": "January 1, 2003", "key": "/books/OL11041426M", "authors": [{"key": "/authors/OL3531980A"}], "latest_revision": 4, "works": [{"key": "/works/OL9525570W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL11041727M 3 2022-10-28T11:09:46.250400 {"publishers": ["French & European Pubns"], "key": "/books/OL11041727M", "title": "Diccionario Enciclopedico Exito Vol. 6", "number_of_pages": 736, "isbn_13": ["9780785964964"], "physical_format": "Paperback", "isbn_10": ["0785964967"], "publish_date": "October 1, 1990", "authors": [{"key": "/authors/OL3531763A"}], "works": [{"key": "/works/OL9525036W"}], "type": {"key": "/type/edition"}, "source_records": ["amazon:0785964967"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-28T11:09:46.250400"}}
+/type/edition /books/OL11041839M 5 2022-11-15T15:30:23.682058 {"publishers": ["French & European Pubns"], "weight": "6 pounds", "title": "A New Dictionary of Scientific & Technical Terms - English / Arabic", "isbn_13": ["9780785971368"], "physical_format": "Hardcover", "isbn_10": ["078597136X"], "publish_date": "January 11, 1985", "key": "/books/OL11041839M", "authors": [{"key": "/authors/OL3637587A"}], "oclc_numbers": ["76909948"], "works": [{"key": "/works/OL9525799W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "11.1 x 8.2 x 2.6 inches", "source_records": ["amazon:078597136X"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-15T15:30:23.682058"}}
+/type/edition /books/OL11041901M 2 2009-12-15T00:58:09.902945 {"publishers": ["French & European Pubns"], "key": "/books/OL11041901M", "title": "Woerterbuch der Deutschen Geschichte 3 vols", "isbn_13": ["9780785972334"], "physical_format": "Paperback", "isbn_10": ["0785972331"], "publish_date": "January 11, 1999", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:58:09.902945"}, "authors": [{"key": "/authors/OL3532106A"}], "latest_revision": 2, "works": [{"key": "/works/OL9525828W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL11041902M 2 2010-03-14T09:06:07.693514 {"publishers": ["French & European Publications Inc"], "physical_format": "Paperback", "title": "Perigord\u00adQuercy Green Guide", "isbn_10": ["078597234X"], "number_of_pages": 252, "isbn_13": ["9780785972341"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2010-03-14T09:06:07.693514"}, "publish_date": "October 1, 1989", "key": "/books/OL11041902M", "authors": [{"key": "/authors/OL2727318A"}, {"key": "/authors/OL2762472A"}], "latest_revision": 2, "subjects": ["Europe - France", "Travel - Foreign"], "works": [{"key": "/works/OL14941048W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL11041950M 2 2009-12-15T00:58:10.886667 {"publishers": ["French & European Pubns"], "key": "/books/OL11041950M", "title": "Mittelhochdeutsches Woerterbuch Index 4 vols.", "isbn_13": ["9780785974338"], "physical_format": "Paperback", "isbn_10": ["0785974334"], "publish_date": "October 1, 1990", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:58:10.886667"}, "authors": [{"key": "/authors/OL3395982A"}], "latest_revision": 2, "works": [{"key": "/works/OL9352326W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL11041991M 2 2009-12-15T00:58:10.886667 {"physical_format": "Paperback", "subtitle": "Diccionario de Palabras Inglesas Enganosas", "publishers": ["French & European Publications Inc"], "isbn_10": ["0785974830"], "number_of_pages": 215, "isbn_13": ["9780785974833"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:58:10.886667"}, "publish_date": "October 1, 1989", "latest_revision": 2, "key": "/books/OL11041991M", "authors": [{"key": "/authors/OL3532136A"}], "title": "Spanish to English and English to Spanish Dictionary of False Friends", "subjects": ["Spanish", "Spanish Language"], "works": [{"key": "/works/OL9525867W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL11042042M 2 2009-12-15T00:58:10.886667 {"publishers": ["French & European Pubns"], "key": "/books/OL11042042M", "title": "Gabler Wirtschafts Woerterbuch CD\u00adROM Version", "isbn_13": ["9780785975434"], "physical_format": "Paperback", "isbn_10": ["0785975438"], "publish_date": "October 1, 1994", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:58:10.886667"}, "authors": [{"key": "/authors/OL3532163A"}], "latest_revision": 2, "works": [{"key": "/works/OL9525913W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL11042355M 2 2009-12-15T00:58:10.886667 {"publishers": ["French & European Pubns"], "key": "/books/OL11042355M", "title": "Dictionnaire Economique de l'Anglais et du Francais Vol. 2 Credit/ Taux D'Interet", "isbn_13": ["9780785979562"], "physical_format": "Paperback", "isbn_10": ["0785979565"], "publish_date": "October 1, 1992", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:58:10.886667"}, "authors": [{"key": "/authors/OL3531430A"}], "latest_revision": 2, "works": [{"key": "/works/OL9524375W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL11042374M 7 2021-12-03T19:40:01.994187 {"publishers": ["French & European Pubns"], "subtitle": "Tintin in America (Italian Edition of Tintin in America)", "source_records": ["amazon:0785979808"], "weight": "1 pounds", "title": "Le Avventure di Tintin", "identifiers": {"goodreads": ["2221324"]}, "physical_format": "Hardcover", "publish_date": "2002", "key": "/books/OL11042374M", "authors": [{"key": "/authors/OL595213A"}], "works": [{"key": "/works/OL151089W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "11.7 x 8.7 x 0.4 inches", "isbn_10": ["0785979808"], "isbn_13": ["9780785979807"], "classifications": {}, "languages": [{"key": "/languages/ita"}], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-03T19:40:01.994187"}}
+/type/edition /books/OL11043630M 5 2022-11-15T10:26:06.058743 {"publishers": ["French & European Pubns"], "identifiers": {"goodreads": ["1519168"]}, "subtitle": "Woordenboek Geneeskunde en Biomedische Wetenschappen Engels - Nederlands / Nederlands - Engels", "key": "/books/OL11043630M", "weight": "1.5 pounds", "title": "Dutch to English and English to Dutch Medical Dictionary with CD ROM", "type": {"key": "/type/edition"}, "number_of_pages": 386, "isbn_13": ["9780785995913"], "languages": [{"key": "/languages/eng"}, {"key": "/languages/dut"}], "isbn_10": ["0785995919"], "authors": [{"key": "/authors/OL3532734A"}], "publish_date": "January 11, 2006", "works": [{"key": "/works/OL9526758W"}], "physical_format": "Hardcover", "physical_dimensions": "9.3 x 5.9 x 1.2 inches", "source_records": ["amazon:0785995919"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-15T10:26:06.058743"}}
+/type/edition /books/OL11043700M 2 2009-12-15T00:58:12.126739 {"publishers": ["French & European Pubns"], "key": "/books/OL11043700M", "title": "Merck Manual Hungarian Language Edition", "isbn_13": ["9780785996699"], "physical_format": "Paperback", "isbn_10": ["0785996699"], "publish_date": "January 11, 1993", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:58:12.126739"}, "authors": [{"key": "/authors/OL2747527A"}], "latest_revision": 2, "works": [{"key": "/works/OL8257144W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL11043739M 2 2009-12-15T00:58:12.126739 {"publishers": ["French & European Publications Inc"], "title": "Dictionary of Building and Civil Engineering, Czech-English/English-Czech", "isbn_10": ["0785997091"], "isbn_13": ["9780785997092"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:58:12.126739"}, "publish_date": "October 1, 1996", "key": "/books/OL11043739M", "authors": [{"key": "/authors/OL3532772A"}], "latest_revision": 2, "subjects": ["Construction - General", "Technology & Industrial Arts"], "works": [{"key": "/works/OL9526801W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL11043844M 9 2020-04-12T20:02:06.654644 {"other_titles": ["Harry Potter and the Goblet of Fire"], "publishers": ["French & European Pubns"], "translated_from": [{"key": "/languages/eng"}], "languages": [{"key": "/languages/fre"}], "last_modified": {"type": "/type/datetime", "value": "2020-04-12T20:02:06.654644"}, "title": "Harry Potter et la Coupe de Feu", "translation_of": "Harry Potter and the Goblet of Fire", "identifiers": {"librarything": ["113"], "goodreads": ["2400050"]}, "isbn_13": ["9780785998334"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "number_of_pages": 2112, "isbn_10": ["0785998330"], "latest_revision": 9, "key": "/books/OL11043844M", "authors": [{"key": "/authors/OL23919A"}], "works": [{"key": "/works/OL82577W"}], "type": {"key": "/type/edition"}, "revision": 9}
+/type/edition /books/OL11044347M 5 2010-04-24T18:13:31.894098 {"subtitle": "The Sage of Monticello, Vol. 6", "weight": "1.6 pounds", "covers": [2627200], "latest_revision": 5, "contributions": ["Anna Fields (Narrator)"], "edition_name": "Unabridged edition", "title": "Jefferson", "languages": [{"key": "/languages/eng"}], "subjects": ["Historical - General", "Biography & Autobiography", "Audio Adult: Other"], "type": {"key": "/type/edition"}, "physical_dimensions": "9.5 x 6.7 x 2.4 inches", "revision": 5, "publishers": ["Blackstone Audiobooks"], "physical_format": "Audio Cassette", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:13:31.894098"}, "key": "/books/OL11044347M", "authors": [{"key": "/authors/OL1072607A"}], "identifiers": {"goodreads": ["7269019"]}, "isbn_13": ["9780786114191"], "isbn_10": ["0786114193"], "publish_date": "January 1998", "works": [{"key": "/works/OL4968309W"}]}
+/type/edition /books/OL11044893M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Thorndike Press"], "title": "The Kills", "isbn_13": ["9780786256945"], "isbn_10": ["078625694X"], "key": "/books/OL11044893M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL11045214M 2 2009-12-15T00:58:13.829888 {"publishers": ["Irwin"], "title": "Mar 96 Small Bus Newsltr F&M", "isbn_10": ["0786305835"], "isbn_13": ["9780786305834"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:58:13.829888"}, "publish_date": "March 1, 1996", "key": "/books/OL11045214M", "authors": [{"key": "/authors/OL3532941A"}], "latest_revision": 2, "subjects": ["Finance"], "works": [{"key": "/works/OL9527125W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL11045243M 2 2009-12-15T00:58:13.829888 {"publishers": ["Irwin"], "title": "Dec 95 Sm Bus Newsltr Northrim", "isbn_10": ["0786306181"], "isbn_13": ["9780786306183"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:58:13.829888"}, "publish_date": "December 1, 1995", "key": "/books/OL11045243M", "authors": [{"key": "/authors/OL3532941A"}], "latest_revision": 2, "subjects": ["Finance"], "works": [{"key": "/works/OL9527068W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL11045365M 4 2010-04-24T18:13:31.894098 {"publishers": ["Irwin"], "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:13:31.894098"}, "title": "Transfer Fin Risk", "identifiers": {"goodreads": ["3151065"]}, "isbn_13": ["9780786308415"], "physical_format": "Paperback", "isbn_10": ["0786308419"], "latest_revision": 4, "key": "/books/OL11045365M", "authors": [{"key": "/authors/OL2739804A"}], "works": [{"key": "/works/OL8230849W"}], "type": {"key": "/type/edition"}, "subjects": ["Finance"], "revision": 4}
+/type/edition /books/OL11045594M 8 2020-12-17T08:19:26.162134 {"publishers": ["McFarland"], "number_of_pages": 240, "weight": "1 pounds", "covers": [2627658], "physical_format": "Hardcover", "key": "/books/OL11045594M", "authors": [{"key": "/authors/OL451012A"}], "subjects": ["American history: c 1800 to c 1900", "Civil war", "History", "History - Military / War", "History: American", "USA", "Military - General", "United States - Civil War", "History / Americas", "19th century", "Campaigns", "Civil War, 1861-1865", "History, Naval", "Naval operations", "Pensacola (Fla.)", "Pensacola Bay (Fla.)"], "isbn_13": ["9780786431755"], "title": "Civil War on Pensacola Bay, 1861-1862", "identifiers": {"librarything": ["4342463"], "goodreads": ["6765191"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["078643175X"], "publish_date": "September 7, 2007", "oclc_numbers": ["145431712"], "works": [{"key": "/works/OL2954641W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.1 x 7 x 0.7 inches", "lccn": ["2007025262"], "lc_classifications": ["F319.P4 D75 2007"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part34.utf8:132380524:1991"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-17T08:19:26.162134"}}
+/type/edition /books/OL11046090M 3 2011-04-27T20:38:20.964818 {"publishers": ["Institution of Engineering and Technology"], "physical_format": "Paperback", "subtitle": "a Guide to Modern Theory and Practice (IEE Control)", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T20:38:20.964818"}, "title": "Stepping Motors", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 160, "edition_name": "3Rev Ed edition", "isbn_13": ["9780863412448"], "isbn_10": ["0863412440"], "publish_date": "January 31, 1992", "key": "/books/OL11046090M", "authors": [{"key": "/authors/OL2925914A"}], "latest_revision": 3, "oclc_numbers": ["230944536"], "works": [{"key": "/works/OL8668794W"}], "type": {"key": "/type/edition"}, "subjects": ["Electric motors"], "revision": 3}
+/type/edition /books/OL11046472M 3 2010-08-17T05:22:26.041555 {"publishers": ["GEOprojects (UK) Ltd"], "number_of_pages": 38, "last_modified": {"type": "/type/datetime", "value": "2010-08-17T05:22:26.041555"}, "title": "London City and Docklands (Street Maps & Atlases)", "physical_format": "Paperback", "identifiers": {"librarything": ["4894253"]}, "covers": [2669693], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780863510052"], "isbn_10": ["0863510051"], "publish_date": "October 1993", "key": "/books/OL11046472M", "latest_revision": 3, "type": {"key": "/type/edition"}, "subjects": ["Maps, charts & atlases", "Travel / road maps & atlases", "London, Greater London"], "revision": 3}
+/type/edition /books/OL11046605M 3 2010-08-17T05:22:26.041555 {"publishers": ["The British Council (English Language publications)"], "number_of_pages": 77, "last_modified": {"type": "/type/datetime", "value": "2010-08-17T05:22:26.041555"}, "title": "Language and Social Life", "physical_format": "Paperback", "identifiers": {"librarything": ["4242140"]}, "covers": [2669729], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780863551703"], "isbn_10": ["086355170X"], "publish_date": "October 1, 1997", "key": "/books/OL11046605M", "latest_revision": 3, "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL11046845M 3 2011-04-27T21:33:59.071979 {"publishers": ["Association for Science Education"], "last_modified": {"type": "/type/datetime", "value": "2011-04-27T21:33:59.071979"}, "title": "Science with Technology", "number_of_pages": 30, "isbn_13": ["9780863572210"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0863572219"], "publish_date": "December 1994", "key": "/books/OL11046845M", "authors": [{"key": "/authors/OL3533358A"}], "latest_revision": 3, "oclc_numbers": ["47064914"], "works": [{"key": "/works/OL9527892W"}], "type": {"key": "/type/edition"}, "subjects": ["Biology, life sciences", "Food science"], "revision": 3}
+/type/edition /books/OL11047104M 3 2021-10-21T18:49:58.986667 {"publishers": ["Kogan Page"], "title": "How to Set Up & Run Conferences & Meetings (A Daily Telegraph Business Enterprise Book)", "number_of_pages": 184, "isbn_13": ["9780863671012"], "physical_format": "Hardcover", "isbn_10": ["0863671012"], "publish_date": "December 31, 1986", "key": "/books/OL11047104M", "oclc_numbers": ["14243784"], "type": {"key": "/type/edition"}, "subjects": ["Business communication & presentation"], "works": [{"key": "/works/OL26189710W"}], "covers": [12165296], "ocaid": "howtosetupruncon0000unse", "lc_classifications": ["AS6"], "source_records": ["ia:howtosetupruncon0000unse"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-10-21T18:49:58.986667"}}
+/type/edition /books/OL11047637M 7 2022-11-17T14:03:02.360537 {"publishers": ["Gwasg Carreg Gwalch"], "number_of_pages": 96, "title": "New Walks in Snowdonia", "type": {"key": "/type/edition"}, "identifiers": {"wikidata": ["Q76476241"], "goodreads": ["5065203"]}, "isbn_13": ["9780863812651"], "isbn_10": ["0863812651"], "publish_date": "1996", "key": "/books/OL11047637M", "authors": [{"key": "/authors/OL2916159A"}], "oclc_numbers": ["29223069"], "works": [{"key": "/works/OL8648982W"}], "physical_format": "Hardcover", "subjects": ["Walking, hiking, trekking", "Wales"], "source_records": ["bwb:9780863812651"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T14:03:02.360537"}}
+/type/edition /books/OL11048497M 8 2022-11-17T17:01:00.640400 {"publishers": ["Pont Books"], "identifiers": {"goodreads": ["2402848"]}, "covers": [2669911], "physical_format": "Paperback", "key": "/books/OL11048497M", "authors": [{"key": "/authors/OL190872A"}], "contributions": ["Garry Colston (Illustrator)"], "subjects": ["Fiction", "Literature: Texts"], "classifications": {}, "title": "Miracles and Rubies", "notes": {"type": "/type/text", "value": "Welsh History Project Series - Novels"}, "number_of_pages": 69, "isbn_13": ["9780863838910"], "isbn_10": ["086383891X"], "publish_date": "February 1992", "oclc_numbers": ["26543352"], "works": [{"key": "/works/OL1686733W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780863838910"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T17:01:00.640400"}}
+/type/edition /books/OL1104887M 9 2021-12-24T20:21:47.506295 {"other_titles": ["Learning about and living with insects of the Southwest.", "Insects of the Southwest."], "publishers": ["Fisher Books"], "number_of_pages": 162, "subtitle": "how to identify helpful, harmful, and venomous insects", "isbn_10": ["1555610609"], "subject_place": ["Southwest, New"], "covers": [774913], "lc_classifications": ["SB934.5.S68 W47 1994", "SB934.5.S68W47 1994"], "key": "/books/OL1104887M", "authors": [{"key": "/authors/OL585029A"}], "ocaid": "learningaboutliv0000wern", "publish_places": ["Tucson, AZ"], "contributions": ["Olson, Carl E."], "pagination": "xiv, 162 p. :", "source_records": ["marc:marc_records_scriblio_net/part24.dat:64663540:1090", "marc:marc_loc_updates/v36.i18.records.utf8:5002973:1206", "ia:learningaboutliv0000wern", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:139169414:1206", "bwb:9781555610609"], "title": "Learning about & living with insects of the Southwest", "dewey_decimal_class": ["595/.2046/0979"], "notes": {"type": "/type/text", "value": "Spine title: Insects of the Southwest.\nIncludes index."}, "identifiers": {"goodreads": ["1634918"], "librarything": ["6403954"]}, "languages": [{"key": "/languages/eng"}], "lccn": ["94029991"], "subjects": ["Insect pests -- Southwest, New -- Identification", "Beneficial insects -- Southwest, New -- Identification", "Insects -- Southwest, New -- Identification"], "publish_date": "1994", "publish_country": "azu", "by_statement": "Floyd Werner & Carl Olson ; illustrations by W. Eugene Hall.", "works": [{"key": "/works/OL3501353W"}], "type": {"key": "/type/edition"}, "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-24T20:21:47.506295"}}
+/type/edition /books/OL11048M 4 2022-08-19T03:59:58.073779 {"notes": {"type": "/type/text", "value": "Romanized."}, "title": "Kalamita\u0304", "authors": [{"key": "/authors/OL7711A"}], "publish_date": "1966", "pagination": "299 p.", "source_records": ["marc:marc_records_scriblio_net/part29.dat:6583180:433", "marc:marc_loc_2016/BooksAll.2016.part43.utf8:14324345:434"], "lccn": ["sa67001091"], "languages": [{"key": "/languages/ben"}], "lc_classifications": ["PK1718.B532 K3"], "publish_country": "xx ", "oclc_numbers": ["23576532"], "type": {"key": "/type/edition"}, "key": "/books/OL11048M", "number_of_pages": 299, "works": [{"key": "/works/OL352253W"}], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-19T03:59:58.073779"}}
+/type/edition /books/OL11049046M 7 2011-04-28T15:22:27.912596 {"publishers": ["Kangaroo Press"], "number_of_pages": 64, "subtitle": "A Survey of Introduced Wild Mammals", "weight": "10.4 ounces", "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-28T15:22:27.912596"}, "latest_revision": 7, "key": "/books/OL11049046M", "authors": [{"key": "/authors/OL761440A"}, {"key": "/authors/OL3533934A"}, {"key": "/authors/OL2939674A"}, {"key": "/authors/OL741252A"}], "subjects": ["Agriculture - General", "Mammals", "Technology & Industrial Arts", "Nature/Ecology"], "isbn_13": ["9780864174475"], "title": "Pest Animals in Australia", "identifiers": {"librarything": ["6575359"], "goodreads": ["254119"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0864174470"], "publish_date": "April 1993", "oclc_numbers": ["29012700"], "works": [{"key": "/works/OL15051204W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "11 x 8.2 x 0.2 inches", "revision": 7}
+/type/edition /books/OL11049148M 5 2010-08-17T05:23:04.578823 {"publishers": ["Kangaroo Press"], "identifiers": {"goodreads": ["2222860"], "librarything": ["8439564"]}, "subtitle": "Traditional and Modern Designs", "weight": "7 ounces", "edition_name": "Rev Ed edition", "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-08-17T05:23:04.578823"}, "latest_revision": 5, "key": "/books/OL11049148M", "authors": [{"key": "/authors/OL2814752A"}], "subjects": ["Paper engineering, paper models", "Patchwork & applique", "Quiltmaking", "Crafts & Hobbies", "Crafts / Hobbies", "Hobbies/Crafts", "Papercrafts", "Quilts & Quilting"], "isbn_13": ["9780864176752"], "title": "Creative Quilting", "number_of_pages": 48, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0864176759"], "publish_date": "May 1995", "works": [{"key": "/works/OL8442893W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.8 x 8 x 0.2 inches", "revision": 5}
+/type/edition /books/OL11049231M 3 2011-04-28T19:02:58.885371 {"publishers": ["Kangaroo Press Pty.Ltd ,Australia"], "identifiers": {"librarything": ["4268949"]}, "last_modified": {"type": "/type/datetime", "value": "2011-04-28T19:02:58.885371"}, "title": "A-Z Guide for Onglaze Decoration", "type": {"key": "/type/edition"}, "number_of_pages": 136, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780864178886"], "isbn_10": ["0864178883"], "publish_date": "October 15, 1997", "key": "/books/OL11049231M", "latest_revision": 3, "oclc_numbers": ["38901118"], "physical_format": "Paperback", "subjects": ["Art techniques & materials", "Ceramic arts, pottery, glass", "Reference works"], "revision": 3}
+/type/edition /books/OL11049917M 5 2020-12-08T21:26:33.388294 {"publishers": ["David Philip"], "subtitle": "Memory, Justice, and Impunity", "covers": [2670240], "physical_format": "Paperback", "key": "/books/OL11049917M", "authors": [{"key": "/authors/OL2926888A"}], "subjects": ["Political structures: democracy", "Africa - South - Republic of South Africa", "History - General History", "Africa - South - South Africa"], "languages": [{"key": "/languages/eng"}], "title": "The Provocations of Amnesty", "number_of_pages": 331, "isbn_13": ["9780864866158"], "isbn_10": ["0864866151"], "publish_date": "January 2003", "oclc_numbers": ["52380440"], "works": [{"key": "/works/OL8670729W"}], "type": {"key": "/type/edition"}, "lccn": ["2004352194"], "lc_classifications": ["DT1974.2 .P76 2003b"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part31.utf8:249427848:1099"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-08T21:26:33.388294"}}
+/type/edition /books/OL11050051M 6 2013-08-04T13:13:50.934802 {"publishers": ["executive.org"], "identifiers": {"goodreads": ["1883759"]}, "subtitle": "2004 Pocket Elite, Ultra Slim", "last_modified": {"type": "/type/datetime", "value": "2013-08-04T13:13:50.934802"}, "title": "Harvard Planner", "number_of_pages": 144, "isbn_13": ["9780865024199"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Leather-bound", "isbn_10": ["0865024197"], "publish_date": "July 2003", "key": "/books/OL11050051M", "latest_revision": 6, "works": [{"key": "/works/OL9155050W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL11050526M 5 2022-12-04T15:33:09.058876 {"publishers": ["Incentive Publications, Inc"], "number_of_pages": 79, "title": "The reference point", "type": {"key": "/type/edition"}, "identifiers": {"librarything": ["3936597"]}, "isbn_13": ["9780865300422"], "isbn_10": ["0865300429"], "publish_date": "1983", "key": "/books/OL11050526M", "authors": [{"key": "/authors/OL3534414A"}], "oclc_numbers": ["9681322"], "works": [{"key": "/works/OL9529232W"}], "physical_format": "Paperback", "subjects": ["General", "Library orientation for school children", "Reference books", "Education / Teaching"], "local_id": ["urn:bwbsku:W7-DAA-996"], "source_records": ["promise:bwb_daily_pallets_2022-08-30"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T15:33:09.058876"}}
+/type/edition /books/OL11050587M 7 2022-12-08T03:07:29.658773 {"publishers": ["Incentive Pubns"], "weight": "12.8 ounces", "physical_format": "Paperback", "key": "/books/OL11050587M", "authors": [{"key": "/authors/OL3340860A"}], "subjects": ["General", "Education / Teaching"], "isbn_13": ["9780865301658"], "title": "Science Mind Stretchers", "identifiers": {"goodreads": ["3649730"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0865301654"], "publish_date": "June 1987", "oclc_numbers": ["17247267"], "works": [{"key": "/works/OL9287034W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "11 x 8.5 x 0.5 inches", "covers": [12578129], "ocaid": "sciencemindstret0000fort", "lc_classifications": ["LB1585 .F65 1987"], "source_records": ["ia:sciencemindstret0000fort", "promise:bwb_daily_pallets_2021-08-13"], "local_id": ["urn:bwbsku:O7-BTQ-221"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-08T03:07:29.658773"}}
+/type/edition /books/OL11050604M 8 2018-04-18T05:13:21.266141 {"publishers": ["Incentive Publications"], "identifiers": {"librarything": ["8489266"], "goodreads": ["3907978"]}, "subtitle": "Organized Reading Programs With a Purpose (Read about It Series)", "weight": "8.5 ounces", "isbn_10": ["0865302049"], "covers": [2670438], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2018-04-18T05:13:21.266141"}, "latest_revision": 8, "key": "/books/OL11050604M", "authors": [{"key": "/authors/OL2927087A"}], "ocaid": "readersclubhouse0000phil", "contributions": ["Margaret Binkley (Editor)"], "isbn_13": ["9780865302044"], "source_records": ["ia:readersclubhouse0000phil"], "title": "Readers' Clubhouse", "number_of_pages": 80, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "subjects": ["Parent Participation", "Teaching Methods & Materials - Reading", "Education / Teaching", "Children: Grades 3-4"], "publish_date": "April 1991", "oclc_numbers": ["25640198"], "works": [{"key": "/works/OL8671056W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "11 x 8.6 x 0.4 inches", "revision": 8}
+/type/edition /books/OL11050781M 3 2021-09-19T01:03:33.060407 {"publishers": ["Westview Press"], "key": "/books/OL11050781M", "title": "China Briefing, 1980", "number_of_pages": 126, "isbn_13": ["9780865310704"], "physical_format": "Paperback", "isbn_10": ["086531070X"], "publish_date": "August 1980", "authors": [{"key": "/authors/OL3534450A"}], "works": [{"key": "/works/OL9529250W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780865310704"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-09-19T01:03:33.060407"}}
+/type/edition /books/OL11051116M 7 2020-12-01T12:19:38.942537 {"publishers": ["Africa World Press"], "number_of_pages": 265, "subtitle": "Religion and Modernity Among the Ewe in Ghana", "weight": "14.4 ounces", "covers": [2670604], "physical_format": "Paperback", "lc_classifications": ["BR1463.G5 M49 1999"], "latest_revision": 7, "key": "/books/OL11051116M", "authors": [{"key": "/authors/OL253946A"}], "subjects": ["Christianity - History - General", "Anthropology - Cultural", "History", "Religion", "Religion - Church History", "20th century", "Church history", "Devil", "Ewe (African people)", "Ghana", "History of doctrines", "Peki", "Peki (Ghana)"], "isbn_13": ["9780865437982"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part28.utf8:6442739:876"], "title": "Translating the Devil", "lccn": ["99037739"], "identifiers": {"goodreads": ["1323990"], "librarything": ["7681829"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["086543798X"], "publish_date": "September 1999", "last_modified": {"type": "/type/datetime", "value": "2020-12-01T12:19:38.942537"}, "works": [{"key": "/works/OL2073071W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.8 x 5.9 x 0.9 inches", "revision": 7}
+/type/edition /books/OL11051203M 6 2011-04-30T08:29:35.647038 {"publishers": ["Spizzirri Pub Co"], "subtitle": "An Educational Coloring Book", "weight": "3.2 ounces", "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-30T08:29:35.647038"}, "latest_revision": 6, "key": "/books/OL11051203M", "authors": [{"key": "/authors/OL2927452A"}], "subjects": ["Children: Grades 2-3"], "isbn_13": ["9780865450424"], "title": "Animal Alphabet", "identifiers": {"librarything": ["8624588"], "goodreads": ["4837650"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0865450420"], "publish_date": "March 1997", "oclc_numbers": ["32501175"], "works": [{"key": "/works/OL8671670W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "11.2 x 8.8 x 0.2 inches", "revision": 6}
+/type/edition /books/OL11051229M 3 2011-06-08T01:41:15.120749 {"publishers": ["Spizzirri Pub Co"], "physical_format": "Paperback", "subtitle": "An Educational Activity-Coloring Book", "last_modified": {"type": "/type/datetime", "value": "2011-06-08T01:41:15.120749"}, "title": "Dinosaurs Dot-To-Dot", "number_of_pages": 24, "isbn_13": ["9780865450783"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0865450781"], "publish_date": "1996", "key": "/books/OL11051229M", "authors": [{"key": "/authors/OL2927452A"}], "latest_revision": 3, "oclc_numbers": ["233791682"], "works": [{"key": "/works/OL8671583W"}], "type": {"key": "/type/edition"}, "subjects": ["Nature/Ecology"], "revision": 3}
+/type/edition /books/OL11051252M 3 2011-04-29T12:37:31.799219 {"publishers": ["Spizzirri Pub Co"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T12:37:31.799219"}, "title": "Aircraft", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 32, "isbn_13": ["9780865451094"], "edition_name": "Bk&Cassett edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0865451095"], "publish_date": "March 1997", "key": "/books/OL11051252M", "authors": [{"key": "/authors/OL2927452A"}], "latest_revision": 3, "oclc_numbers": ["54447933"], "works": [{"key": "/works/OL8671552W"}], "type": {"key": "/type/edition"}, "subjects": ["Audio: Juvenile"], "revision": 3}
+/type/edition /books/OL11051368M 6 2022-12-07T22:50:10.991232 {"publishers": ["Southwestern Heritage Books"], "identifiers": {"goodreads": ["3265235"]}, "subtitle": "Andy Payne and the Great Transcontinental Footrace", "physical_format": "Unknown Binding", "key": "/books/OL11051368M", "authors": [{"key": "/authors/OL1665476A"}], "subjects": ["Payne, Andrew Hartley", "Running races"], "isbn_13": ["9780865460171"], "title": "The Bunion Derby", "number_of_pages": 133, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0865460175"], "publish_date": "1980", "oclc_numbers": ["7387956"], "works": [{"key": "/works/OL6356958W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:P7-EAZ-971"], "source_records": ["promise:bwb_daily_pallets_2021-09-14"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-07T22:50:10.991232"}}
+/type/edition /books/OL1105136M 9 2022-12-17T11:12:54.539367 {"other_titles": ["Complete book of house plants"], "publishers": ["Viking Studio Books"], "number_of_pages": 250, "subtitle": "a practical guide to selecting and caring for houseplants", "covers": [401490], "local_id": ["urn:sfpl:31223056362610", "urn:sfpl:31223036899574", "urn:sfpl:31223036897123", "urn:bwbsku:O7-CJK-105"], "lc_classifications": ["SB419 .E795 1994", "SB419.E795 1994"], "key": "/books/OL1105136M", "authors": [{"key": "/authors/OL50081A"}], "publish_places": ["New York"], "subjects": ["House plants.", "House plants -- Pictorial works.", "Indoor gardening."], "pagination": "250 p. :", "source_records": ["marc:marc_openlibraries_sanfranciscopubliclibrary/sfpl_chq_2018_12_24_run02.mrc:96508421:2019", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:139388350:753", "promise:bwb_daily_pallets_2021-08-13", "bwb:9780670858682"], "title": "The complete book of houseplants", "dewey_decimal_class": ["635.9/65"], "notes": {"type": "/type/text", "value": "Includes index."}, "identifiers": {"goodreads": ["1861546"], "librarything": ["994527"]}, "languages": [{"key": "/languages/eng"}], "lccn": ["94030257"], "isbn_10": ["0670858684"], "publish_date": "1994", "publish_country": "nyu", "by_statement": "John Evans.", "works": [{"key": "/works/OL646754W"}], "type": {"key": "/type/edition"}, "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T11:12:54.539367"}}
+/type/edition /books/OL11051906M 3 2021-01-23T19:13:55.048102 {"physical_format": "Unknown Binding", "subtitle": "Based on a story by Mikhail Zoshchenko (Classics in photostories series)", "publishers": ["Dormac"], "isbn_10": ["086575635X"], "number_of_pages": 65, "isbn_13": ["9780865756359"], "languages": [{"key": "/languages/eng"}], "publish_date": "1989", "key": "/books/OL11051906M", "authors": [{"key": "/authors/OL1833673A"}], "title": "Jealousy", "subjects": ["English language", "Text books for foreign students"], "works": [{"key": "/works/OL6752327W"}], "type": {"key": "/type/edition"}, "covers": [10569617], "ocaid": "jealousybasedons0000buto", "lc_classifications": ["PE1128 .B87 1989"], "source_records": ["ia:jealousybasedons0000buto"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-01-23T19:13:55.048102"}}
+/type/edition /books/OL11052464M 5 2019-07-30T21:19:26.178946 {"publishers": ["Council Exceptional Children"], "subtitle": "The Inerim Alternative Educational Setting Solution", "weight": "2.4 ounces", "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2019-07-30T21:19:26.178946"}, "latest_revision": 5, "key": "/books/OL11052464M", "authors": [{"key": "/authors/OL3535052A"}, {"key": "/authors/OL1395179A"}], "subjects": ["Philosophy & Social Aspects", "Education"], "edition_name": "Booklet edition", "languages": [{"key": "/languages/eng"}], "title": "Dealing With Behaviors Perceived As Unacceptable in Schools", "identifiers": {"goodreads": ["6034894"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780865863873"], "isbn_10": ["0865863873"], "publish_date": "April 2002", "oclc_numbers": ["50018893"], "works": [{"key": "/works/OL9529758W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.8 x 6 x 0.2 inches", "revision": 5}
+/type/edition /books/OL11052585M 5 2011-03-13T00:13:25.370320 {"publishers": ["ABS Consulting"], "identifiers": {"goodreads": ["5940122"]}, "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-03-13T00:13:25.370320"}, "latest_revision": 5, "key": "/books/OL11052585M", "authors": [{"key": "/authors/OL2931237A"}], "contributions": ["Inc Staff Government Institutes (Editor)"], "subjects": ["Civil Procedure", "Legal Reference / Law Profession"], "edition_name": "1992 Edition", "languages": [{"key": "/languages/eng"}], "classifications": {}, "title": "Environmental Statutes", "notes": {"type": "/type/text", "value": "1992 Edition"}, "number_of_pages": 1165, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780865872820"], "isbn_10": ["0865872821"], "publish_date": "February 1992", "works": [{"key": "/works/OL8677436W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL11052769M 5 2020-08-20T03:04:51.610367 {"publishers": ["Government Institutes"], "subtitle": "Public Water Systems under the Safe Drinking Water Act", "weight": "1 pounds", "covers": [2670843], "physical_format": "Spiral-bound", "last_modified": {"type": "/type/datetime", "value": "2020-08-20T03:04:51.610367"}, "latest_revision": 5, "key": "/books/OL11052769M", "authors": [{"key": "/authors/OL62371A"}], "subjects": ["Environment law", "Non-Classifiable", "Environmental", "Law", "Nonfiction", "Nonfiction - General"], "edition_name": "Spiral edition", "languages": [{"key": "/languages/eng"}], "source_records": ["bwb:9780865878075"], "title": "Protocol for Conducting Environmental Compliance Audits", "number_of_pages": 164, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780865878075"], "isbn_10": ["0865878072"], "publish_date": "October 28, 2000", "works": [{"key": "/works/OL8677532W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.8 x 8.1 x 0.5 inches", "revision": 5}
+/type/edition /books/OL11052814M 5 2021-12-25T00:46:52.028460 {"publishers": ["Government Institutes"], "number_of_pages": 150, "weight": "13.6 ounces", "physical_format": "Paperback", "key": "/books/OL11052814M", "authors": [{"key": "/authors/OL62371A"}], "subjects": ["Economics, Finance, Business and Industry", "Engineering skills & trades", "Industry & Industrial Studies", "Business & Economics", "Science", "Business/Economics", "General", "Non-Classifiable", "Industries - General", "Technical & Manufacturing Trades"], "isbn_13": ["9780865878846"], "classifications": {}, "title": "Profile of the Inorganic Chemical Industry", "notes": {"type": "/type/text", "value": "Spanish version"}, "identifiers": {}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0865878846"], "publish_date": "July 28, 2001", "works": [{"key": "/works/OL8677500W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.7 x 8.3 x 0.4 inches", "source_records": ["bwb:9780865878846"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-25T00:46:52.028460"}}
+/type/edition /books/OL11052952M 3 2011-04-25T20:17:48.491909 {"publishers": ["Stosius Inc/Advent Books Division"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-25T20:17:48.491909"}, "title": "Gandhi, Nehru and the Quit India Movement", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780865903012"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0865903018"], "publish_date": "May 1984", "key": "/books/OL11052952M", "authors": [{"key": "/authors/OL3535234A"}], "latest_revision": 3, "oclc_numbers": ["234301991"], "works": [{"key": "/works/OL9529928W"}], "type": {"key": "/type/edition"}, "subjects": ["Political History"], "revision": 3}
+/type/edition /books/OL11053210M 2 2009-12-15T00:58:20.527917 {"publishers": ["The Rourke Book Company, Inc."], "title": "Moonbird and the Unicorn", "isbn_10": ["0865926549"], "isbn_13": ["9780865926547"], "physical_format": "Library Binding", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:58:20.527917"}, "publish_date": "October 1981", "key": "/books/OL11053210M", "authors": [{"key": "/authors/OL2887897A"}], "latest_revision": 2, "subjects": ["Birds", "Extraterrestrial beings", "Fiction", "Unicorns"], "works": [{"key": "/works/OL8596314W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL11053632M 2 2009-12-15T00:58:21.864821 {"physical_format": "Paperback", "subtitle": "A Partially Annotated Bibliography (No. 218)", "weight": "2.4 ounces", "title": "Urban Design and Crime", "isbn_10": ["086602218X"], "publishers": ["CPL Bibliographies"], "isbn_13": ["9780866022187"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:58:21.864821"}, "publish_date": "June 1988", "key": "/books/OL11053632M", "authors": [{"key": "/authors/OL970059A"}], "latest_revision": 2, "works": [{"key": "/works/OL4692639W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "11.2 x 8.8 x 0.2 inches", "revision": 2}
+/type/edition /books/OL11053724M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "subtitle": "A Student Discussion Manual on the Attributes of God", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Roper Press, Inc."], "title": "Who is Your God? And What is He Like?", "isbn_13": ["9780866064132"], "isbn_10": ["0866064133"], "publish_date": "1988", "key": "/books/OL11053724M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL11053805M 3 2011-04-29T03:07:38.103704 {"publishers": ["McDougal, Littell"], "subtitle": "A History to 1877 (Reinforcement Activities)", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T03:07:38.103704"}, "title": "The American People", "number_of_pages": 135, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0866096434"], "publish_date": "1986", "key": "/books/OL11053805M", "authors": [{"key": "/authors/OL447673A"}], "latest_revision": 3, "oclc_numbers": ["18104725"], "works": [{"key": "/works/OL2936359W"}], "type": {"key": "/type/edition"}, "subjects": ["Nonfiction - Education"], "revision": 3}
+/type/edition /books/OL11053844M 3 2011-04-29T22:30:16.736042 {"publishers": ["Playmore/Waldman"], "last_modified": {"type": "/type/datetime", "value": "2011-04-29T22:30:16.736042"}, "title": "Favorite Fairy tales- Cinderella", "identifiers": {"librarything": ["3470259"]}, "isbn_13": ["9780866111324"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Hardcover", "isbn_10": ["0866111328"], "publish_date": "1993", "key": "/books/OL11053844M", "latest_revision": 3, "oclc_numbers": ["52628037"], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL11054140M 6 2022-01-14T02:57:45.022439 {"publishers": ["TFH Publications"], "weight": "6.4 ounces", "covers": [9617038], "physical_format": "Paperback", "key": "/books/OL11054140M", "authors": [{"key": "/authors/OL3535532A"}], "subjects": ["Birds, including cage birds", "Pets", "Nature/Ecology"], "source_records": ["marc:marc_openlibraries_sanfranciscopubliclibrary/sfpl_chq_2018_12_24_run02.mrc:102006997:1434", "ia:parakeets0000feye"], "title": "Parakeets", "number_of_pages": 82, "languages": [{"key": "/languages/eng"}], "local_id": ["urn:sfpl:31223036244870"], "publish_date": "June 1992", "works": [{"key": "/works/OL9530278W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.5 x 6.5 x 0.5 inches", "identifiers": {}, "ocaid": "parakeets0000feye", "isbn_10": ["0866221484"], "isbn_13": ["9780866221481"], "classifications": {}, "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-14T02:57:45.022439"}}
+/type/edition /books/OL11054507M 2 2011-04-30T10:10:49.521747 {"publishers": ["Inst of Management Accountants"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2011-04-30T10:10:49.521747"}, "title": "Applications of Direct Costing", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780866410175"], "physical_format": "Paperback", "isbn_10": ["0866410171"], "publish_date": "June 1980", "key": "/books/OL11054507M", "latest_revision": 2, "oclc_numbers": ["233272385"], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL1105611M 12 2022-12-08T20:12:21.003522 {"publishers": ["Pocket Books"], "identifiers": {"librarything": ["179538"], "goodreads": ["3511013"]}, "ia_box_id": ["IA140415"], "covers": [410035], "local_id": ["urn:sfpl:31223036847482", "urn:sfpl:31223037128619", "urn:bwbsku:W6-BCT-590", "urn:bwbsku:O7-CNW-287"], "ia_loaded_id": ["intimate00gage"], "lc_classifications": ["PS3557.A327 I55 1995"], "key": "/books/OL1105611M", "authors": [{"key": "/authors/OL585273A"}], "ocaid": "intimate00gage", "publish_places": ["New York"], "pagination": "498 p. ;", "source_records": ["ia:intimate00gage", "marc:marc_openlibraries_sanfranciscopubliclibrary/sfpl_chq_2018_12_24_run02.mrc:102361592:1614", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:139818618:461", "ia:intimate0000gage", "promise:bwb_daily_pallets_2021-06-28", "promise:bwb_daily_pallets_2021-03-08"], "title": "Intimate", "dewey_decimal_class": ["813/.54"], "number_of_pages": 498, "languages": [{"key": "/languages/eng"}], "lccn": ["94030761"], "isbn_10": ["0671897063"], "publish_date": "1995", "publish_country": "nyu", "by_statement": "Elizabeth Gage.", "works": [{"key": "/works/OL3502411W"}], "type": {"key": "/type/edition"}, "latest_revision": 12, "revision": 12, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-08T20:12:21.003522"}}
+/type/edition /books/OL11056172M 6 2022-12-11T23:37:48.904229 {"publishers": ["Center for International Relations"], "number_of_pages": 27, "weight": "4 ounces", "physical_format": "Paperback", "key": "/books/OL11056172M", "authors": [{"key": "/authors/OL969365A"}], "subjects": ["International Relations - General", "Politics - Current Events", "Politics/International Relations"], "isbn_13": ["9780866820691"], "title": "Technology & Strategic Forces (Cisa Working Paper Ser. ; No. 54)", "identifiers": {"goodreads": ["1199714"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0866820698"], "publish_date": "January 1986", "oclc_numbers": ["14282442"], "works": [{"key": "/works/OL4690891W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "11 x 8.5 x 0.2 inches", "source_records": ["marc:marc_columbia/Columbia-extract-20221130-001.mrc:603572047:1412"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-11T23:37:48.904229"}}
+/type/edition /books/OL11056243M 2 2013-05-29T19:51:29.638234 {"publishers": ["Winston Pr"], "last_modified": {"type": "/type/datetime", "value": "2013-05-29T19:51:29.638234"}, "title": "The Promise", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780866836258"], "physical_format": "Paperback", "isbn_10": ["086683625X"], "publish_date": "January 1982", "key": "/books/OL11056243M", "authors": [{"key": "/authors/OL216480A"}], "latest_revision": 2, "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL11056248M 4 2022-02-28T20:12:16.246284 {"publishers": ["Winston Press"], "subtitle": "A Photographic Meditation on Handel's Messiah", "title": "The Messiah ", "identifiers": {"librarything": ["8463595"]}, "physical_format": "Paperback", "isbn_10": ["0866836462"], "publish_date": "1978", "key": "/books/OL11056248M", "authors": [{"key": "/authors/OL3536181A"}], "works": [{"key": "/works/OL9531062W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780866836463"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-28T20:12:16.246284"}}
+/type/edition /books/OL11056333M 4 2010-04-24T18:13:31.894098 {"publishers": ["Intl Book Centre"], "physical_format": "Hardcover", "subtitle": "The Concise Arabic Dictionary", "key": "/books/OL11056333M", "weight": "2.6 pounds", "title": "Al-Wafi", "identifiers": {"goodreads": ["1052725"]}, "isbn_13": ["9780866850957"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0866850953"], "latest_revision": 4, "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:13:31.894098"}, "authors": [{"key": "/authors/OL3536211A"}], "publish_date": "June 1987", "works": [{"key": "/works/OL9531106W"}], "type": {"key": "/type/edition"}, "subjects": ["Reference"], "physical_dimensions": "9.9 x 6.9 x 1.5 inches", "revision": 4}
+/type/edition /books/OL11056386M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["International Book Centre, Inc."], "title": "Talkabout Animals", "isbn_13": ["9780866852319"], "isbn_10": ["086685231X"], "publish_date": "December 1987", "key": "/books/OL11056386M", "type": {"key": "/type/edition"}, "subjects": ["Animals", "Animals / Pets"], "revision": 1}
+/type/edition /books/OL1105662M 10 2023-01-06T16:25:51.814335 {"publishers": ["State University of New York Press"], "identifiers": {"librarything": ["1956920"], "goodreads": ["4331025"]}, "subtitle": "AIDS, reproductive technology, and ethics", "isbn_10": ["0791425177", "0791425185"], "covers": [3882775, 555977], "lc_classifications": ["RC607.A26 M877 1995", "RC607.A26M877 1995"], "key": "/books/OL1105662M", "authors": [{"key": "/authors/OL585296A"}], "publish_places": ["Albany"], "pagination": "viii, 185 p. ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:139864297:831", "ia:constructedbodya0000murp", "bwb:9780791425183", "bwb:9780791425176", "marc:marc_columbia/Columbia-extract-20221130-009.mrc:52384942:1912"], "title": "The constructed body", "dewey_decimal_class": ["176"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. [155]-178) and index."}, "number_of_pages": 185, "languages": [{"key": "/languages/eng"}], "lccn": ["94030815"], "subjects": ["AIDS (Disease) -- Moral and ethical aspects.", "Human reproductive technology -- Moral and ethical aspects."], "publish_date": "1995", "publish_country": "nyu", "by_statement": "Julien S. Murphy.", "works": [{"key": "/works/OL3502507W"}], "type": {"key": "/type/edition"}, "ocaid": "constructedbodya0000murp", "oclc_numbers": ["30914367"], "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2023-01-06T16:25:51.814335"}}
+/type/edition /books/OL11057080M 4 2010-04-24T18:13:31.894098 {"publishers": ["American Federation of Astrologers"], "identifiers": {"goodreads": ["3137904"]}, "weight": "10.4 ounces", "title": "Crisis Studies In Human Affairs", "number_of_pages": 106, "isbn_13": ["9780866904896"], "physical_format": "Paperback", "authors": [{"key": "/authors/OL3001551A"}], "isbn_10": ["0866904891"], "publish_date": "February 10, 1999", "key": "/books/OL11057080M", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:13:31.894098"}, "latest_revision": 4, "works": [{"key": "/works/OL8797636W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.7 x 8.4 x 0.3 inches", "revision": 4}
+/type/edition /books/OL11057142M 6 2022-12-07T01:12:04.852591 {"languages": [{"key": "/languages/eng"}], "number_of_pages": 271, "type": {"key": "/type/edition"}, "key": "/books/OL11057142M", "weight": "1.4 pounds", "publishers": ["John Deere Publishing"], "title": "Tractors", "identifiers": {"goodreads": ["2638795"]}, "isbn_13": ["9780866911320"], "edition_name": "4r.e. edition", "physical_format": "Paperback", "isbn_10": ["0866911324"], "publish_date": "June 1991", "authors": [{"key": "/authors/OL3536366A"}, {"key": "/authors/OL3536371A"}, {"key": "/authors/OL3536372A"}], "contributions": ["Thomas A Hoerner (Editor)", "John A Conrads (Editor)"], "subjects": ["Agricultural engineering & machinery", "Agriculture - General", "Technology & Industrial Arts", "Science/Mathematics"], "physical_dimensions": "11.2 x 9 x 0.8 inches", "works": [{"key": "/works/OL27690130W"}], "covers": [12674038], "ocaid": "tractors0000borg", "lc_classifications": ["TL233 .B65 1994"], "source_records": ["ia:tractors0000borg", "ia:tractors0000borg_g6t5", "promise:bwb_daily_pallets_2022-03-17"], "oclc_numbers": ["25215852"], "local_id": ["urn:bwbsku:P7-ATI-202"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-07T01:12:04.852591"}}
+/type/edition /books/OL1105731M 11 2021-07-24T05:55:02.020955 {"publishers": ["Cambridge University Press"], "identifiers": {"librarything": ["7916284"], "goodreads": ["2004820"]}, "isbn_10": ["0521470250"], "covers": [341309], "lc_classifications": ["QA246.5 .S48 1995"], "url": ["http://www.loc.gov/catdir/toc/cam023/94030889.html", "http://www.loc.gov/catdir/description/cam026/94030889.html"], "key": "/books/OL1105731M", "authors": [{"key": "/authors/OL585319A"}], "ocaid": "davenportschinze00shar", "publish_places": ["Cambridge", "New York"], "contributions": ["Agarwal, Pankaj K."], "uri_descriptions": ["Table of contents", "Publisher description"], "pagination": "xii, 372 p. :", "source_records": ["amazon:0521470250", "ia:davenportschinze00shar", "bwb:9780521470254", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:139927802:930", "ia:davenportschinze0000shar"], "title": "Davenport-Schinzel sequences and their geometric applications", "dewey_decimal_class": ["512/.72"], "notes": {"type": "/type/text", "value": "Includes bibliographical references and index."}, "number_of_pages": 372, "languages": [{"key": "/languages/eng"}], "lccn": ["94030889"], "subjects": ["Davenport-Schinzel sequences.", "Envelopes (Geometry)"], "publish_date": "1995", "publish_country": "enk", "by_statement": "Micha Sharir, Pankaj K. Agarwal.", "works": [{"key": "/works/OL3502628W"}], "type": {"key": "/type/edition"}, "uris": ["http://www.loc.gov/catdir/toc/cam023/94030889.html", "http://www.loc.gov/catdir/description/cam026/94030889.html"], "latest_revision": 11, "revision": 11, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2021-07-24T05:55:02.020955"}}
+/type/edition /books/OL11057617M 6 2011-04-26T07:33:14.133161 {"publishers": ["Quintessence Publishing (IL)"], "identifiers": {"goodreads": ["1384405"]}, "subtitle": "Quintessence of Dental Technology (Qdt Quintessence of Dental Technology)", "weight": "1.6 pounds", "covers": [5093434], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-26T07:33:14.133161"}, "latest_revision": 6, "key": "/books/OL11057617M", "authors": [{"key": "/authors/OL3252895A"}], "subjects": ["Dentistry / oral & maxillofacial medicine", "General", "Dentistry - General", "Medical", "Medical / Nursing"], "edition_name": "1 edition", "languages": [{"key": "/languages/eng"}], "title": "QDT 2007", "number_of_pages": 224, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780867154726"], "isbn_10": ["0867154721"], "publish_date": "February 2007", "oclc_numbers": ["150448798"], "works": [{"key": "/works/OL9183852W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "11.2 x 8.3 x 0.7 inches", "revision": 6}
+/type/edition /books/OL11057685M 6 2022-07-17T03:16:53.342309 {"publishers": ["St Anthony Messenger Pr"], "subtitle": "A Lectionary Based Christian Initiation Process Using Catholics Updates (Leaders edition)", "weight": "4.4 pounds", "physical_format": "Ring-bound", "key": "/books/OL11057685M", "authors": [{"key": "/authors/OL2905156A"}], "subjects": ["Prayerbooks - Christian", "Religion"], "edition_name": "Leaders Gd edition", "title": "Come and See ", "identifiers": {"goodreads": ["2980130"]}, "isbn_13": ["9780867164107"], "isbn_10": ["0867164107"], "publish_date": "January 1, 2000", "oclc_numbers": ["48705229"], "works": [{"key": "/works/OL8630902W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "11.2 x 11.1 x 2.7 inches", "source_records": ["bwb:9780867164107"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T03:16:53.342309"}}
+/type/edition /books/OL11057719M 12 2022-12-07T13:50:04.440916 {"publishers": ["Saint Anthony Messenger Press"], "number_of_pages": 282, "subtitle": "Changing the World With Faith", "weight": "12.8 ounces", "covers": [2671099], "physical_format": "Paperback", "key": "/books/OL11057719M", "authors": [{"key": "/authors/OL436685A"}], "subjects": ["Christianity - Catholic", "General", "Biography And Autobiography", "Roman Catholic Church", "Religion", "Religion - Catholicism", "Biography", "Christianity", "Heroes", "Liberty", "Religious aspects"], "isbn_13": ["9780867166712"], "source_records": ["bwb:9780867166712", "marc:marc_loc_2016/BooksAll.2016.part34.utf8:104356815:1117", "ia:8freedomheroesch0000hill", "promise:bwb_daily_pallets_2022-03-17"], "title": "8 Freedom Heroes", "identifiers": {"librarything": ["9293477"], "goodreads": ["4430094"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0867166711"], "publish_date": "June 14, 2007", "oclc_numbers": ["81942096"], "works": [{"key": "/works/OL2883482W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.2 x 5.5 x 0.8 inches", "lccn": ["2007003481"], "lc_classifications": ["BT810.3 .H55 2007", "BT810.3.H55 2007"], "ocaid": "8freedomheroesch0000hill", "local_id": ["urn:bwbsku:W7-AXE-540"], "latest_revision": 12, "revision": 12, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-07T13:50:04.440916"}}
+/type/edition /books/OL11058070M 3 2019-07-30T21:24:52.144869 {"publishers": ["Alpha Omega Publications (AZ)"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2019-07-30T21:24:52.144869"}, "title": "The World and You (Lifepac History & Geography Grade 1)", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780867175103"], "physical_format": "Paperback", "isbn_10": ["0867175109"], "publish_date": "March 2001", "key": "/books/OL11058070M", "latest_revision": 3, "oclc_numbers": ["53382900"], "works": [{"key": "/works/OL16060575W"}], "type": {"key": "/type/edition"}, "subjects": ["Home Schooling", "Religion - Christian Education - Home Schooling"], "revision": 3}
+/type/edition /books/OL11058287M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Spiral-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Home Builder Press"], "number_of_pages": 180, "isbn_13": ["9780867182453"], "isbn_10": ["0867182458"], "publish_date": "December 1986", "key": "/books/OL11058287M", "title": "The Builders Guide to Home Mortgages", "type": {"key": "/type/edition"}, "subjects": ["Construction - General", "Technology", "Technology & Industrial Arts"], "revision": 1}
+/type/edition /books/OL11058311M 9 2022-11-01T09:10:02.735243 {"identifiers": {"goodreads": ["4280620"]}, "title": "Scheduling With Microsoft Project 2000", "subtitle": "Unlocking the Power for Home Builders", "authors": [{"key": "/authors/OL386119A"}, {"key": "/authors/OL3536601A"}], "publish_date": "November 1, 2000", "publishers": ["Home Builder Press"], "covers": [2671138], "physical_format": "Paperback", "subjects": ["Construction - General", "Technology & Industrial Arts", "Data processing", "House construction", "Microsoft Project", "Production scheduling", "Business/Economics"], "isbn_13": ["9780867185034"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part01.utf8:30009531:868", "bwb:9780867185034", "ia:schedulingwithmi0000marc"], "lccn": ["00046556"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0867185031"], "oclc_numbers": ["45024414"], "type": {"key": "/type/edition"}, "lc_classifications": ["TH4812.M2365 2001"], "ocaid": "schedulingwithmi0000marc", "key": "/books/OL11058311M", "number_of_pages": 128, "works": [{"key": "/works/OL20978489W"}], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-01T09:10:02.735243"}}
+/type/edition /books/OL11058588M 6 2020-11-13T03:42:19.407288 {"publishers": ["Playboy Mass Market Paperbacks"], "subtitle": "Shock Trauma", "isbn_10": ["0867211423"], "physical_format": "Paperback", "lc_classifications": ["CPB Box no. 2986 vol. 13"], "latest_revision": 6, "key": "/books/OL11058588M", "authors": [{"key": "/authors/OL3536694A"}], "source_records": ["marc:marc_loc_updates/v38.i02.records.utf8:21778360:878", "marc:marc_loc_2016/BooksAll.2016.part37.utf8:86874637:878"], "title": "Karen Evans, M.D. No. 1", "lccn": ["2009665590"], "identifiers": {"goodreads": ["6577733"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780867211429"], "subjects": ["Fiction"], "publish_date": "September 1982", "last_modified": {"type": "/type/datetime", "value": "2020-11-13T03:42:19.407288"}, "works": [{"key": "/works/OL9531691W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL11058683M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["FAO Schwartz"], "title": "Jacob A Cat's Best Friend", "isbn_13": ["9780867241679"], "isbn_10": ["0867241675"], "publish_date": "1992", "key": "/books/OL11058683M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL11058849M 3 2011-04-29T20:33:32.841138 {"publishers": ["Chain Store Guide"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T20:33:32.841138"}, "weight": "5.3 pounds", "title": "DIRECTORY OF HOME CENTER OPERATORS AND HARDWARE CHAINS 2006 (Directory of Home Center Operators and Hardware Chains)", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780867300802"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0867300809"], "publish_date": "July 17, 2006", "key": "/books/OL11058849M", "authors": [{"key": "/authors/OL2932615A"}], "latest_revision": 3, "oclc_numbers": ["150358226"], "works": [{"key": "/works/OL8680006W"}], "type": {"key": "/type/edition"}, "subjects": ["Directories", "Reference"], "physical_dimensions": "11 x 8.5 x 2.2 inches", "revision": 3}
+/type/edition /books/OL11058914M 2 2009-12-15T00:58:25.466544 {"physical_format": "Paperback", "weight": "4.8 pounds", "title": "Directory of Foodservice Distributors 2003 (Directory of Food Service Distributors)", "isbn_10": ["0867304898"], "publishers": ["Chain Store Guide"], "isbn_13": ["9780867304893"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:58:25.466544"}, "publish_date": "May 2003", "key": "/books/OL11058914M", "authors": [{"key": "/authors/OL3536803A"}], "latest_revision": 2, "subjects": ["Yearbooks & Annuals", "Reference"], "works": [{"key": "/works/OL9531791W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "11 x 8.2 x 1.8 inches", "revision": 2}
+/type/edition /books/OL11059244M 3 2022-12-09T21:36:20.136982 {"publishers": ["Frank Schaffer Publications"], "physical_format": "Paperback", "title": "Opposites Color Trace Learn", "identifiers": {"librarything": ["8438628"]}, "isbn_13": ["9780867341645"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0867341645"], "publish_date": "August 2000", "key": "/books/OL11059244M", "type": {"key": "/type/edition"}, "subjects": ["General", "Education / Teaching"], "works": [{"key": "/works/OL31906991W"}], "local_id": ["urn:bwbsku:W6-BUF-886"], "source_records": ["promise:bwb_daily_pallets_2020-10-08"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T21:36:20.136982"}}
+/type/edition /books/OL11059492M 3 2022-12-07T03:48:05.489080 {"publishers": ["Frank Schaffer Publications"], "languages": [{"key": "/languages/eng"}], "subtitle": "Grade 8", "title": "Reading Comprehension 8", "number_of_pages": 32, "isbn_13": ["9780867349764"], "physical_format": "Paperback", "isbn_10": ["086734976X"], "publish_date": "March 1996", "key": "/books/OL11059492M", "oclc_numbers": ["44591774"], "type": {"key": "/type/edition"}, "subjects": ["Reading Skills", "Children's Books/Young Adult Misc. Nonfiction"], "works": [{"key": "/works/OL31400877W"}], "local_id": ["urn:bwbsku:W7-AGA-945"], "source_records": ["promise:bwb_daily_pallets_2022-03-17"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-07T03:48:05.489080"}}
+/type/edition /books/OL110594M 6 2020-12-02T10:58:53.615857 {"number_of_pages": 143, "lc_classifications": ["PG9049.28.E68 S27 1998"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part28.utf8:99976548:437"], "title": "Sarkans", "languages": [{"key": "/languages/lav"}], "publish_country": "lv ", "by_statement": "Gundega Reps\u030ce.", "oclc_numbers": ["41665623"], "type": {"key": "/type/edition"}, "publishers": ["Preses nams"], "key": "/books/OL110594M", "authors": [{"key": "/authors/OL74048A"}], "publish_places": ["Ri\u0304ga\u0304"], "pagination": "143 p. ;", "lccn": ["99230230"], "identifiers": {"goodreads": ["2184952"], "librarything": ["4905986"]}, "isbn_10": ["9984003477"], "publish_date": "1998", "works": [{"key": "/works/OL853652W"}], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-02T10:58:53.615857"}}
+/type/edition /books/OL11059564M 5 2021-03-08T13:43:07.332798 {"publishers": ["Schwartz Publishing Group"], "title": "The Pritikin Program For Diet & Exercise", "identifiers": {"goodreads": ["4941611"]}, "physical_format": "Hardcover", "isbn_10": ["0867530049"], "publish_date": "1980", "key": "/books/OL11059564M", "authors": [{"key": "/authors/OL3536884A"}], "oclc_numbers": ["27585493"], "works": [{"key": "/works/OL4828197W"}], "type": {"key": "/type/edition"}, "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-03-08T13:43:07.332798"}}
+/type/edition /books/OL1105990M 10 2022-10-31T02:44:32.882065 {"publishers": ["Cambridge University Press"], "identifiers": {"goodreads": ["1523726", "1081429"]}, "isbn_10": ["0521410622", "0521422647"], "subject_place": ["Tropics."], "covers": [338197], "lc_classifications": ["SB176.T76 N67 1995"], "url": ["http://www.loc.gov/catdir/description/cam026/94031156.html"], "key": "/books/OL1105990M", "authors": [{"key": "/authors/OL585402A"}], "publish_places": ["Cambridge", "New York"], "contributions": ["Pearson, C. J.", "Searle, P. G. E."], "uri_descriptions": ["Publisher description"], "edition_name": "2nd ed.", "pagination": "x, 430 p. :", "source_records": ["marc:marc_records_scriblio_net/part24.dat:65654531:1009", "marc:marc_loc_updates/v35.i53.records.utf8:1335608:1111", "bwb:9780521410625", "bwb:9780521422642", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:140162606:1111", "amazon:0521410622"], "title": "The ecology of tropical food crops", "dewey_decimal_class": ["630/.2/5745264"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. [336]-412) and index."}, "number_of_pages": 430, "languages": [{"key": "/languages/eng"}], "lccn": ["94031156"], "subjects": ["Food crops -- Ecology -- Tropics", "Tropical crops -- Ecology"], "publish_date": "1995", "publish_country": "enk", "by_statement": "M.J.T. Norman, C.J. Pearson & P.G.E. Searle.", "works": [{"key": "/works/OL3502951W"}], "type": {"key": "/type/edition"}, "uris": ["http://www.loc.gov/catdir/description/cam026/94031156.html"], "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-31T02:44:32.882065"}}
+/type/edition /books/OL11059932M 2 2011-04-22T20:54:51.638010 {"publishers": ["Nasou / Via Afrika"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-22T20:54:51.638010"}, "title": "Basics in Sport", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780868171012"], "isbn_10": ["0868171018"], "publish_date": "November 25, 1992", "key": "/books/OL11059932M", "authors": [{"key": "/authors/OL3537068A"}, {"key": "/authors/OL3537069A"}], "latest_revision": 2, "oclc_numbers": ["122318981"], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL11059973M 3 2011-04-22T20:22:46.580899 {"publishers": ["Currency Press Pty Ltd"], "last_modified": {"type": "/type/datetime", "value": "2011-04-22T20:22:46.580899"}, "weight": "11.4 ounces", "title": "Learning from Life (PLAYS)", "number_of_pages": 208, "isbn_13": ["9780868191201"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0868191205"], "publish_date": "November 1, 1985", "key": "/books/OL11059973M", "authors": [{"key": "/authors/OL3054292A"}], "latest_revision": 3, "oclc_numbers": ["16995872"], "works": [{"key": "/works/OL8880634W"}], "type": {"key": "/type/edition"}, "subjects": ["Drama texts: from c 1900 -"], "physical_dimensions": "7.8 x 5.1 x 0.5 inches", "revision": 3}
+/type/edition /books/OL11060156M 4 2010-04-13T06:23:42.172377 {"publishers": ["Currency Press"], "number_of_pages": 224, "subtitle": "Reflections (FILM) (FILM)", "weight": "1 pounds", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0868195499"], "title": "Paul Cox, Memoirs", "isbn_13": ["9780868195490"], "covers": [2671348], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:23:42.172377"}, "latest_revision": 4, "key": "/books/OL11060156M", "authors": [{"key": "/authors/OL2045387A"}], "publish_date": "May 18, 1998", "works": [{"key": "/works/OL7164974W"}], "type": {"key": "/type/edition"}, "subjects": ["Biography: film, television & music", "Individual film directors, film-makers", "Individual Directors And Producers", "Biography & Autobiography", "Biography / Autobiography", "Biography/Autobiography", "Entertainment & Performing Arts - Movie Directors", "Film & Video - Direction & Production", "Popular Culture - General", "Entertainment", "Entertainment & Performing Arts - General"], "physical_dimensions": "8.4 x 6 x 0.6 inches", "revision": 4}
+/type/edition /books/OL11060808M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "subtitle": "Pupils' Book - Grade Two", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["College Press Publishers Pvt Ltd"], "number_of_pages": 64, "isbn_13": ["9780869256749"], "isbn_10": ["0869256742"], "key": "/books/OL11060808M", "title": "New Ventures Religious Stories - Life Worth Living", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL11060882M 4 2010-04-13T06:23:42.172377 {"publishers": ["Balkema, A A Rotterdam Boston"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:23:42.172377"}, "title": "Exploration for Rock Engineering Volume 1", "covers": [5388072, 5305894, 5093629], "isbn_13": ["9780869610893"], "isbn_10": ["0869610899"], "publish_date": "January 1, 1976", "key": "/books/OL11060882M", "authors": [{"key": "/authors/OL1008771A"}], "latest_revision": 4, "works": [{"key": "/works/OL4794434W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL11060913M 6 2022-05-25T03:07:37.644905 {"publishers": ["Ravan Press"], "identifiers": {"goodreads": ["479615"]}, "subtitle": "South Africa's Negotiated Settlement (South African Review ; 7)", "key": "/books/OL11060913M", "weight": "11.2 ounces", "title": "The Small Miracle", "type": {"key": "/type/edition"}, "number_of_pages": 350, "isbn_13": ["9780869754535"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["086975453X"], "authors": [{"key": "/authors/OL534140A"}], "publish_date": "March 1995", "works": [{"key": "/works/OL3273137W"}], "physical_format": "Paperback", "subjects": ["Central government policies", "Political structure & processes", "Republic of South Africa", "c 1990 to c 2000"], "physical_dimensions": "8.5 x 5.5 x 0.8 inches", "source_records": ["bwb:9780869754535"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T03:07:37.644905"}}
+/type/edition /books/OL11061209M 2 2011-04-28T13:09:47.492697 {"publishers": ["McGraw-Hill"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-28T13:09:47.492697"}, "title": "Developing Child Student Guide", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780870023255"], "isbn_10": ["087002325X"], "publish_date": "June 1980", "key": "/books/OL11061209M", "latest_revision": 2, "oclc_numbers": ["7752423"], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL11061251M 5 2011-04-26T05:10:48.514764 {"publishers": ["Caxton Printers"], "identifiers": {"goodreads": ["5689711"]}, "subtitle": "When laws oppress", "physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2011-04-26T05:10:48.514764"}, "latest_revision": 5, "key": "/books/OL11061251M", "authors": [{"key": "/authors/OL1716739A"}], "subjects": ["Metropolitan government", "Public Administration Clearing House", "United States"], "isbn_13": ["9780870040634"], "title": "Blame Metro ... when urban renewal strikes!", "number_of_pages": 175, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0870040634"], "publish_date": "1972", "oclc_numbers": ["29896614"], "works": [{"key": "/works/OL6469737W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL11061355M 3 2011-04-29T03:32:33.996027 {"publishers": ["Fairchild Publications"], "last_modified": {"type": "/type/datetime", "value": "2011-04-29T03:32:33.996027"}, "title": "Home Textiles", "number_of_pages": 55, "isbn_13": ["9780870054860"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0870054864"], "publish_date": "February 1984", "key": "/books/OL11061355M", "authors": [{"key": "/authors/OL3266408A"}], "latest_revision": 3, "oclc_numbers": ["11385184"], "works": [{"key": "/works/OL9201429W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "revision": 3}
+/type/edition /books/OL11062217M 5 2011-04-28T07:49:42.858940 {"publishers": ["Pacific Book Pub"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-28T07:49:42.858940"}, "title": "Genesis of American Nationalism", "identifiers": {"goodreads": ["2840331"]}, "isbn_13": ["9780870152399"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0870152394"], "publish_date": "February 2002", "key": "/books/OL11062217M", "authors": [{"key": "/authors/OL1809692A"}], "latest_revision": 5, "oclc_numbers": ["123046629"], "works": [{"key": "/works/OL6692620W"}], "type": {"key": "/type/edition"}, "subjects": ["Nationalism", "National characteristics, American", "United States"], "revision": 5}
+/type/edition /books/OL11062265M 5 2011-08-11T22:12:42.755682 {"publishers": ["Casino Pr"], "subtitle": "Handicapping Advice from Today's Leading Experts", "ia_box_id": ["IA109710"], "last_modified": {"type": "/type/datetime", "value": "2011-08-11T22:12:42.755682"}, "title": "Best of Thoroughbred Handicapping", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780870190285"], "covers": [6382282], "physical_format": "Paperback", "isbn_10": ["0870190288"], "publish_date": "September 1984", "key": "/books/OL11062265M", "authors": [{"key": "/authors/OL2651673A"}], "ocaid": "bestofthoroughbr00quin", "latest_revision": 5, "works": [{"key": "/works/OL7949238W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL11062414M 7 2022-12-04T15:02:36.473734 {"publishers": ["Univ of Massachusetts Pr"], "physical_format": "Paperback", "subtitle": "Poems, New and Selected", "title": "Come Out into the Sun", "identifiers": {"goodreads": ["1486124"]}, "isbn_13": ["9780870230578"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0870230573"], "publish_date": "June 1968", "key": "/books/OL11062414M", "authors": [{"key": "/authors/OL2322104A"}], "works": [{"key": "/works/OL7578923W"}], "type": {"key": "/type/edition"}, "subjects": ["Single Author", "Poetry"], "source_records": ["bwb:9780870230578", "promise:bwb_daily_pallets_2022-08-30"], "local_id": ["urn:bwbsku:O8-ABC-980"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T15:02:36.473734"}}
+/type/edition /books/OL11062854M 3 2010-04-13T06:23:42.172377 {"publishers": ["Japan Pubns"], "number_of_pages": 80, "weight": "15.2 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0870409875"], "title": "4 Wheel Drive Paper Cut Out Vehicles", "isbn_13": ["9780870409875"], "covers": [2671648], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:23:42.172377"}, "latest_revision": 3, "key": "/books/OL11062854M", "authors": [{"key": "/authors/OL3538010A"}], "publish_date": "October 1997", "works": [{"key": "/works/OL9533076W"}], "type": {"key": "/type/edition"}, "subjects": ["Models & model-making", "Paper crafts", "Crafts & Hobbies", "Crafts / Hobbies", "Hobbies/Crafts", "Papercrafts - Paper Models", "Papercrafts"], "physical_dimensions": "11.5 x 9 x 0.2 inches", "revision": 3}
+/type/edition /books/OL11062870M 3 2023-01-07T20:25:22.166285 {"physical_format": "Paperback", "publishers": ["Lange Medical Publications"], "number_of_pages": 415, "isbn_13": ["9780870410819"], "isbn_10": ["0870410814"], "publish_date": "August 1982", "key": "/books/OL11062870M", "title": "Principles of Clinical Electrocardiography", "type": {"key": "/type/edition"}, "subjects": ["Electrocardiography"], "works": [{"key": "/works/OL31851022W"}], "local_id": ["urn:bwbsku:W6-AKO-820"], "source_records": ["promise:bwb_daily_pallets_2020-11-24", "marc:marc_columbia/Columbia-extract-20221130-009.mrc:238568520:1053"], "oclc_numbers": ["5046314"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2023-01-07T20:25:22.166285"}}
+/type/edition /books/OL11062942M 5 2022-11-11T02:04:12.781869 {"publishers": ["Univ of Tennessee Pr"], "key": "/books/OL11062942M", "title": "Intellectual Life in Jefferson's Virginia, 1790-18", "isbn_13": ["9780870491443"], "physical_format": "Hardcover", "isbn_10": ["087049144X"], "publish_date": "June 1973", "authors": [{"key": "/authors/OL1799659A"}], "works": [{"key": "/works/OL6659984W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780870491443", "marc:marc_uic/UIC_2022.mrc:152781440:1862", "marc:marc_scms/20220805_ADAM_MARC_records.mrc:32164405:1506"], "lc_classifications": ["F230 .D3 1972"], "oclc_numbers": ["4101831"], "local_id": ["urn:scms:0188500070720"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-11T02:04:12.781869"}}
+/type/edition /books/OL11063584M 6 2021-12-30T02:20:46.697687 {"publishers": ["Arthur H. Clark Company"], "identifiers": {"goodreads": ["6154723"]}, "subtitle": "A History and Recollections of an Old California Rancho", "physical_format": "Hardcover", "key": "/books/OL11063584M", "authors": [{"key": "/authors/OL3538185A"}], "subjects": ["United States - State & Local - General", "California - Local History", "History - U.S.", "History: World"], "isbn_13": ["9780870622175"], "title": "Santa Cruz Island", "number_of_pages": 192, "languages": [{"key": "/languages/eng"}], "isbn_10": ["087062217X"], "publish_date": "March 1993", "oclc_numbers": ["28039281"], "works": [{"key": "/works/OL9533281W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780870622175"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-30T02:20:46.697687"}}
+/type/edition /books/OL11063757M 6 2020-05-16T06:28:44.953744 {"publishers": ["Globe Book Co"], "covers": [9537349], "physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2020-05-16T06:28:44.953744"}, "latest_revision": 6, "key": "/books/OL11063757M", "authors": [{"key": "/authors/OL1072453A"}], "ocaid": "newexploringamer0000schw", "subjects": ["History", "United States"], "languages": [{"key": "/languages/eng"}], "source_records": ["ia:newexploringamer0000schw"], "title": "The new exploring American history", "number_of_pages": 536, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780870655296"], "isbn_10": ["0870655299"], "publish_date": "1974", "oclc_numbers": ["2197373"], "works": [{"key": "/works/OL4967853W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL11064234M 7 2011-04-29T23:51:48.861487 {"publishers": ["Holloway House Publishing Company"], "weight": "5 ounces", "covers": [2671675], "physical_format": "Mass Market Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T23:51:48.861487"}, "latest_revision": 7, "key": "/books/OL11064234M", "authors": [{"key": "/authors/OL242155A"}], "subjects": ["General", "African American Novel And Short Story", "Popular American Fiction", "Fiction", "Children's Books/Ages 4-8 Fiction"], "isbn_13": ["9780870679285"], "title": "Coming of Age", "identifiers": {"librarything": ["8762352"], "goodreads": ["1455932"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0870679287"], "publish_date": "July 1996", "oclc_numbers": ["25035895"], "works": [{"key": "/works/OL2010381W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "6.7 x 4.1 x 0.8 inches", "revision": 7}
+/type/edition /books/OL11064442M 6 2020-05-22T02:10:56.969545 {"publishers": ["Meusum of Modern Art"], "subtitle": "vol. 06: An Alternative Art", "covers": [9950846], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2020-05-22T02:10:56.969545"}, "latest_revision": 6, "key": "/books/OL11064442M", "ocaid": "meaningsofmodern06meus", "publish_places": ["New York, USA"], "languages": [{"key": "/languages/eng"}], "classifications": {}, "title": "The Meanings of Modern Art", "identifiers": {"librarything": ["6466179"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780870704833"], "isbn_10": ["0870704834"], "publish_date": "1975", "works": [{"key": "/works/OL17333124W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL1106458M 9 2023-01-06T16:25:48.640644 {"other_titles": ["Handbook of adolescent psychopathology."], "publishers": ["Lexington Books"], "identifiers": {"librarything": ["2492035"], "goodreads": ["1375599"]}, "subtitle": "a guide to diagnosis and treatment", "isbn_10": ["0669276774"], "series": ["Series in scientific foundations of clinical and counseling psychology", "Scientific foundations of clinical counseling and psychology."], "covers": [400037], "lc_classifications": ["RJ503 .H268 1995"], "key": "/books/OL1106458M", "publish_places": ["New York"], "contributions": ["Van Hasselt, Vincent B.", "Hersen, Michel."], "pagination": "viii, 773 p. ;", "source_records": ["marc:marc_records_scriblio_net/part24.dat:66069289:1077", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:140576578:1068", "ia:handbookofadoles0000unse_i7r6", "promise:bwb_daily_pallets_2022-03-17", "marc:marc_columbia/Columbia-extract-20221130-009.mrc:52373547:3670"], "title": "Handbook of adolescent psycopathology [sic]", "dewey_decimal_class": ["616.89/022"], "notes": {"type": "/type/text", "value": "Includes bibliographical references and index."}, "number_of_pages": 773, "languages": [{"key": "/languages/eng"}], "lccn": ["94031679"], "subjects": ["Adolescent psychopathology.", "Mental Disorders -- in adolescence.", "Adoescent Behavior."], "publish_date": "1995", "publish_country": "nyu", "by_statement": "edited by Vincent B. Van Hasselt, Michel Hersen.", "works": [{"key": "/works/OL19619993W"}], "type": {"key": "/type/edition"}, "ocaid": "handbookofadoles0000unse_i7r6", "local_id": ["urn:bwbsku:065-ABA-958"], "oclc_numbers": ["30973022"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2023-01-06T16:25:48.640644"}}
+/type/edition /books/OL11064780M 4 2011-05-04T04:22:25.921208 {"publishers": ["D.C.Heath and Company"], "last_modified": {"type": "/type/datetime", "value": "2011-05-04T04:22:25.921208"}, "title": "French for Fluency (Grammaire Active, Lesson Quizzes Sampler, Tapescript/Laboratory Manual)", "identifiers": {"goodreads": ["3630502"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0669223948"], "publish_date": "1990", "key": "/books/OL11064780M", "authors": [{"key": "/authors/OL594992A"}, {"key": "/authors/OL1552233A"}], "latest_revision": 4, "works": [{"key": "/works/OL15014366W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL11065287M 2 2011-04-30T09:44:52.672480 {"publishers": ["D C Heath & Co"], "languages": [{"key": "/languages/eng"}], "subtitle": "Theme Anthology (Heath Middle Level Literature)", "weight": "8.8 ounces", "title": "Who's Who?", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780669320961"], "edition_name": "Student edition", "physical_format": "Paperback", "isbn_10": ["066932096X"], "publish_date": "January 1995", "key": "/books/OL11065287M", "last_modified": {"type": "/type/datetime", "value": "2011-04-30T09:44:52.672480"}, "latest_revision": 2, "oclc_numbers": ["34999832"], "type": {"key": "/type/edition"}, "subjects": ["Short Stories", "Juvenile Fiction", "Children: Grades 4-6"], "physical_dimensions": "9.6 x 7.7 x 0.3 inches", "revision": 2}
+/type/edition /books/OL11065289M 3 2022-12-08T06:19:41.742720 {"isbn_13": ["9780669320985"], "physical_format": "Paperback", "subtitle": "Theme Anthology (Heath Middle Level Literature)", "publishers": ["D C Heath & Co"], "title": "All Together", "edition_name": "Student edition", "isbn_10": ["0669320986"], "publish_date": "January 1995", "key": "/books/OL11065289M", "type": {"key": "/type/edition"}, "subjects": ["Short Stories", "Juvenile Fiction", "Children: Young Adult (Gr. 7-9)"], "works": [{"key": "/works/OL24829943W"}], "covers": [11642969], "ocaid": "heathmiddlelevel0000unse_p7s1", "lc_classifications": ["E2 .H80.42 Grade 7"], "source_records": ["ia:heathmiddlelevel0000unse_p7s1", "promise:bwb_daily_pallets_2021-06-21"], "local_id": ["urn:bwbsku:P7-BXQ-540"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-08T06:19:41.742720"}}
+/type/edition /books/OL1106544M 10 2021-01-23T11:54:18.169241 {"publishers": ["Sage Publications"], "number_of_pages": 152, "subtitle": "violence by sexual offenders, batterers, and child abusers", "isbn_10": ["0803937466", "0803937474"], "series": ["Interpersonal violence : the practice series", "Interpersonal violence."], "covers": [4690626, 3883387, 1516012], "lc_classifications": ["RC569.5.V55 A87 1995", "RC569.5.V55A87 1995"], "key": "/books/OL1106544M", "publish_places": ["Thousand Oaks, Calif"], "contributions": ["Campbell, Jacquelyn."], "pagination": "viii, 152 p. :", "source_records": ["marc:marc_records_scriblio_net/part24.dat:66146092:925", "bwb:9780803937475", "bwb:9780803937468", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:140652177:1128", "ia:assessingdangero0000unse_e3l7", "ia:assessingdangero0000unse_h0j5"], "title": "Assessing dangerousness", "dewey_decimal_class": ["616.85/82/00112"], "notes": {"type": "/type/text", "value": "Includes bibliographical references and indexes."}, "identifiers": {"goodreads": ["5279666"]}, "languages": [{"key": "/languages/eng"}], "lccn": ["94031772"], "subjects": ["Violence -- Forecasting.", "Family violence -- Forecasting.", "Sex crimes -- Forecasting."], "publish_date": "1995", "publish_country": "cau", "by_statement": "edited by Jacquelyn C. Campbell.", "works": [{"key": "/works/OL18869215W"}], "type": {"key": "/type/edition"}, "ocaid": "assessingdangero0000unse_e3l7", "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2021-01-23T11:54:18.169241"}}
+/type/edition /books/OL11066011M 2 2010-08-17T05:28:11.508099 {"publishers": ["Great Source Education Group"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-08-17T05:28:11.508099"}, "title": "Let's Eat! (Images)", "identifiers": {"librarything": ["1029228"]}, "isbn_13": ["9780669458206"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0669458201"], "publish_date": "January 2006", "key": "/books/OL11066011M", "latest_revision": 2, "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL11066216M 2 2011-04-28T14:29:48.588869 {"publishers": ["Great Source Education Group"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2011-04-28T14:29:48.588869"}, "title": "Writers Inc", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780669471977"], "physical_format": "Hardcover", "isbn_10": ["0669471976"], "publish_date": "January 2006", "key": "/books/OL11066216M", "latest_revision": 2, "oclc_numbers": ["664671938"], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL11066393M 2 2011-04-29T13:33:51.043321 {"publishers": ["Great Source Education Group"], "languages": [{"key": "/languages/eng"}], "subtitle": "Reading", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T13:33:51.043321"}, "title": "Summer Success", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780669485783"], "physical_format": "Hardcover", "isbn_10": ["0669485780"], "publish_date": "January 2006", "key": "/books/OL11066393M", "authors": [{"key": "/authors/OL956610A"}, {"key": "/authors/OL234658A"}, {"key": "/authors/OL265119A"}], "latest_revision": 2, "oclc_numbers": ["664670479"], "type": {"key": "/type/edition"}, "subjects": ["Language Arts - General"], "revision": 2}
+/type/edition /books/OL11066875M 3 2011-04-26T00:42:17.341185 {"publishers": ["Great Source Education Group"], "physical_format": "Hardcover", "subtitle": "Skills and Strategies Instruction", "last_modified": {"type": "/type/datetime", "value": "2011-04-26T00:42:17.341185"}, "title": "Lessons in Literacy", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780669522204"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0669522201"], "publish_date": "January 2006", "key": "/books/OL11066875M", "authors": [{"key": "/authors/OL538289A"}], "latest_revision": 3, "oclc_numbers": ["664669708"], "works": [{"key": "/works/OL3291654W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL1106700M 6 2020-11-18T12:58:01.038933 {"publishers": ["Hanley & Belfus", "North American and worldwide sales and distribution by Mosby"], "number_of_pages": 475, "isbn_10": ["1560531053"], "covers": [3882976], "lc_classifications": ["RC48 .P736 1995"], "latest_revision": 6, "key": "/books/OL1106700M", "publish_places": ["Philadelphia", "St. Louis"], "contributions": ["Mladenovic, Jeanette, 1949-"], "pagination": "xvii, 475 p. :", "source_records": ["marc:marc_records_scriblio_net/part24.dat:66283326:927", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:140785104:927"], "title": "Primary care secrets", "dewey_decimal_class": ["616/.0076"], "notes": {"type": "/type/text", "value": "Includes bibliographical references and index."}, "identifiers": {"librarything": ["6961891"]}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["94031931"], "subjects": ["Internal medicine -- Miscellanea.", "Primary care (Medicine) -- Miscellanea.", "Primary Health Care -- examination questions.", "Internal Medicine -- examination questions."], "publish_date": "1995", "publish_country": "pau", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T12:58:01.038933"}, "by_statement": "[edited by] Jeanette Mladenovic.", "oclc_numbers": ["30973965"], "works": [{"key": "/works/OL19501946W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL11067027M 2 2009-12-15T00:58:30.269821 {"publishers": ["Saxon House"], "title": "Research into Retailing and Distribution", "isbn_10": ["0669912565"], "isbn_13": ["9780669912562"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:58:30.269821"}, "publish_date": "June 1980", "key": "/books/OL11067027M", "authors": [{"key": "/authors/OL3538654A"}], "latest_revision": 2, "subjects": ["Business/Economics"], "works": [{"key": "/works/OL9533815W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL11067395M 11 2022-12-04T05:58:08.572588 {"publishers": ["Viking Juvenile"], "identifiers": {"goodreads": ["2148478"], "librarything": ["4891271"]}, "subtitle": "The Collectors (Cork and Fuzz)", "weight": "8.5 ounces", "isbn_10": ["0670062863"], "covers": [2547007], "local_id": ["urn:sfpl:31223084631234", "urn:sfpl:31223084631150", "urn:sfpl:31223084631226", "urn:sfpl:31223084631200", "urn:sfpl:31223084631184", "urn:sfpl:31223084631176", "urn:bwbsku:T2-DYS-978"], "physical_format": "Hardcover", "key": "/books/OL11067395M", "authors": [{"key": "/authors/OL39740A"}], "contributions": ["Lisa McCue (Illustrator)"], "isbn_13": ["9780670062867"], "source_records": ["amazon:0670062863", "marc:marc_openlibraries_sanfranciscopubliclibrary/sfpl_chq_2018_12_24_run03.mrc:271828916:3538", "bwb:9780670062867", "marc:marc_loc_2016/BooksAll.2016.part34.utf8:122791799:1618", "promise:bwb_daily_pallets_2022-11-17"], "title": "Cork and Fuzz", "number_of_pages": 32, "languages": [{"key": "/languages/eng"}], "subjects": ["Juvenile Fiction", "Children's Books/Ages 4-8 Fiction", "Children: Grades 1-2", "Animals - General", "Social Issues - Friendship", "Juvenile Fiction / Animals / General", "Best friends", "Collectors and collecting", "Fiction", "Opossums"], "publish_date": "March 13, 2008", "oclc_numbers": ["137244614"], "works": [{"key": "/works/OL78898W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.3 x 6.2 x 0.5 inches", "lccn": ["2007017900"], "lc_classifications": ["PZ7.C342 Cot 2008"], "latest_revision": 11, "revision": 11, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T05:58:08.572588"}}
+/type/edition /books/OL11068017M 5 2022-12-17T14:42:48.481863 {"publishers": ["Studio"], "title": "Japanese Flower Arranging", "identifiers": {"goodreads": ["3243346"]}, "isbn_13": ["9780670405817"], "physical_format": "Hardcover", "isbn_10": ["0670405817"], "publish_date": "January 1, 1960", "key": "/books/OL11068017M", "authors": [{"key": "/authors/OL2067220A"}], "works": [{"key": "/works/OL7200203W"}], "type": {"key": "/type/edition"}, "subjects": ["Crafts & Hobbies / General"], "source_records": ["bwb:9780670405817"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T14:42:48.481863"}}
+/type/edition /books/OL11068164M 4 2022-12-17T12:49:52.932105 {"publishers": ["Studio"], "physical_format": "Hardcover", "title": "Modern Publicity", "identifiers": {"librarything": ["9671608"]}, "isbn_13": ["9780670483822"], "isbn_10": ["0670483826"], "publish_date": "December 8, 1970", "key": "/books/OL11068164M", "authors": [{"key": "/authors/OL2140130A"}], "works": [{"key": "/works/OL7296714W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780670483822"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T12:49:52.932105"}}
+/type/edition /books/OL11068276M 6 2022-12-17T12:04:41.877848 {"publishers": ["Viking Juvenile"], "physical_format": "Hardcover", "title": "Pawnee", "isbn_10": ["0670544108"], "identifiers": {"goodreads": ["7230302"]}, "covers": [6284162], "isbn_13": ["9780670544103"], "publish_date": "January 1, 1950", "key": "/books/OL11068276M", "authors": [{"key": "/authors/OL2747063A"}], "works": [{"key": "/works/OL8255446W"}], "type": {"key": "/type/edition"}, "subjects": ["Juvenile Fiction / General"], "source_records": ["bwb:9780670544103"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T12:04:41.877848"}}
+/type/edition /books/OL11068601M 4 2022-12-17T14:44:12.308889 {"publishers": ["Viking Adult"], "physical_format": "Hardcover", "title": "Venus in the Kitchen", "isbn_13": ["9780670745142"], "isbn_10": ["0670745146"], "publish_date": "January 1, 1953", "key": "/books/OL11068601M", "authors": [{"key": "/authors/OL540493A"}], "works": [{"key": "/works/OL4103625W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780670745142"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T14:44:12.308889"}}
+/type/edition /books/OL11068619M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Hardcover", "subtitle": "A Truly English Art", "weight": "20 pounds", "publishers": ["The Studio Publications"], "number_of_pages": 127, "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780670750771"], "isbn_10": ["0670750778"], "publish_date": "1952", "key": "/books/OL11068619M", "authors": [{"key": "/authors/OL2438207A"}], "title": "Water Colour", "type": {"key": "/type/edition"}, "physical_dimensions": "20 x 20 x 20 inches", "revision": 1}
+/type/edition /books/OL1106898M 11 2022-10-27T18:53:28.387215 {"publishers": ["Longman Scientific & Technical", "Wiley & Sons"], "identifiers": {"goodreads": ["4052647"]}, "isbn_10": ["0582218632", "0470234563"], "covers": [3883501, 1287473], "lc_classifications": ["QD476 .I846 1995", "QD476.I846 1995"], "key": "/books/OL1106898M", "authors": [{"key": "/authors/OL585734A"}], "ocaid": "physicalorganicc00neil", "publish_places": ["Burnt Mill, Harlow, Essex, England", "New York, N.Y"], "languages": [{"key": "/languages/eng"}], "pagination": "xxxiv, 877 p. :", "source_records": ["marc:marc_records_scriblio_net/part24.dat:66455503:750", "marc:marc_loc_updates/v35.i19.records.utf8:3069250:739", "bwb:9780582218635", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:140958153:739", "bwb:9780470234563", "amazon:0582218632"], "title": "Physical organic chemistry", "dewey_decimal_class": ["547.1/3"], "notes": {"type": "/type/text", "value": "Includes bibliographical references and index."}, "number_of_pages": 877, "edition_name": "2nd ed.", "lccn": ["94032137"], "subjects": ["Chemistry, Physical organic"], "publish_date": "1995", "publish_country": "enk", "by_statement": "Neil S. Isaacs.", "works": [{"key": "/works/OL3504594W"}], "type": {"key": "/type/edition"}, "latest_revision": 11, "revision": 11, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-27T18:53:28.387215"}}
+/type/edition /books/OL11069061M 4 2022-12-17T14:27:49.655193 {"publishers": ["Viking Juvenile"], "weight": "3.5 ounces", "edition_name": "Board edition", "physical_format": "Board book", "key": "/books/OL11069061M", "authors": [{"key": "/authors/OL333292A"}], "subjects": ["General", "Juvenile Fiction / General", "Children's Books/Baby-Preschool", "Children: Preschool"], "isbn_13": ["9780670859382"], "title": "Let's Eat", "number_of_pages": 1, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0670859389"], "publish_date": "May 1, 1995", "oclc_numbers": ["32345115"], "works": [{"key": "/works/OL2419816W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "20 x 20 x 20 inches", "source_records": ["bwb:9780670859382"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T14:27:49.655193"}}
+/type/edition /books/OL11069283M 1 2008-04-30T09:38:13.731961 {"physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Penguin USA (Juv)"], "title": "Paddy & Mr. Punch", "isbn_13": ["9780670990955"], "isbn_10": ["0670990957"], "publish_date": "May 1994", "key": "/books/OL11069283M", "type": {"key": "/type/edition"}, "subjects": ["Civilization", "England", "English influences", "Ireland", "Irish influences"], "revision": 1}
+/type/edition /books/OL11069456M 3 2010-08-17T05:31:33.898117 {"publishers": ["Simon & Schuster"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2010-08-17T05:31:33.898117"}, "title": "Addams and Evil", "identifiers": {"librarything": ["3280971"]}, "isbn_13": ["9780671009007"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Hardcover", "isbn_10": ["0671009001"], "publish_date": "January 1, 1901", "key": "/books/OL11069456M", "authors": [{"key": "/authors/OL2748041A"}], "latest_revision": 3, "works": [{"key": "/works/OL8258977W"}], "type": {"key": "/type/edition"}, "subjects": ["Non-Classifiable"], "revision": 3}
+/type/edition /books/OL11069559M 9 2021-08-15T16:32:09.035516 {"publishers": ["Simon Pulse"], "number_of_pages": 128, "weight": "3.2 ounces", "covers": [5094150], "physical_format": "Paperback", "key": "/books/OL11069559M", "authors": [{"key": "/authors/OL634935A"}], "subjects": ["Performing Arts - Film", "Juvenile Fiction / General", "Children's Books/Ages 9-12 Nonfiction", "Children: Grades 4-6"], "isbn_13": ["9780671016814"], "source_records": ["amazon:0671016814", "marc:marc_loc_updates/v38.i33.records.utf8:21204343:743", "marc:marc_loc_2016/BooksAll.2016.part28.utf8:146822247:750", "ia:hollywooddinosau0000cohe"], "title": "Hollywood Dinosaur", "identifiers": {"librarything": ["5309488"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0671016814"], "publish_date": "June 1, 1997", "oclc_numbers": ["37397942"], "works": [{"key": "/works/OL3678581W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "7 x 4.2 x 0.2 inches", "lccn": ["99611186"], "lc_classifications": ["CPB Box no. 1451 vol. 12"], "ocaid": "hollywooddinosau0000cohe", "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-08-15T16:32:09.035516"}}
+/type/edition /books/OL11070052M 4 2010-12-06T19:40:03.722526 {"publishers": ["Bookthrift Co"], "last_modified": {"type": "/type/datetime", "value": "2010-12-06T19:40:03.722526"}, "title": "Stars and Planets/08466", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780671084660"], "physical_format": "Hardcover", "isbn_10": ["0671084666"], "publish_date": "May 1988", "key": "/books/OL11070052M", "authors": [{"key": "/authors/OL4354423A"}], "latest_revision": 4, "works": [{"key": "/works/OL4475010W"}], "type": {"key": "/type/edition"}, "subjects": ["Amateurs' manuals", "Astronomy"], "revision": 4}
+/type/edition /books/OL11070345M 4 2010-04-24T18:13:59.867463 {"publishers": ["Simon & Schuster"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:13:59.867463"}, "title": "Gde Wines Burgundy", "identifiers": {"goodreads": ["6097881"]}, "isbn_13": ["9780671183615"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0671183613"], "publish_date": "April 15, 1978", "key": "/books/OL11070345M", "authors": [{"key": "/authors/OL3539274A"}], "latest_revision": 4, "works": [{"key": "/works/OL9534658W"}], "type": {"key": "/type/edition"}, "subjects": ["Non-Classifiable"], "revision": 4}
+/type/edition /books/OL11070549M 3 2022-12-08T15:33:12.320370 {"physical_format": "Paperback", "title": "Inv to Wine P", "isbn_10": ["0671211870"], "publishers": ["Fireside"], "isbn_13": ["9780671211875"], "languages": [{"key": "/languages/eng"}], "publish_date": "October 15, 1971", "key": "/books/OL11070549M", "authors": [{"key": "/authors/OL3539376A"}], "subjects": ["Non-Classifiable"], "works": [{"key": "/works/OL9534785W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:T1-BAR-897"], "source_records": ["promise:bwb_daily_pallets_2021-04-05"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-08T15:33:12.320370"}}
+/type/edition /books/OL11070698M 4 2010-04-24T18:13:59.867463 {"publishers": ["Simon & Schuster"], "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:13:59.867463"}, "title": "Teach Your Wife How to Be a Widow.", "identifiers": {"goodreads": ["2533126"]}, "isbn_13": ["9780671229719"], "physical_format": "Hardcover", "isbn_10": ["0671229710"], "publish_date": "November 1977", "key": "/books/OL11070698M", "authors": [{"key": "/authors/OL3539428A"}], "latest_revision": 4, "works": [{"key": "/works/OL9534845W"}], "type": {"key": "/type/edition"}, "subjects": ["Husband and wife", "United States", "Widows"], "revision": 4}
+/type/edition /books/OL11070979M 3 2010-04-16T07:39:35.063930 {"publishers": ["Pocket Books, Inc."], "physical_format": "Mass Market Paperback", "key": "/books/OL11070979M", "title": "American Captain (Cardinal Edition, C-194)", "type": {"key": "/type/edition"}, "identifiers": {"goodreads": ["6856307"]}, "edition_name": "1st PB edition", "isbn_10": ["0671301942"], "publish_date": "1955", "last_modified": {"type": "/type/datetime", "value": "2010-04-16T07:39:35.063930"}, "authors": [{"key": "/authors/OL1654886A"}], "latest_revision": 3, "works": [{"key": "/works/OL6329813W"}], "contributions": ["James Meese (Illustrator)"], "revision": 3}
+/type/edition /books/OL11071327M 4 2010-08-16T20:35:15.046363 {"publishers": ["Pocket"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-08-16T20:35:15.046363"}, "title": "Nigger", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780671417659"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0671417657"], "publish_date": "June 3, 1980", "key": "/books/OL11071327M", "authors": [{"key": "/authors/OL697828A"}], "latest_revision": 4, "works": [{"key": "/works/OL3875884W"}], "type": {"key": "/type/edition"}, "subjects": ["Non-Classifiable"], "first_sentence": {"type": "/type/text", "value": "It's a sad and beautiful feeling to walk home slow on Christmas Eve after you've been out hustling all day, shining shoes in the white taverns and going to the store for the neighbors and buying and stealing presents from the ten-cent store, and now it's dark and still along the street and your feet feel warm and sweaty inside your tennis sneakers even if the wind finds the holes in your mittens."}, "revision": 4}
+/type/edition /books/OL11071622M 2 2009-12-15T00:58:35.828597 {"physical_format": "Paperback", "title": "Scorpio 82", "isbn_10": ["0671433350"], "publishers": ["Pocket"], "isbn_13": ["9780671433352"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:58:35.828597"}, "publish_date": "July 15, 1981", "key": "/books/OL11071622M", "authors": [{"key": "/authors/OL2748365A"}], "latest_revision": 2, "subjects": ["Non-Classifiable"], "works": [{"key": "/works/OL8259854W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL1107217M 11 2022-12-04T17:15:50.595056 {"publishers": ["Victor Books"], "identifiers": {"librarything": ["459800"], "goodreads": ["3964802"]}, "isbn_10": ["1564763463"], "subject_place": ["Boston (Mass.)"], "covers": [800855], "lc_classifications": ["PS3553.A965 C65 1995"], "key": "/books/OL1107217M", "authors": [{"key": "/authors/OL21966A"}], "publish_places": ["Wheaton, Ill"], "subject_time": ["Colonial period, ca. 1600-1775"], "pagination": "482 p.", "classifications": {}, "source_records": ["marc:marc_records_scriblio_net/part24.dat:66734150:836", "marc:marc_loc_updates/v37.i19.records.utf8:2157099:1067", "amazon:1564763463", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:141235460:1067", "promise:bwb_daily_pallets_2022-08-13"], "title": "The colonists", "lccn": ["94032469"], "number_of_pages": 482, "languages": [{"key": "/languages/eng"}], "dewey_decimal_class": ["813/.54"], "subjects": ["Boston (Mass.) -- History -- Colonial period, ca. 1600-1775 -- Fiction"], "publish_date": "1995", "publish_country": "ilu", "series": ["An American family portrait ; bk. 2"], "copyright_date": "1995", "by_statement": "Jack Cavanaugh.", "works": [{"key": "/works/OL134190W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "22 x x centimeters", "local_id": ["urn:bwbsku:O8-ADP-409"], "latest_revision": 11, "revision": 11, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T17:15:50.595056"}}
+/type/edition /books/OL11072573M 3 2011-04-29T06:54:41.982947 {"publishers": ["Woodall Pub Co"], "last_modified": {"type": "/type/datetime", "value": "2011-04-29T06:54:41.982947"}, "weight": "1 pounds", "title": "Woodall's Camping Guide for Great Plains and Mountain States, 1995", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780671500382"], "physical_format": "Paperback", "isbn_10": ["0671500384"], "publish_date": "December 1994", "key": "/books/OL11072573M", "authors": [{"key": "/authors/OL2748907A"}], "latest_revision": 3, "oclc_numbers": ["31917694"], "works": [{"key": "/works/OL8262212W"}], "type": {"key": "/type/edition"}, "subjects": ["United States - General", "Travel - United States", "Travel"], "physical_dimensions": "10.2 x 8.2 x 0.5 inches", "revision": 3}
+/type/edition /books/OL11072667M 5 2020-10-17T17:47:30.728438 {"publishers": ["Pocket"], "isbn_10": ["0671508350"], "physical_format": "Paperback", "lc_classifications": ["CPB Box no. 1386 vol. 23"], "latest_revision": 5, "key": "/books/OL11072667M", "authors": [{"key": "/authors/OL3246360A"}, {"key": "/authors/OL3540001A"}], "isbn_13": ["9780671508357"], "source_records": ["marc:marc_loc_updates/v39.i40.records.utf8:15713628:831", "marc:marc_loc_2016/BooksAll.2016.part39.utf8:149307056:831"], "title": "Montana Skies", "lccn": ["2011659126"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "subjects": ["Romance - General", "Fiction / Romance / General", "Fiction - Romance", "Fiction"], "publish_date": "March 1, 1986", "last_modified": {"type": "/type/datetime", "value": "2020-10-17T17:47:30.728438"}, "oclc_numbers": ["13219140"], "works": [{"key": "/works/OL9175391W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL1107281M 15 2023-01-06T16:15:27.431603 {"publishers": ["Jason Aronson"], "number_of_pages": 560, "subtitle": "theoretical and treatment controversies", "ia_box_id": ["IA124704"], "covers": [6615568, 1909661], "local_id": ["urn:cst:10017006680", "urn:evs:39663100219682"], "lc_classifications": ["RC569.5.M8 D55 1995", "RC569.5.M8D55 1995"], "key": "/books/OL1107281M", "ocaid": "dissociativeiden00cohe", "publish_places": ["Northvale, N.J"], "contributions": ["Cohen, Lewis M.", "Berzoff, Joan.", "Elin, Mark R."], "subjects": ["Multiple personality", "Multiple-Personality Disorder"], "pagination": "xxii, 560 p. ;", "source_records": ["ia:dissociativeiden00cohe", "marc:marc_claremont_school_theology/CSTMARC1_barcode.mrc:212404884:5014", "marc:marc_evangelical_seminary/Evangelical_Seminary_20200728.mrc:45542463:825", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:141290255:832", "marc:marc_claremont_school_theology/CSTMARC1_multibarcode.mrc:212672071:5014", "ia:dissociativeiden0000unse", "bwb:9781568213804", "marc:marc_columbia/Columbia-extract-20221130-009.mrc:49883510:4459"], "title": "Dissociative identity disorder", "dewey_decimal_class": ["616.85/236"], "notes": {"type": "/type/text", "value": "Includes bibliographical references and index."}, "identifiers": {"librarything": ["7628352"], "goodreads": ["1415508"]}, "languages": [{"key": "/languages/eng"}], "lccn": ["94032539"], "isbn_10": ["1568213808"], "publish_date": "1995", "publish_country": "nju", "by_statement": "edited by Lewis M. Cohen, Joan N. Berzoff, Mark R. Elin.", "works": [{"key": "/works/OL16478612W"}], "type": {"key": "/type/edition"}, "oclc_numbers": ["31132337"], "latest_revision": 15, "revision": 15, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2023-01-06T16:15:27.431603"}}
+/type/edition /books/OL11072828M 4 2022-10-18T20:53:00.870083 {"publishers": ["Prentice Hall"], "classifications": {}, "title": "Frommers Caribbean Hideways", "notes": {"type": "/type/text", "value": "Frommer's Caribbean Hideaways"}, "identifiers": {}, "isbn_13": ["9780671518721"], "physical_format": "Paperback", "isbn_10": ["0671518720"], "publish_date": "September 1995", "key": "/books/OL11072828M", "authors": [{"key": "/authors/OL1708124A"}], "works": [{"key": "/works/OL6442608W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "TRAVEL & HOLIDAY", "Travel - General"], "source_records": ["bwb:9780671518721"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T20:53:00.870083"}}
+/type/edition /books/OL11072850M 2 2009-12-15T00:58:37.159587 {"physical_format": "Paperback", "languages": [{"key": "/languages/eng"}], "publishers": ["Holiday house"], "isbn_10": ["0671519409"], "title": "Frommer's Comprehensive Travel Guide Colorado", "edition_name": "3rd edition", "isbn_13": ["9780671519407"], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:58:37.159587"}, "publish_date": "April 1996", "key": "/books/OL11072850M", "authors": [{"key": "/authors/OL3332907A"}], "latest_revision": 2, "subjects": ["General", "Travel", "Travel - General"], "works": [{"key": "/works/OL9279004W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL11072950M 2 2009-12-15T00:58:37.159587 {"physical_format": "Hardcover", "title": "Night Raided Mnsky", "isbn_10": ["0671526308"], "publishers": ["Simon & Schuster"], "isbn_13": ["9780671526306"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:58:37.159587"}, "publish_date": "January 1, 1901", "key": "/books/OL11072950M", "authors": [{"key": "/authors/OL3539844A"}], "latest_revision": 2, "subjects": ["Non-Classifiable"], "works": [{"key": "/works/OL9535425W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL1107307M 7 2020-11-18T13:05:21.694958 {"publishers": ["Beaver Pond Publishing"], "identifiers": {"goodreads": ["3342061"], "librarything": ["804447"]}, "isbn_10": ["1881399109"], "covers": [927753], "lc_classifications": ["SK341.M55 F35 1996"], "latest_revision": 7, "key": "/books/OL1107307M", "authors": [{"key": "/authors/OL31743A"}], "publish_places": ["Greenville, Pa"], "languages": [{"key": "/languages/eng"}], "pagination": "240 p. :", "source_records": ["marc:marc_records_scriblio_net/part24.dat:66812682:674", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:141314732:674"], "title": "The mink trapper's guide", "dewey_decimal_class": ["639/.1174447"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 235)."}, "number_of_pages": 240, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "edition_name": "2nd rev. ed.", "lccn": ["94032568"], "subjects": ["Mink trapping -- Handbooks, manuals, etc"], "publish_date": "1996", "publish_country": "pau", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T13:05:21.694958"}, "by_statement": "by Richard E. Faler, Jr.", "oclc_numbers": ["31132471"], "works": [{"key": "/works/OL85935W"}], "type": {"key": "/type/edition"}, "revision": 7}
+/type/edition /books/OL11073169M 2 2009-12-15T00:58:37.159587 {"physical_format": "Paperback", "title": "Calorie Carbo Gde Rate Guide", "isbn_10": ["067154201X"], "publishers": ["Pocket"], "isbn_13": ["9780671542016"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:58:37.159587"}, "publish_date": "July 3, 1984", "key": "/books/OL11073169M", "authors": [{"key": "/authors/OL3539701A"}], "latest_revision": 2, "subjects": ["General", "Medical / General", "Consumer Health"], "works": [{"key": "/works/OL9535245W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL11073989M 3 2011-04-26T16:07:53.704029 {"publishers": ["Prentice Hall of Canada Ltd"], "subtitle": "A Fifteen Week Multimedia Program", "last_modified": {"type": "/type/datetime", "value": "2011-04-26T16:07:53.704029"}, "title": "Sculpture", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780671614263"], "physical_format": "Paperback", "isbn_10": ["0671614266"], "publish_date": "September 1986", "key": "/books/OL11073989M", "authors": [{"key": "/authors/OL895418A"}], "latest_revision": 3, "oclc_numbers": ["234291373"], "works": [{"key": "/works/OL4485882W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL1107404M 8 2023-01-06T16:05:55.896092 {"publishers": ["Blackwell Science"], "number_of_pages": 285, "isbn_10": ["0865422931"], "covers": [10111049], "lc_classifications": ["RC554 .N46 1995", "RC554.N46 1995"], "key": "/books/OL1107404M", "ocaid": "neuropsychiatryo0000unse_e5n5", "publish_places": ["Cambridge, Mass., USA"], "contributions": ["Ratey, John J., 1948-"], "pagination": "xiii, 285 p. :", "source_records": ["marc:marc_records_scriblio_net/part24.dat:66900037:848", "ia:neuropsychiatryo0000unse_e5n5", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:141402236:848", "bwb:9780865422933", "marc:marc_columbia/Columbia-extract-20221130-009.mrc:47433324:2451"], "title": "Neuropsychiatry of personality disorders", "dewey_decimal_class": ["616.85/8"], "notes": {"type": "/type/text", "value": "Includes bibliographical references and index."}, "identifiers": {"goodreads": ["2074087"], "librarything": ["8541342"]}, "languages": [{"key": "/languages/eng"}], "lccn": ["94032669"], "subjects": ["Personality disorders -- Pathophysiology.", "Neuropsychiatry.", "Personality Disorders -- psychology.", "Neuropsychology."], "publish_date": "1995", "publish_country": "mau", "by_statement": "edited by John J. Ratey ; contributing editor, Barry S. Fogel.", "works": [{"key": "/works/OL19022487W"}], "type": {"key": "/type/edition"}, "oclc_numbers": ["31169655"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2023-01-06T16:05:55.896092"}}
+/type/edition /books/OL11074730M 9 2022-12-10T05:36:52.724088 {"publishers": ["Aladdin"], "languages": [{"key": "/languages/eng"}], "title": "Sonys and the Chain Letter Gang Best Friends #5", "identifiers": {"goodreads": ["1401849"]}, "physical_format": "Paperback", "publish_date": "July 1, 1989", "key": "/books/OL11074730M", "authors": [{"key": "/authors/OL2626804A"}], "works": [{"key": "/works/OL3844603W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Juvenile Fiction / General", "Children's 9-12"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part36.utf8:72159924:853", "amazon:0671681591", "promise:bwb_daily_pallets_2020-07-07"], "isbn_10": ["0671681591"], "isbn_13": ["9780671681593"], "lccn": ["2008572000"], "oclc_numbers": ["19990780"], "classifications": {}, "lc_classifications": ["CPB Box no. 2653 vol. 34"], "local_id": ["urn:bwbsku:P6-AYR-104"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T05:36:52.724088"}}
+/type/edition /books/OL11075260M 6 2022-12-09T22:39:18.632113 {"publishers": ["Aladdin"], "subtitle": "Cat Riddles, Cat Jokes and Catoons", "weight": "3.7 ounces", "physical_format": "Paperback", "key": "/books/OL11075260M", "authors": [{"key": "/authors/OL2626811A"}], "subjects": ["Animals - Cats", "Juvenile Fiction / General", "Children's Books/Ages 9-12 Nonfiction", "Anecdotes, facetiae, satire, etc", "Cats", "Wit and humor, Juvenile", "Children: Grades 3-4"], "isbn_13": ["9780671732974"], "title": "Catzilla: Cat Riddles, Cat Jokes and Catoons: Catzilla", "identifiers": {"librarything": ["4938831"], "goodreads": ["226638"], "amazon": [""]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0671732978"], "publish_date": "January 1, 1991", "oclc_numbers": ["23148435"], "type": {"key": "/type/edition"}, "physical_dimensions": "7.5 x 5.1 x 0.5 inches", "works": [{"key": "/works/OL31914423W"}], "local_id": ["urn:bwbsku:P4-BUR-999"], "source_records": ["promise:bwb_daily_pallets_2020-10-07"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T22:39:18.632113"}}
+/type/edition /books/OL11075845M 2 2022-12-05T01:25:54.300745 {"physical_format": "Paperback", "publishers": ["Pocket Books"], "title": "The Complete Illustrated Book of the Psychic Sciences", "isbn_13": ["9780671785192"], "isbn_10": ["0671785192"], "publish_date": "1974", "key": "/books/OL11075845M", "type": {"key": "/type/edition"}, "works": [{"key": "/works/OL31294563W"}], "local_id": ["urn:bwbsku:W7-CHK-423"], "source_records": ["promise:bwb_daily_pallets_2022-06-30"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-05T01:25:54.300745"}}
+/type/edition /books/OL11075995M 6 2022-12-14T18:12:00.857639 {"identifiers": {"goodreads": ["6769476"]}, "title": "Woodall's 1993 Plan-It * Pack-It * Go...", "subtitle": "Great Places to Tent--Fun Things to Do", "authors": [{"key": "/authors/OL3513133A"}], "publish_date": "February 1993", "publishers": ["Woodall's Publications"], "languages": [{"key": "/languages/eng"}], "physical_format": "Paperback", "weight": "1.5 pounds", "isbn_10": ["0671792687"], "isbn_13": ["9780671792688"], "edition_name": "North American ed edition", "type": {"key": "/type/edition"}, "subjects": ["Hiking", "United States - General", "Travel & holiday guides", "Travel - United States"], "physical_dimensions": "9.9 x 6.8 x 1 inches", "ocaid": "woodallsplanitpa0000unse", "source_records": ["ia:woodallsplanitpa0000unse"], "key": "/books/OL11075995M", "number_of_pages": 694, "works": [{"key": "/works/OL9500101W"}], "covers": [13093760], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-14T18:12:00.857639"}}
+/type/edition /books/OL11076113M 4 2011-04-28T14:03:53.406871 {"publishers": ["Pocket Books"], "last_modified": {"type": "/type/datetime", "value": "2011-04-28T14:03:53.406871"}, "title": "The Trail Driver", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Mass Market Paperback", "isbn_10": ["0671802003"], "publish_date": "1975", "key": "/books/OL11076113M", "authors": [{"key": "/authors/OL30350A"}], "latest_revision": 4, "oclc_numbers": ["2631510"], "works": [{"key": "/works/OL485685W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL11076551M 8 2020-12-17T02:37:01.251011 {"publishers": ["Pocket"], "identifiers": {"librarything": ["2001724"], "goodreads": ["2039491"]}, "physical_format": "Paperback", "key": "/books/OL11076551M", "authors": [{"key": "/authors/OL3540432A"}], "subjects": ["Non-Classifiable", "Occultism", "Metaphysical", "New Age"], "languages": [{"key": "/languages/eng"}], "source_records": ["amazon:0671818791", "marc:marc_loc_updates/v37.i31.records.utf8:6824722:786", "marc:marc_loc_2016/BooksAll.2016.part34.utf8:81303948:786"], "title": "Positive Magic", "number_of_pages": 299, "isbn_13": ["9780671818791"], "isbn_10": ["0671818791"], "publish_date": "May 1, 1978", "oclc_numbers": ["4243235"], "works": [{"key": "/works/OL9536182W"}], "type": {"key": "/type/edition"}, "lccn": ["2006594281"], "lc_classifications": ["CPB Box no. 2514 vol. 12"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-17T02:37:01.251011"}}
+/type/edition /books/OL11077122M 4 2010-04-24T18:13:59.867463 {"publishers": ["Simon & Schuster Ltd"], "identifiers": {"goodreads": ["1651947"]}, "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:13:59.867463"}, "title": "Great Crimes and Trials of the Twentieth Century", "number_of_pages": 256, "isbn_13": ["9780671853051"], "physical_format": "Paperback", "isbn_10": ["0671853058"], "publish_date": "December 9, 1993", "key": "/books/OL11077122M", "authors": [{"key": "/authors/OL606285A"}], "latest_revision": 4, "works": [{"key": "/works/OL3586497W"}], "type": {"key": "/type/edition"}, "subjects": ["True crime"], "revision": 4}
+/type/edition /books/OL11077316M 3 2011-04-26T11:15:27.693066 {"publishers": ["Little Simon"], "physical_format": "Board book", "weight": "1.6 ounces", "title": "Baa, Baa Book (Teeny-Poppers)", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2011-04-26T11:15:27.693066"}, "edition_name": "Board Popu edition", "isbn_13": ["9780671865306"], "isbn_10": ["0671865307"], "publish_date": "June 1993", "key": "/books/OL11077316M", "authors": [{"key": "/authors/OL327145A"}], "latest_revision": 3, "oclc_numbers": ["28703940"], "works": [{"key": "/works/OL2391485W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Children's Baby/Preschool", "Children: Kindergarten"], "physical_dimensions": "3.5 x 3.2 x 0.5 inches", "revision": 3}
+/type/edition /books/OL11077485M 6 2012-08-05T17:18:36.584946 {"publishers": ["Simon & Schuster Audio"], "physical_format": "Audio Cassette", "classifications": {}, "last_modified": {"type": "/type/datetime", "value": "2012-08-05T17:18:36.584946"}, "title": "The RED FOX", "notes": {"type": "/type/text", "value": "CASSETTE"}, "identifiers": {}, "isbn_13": ["9780671881597"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0671881590"], "publish_date": "July 1, 1993", "key": "/books/OL11077485M", "authors": [{"key": "/authors/OL455718A"}], "latest_revision": 6, "works": [{"key": "/works/OL2978587W"}], "type": {"key": "/type/edition"}, "subjects": ["Fiction / General"], "revision": 6}
+/type/edition /books/OL11078083M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Hardcover", "subtitle": "Photofact Sets 2361-2370 (Photofact Technical Service Data)", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Sams Technical Pub"], "title": "Sams Photofact", "isbn_13": ["9780672052378"], "isbn_10": ["0672052377"], "publish_date": "December 1985", "key": "/books/OL11078083M", "type": {"key": "/type/edition"}, "subjects": ["Science/Mathematics"], "revision": 1}
+/type/edition /books/OL11078196M 2 2011-04-29T08:23:29.382978 {"publishers": ["Sams"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T08:23:29.382978"}, "title": "Epson Lq1500 Printer/Book (Computerfacts Series)", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780672089817"], "isbn_10": ["0672089815"], "publish_date": "October 1986", "key": "/books/OL11078196M", "latest_revision": 2, "oclc_numbers": ["23131618"], "type": {"key": "/type/edition"}, "subjects": ["Computer Books: Operating Systems"], "revision": 2}
+/type/edition /books/OL11078253M 2 2009-12-15T00:58:41.582243 {"publishers": ["Bobbs-Merrill Co"], "key": "/books/OL11078253M", "title": "ABC's of Silicon Controlled Rectifiers", "number_of_pages": 128, "isbn_13": ["9780672201240"], "physical_format": "Paperback", "isbn_10": ["0672201240"], "publish_date": "January 2000", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:58:41.582243"}, "authors": [{"key": "/authors/OL1814513A"}], "latest_revision": 2, "works": [{"key": "/works/OL6707143W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL11079111M 5 2010-08-17T05:37:34.305240 {"publishers": ["Atheneum"], "languages": [{"key": "/languages/eng"}], "subtitle": "Golden Rule Boy", "last_modified": {"type": "/type/datetime", "value": "2010-08-17T05:37:34.305240"}, "title": "J.C. Penney", "identifiers": {"goodreads": ["3253694"], "librarything": ["4356538"]}, "isbn_13": ["9780672516856"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "School & Library Binding", "isbn_10": ["0672516853"], "publish_date": "July 1972", "key": "/books/OL11079111M", "authors": [{"key": "/authors/OL829919A"}], "latest_revision": 5, "works": [{"key": "/works/OL4279842W"}], "type": {"key": "/type/edition"}, "subjects": ["(James Cash),", "1875-1971", "Businesspeople", "Juvenile literature", "Penney, J. C", "Penney, J. C."], "revision": 5}
+/type/edition /books/OL11079342M 2 2009-12-15T00:58:43.348554 {"publishers": ["Bobbs-Merrill Co"], "key": "/books/OL11079342M", "title": "Executive Leadership", "isbn_13": ["9780672960550"], "physical_format": "Paperback", "isbn_10": ["0672960559"], "publish_date": "June 1969", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:58:43.348554"}, "authors": [{"key": "/authors/OL3236048A"}], "latest_revision": 2, "works": [{"key": "/works/OL9160155W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL11079425M 3 2011-04-26T13:41:21.654748 {"publishers": ["Scott, Foresman, and Company"], "physical_format": "Paperback", "subtitle": "BOOKLET B", "last_modified": {"type": "/type/datetime", "value": "2011-04-26T13:41:21.654748"}, "title": "ACTIVITIES TO GO METRIC", "identifiers": {"librarything": ["3555150"]}, "isbn_13": ["9780673034977"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0673034976"], "publish_date": "1975", "key": "/books/OL11079425M", "latest_revision": 3, "oclc_numbers": ["1886280"], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL11079796M 1 2008-04-30T09:38:13.731961 {"physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Not Avail"], "number_of_pages": 266, "isbn_13": ["9780673079206"], "isbn_10": ["0673079201"], "publish_date": "June 1996", "key": "/books/OL11079796M", "title": "Denominational Society-Paper", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL11079826M 3 2011-04-26T03:05:33.286817 {"publishers": ["Scott, Foresman"], "subtitle": "Individual learning book", "edition_name": "Teacher's ed edition", "physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2011-04-26T03:05:33.286817"}, "latest_revision": 3, "key": "/books/OL11079826M", "authors": [{"key": "/authors/OL3541118A"}], "subjects": ["Automobile driver education (Secondary)"], "isbn_13": ["9780673100818"], "title": "Drive right", "number_of_pages": 86, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0673100812"], "publish_date": "1977", "oclc_numbers": ["7015074"], "works": [{"key": "/works/OL9536906W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL11080469M 5 2022-11-15T03:18:32.467618 {"publishers": ["Not Avail"], "physical_format": "Paperback", "title": "America Past and Present Studying America Past and Present Volume", "identifiers": {"goodreads": ["3069622"]}, "isbn_13": ["9780673158840"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0673158845"], "publish_date": "March 1998", "key": "/books/OL11080469M", "authors": [{"key": "/authors/OL3327654A"}], "works": [{"key": "/works/OL9273575W"}], "type": {"key": "/type/edition"}, "source_records": ["amazon:0673158845"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-15T03:18:32.467618"}}
+/type/edition /books/OL11080482M 2 2009-12-15T00:58:44.852149 {"physical_format": "Paperback", "title": "Elementary Algebra Study Guide", "isbn_10": ["0673159418"], "publishers": ["Not Avail"], "isbn_13": ["9780673159410"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:58:44.852149"}, "publish_date": "March 1998", "key": "/books/OL11080482M", "authors": [{"key": "/authors/OL3541244A"}], "latest_revision": 2, "works": [{"key": "/works/OL9537027W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL11080652M 4 2011-04-29T11:46:52.505172 {"publishers": ["Addison Wesley Publishing Company"], "number_of_pages": 480, "last_modified": {"type": "/type/datetime", "value": "2011-04-29T11:46:52.505172"}, "title": "California Real Estate Practice 2nd Edition", "identifiers": {"goodreads": ["4529174"]}, "isbn_13": ["9780673164742"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Hardcover", "isbn_10": ["0673164748"], "publish_date": "March 1998", "key": "/books/OL11080652M", "authors": [{"key": "/authors/OL2753304A"}, {"key": "/authors/OL19569A"}], "latest_revision": 4, "oclc_numbers": ["12241730"], "type": {"key": "/type/edition"}, "subjects": ["Real Estate", "Legal Reference / Law Profession"], "revision": 4}
+/type/edition /books/OL11080739M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Not Avail"], "title": "Im Intro to Bus 4/E 49158", "isbn_13": ["9780673170606"], "isbn_10": ["0673170608"], "publish_date": "March 1998", "key": "/books/OL11080739M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL1108093M 5 2020-11-18T13:17:23.617697 {"publishers": ["ABBE Publishers Association"], "subtitle": "index of new information with authors & subjects", "isbn_10": ["078830366X", "0788303678"], "covers": [3884018, 3884004], "lc_classifications": ["Z7914.F63 H37 1994", "TP371.8 H37 1994"], "latest_revision": 5, "key": "/books/OL1108093M", "authors": [{"key": "/authors/OL586148A"}], "publish_places": ["Washington, D.C"], "pagination": "1 v. (various pagings) ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:142034566:813"], "title": "Food irradiation", "dewey_decimal_class": ["016.664/0288"], "notes": {"type": "/type/text", "value": "Includes bibliographical references and index."}, "identifiers": {"goodreads": ["3994935"]}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["94033395"], "subjects": ["Radiation preservation of food -- Bibliography.", "Food -- Effect of radiation on -- Bibliography."], "publish_date": "1994", "publish_country": "dcu", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T13:17:23.617697"}, "by_statement": "Shelly R. Harder.", "works": [{"key": "/works/OL3506310W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL11081426M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "subtitle": "Workbook", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Scott Foresman And Company"], "title": "Rough and Ready", "isbn_13": ["9780673210487"], "isbn_10": ["0673210480"], "publish_date": "1985", "key": "/books/OL11081426M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL11081536M 2 2010-04-13T06:24:33.330183 {"physical_format": "Hardcover", "languages": [{"key": "/languages/spa"}], "subtitle": "Scottforesman Spanish Program", "weight": "6.5 pounds", "publishers": ["Scott Foresman & Co"], "isbn_10": ["0673218309"], "title": "Paso a Paso--Level 1", "covers": [5094469], "edition_name": "Package edition", "isbn_13": ["9780673218308"], "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:24:33.330183"}, "publish_date": "January 1996", "key": "/books/OL11081536M", "authors": [{"key": "/authors/OL2753583A"}, {"key": "/authors/OL2753584A"}, {"key": "/authors/OL2753585A"}], "latest_revision": 2, "subjects": ["Foreign Language Study - General", "Juvenile Nonfiction", "Spanish: Young Adult (Gr. 7-9)"], "type": {"key": "/type/edition"}, "physical_dimensions": "11 x 8.5 x 2.5 inches", "revision": 2}
+/type/edition /books/OL11081627M 2 2022-12-08T20:40:33.032915 {"physical_format": "Hardcover", "weight": "2.4 pounds", "publishers": ["Scott Foresman & Co"], "title": "Invitation to Mathematics/Student Text/Grade 8", "isbn_13": ["9780673239082"], "isbn_10": ["067323908X"], "publish_date": "June 1988", "key": "/books/OL11081627M", "type": {"key": "/type/edition"}, "subjects": ["Science/Mathematics"], "physical_dimensions": "10.2 x 8.5 x 1 inches", "works": [{"key": "/works/OL31743450W"}], "local_id": ["urn:bwbsku:P7-BHD-050"], "source_records": ["promise:bwb_daily_pallets_2021-03-04"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-08T20:40:33.032915"}}
+/type/edition /books/OL1108164M 5 2020-11-18T13:18:26.815611 {"publishers": ["Ye Galleon Press"], "identifiers": {"goodreads": ["4265985"]}, "description": {"type": "/type/text", "value": "Follows the adventures of a Nimiipu Indian family living along the banks of the Salmon River."}, "isbn_10": ["0877705402"], "lc_classifications": ["PZ7.S7363 Bl 1995"], "latest_revision": 5, "key": "/books/OL1108164M", "authors": [{"key": "/authors/OL586177A"}], "publish_places": ["Fairfield, Wash"], "pagination": "69 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:142097201:792"], "title": "Black Eagle of the Nimiipu", "dewey_decimal_class": ["[Fic]"], "number_of_pages": 69, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["94033471"], "subjects": ["Nez Perce\u0301 Indians -- Juvenile fiction.", "Nez Perce\u0301 Indians -- Fiction.", "Indians of North America -- Fiction."], "publish_date": "1995", "publish_country": "wau", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T13:18:26.815611"}, "by_statement": "by Joanne Spalding-Stacy.", "oclc_numbers": ["31413032"], "works": [{"key": "/works/OL3506435W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL11081749M 4 2022-12-09T11:37:34.669774 {"publishers": ["Scott, Foresman, and Company"], "languages": [{"key": "/languages/eng"}], "title": "Explorations in Literature (America Reads)", "isbn_13": ["9780673270528"], "edition_name": "7th edition", "physical_format": "Hardcover", "isbn_10": ["0673270521"], "publish_date": "1987", "key": "/books/OL11081749M", "oclc_numbers": ["18267953"], "type": {"key": "/type/edition"}, "works": [{"key": "/works/OL24825922W"}], "covers": [11629602], "ocaid": "explorationsinli0000unse_d6i7", "lc_classifications": ["PS507 .E95 1987", "PN6014 .C678 1987"], "source_records": ["ia:explorationsinli0000unse_d6i7", "promise:bwb_daily_pallets_2020-11-25"], "local_id": ["urn:bwbsku:P4-CFI-242"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-09T11:37:34.669774"}}
+/type/edition /books/OL11082132M 5 2019-01-09T09:24:36.600674 {"publishers": ["Scott, Foresman and Company"], "physical_format": "Paperback", "source_records": ["ia:discoverwondersc00maur"], "title": "Discover the Wonder (Scott Foresman Science)", "identifiers": {"goodreads": ["5069865"]}, "isbn_13": ["9780673357229"], "covers": [8323890], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0673357228"], "publish_date": "1994", "key": "/books/OL11082132M", "last_modified": {"type": "/type/datetime", "value": "2019-01-09T09:24:36.600674"}, "ocaid": "discoverwondersc00maur", "latest_revision": 5, "works": [{"key": "/works/OL18157485W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL11082300M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Spiral-bound", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Scott Foresman"], "title": "Exploring Mathematics Grade 7 Teacher's Edition", "isbn_13": ["9780673375957"], "isbn_10": ["0673375951"], "publish_date": "1996", "key": "/books/OL11082300M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL11082626M 6 2022-07-17T06:42:30.782722 {"publishers": ["Scott Foresman & Co"], "identifiers": {"goodreads": ["6196226"]}, "subtitle": "Analysis, Application, Evaluation", "edition_name": "2nd edition", "physical_format": "Paperback", "key": "/books/OL11082626M", "authors": [{"key": "/authors/OL698542A"}], "subjects": ["Nursing - General", "Nursing Theory", "Medical / Nursing", "Nursing", "Philosophy"], "isbn_13": ["9780673394095"], "title": "Nursing Theory", "number_of_pages": 298, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0673394093"], "publish_date": "January 1984", "oclc_numbers": ["233525659"], "works": [{"key": "/works/OL3877531W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780673394095"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T06:42:30.782722"}}
+/type/edition /books/OL1108278M 9 2022-12-07T04:59:18.046397 {"publishers": ["Garland Pub."], "number_of_pages": 398, "isbn_10": ["0815317735"], "series": ["Latinos in the United States ;", "v. 4"], "covers": [1546032], "lc_classifications": ["HD8081.H7 L37 1995", "HD8081.H7L37 1995"], "key": "/books/OL1108278M", "publish_places": ["New York"], "contributions": ["Lo\u0301pez, Antoinette Sedillo."], "pagination": "xiv, 398 p. :", "source_records": ["marc:marc_records_scriblio_net/part24.dat:67693276:878", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:142201543:880", "bwb:9780815317739", "ia:latinoemployment0000unse", "promise:bwb_daily_pallets_2022-03-17"], "title": "Latino employment, labor organizations, and immigration", "dewey_decimal_class": ["331.6/368073"], "notes": {"type": "/type/text", "value": "Includes bibliographical references."}, "identifiers": {"goodreads": ["4409606"]}, "languages": [{"key": "/languages/eng"}], "lccn": ["94033597"], "subjects": ["Hispanic Americans -- Employment.", "Minority labor union members -- United States.", "Emigration and immigration law -- United States."], "publish_date": "1995", "publish_country": "nyu", "subject_place": ["United States."], "by_statement": "edited with an introduction by Antoinette Sedillo Lo\u0301pez.", "works": [{"key": "/works/OL18892442W"}], "type": {"key": "/type/edition"}, "ocaid": "latinoemployment0000unse", "local_id": ["urn:bwbsku:W7-AFD-231"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-07T04:59:18.046397"}}
+/type/edition /books/OL11082911M 6 2011-02-20T08:34:49.134872 {"publishers": ["Scott, Foresman"], "number_of_pages": 530, "physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2011-02-20T08:34:49.134872"}, "latest_revision": 6, "key": "/books/OL11082911M", "authors": [{"key": "/authors/OL3541637A"}], "subjects": ["Canada", "Latin America", "Study and teaching (Elementary)", "Study and teaching (Secondary)"], "isbn_13": ["9780673430601"], "classifications": {}, "title": "Latin America and Canada", "notes": {"type": "/type/text", "value": "Scott, Foresman social studies"}, "identifiers": {"librarything": ["9247260"], "goodreads": ["4774555"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["067343060X"], "publish_date": "1989", "works": [{"key": "/works/OL9537480W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL11082990M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Scott Foresman"], "title": "Transition Mathematics Technology Sourcebook (University of Chicago School Mathematics Project)", "isbn_13": ["9780673457547"], "isbn_10": ["0673457540"], "publish_date": "1995", "key": "/books/OL11082990M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL11083351M 4 2011-04-27T12:59:06.187915 {"publishers": ["Scott, Foresman"], "languages": [{"key": "/languages/eng"}], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2011-04-27T12:59:06.187915"}, "title": "Instructor's manual and test bank for Writing with confidence", "number_of_pages": 167, "isbn_13": ["9780673485854"], "edition_name": "3rd Ed edition", "physical_format": "Unknown Binding", "isbn_10": ["0673485854"], "publish_date": "1988", "key": "/books/OL11083351M", "authors": [{"key": "/authors/OL19473A"}], "latest_revision": 4, "oclc_numbers": ["37508319"], "type": {"key": "/type/edition"}, "subjects": ["English language", "Grammar", "Report writing", "Rhetoric"], "revision": 4}
+/type/edition /books/OL11084619M 4 2010-04-24T18:13:59.867463 {"languages": [{"key": "/languages/eng"}], "subtitle": "Emergent Stage 1", "key": "/books/OL11084619M", "publishers": ["Celebration Pr"], "identifiers": {"goodreads": ["2768329"]}, "isbn_13": ["9780673614919"], "edition_name": "Package edition", "physical_format": "Paperback", "isbn_10": ["0673614913"], "publish_date": "March 1999", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:13:59.867463"}, "authors": [{"key": "/authors/OL36603A"}, {"key": "/authors/OL452493A"}, {"key": "/authors/OL2687733A"}, {"key": "/authors/OL584858A"}], "title": "Add-On Package", "latest_revision": 4, "type": {"key": "/type/edition"}, "subjects": ["Elementary", "Preschool & Kindergarten", "Education", "Children: Kindergarten"], "revision": 4}
+/type/edition /books/OL11084781M 3 2011-04-30T16:01:34.970343 {"publishers": ["Scott Foresman"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-30T16:01:34.970343"}, "title": "Eye to Eye with an Artist (Leveled Reader, 180B)", "identifiers": {"goodreads": ["279330"]}, "isbn_13": ["9780673629265"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0673629260"], "publish_date": "2004", "key": "/books/OL11084781M", "latest_revision": 3, "oclc_numbers": ["190860362"], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL11084931M 5 2012-06-19T04:56:26.625589 {"publishers": ["Scott Foresman"], "identifiers": {"goodreads": ["2532438"]}, "classifications": {}, "last_modified": {"type": "/type/datetime", "value": "2012-06-19T04:56:26.625589"}, "title": "Story Clouds D'Nealian Version Independent Practice Book Grade 1, Level 4", "series": ["Scott Foresman Reading: An American Tradition"], "number_of_pages": 94, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "type": {"key": "/type/edition"}, "isbn_10": ["0673716112"], "publish_date": "1987", "key": "/books/OL11084931M", "authors": [{"key": "/authors/OL444045A"}], "latest_revision": 5, "works": [{"key": "/works/OL2915383W"}], "physical_format": "Paperback", "revision": 5}
+/type/edition /books/OL11085346M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/spa"}], "physical_format": "Paperback", "subtitle": "Early Stage 2", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Celebration Pr"], "title": "Mi Mama Trabaja", "isbn_13": ["9780673771841"], "isbn_10": ["0673771849"], "publish_date": "March 1999", "key": "/books/OL11085346M", "type": {"key": "/type/edition"}, "subjects": ["Elementary", "School & Education", "Juvenile Fiction", "Spanish: Grades 1-2"], "revision": 1}
+/type/edition /books/OL11085355M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780673771957"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "publishers": ["Celebration Pr"], "title": "Book Only Package", "edition_name": "Package edition", "isbn_10": ["0673771954"], "publish_date": "March 1999", "key": "/books/OL11085355M", "type": {"key": "/type/edition"}, "subjects": ["Elementary", "Preschool & Kindergarten", "Education", "Children: Kindergarten"], "revision": 1}
+/type/edition /books/OL11085825M 3 2011-04-25T14:19:19.075949 {"publishers": ["Mel Bay"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-25T14:19:19.075949"}, "title": "Jacques Stotzem Songbook (Selections From Two Bridges, Straight On and Clear Night)", "number_of_pages": 88, "isbn_13": ["9780786625864"], "covers": [2627971], "edition_name": "Companion CD includes Abridged Version of Each Selection edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0786625864"], "publish_date": "1996", "key": "/books/OL11085825M", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "latest_revision": 3, "oclc_numbers": ["36504779"], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL11085861M 3 2010-04-13T06:24:33.330183 {"publishers": ["Mel Bay Pubns"], "subtitle": "Collected Works for Guitar", "weight": "1.1 pounds", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0786627220"], "title": "Mel Bay Antonio Jimenez Manjon", "isbn_13": ["9780786627226"], "covers": [5094645], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:24:33.330183"}, "latest_revision": 3, "key": "/books/OL11085861M", "authors": [{"key": "/authors/OL3541945A"}], "publish_date": "February 1997", "works": [{"key": "/works/OL9537827W"}], "type": {"key": "/type/edition"}, "subjects": ["Music"], "physical_dimensions": "11.8 x 8.8 x 0.5 inches", "revision": 3}
+/type/edition /books/OL11085914M 2 2010-04-13T06:24:33.330183 {"physical_format": "Paperback", "publishers": ["Mel Bay"], "isbn_10": ["0786629312"], "number_of_pages": 95, "isbn_13": ["9780786629312"], "covers": [2628031], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:24:33.330183"}, "publish_date": "1997", "key": "/books/OL11085914M", "title": "Gospel Pedal Steel Guitar (Mel Bay Presents)", "latest_revision": 2, "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL11086193M 5 2010-04-24T18:13:59.867463 {"publishers": ["Mel Bay Publications"], "languages": [{"key": "/languages/eng"}], "identifiers": {"goodreads": ["3073169"]}, "weight": "8.5 ounces", "title": "Ramble to Cashel-Celtic Fingerstyle Guitar Solos", "number_of_pages": 72, "isbn_13": ["9780786644940"], "covers": [2628249], "physical_format": "Paperback", "authors": [{"key": "/authors/OL1810349A"}], "isbn_10": ["078664494X"], "latest_revision": 5, "key": "/books/OL11086193M", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:13:59.867463"}, "publish_date": "November 1999", "works": [{"key": "/works/OL6694625W"}], "type": {"key": "/type/edition"}, "subjects": ["Ethnic", "Musical Instruments - Guitar", "Techniques", "Music/Songbooks"], "physical_dimensions": "11.7 x 8.8 x 0.2 inches", "revision": 5}
+/type/edition /books/OL11086202M 6 2011-04-27T01:59:28.441225 {"publishers": ["Mel Bay Pubns"], "identifiers": {"goodreads": ["1599916"]}, "weight": "8 ounces", "covers": [2628255], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T01:59:28.441225"}, "latest_revision": 6, "key": "/books/OL11086202M", "authors": [{"key": "/authors/OL1765226A"}], "subjects": ["Percussion Technique", "Musical Instruments - General", "Music"], "languages": [{"key": "/languages/eng"}], "title": "Mel Bay Approaching Ambidexterity", "number_of_pages": 83, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780786645213"], "isbn_10": ["0786645210"], "publish_date": "December 8, 1999", "oclc_numbers": ["48421825"], "works": [{"key": "/works/OL6580559W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "11.5 x 8.5 x 0.2 inches", "revision": 6}
+/type/edition /books/OL11086311M 2 2010-04-13T06:24:33.330183 {"physical_format": "Paperback", "weight": "12 ounces", "publishers": ["Mel Bay Publications"], "isbn_10": ["078665001X"], "number_of_pages": 136, "isbn_13": ["9780786650019"], "covers": [2628345], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:24:33.330183"}, "publish_date": "October 21, 2002", "latest_revision": 2, "key": "/books/OL11086311M", "authors": [{"key": "/authors/OL2490904A"}, {"key": "/authors/OL3002392A"}], "title": "Mel Bay Graded Guitar Duos Volume 3", "subjects": ["Instruction & Study - General", "Music"], "type": {"key": "/type/edition"}, "physical_dimensions": "10.9 x 8.1 x 0.7 inches", "revision": 2}
+/type/edition /books/OL11086869M 3 2010-04-13T06:24:33.330183 {"key": "/books/OL11086869M", "title": "Wonderful World of Schubert for Violin and Piano", "covers": [2628845], "physical_format": "Paperback", "isbn_10": ["0786668237"], "latest_revision": 3, "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:24:33.330183"}, "authors": [{"key": "/authors/OL3542164A"}], "works": [{"key": "/works/OL9538117W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL11087160M 11 2021-05-10T02:42:20.363743 {"publishers": ["Hyperion (Juv)"], "number_of_pages": 48, "weight": "7.2 ounces", "covers": [8324910], "physical_format": "Hardcover", "key": "/books/OL11087160M", "authors": [{"key": "/authors/OL404192A"}], "ocaid": "edwinemily0000will", "contributions": ["Abby Carter (Illustrator)"], "subjects": ["Brothers and sisters", "Fiction", "Children: Preschool"], "isbn_13": ["9780786801299"], "source_records": ["ia:edwinemily0000will", "ia:edwinemily0000will_p4i2"], "title": "Edwin and Emily (Hyperion Chapters)", "identifiers": {"goodreads": ["1862116"], "librarything": ["5938772"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0786801298"], "publish_date": "November 1995", "works": [{"key": "/works/OL2754131W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.8 x 6 x 0.5 inches", "lccn": ["94033369"], "lc_classifications": ["PZ7.W66824 Ed 1995"], "latest_revision": 11, "revision": 11, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-05-10T02:42:20.363743"}}
+/type/edition /books/OL11087272M 7 2022-05-25T22:36:14.980149 {"publishers": ["Miramax"], "number_of_pages": 80, "weight": "3 ounces", "covers": [2629095], "physical_format": "Paperback", "key": "/books/OL11087272M", "authors": [{"key": "/authors/OL2875616A"}], "ocaid": "spykidsactivityb00tk_0", "subjects": ["Activity Books - General", "Juvenile Fiction / General", "Juvenile Fiction / Movie or Television Tie-In", "Movie Tie - In", "Mysteries, Espionage, & Detective Stories", "Juvenile Fiction", "Children's 9-12 - Activity Books", "Children's Books/Ages 9-12 Nonfiction", "Children: Grades 4-6"], "isbn_13": ["9780786816286"], "source_records": ["ia:spykidsactivityb00tk_0", "bwb:9780786816286"], "title": "Spy Kids Activity Book", "identifiers": {"librarything": ["9125490"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0786816287"], "publish_date": "March 7, 2001", "oclc_numbers": ["47353033"], "works": [{"key": "/works/OL8570983W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "7.4 x 4.8 x 0.5 inches", "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T22:36:14.980149"}}
+/type/edition /books/OL1108730M 11 2020-11-18T13:25:33.874880 {"publishers": ["Career Press"], "identifiers": {"goodreads": ["2521475"], "librarything": ["1965754"]}, "subtitle": "a comprehensive guide to economic issues from foreign trade to health care", "subject_place": ["United States"], "covers": [9794015], "local_id": ["urn:sfpl:31223036884980"], "lc_classifications": ["HB171 .A63 1994"], "latest_revision": 11, "key": "/books/OL1108730M", "authors": [{"key": "/authors/OL586383A"}], "ocaid": "economicliteracy00amos", "publish_places": ["Hawthorne, NJ"], "subjects": ["Economics.", "United States -- Economic conditions -- 1981-"], "subject_time": ["1981-"], "pagination": "ix, 300 p. :", "source_records": ["ia:economicliteracy00amos", "marc:marc_openlibraries_sanfranciscopubliclibrary/sfpl_chq_2018_12_24_run02.mrc:103905128:1462", "bwb:9781564141354", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:142592348:741"], "title": "Economic literacy", "dewey_decimal_class": ["330.973"], "notes": "Includes index.", "number_of_pages": 300, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["94034074"], "isbn_10": ["1564141357"], "publish_date": "1994", "publish_country": "nju", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T13:25:33.874880"}, "by_statement": "by Orley Amos, Jr.", "works": [{"key": "/works/OL3507420W"}], "type": {"key": "/type/edition"}, "revision": 11}
+/type/edition /books/OL11087632M 6 2020-05-15T20:00:31.689951 {"publishers": ["Disney Press"], "covers": [9476154], "edition_name": "1st Paperback Printing edition", "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2020-05-15T20:00:31.689951"}, "latest_revision": 6, "key": "/books/OL11087632M", "ocaid": "disneyskimpossib00disn", "subjects": ["Media Tie-In", "Juvenile Fiction / Movie or Television Tie-In", "Children's Books/All Ages"], "isbn_13": ["9780786846474"], "classifications": {}, "title": "Showdown at Camp Wannaweep (Disney's Kim Possible #3)", "identifiers": {"librarything": ["3607252"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["078684647X"], "publish_date": "August 1, 2003", "oclc_numbers": ["244154253"], "works": [{"key": "/works/OL17890493W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL11087690M 11 2022-11-11T22:27:33.295320 {"publishers": ["Disney Press"], "identifiers": {"librarything": ["7651115"], "goodreads": ["17296"]}, "subtitle": "Music of the Meadow (Disney's Little Einsteins)", "weight": "8.8 ounces", "isbn_10": ["0786855371"], "covers": [2629203], "physical_format": "Hardcover", "key": "/books/OL11087690M", "authors": [{"key": "/authors/OL240250A"}], "ocaid": "musicofmeadow0000ring_e0z4", "contributions": ["Katie Nix (Illustrator)", "Kelly Peterson (Illustrator)"], "isbn_13": ["9780786855377"], "source_records": ["ia:musicofmeadow0000ring_e0z4", "marc:marc_loc_2016/BooksAll.2016.part34.utf8:173658001:1025", "bwb:9780786855377", "promise:bwb_daily_pallets_2022-10-27"], "title": "Disney's Little Einsteins", "number_of_pages": 32, "languages": [{"key": "/languages/eng"}], "subjects": ["Preschool Picture Story Books", "Juvenile Fiction", "Children's Books/Ages 4-8 Fiction", "Children: Kindergarten", "Interactive Adventure", "Nature & the Natural World - Ecology", "Juvenile Fiction / Concepts / General", "Juvenile Fiction / Movie or Television Tie-In", "Concepts - General", "Nature & the Natural World - General", "Animal sounds", "Juvenile literature", "Meadow ecology", "Nature sounds"], "publish_date": "July 18, 2006", "oclc_numbers": ["70689671"], "works": [{"key": "/works/OL1995781W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.1 x 8.1 x 0.3 inches", "lccn": ["2007274956"], "lc_classifications": ["QH541.5.M4 R56 2006", "QH541.5.M4R56 2006"], "local_id": ["urn:bwbsku:T2-EBO-553"], "latest_revision": 11, "revision": 11, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-11T22:27:33.295320"}}
+/type/edition /books/OL11088277M 2 2011-04-27T17:14:20.075066 {"publishers": ["Audio Literature"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2011-04-27T17:14:20.075066"}, "title": "Pocahontas (Children's Classics (Dove Audio))", "type": {"key": "/type/edition"}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780787105945"], "physical_format": "Audio CD", "isbn_10": ["0787105945"], "publish_date": "January 1998", "key": "/books/OL11088277M", "latest_revision": 2, "oclc_numbers": ["37197537"], "contributions": ["Shauna Zurbrugg (Adapter)", "Melissa Manchester (Performer)"], "subjects": ["General", "Audio - Children's"], "revision": 2}
+/type/edition /books/OL11088385M 6 2010-08-17T05:39:56.354736 {"publishers": ["Audio Literature"], "subtitle": "All New & Original Material", "weight": "4.8 ounces", "physical_format": "Audio Cassette", "last_modified": {"type": "/type/datetime", "value": "2010-08-17T05:39:56.354736"}, "latest_revision": 6, "key": "/books/OL11088385M", "authors": [{"key": "/authors/OL24453A"}], "contributions": ["John Ritter (Narrator)"], "subjects": ["General", "Audio - Humor", "Audiobooks", "Audio Adult: Books On Tape"], "isbn_13": ["9780787110178"], "title": "More of Dave Barry's Greatest Hits", "identifiers": {"goodreads": ["486526"], "librarything": ["5997057"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0787110175"], "publish_date": "October 1996", "works": [{"key": "/works/OL15032856W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "7 x 4.5 x 0.8 inches", "revision": 6}
+/type/edition /books/OL11088432M 5 2011-06-08T01:41:15.120749 {"publishers": ["Audio Literature"], "weight": "3 ounces", "physical_format": "Audio Cassette", "last_modified": {"type": "/type/datetime", "value": "2011-06-08T01:41:15.120749"}, "latest_revision": 5, "key": "/books/OL11088432M", "authors": [{"key": "/authors/OL3542363A"}], "contributions": ["Ron Job (Illustrator)"], "subjects": ["Social Issues - Friendship", "Unabridged Audio - Literature Classics"], "title": "The Big Galoot", "identifiers": {"goodreads": ["7116557"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780787112042"], "isbn_10": ["0787112046"], "publish_date": "August 1997", "oclc_numbers": ["38038171"], "works": [{"key": "/works/OL9538334W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "7.1 x 4.4 x 0.7 inches", "revision": 5}
+/type/edition /books/OL11088466M 4 2011-04-30T13:25:16.965771 {"publishers": ["Dove Books"], "number_of_pages": 96, "weight": "4.8 ounces", "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-30T13:25:16.965771"}, "latest_revision": 4, "key": "/books/OL11088466M", "authors": [{"key": "/authors/OL678867A"}], "subjects": ["Topic - Political", "Humor", "1996", "American wit and humor, Pictorial", "Election", "Presidents", "United States"], "isbn_13": ["9780787113001"], "title": "Who's in Charge Here? 1996", "identifiers": {"librarything": ["8884533"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["078711300X"], "publish_date": "November 1996", "oclc_numbers": ["123102451"], "works": [{"key": "/works/OL3818350W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.2 x 5.5 x 0.5 inches", "revision": 4}
+/type/edition /books/OL11088577M 5 2010-05-01T00:53:43.347917 {"subtitle": "The Plan & King Con", "weight": "12.8 ounces", "covers": [2629390], "latest_revision": 5, "edition_name": "Abridged edition", "title": "Stephen J. Cannell", "languages": [{"key": "/languages/eng"}], "subjects": ["General", "Fiction", "Abridged Audio - Fiction/General", "Audio - Fiction - General", "Audiobooks", "Audio Adult: Books On Tape"], "type": {"key": "/type/edition"}, "physical_dimensions": "7.1 x 4.2 x 2.5 inches", "revision": 5, "publishers": ["Audio Literature"], "physical_format": "Audio Cassette", "last_modified": {"type": "/type/datetime", "value": "2010-05-01T00:53:43.347917"}, "key": "/books/OL11088577M", "authors": [{"key": "/authors/OL23958A"}], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "identifiers": {"goodreads": ["21520"]}, "isbn_13": ["9780787120146"], "isbn_10": ["0787120146"], "publish_date": "August 1999", "works": [{"key": "/works/OL15118062W"}]}
+/type/edition /books/OL11088926M 3 2021-12-30T02:22:45.448169 {"physical_format": "Paperback", "languages": [{"key": "/languages/eng"}], "publishers": ["Kendall/Hunt Publishing Company"], "isbn_10": ["0787205974"], "number_of_pages": 240, "edition_name": "2 edition", "isbn_13": ["9780787205973"], "publish_date": "September 1, 1995", "key": "/books/OL11088926M", "authors": [{"key": "/authors/OL680733A"}], "title": "Environment", "subjects": ["ENVIRONMENTAL SCIENCES", "Science / Environmental Science", "Ecology", "Science/Mathematics"], "works": [{"key": "/works/OL3823518W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780787205973"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-30T02:22:45.448169"}}
+/type/edition /books/OL11088944M 6 2021-12-30T02:39:55.351014 {"publishers": ["Kendall/Hunt Publishing Company"], "number_of_pages": 84, "weight": "8 ounces", "physical_format": "Paperback", "key": "/books/OL11088944M", "authors": [{"key": "/authors/OL386034A"}], "subjects": ["Life Sciences - Zoology - General", "POISONOUS ANIMALS", "Science / Zoology", "Science"], "isbn_13": ["9780787207311"], "title": "Poisonous and Venomous Animals", "identifiers": {"goodreads": ["6734546"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0787207314"], "publish_date": "April 1, 1995", "oclc_numbers": ["39100692"], "works": [{"key": "/works/OL2648057W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "11 x 8.5 x 0.2 inches", "source_records": ["bwb:9780787207311"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-30T02:39:55.351014"}}
+/type/edition /books/OL11089111M 5 2021-12-30T01:06:31.769916 {"publishers": ["Kendall/Hunt Publishing Company"], "languages": [{"key": "/languages/eng"}], "title": "Making Healthy Decisions on Alcohol, Tobacco and Other Drugs", "number_of_pages": 142, "isbn_13": ["9780787212155"], "covers": [5094786], "physical_format": "Spiral-bound", "isbn_10": ["0787212156"], "publish_date": "February 1, 2000", "key": "/books/OL11089111M", "authors": [{"key": "/authors/OL1771080A"}], "works": [{"key": "/works/OL8572157W"}], "type": {"key": "/type/edition"}, "subjects": ["Psychology & Psychiatry / Addictions", "SUBSTANCE ABUSE_TREATMENT", "Health/Fitness"], "source_records": ["bwb:9780787212155"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-30T01:06:31.769916"}}
+/type/edition /books/OL11089210M 4 2021-12-30T01:37:25.869656 {"publishers": ["Kendall/Hunt Publishing Company"], "number_of_pages": 72, "weight": "6.4 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0787213926"], "title": "U. S. Government I", "isbn_13": ["9780787213923"], "covers": [5094868], "physical_format": "Paperback", "key": "/books/OL11089210M", "authors": [{"key": "/authors/OL3542673A"}], "publish_date": "August 1, 1995", "works": [{"key": "/works/OL9538736W"}], "type": {"key": "/type/edition"}, "subjects": ["CIVICS", "Political Science / Civics", "UNITED STATES_POLITICS AND GOVERNMENT", "U.S. Government (General)", "Politics/International Relations"], "physical_dimensions": "11 x 9 x 0.2 inches", "source_records": ["bwb:9780787213923"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-30T01:37:25.869656"}}
+/type/edition /books/OL11089216M 5 2021-12-30T02:22:44.823402 {"publishers": ["Kendall/Hunt Publishing Company"], "physical_format": "Paperback", "source_records": ["marc:marc_binghamton_univ/bgm_openlib_final_10-15.mrc:234626728:1050", "bwb:9780787214005"], "title": "Black Experience", "number_of_pages": 288, "isbn_13": ["9780787214005"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0787214000"], "publish_date": "February 1, 1996", "key": "/books/OL11089216M", "authors": [{"key": "/authors/OL3542677A"}], "oclc_numbers": ["36320993"], "works": [{"key": "/works/OL9538740W"}], "type": {"key": "/type/edition"}, "subjects": ["AFRICA_STUDY AND TEACHING", "History / Africa", "History Of Blacks", "Sociology"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-30T02:22:44.823402"}}
+/type/edition /books/OL1108935M 8 2020-11-18T13:28:16.345435 {"publishers": ["German Historical Institute", "Cambridge University Press"], "number_of_pages": 433, "subtitle": "German migrations in comparative perspective, 1820-1930", "isbn_10": ["0521474124"], "series": ["Publications of the German Historical Institute"], "covers": [341627], "lc_classifications": ["DD68 .P46 1995"], "latest_revision": 8, "key": "/books/OL1108935M", "dewey_decimal_class": ["973/.0431"], "publish_places": ["Washington, D.C", "Cambridge", "New York"], "contributions": ["Hoerder, Dirk.", "Nagler, Jo\u0308rg."], "uri_descriptions": ["Sample text", "Publisher description", "Table of contents"], "pagination": "xv, 433 p. :", "source_records": ["marc:marc_records_scriblio_net/part24.dat:68272738:1379", "marc:marc_loc_updates/v38.i40.records.utf8:1828025:1381", "bwb:9780521474122", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:142776426:1381"], "title": "People in transit", "lccn": ["94034289"], "notes": {"type": "/type/text", "value": "Includes bibliographical references and index."}, "identifiers": {"goodreads": ["4084862"]}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "url": ["http://www.loc.gov/catdir/samples/cam031/94034289.html", "http://www.loc.gov/catdir/description/cam026/94034289.html", "http://www.loc.gov/catdir/toc/cam026/94034289.html"], "subjects": ["German Americans -- History", "Germans -- Foreign countries", "Germany -- Emigration and immigration -- History", "Germans -- United States -- History", "United States -- Emigration and immigration -- History"], "publish_date": "1995", "publish_country": "dcu", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T13:28:16.345435"}, "subject_place": ["Germany", "Germans", "United States", "Foreign countries."], "by_statement": "edited by Dirk Hoerder and Jo\u0308rg Nagler.", "works": [{"key": "/works/OL18310050W"}], "type": {"key": "/type/edition"}, "uris": ["http://www.loc.gov/catdir/samples/cam031/94034289.html", "http://www.loc.gov/catdir/description/cam026/94034289.html", "http://www.loc.gov/catdir/toc/cam026/94034289.html"], "revision": 8}
+/type/edition /books/OL11089910M 2 2021-12-30T05:20:31.516450 {"languages": [{"key": "/languages/eng"}], "physical_format": "Spiral-bound", "publishers": ["Kendall/Hunt Publishing Company"], "number_of_pages": 52, "isbn_13": ["9780787228590"], "isbn_10": ["0787228591"], "publish_date": "August 1, 1996", "key": "/books/OL11089910M", "authors": [{"key": "/authors/OL754383A"}, {"key": "/authors/OL168504A"}], "title": "Adventures in Human Physiology", "type": {"key": "/type/edition"}, "subjects": ["PHYSIOLOGY", "Science / Physiology"], "works": [{"key": "/works/OL26781164W"}], "source_records": ["bwb:9780787228590"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-30T05:20:31.516450"}}
+/type/edition /books/OL1108994M 6 2022-12-10T00:59:37.218783 {"publishers": ["McGraw-Hill"], "number_of_pages": 252, "subtitle": "a handbook for organizational action", "isbn_10": ["0077079329"], "lc_classifications": ["HF5549.5.E43 R49 1994"], "key": "/books/OL1108994M", "authors": [{"key": "/authors/OL586482A"}], "publish_places": ["London", "New York"], "pagination": "xviii, 252 p. ;", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:142828857:791", "ia:dealingwithcrime0000reyn", "promise:bwb_daily_pallets_2020-09-09"], "title": "Dealing with crime and aggression at work", "dewey_decimal_class": ["658.4/73"], "notes": {"type": "/type/text", "value": "Includes bibliographical references and index."}, "identifiers": {"goodreads": ["4194218"]}, "languages": [{"key": "/languages/eng"}], "lccn": ["94034351"], "subjects": ["Employees -- Crimes against.", "Business enterprises -- Security measures.", "Violence in the workplace."], "publish_date": "1994", "publish_country": "enk", "by_statement": "written by Peter Reynolds.", "works": [{"key": "/works/OL3507916W"}], "type": {"key": "/type/edition"}, "covers": [11615869], "ocaid": "dealingwithcrime0000reyn", "local_id": ["urn:bwbsku:KO-202-299"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T00:59:37.218783"}}
+/type/edition /books/OL1109001M 10 2022-12-10T14:30:08.511902 {"publishers": ["Group"], "ia_box_id": ["IA184801"], "isbn_10": ["1559451963", "1559456035"], "covers": [1884002], "ia_loaded_id": ["funtolearnbiblel00goin"], "lc_classifications": ["BS600.2 .F86 1994"], "key": "/books/OL1109001M", "ocaid": "funtolearnbiblel00goin", "publish_places": ["Loveland, Colo"], "contributions": ["Goings, Nanette.", "Lingo, Susan L.", "Berge, Carolyn."], "pagination": "v. <1-2 > :", "source_records": ["ia:funtolearnbiblel00goin", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:142834358:843", "promise:bwb_daily_pallets_2020-04-09", "promise:bwb_daily_pallets_2020-03-26"], "title": "Fun-to-learn Bible lessons.", "dewey_decimal_class": ["268/.432"], "notes": {"type": "/type/text", "value": "Vol. 2: contributors, Carolyn Berge ... et al."}, "identifiers": {"librarything": ["6521510"], "goodreads": ["4479877", "3285262"], "amazon": [""]}, "languages": [{"key": "/languages/eng"}], "lccn": ["94034358"], "subjects": ["Bible -- Study and teaching.", "Christian education of children."], "publish_date": "1994", "publish_country": "cou", "by_statement": "[contributors, Nanette Goings ... et al.] ; edited by Susan L. Lingo.", "works": [{"key": "/works/OL3946025W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:O6-AWI-033", "urn:bwbsku:862-BAA-016"], "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T14:30:08.511902"}}
+/type/edition /books/OL11090115M 6 2021-12-30T06:21:27.239201 {"publishers": ["Kendall/Hunt Publishing Company"], "number_of_pages": 224, "subtitle": "101 Problems and Solutions", "title": "The Editing Book", "identifiers": {"goodreads": ["301018"]}, "isbn_13": ["9780787236854"], "physical_format": "Paperback", "isbn_10": ["0787236853"], "publish_date": "May 1, 1997", "key": "/books/OL11090115M", "authors": [{"key": "/authors/OL3542831A"}], "oclc_numbers": ["47749402"], "works": [{"key": "/works/OL9538946W"}], "type": {"key": "/type/edition"}, "subjects": ["Editing & Proofreading", "EDITING", "Language Arts & Disciplines / Editing & Proofreading", "Language Arts / Linguistics / Literacy"], "source_records": ["bwb:9780787236854"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-30T06:21:27.239201"}}
+/type/edition /books/OL11090134M 3 2021-12-30T05:20:54.825123 {"physical_format": "Spiral-bound", "publishers": ["Kendall/Hunt Publishing Company"], "isbn_10": ["078723740X"], "number_of_pages": 144, "isbn_13": ["9780787237400"], "languages": [{"key": "/languages/eng"}], "publish_date": "August 1, 1997", "key": "/books/OL11090134M", "authors": [{"key": "/authors/OL3543132A"}], "title": "Laboratory Manual to Accompany Fundamental Concepts", "subjects": ["General", "LABORATORIES", "Science / General", "Science"], "works": [{"key": "/works/OL9539259W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780787237400"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-30T05:20:54.825123"}}
+/type/edition /books/OL11090188M 5 2021-12-30T05:57:08.279184 {"publishers": ["Kendall/Hunt Publishing Company"], "subtitle": "A General Guidebook", "weight": "3 pounds", "covers": [2629429], "edition_name": "2 edition", "physical_format": "Spiral-bound", "key": "/books/OL11090188M", "authors": [{"key": "/authors/OL27619A"}], "subjects": ["General", "Psychology & Psychiatry / General", "Psychology"], "isbn_13": ["9780787238940"], "source_records": ["amazon:0787238945", "bwb:9780787238940"], "title": "Introduction to Psychology", "number_of_pages": 220, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0787238945"], "publish_date": "July 1, 1997", "oclc_numbers": ["37932987"], "works": [{"key": "/works/OL30708W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "11 x 9 x 0.5 inches", "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-30T05:57:08.279184"}}
+/type/edition /books/OL11090448M 3 2021-12-30T07:41:22.071231 {"physical_format": "Paperback", "subtitle": "Interactive Reading Manual for College Students", "publishers": ["Kendall/Hunt Publishing Company"], "isbn_10": ["0787246476"], "number_of_pages": 166, "isbn_13": ["9780787246471"], "languages": [{"key": "/languages/eng"}], "publish_date": "February 1, 1998", "key": "/books/OL11090448M", "authors": [{"key": "/authors/OL2657256A"}], "title": "Pak", "subjects": ["Readers", "COLLEGE READERS", "Language Arts & Disciplines / Readers", "Language Arts / Linguistics / Literacy"], "works": [{"key": "/works/OL7969749W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780787246471"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-30T07:41:22.071231"}}
+/type/edition /books/OL11090593M 3 2021-12-30T07:42:09.054492 {"physical_format": "Paperback", "languages": [{"key": "/languages/eng"}], "publishers": ["Kendall/Hunt Publishing Company"], "isbn_10": ["0787251348"], "number_of_pages": 128, "edition_name": "2 edition", "isbn_13": ["9780787251345"], "publish_date": "August 1, 1998", "key": "/books/OL11090593M", "authors": [{"key": "/authors/OL3543341A"}], "title": "General Chemistry Lab Manual", "subjects": ["CHEMISTRY_LABORATORY MANUALS", "Science / Chemistry / General"], "works": [{"key": "/works/OL9539446W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780787251345"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-30T07:42:09.054492"}}
+/type/edition /books/OL11091574M 7 2021-12-30T01:25:01.510702 {"publishers": ["Kendall/Hunt Publishing Company"], "weight": "1.4 pounds", "covers": [5095128], "physical_format": "Paperback", "key": "/books/OL11091574M", "authors": [{"key": "/authors/OL3543517A"}], "subjects": ["MATHEMATICS", "Mathematics / General", "Science/Mathematics"], "languages": [{"key": "/languages/eng"}], "title": "Introductory Skills for Growth in College Mathematics", "identifiers": {"goodreads": ["6031469"]}, "isbn_13": ["9780787274245"], "isbn_10": ["0787274240"], "publish_date": "August 1, 2000", "oclc_numbers": ["48854781"], "works": [{"key": "/works/OL9539632W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.5 x 8.2 x 0.5 inches", "source_records": ["bwb:9780787274245"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-30T01:25:01.510702"}}
+/type/edition /books/OL11092231M 5 2022-12-04T15:24:32.255638 {"publishers": ["Kendall/Hunt Publishing Company"], "physical_format": "Paperback", "title": "Mission Accomplished with Engineering Design Graphics", "number_of_pages": 224, "isbn_13": ["9780787294069"], "isbn_10": ["0787294063"], "publish_date": "August 1, 2002", "key": "/books/OL11092231M", "authors": [{"key": "/authors/OL3235439A"}], "oclc_numbers": ["64576981"], "works": [{"key": "/works/OL9159335W"}], "type": {"key": "/type/edition"}, "subjects": ["ENGINEERING DESIGN", "ENGINEERING GRAPHICS", "Technology / Industrial Design / General", "Engineering - General", "Technology", "Science/Mathematics"], "source_records": ["bwb:9780787294069", "promise:bwb_daily_pallets_2022-08-30"], "local_id": ["urn:bwbsku:O8-CTJ-621"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T15:24:32.255638"}}
+/type/edition /books/OL11092301M 6 2021-12-30T02:43:55.424035 {"publishers": ["Kendall/Hunt Publishing Company"], "identifiers": {"goodreads": ["1674928"]}, "subtitle": "An Experiential Guide to Senior Seminar", "weight": "1.1 pounds", "covers": [2629506], "physical_format": "Paperback", "key": "/books/OL11092301M", "authors": [{"key": "/authors/OL3544095A"}, {"key": "/authors/OL582455A"}, {"key": "/authors/OL3544096A"}], "subjects": ["Education / Adult & Continuing Education", "SEMINARS", "Experimental Methods", "Education"], "isbn_13": ["9780787295882"], "title": "To Be That Light", "number_of_pages": 188, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0787295884"], "publish_date": "December 1, 2002", "oclc_numbers": ["51731108"], "type": {"key": "/type/edition"}, "physical_dimensions": "10.8 x 8.2 x 0.5 inches", "works": [{"key": "/works/OL26776211W"}], "source_records": ["bwb:9780787295882"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-30T02:43:55.424035"}}
+/type/edition /books/OL11092571M 2 2010-04-13T06:24:33.330183 {"publishers": ["SOS Free Stock"], "weight": "1.7 pounds", "title": "SOS Title Unknown", "isbn_13": ["9780787303631"], "covers": [5095549], "physical_format": "Unknown Binding", "isbn_10": ["0787303631"], "latest_revision": 2, "key": "/books/OL11092571M", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:24:33.330183"}, "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL11093015M 2 2009-12-15T00:58:56.306269 {"physical_format": "Hardcover", "title": "SUPERLCCS 96 Schedule T", "isbn_10": ["0787604585"], "publishers": ["Gale Group"], "isbn_13": ["9780787604585"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:58:56.306269"}, "publish_date": "March 1997", "key": "/books/OL11093015M", "authors": [{"key": "/authors/OL3544306A"}], "latest_revision": 2, "subjects": ["Library & Information Science", "Education / Teaching"], "works": [{"key": "/works/OL9540397W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL11093038M 2 2009-12-15T00:58:56.306269 {"publishers": ["Gale Group"], "subtitle": "State Rankings by Sales Within 4 Digits Sic (Ward's Business Directory , Vol 6, Part 1&2)", "isbn_10": ["0787607606"], "number_of_pages": 2850, "isbn_13": ["9780787607609"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:58:56.306269"}, "publish_date": "October 1995", "latest_revision": 2, "key": "/books/OL11093038M", "authors": [{"key": "/authors/OL3544311A"}], "title": "Ward's Business Directory 1996", "subjects": ["Reference - General", "Business / Economics / Finance", "Reference"], "works": [{"key": "/works/OL9540439W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL1109303M 7 2022-12-14T15:45:25.611717 {"notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 97-117) and index."}, "identifiers": {"goodreads": ["4912538"]}, "title": "Labor statistics and class struggle", "authors": [{"key": "/authors/OL241363A"}], "publish_date": "1994", "publishers": ["International Publishers"], "isbn_10": ["0717807118"], "lc_classifications": ["HD4909 .L53 1994", "HD4909.L53 1994"], "publish_places": ["New York"], "pagination": "vii, 122 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:143100872:745", "bwb:9780717807116", "ia:laborstatisticsc0000lind"], "dewey_decimal_class": ["331.1"], "languages": [{"key": "/languages/eng"}], "lccn": ["94034677"], "subjects": ["Labor costs -- Statistics -- History.", "Labor supply -- Statistics -- History.", "Industrial accidents -- Statistics -- History."], "publish_country": "nyu", "by_statement": "Marc Linder.", "type": {"key": "/type/edition"}, "ocaid": "laborstatisticsc0000lind", "key": "/books/OL1109303M", "number_of_pages": 122, "works": [{"key": "/works/OL2003841W"}], "covers": [13089941], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-14T15:45:25.611717"}}
+/type/edition /books/OL11093158M 4 2022-07-30T21:52:19.609086 {"publishers": ["Thomson Gale"], "number_of_pages": 733, "weight": "2.8 pounds", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0787611611"], "title": "Educational Rankings Annual 1998 (Educational Rankings Annual)", "isbn_13": ["9780787611613"], "covers": [2629551], "physical_format": "Hardcover", "key": "/books/OL11093158M", "authors": [{"key": "/authors/OL2876658A"}], "publish_date": "August 1997", "works": [{"key": "/works/OL9540272W"}], "type": {"key": "/type/edition"}, "subjects": ["Yearbooks & Annuals", "Reference"], "physical_dimensions": "11.5 x 8.8 x 1.2 inches", "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-30T21:52:19.609086"}}
+/type/edition /books/OL11093246M 2 2009-10-24T21:41:29.175761 {"publishers": ["Gale Cengage"], "physical_format": "Hardcover", "source_records": ["amazon:0787613932"], "title": "Superlccs", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780787613938"], "edition_name": "Updated edition", "languages": [{"key": "/languages/eng"}], "authors": [{"key": "/authors/OL2626509A"}], "isbn_10": ["0787613932"], "publish_date": "December 1997", "key": "/books/OL11093246M", "last_modified": {"type": "/type/datetime", "value": "2009-10-24T21:41:29.175761"}, "latest_revision": 2, "subjects": ["Bibliographic & subject control", "Reference works", "General", "Reference"], "works": [{"key": "/works/OL269549W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL1109395M 10 2022-12-07T09:46:12.389722 {"publishers": ["Yale University Press"], "identifiers": {"goodreads": ["4758406"], "librarything": ["4584586"]}, "subtitle": "the Anfal campaign against the Kurds", "isbn_10": ["0300064276"], "series": ["Human Rights Watch books"], "lc_classifications": ["DS70.8.K8 I37 1995", "DS70.8.K8I37 1995"], "key": "/books/OL1109395M", "publish_places": ["New Haven"], "contributions": ["Human Rights Watch/Middle East."], "pagination": "xxx, 373 p. :", "source_records": ["marc:marc_records_scriblio_net/part24.dat:68677077:865", "bwb:9780300064278", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:143183739:865", "ia:iraqscrimeofgeno0000unse", "promise:bwb_daily_pallets_2022-03-17"], "title": "Iraq's crime of genocide", "dewey_decimal_class": ["305.89159"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 361-364) and index."}, "number_of_pages": 373, "languages": [{"key": "/languages/eng"}], "lccn": ["94034779"], "subjects": ["Kurds -- Iraq.", "Massacres -- Iraq.", "Genocide -- Iraq.", "Iraq -- Ethnic relations."], "publish_date": "1995", "publish_country": "ctu", "subject_place": ["Iraq", "Iraq."], "by_statement": "Human Rights Watch/Middle East.", "works": [{"key": "/works/OL18911706W"}], "type": {"key": "/type/edition"}, "covers": [12719837], "ocaid": "iraqscrimeofgeno0000unse", "local_id": ["urn:bwbsku:P7-DJG-823"], "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-07T09:46:12.389722"}}
+/type/edition /books/OL11094142M 2 2009-12-15T00:58:56.306269 {"physical_format": "Paperback", "publishers": ["Gale Cengage"], "isbn_10": ["0787642797"], "number_of_pages": 125, "isbn_13": ["9780787642792"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:58:56.306269"}, "publish_date": "August 2000", "latest_revision": 2, "key": "/books/OL11094142M", "authors": [{"key": "/authors/OL2827863A"}], "title": "New Research Centers, 2000 (New Research Centers)", "subjects": ["Library & Information Sciences", "Reference works", "General", "Reference"], "works": [{"key": "/works/OL8471395W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL11094605M 2 2010-04-13T06:24:33.330183 {"physical_format": "Hardcover", "weight": "5.8 pounds", "publishers": ["Gale Group"], "isbn_10": ["0787662070"], "number_of_pages": 2600, "isbn_13": ["9780787662073"], "covers": [2629770], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:24:33.330183"}, "publish_date": "November 2002", "latest_revision": 2, "key": "/books/OL11094605M", "authors": [{"key": "/authors/OL2626509A"}], "title": "Gale Directory of Databases 2003", "subjects": ["Databases & data structures", "General", "Directories", "Reference"], "type": {"key": "/type/edition"}, "physical_dimensions": "11 x 8.4 x 2.6 inches", "revision": 2}
+/type/edition /books/OL11094731M 4 2019-01-10T06:08:54.264368 {"publishers": ["Thompson Gale"], "source_records": ["ia:galedirectoryofp00thom"], "title": "Gale Directory of Publications and Broadcast Media (Formerly Ayer Directory of publications) 139th Edition Vol. 1", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780787668563"], "covers": [8326557], "physical_format": "Hardcover", "isbn_10": ["0787668567"], "publish_date": "2004", "key": "/books/OL11094731M", "last_modified": {"type": "/type/datetime", "value": "2019-01-10T06:08:54.264368"}, "ocaid": "galedirectoryofp00thom", "oclc_numbers": ["56633234"], "works": [{"key": "/works/OL18161255W"}], "type": {"key": "/type/edition"}, "latest_revision": 4, "revision": 4}
+/type/edition /books/OL11094911M 3 2011-04-29T17:46:18.260546 {"publishers": ["Thomson Gale"], "subtitle": "Schedule E-F History-America (Superlccs)", "weight": "2.9 pounds", "covers": [5095684], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T17:46:18.260546"}, "latest_revision": 3, "key": "/books/OL11094911M", "subjects": ["Library & Information Science", "General", "Language Arts & Disciplines", "Reference", "Language"], "isbn_13": ["9780787672751"], "title": "Superlccs 2003", "number_of_pages": 584, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0787672750"], "publish_date": "May 2004", "oclc_numbers": ["253917619"], "type": {"key": "/type/edition"}, "physical_dimensions": "11 x 8.4 x 1.2 inches", "revision": 3}
+/type/edition /books/OL11094997M 3 2019-07-31T12:27:54.352191 {"publishers": ["The Gale Group"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2019-07-31T12:27:54.352191"}, "title": "Reference Library of Black America [Volumes 1-5]", "identifiers": {"librarything": ["6769864"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780787676322"], "isbn_10": ["0787676322"], "publish_date": "2003", "key": "/books/OL11094997M", "latest_revision": 3, "works": [{"key": "/works/OL16064367W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL11095415M 6 2022-10-30T12:18:34.137488 {"publishers": ["Gale Cengage"], "weight": "3 pounds", "covers": [2629932], "physical_format": "Hardcover", "key": "/books/OL11095415M", "authors": [{"key": "/authors/OL2876693A"}], "ocaid": "twentiethcentury00tho_kid", "subjects": ["Reference", "Literary Criticism", "Literature - Classics / Criticism", "19th century", "20th century", "History and criticism", "Literature, Modern"], "isbn_13": ["9780787689247"], "source_records": ["ia:twentiethcentury00tho_kid", "amazon:0787689246"], "title": "Twentieth-Century Literary Criticism (Twentieth Century Literary Criticism)", "number_of_pages": 441, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0787689246"], "publish_date": "February 2006", "oclc_numbers": ["644687417"], "works": [{"key": "/works/OL8573147W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "11.3 x 8.3 x 1.3 inches", "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-30T12:18:34.137488"}}
+/type/edition /books/OL11095711M 4 2018-12-09T04:58:17.928310 {"publishers": ["Gale Cengage"], "physical_format": "Hardcover", "source_records": ["ia:twentiethcentury0000unse_v6n2"], "title": "Twentieth Century Literary Criticism", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780787699727"], "covers": [5096710], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0787699721"], "publish_date": "April 18, 2008", "latest_revision": 4, "key": "/books/OL11095711M", "last_modified": {"type": "/type/datetime", "value": "2018-12-09T04:58:17.928310"}, "ocaid": "twentiethcentury0000unse_v6n2", "oclc_numbers": ["644692841"], "works": [{"key": "/works/OL18021763W"}], "type": {"key": "/type/edition"}, "subjects": ["Reference", "Literary Criticism", "Literature - Classics / Criticism"], "revision": 4}
+/type/edition /books/OL11095842M 4 2011-04-26T19:04:49.186078 {"publishers": ["Milliken Publishing"], "identifiers": {"goodreads": ["2528266"]}, "subtitle": "Lewis & Clark", "last_modified": {"type": "/type/datetime", "value": "2011-04-26T19:04:49.186078"}, "title": "Illuminating History", "physical_format": "Paperback", "number_of_pages": 38, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "type": {"key": "/type/edition"}, "isbn_10": ["0787705748"], "publish_date": "2003", "key": "/books/OL11095842M", "authors": [{"key": "/authors/OL2753416A"}], "latest_revision": 4, "oclc_numbers": ["52763011"], "works": [{"key": "/works/OL8274504W"}], "contributions": ["Joan Waites (Illustrator)"], "revision": 4}
+/type/edition /books/OL11095963M 2 2009-12-15T00:58:58.155968 {"publishers": ["Jossey Bass Wiley"], "key": "/books/OL11095963M", "title": "Pfeiffer Library Individual V24 Binder", "isbn_13": ["9780787904722"], "physical_format": "Hardcover", "isbn_10": ["0787904724"], "latest_revision": 2, "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:58:58.155968"}, "authors": [{"key": "/authors/OL2876958A"}], "works": [{"key": "/works/OL8574146W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL11095973M 3 2022-10-17T04:58:33.670777 {"physical_format": "Ring-bound", "subtitle": "Organization, Volume 27 (Loose-Leaf Pages)", "publishers": ["Pfeiffer Wiley"], "isbn_10": ["0787904821"], "number_of_pages": 336, "isbn_13": ["9780787904821"], "languages": [{"key": "/languages/eng"}], "publish_date": "January 15, 1994", "key": "/books/OL11095973M", "authors": [{"key": "/authors/OL2876958A"}], "title": "Pfeiffer and Company Library of Theories and Model S", "subjects": ["Business & Management"], "works": [{"key": "/works/OL8574286W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780787904821"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T04:58:33.670777"}}
+/type/edition /books/OL11096022M 2 2009-12-15T00:58:58.155968 {"publishers": ["John Wiley and Sons Ltd"], "key": "/books/OL11096022M", "title": "Teamview 360 Ll Binder", "isbn_13": ["9780787905385"], "physical_format": "Hardcover", "isbn_10": ["0787905380"], "latest_revision": 2, "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:58:58.155968"}, "authors": [{"key": "/authors/OL2876958A"}], "works": [{"key": "/works/OL8574228W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL11096358M 2 2009-12-15T00:58:58.155968 {"publishers": ["Jossey Bass Wiley"], "isbn_10": ["0787912026"], "number_of_pages": 16, "isbn_13": ["9780787912024"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:58:58.155968"}, "latest_revision": 2, "key": "/books/OL11096358M", "authors": [{"key": "/authors/OL2753541A"}], "title": "Assessment Update V07 6 95", "subjects": ["Education"], "works": [{"key": "/works/OL8274798W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL11096380M 2 2009-12-15T00:58:58.155968 {"publishers": ["Jossey Bass Wiley"], "isbn_10": ["0787912247"], "number_of_pages": 8, "isbn_13": ["9780787912246"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:58:58.155968"}, "latest_revision": 2, "key": "/books/OL11096380M", "authors": [{"key": "/authors/OL2745689A"}], "title": "Board Leadership Newsletter BL 14 1994", "subjects": ["Business & Management"], "works": [{"key": "/works/OL8249737W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL11096729M 4 2010-04-24T18:14:28.389476 {"publishers": ["Jossey Bass Wiley"], "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:14:28.389476"}, "title": "Basic School Box", "identifiers": {"goodreads": ["1232030"]}, "isbn_13": ["9780787941154"], "physical_format": "Hardcover", "isbn_10": ["0787941158"], "latest_revision": 4, "key": "/books/OL11096729M", "authors": [{"key": "/authors/OL3415855A"}], "works": [{"key": "/works/OL9378741W"}], "type": {"key": "/type/edition"}, "subjects": ["Education"], "revision": 4}
+/type/edition /books/OL11096809M 5 2011-04-27T00:14:47.669834 {"publishers": ["Pfeiffer Wiley"], "number_of_pages": 74, "covers": [2630036], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T00:14:47.669834"}, "latest_revision": 5, "key": "/books/OL11096809M", "authors": [{"key": "/authors/OL1994515A"}], "subjects": ["Business & Management"], "classifications": {}, "title": "Compass E Managerial Practices Profile - Participant WBKB (Manual 3-hole)", "notes": {"type": "/type/text", "value": "Paper Only"}, "identifiers": {}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780787943080"], "isbn_10": ["0787943088"], "publish_date": "May 15, 1998", "oclc_numbers": ["41962712"], "works": [{"key": "/works/OL7078666W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL11096867M 5 2011-04-26T14:11:23.003742 {"publishers": ["Jossey Bass Wiley"], "number_of_pages": 176, "last_modified": {"type": "/type/datetime", "value": "2011-04-26T14:11:23.003742"}, "title": "Designing Effective Service Learning Experiences", "type": {"key": "/type/edition"}, "identifiers": {"goodreads": ["148625"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780787944841"], "isbn_10": ["078794484X"], "latest_revision": 5, "key": "/books/OL11096867M", "authors": [{"key": "/authors/OL2887548A"}], "oclc_numbers": ["227948785"], "works": [{"key": "/works/OL8595630W"}], "physical_format": "Paperback", "subjects": ["Education"], "revision": 5}
+/type/edition /books/OL11097078M 7 2020-10-08T05:20:59.926385 {"publishers": ["Jossey Bass Wiley"], "physical_format": "Paperback", "lc_classifications": [""], "latest_revision": 7, "key": "/books/OL11097078M", "authors": [{"key": "/authors/OL2880531A"}], "subjects": ["Psychology"], "isbn_13": ["9780787951474"], "classifications": {}, "source_records": ["bwb:9780787951474"], "title": "Fighting for Your Marriage 4v Set", "notes": {"type": "/type/text", "value": "Paper Only"}, "identifiers": {"goodreads": ["3206866"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0787951471"], "publish_date": "March 26, 1999", "last_modified": {"type": "/type/datetime", "value": "2020-10-08T05:20:59.926385"}, "works": [{"key": "/works/OL8580783W"}], "type": {"key": "/type/edition"}, "revision": 7}
+/type/edition /books/OL11098121M 4 2010-04-24T18:14:28.389476 {"publishers": ["CSS Publishing Company"], "physical_format": "Audio CD", "weight": "12.3 ounces", "title": "In the Carpenter's Worship (In the Carpenter's Workshop)", "identifiers": {"goodreads": ["6762948"]}, "isbn_13": ["9780788008931"], "languages": [{"key": "/languages/eng"}], "authors": [{"key": "/authors/OL3331585A"}], "isbn_10": ["0788008935"], "publish_date": "August 1997", "key": "/books/OL11098121M", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:14:28.389476"}, "latest_revision": 4, "works": [{"key": "/works/OL9277647W"}], "type": {"key": "/type/edition"}, "subjects": ["Christian Ministry - Preaching", "Preaching", "Religious & Liturgical", "Sermons - Christian", "Software - Bibles / Religion - CDROM / PC"], "physical_dimensions": "8.3 x 5.4 x 0.7 inches", "revision": 4}
+/type/edition /books/OL11098576M 2 2010-04-13T06:24:33.330183 {"physical_format": "Paperback", "subtitle": "A Statistical Profile", "title": "The Black Population in the U. S.", "isbn_10": ["0788102362"], "publishers": ["Diane Books Publishing Company"], "isbn_13": ["9780788102363"], "covers": [5096866], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:24:33.330183"}, "publish_date": "January 1994", "key": "/books/OL11098576M", "latest_revision": 2, "subjects": ["Minority Studies - General", "Minority Studies", "Social Science", "Sociology"], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL11099397M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Paperback", "weight": "6.4 ounces", "publishers": ["Diane Pub Co"], "number_of_pages": 70, "isbn_13": ["9780788121968"], "isbn_10": ["0788121960"], "publish_date": "August 30, 2004", "key": "/books/OL11099397M", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "title": "Decommissioning Of U.s. Uranium Production Facilities", "type": {"key": "/type/edition"}, "subjects": ["Rocks & Minerals", "Nature", "Nature/Ecology"], "physical_dimensions": "10.7 x 8.3 x 0.5 inches", "revision": 1}
+/type/edition /books/OL11099546M 2 2010-04-13T06:24:33.330183 {"physical_format": "Paperback", "weight": "2 pounds", "publishers": ["Diane Pub Co"], "number_of_pages": 368, "isbn_13": ["9780788125010"], "covers": [5098310], "languages": [{"key": "/languages/eng"}], "isbn_10": ["078812501X"], "publish_date": "August 30, 2004", "latest_revision": 2, "key": "/books/OL11099546M", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:24:33.330183"}, "title": "Health Care Technology And Its Assessment In Eight Countries", "subjects": ["Public Health", "Medical"], "type": {"key": "/type/edition"}, "physical_dimensions": "10.9 x 8.5 x 0.9 inches", "revision": 2}
+/type/edition /books/OL11099622M 7 2012-09-15T07:50:59.261841 {"publishers": ["Diane Pub Co"], "subtitle": "January 1984-March 1994", "weight": "3.2 ounces", "covers": [5097762], "physical_format": "Plastic comb", "last_modified": {"type": "/type/datetime", "value": "2012-09-15T07:50:59.261841"}, "latest_revision": 7, "key": "/books/OL11099622M", "languages": [{"key": "/languages/eng"}], "source_records": ["amazon:0788126830"], "title": "Hydroponics Nutrient Film Techniques", "identifiers": {"librarything": ["9350045"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780788126833"], "isbn_10": ["0788126830"], "publish_date": "January 1994", "works": [{"key": "/works/OL54407W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.8 x 8.6 x 0.2 inches", "revision": 7}
+/type/edition /books/OL11101320M 3 2010-04-13T06:24:33.330183 {"publishers": ["Diane Pub Co"], "languages": [{"key": "/languages/eng"}], "subtitle": "Profile of Army Financial Managers", "key": "/books/OL11101320M", "title": "Financial Management", "isbn_13": ["9780788173523"], "covers": [5098042], "physical_format": "Paperback", "isbn_10": ["0788173529"], "publish_date": "June 1998", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:24:33.330183"}, "authors": [{"key": "/authors/OL3545865A"}], "latest_revision": 3, "works": [{"key": "/works/OL9542153W"}], "type": {"key": "/type/edition"}, "subjects": ["Military"], "revision": 3}
+/type/edition /books/OL11101441M 5 2010-04-24T18:14:28.389476 {"number_of_pages": 223, "subtitle": "National Health Promotion and Disease Prevention", "weight": "1.4 pounds", "covers": [5098553], "latest_revision": 5, "edition_name": "1 edition", "title": "Healthy People 2000, Review, 1997", "languages": [{"key": "/languages/eng"}], "subjects": ["Preventive Medicine", "Medical"], "type": {"key": "/type/edition"}, "physical_dimensions": "10.8 x 8.5 x 0.5 inches", "revision": 5, "publishers": ["DIANE PUBLISHING COMPANY"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:14:28.389476"}, "key": "/books/OL11101441M", "authors": [{"key": "/authors/OL807473A"}], "identifiers": {"goodreads": ["5432879"]}, "isbn_13": ["9780788175596"], "isbn_10": ["0788175599"], "publish_date": "1998", "works": [{"key": "/works/OL4221803W"}]}
+/type/edition /books/OL11102020M 5 2011-04-30T08:29:35.647038 {"publishers": ["Diane Pub Co"], "subtitle": "A Model Protocol for Police Response, Pennsylvania Attorney General\u00aas Family Violence Taskforce", "weight": "5.6 ounces", "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-30T08:29:35.647038"}, "latest_revision": 5, "key": "/books/OL11102020M", "authors": [{"key": "/authors/OL3512537A"}], "subjects": ["Family/Marriage"], "isbn_13": ["9780788183423"], "title": "Domestic Violence", "identifiers": {"goodreads": ["3181551"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0788183427"], "publish_date": "June 1989", "oclc_numbers": ["52719236"], "works": [{"key": "/works/OL9499563W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.5 x 8.2 x 0.2 inches", "revision": 5}
+/type/edition /books/OL11102059M 5 2010-04-24T18:14:28.389476 {"publishers": ["Diane Pub Co"], "number_of_pages": 198, "subtitle": "Privacy In The Electronic Age Hearings Before The Committee On Labor And Human Resources, U.s. Senate", "weight": "1.1 pounds", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0788184121"], "identifiers": {"goodreads": ["2719834"]}, "isbn_13": ["9780788184123"], "covers": [5098658], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:14:28.389476"}, "latest_revision": 5, "key": "/books/OL11102059M", "authors": [{"key": "/authors/OL2814275A"}], "publish_date": "September 1997", "title": "Protecting Our Personal Health Information", "works": [{"key": "/works/OL8442140W"}], "type": {"key": "/type/edition"}, "subjects": ["Security - General", "Computers", "Computer Books: General"], "physical_dimensions": "14.3 x 11.8 x 0.6 inches", "revision": 5}
+/type/edition /books/OL11102411M 4 2011-04-29T17:16:18.615339 {"publishers": ["Abraham Pub. Group"], "physical_format": "Audio Cassette", "subtitle": "A Six-week Program", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T17:16:18.615339"}, "title": "How to Get From Where You Are to Where You Want to Be", "identifiers": {"librarything": ["7471767"], "goodreads": ["89973"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780788189050"], "isbn_10": ["0788189050"], "publish_date": "1994", "key": "/books/OL11102411M", "latest_revision": 4, "oclc_numbers": ["607474323"], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL11102509M 4 2011-04-28T13:35:32.469293 {"publishers": ["DIANE Publishing Company"], "subtitle": "The Authoritative Topic-By-Topic Dictionary of American Lingoes from All Walks of Life", "weight": "1.7 pounds", "covers": [5098665], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-28T13:35:32.469293"}, "latest_revision": 4, "key": "/books/OL11102509M", "authors": [{"key": "/authors/OL32515A"}], "subjects": ["Dictionaries - Idioms & Slang", "Reference"], "isbn_13": ["9780788192562"], "source_records": ["amazon:0788192566"], "title": "Slang", "number_of_pages": 465, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0788192566"], "publish_date": "March 1998", "oclc_numbers": ["228089433"], "works": [{"key": "/works/OL108512W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.2 x 6.2 x 1.5 inches", "revision": 4}
+/type/edition /books/OL11102647M 2 2009-12-15T00:59:05.147640 {"publishers": ["Abbe Pub Assn of Washington Dc"], "subtitle": "Index of New Information & Research Bible of Current Reviews", "weight": "2 pounds", "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:59:05.147640"}, "latest_revision": 2, "key": "/books/OL11102647M", "authors": [{"key": "/authors/OL3546398A"}], "subjects": ["Science/Mathematics"], "languages": [{"key": "/languages/eng"}], "title": "Metallurgy in Medicine & Industry", "isbn_13": ["9780788300073"], "isbn_10": ["0788300075"], "publish_date": "June 1994", "works": [{"key": "/works/OL9542664W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "11.2 x 8.8 x 1 inches", "revision": 2}
+/type/edition /books/OL11102807M 3 2011-04-26T14:11:23.003742 {"publishers": ["Abbe Pub Assn of Washington Dc"], "physical_format": "Paperback", "subtitle": "Index of New Information and Research Bible", "last_modified": {"type": "/type/datetime", "value": "2011-04-26T14:11:23.003742"}, "title": "Medical Research Support-What's Going on in the U.S.A", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780788302251"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0788302256"], "publish_date": "September 1995", "key": "/books/OL11102807M", "authors": [{"key": "/authors/OL585830A"}], "latest_revision": 3, "oclc_numbers": ["51356951"], "works": [{"key": "/works/OL3504996W"}], "type": {"key": "/type/edition"}, "subjects": ["Science/Mathematics"], "revision": 3}
+/type/edition /books/OL111029M 2 2020-12-02T11:05:03.650557 {"publishers": ["Magyar Kira\u0301lyi A\u0301llamnyomda\u0301ban"], "pagination": "194 p. :", "subtitle": "az a\u0301llami sza\u0301mvitelro\u030bl szo\u0301lo\u0301 1897. e\u0301vi XX. to\u0308rve\u0301nyczikk ve\u0301grehajta\u0301sa ta\u0301rgya\u0301ban.", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part28.utf8:100467560:737"], "title": "A Magyar minisztertana\u0301cs a\u0301ltal a m. kir. A\u0301llami Sza\u0301mvevo\u030bsze\u0301k elno\u0308ke\u0301nek egyete\u0301rte\u0301se\u0301vel kiado\u0301tt utasita\u0301s", "lccn": ["99230886"], "type": {"key": "/type/edition"}, "number_of_pages": 194, "languages": [{"key": "/languages/hun"}], "lc_classifications": ["IN PROCESS", "KKF923.A31897 .M34 1897"], "publish_date": "1897", "publish_country": "hu ", "key": "/books/OL111029M", "publish_places": ["Budapest"], "works": [{"key": "/works/OL23724197W"}], "contributions": ["Hungary. Minisztertana\u0301cs."], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-02T11:05:03.650557"}}
+/type/edition /books/OL11102M 4 2022-08-09T08:38:26.803864 {"notes": {"type": "/type/text", "value": "Bibliography: p. [393]\nIn Marathi."}, "title": "Ja\u0304gr\u0325ta-Sa\u0304ta\u0304ra\u0304", "authors": [{"key": "/authors/OL7737A"}], "publish_date": "1966", "subject_place": ["Satara (India)"], "lc_classifications": ["DS485.S3 G6"], "pagination": "20, 396 p.", "source_records": ["marc:marc_records_scriblio_net/part29.dat:6613233:582", "marc:marc_loc_2016/BooksAll.2016.part43.utf8:14355136:587"], "lccn": ["sa67001153"], "languages": [{"key": "/languages/mar"}], "subjects": ["Satara (India)"], "publish_country": "ii ", "oclc_numbers": ["20339709"], "type": {"key": "/type/edition"}, "key": "/books/OL11102M", "number_of_pages": 396, "works": [{"key": "/works/OL352466W"}], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-09T08:38:26.803864"}}
+/type/edition /books/OL11103013M 2 2009-12-15T00:59:05.147640 {"publishers": ["Abbe Pub Assn of Washington Dc"], "subtitle": "Index of New Information", "weight": "2.5 pounds", "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:59:05.147640"}, "latest_revision": 2, "key": "/books/OL11103013M", "authors": [{"key": "/authors/OL3546525A"}], "subjects": ["Nature/Ecology"], "languages": [{"key": "/languages/eng"}], "title": "Pollutant Materials in the American Environment", "isbn_13": ["9780788318405"], "isbn_10": ["0788318403"], "publish_date": "August 1998", "works": [{"key": "/works/OL9542832W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "11.5 x 8.8 x 1.2 inches", "revision": 2}
+/type/edition /books/OL11103210M 2 2009-12-15T00:59:07.133768 {"physical_format": "Hardcover", "subtitle": "Index of New Information and Guide-Book for Consumers, Reference and Research", "publishers": ["Abbe Pub Assn of Washington Dc"], "isbn_10": ["0788326724"], "number_of_pages": 188, "isbn_13": ["9780788326721"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:59:07.133768"}, "publish_date": "January 2002", "latest_revision": 2, "key": "/books/OL11103210M", "authors": [{"key": "/authors/OL2878248A"}], "title": "Cancer Encyclopedia --Collections of Anti-Cancer & Anti-Carcinogenic Agents, Chemicals, Drugs and Substances", "subjects": ["Oncology", "Medical"], "works": [{"key": "/works/OL8575849W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL11103211M 2 2009-12-15T00:59:07.133768 {"physical_format": "Paperback", "subtitle": "Index of New Information and Guide-Book for Consumers, Reference and Research", "publishers": ["Abbe Pub Assn of Washington Dc"], "isbn_10": ["0788326732"], "number_of_pages": 188, "isbn_13": ["9780788326738"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:59:07.133768"}, "publish_date": "January 2002", "latest_revision": 2, "key": "/books/OL11103211M", "authors": [{"key": "/authors/OL2878248A"}], "title": "Cancer Encyclopedia -- Collections of Anti-Cancer & Anti-Carcinogenic Agents, Chemicals, Drugs and Substances", "subjects": ["Reference", "Health & Fitness", "Health/Fitness"], "works": [{"key": "/works/OL8575849W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL11103635M 4 2011-06-08T03:03:16.351025 {"publishers": ["Heritage Books"], "last_modified": {"type": "/type/datetime", "value": "2011-06-08T03:03:16.351025"}, "title": "Fragmenta Genealogica, Volume 10", "identifiers": {"librarything": ["9636246"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0788406086"], "publish_date": "1997", "key": "/books/OL11103635M", "authors": [{"key": "/authors/OL1136557A"}], "latest_revision": 4, "oclc_numbers": ["664442196"], "works": [{"key": "/works/OL5141159W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL11103803M 5 2011-04-27T12:31:31.354515 {"publishers": ["Heritage Books"], "languages": [{"key": "/languages/eng"}], "identifiers": {"librarything": ["9636452"], "goodreads": ["6910421"]}, "last_modified": {"type": "/type/datetime", "value": "2011-04-27T12:31:31.354515"}, "title": "West Virginia, Volume 3", "number_of_pages": 1828, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "CD-ROM", "isbn_10": ["0788413619"], "publish_date": "2005", "key": "/books/OL11103803M", "authors": [{"key": "/authors/OL3025990A"}], "latest_revision": 5, "oclc_numbers": ["45625115"], "works": [{"key": "/works/OL8835690W"}], "type": {"key": "/type/edition"}, "subjects": ["HIS036120", "History - United States"], "revision": 5}
+/type/edition /books/OL11104207M 1 2008-04-30T09:38:13.731961 {"physical_format": "CD-ROM", "subtitle": "Volumes 1 to 10", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Heritage Books, Inc."], "title": "CD: The Library of American Biography", "isbn_13": ["9780788425790"], "isbn_10": ["078842579X"], "publish_date": "2005", "key": "/books/OL11104207M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL11104315M 4 2020-12-14T09:37:05.597701 {"publishers": ["Heritage Books, Inc."], "number_of_pages": 126, "title": "Newspaper Abstracts from the Philadelphia Repository, 1803", "type": {"key": "/type/edition"}, "identifiers": {"librarything": ["9636105"]}, "isbn_13": ["9780788431975"], "isbn_10": ["0788431978"], "publish_date": "2005", "key": "/books/OL11104315M", "oclc_numbers": ["70001259"], "physical_format": "Paperback", "works": [{"key": "/works/OL23991325W"}], "lccn": ["2006279533"], "lc_classifications": ["F158.25 .F58 2005"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part33.utf8:167085753:1123"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-14T09:37:05.597701"}}
+/type/edition /books/OL11104730M 7 2020-12-17T13:13:29.460199 {"publishers": ["Heritage Books"], "identifiers": {"librarything": ["9635447"], "goodreads": ["5650586"]}, "title": "New Hampshire Patriot and State Gazette 1824", "type": {"key": "/type/edition"}, "number_of_pages": 170, "covers": [2630738], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0788440500"], "publish_date": "2004", "key": "/books/OL11104730M", "authors": [{"key": "/authors/OL1398990A"}], "oclc_numbers": ["179480308"], "works": [{"key": "/works/OL5750690W"}], "physical_format": "Paperback", "subjects": ["HIS036100", "History - United States"], "lccn": ["2007280441"], "lc_classifications": ["F33 .F579 2007"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part34.utf8:178942088:958"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-17T13:13:29.460199"}}
+/type/edition /books/OL11104764M 8 2020-12-17T13:00:03.499372 {"publishers": ["Heritage Books"], "identifiers": {"librarything": ["9635417"], "goodreads": ["5988057"]}, "covers": [2630758], "physical_format": "Paperback", "key": "/books/OL11104764M", "authors": [{"key": "/authors/OL2490195A"}], "subjects": ["HIS036080", "History - United States"], "source_records": ["marc:marc_loc_updates/v36.i29.records.utf8:9053446:1159", "marc:marc_loc_2016/BooksAll.2016.part34.utf8:177269752:1159"], "title": "Township Tidings, From Potter County, Pennsylvania, Volume 1", "number_of_pages": 304, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0788441043"], "publish_date": "2007", "oclc_numbers": ["173683870"], "works": [{"key": "/works/OL7829926W"}], "type": {"key": "/type/edition"}, "lccn": ["2007278730"], "lc_classifications": ["F157.P8 T68 2007"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-17T13:00:03.499372"}}
+/type/edition /books/OL1110512M 8 2022-02-25T10:27:57.879370 {"publishers": ["Hampton Press"], "identifiers": {"goodreads": ["3470120", "1313016"]}, "subtitle": "applications in natural settings", "isbn_10": ["188130325X", "1881303268"], "series": ["SCA applied communication publication program"], "covers": [3889586, 3884713], "lc_classifications": ["HM134 .I56 1995", "P91.3 .C68 1995", "HM134.I56 1995"], "key": "/books/OL1110512M", "publish_places": ["Cresskill, N.J"], "contributions": ["Frey, Lawrence R."], "pagination": "xviii, 378 p. ;", "source_records": ["marc:marc_records_scriblio_net/part24.dat:69678734:884", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:144187698:879", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:154631786:1041", "bwb:9781881303268", "bwb:9781881303251"], "title": "Innovations in group facilitation", "dewey_decimal_class": ["302/.14"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 333-362) and indexes."}, "number_of_pages": 378, "languages": [{"key": "/languages/eng"}], "lccn": ["94036275", "94049142"], "subjects": ["Group relations training.", "Small groups.", "Communication -- Social aspects.", "Group facilitation."], "publish_date": "1995", "publish_country": "nju", "by_statement": "edited by Lawrence R. Frey.", "works": [{"key": "/works/OL19428850W"}], "type": {"key": "/type/edition"}, "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-25T10:27:57.879370"}}
+/type/edition /books/OL11105361M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Audio Cassette", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["RECORDED BOOKS, INC."], "title": "The Apprenticeship of Lucas Whitaker", "isbn_13": ["9780788708855"], "isbn_10": ["0788708856"], "publish_date": "1997", "key": "/books/OL11105361M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL1110598M 9 2022-12-04T15:23:31.272979 {"publishers": ["Chelsea House Publishers"], "isbn_10": ["0791027686"], "series": ["Ideas that changed the world"], "covers": [3884997], "lc_classifications": ["HE152 .W485 1995"], "key": "/books/OL1110598M", "authors": [{"key": "/authors/OL227190A"}], "ocaid": "transportation0000wilk", "publish_places": ["New York"], "contributions": ["Pollard, Michael, 1931-", "Ingpen, Robert R., ill."], "pagination": "p. cm.", "source_records": ["marc:marc_records_scriblio_net/part24.dat:69756701:958", "marc:marc_loc_updates/v37.i37.records.utf8:5056105:958", "ia:transportation0000wilk", "promise:bwb_daily_pallets_2022-08-30"], "title": "Transportation", "dewey_decimal_class": ["388/.09"], "notes": {"type": "/type/text", "value": "Includes bibliographical references and index."}, "identifiers": {"goodreads": ["1841532"], "librarything": ["5442350"]}, "languages": [{"key": "/languages/eng"}], "lccn": ["94036365"], "subjects": ["Transportation -- History -- Juvenile literature", "Vehicles -- History -- Juvenile literature", "Transportation -- History", "Vehicles -- History"], "publish_date": "1995", "publish_country": "nyu", "by_statement": "illustrated by Robert Ingpen ; text by Philip Wilkinson & Michael Pollard.", "oclc_numbers": ["31207125"], "works": [{"key": "/works/OL1897770W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:O8-CUI-422"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T15:23:31.272979"}}
+/type/edition /books/OL11106220M 2 2011-04-30T12:57:12.121289 {"publishers": ["Anderson Pub Co"], "physical_format": "Paperback", "weight": "4 pounds", "title": "1997 Ohio Traffic Law Handbook", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780870848643"], "isbn_10": ["087084864X"], "publish_date": "June 1997", "key": "/books/OL11106220M", "last_modified": {"type": "/type/datetime", "value": "2011-04-30T12:57:12.121289"}, "latest_revision": 2, "oclc_numbers": ["37862010"], "type": {"key": "/type/edition"}, "subjects": ["Reference", "Law"], "physical_dimensions": "10.2 x 7.5 x 2 inches", "revision": 2}
+/type/edition /books/OL1110642M 10 2022-06-15T07:07:17.717955 {"other_titles": ["Book of letters", "Letters"], "publishers": ["Oxford University Press"], "identifiers": {"goodreads": ["2417762"], "librarything": ["295317"]}, "subject_place": ["Great Britain", "United States", "Commonwealth countries"], "covers": [117034], "local_id": ["urn:sfpl:31223037256824"], "lc_classifications": ["PR1343 .O94 1995"], "key": "/books/OL1110642M", "publish_places": ["Oxford", "New York"], "contributions": ["Kermode, Frank, 1919-", "Kermode, Anita."], "subjects": ["English letters", "American letters", "Great Britain -- Social life and customs", "United States -- Social life and customs", "Commonwealth countries -- Social life and customs"], "pagination": "xxiv, 559 p. :", "source_records": ["marc:marc_records_scriblio_net/part24.dat:69797216:1014", "marc:marc_loc_updates/v35.i21.records.utf8:3538871:1231", "marc:marc_loc_updates/v38.i34.records.utf8:6609853:1236", "marc:marc_openlibraries_sanfranciscopubliclibrary/sfpl_chq_2018_12_24_run02.mrc:116181505:1756", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:144305338:1236", "ia:oxfordbookoflett0000unse_y0i3"], "title": "The Oxford book of letters", "dewey_decimal_class": ["826.008"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. [543]-553) and indexes."}, "number_of_pages": 559, "languages": [{"key": "/languages/eng"}], "lccn": ["94036412"], "isbn_10": ["0192141880"], "publish_date": "1995", "publish_country": "enk", "by_statement": "edited by Frank Kermode and Anita Kermode.", "works": [{"key": "/works/OL18270366W"}], "type": {"key": "/type/edition"}, "ocaid": "oxfordbookoflett0000unse_y0i3", "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-15T07:07:17.717955"}}
+/type/edition /books/OL1110647M 10 2022-12-04T13:54:05.482527 {"publishers": ["Columbia University Press"], "number_of_pages": 250, "table_of_contents": [{"level": 0, "label": "ONE", "title": "The Discovery", "pagenum": "1", "type": {"key": "/type/toc_item"}}, {"level": 0, "label": "TWO", "title": "Plans, Preparations, and Some Thoughts", "pagenum": "22", "type": {"key": "/type/toc_item"}}, {"level": 0, "label": "THREE", "title": "Digging Them Out", "pagenum": "40", "type": {"key": "/type/toc_item"}}, {"level": 0, "label": "FOUR", "title": "Bringing Them to Light", "pagenum": "70", "type": {"key": "/type/toc_item"}}, {"level": 0, "label": "FIVE", "title": "Bones and History", "pagenum": "86", "type": {"key": "/type/toc_item"}}, {"level": 0, "label": "SIX", "title": "The Quarry Revealed; or, What Killed the Dinosaurs?", "pagenum": "99", "type": {"key": "/type/toc_item"}}, {"level": 0, "label": "SEVEN", "title": "The Elegant Ancestor", "pagenum": "111", "type": {"key": "/type/toc_item"}}, {"level": 0, "label": "EIGHT", "title": "The Life of an Early Dinosaur", "pagenum": "142", "type": {"key": "/type/toc_item"}}, {"level": 0, "label": "NINE", "title": "Roots and Relatives", "pagenum": "162", "type": {"key": "/type/toc_item"}}, {"level": 0, "label": "TEN", "title": "Contemporaries and Competitors", "pagenum": "190", "type": {"key": "/type/toc_item"}}, {"level": 0, "label": "ELEVEN", "title": "Equatorial New Mexico", "pagenum": "209", "type": {"key": "/type/toc_item"}}, {"level": 0, "label": "TWELVE", "title": "An End and a Beginning", "pagenum": "221", "type": {"key": "/type/toc_item"}}], "isbn_10": ["0231082363"], "subject_place": ["Arizona."], "physical_format": "Hardcover", "lc_classifications": ["QE862.S3 C58 1995"], "key": "/books/OL1110647M", "authors": [{"key": "/authors/OL162011A"}], "publish_places": ["New York"], "first_sentence": {"type": "/type/text", "value": "At the beginning of the summer of 1947 I was in the Southwest to search for fossils."}, "pagination": "xii, 250 p., [4] p. of plates :", "source_records": ["marc:talis_openlibrary_contribution/talis-openlibrary-contribution.mrc:506623266:538", "bwb:9780231082365", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:144310486:715", "ia:littledinosaurso0000colb", "promise:bwb_daily_pallets_2022-08-30"], "title": "The little dinosaurs of Ghost Ranch", "dewey_decimal_class": ["567.9/7"], "notes": "Includes bibliographical references (p. [229]-237) and index.", "identifiers": {"librarything": ["407575"], "goodreads": ["1805224"]}, "languages": [{"key": "/languages/eng"}], "lccn": ["94036417"], "subjects": ["Coelophysis -- Arizona."], "publish_date": "1995", "publish_country": "nyu", "by_statement": "Edwin H. Colbert.", "works": [{"key": "/works/OL1526151W"}], "type": {"key": "/type/edition"}, "covers": [12185798], "ocaid": "littledinosaurso0000colb", "local_id": ["urn:bwbsku:W7-BNY-249"], "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T13:54:05.482527"}}
+/type/edition /books/OL11106544M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Natl Retail Federation"], "title": "Receiving, Marking and Merchandise Handling", "isbn_13": ["9780871020260"], "isbn_10": ["0871020262"], "publish_date": "June 1981", "key": "/books/OL11106544M", "type": {"key": "/type/edition"}, "subjects": ["Business/Economics"], "revision": 1}
+/type/edition /books/OL11106569M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Hardcover", "subtitle": "The Best Design from Leading Designers", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Natl Retail Merchants Assn"], "title": "Visual Merchandising", "isbn_13": ["9780871021373"], "isbn_10": ["0871021374"], "publish_date": "December 1986", "key": "/books/OL11106569M", "type": {"key": "/type/edition"}, "subjects": ["Business/Economics"], "revision": 1}
+/type/edition /books/OL11106704M 3 2011-04-27T01:59:28.441225 {"publishers": ["Oxford Book"], "physical_format": "Unknown Binding", "subtitle": "Level yellow", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T01:59:28.441225"}, "title": "Read, write, react", "number_of_pages": 152, "isbn_13": ["9780871057082"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0871057085"], "publish_date": "1975", "key": "/books/OL11106704M", "authors": [{"key": "/authors/OL763607A"}], "latest_revision": 3, "oclc_numbers": ["4415501"], "works": [{"key": "/works/OL4078624W"}], "type": {"key": "/type/edition"}, "subjects": ["1950-", "Readers"], "revision": 3}
+/type/edition /books/OL1110681M 3 2009-12-11T23:41:33.801413 {"subtitle": "the guide to investment profits using your PC", "lc_classifications": ["HG4515.5 .R53 1995"], "latest_revision": 3, "contributions": ["Rich, Jason."], "source_records": ["marc:marc_records_scriblio_net/part24.dat:69831797:687", "marc:marc_loc_updates/v37.i38.records.utf8:6202272:687"], "title": "Electronic investing", "languages": [{"key": "/languages/eng"}], "subjects": ["Investments -- Data processing", "Microcomputers -- Programming"], "publish_country": "ncu", "by_statement": "Victor Rich, Jason R. Rich.", "type": {"key": "/type/edition"}, "revision": 3, "publishers": ["General Media Books"], "last_modified": {"type": "/type/datetime", "value": "2009-12-11T23:41:33.801413"}, "key": "/books/OL1110681M", "authors": [{"key": "/authors/OL587109A"}], "publish_places": ["Greensboro, N.C"], "pagination": "p. cm.", "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "dewey_decimal_class": ["332.6/0285/416"], "notes": {"type": "/type/text", "value": "Includes index."}, "lccn": ["94036452"], "publish_date": "1995", "works": [{"key": "/works/OL3510344W"}]}
+/type/edition /books/OL11107197M 4 2010-04-24T18:14:28.389476 {"publishers": ["NoName"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:14:28.389476"}, "title": "Communication System Workbook", "identifiers": {"goodreads": ["2713731"]}, "isbn_13": ["9780871192035"], "edition_name": "Workbook edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0871192039"], "publish_date": "June 1989", "key": "/books/OL11107197M", "authors": [{"key": "/authors/OL954484A"}], "latest_revision": 4, "works": [{"key": "/works/OL4646124W"}], "type": {"key": "/type/edition"}, "subjects": ["Education"], "revision": 4}
+/type/edition /books/OL11107390M 2 2011-04-27T18:14:26.048708 {"publishers": ["Foreign Policy Assn"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2011-04-27T18:14:26.048708"}, "weight": "14.4 ounces", "title": "Global Citizen Project Teacher's Sourcebook", "number_of_pages": 146, "isbn_13": ["9780871241542"], "edition_name": "Spiral edition", "physical_format": "Hardcover", "isbn_10": ["0871241544"], "publish_date": "November 1993", "key": "/books/OL11107390M", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "latest_revision": 2, "oclc_numbers": ["40733108"], "type": {"key": "/type/edition"}, "subjects": ["Teaching Methods & Materials - General", "Education"], "physical_dimensions": "11.2 x 9 x 0.5 inches", "revision": 2}
+/type/edition /books/OL11107438M 2 2009-12-15T00:59:10.907675 {"publishers": ["Princeton Book Co Pub"], "key": "/books/OL11107438M", "title": "Modern Dance Fundamentals", "isbn_13": ["9780871271945"], "physical_format": "Paperback", "isbn_10": ["087127194X"], "publish_date": "June 1991", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:59:10.907675"}, "authors": [{"key": "/authors/OL115675A"}], "latest_revision": 2, "works": [{"key": "/works/OL1134250W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL11107760M 8 2020-12-16T14:10:27.640117 {"publishers": ["Dramatic Pub"], "number_of_pages": 52, "subtitle": "A kid's cautionary tale concerning greed, power, mayhem and other current events", "covers": [5099449], "physical_format": "Unknown Binding", "key": "/books/OL11107760M", "authors": [{"key": "/authors/OL3547669A"}], "subjects": ["Drama", "Macbeth"], "isbn_13": ["9780871299482"], "source_records": ["amazon:0871299488", "marc:marc_loc_updates/v35.i22.records.utf8:9257586:755", "marc:marc_loc_2016/BooksAll.2016.part34.utf8:19999715:764"], "title": "Macbeth", "identifiers": {"goodreads": ["340643"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0871299488"], "publish_date": "1999", "oclc_numbers": ["43462648"], "works": [{"key": "/works/OL9544021W"}], "type": {"key": "/type/edition"}, "lccn": ["2006455992"], "lc_classifications": ["MLCS 2006/45329 (P)"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-16T14:10:27.640117"}}
+/type/edition /books/OL11107762M 6 2020-12-16T19:26:44.627842 {"publishers": ["Dramatic Pub"], "identifiers": {"librarything": ["8367710"]}, "subtitle": "A play in two acts", "covers": [5099242], "physical_format": "Unknown Binding", "key": "/books/OL11107762M", "authors": [{"key": "/authors/OL536287A"}], "subjects": ["Adolescence", "Drama", "Suburban life", "Teenage boys", "United States"], "isbn_13": ["9780871299543"], "title": "I, Lionel", "number_of_pages": 76, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0871299542"], "publish_date": "1999", "oclc_numbers": ["43461427"], "works": [{"key": "/works/OL3282682W"}], "type": {"key": "/type/edition"}, "lccn": ["2006482185"], "lc_classifications": ["MLCS 2006/44908 (P)"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part34.utf8:40849532:678"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-16T19:26:44.627842"}}
+/type/edition /books/OL11108156M 5 2022-12-13T12:15:39.822276 {"identifiers": {"librarything": ["8505751"]}, "title": "Vp-Planner", "subtitle": "Spreadsheet Flexibility With Database Power With Disc", "publish_date": "December 1986", "publishers": ["Paperback Software Intl"], "physical_format": "Hardcover", "isbn_13": ["9780871420213"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["087142021X"], "type": {"key": "/type/edition"}, "subjects": ["Computer Books: Word Processing"], "ocaid": "vpplanner0000step", "source_records": ["ia:vpplanner0000step", "promise:bwb_daily_pallets_2020-11-13"], "key": "/books/OL11108156M", "works": [{"key": "/works/OL31882048W"}], "local_id": ["urn:bwbsku:W6-BHO-862"], "covers": [13063298], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-13T12:15:39.822276"}}
+/type/edition /books/OL11108206M 2 2022-12-10T10:46:17.390861 {"physical_format": "Hardcover", "publishers": ["Pathway Press"], "title": "EVANGELICAL SUNDAY SCHOOL LESSON COMMENTARY", "isbn_13": ["9780871482884"], "isbn_10": ["0871482886"], "publish_date": "1977", "key": "/books/OL11108206M", "type": {"key": "/type/edition"}, "works": [{"key": "/works/OL31980558W"}], "local_id": ["urn:bwbsku:341-ABB-339"], "source_records": ["promise:bwb_daily_pallets_2020-04-09"], "identifiers": {"amazon": [""]}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T10:46:17.390861"}}
+/type/edition /books/OL11108681M 3 2010-08-17T05:44:24.052926 {"publishers": ["Unity school of Christianity"], "last_modified": {"type": "/type/datetime", "value": "2010-08-17T05:44:24.052926"}, "title": "Bible Overview Learners' Workbook", "identifiers": {"librarything": ["5686811"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Spiral-bound", "isbn_10": ["0871599945"], "publish_date": "1997", "key": "/books/OL11108681M", "authors": [{"key": "/authors/OL3547925A"}], "latest_revision": 3, "works": [{"key": "/works/OL9544295W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL1110883M 7 2021-09-15T21:26:31.321431 {"publishers": ["Praeger"], "identifiers": {"goodreads": ["1163284"]}, "isbn_10": ["0275948064"], "covers": [1157839], "lc_classifications": ["JF1411 .P778 1995", "JF1411"], "key": "/books/OL1110883M", "publish_places": ["Westport, Conn"], "contributions": ["Goodsell, Charles T.", "Murray, Nancy"], "pagination": "xii, 226 p. :", "source_records": ["marc:marc_records_scriblio_net/part24.dat:70009810:825", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:144519741:825", "ia:publicadministra0000unse_a5s9", "bwb:9780275948061"], "title": "Public administration illuminated and inspired by the arts", "dewey_decimal_class": ["350"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. [215]-216) and index."}, "number_of_pages": 226, "languages": [{"key": "/languages/eng"}], "lccn": ["94036666"], "subjects": ["Public administration.", "Bureaucracy.", "Arts.", "Arts and society."], "publish_date": "1995", "publish_country": "ctu", "by_statement": "edited by Charles T. Goodsell and Nancy Murray.", "works": [{"key": "/works/OL19011993W"}], "type": {"key": "/type/edition"}, "ocaid": "publicadministra0000unse_a5s9", "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2021-09-15T21:26:31.321431"}}
+/type/edition /books/OL11109000M 2 2009-12-15T00:59:12.522914 {"physical_format": "Unknown Binding", "title": "Clarinet Handbook", "isbn_10": ["0871666391"], "publishers": ["Porcupine Press"], "isbn_13": ["9780871666390"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:59:12.522914"}, "publish_date": "December 1993", "key": "/books/OL11109000M", "authors": [{"key": "/authors/OL3547980A"}], "latest_revision": 2, "subjects": ["Musical Instruments - Woodwinds", "Audio - Classical Instrumentals"], "works": [{"key": "/works/OL9544359W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL11109193M 3 2011-04-28T00:27:03.351816 {"publishers": ["American Association for the Advancement of Science"], "physical_format": "Unknown Binding", "subtitle": "The education and work experience of graduates and undergraduates with disabilities in science, mathematics, and engineering majors", "last_modified": {"type": "/type/datetime", "value": "2011-04-28T00:27:03.351816"}, "title": "Talking about disability", "number_of_pages": 208, "isbn_13": ["9780871686176"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0871686171"], "publish_date": "1998", "key": "/books/OL11109193M", "authors": [{"key": "/authors/OL368721A"}], "latest_revision": 3, "oclc_numbers": ["52523522"], "works": [{"key": "/works/OL2577900W"}], "type": {"key": "/type/edition"}, "subjects": ["College students with disabilities"], "revision": 3}
+/type/edition /books/OL1110934M 7 2022-12-04T12:10:51.545706 {"publishers": ["Delacorte Press"], "description": {"type": "/type/text", "value": "Two Haitian American children deal with the problems of friendship, family life, and growing up."}, "isbn_10": ["0385320930"], "dewey_decimal_class": ["[Fic]"], "covers": [8093474], "lc_classifications": ["PZ7.H9897 Se 1995"], "key": "/books/OL1110934M", "authors": [{"key": "/authors/OL389359A"}], "ocaid": "sethsamona00hypp_0", "publish_places": ["New York, NY"], "contributions": ["Bootman, Colin, ill."], "uri_descriptions": ["Contributor biographical information", "Sample text"], "pagination": "121 p. :", "source_records": ["ia:sethsamona00hypp_0", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:144565216:1053", "promise:bwb_daily_pallets_2022-09-07"], "title": "Seth and Samona", "url": ["http://www.loc.gov/catdir/bios/random057/94036719.html", "http://www.loc.gov/catdir/samples/random043/94036719.html"], "number_of_pages": 121, "languages": [{"key": "/languages/eng"}], "lccn": ["94036719"], "subjects": ["Haitian Americans -- Juvenile fiction.", "Haitian Americans -- Fiction.", "Friendship -- Fiction.", "Family life -- Fiction."], "publish_date": "1995", "publish_country": "nyu", "by_statement": "Joanne Hyppolite ; illustrated by Colin Bootman.", "oclc_numbers": ["31243195"], "works": [{"key": "/works/OL2669111W"}], "type": {"key": "/type/edition"}, "uris": ["http://www.loc.gov/catdir/bios/random057/94036719.html", "http://www.loc.gov/catdir/samples/random043/94036719.html"], "local_id": ["urn:bwbsku:O8-DIL-225"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T12:10:51.545706"}}
+/type/edition /books/OL11109645M 4 2010-04-24T18:14:28.389476 {"publishers": ["Marvel Comics"], "number_of_pages": 96, "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:14:28.389476"}, "title": "Wolverine", "physical_format": "Paperback", "identifiers": {"goodreads": ["1014665"]}, "isbn_13": ["9780871735270"], "contributions": ["Frank Miller (Illustrator)"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["087173527X"], "publish_date": "August 2001", "key": "/books/OL11109645M", "authors": [{"key": "/authors/OL26992A"}], "latest_revision": 4, "works": [{"key": "/works/OL461804W"}], "type": {"key": "/type/edition"}, "subjects": ["Superheroes", "Graphic Novels"], "revision": 4}
+/type/edition /books/OL11109887M 3 2011-04-30T04:18:07.749335 {"publishers": ["Bureau of National Affairs"], "physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2011-04-30T04:18:07.749335"}, "title": "Spill reporting procedures guide", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780871795427"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0871795426"], "publish_date": "1986", "key": "/books/OL11109887M", "authors": [{"key": "/authors/OL3548265A"}], "latest_revision": 3, "oclc_numbers": ["15228104"], "works": [{"key": "/works/OL9544659W"}], "type": {"key": "/type/edition"}, "subjects": ["Accidents", "Handbooks, manuals, etc", "Hazardous substances", "Hazardous wastes", "Oil spills"], "revision": 3}
+/type/edition /books/OL11109977M 3 2011-04-27T05:32:52.390410 {"publishers": ["BNA Books (Bureau of National Affairs)"], "weight": "1.8 pounds", "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T05:32:52.390410"}, "latest_revision": 3, "key": "/books/OL11109977M", "authors": [{"key": "/authors/OL2938872A"}], "subjects": ["General", "Law Of Intellectual Property", "Reference"], "isbn_13": ["9780871798909"], "title": "Patent, Trademark, and Copyright Laws 1995", "number_of_pages": 571, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0871798905"], "publish_date": "July 1995", "oclc_numbers": ["32578560"], "works": [{"key": "/works/OL8689485W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.2 x 6 x 1.2 inches", "revision": 3}
+/type/edition /books/OL11110747M 6 2019-01-09T23:37:52.713744 {"publishers": ["Facts on File, Inc."], "physical_format": "Textbook Binding", "subtitle": "1975-1977", "source_records": ["ia:energycrisisv31900sobe"], "title": "Energy Crisis", "identifiers": {"goodreads": ["4207828"]}, "last_modified": {"type": "/type/datetime", "value": "2019-01-09T23:37:52.713744"}, "covers": [5099520], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780871962805"], "isbn_10": ["0871962802"], "publish_date": "February 1978", "key": "/books/OL11110747M", "authors": [{"key": "/authors/OL1656168A"}], "ocaid": "energycrisisv31900sobe", "latest_revision": 6, "works": [{"key": "/works/OL6333752W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL11110880M 3 2011-04-28T01:51:46.509363 {"publishers": ["Gulf Publishing Company"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-28T01:51:46.509363"}, "title": "Dictionary of Terms", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 880, "isbn_13": ["9780872011953"], "edition_name": "6th Ed edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["087201195X"], "publish_date": "January 1989", "key": "/books/OL11110880M", "authors": [{"key": "/authors/OL3436731A"}], "latest_revision": 3, "oclc_numbers": ["231798189"], "works": [{"key": "/works/OL9400828W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Dictionaries", "Medical / Nursing"], "revision": 3}
+/type/edition /books/OL1111149M 9 2021-11-02T05:41:47.829622 {"publishers": ["That Patchwork Place"], "number_of_pages": 59, "subtitle": "creative ways to border your quilts", "isbn_10": ["1564770826"], "series": ["The joy of quilting"], "covers": [801009], "lc_classifications": ["TT835 .P4492 1994", "TT835.P4492 1994"], "key": "/books/OL1111149M", "authors": [{"key": "/authors/OL225740A"}], "publish_places": ["Bothell, WA"], "pagination": "59 p. :", "source_records": ["amazon:1564770826", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:144752831:728", "bwb:9781564770820"], "title": "Borders by design", "dewey_decimal_class": ["746.46"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 59)."}, "identifiers": {"goodreads": ["3743661"], "librarything": ["1186479"]}, "languages": [{"key": "/languages/eng"}], "lccn": ["94036946"], "subjects": ["Quilts.", "Borders, Ornamental (Decorative arts)"], "publish_date": "1994", "publish_country": "wau", "by_statement": "Paulette Peters.", "oclc_numbers": ["31288493"], "works": [{"key": "/works/OL1885763W"}], "type": {"key": "/type/edition"}, "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2021-11-02T05:41:47.829622"}}
+/type/edition /books/OL11111504M 9 2022-12-17T19:31:11.369103 {"publishers": ["Jove Pubns"], "physical_format": "Paperback", "title": "Hard Chains, Soft Women", "covers": [10317870], "languages": [{"key": "/languages/eng"}], "publish_date": "March 1981", "key": "/books/OL11111504M", "authors": [{"key": "/authors/OL1474525A"}], "works": [{"key": "/works/OL5945390W"}], "type": {"key": "/type/edition"}, "subjects": ["Westerns"], "identifiers": {}, "isbn_10": ["0872167992"], "isbn_13": ["9780872167995"], "oclc_numbers": ["7402756"], "classifications": {}, "series": ["Doc & Raider 11"], "ocaid": "hardchainssoftwo0000hard", "lc_classifications": ["PS3558.A617 H32"], "source_records": ["ia:hardchainssoftwo0000hard", "amazon:0872167992", "promise:bwb_daily_pallets_2022-04-01", "bwb:9780872167995"], "local_id": ["urn:bwbsku:T2-CME-990"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T19:31:11.369103"}}
+/type/edition /books/OL11111586M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Paperback", "weight": "12.2 pounds", "publishers": ["Natl Register Pub"], "title": "Standard Directory of Advertisers (Advertising Red Books Advertiser Geographic/Advertisers Indexes)", "isbn_13": ["9780872170896"], "isbn_10": ["0872170896"], "publish_date": "May 1992", "key": "/books/OL11111586M", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "type": {"key": "/type/edition"}, "subjects": ["Advertising", "Reference"], "physical_dimensions": "11.2 x 10.5 x 4 inches", "revision": 1}
+/type/edition /books/OL11111945M 3 2022-06-18T04:14:57.682715 {"physical_format": "Paperback", "publishers": ["National Underwriter Company"], "isbn_10": ["0872184552"], "number_of_pages": 675, "isbn_13": ["9780872184558"], "languages": [{"key": "/languages/eng"}], "publish_date": "March 1988", "key": "/books/OL11111945M", "authors": [{"key": "/authors/OL3548734A"}], "title": "Tax Facts on Life Insurance (Tax Facts on Life Insurance)", "subjects": ["Insurance - General", "Business / Economics / Finance"], "works": [{"key": "/works/OL9545129W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780872184558"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-18T04:14:57.682715"}}
+/type/edition /books/OL11112105M 7 2022-06-17T05:54:56.841959 {"publishers": ["Hackett Pub Co Inc"], "number_of_pages": 427, "subtitle": "An Anthology of Sources", "weight": "1.4 pounds", "covers": [2672460], "physical_format": "Paperback", "key": "/books/OL11112105M", "contributions": ["Jon McGinnis (Editor)", "David C. Reisman (Editor)"], "subjects": ["Islamic & Arabic philosophy", "History & Surveys - General", "Philosophy", "Philosophy, Islamic"], "isbn_13": ["9780872208711"], "title": "Classical Arabic Philosophy", "identifiers": {"librarything": ["5223498"], "goodreads": ["2163633"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0872208710"], "publish_date": "September 7, 2007", "works": [{"key": "/works/OL19804616W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.9 x 5.9 x 1 inches", "lc_classifications": ["B741.C52 2007"], "source_records": ["bwb:9780872208711"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-17T05:54:56.841959"}}
+/type/edition /books/OL11112281M 6 2012-06-23T03:08:44.268009 {"publishers": ["Practising Law Institute"], "identifiers": {"goodreads": ["2102570"]}, "series": ["Commercial Law and Practice Course Handbook Series"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2012-06-23T03:08:44.268009"}, "latest_revision": 6, "key": "/books/OL11112281M", "authors": [{"key": "/authors/OL3548858A"}], "isbn_13": ["9780872245273"], "classifications": {}, "title": "Understanding the Basics of Bankruptcy and Reorganization, 1998", "number_of_pages": 1094, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0872245276"], "publish_date": "January 1998", "oclc_numbers": ["40292990"], "works": [{"key": "/works/OL9545201W"}], "type": {"key": "/type/edition"}, "revision": 6}
+/type/edition /books/OL1111252M 8 2022-10-18T07:41:59.494294 {"publishers": ["Longmeadow Press"], "identifiers": {"goodreads": ["3823075"], "librarything": ["1534"]}, "description": {"type": "/type/text", "value": "The escapades of four animal friends who live along a river in the English countryside--Toad, Mole, Rat, and Badger."}, "isbn_10": ["0681007680"], "series": ["Children's Library", "Children's library (Stanford, Conn.)"], "lc_classifications": ["PZ7.G759 Wi 1994", "PZ7.G759Wi 1994"], "key": "/books/OL1111252M", "authors": [{"key": "/authors/OL23761A"}], "publish_places": ["Stamford, Conn"], "contributions": ["Bransom, Paul, 1885- ill."], "languages": [{"key": "/languages/eng"}], "pagination": "213 p. :", "source_records": ["marc:marc_records_scriblio_net/part24.dat:70339329:908", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:144843940:908", "bwb:9780681007680"], "title": "The wind in the willows", "dewey_decimal_class": ["[Fic]"], "number_of_pages": 213, "edition_name": "1st Longmeadow Press ed.", "lccn": ["94037054"], "subjects": ["Animals -- Fiction"], "publish_date": "1994", "publish_country": "ctu", "by_statement": "by Kenneth Grahame ; illustrated by Paul Bransom.", "oclc_numbers": ["31376504"], "works": [{"key": "/works/OL16312108W"}], "type": {"key": "/type/edition"}, "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T07:41:59.494294"}}
+/type/edition /books/OL11112999M 2 2009-12-15T00:59:17.425983 {"physical_format": "Paperback", "languages": [{"key": "/languages/eng"}], "publishers": ["Standard Pub"], "isbn_10": ["0872397114"], "title": "Three Hundred Sixty-Five Devotions", "edition_name": "Largeprint edition", "isbn_13": ["9780872397118"], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:59:17.425983"}, "publish_date": "June 1984", "key": "/books/OL11112999M", "authors": [{"key": "/authors/OL3548994A"}], "latest_revision": 2, "subjects": ["Large Print"], "works": [{"key": "/works/OL9545374W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL11113546M 2 2009-12-15T00:59:17.425983 {"physical_format": "Paperback", "title": "Modeling Techniques", "isbn_10": ["0872621243"], "publishers": ["Amer Society of Civil Engineers"], "isbn_13": ["9780872621244"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:59:17.425983"}, "publish_date": "June 1975", "key": "/books/OL11113546M", "authors": [{"key": "/authors/OL3549146A"}], "latest_revision": 2, "works": [{"key": "/works/OL9545540W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL11113596M 3 2010-04-13T06:26:02.837391 {"publishers": ["Amer Society of Civil Engineers"], "languages": [{"key": "/languages/eng"}], "key": "/books/OL11113596M", "weight": "1.8 pounds", "title": "Transactions of the American Society of Civil Engineers, 1986, Volume 151 (Transactions of the American Society of Civil Engineers)", "isbn_13": ["9780872625815"], "covers": [5100547], "physical_format": "Hardcover", "isbn_10": ["0872625818"], "publish_date": "April 1987", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:26:02.837391"}, "authors": [{"key": "/authors/OL57175A"}], "latest_revision": 3, "works": [{"key": "/works/OL714738W"}], "type": {"key": "/type/edition"}, "subjects": ["Civil Engineering, Surveying & Building", "Civil Engineering (General)"], "physical_dimensions": "8.5 x 6 x 1.5 inches", "revision": 3}
+/type/edition /books/OL11113736M 2 2009-10-20T00:59:12.703790 {"publishers": ["Argosy Antiquarian Ltd"], "physical_format": "Hardcover", "weight": "1 pounds", "source_records": ["amazon:0872660192"], "title": "Journal of a Fur Trading Expedition on the Upper Missouri, 1812-1813", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780872660199"], "languages": [{"key": "/languages/eng"}], "authors": [{"key": "/authors/OL2198357A"}], "isbn_10": ["0872660192"], "publish_date": "June 1964", "key": "/books/OL11113736M", "last_modified": {"type": "/type/datetime", "value": "2009-10-20T00:59:12.703790"}, "latest_revision": 2, "subjects": ["Biography/Autobiography"], "works": [{"key": "/works/OL147892W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.5 x 6 x 0.8 inches", "revision": 2}
+/type/edition /books/OL11113777M 3 2010-08-17T05:45:53.009203 {"publishers": ["Olympic Marketing Corp"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2010-08-17T05:45:53.009203"}, "title": "Masterpieces of American Painting from the Brooklyn Museum", "identifiers": {"librarything": ["3845473"]}, "isbn_13": ["9780872730595"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["087273059X"], "publish_date": "June 1976", "key": "/books/OL11113777M", "authors": [{"key": "/authors/OL3549217A"}], "latest_revision": 3, "works": [{"key": "/works/OL9545609W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL11114467M 3 2011-04-22T21:36:01.035561 {"publishers": ["C Q Press"], "subtitle": "2006", "weight": "3.6 pounds", "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-22T21:36:01.035561"}, "latest_revision": 3, "key": "/books/OL11114467M", "authors": [{"key": "/authors/OL3549326A"}], "subjects": ["Political", "Fiction"], "isbn_13": ["9780872892613"], "title": "Profiles Of Worldwide Government Leaders", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0872892611"], "publish_date": "April 2006", "oclc_numbers": ["71891546"], "works": [{"key": "/works/OL9545794W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "11.1 x 8.7 x 1.5 inches", "revision": 3}
+/type/edition /books/OL11114566M 2 2009-12-15T00:59:18.716995 {"physical_format": "Paperback", "weight": "1.2 pounds", "title": "Tamerlane", "isbn_10": ["0872910938"], "publishers": ["Coronado Pr"], "isbn_13": ["9780872910935"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:59:18.716995"}, "publish_date": "June 1977", "key": "/books/OL11114566M", "authors": [{"key": "/authors/OL3350847A"}], "latest_revision": 2, "works": [{"key": "/works/OL9299949W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.5 x 6 x 1 inches", "revision": 2}
+/type/edition /books/OL11114570M 5 2010-04-24T18:14:28.389476 {"publishers": ["Coronado Pr"], "languages": [{"key": "/languages/eng"}], "subtitle": "Structuralism and Neuropsychology in an Exploration of the Russian Literary Imagination", "title": "Daggers of the Mind", "isbn_10": ["0872910997"], "identifiers": {"goodreads": ["853680"]}, "isbn_13": ["9780872910997"], "covers": [5100077], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:14:28.389476"}, "publish_date": "June 1979", "key": "/books/OL11114570M", "authors": [{"key": "/authors/OL3549362A"}], "latest_revision": 5, "works": [{"key": "/works/OL9545825W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL11114765M 2 2009-12-15T00:59:18.716995 {"publishers": ["Diablo Pr"], "title": "Teen Conflicts", "isbn_10": ["087297006X"], "isbn_13": ["9780872970069"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:59:18.716995"}, "publish_date": "June 1972", "key": "/books/OL11114765M", "authors": [{"key": "/authors/OL3549428A"}], "latest_revision": 2, "subjects": ["Family/Marriage"], "works": [{"key": "/works/OL9545886W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL11114864M 4 2011-04-25T14:19:19.075949 {"publishers": ["Brethren Press"], "identifiers": {"librarything": ["9696450"]}, "last_modified": {"type": "/type/datetime", "value": "2011-04-25T14:19:19.075949"}, "languages": [{"key": "/languages/eng"}], "number_of_pages": 46, "isbn_13": ["9780873033657"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Unknown Binding", "isbn_10": ["0873033655"], "publish_date": "2000", "latest_revision": 4, "key": "/books/OL11114864M", "authors": [{"key": "/authors/OL3549482A"}], "title": "Playing God: Rebellion and grace in 1 and 2 Kings (Good ground : letting the Word take root)", "oclc_numbers": ["43506201"], "works": [{"key": "/works/OL9545938W"}], "type": {"key": "/type/edition"}, "subjects": ["Bible", "Kings", "Study and teaching"], "revision": 4}
+/type/edition /books/OL11115551M 5 2020-10-12T10:21:18.943706 {"publishers": ["M.E. Sharpe"], "physical_format": "Hardcover", "lc_classifications": [""], "source_records": ["bwb:9780873321099"], "title": "Teaching and Development", "number_of_pages": 296, "last_modified": {"type": "/type/datetime", "value": "2020-10-12T10:21:18.943706"}, "covers": [5100449], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780873321099"], "isbn_10": ["087332109X"], "publish_date": "August 1980", "key": "/books/OL11115551M", "authors": [{"key": "/authors/OL3549684A"}], "latest_revision": 5, "works": [{"key": "/works/OL9546142W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL11115582M 4 2010-04-24T18:14:28.389476 {"publishers": ["Society for Mining Metallurgy & Exploration"], "number_of_pages": 976, "subtitle": "Key to Energy Production", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:14:28.389476"}, "title": "Rock Mechanics", "type": {"key": "/type/edition"}, "identifiers": {"goodreads": ["4720877"]}, "isbn_13": ["9780873350594"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0873350596"], "publish_date": "June 1986", "key": "/books/OL11115582M", "authors": [{"key": "/authors/OL890357A"}], "latest_revision": 4, "works": [{"key": "/works/OL4465646W"}], "physical_format": "Hardcover", "subjects": ["Engineering - Civil", "Technology & Industrial Arts"], "revision": 4}
+/type/edition /books/OL11116346M 8 2017-05-18T06:29:42.064328 {"publishers": ["Pathfinder Press"], "number_of_pages": 350, "subtitle": "Le rapport d'un participant", "weight": "15.5 ounces", "covers": [2672907], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2017-05-18T06:29:42.064328"}, "latest_revision": 8, "key": "/books/OL11116346M", "authors": [{"key": "/authors/OL121343A"}], "subjects": ["World history: from c 1900 -", "Inter-war period, 1918-1939", "History", "Politics / Current Events", "History: World", "Russia", "Communism & Socialism", "Political History", "Europe - Russia & the Former Soviet Union", "Political Ideologies - Communism & Socialism"], "edition_name": "1er edition", "languages": [{"key": "/languages/fre"}], "title": "L'histoire du trotskysme am\u00e9ricain, 1928-1938", "identifiers": {"goodreads": ["7144023"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780873489515"], "isbn_10": ["0873489519"], "publish_date": "August 2002", "oclc_numbers": ["496587701"], "works": [{"key": "/works/OL8704123W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.5 x 6.2 x 0.9 inches", "revision": 8}
+/type/edition /books/OL11116410M 6 2022-09-28T05:47:18.614838 {"publishers": ["Krause Publications"], "identifiers": {"goodreads": ["274078"], "librarything": ["5618692"]}, "weight": "2.7 pounds", "covers": [2672935], "edition_name": "7th edition", "physical_format": "Paperback", "key": "/books/OL11116410M", "contributions": ["Mary Sieber (Editor)", "Collector's Mart Magazine (Editor)"], "subjects": ["Antiques", "Antiques & Collectibles", "Antiques / Collectibles", "Antiques/Collectibles", "Reference - Price Guides", "Figurines", "General", "Art objects", "Catalogs", "Collectibles", "Collectors and collecting", "Limited editions"], "isbn_13": ["9780873493000"], "title": "2002 Collector's Mart Price Guide to Limited Edition Collectibles (Price Guide to Contemporary Collectibles)", "number_of_pages": 926, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0873493001"], "publish_date": "September 2001", "type": {"key": "/type/edition"}, "physical_dimensions": "9.2 x 6 x 1.9 inches", "works": [{"key": "/works/OL28948682W"}], "ocaid": "2002collectorsma0000unse", "lc_classifications": ["NK1125 .N56 2001"], "oclc_numbers": ["48038780"], "source_records": ["ia:2002collectorsma0000unse"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-28T05:47:18.614838"}}
+/type/edition /books/OL11116713M 9 2022-12-29T15:22:33.805906 {"publishers": ["Modern Language Association of America"], "number_of_pages": 284, "weight": "14.9 ounces", "covers": [2673008], "physical_format": "Paperback", "key": "/books/OL11116713M", "authors": [{"key": "/authors/OL457056A"}], "subjects": ["English, Irish, Scottish, Welsh", "Poetry", "Teaching Methods & Materials - Arts & Humanities", "Education", "Literature - Classics / Criticism", "1608-1674", "Milton, John,", "Study and teaching"], "isbn_13": ["9780873525947"], "source_records": ["bwb:9780873525947", "marc:marc_loc_2016/BooksAll.2016.part34.utf8:123558924:4251", "marc:marc_columbia/Columbia-extract-20221130-013.mrc:252205670:5440"], "title": "Approaches to Teaching Milton's Shorter Poetry and Prose (Approaches to Teaching World Literature)", "identifiers": {"goodreads": ["2446688"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0873525949"], "publish_date": "August 2007", "works": [{"key": "/works/OL2985074W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.9 x 5.9 x 0.8 inches", "lccn": ["2007018480"], "lc_classifications": ["PR3588 .A68 2007", "PR3588.A68 2007"], "oclc_numbers": ["124036278"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-29T15:22:33.805906"}}
+/type/edition /books/OL11117109M 12 2022-12-05T04:44:42.562060 {"publishers": ["Rising Moon"], "number_of_pages": 32, "weight": "1 pounds", "covers": [2673037], "physical_format": "Hardcover", "key": "/books/OL11117109M", "authors": [{"key": "/authors/OL478133A"}], "subjects": ["Humorous Stories", "Juvenile Nonfiction / General", "Animals - Insects Spiders etc.", "Animals - Pets", "Juvenile Fiction", "Children's Books/Ages 4-8 Fiction", "Fiction", "Fleas", "Pets", "Children: Babies & Toddlers"], "languages": [{"key": "/languages/eng"}], "first_sentence": {"type": "/type/text", "value": "THE OLD MAN HAD LIVED ALONE for so long, nobody would have ever believed that one day he might go shopping for a pet."}, "source_records": ["marc:marc_loc_2016/BooksAll.2016.part01.utf8:31446397:824", "bwb:9780873587761", "promise:bwb_daily_pallets_2022-06-01"], "title": "Old Man and the Flea", "lccn": ["00048187"], "identifiers": {"librarything": ["3095821"], "goodreads": ["691868"]}, "isbn_13": ["9780873587761"], "isbn_10": ["0873587766"], "publish_date": "March 25, 2001", "oclc_numbers": ["45115777"], "works": [{"key": "/works/OL3070516W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.9 x 9.4 x 0.4 inches", "lc_classifications": ["PZ7.H1988Ol 2001"], "local_id": ["urn:bwbsku:O8-BGZ-892"], "latest_revision": 12, "revision": 12, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-05T04:44:42.562060"}}
+/type/edition /books/OL11117124M 7 2022-12-08T12:29:40.438701 {"publishers": ["Northland Pub"], "weight": "12.2 ounces", "covers": [2673048], "physical_format": "Paperback", "key": "/books/OL11117124M", "authors": [{"key": "/authors/OL767228A"}], "subjects": ["Legends, Myths, & Fables - Other", "Children's Books / 9-12 Years", "Juvenile Fiction / General", "Children's Books/Ages 9-12 Fiction"], "isbn_13": ["9780873589369"], "source_records": ["bwb:9780873589369", "ia:spiderspinsstory0000unse", "promise:bwb_daily_pallets_2021-05-14"], "title": "Spider Spins A Story", "number_of_pages": 72, "languages": [{"key": "/languages/eng"}], "isbn_10": ["087358936X"], "publish_date": "October 1, 2007", "oclc_numbers": ["502997040"], "works": [{"key": "/works/OL4095669W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "11.1 x 8.6 x 0.3 inches", "ocaid": "spiderspinsstory0000unse", "local_id": ["urn:bwbsku:P7-BTR-366"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-08T12:29:40.438701"}}
+/type/edition /books/OL11117134M 4 2011-04-27T03:24:40.645714 {"publishers": ["Northwood Institute"], "physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T03:24:40.645714"}, "title": "Merchandising new and used trucks", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780873590334"], "edition_name": "Rev edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0873590333"], "publish_date": "1983", "key": "/books/OL11117134M", "authors": [{"key": "/authors/OL1240319A"}], "latest_revision": 4, "oclc_numbers": ["11283308"], "works": [{"key": "/works/OL5372099W"}], "type": {"key": "/type/edition"}, "subjects": ["Marketing", "Trucks"], "revision": 4}
+/type/edition /books/OL11117488M 5 2022-12-10T04:13:58.687561 {"publishers": ["Phi Delta Kappa Intl Inc"], "subtitle": "Creating a Partnership", "weight": "1.6 ounces", "physical_format": "Paperback", "key": "/books/OL11117488M", "authors": [{"key": "/authors/OL3550234A"}, {"key": "/authors/OL3550235A"}], "subjects": ["Education"], "languages": [{"key": "/languages/eng"}], "title": "Making Student Teaching Work", "isbn_13": ["9780873676472"], "isbn_10": ["0873676475"], "publish_date": "April 1999", "oclc_numbers": ["41214849"], "works": [{"key": "/works/OL11583552W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "6.8 x 4.8 x 0.2 inches", "covers": [11675364], "ocaid": "makingstudenttea0000lowe", "lc_classifications": ["L11 .F37 no.447", "LB2157 .F37 no.447"], "source_records": ["ia:makingstudenttea0000lowe", "promise:bwb_daily_pallets_2020-07-23"], "local_id": ["urn:bwbsku:O6-BFC-208"], "identifiers": {"amazon": [""]}, "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T04:13:58.687561"}}
+/type/edition /books/OL11117784M 5 2010-08-17T05:47:19.142405 {"publishers": ["Hess Pubns"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2010-08-17T05:47:19.142405"}, "weight": "1.6 pounds", "title": "The Law of God", "identifiers": {"goodreads": ["6282967"], "librarything": ["470123"]}, "isbn_13": ["9780873771870"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Hardcover", "isbn_10": ["0873771877"], "publish_date": "December 1998", "key": "/books/OL11117784M", "authors": [{"key": "/authors/OL423915A"}], "latest_revision": 5, "works": [{"key": "/works/OL2833983W"}], "type": {"key": "/type/edition"}, "subjects": ["Christian Theology - General", "Religion"], "physical_dimensions": "8.8 x 5.8 x 1.6 inches", "revision": 5}
+/type/edition /books/OL11117823M 4 2010-04-24T18:14:28.389476 {"publishers": ["January Productions Inc"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:14:28.389476"}, "title": "To Catch a Thief!", "identifiers": {"goodreads": ["2486096"]}, "isbn_13": ["9780873860468"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0873860462"], "publish_date": "April 1987", "key": "/books/OL11117823M", "authors": [{"key": "/authors/OL1197871A"}], "latest_revision": 4, "works": [{"key": "/works/OL5285738W"}], "type": {"key": "/type/edition"}, "subjects": ["Law & Crime", "Children's All Ages"], "revision": 4}
+/type/edition /books/OL11118186M 6 2011-04-27T16:43:33.720898 {"publishers": ["State University of New York Press"], "physical_format": "Unknown Binding", "subtitle": "The Regents of the University of the State of New York, 1784-1804", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T16:43:33.720898"}, "title": "Twenty years of the promotion of literature", "identifiers": {"goodreads": ["6950313"]}, "isbn_13": ["9780873952934"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0873952936"], "publish_date": "1974", "key": "/books/OL11118186M", "authors": [{"key": "/authors/OL1192978A"}], "latest_revision": 6, "oclc_numbers": ["1103053"], "works": [{"key": "/works/OL5271664W"}], "type": {"key": "/type/edition"}, "subjects": ["History", "New York (State)", "Universities and colleges", "University of the State of New York"], "revision": 6}
+/type/edition /books/OL11118229M 3 2011-04-29T21:04:11.800426 {"publishers": ["Strode Publishers"], "physical_format": "Unknown Binding", "subtitle": "Crusader for legislative reform in Alabama", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T21:04:11.800426"}, "title": "Hallie Farmer", "number_of_pages": 112, "isbn_13": ["9780873971577"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0873971574"], "publish_date": "1979", "key": "/books/OL11118229M", "authors": [{"key": "/authors/OL3550512A"}], "latest_revision": 3, "oclc_numbers": ["5922308"], "works": [{"key": "/works/OL9546940W"}], "type": {"key": "/type/edition"}, "subjects": ["Alabama", "Farmer, Hallie", "Women in politics"], "revision": 3}
+/type/edition /books/OL11118237M 3 2011-04-29T06:54:41.982947 {"publishers": ["Strode Publishers"], "physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T06:54:41.982947"}, "title": "Extreme weather history and climate atlas for Alabama", "number_of_pages": 353, "isbn_13": ["9780873972604"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0873972600"], "publish_date": "1984", "key": "/books/OL11118237M", "authors": [{"key": "/authors/OL3550518A"}], "latest_revision": 3, "oclc_numbers": ["10527094"], "works": [{"key": "/works/OL9546948W"}], "type": {"key": "/type/edition"}, "subjects": ["Alabama", "Climate", "Weather"], "revision": 3}
+/type/edition /books/OL11118374M 5 2010-04-24T18:14:28.389476 {"publishers": ["Sword of the Lord"], "languages": [{"key": "/languages/eng"}], "identifiers": {"goodreads": ["1968191"]}, "title": "Beware of Herpes, the New Scarlet Monster", "isbn_10": ["087398384X"], "number_of_pages": 24, "isbn_13": ["9780873983846"], "covers": [5100983], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:14:28.389476"}, "publish_date": "August 2000", "key": "/books/OL11118374M", "authors": [{"key": "/authors/OL662148A"}], "latest_revision": 5, "works": [{"key": "/works/OL3762674W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Religion", "Religion - General"], "revision": 5}
+/type/edition /books/OL11118830M 4 2010-04-24T18:14:28.389476 {"publishers": ["Texas Western Press"], "title": "Backdoor at Bagdad", "isbn_10": ["0874041104"], "identifiers": {"goodreads": ["2848473"]}, "isbn_13": ["9780874041101"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:14:28.389476"}, "publish_date": "June 1977", "key": "/books/OL11118830M", "authors": [{"key": "/authors/OL3550601A"}], "latest_revision": 4, "works": [{"key": "/works/OL9547049W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL1111885M 8 2021-08-20T19:11:44.220434 {"publishers": ["McGraw-Hill"], "number_of_pages": 256, "isbn_10": ["0070043868"], "covers": [3885806], "lc_classifications": ["HF5429 .B667 1995"], "key": "/books/OL1111885M", "authors": [{"key": "/authors/OL587524A"}], "publish_places": ["New York"], "contributions": ["Barr, Vilma."], "languages": [{"key": "/languages/eng"}], "pagination": "xi, 256 p. :", "source_records": ["amazon:0070043868", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:145402039:738", "ia:timesaverdetails0000brou"], "title": "Time-saver details for store planning and design", "dewey_decimal_class": ["658.2/3"], "notes": {"type": "/type/text", "value": "Includes index."}, "identifiers": {"goodreads": ["2503684"], "librarything": ["2009893"]}, "edition_name": "International ed.", "lccn": ["94037718"], "subjects": ["Stores, Retail -- Planning.", "Stores, Retail -- Design and construction."], "publish_date": "1995", "publish_country": "nyu", "by_statement": "Charles E. Broudy, Vilma Barr.", "works": [{"key": "/works/OL3512117W"}], "type": {"key": "/type/edition"}, "ocaid": "timesaverdetails0000brou", "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2021-08-20T19:11:44.220434"}}
+/type/edition /books/OL11118934M 6 2011-04-28T05:50:00.536276 {"publishers": ["Pages Publishing Group"], "number_of_pages": 24, "last_modified": {"type": "/type/datetime", "value": "2011-04-28T05:50:00.536276"}, "title": "The Special Unicorn", "type": {"key": "/type/edition"}, "identifiers": {"librarything": ["3182342"], "goodreads": ["2300756"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780874062342"], "isbn_10": ["0874062349"], "publish_date": "May 1989", "key": "/books/OL11118934M", "authors": [{"key": "/authors/OL600366A"}, {"key": "/authors/OL300616A"}], "latest_revision": 6, "oclc_numbers": ["19515026"], "physical_format": "Paperback", "subjects": ["General", "Children's Books/All Ages", "Children: Babies & Toddlers"], "revision": 6}
+/type/edition /books/OL11119473M 3 2010-04-24T18:14:52.712244 {"publishers": ["Ohio State Univ Foreign Language"], "identifiers": {"goodreads": ["2666452"]}, "key": "/books/OL11119473M", "title": "Reading Czech 3 Student Manual", "number_of_pages": 115, "isbn_13": ["9780874151572"], "physical_format": "Paperback", "isbn_10": ["0874151570"], "publish_date": "January 1989", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:14:52.712244"}, "authors": [{"key": "/authors/OL3550797A"}, {"key": "/authors/OL3550773A"}], "latest_revision": 3, "type": {"key": "/type/edition"}, "subjects": ["Czech", "Czech Language"], "revision": 3}
+/type/edition /books/OL11119697M 6 2022-08-10T01:04:44.333801 {"title": "Development Regulation and Housing Affordability", "authors": [{"key": "/authors/OL1320057A"}], "publish_date": "June 1992", "publishers": ["Urban Land Institute"], "weight": "10.4 ounces", "covers": [5101124], "physical_format": "Paperback", "subjects": ["Housing & Urban Development", "Legal Reference / Law Profession"], "languages": [{"key": "/languages/eng"}], "isbn_13": ["9780874207293"], "isbn_10": ["0874207290"], "oclc_numbers": ["26791499"], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.5 inches", "ocaid": "developmentregul0000lowr", "lccn": ["n92060666"], "lc_classifications": ["KF5698 .L693 1992"], "source_records": ["ia:developmentregul0000lowr"], "key": "/books/OL11119697M", "number_of_pages": 180, "works": [{"key": "/works/OL5534631W"}], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-10T01:04:44.333801"}}
+/type/edition /books/OL1111975M 8 2020-11-18T14:10:34.478199 {"publishers": ["Kregel Publications"], "identifiers": {"goodreads": ["736203"], "librarything": ["1009608"]}, "subtitle": "an exposition of God's marvelous gift", "isbn_10": ["0825423414"], "covers": [627673], "lc_classifications": ["BT761.2 .C5 1995"], "latest_revision": 8, "key": "/books/OL1111975M", "authors": [{"key": "/authors/OL587557A"}], "publish_places": ["Grand Rapids, MI"], "pagination": "271 p. ;", "source_records": ["marc:marc_records_scriblio_net/part24.dat:70980614:730", "marc:marc_loc_updates/v36.i18.records.utf8:5041347:730", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:145481381:730"], "title": "Grace", "dewey_decimal_class": ["234"], "notes": {"type": "/type/text", "value": "Includes bibliographical references and indexes.\nOriginally published: Philadelphia, Pa. : Sunday School Times Co., 1922."}, "number_of_pages": 271, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["94037813"], "subjects": ["Grace (Theology)"], "publish_date": "1995", "publish_country": "miu", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T14:10:34.478199"}, "by_statement": "Lewis Sperry Chafer.", "oclc_numbers": ["31206556"], "works": [{"key": "/works/OL3512220W"}], "type": {"key": "/type/edition"}, "revision": 8}
+/type/edition /books/OL11119982M 3 2010-04-13T06:26:02.837391 {"publishers": ["HRD Press, Inc"], "weight": "8.8 ounces", "covers": [2673377], "edition_name": "Prepack edition", "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:26:02.837391"}, "latest_revision": 3, "key": "/books/OL11119982M", "authors": [{"key": "/authors/OL2949084A"}], "subjects": ["Human Resources & Personnel Management", "Management - General", "Skills", "Business & Economics", "Business / Economics / Finance", "Business/Economics"], "first_sentence": {"type": "/type/text", "value": "This self-assessment is designed to give you insight into the ways in which you respond to people in your interpersonal communications."}, "title": "What Do You Say?", "number_of_pages": 12, "isbn_13": ["9780874255287"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0874255287"], "publish_date": "January 2000", "works": [{"key": "/works/OL8706039W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.7 x 8.4 x 0.7 inches", "revision": 3}
+/type/edition /books/OL11120062M 3 2010-04-13T06:26:02.837391 {"publishers": ["HRD Press, Inc."], "subtitle": "Video & Instructor Materials", "weight": "2.4 pounds", "covers": [5101155], "edition_name": "Ringbound edition", "physical_format": "Ring-bound", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:26:02.837391"}, "latest_revision": 3, "key": "/books/OL11120062M", "authors": [{"key": "/authors/OL3551023A"}], "subjects": ["Human Resources & Personnel Management", "Management - General", "Skills", "Business & Economics", "Business/Economics"], "isbn_13": ["9780874258189"], "title": "Workforce Diversity Workshop", "number_of_pages": 49, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0874258189"], "publish_date": "January 1, 2003", "works": [{"key": "/works/OL9547433W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "12.4 x 10.2 x 2 inches", "revision": 3}
+/type/edition /books/OL1112032M 17 2022-01-26T22:09:33.535586 {"publishers": ["Brookings Institution"], "number_of_pages": 132, "subtitle": "conflict and cooperation", "ia_box_id": ["IA128011"], "subject_place": ["United States", "Japan"], "covers": [6664703, 1549168, 1549167], "local_id": ["urn:trent:0116404156055"], "ia_loaded_id": ["technonationali000ostr"], "lc_classifications": ["HC110.T4 O82 1995", "HC110.T4O82 1995"], "key": "/books/OL1112032M", "authors": [{"key": "/authors/OL494747A"}], "ocaid": "technonationalis00ostr", "publish_places": ["Washington, D.C"], "contributions": ["Nelson, Richard R."], "subjects": ["Technological innovations -- Economic aspects -- United States -- History -- 20th century", "Technological innovations -- Economic aspects -- Japan -- History -- 20th century", "Industries -- United States -- History -- 20th century", "Industries -- Japan -- History -- 20th century", "Economic history -- 1945-", "Competition, International -- History -- 20th century"], "subject_time": ["20th century.", "1945-"], "pagination": "xxvi, 132 p. :", "source_records": ["marc:marc_records_scriblio_net/part24.dat:71028593:1244", "marc:marc_ithaca_college/ic_marc.mrc:153057258:1248", "ia:technonationalis00ostr", "ia:technonationali000ostr", "marc:OpenLibraries-Trent-MARCs/tier5.mrc:39111209:1430", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:145529756:1244", "bwb:9780815766735", "bwb:9780815766742"], "title": "Techno-nationalism and techno-globalism", "dewey_decimal_class": ["338/.064/0973"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 119-124) and index."}, "identifiers": {"goodreads": ["5195970", "5686638"]}, "languages": [{"key": "/languages/eng"}], "lccn": ["94037871"], "isbn_10": ["0815766742", "0815766734"], "publish_date": "1995", "publish_country": "dcu", "series": ["Integrating national economies"], "by_statement": "Sylvia Ostry and Richard R. Nelson.", "works": [{"key": "/works/OL3129776W"}], "type": {"key": "/type/edition"}, "latest_revision": 17, "revision": 17, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-26T22:09:33.535586"}}
+/type/edition /books/OL11120658M 7 2022-12-07T04:31:05.380624 {"publishers": ["Behrman House Publishing"], "weight": "5.6 ounces", "edition_name": "Stdy Qstns edition", "physical_format": "Paperback", "key": "/books/OL11120658M", "authors": [{"key": "/authors/OL2949268A"}], "subjects": ["Judaism - General", "Religion & Spirituality", "Children's 12-Up - Judaism"], "isbn_13": ["9780874414585"], "title": "Ethical Literature", "identifiers": {"librarything": ["4226144"], "goodreads": ["2827104"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["087441458X"], "publish_date": "June 1, 1988", "oclc_numbers": ["32172624"], "works": [{"key": "/works/OL8706648W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.6 x 8.4 x 0.2 inches", "local_id": ["urn:bwbsku:P7-DDX-153"], "source_records": ["promise:bwb_daily_pallets_2022-03-17"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-07T04:31:05.380624"}}
+/type/edition /books/OL11120810M 2 2011-04-26T04:22:52.620361 {"publishers": ["College Board"], "languages": [{"key": "/languages/eng"}], "subtitle": "Ohio", "last_modified": {"type": "/type/datetime", "value": "2011-04-26T04:22:52.620361"}, "title": "Guide to Secondary Schools", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780874471717"], "physical_format": "Paperback", "isbn_10": ["0874471710"], "publish_date": "June 1984", "key": "/books/OL11120810M", "latest_revision": 2, "oclc_numbers": ["234304443"], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL11121053M 6 2011-04-29T21:34:06.190899 {"isbn_13": ["9780874494198"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2011-04-29T21:34:06.190899"}, "title": "My Name Is Mudpie", "identifiers": {"librarything": ["6717965"], "goodreads": ["2504810"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Hardcover", "isbn_10": ["0874494192"], "latest_revision": 6, "key": "/books/OL11121053M", "authors": [{"key": "/authors/OL3551233A"}], "oclc_numbers": ["19084449"], "works": [{"key": "/works/OL9547641W"}], "type": {"key": "/type/edition"}, "subjects": ["Bears", "Family", "Fiction"], "revision": 6}
+/type/edition /books/OL11121252M 4 2014-06-10T21:32:48.333784 {"publishers": ["Compute"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2014-06-10T21:32:48.333784"}, "title": "Compute's More Machine Language Games for the Commodore 64", "contributions": ["William B. Sanders (Editor)"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780874550948"], "covers": [7280412], "physical_format": "Paperback", "isbn_10": ["0874550947"], "publish_date": "April 1987", "key": "/books/OL11121252M", "authors": [{"key": "/authors/OL2974326A"}], "latest_revision": 4, "oclc_numbers": ["18671985"], "works": [{"key": "/works/OL8746262W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Machine macro & assembly languages", "Computers - General Information", "Computer Books: Operating Systems"], "revision": 4}
+/type/edition /books/OL11121635M 5 2011-04-26T03:05:33.286817 {"publishers": ["Christian Schools Intl"], "subtitle": "Grade 2", "weight": "2.6 pounds", "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-26T03:05:33.286817"}, "latest_revision": 5, "key": "/books/OL11121635M", "authors": [{"key": "/authors/OL3551381A"}], "subjects": ["Science & Nature - General", "Juvenile Nonfiction", "Children: Grades 1-2"], "edition_name": "Student edition", "title": "Science", "identifiers": {"goodreads": ["5967550"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780874636796"], "isbn_10": ["0874636795"], "publish_date": "January 31, 2004", "oclc_numbers": ["57021052"], "works": [{"key": "/works/OL9547824W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.1 x 8 x 1 inches", "revision": 5}
+/type/edition /books/OL11121857M 3 2021-09-29T02:14:55.545569 {"physical_format": "Paperback", "publishers": ["Smithsonian Inst Pr"], "isbn_10": ["0874744830"], "number_of_pages": 253, "isbn_13": ["9780874744835"], "languages": [{"key": "/languages/eng"}], "publish_date": "August 1981", "key": "/books/OL11121857M", "authors": [{"key": "/authors/OL3551452A"}], "title": "John Notman, Architect", "works": [{"key": "/works/OL9547908W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780874744835"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-09-29T02:14:55.545569"}}
+/type/edition /books/OL111218M 9 2020-12-02T11:07:34.957839 {"number_of_pages": 129, "series": ["Narrativas hispa\u0301nicas ;"], "covers": [3710602], "lc_classifications": ["PQ6623.A7657 H47 1999"], "edition_name": "2. ed.", "source_records": ["marc:marc_records_scriblio_net/part28.dat:72572616:596", "marc:marc_ithaca_college/ic_marc.mrc:173093233:757", "marc:marc_loc_2016/BooksAll.2016.part28.utf8:100678815:600"], "title": "La hermana pequen\u0303a", "languages": [{"key": "/languages/spa"}], "publish_country": "sp ", "by_statement": "Carmen Marti\u0301n Gaite.", "type": {"key": "/type/edition"}, "publishers": ["Editorial Anagrama"], "key": "/books/OL111218M", "authors": [{"key": "/authors/OL39422A"}], "publish_places": ["Barcelona"], "pagination": "129 p. ;", "classifications": {}, "lccn": ["99231170"], "identifiers": {"goodreads": ["2175279"], "librarything": ["3441768"]}, "dewey_decimal_class": ["862/.64"], "isbn_10": ["8433910930"], "publish_date": "1999", "works": [{"key": "/works/OL15126550W"}], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-02T11:07:34.957839"}}
+/type/edition /books/OL11122482M 3 2010-04-13T06:26:02.837391 {"publishers": ["Alfred Publishing Company"], "subtitle": "Performed by Shinichi Suzuki (Suzuki Method Core Materials)", "weight": "1.6 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0874873363"], "title": "Suzuki Violin School", "isbn_13": ["9780874873368"], "covers": [2673657], "physical_format": "Audio Cassette", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:26:02.837391"}, "latest_revision": 3, "key": "/books/OL11122482M", "authors": [{"key": "/authors/OL2761107A"}], "publish_date": "July 1999", "works": [{"key": "/works/OL8310014W"}], "type": {"key": "/type/edition"}, "subjects": ["Musical Instruments - Strings", "Music"], "physical_dimensions": "4.3 x 2.7 x 0.5 inches", "revision": 3}
+/type/edition /books/OL11122746M 4 2019-02-18T12:22:46.644534 {"publishers": ["Elsevier Science Ltd"], "physical_format": "Paperback", "source_records": ["marc:marc_binghamton_univ/bgm_openlib_final_0-5.mrc:278962901:828"], "title": "Urology (Medical Examination Review, Vol 14)", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 257, "last_modified": {"type": "/type/datetime", "value": "2019-02-18T12:22:46.644534"}, "edition_name": "5th edition", "isbn_13": ["9780874880243"], "isbn_10": ["0874880246"], "publish_date": "November 1983", "key": "/books/OL11122746M", "authors": [{"key": "/authors/OL3551654A"}], "latest_revision": 4, "oclc_numbers": ["10780425"], "works": [{"key": "/works/OL9548126W"}], "type": {"key": "/type/edition"}, "subjects": ["Urology", "Medical / Nursing"], "revision": 4}
+/type/edition /books/OL11122962M 8 2022-12-14T16:16:50.734418 {"identifiers": {"goodreads": ["1743460"]}, "title": "First Time Home Buyers' Guide", "subtitle": "Making the Most of the Best Mortgage Rates New Information on Home Inspection Before You Buy!", "authors": [{"key": "/authors/OL1016345A"}], "publish_date": "June 1986", "publishers": ["Acropolis Books (NY)"], "isbn_13": ["9780874918267"], "physical_format": "Paperback", "isbn_10": ["087491826X"], "type": {"key": "/type/edition"}, "subjects": ["General", "Business / Economics / Finance"], "ocaid": "firsttimehomebuy0000hugh", "source_records": ["ia:firsttimehomebuy0000hugh", "promise:bwb_daily_pallets_2022-03-17"], "key": "/books/OL11122962M", "number_of_pages": 234, "works": [{"key": "/works/OL4818815W"}], "local_id": ["urn:bwbsku:T2-BXZ-991"], "covers": [13090809], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-14T16:16:50.734418"}}
+/type/edition /books/OL11123126M 4 2021-04-13T15:57:26.840390 {"publishers": ["Live Oak Media"], "subtitle": "A Live Oak Readalong (Reading Chest)", "weight": "11.2 ounces", "physical_format": "Paperback", "key": "/books/OL11123126M", "authors": [{"key": "/authors/OL2621816A"}], "subjects": ["Animals - Bears", "Animals - Pets", "Family - Parents", "Children's 4-8 - Picturebooks", "Audio: Juvenile"], "edition_name": "Pap/Cas edition", "languages": [{"key": "/languages/eng"}], "first_sentence": {"type": "/type/text", "value": "\"I want a pet,\" Emma told her mother one day."}, "source_records": ["amazon:0874991080"], "title": "Emma's Pet", "isbn_13": ["9780874991086"], "isbn_10": ["0874991080"], "publish_date": "June 1988", "oclc_numbers": ["658888967"], "works": [{"key": "/works/OL257866W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "11.5 x 7.5 x 0.8 inches", "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-04-13T15:57:26.840390"}}
+/type/edition /books/OL11123932M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Paperback", "subtitle": "Fluency Stage 3", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Celebration Pr"], "title": "Who Is Michael Ramirez", "isbn_13": ["9780673781079"], "isbn_10": ["0673781070"], "publish_date": "March 1999", "key": "/books/OL11123932M", "type": {"key": "/type/edition"}, "subjects": ["Elementary", "School & Education", "Juvenile Fiction", "Children: Grades 2-3"], "revision": 1}
+/type/edition /books/OL11124592M 3 2022-12-07T08:02:37.862864 {"publishers": ["John Wiley & Sons Inc"], "title": "Edu Test Measure 5e Mzl", "isbn_10": ["0673975916"], "isbn_13": ["9780673975911"], "physical_format": "Hardcover", "key": "/books/OL11124592M", "authors": [{"key": "/authors/OL3416274A"}], "subjects": ["Education"], "works": [{"key": "/works/OL9379440W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:W7-AKB-631"], "source_records": ["promise:bwb_daily_pallets_2022-03-17"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-07T08:02:37.862864"}}
+/type/edition /books/OL11124725M 8 2020-08-23T09:33:47.703213 {"publishers": ["Addison Wesley Publishing Company"], "subtitle": "Student's Solutions Manual", "weight": "1.3 pounds", "covers": [5101402], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2020-08-23T09:33:47.703213"}, "latest_revision": 8, "key": "/books/OL11124725M", "authors": [{"key": "/authors/OL23278A"}, {"key": "/authors/OL216862A"}, {"key": "/authors/OL19715A"}], "ocaid": "studentssolution06edunse", "subjects": ["Mathematics and Science", "General", "Mathematics", "Science/Mathematics"], "edition_name": "6th edition", "languages": [{"key": "/languages/eng"}], "source_records": ["ia:studentssolution06edunse", "bwb:9780673983374"], "title": "Trigonometry", "identifiers": {"goodreads": ["215618"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780673983374"], "isbn_10": ["0673983374"], "publish_date": "January 1997", "oclc_numbers": ["49707022"], "works": [{"key": "/works/OL17102W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "10.9 x 8.4 x 0.7 inches", "revision": 8}
+/type/edition /books/OL11124811M 1 2008-04-30T09:38:13.731961 {"isbn_13": ["9780673991188"], "physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "publishers": ["Addison Wesley Publishing Company"], "title": "Tutorl IBM Intermed Alg", "edition_name": "3rd edition", "isbn_10": ["0673991180"], "publish_date": "January 1997", "key": "/books/OL11124811M", "authors": [{"key": "/authors/OL2753439A"}, {"key": "/authors/OL712165A"}], "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL11124831M 2 2009-10-17T13:51:08.655960 {"publishers": ["Harper Collins"], "key": "/books/OL11124831M", "source_records": ["amazon:0673992632"], "title": "BREAKING THROUGH", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0673992632"], "publish_date": "1995", "last_modified": {"type": "/type/datetime", "value": "2009-10-17T13:51:08.655960"}, "authors": [{"key": "/authors/OL23950A"}], "latest_revision": 2, "works": [{"key": "/works/OL89858W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL11125037M 9 2022-09-17T05:39:19.408495 {"publishers": ["Belknap Press"], "identifiers": {"librarything": ["3087483"], "goodreads": ["1209894"]}, "weight": "1.1 pounds", "covers": [2548091], "physical_format": "Paperback", "key": "/books/OL11125037M", "authors": [{"key": "/authors/OL237923A"}], "subjects": ["Religion & Beliefs", "Ancient - General", "Comparative Religion", "History", "History / Ancient / General", "History - General History", "Civilization, Ancient", "Religions", "History: World"], "isbn_13": ["9780674025486"], "source_records": ["bwb:9780674025486", "marc:marc_loc_2016/BooksAll.2016.part34.utf8:121001851:1899"], "title": "Ancient Religions", "number_of_pages": 288, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0674025482"], "publish_date": "September 30, 2007", "works": [{"key": "/works/OL1978523W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9.6 x 6.5 x 0.8 inches", "lccn": ["2007016512"], "lc_classifications": ["BL96 .A53 2007", "BL96"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-17T05:39:19.408495"}}
+/type/edition /books/OL11125884M 3 2011-04-29T00:10:46.682090 {"publishers": ["C.E. Merrill"], "physical_format": "Unknown Binding", "subtitle": "activity cards", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T00:10:46.682090"}, "title": "Decision: A values approach to decision making ", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780675007511"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0675007518"], "publish_date": "1974", "key": "/books/OL11125884M", "authors": [{"key": "/authors/OL3552267A"}], "latest_revision": 3, "oclc_numbers": ["53766683"], "works": [{"key": "/works/OL9548772W"}], "type": {"key": "/type/edition"}, "subjects": ["Enseignement", "Prise de de\u00cc\u0081cision", "Travail en e\u00cc\u0081quipe", "Valeurs (Philosophie)"], "revision": 3}
+/type/edition /books/OL11126088M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Schools"], "number_of_pages": 108, "isbn_13": ["9780675032384"], "isbn_10": ["0675032385"], "publish_date": "December 1, 1990", "key": "/books/OL11126088M", "authors": [{"key": "/authors/OL2624630A"}], "title": "Health", "type": {"key": "/type/edition"}, "subjects": ["Psychology", "Health", "Sex instruction", "Study and teaching (Elementary)"], "revision": 1}
+/type/edition /books/OL111263M 5 2020-12-02T11:08:07.200256 {"number_of_pages": 36, "subtitle": "Ley no. 1818 de 22 de diciembre de 1997 : comentada y concordada", "subject_place": ["Bolivia."], "lc_classifications": ["KHC3247.A311997 A4 1998"], "contributions": ["Bolivia."], "source_records": ["marc:marc_records_scriblio_net/part28.dat:72610533:819", "marc:marc_loc_updates/v36.i27.records.utf8:2751780:834", "marc:marc_loc_2016/BooksAll.2016.part28.utf8:100723352:834"], "title": "Ley del defensor del pueblo", "languages": [{"key": "/languages/spa"}], "subjects": ["Ombudsman -- Bolivia", "Abuse of administrative power -- Bolivia"], "publish_country": "bo ", "series": ["Coleccio\u0301n juri\u0301dica \"Guttentag\""], "by_statement": "Mari\u0301a Vero\u0301nica Oblitas F.", "type": {"key": "/type/edition"}, "publishers": ["Editoria \"Los Amigos del Libro\""], "key": "/books/OL111263M", "authors": [{"key": "/authors/OL74426A"}], "publish_places": ["La Paz, Cochabamba, Bolivia"], "pagination": "36 p. ;", "lccn": ["99231225"], "identifiers": {"goodreads": ["6015366"]}, "isbn_10": ["8483702517"], "publish_date": "1998", "works": [{"key": "/works/OL856640W"}], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-02T11:08:07.200256"}}
+/type/edition /books/OL11126529M 5 2011-04-30T01:38:35.714796 {"publishers": ["Charles E. Merrill Pub. Co"], "identifiers": {"goodreads": ["4259409"]}, "subtitle": "Clinical probes of articulation consistency", "physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2011-04-30T01:38:35.714796"}, "latest_revision": 5, "key": "/books/OL11126529M", "authors": [{"key": "/authors/OL1359359A"}], "subjects": ["Articulation disorders", "Articulation disorders in children", "Speech disorders"], "isbn_13": ["9780675099318"], "title": "C-PAC", "number_of_pages": 161, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0675099315"], "publish_date": "1981", "oclc_numbers": ["8138901"], "works": [{"key": "/works/OL5627792W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL11126592M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Merrill"], "number_of_pages": 144, "isbn_13": ["9780675166508"], "isbn_10": ["0675166500"], "publish_date": "1991", "key": "/books/OL11126592M", "authors": [{"key": "/authors/OL2625788A"}], "title": "Biology: The Dynamics of Life (Teacher Resource Package: Copy Masters and Answer Pages)", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL11126633M 3 2011-04-22T23:58:20.735097 {"publishers": ["Charles Merrill"], "last_modified": {"type": "/type/datetime", "value": "2011-04-22T23:58:20.735097"}, "title": "Management Science Model Formulation App", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780675203630"], "physical_format": "Paperback", "isbn_10": ["0675203635"], "publish_date": "January 1, 1985", "key": "/books/OL11126633M", "authors": [{"key": "/authors/OL3423370A"}], "latest_revision": 3, "oclc_numbers": ["234291617"], "works": [{"key": "/works/OL9387332W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL11126729M 6 2021-08-14T18:33:05.338456 {"publishers": ["Prentice Hall"], "identifiers": {"goodreads": ["2035896"]}, "subtitle": "Circuits, Devices, Applications", "physical_format": "Paperback", "key": "/books/OL11126729M", "authors": [{"key": "/authors/OL27966A"}], "subjects": ["General", "Technology", "Technology & Industrial Arts"], "isbn_13": ["9780675214070"], "title": "Electronic Fundamentals", "number_of_pages": 384, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0675214076"], "publish_date": "December 1990", "oclc_numbers": ["30593005"], "works": [{"key": "/works/OL473593W"}], "type": {"key": "/type/edition"}, "covers": [11629548], "ocaid": "experimentsinele0000buch", "lc_classifications": ["TK7816 .F57 1991 Manual"], "source_records": ["ia:experimentsinele0000buch"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-08-14T18:33:05.338456"}}
+/type/edition /books/OL11126920M 2 2009-12-15T00:59:29.977703 {"publishers": ["Charles Merrill"], "key": "/books/OL11126920M", "title": "Ednl Computing Foundations I/M", "isbn_13": ["9780675221238"], "physical_format": "Paperback", "isbn_10": ["0675221234"], "publish_date": "October 1, 1990", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:59:29.977703"}, "authors": [{"key": "/authors/OL2905113A"}], "latest_revision": 2, "works": [{"key": "/works/OL8630742W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL11127054M 2 2011-04-29T17:16:18.615339 {"publishers": ["Amer School Pub"], "last_modified": {"type": "/type/datetime", "value": "2011-04-29T17:16:18.615339"}, "title": "A Fine White Dust/Audio Cassette", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780676319736"], "physical_format": "Hardcover", "isbn_10": ["0676319734"], "publish_date": "January 1988", "key": "/books/OL11127054M", "latest_revision": 2, "oclc_numbers": ["42534140"], "type": {"key": "/type/edition"}, "subjects": ["Audio: Juvenile"], "first_sentence": {"type": "/type/text", "value": "I've got these little bitty pieces of broken ceramic in my hands, and some of the fine white dust is coming off them, like chalk dust."}, "revision": 2}
+/type/edition /books/OL11127131M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Random House"], "title": "Spotlight on Reading Vocabulary Volume 5", "isbn_13": ["9780676391909"], "isbn_10": ["0676391907"], "publish_date": "1984", "key": "/books/OL11127131M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL11127462M 3 2022-12-17T19:26:20.806685 {"physical_format": "Hardcover", "title": "Malcolm Hillier's Wreaths/Garl", "isbn_10": ["0676570275"], "publishers": ["Storey Books"], "isbn_13": ["9780676570274"], "languages": [{"key": "/languages/eng"}], "publish_date": "November 1997", "key": "/books/OL11127462M", "authors": [{"key": "/authors/OL2756983A"}], "subjects": ["Flower Arranging", "Crafts / Hobbies"], "works": [{"key": "/works/OL8298842W"}], "type": {"key": "/type/edition"}, "source_records": ["bwb:9780676570274"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T19:26:20.806685"}}
+/type/edition /books/OL11127969M 2 2009-12-15T00:59:29.977703 {"publishers": ["Gordon & Breach Science Publishers Ltd"], "isbn_10": ["0677100108"], "number_of_pages": 432, "isbn_13": ["9780677100104"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:59:29.977703"}, "publish_date": "December 1964", "latest_revision": 2, "key": "/books/OL11127969M", "authors": [{"key": "/authors/OL3552645A"}], "title": "Proceedings of Third Symposium on Advanced Propulsion Concepts, Volume 1", "subjects": ["Astronomy, Space & Time", "Astrophysics"], "works": [{"key": "/works/OL9549178W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL11127971M 2 2009-12-15T00:59:29.977703 {"physical_format": "Hardcover", "subtitle": "The Earth's Environment (Les Houches Lectures)", "publishers": ["Gordon & Breach Science Pub"], "isbn_10": ["0677101007"], "number_of_pages": 628, "isbn_13": ["9780677101002"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:59:29.977703"}, "publish_date": "December 1962", "latest_revision": 2, "key": "/books/OL11127971M", "authors": [{"key": "/authors/OL2757088A"}], "title": "Geophysics", "subjects": ["PHYSICS", "Science/Mathematics"], "works": [{"key": "/works/OL8299204W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL11127997M 4 2010-04-24T18:14:52.712244 {"publishers": ["Gordon & Breach Science Publishers Ltd"], "identifiers": {"goodreads": ["2855746"]}, "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:14:52.712244"}, "title": "Modern Astrophysics", "number_of_pages": 366, "isbn_13": ["9780677126906"], "physical_format": "Hardcover", "isbn_10": ["0677126905"], "publish_date": "December 1967", "key": "/books/OL11127997M", "authors": [{"key": "/authors/OL303429A"}], "latest_revision": 4, "works": [{"key": "/works/OL2300319W"}], "type": {"key": "/type/edition"}, "subjects": ["Astronomy, Space & Time", "Astrophysics"], "revision": 4}
+/type/edition /books/OL11128054M 3 2019-06-29T03:49:32.932944 {"publishers": ["Intl Pub Distributor Inc"], "number_of_pages": 856, "covers": [8629621], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2019-06-29T03:49:32.932944"}, "latest_revision": 3, "key": "/books/OL11128054M", "authors": [{"key": "/authors/OL2641678A"}], "ocaid": "collectedpapersl00haar", "subjects": ["Science: General Issues", "Science/Mathematics"], "source_records": ["ia:collectedpapersl00haar"], "title": "Collected Papers of L. D. Landau", "identifiers": {"librarything": ["8743559"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780677205502"], "isbn_10": ["0677205503"], "publish_date": "June 1965", "works": [{"key": "/works/OL19835231W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL11128225M 3 2011-04-29T07:56:15.316700 {"publishers": ["Augustus M. Kelley Publishers"], "last_modified": {"type": "/type/datetime", "value": "2011-04-29T07:56:15.316700"}, "title": "History of the Factory Movement", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780678001639"], "physical_format": "Textbook Binding", "isbn_10": ["0678001634"], "publish_date": "June 1957", "key": "/books/OL11128225M", "authors": [{"key": "/authors/OL1909306A"}], "latest_revision": 3, "oclc_numbers": ["500218164"], "works": [{"key": "/works/OL6902503W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL11128719M 2 2009-12-15T00:59:31.105233 {"publishers": ["David McKay Co"], "key": "/books/OL11128719M", "title": "Rope Roundup the Lore and Craft of Ropes and Roping", "isbn_13": ["9780679201632"], "physical_format": "Hardcover", "isbn_10": ["0679201637"], "publish_date": "January 2000", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:59:31.105233"}, "authors": [{"key": "/authors/OL3552897A"}], "latest_revision": 2, "works": [{"key": "/works/OL9549479W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL11128762M 2 2009-12-15T00:59:31.105233 {"publishers": ["Random House (Merchandising)"], "key": "/books/OL11128762M", "title": "Young Artists Almanac and Glossary", "isbn_13": ["9780679211013"], "physical_format": "Hardcover", "isbn_10": ["0679211012"], "publish_date": "March 1980", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:59:31.105233"}, "authors": [{"key": "/authors/OL3265939A"}], "latest_revision": 2, "works": [{"key": "/works/OL9200955W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL11128934M 1 2008-04-30T09:38:13.731961 {"physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Knopf"], "title": "Rainbow's End", "isbn_13": ["9780679441847"], "isbn_10": ["0679441840"], "publish_date": "June 1995", "key": "/books/OL11128934M", "type": {"key": "/type/edition"}, "subjects": ["British", "Fiction", "Jury, Richard (Fictitious char", "New Mexico", "Santa Fe"], "revision": 1}
+/type/edition /books/OL11129003M 3 2010-08-17T05:51:33.333528 {"publishers": ["David McKay Co"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-08-17T05:51:33.333528"}, "title": "Tavern Lamps Are Burning", "identifiers": {"librarything": ["2871586"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780679500933"], "isbn_10": ["0679500936"], "publish_date": "June 1977", "key": "/books/OL11129003M", "authors": [{"key": "/authors/OL3383788A"}], "latest_revision": 3, "works": [{"key": "/works/OL9338304W"}], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL11129045M 5 2022-12-22T10:21:38.893174 {"publishers": ["David McKay Co. Inc"], "physical_format": "Paperback", "title": "Princess", "number_of_pages": 346, "isbn_13": ["9780679508502"], "edition_name": "1st edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0679508503"], "publish_date": "1978", "key": "/books/OL11129045M", "type": {"key": "/type/edition"}, "identifiers": {"goodreads": ["5928356"], "librarything": ["654296"]}, "works": [{"key": "/works/OL32956114W"}], "local_id": ["urn:bwbsku:T2-DNL-988"], "source_records": ["promise:bwb_daily_pallets_2022-12-06"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-22T10:21:38.893174"}}
+/type/edition /books/OL11129356M 6 2011-01-12T04:36:57.860608 {"publishers": ["Random House"], "languages": [{"key": "/languages/eng"}], "classifications": {}, "last_modified": {"type": "/type/datetime", "value": "2011-01-12T04:36:57.860608"}, "title": "The Berenstain Bears and Too Much Vacation", "identifiers": {"goodreads": ["2788026"]}, "isbn_13": ["9780679808947"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Audio cassette", "isbn_10": ["0679808949"], "publish_date": "March 10, 1990", "key": "/books/OL11129356M", "authors": [{"key": "/authors/OL19823A"}], "latest_revision": 6, "works": [{"key": "/works/OL9195132W"}], "type": {"key": "/type/edition"}, "subjects": ["Non-Classifiable", "Nonfiction - General"], "revision": 6}
+/type/edition /books/OL11129725M 2 2009-12-15T00:59:32.248569 {"physical_format": "Library Binding", "title": "Germy Blew It -- Again !", "isbn_10": ["0679902554"], "publishers": ["Alfred A. Knopf"], "isbn_13": ["9780679902553"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:59:32.248569"}, "latest_revision": 2, "key": "/books/OL11129725M", "authors": [{"key": "/authors/OL846796A"}], "works": [{"key": "/works/OL4336350W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL11130020M 1 2008-04-30T09:38:13.731961 {"physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Sine Qua Non"], "title": "Messiah Highlights/Cassette", "isbn_13": ["9780681278141"], "isbn_10": ["0681278145"], "publish_date": "April 1985", "key": "/books/OL11130020M", "type": {"key": "/type/edition"}, "subjects": ["Audio Adult: Other"], "revision": 1}
+/type/edition /books/OL11130233M 8 2020-07-14T03:55:51.721424 {"publishers": ["Longmeadow Press"], "subtitle": "Making it, winning it, losing it (Matters of Fact)", "covers": [10266897], "physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2020-07-14T03:55:51.721424"}, "latest_revision": 8, "key": "/books/OL11130233M", "authors": [{"key": "/authors/OL579499A"}], "ocaid": "moneysensenonsen0000chal", "subjects": ["Budgets, personal", "Economics", "Finance, personal"], "isbn_13": ["9780681406933"], "source_records": ["ia:moneysensenonsen0000chal"], "title": "Money sense & nonsense", "identifiers": {"goodreads": ["5198655"], "librarything": ["6071123"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0681406933"], "publish_date": "1988", "oclc_numbers": ["44880910"], "works": [{"key": "/works/OL3475908W"}], "type": {"key": "/type/edition"}, "revision": 8}
+/type/edition /books/OL11130514M 2 2010-08-17T05:51:33.333528 {"isbn_13": ["9780681606043"], "identifiers": {"librarything": ["7817892"]}, "last_modified": {"type": "/type/datetime", "value": "2010-08-17T05:51:33.333528"}, "title": "101 Bedtime Stories", "physical_format": "Hardcover", "number_of_pages": 285, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0681606045"], "latest_revision": 2, "key": "/books/OL11130514M", "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL11131184M 3 2011-04-28T13:09:47.492697 {"publishers": ["Exposition Press"], "physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2011-04-28T13:09:47.492697"}, "title": "Ouch! my back is killing me!", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "number_of_pages": 130, "isbn_13": ["9780682489522"], "edition_name": "1st ed edition", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0682489522"], "publish_date": "1978", "key": "/books/OL11131184M", "authors": [{"key": "/authors/OL3553647A"}], "latest_revision": 3, "oclc_numbers": ["5729177"], "works": [{"key": "/works/OL9550352W"}], "type": {"key": "/type/edition"}, "subjects": ["Backache"], "revision": 3}
+/type/edition /books/OL11131440M 2 2009-12-15T00:59:33.386205 {"publishers": ["Exposition-Phoenix Press, Incorporated"], "key": "/books/OL11131440M", "title": "Bomber", "isbn_13": ["9780682494861"], "physical_format": "Hardcover", "isbn_10": ["0682494860"], "publish_date": "November 1, 1979", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:59:33.386205"}, "authors": [{"key": "/authors/OL3553827A"}], "latest_revision": 2, "works": [{"key": "/works/OL9550544W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL1113150M 8 2022-12-10T10:13:53.326678 {"other_titles": ["Hippocrene language & travel guide to Britain", "Language & travel guide to Britain", "Britain"], "publishers": ["Hippocrene Books"], "identifiers": {"librarything": ["212107"], "amazon": [""]}, "isbn_10": ["0781802903"], "subject_place": ["Great Britain", "Great Britain."], "covers": [533461], "lc_classifications": ["DA650 .M24 1995", "DA650.M24 1995"], "key": "/books/OL1113150M", "authors": [{"key": "/authors/OL529075A"}], "publish_places": ["New York"], "pagination": "329 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:146523616:969", "bwb:9780781802901", "promise:bwb_daily_pallets_2020-04-30"], "title": "Hippocrene language and travel guide to Britain", "dewey_decimal_class": ["914.104/859"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 321-324) and index."}, "number_of_pages": 329, "languages": [{"key": "/languages/eng"}], "lccn": ["94039042"], "subjects": ["Americans -- Great Britain -- Guidebooks.", "English language -- Great Britain.", "Great Britain -- Guidebooks.", "Great Britain -- Civilization."], "publish_date": "1995", "publish_country": "nyu", "by_statement": "Catherine M. McCormick.", "oclc_numbers": ["31329503"], "works": [{"key": "/works/OL3244383W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:O6-EFV-669"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T10:13:53.326678"}}
+/type/edition /books/OL11131631M 2 2011-06-08T10:43:24.492278 {"publishers": ["Behrman House Publishing"], "languages": [{"key": "/languages/eng"}], "subtitle": "Poems", "last_modified": {"type": "/type/datetime", "value": "2011-06-08T10:43:24.492278"}, "title": "Under the Goldwood Tree", "number_of_pages": 64, "isbn_13": ["9780682498692"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Hardcover", "isbn_10": ["0682498696"], "publish_date": "May 1982", "key": "/books/OL11131631M", "authors": [{"key": "/authors/OL2633643A"}], "latest_revision": 2, "oclc_numbers": ["8880730"], "type": {"key": "/type/edition"}, "subjects": ["Inspirational & Religious", "Poetry"], "revision": 2}
+/type/edition /books/OL1113178M 7 2021-09-16T01:13:07.414612 {"publishers": ["Westview Press"], "number_of_pages": 285, "series": ["Institutional structures of feeling"], "local_id": ["urn:sfpl:31223039250825"], "lc_classifications": ["N72.S6 O5 1995", "N72.S6O5 1995"], "key": "/books/OL1113178M", "publish_places": ["Boulder"], "contributions": ["Gross, Larry P., 1942-"], "subjects": ["Communication in art.", "Art -- Social aspects."], "pagination": "ix, 285 p. ;", "source_records": ["amazon:0813316790", "marc:marc_openlibraries_sanfranciscopubliclibrary/sfpl_chq_2018_12_24_run02.mrc:116668137:1462", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:146552102:669", "bwb:9780813316796"], "title": "On the margins of art worlds", "dewey_decimal_class": ["701/.03"], "notes": {"type": "/type/text", "value": "Includes bibliographical references."}, "identifiers": {"goodreads": ["5135444"], "librarything": ["6183399"]}, "languages": [{"key": "/languages/eng"}], "lccn": ["94039071"], "isbn_10": ["0813316790"], "publish_date": "1995", "publish_country": "cou", "by_statement": "edited by Larry Gross.", "works": [{"key": "/works/OL19369340W"}], "type": {"key": "/type/edition"}, "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2021-09-16T01:13:07.414612"}}
+/type/edition /books/OL11132246M 4 2011-04-30T14:19:08.526300 {"publishers": ["Lippincott Williams & Wilkins"], "languages": [{"key": "/languages/eng"}], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "subtitle": "Pelvic Inflammatory Disease and Ectopic Pregnancy (Cross Training)", "last_modified": {"type": "/type/datetime", "value": "2011-04-30T14:19:08.526300"}, "title": "Cross Training", "identifiers": {"goodreads": ["3079061"]}, "isbn_13": ["9780683173208"], "edition_name": "Vhs edition", "physical_format": "Laser Disc", "isbn_10": ["0683173200"], "publish_date": "January 1, 1995", "key": "/books/OL11132246M", "authors": [{"key": "/authors/OL3554140A"}, {"key": "/authors/OL1654790A"}], "latest_revision": 4, "oclc_numbers": ["32229322"], "type": {"key": "/type/edition"}, "subjects": ["Gynaecology & obstetrics", "Nursing", "Nursing - Pediatric & Neonatal", "Women's Health - General", "Medical / Nursing / Maternity, Perinatal, Women's Health", "Nursing - Maternity, Perinatal, Women's Health", "Medical", "Medical / Nursing"], "revision": 4}
+/type/edition /books/OL11132652M 4 2010-04-24T18:14:52.712244 {"publishers": ["Simon & Schuster"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:14:52.712244"}, "title": "The Complete Italian Cookbook Gift Set", "identifiers": {"goodreads": ["650495"]}, "covers": [2548382], "edition_name": "1ST edition", "isbn_13": ["9780684011356"], "isbn_10": ["0684011352"], "latest_revision": 4, "key": "/books/OL11132652M", "authors": [{"key": "/authors/OL767814A"}, {"key": "/authors/OL3554254A"}, {"key": "/authors/OL229870A"}], "subjects": ["Cookery (Pasta)", "Cookery, Italian", "Cooking", "Cooking / Wine", "Food", "Italian", "Italian cooking", "Pasta", "Wine / Spirits / Liquor"], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL11132859M 3 2022-12-04T08:18:31.930415 {"publishers": ["Scribner"], "title": "The Cello", "identifiers": {"librarything": ["2195430"]}, "isbn_13": ["9780684147840"], "physical_format": "Hardcover", "isbn_10": ["068414784X"], "publish_date": "February 1984", "key": "/books/OL11132859M", "type": {"key": "/type/edition"}, "subjects": ["History and criticism", "Violoncello music", "Violoncello"], "works": [{"key": "/works/OL31227835W"}], "local_id": ["urn:bwbsku:W7-DEG-972"], "source_records": ["promise:bwb_daily_pallets_2022-09-13"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T08:18:31.930415"}}
+/type/edition /books/OL11133296M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Simon & Schuster (Trade Division)"], "title": "Ireland (Shrinkwrap) (Frommer)", "isbn_13": ["9780684820361"], "isbn_10": ["0684820366"], "publish_date": "July 7, 1997", "key": "/books/OL11133296M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL11133905M 2 2009-12-15T00:59:36.462212 {"physical_format": "Paperback", "title": "Bidding Precisely/3510", "isbn_10": ["0685083233"], "publishers": ["Baron/Barclay Bridge Supplies"], "isbn_13": ["9780685083239"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:59:36.462212"}, "publish_date": "December 1976", "key": "/books/OL11133905M", "authors": [{"key": "/authors/OL1959537A"}], "latest_revision": 2, "subjects": ["Health/Fitness"], "works": [{"key": "/works/OL7005138W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL11134157M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["French & European Pubns"], "title": "Michelin Red Travel Guide Italie", "isbn_13": ["9780685113905"], "isbn_10": ["0685113906"], "publish_date": "January 11, 1999", "key": "/books/OL11134157M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL11134245M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Paperback", "subtitle": "Report of a Task Force Meeting Jakarta, Indonesia, July 26-31, 1984", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Bernan Press"], "number_of_pages": 74, "isbn_13": ["9780685124666"], "isbn_10": ["0685124665"], "publish_date": "December 1985", "key": "/books/OL11134245M", "title": "In Search of New Models of Secondary Education", "type": {"key": "/type/edition"}, "subjects": ["Secondary", "Education", "Education / Teaching"], "revision": 1}
+/type/edition /books/OL11134439M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Unipub"], "title": "Selected Applications of the UNESCO Educational Simulation Model (Reports and Papers in the Social Sciences : No 34)", "isbn_13": ["9780685184493"], "isbn_10": ["0685184498"], "publish_date": "December 1979", "key": "/books/OL11134439M", "type": {"key": "/type/edition"}, "subjects": ["Education"], "revision": 1}
+/type/edition /books/OL11134454M 3 2010-08-17T05:53:26.268022 {"publishers": ["VGM Career Horizons"], "last_modified": {"type": "/type/datetime", "value": "2010-08-17T05:53:26.268022"}, "weight": "7.2 ounces", "title": "Opportunities in Mechanical Engineering", "identifiers": {"librarything": ["6276608"]}, "isbn_13": ["9780685189429"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0685189422"], "publish_date": "December 1987", "physical_dimensions": "7.2 x 5.5 x 0.5 inches", "key": "/books/OL11134454M", "authors": [{"key": "/authors/OL120894A"}], "latest_revision": 3, "works": [{"key": "/works/OL1197591W"}], "type": {"key": "/type/edition"}, "subjects": ["Science/Mathematics"], "first_sentence": {"type": "/type/text", "value": "In the modern world, probably no other medium has more impact on everyday life than photography."}, "revision": 3}
+/type/edition /books/OL11134537M 4 2010-04-24T18:14:52.712244 {"publishers": ["Appalachian Consortium Press"], "physical_format": "Paperback", "subtitle": "A Checklist, Purchase Guide & Directory for School & Community Libraries in Appalachia", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:14:52.712244"}, "title": "Reading, Writin, Region", "identifiers": {"goodreads": ["5696176"]}, "isbn_13": ["9780685201169"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0685201163"], "publish_date": "December 1985", "key": "/books/OL11134537M", "authors": [{"key": "/authors/OL2762512A"}], "latest_revision": 4, "works": [{"key": "/works/OL8313373W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Education", "Education / Teaching"], "revision": 4}
+/type/edition /books/OL11134707M 4 2011-05-22T00:44:09.156041 {"publishers": ["Hoover Inst Pr"], "last_modified": {"type": "/type/datetime", "value": "2011-05-22T00:44:09.156041"}, "title": "The Reactionary Character of the Socialist Conception (Lecture Ser : No L-107)", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780685230121"], "physical_format": "Paperback", "isbn_10": ["0685230120"], "publish_date": "June 1979", "key": "/books/OL11134707M", "authors": [{"key": "/authors/OL117843A"}], "latest_revision": 4, "oclc_numbers": ["232589628"], "works": [{"key": "/works/OL8299470W"}], "type": {"key": "/type/edition"}, "subjects": ["Reference"], "revision": 4}
+/type/edition /books/OL11135015M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["French & European Pubns"], "title": "Mickey Mouse et Monte Cristo", "isbn_13": ["9780685284469"], "isbn_10": ["0685284468"], "publish_date": "January 11, 1999", "key": "/books/OL11135015M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL11135172M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Amer Library Pub Co"], "title": "Chicorel Index to Poetry on Discs, Tapes and Cassettes", "isbn_13": ["9780685302279"], "isbn_10": ["068530227X"], "publish_date": "June 1972", "key": "/books/OL11135172M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL11135206M 2 2009-12-15T00:59:36.462212 {"publishers": ["McClain Printing Company"], "subtitle": "A Biography and Guide to Studies", "title": "Coal Industry in America", "isbn_10": ["0685308227"], "isbn_13": ["9780685308226"], "physical_format": "Textbook Binding", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:59:36.462212"}, "publish_date": "January 2000", "key": "/books/OL11135206M", "authors": [{"key": "/authors/OL870445A"}], "latest_revision": 2, "works": [{"key": "/works/OL4405504W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL11135229M 2 2009-12-15T00:59:36.462212 {"publishers": ["Univ of Tennessee College of"], "title": "Using Assessment to Improve Instruction (Twelfth Annual Degarmo Lecture Series)", "isbn_10": ["0685313700"], "isbn_13": ["9780685313701"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:59:36.462212"}, "publish_date": "December 1987", "key": "/books/OL11135229M", "authors": [{"key": "/authors/OL530025A"}], "latest_revision": 2, "subjects": ["Education"], "works": [{"key": "/works/OL3253830W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL1113527M 8 2022-11-14T19:05:55.038799 {"publishers": ["Blackwell Science"], "number_of_pages": 579, "isbn_10": ["0865422451"], "covers": [8544917], "lc_classifications": ["QE571 .T355 1995", "QE571.T355 1995"], "key": "/books/OL1113527M", "ocaid": "tectonicssedimen00busb_258", "publish_places": ["Cambridge, Mass., USA"], "contributions": ["Busby, Catherine.", "Ingersoll, Raymond V."], "pagination": "x, 579 p. :", "source_records": ["marc:marc_laurentian/openlibrary.mrc:594098185:617", "amazon:0865422451", "ia:tectonicssedimen00busb_258", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:146864416:738", "bwb:9780865422452", "promise:bwb_daily_pallets_2022-10-07"], "title": "Tectonics of sedimentary basins", "dewey_decimal_class": ["551.4/4"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 479-548) and index."}, "identifiers": {"goodreads": ["4975030"]}, "languages": [{"key": "/languages/eng"}], "lccn": ["94039440"], "subjects": ["Sedimentary basins.", "Geology, Structural."], "publish_date": "1995", "publish_country": "mau", "by_statement": "edited by Cathy J. Busby, Raymond V. Ingersoll.", "works": [{"key": "/works/OL19416971W"}], "type": {"key": "/type/edition"}, "local_id": ["urn:bwbsku:P8-AAL-009"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-14T19:05:55.038799"}}
+/type/edition /books/OL11135772M 4 2022-04-06T20:32:10.555669 {"publishers": ["French & European Pubns"], "physical_format": "Paperback", "title": "Nouveaux Discours du Docteur O'Grady", "identifiers": {"goodreads": ["3879215"]}, "isbn_13": ["9780685369500"], "isbn_10": ["0685369501"], "publish_date": "January 11, 1999", "key": "/books/OL11135772M", "authors": [{"key": "/authors/OL115895A"}], "type": {"key": "/type/edition"}, "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-04-06T20:32:10.555669"}}
+/type/edition /books/OL11135824M 2 2009-12-15T00:59:37.719058 {"publishers": ["French & European Pubns"], "key": "/books/OL11135824M", "title": "Prevert", "isbn_13": ["9780685370544"], "physical_format": "Paperback", "isbn_10": ["0685370542"], "publish_date": "January 11, 1999", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:59:37.719058"}, "authors": [{"key": "/authors/OL3250022A"}], "latest_revision": 2, "works": [{"key": "/works/OL9180123W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL11136151M 5 2010-08-17T05:53:26.268022 {"publishers": ["Simon & Schuster"], "languages": [{"key": "/languages/eng"}], "subtitle": "The Unquite Oblivion of Richard M. Nixon", "last_modified": {"type": "/type/datetime", "value": "2010-08-17T05:53:26.268022"}, "title": "Exile", "identifiers": {"goodreads": ["480687"], "librarything": ["1457879"]}, "isbn_13": ["9780685430651"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0685430650"], "publish_date": "October 1985", "key": "/books/OL11136151M", "authors": [{"key": "/authors/OL1009197A"}], "latest_revision": 5, "works": [{"key": "/works/OL4796061W"}], "type": {"key": "/type/edition"}, "subjects": ["Reference"], "revision": 5}
+/type/edition /books/OL11136610M 2 2009-12-08T04:01:58.192666 {"physical_format": "Paperback", "subtitle": "And Other Stories", "publishers": ["Reprint Services Corporation"], "isbn_10": ["0685513076"], "number_of_pages": 468, "isbn_13": ["9780685513071"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-08T04:01:58.192666"}, "publish_date": "March 1992", "latest_revision": 2, "key": "/books/OL11136610M", "authors": [{"key": "/authors/OL33682A"}], "title": "A New England Nun", "subjects": ["Short Stories (single author)", "Fiction - General"], "works": [{"key": "/works/OL507377W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL1113663M 9 2020-11-18T14:34:03.914266 {"publishers": ["State Historical Society of Wisconsin"], "identifiers": {"goodreads": ["3010201"], "librarything": ["8145211"]}, "subtitle": "a cultural and historical guidebook", "isbn_10": ["0870202766"], "subject_place": ["Milwaukee (Wis.)", "Wisconsin", "Milwaukee"], "covers": [3886077], "lc_classifications": ["NB235.M5 B83 1995"], "latest_revision": 9, "key": "/books/OL1113663M", "authors": [{"key": "/authors/OL588197A"}], "publish_places": ["Madison"], "contributions": ["Palmer, Virginia A."], "pagination": "xvii, 210 p. :", "source_records": ["amazon:0870202766", "bwb:9780870202766", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:146993533:970"], "title": "Outdoor sculpture in Milwaukee", "dewey_decimal_class": ["730/.9775/95"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 205-206) and index."}, "number_of_pages": 210, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["94039585"], "subjects": ["Outdoor sculpture -- Wisconsin -- Milwaukee -- Guidebooks.", "Public sculpture -- Wisconsin -- Milwaukee -- Guidebooks.", "Milwaukee (Wis.) -- Buildings, structures, etc. -- Guidebooks."], "publish_date": "1995", "publish_country": "wiu", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T14:34:03.914266"}, "by_statement": "by Diane M. Buck and Virginia A. Palmer ; foreword by Frederick I. Olson.", "oclc_numbers": ["31330146"], "works": [{"key": "/works/OL3514743W"}], "type": {"key": "/type/edition"}, "revision": 9}
+/type/edition /books/OL11136655M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "subtitle": "Tentative Draft No 11", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Amer Law Inst"], "title": "Principles of Corporate Governance: Analysis and Recommendations ", "isbn_13": ["9780685518304"], "isbn_10": ["0685518302"], "publish_date": "June 1991", "key": "/books/OL11136655M", "type": {"key": "/type/edition"}, "subjects": ["Politics/International Relations"], "revision": 1}
+/type/edition /books/OL1113672M 13 2022-02-25T14:02:19.771384 {"publishers": ["HarperCollins West"], "number_of_pages": 196, "subtitle": "a call to those who would save the earth", "ia_box_id": ["IA110918"], "subject_place": ["United States.", "United States"], "covers": [6627178], "local_id": ["urn:sfpl:31223037404853"], "lc_classifications": ["GE197 .B76 1995", "GE197.B76 1995"], "key": "/books/OL1113672M", "authors": [{"key": "/authors/OL588200A"}], "ocaid": "letmountainstalk00brow", "publish_places": ["[San Francisco, Calif.]"], "contributions": ["Chapple, Steve."], "subjects": ["Brower, David Ross, 1912-", "Environmentalism -- United States", "Green movement -- United States", "Environmentalists -- United States -- Biography"], "languages": [{"key": "/languages/eng"}], "pagination": "xii, 196 p. ;", "source_records": ["marc:marc_records_scriblio_net/part24.dat:72491656:896", "marc:marc_ithaca_college/ic_marc.mrc:139866651:1526", "ia:letmountainstalk00brow", "marc:marc_openlibraries_sanfranciscopubliclibrary/sfpl_chq_2018_12_24_run02.mrc:104287611:1735", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:147001907:901", "bwb:9780062520333"], "title": "Let the mountains talk, let the rivers run", "dewey_decimal_class": ["363.7/0525/0973"], "identifiers": {"librarything": ["606420"], "goodreads": ["2465068"]}, "edition_name": "1st ed.", "lccn": ["94039595"], "isbn_10": ["0062520334"], "publish_date": "1995", "publish_country": "cau", "by_statement": "David R. Brower with Steve Chapple.", "works": [{"key": "/works/OL3514762W"}], "type": {"key": "/type/edition"}, "latest_revision": 13, "revision": 13, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-25T14:02:19.771384"}}
+/type/edition /books/OL11136761M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Paperback", "subtitle": "Methodology by Example (Annals of Geomorphology Ser. ; Suppl. 68)", "weight": "1.2 pounds", "publishers": ["Lubrecht & Cramer Ltd"], "type": {"key": "/type/edition"}, "title": "Applied Geomorphological Mapping", "isbn_13": ["9780685531969"], "isbn_10": ["0685531961"], "publish_date": "June 1988", "key": "/books/OL11136761M", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "contributions": ["International Geographical Union (Compiler)", "E. Embleton (Editor)"], "subjects": ["Science/Mathematics"], "physical_dimensions": "10 x 7 x 0.5 inches", "revision": 1}
+/type/edition /books/OL11136843M 4 2010-04-24T18:14:52.712244 {"publishers": ["Publishers Distributing Company"], "number_of_pages": 143, "subtitle": "A Step-By-Step Guide to Getting Out of Debt in 1990s", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:14:52.712244"}, "title": "Until Debt Due Us Part", "type": {"key": "/type/edition"}, "identifiers": {"goodreads": ["4520708"]}, "isbn_13": ["9780685547304"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0685547302"], "publish_date": "January 1992", "key": "/books/OL11136843M", "authors": [{"key": "/authors/OL761726A"}], "latest_revision": 4, "works": [{"key": "/works/OL4073205W"}], "physical_format": "Paperback", "subjects": ["Finance", "Business / Economics / Finance"], "revision": 4}
+/type/edition /books/OL11136985M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Cliffs Notes"], "title": "Toefl (Cliffs Test Preparation)", "isbn_13": ["9780685576878"], "isbn_10": ["0685576876"], "publish_date": "June 1983", "key": "/books/OL11136985M", "authors": [{"key": "/authors/OL317880A"}, {"key": "/authors/OL3555145A"}], "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL11136996M 5 2011-11-04T22:13:36.453717 {"publishers": ["French & European Pubns"], "last_modified": {"type": "/type/datetime", "value": "2011-11-04T22:13:36.453717"}, "weight": "7.2 ounces", "title": "Le\\Horla Et Autres Contes Cruels et Fantastiques", "identifiers": {"goodreads": ["316182"]}, "isbn_13": ["9780685577196"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0685577198"], "publish_date": "October 1, 1976", "key": "/books/OL11136996M", "authors": [{"key": "/authors/OL29388A"}], "latest_revision": 5, "works": [{"key": "/works/OL16246124W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "6.8 x 4.3 x 0.7 inches", "revision": 5}
+/type/edition /books/OL11137062M 2 2009-12-15T00:59:37.719058 {"publishers": ["Schoenhofs Foreign Books"], "subtitle": "Dix-Huitime Siecle", "title": "Collection Litteraire", "isbn_10": ["0685583740"], "isbn_13": ["9780685583746"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:59:37.719058"}, "publish_date": "October 1986", "key": "/books/OL11137062M", "authors": [{"key": "/authors/OL3555161A"}], "latest_revision": 2, "subjects": ["Literature: Classics"], "works": [{"key": "/works/OL9552236W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL11137159M 5 2010-04-24T18:14:52.712244 {"publishers": ["AC Comics / Paragon Press"], "identifiers": {"goodreads": ["6509707"]}, "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:14:52.712244"}, "title": "Tv's Sheena Irish McCalla", "type": {"key": "/type/edition"}, "number_of_pages": 100, "isbn_13": ["9780685605769"], "isbn_10": ["0685605760"], "publish_date": "September 1992", "key": "/books/OL11137159M", "authors": [{"key": "/authors/OL513462A"}, {"key": "/authors/OL3555186A"}], "latest_revision": 5, "physical_format": "Paperback", "revision": 5}
+/type/edition /books/OL11137398M 2 2009-12-15T00:59:39.049714 {"physical_format": "Paperback", "publishers": ["Douglas Publications"], "isbn_10": ["0685652211"], "number_of_pages": 982, "isbn_13": ["9780685652213"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:59:39.049714"}, "publish_date": "April 1993", "latest_revision": 2, "key": "/books/OL11137398M", "authors": [{"key": "/authors/OL3548900A"}], "title": "RN and Wpl Encyclopedia, 1993", "subjects": ["Industries - Retailing", "Business / Economics / Finance"], "works": [{"key": "/works/OL9545245W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL11137572M 2 2009-12-15T00:59:39.049714 {"publishers": ["Professional Pr"], "subtitle": "Independent Producers", "weight": "6.4 ounces", "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:59:39.049714"}, "latest_revision": 2, "key": "/books/OL11137572M", "authors": [{"key": "/authors/OL3555281A"}], "subjects": ["Business/Economics"], "languages": [{"key": "/languages/eng"}], "title": "Film Financing", "isbn_13": ["9780685693186"], "isbn_10": ["068569318X"], "publish_date": "June 1993", "works": [{"key": "/works/OL9552374W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.5 x 5.5 x 0.2 inches", "revision": 2}
+/type/edition /books/OL1113777M 9 2022-07-22T04:39:47.137762 {"publishers": ["HarperCollins"], "table_of_contents": [{"level": 0, "title": "v. 1. To 1877", "type": {"key": "/type/toc_item"}}], "ia_box_id": ["IA118408"], "isbn_10": ["067399192X"], "subject_place": ["United States"], "pagination": "v. <1 > :", "covers": [411380], "ia_loaded_id": ["americapastprese1995divi"], "lc_classifications": ["E178.1 .A4894 1995"], "key": "/books/OL1113777M", "authors": [{"key": "/authors/OL830266A"}], "ocaid": "americapastprese1995divi", "publish_places": ["New York, NY"], "contributions": ["Divine, Robert A."], "languages": [{"key": "/languages/eng"}], "genres": ["Textbooks."], "source_records": ["marc:marc_records_scriblio_net/part24.dat:72586166:718", "marc:marc_cca/b10621386.out:20845053:757", "ia:americapastprese1995divi", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:147097356:718", "ia:americapastprese0000unse_c5j1"], "title": "America past and present", "dewey_decimal_class": ["973"], "notes": {"type": "/type/text", "value": "Includes bibliographical references and index."}, "identifiers": {"goodreads": ["3719709"], "librarything": ["708744"]}, "edition_name": "4th ed.", "lccn": ["94039705"], "subjects": ["United States -- History -- Textbooks"], "publish_date": "1995", "publish_country": "nyu", "by_statement": "Robert A. Divine ... [et al.].", "works": [{"key": "/works/OL16061021W"}], "type": {"key": "/type/edition"}, "oclc_numbers": ["31375239"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-22T04:39:47.137762"}}
+/type/edition /books/OL11137781M 4 2010-04-24T18:14:52.712244 {"publishers": ["Lrp Pubns"], "physical_format": "Paperback", "weight": "4 ounces", "title": "Employment Screening Medical Examinations Health Insurance & the Americans With Disabilities Act (Ada Practice Ser.))", "identifiers": {"goodreads": ["1720769"]}, "isbn_13": ["9780685728239"], "languages": [{"key": "/languages/eng"}], "authors": [{"key": "/authors/OL3555332A"}], "isbn_10": ["0685728234"], "publish_date": "April 1994", "key": "/books/OL11137781M", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:14:52.712244"}, "latest_revision": 4, "works": [{"key": "/works/OL9552446W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "11.5 x 8.8 x 0.2 inches", "revision": 4}
+/type/edition /books/OL11137937M 3 2010-08-17T05:54:46.834239 {"publishers": ["Franciscan Pr"], "languages": [{"key": "/languages/eng"}], "subtitle": "A Gospel for the Church", "last_modified": {"type": "/type/datetime", "value": "2010-08-17T05:54:46.834239"}, "weight": "0.8 ounces", "title": "Matthew", "identifiers": {"librarything": ["5562147"]}, "isbn_13": ["9780685775004"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Paperback", "isbn_10": ["0685775003"], "publish_date": "June 1976", "key": "/books/OL11137937M", "authors": [{"key": "/authors/OL222293A"}], "latest_revision": 3, "works": [{"key": "/works/OL1856969W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "6.1 x 4.1 x 0.2 inches", "revision": 3}
+/type/edition /books/OL11137939M 5 2010-11-23T07:47:39.981054 {"publishers": ["Silver Burdett Pr"], "languages": [{"key": "/languages/eng"}], "identifiers": {"goodreads": ["2612593"]}, "last_modified": {"type": "/type/datetime", "value": "2010-11-23T07:47:39.981054"}, "title": "Wild Herds (Time Life's Wild, Wild World of Animals)", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "physical_format": "Library Binding", "number_of_pages": 128, "edition_name": "1st edition", "isbn_13": ["9780685776971"], "isbn_10": ["0685776972"], "publish_date": "January 1977", "key": "/books/OL11137939M", "authors": [{"key": "/authors/OL1458877A"}], "latest_revision": 5, "works": [{"key": "/works/OL8313568W"}], "type": {"key": "/type/edition"}, "subjects": ["Animals", "Ungulata"], "revision": 5}
+/type/edition /books/OL11138184M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Alex M Yudkin Assoc"], "title": "Ventriloquism Made Easy", "isbn_13": ["9780686002314"], "isbn_10": ["0686002318"], "publish_date": "June 1976", "key": "/books/OL11138184M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL1113823M 5 2022-12-04T22:56:36.465007 {"publishers": ["Springer-Verlag"], "number_of_pages": 272, "subtitle": "theory and applications", "isbn_10": ["3540585311"], "series": ["Springer series in nonlinear dynamics"], "lc_classifications": ["QA380 .B54 1995"], "key": "/books/OL1113823M", "publish_places": ["Berlin", "New York"], "contributions": ["Awrejcewicz, J."], "pagination": "xii, 272 p. :", "source_records": ["marc:marc_loc_2016/BooksAll.2016.part23.utf8:147141451:738", "ia:bifurcationchaos0000unse", "promise:bwb_daily_pallets_2022-07-11"], "title": "Bifurcation and chaos", "dewey_decimal_class": ["515/.35"], "notes": {"type": "/type/text", "value": "Includes bibliographical references."}, "identifiers": {"goodreads": ["3720828"]}, "languages": [{"key": "/languages/eng"}], "lccn": ["94039751"], "subjects": ["Bifurcation theory.", "Chaotic behavior in systems."], "publish_date": "1995", "publish_country": "gw ", "by_statement": "J. Awrejcewicz, ed.", "works": [{"key": "/works/OL23536043W"}], "type": {"key": "/type/edition"}, "covers": [12909751], "ocaid": "bifurcationchaos0000unse", "local_id": ["urn:bwbsku:KQ-758-727"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T22:56:36.465007"}}
+/type/edition /books/OL11138428M 2 2009-12-15T00:59:39.049714 {"physical_format": "Paperback", "title": "Physics in Welding", "isbn_10": ["0686120027"], "publishers": ["Monticello Books"], "isbn_13": ["9780686120025"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:59:39.049714"}, "publish_date": "June 1970", "key": "/books/OL11138428M", "authors": [{"key": "/authors/OL2734142A"}], "latest_revision": 2, "works": [{"key": "/works/OL8219666W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL1113859M 10 2022-11-11T08:25:11.265331 {"publishers": ["Continuum"], "subtitle": "between yesterday and tomorrow", "isbn_10": ["0826407889"], "covers": [4743308, 3886451], "lc_classifications": ["BM565 .K7613 1995"], "key": "/books/OL1113859M", "authors": [{"key": "/authors/OL2623848A"}], "publish_places": ["New York"], "subjects": ["Judaism -- 20th century", "Judaism -- History", "Judaism -- Relations -- Christianity", "Christianity and other religions -- Judaism", "Judaism -- Essence, genius, nature"], "subject_time": ["20th century."], "pagination": "p. cm.", "source_records": ["marc:marc_records_scriblio_net/part24.dat:72660598:1005", "marc:marc_loc_updates/v37.i37.records.utf8:5068684:1007", "marc:marc_openlibraries_sanfranciscopubliclibrary/sfpl_chq_2018_12_24_run02.mrc:139363217:1872", "marc:marc_marygrove/marygrovecollegelibrary.full.D20191108.T213022.internetarchive2nd_REPACK.mrc:119998585:3045", "marc:marc_scms/20220805_ADAM_MARC_records.mrc:110104451:1773"], "title": "Judaism", "dewey_decimal_class": ["296"], "notes": {"type": "/type/text", "value": "Includes bibliographical references and indexes.\nPreviously published: New York : Crossroad, 1992, in series: The Religious situation of our time."}, "identifiers": {"goodreads": ["4365090"]}, "languages": [{"key": "/languages/eng"}], "lccn": ["94039788"], "local_id": ["urn:sfpl:31223040645401", "urn:mgc:31927000492980", "urn:scms:0188500197291"], "publish_date": "1995", "publish_country": "nyu", "work_title": ["Judentum."], "by_statement": "Hans Ku\u0308ng ; [translated by John Bowden from the German].", "oclc_numbers": ["31409324"], "works": [{"key": "/works/OL1319328W"}], "type": {"key": "/type/edition"}, "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-11T08:25:11.265331"}}
+/type/edition /books/OL11138685M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Walter De Gruyter Inc"], "title": "Cahiers Du Monde Russe Et Sovietique Numero", "isbn_13": ["9780686209133"], "isbn_10": ["0686209133"], "publish_date": "July 1974", "key": "/books/OL11138685M", "type": {"key": "/type/edition"}, "subjects": ["History: World"], "revision": 1}
+/type/edition /books/OL11138701M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Brooklyn Botanic Garden"], "title": "Handbook of Annuals", "isbn_13": ["9780686211662"], "isbn_10": ["0686211669"], "publish_date": "December 1960", "key": "/books/OL11138701M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL11138924M 5 2010-04-24T18:14:52.712244 {"publishers": ["Clawson Printing Co"], "physical_format": "Paperback", "subtitle": "A Card Game for Everyone", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:14:52.712244"}, "title": "How to Play Five Point Pitch", "identifiers": {"goodreads": ["2246226"]}, "isbn_13": ["9780686280699"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0686280695"], "publish_date": "August 1980", "key": "/books/OL11138924M", "authors": [{"key": "/authors/OL2331982A"}], "latest_revision": 5, "works": [{"key": "/works/OL7599936W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL11138953M 4 2010-04-24T18:14:52.712244 {"publishers": ["Graduate School of Public"], "subtitle": "What Place in Education", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:14:52.712244"}, "title": "Teacher Centers", "identifiers": {"goodreads": ["1778959"]}, "isbn_13": ["9780686290353"], "physical_format": "Paperback", "isbn_10": ["0686290356"], "publish_date": "June 1980", "key": "/books/OL11138953M", "authors": [{"key": "/authors/OL3555752A"}], "latest_revision": 4, "works": [{"key": "/works/OL9552916W"}], "type": {"key": "/type/edition"}, "subjects": ["Education"], "revision": 4}
+/type/edition /books/OL11139749M 2 2009-12-15T00:59:40.380283 {"publishers": ["French & European Pubns"], "key": "/books/OL11139749M", "title": "La\\Legende de Prakhriti Ossements. Le Bestiaire Spirituel", "isbn_13": ["9780686543985"], "physical_format": "Paperback", "isbn_10": ["068654398X"], "publish_date": "October 1, 1972", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:59:40.380283"}, "authors": [{"key": "/authors/OL113600A"}], "latest_revision": 2, "works": [{"key": "/works/OL1098913W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL11139795M 2 2009-12-15T00:59:40.380283 {"publishers": ["French & European Pubns"], "key": "/books/OL11139795M", "title": "Une\\Histoire Modele", "isbn_13": ["9780686546740"], "physical_format": "Paperback", "isbn_10": ["0686546741"], "publish_date": "October 1, 1966", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:59:40.380283"}, "authors": [{"key": "/authors/OL139769A"}], "latest_revision": 2, "works": [{"key": "/works/OL1364474W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL11139947M 5 2010-07-17T00:38:43.181688 {"publishers": ["French & European Pubns"], "source_records": ["amazon:0686557573"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_10": ["0686557573"], "identifiers": {"goodreads": ["3166751"]}, "isbn_13": ["9780686557579"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-07-17T00:38:43.181688"}, "publish_date": "January 11, 1999", "key": "/books/OL11139947M", "authors": [{"key": "/authors/OL32293A"}], "title": "Oeuvres Completes 1877-1885, 52 Volumes", "latest_revision": 5, "works": [{"key": "/works/OL15228292W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL11140019M 5 2011-12-06T22:21:25.892938 {"publishers": ["French & European Pubns"], "last_modified": {"type": "/type/datetime", "value": "2011-12-06T22:21:25.892938"}, "title": "La\\Vie des Abeilles", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780686562931"], "physical_format": "Paperback", "isbn_10": ["0686562933"], "publish_date": "January 11, 1999", "key": "/books/OL11140019M", "authors": [{"key": "/authors/OL4334838A"}], "latest_revision": 5, "works": [{"key": "/works/OL734341W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL11140720M 2 2009-12-15T00:59:41.745233 {"publishers": ["Amer Society for Testing &"], "title": "Disposal of Oil and Debris Resulting from a Spill Cleanup Operation. Ed by J.S. Farlow. Papers from Symp Held in Nov 1978 (147P)#(American Society for", "isbn_10": ["0686760980"], "isbn_13": ["9780686760986"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:59:41.745233"}, "publish_date": "March 1980", "key": "/books/OL11140720M", "authors": [{"key": "/authors/OL3556130A"}], "latest_revision": 2, "subjects": ["Petroleum Engineering (Specific Aspects)", "Waste Disposal And Treatment", "Congresses", "Environmental aspects", "Oil spills", "Petroleum waste"], "works": [{"key": "/works/OL9553364W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL11140879M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Newberry Library Bookstore"], "title": "Urban Indians", "isbn_13": ["9780686813460"], "isbn_10": ["0686813464"], "publish_date": "June 1981", "key": "/books/OL11140879M", "type": {"key": "/type/edition"}, "subjects": ["Sociology"], "revision": 1}
+/type/edition /books/OL11140900M 2 2011-04-25T20:53:23.300661 {"publishers": ["Ardis"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2011-04-25T20:53:23.300661"}, "title": "Russian Symbolist Theater an Anthology of Plays and Critical Texts", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780686822257"], "physical_format": "Hardcover", "isbn_10": ["0686822250"], "publish_date": "June 1985", "key": "/books/OL11140900M", "latest_revision": 2, "oclc_numbers": ["234292787"], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL11141429M 4 2010-08-17T05:54:46.834239 {"publishers": ["Abingdon Press"], "weight": "3.4 ounces", "covers": [2548584], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-08-17T05:54:46.834239"}, "latest_revision": 4, "key": "/books/OL11141429M", "authors": [{"key": "/authors/OL2630194A"}], "subjects": ["Christian Church - Church Administration - Program Resources", "Christianity - Church Admin. - Program Resources", "Church Supplies"], "isbn_13": ["9780687003471"], "source_records": ["amazon:0687003474"], "title": "Abingdon's Christmas Recitations", "identifiers": {"librarything": ["3251019"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0687003474"], "publish_date": "September 1985", "works": [{"key": "/works/OL275443W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "9 x 6 x 0.2 inches", "revision": 4}
+/type/edition /books/OL11141619M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Abingdon Press"], "title": "Good Friday Into Your Hands Bulletin, Regular Size (Package of 50) (New Lent/Easter 2003 Bulletins)", "isbn_13": ["9780687020461"], "isbn_10": ["0687020468"], "publish_date": "December 2002", "key": "/books/OL11141619M", "type": {"key": "/type/edition"}, "subjects": ["Christian Church - Church Administration - Program Resources", "Holidays - Christian", "Church Supplies"], "revision": 1}
+/type/edition /books/OL11141835M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Paperback", "weight": "1 pounds", "publishers": ["Abingdon Pr"], "title": "Zacchaeus (Powerxpress)", "isbn_13": ["9780687039500"], "isbn_10": ["0687039509"], "publish_date": "March 2006", "key": "/books/OL11141835M", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "type": {"key": "/type/edition"}, "subjects": ["Religion - Biblical Studies", "Religion - General", "Juvenile Nonfiction", "Children: Grades 4-6"], "physical_dimensions": "10.8 x 8.5 x 0.5 inches", "revision": 1}
+/type/edition /books/OL11142014M 5 2019-01-12T16:48:09.909951 {"publishers": ["Dimensions for Living"], "identifiers": {"librarything": ["5882619"]}, "weight": "1.6 ounces", "covers": [8340049], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2019-01-12T16:48:09.909951"}, "latest_revision": 5, "key": "/books/OL11142014M", "authors": [{"key": "/authors/OL2762600A"}], "ocaid": "simplepleasuresf0000unse", "subjects": ["Holidays - Christmas", "Inspirational", "Religion"], "isbn_13": ["9780687055906"], "source_records": ["ia:simplepleasuresf0000unse"], "title": "Simple Pleasures for Christmas (Simple Pleasures Series)", "number_of_pages": 64, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0687055903"], "publish_date": "August 1996", "oclc_numbers": ["35632469"], "works": [{"key": "/works/OL8313867W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "6.2 x 4 x 0.2 inches", "revision": 5}
+/type/edition /books/OL11142475M 2 2011-04-29T14:31:59.508099 {"publishers": ["Recorded Books, LLC"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2011-04-29T14:31:59.508099"}, "title": "Freddy Goes to Florida (Unabridged Audiocassettes)", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780788720642"], "physical_format": "Audio Cassette", "isbn_10": ["0788720643"], "publish_date": "1998", "key": "/books/OL11142475M", "latest_revision": 2, "oclc_numbers": ["39274342"], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL11142519M 5 2011-04-27T10:04:45.586918 {"publishers": ["Recorded Books"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T10:04:45.586918"}, "title": "Across America on an Emigrant Train, Homework Set", "identifiers": {"goodreads": ["6081710"]}, "isbn_13": ["9780788722721"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0788722727"], "publish_date": "September 1998", "key": "/books/OL11142519M", "authors": [{"key": "/authors/OL2656138A"}], "latest_revision": 5, "oclc_numbers": ["40457452"], "works": [{"key": "/works/OL7962218W"}], "type": {"key": "/type/edition"}, "subjects": ["Biography & Autobiography - Literary", "History - United States/19th Century", "Transportation - Railroads & Trains", "Children's Books/Ages 9-12 Nonfiction"], "revision": 5}
+/type/edition /books/OL11142555M 2 2011-04-29T04:40:50.471366 {"publishers": ["Recorded Books"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2011-04-29T04:40:50.471366"}, "title": "Whistle Me Home", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780788726330"], "physical_format": "Audio Cassette", "isbn_10": ["0788726331"], "publish_date": "1998", "key": "/books/OL11142555M", "latest_revision": 2, "oclc_numbers": ["40327658"], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL11142674M 5 2011-04-29T12:13:25.119719 {"publishers": ["Recorded Books"], "subtitle": "The Accelerating Pace of Human Evolution", "edition_name": "Unabridged edition", "physical_format": "Audio Cassette", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T12:13:25.119719"}, "latest_revision": 5, "key": "/books/OL11142674M", "authors": [{"key": "/authors/OL246482A"}], "contributions": ["Richard M Davidson (Narrator)"], "isbn_13": ["9780788735950"], "title": "Children of Prometheus ", "identifiers": {"goodreads": ["3187402"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0788735950"], "publish_date": "1999", "oclc_numbers": ["42189151"], "works": [{"key": "/works/OL2037163W"}], "type": {"key": "/type/edition"}, "revision": 5}
+/type/edition /books/OL11142703M 2 2011-04-27T20:38:20.964818 {"publishers": ["Recorded Books"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2011-04-27T20:38:20.964818"}, "title": "There Is a Girl in My Hammerlock", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780788738272"], "edition_name": "UNABRIDGED edition", "physical_format": "Audio Cassette", "isbn_10": ["0788738275"], "publish_date": "August 2000", "key": "/books/OL11142703M", "latest_revision": 2, "oclc_numbers": ["42909827"], "type": {"key": "/type/edition"}, "subjects": ["General", "Juvenile Fiction", "Audio: Juvenile"], "revision": 2}
+/type/edition /books/OL11142833M 9 2021-10-23T12:20:17.636776 {"classifications": {}, "title": "All That Remains", "notes": {"type": "/type/text", "value": "Audio CD\r\n[UNABRIDGED]"}, "identifiers": {"librarything": ["49895"], "goodreads": ["1384856"]}, "physical_format": "Audio CD", "isbn_10": ["0788749056"], "key": "/books/OL11142833M", "authors": [{"key": "/authors/OL21976A"}], "works": [{"key": "/works/OL15081098W"}], "type": {"key": "/type/edition"}, "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2021-10-23T12:20:17.636776"}}
+/type/edition /books/OL11143160M 3 2011-04-26T22:46:39.053427 {"publishers": ["Dimension Home Video"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-26T22:46:39.053427"}, "title": "Paid in Full", "number_of_pages": 97, "isbn_13": ["9780788845475"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0788845470"], "publish_date": "January 2003", "key": "/books/OL11143160M", "authors": [{"key": "/authors/OL3525692A"}], "latest_revision": 3, "oclc_numbers": ["51940733"], "works": [{"key": "/works/OL9518474W"}], "type": {"key": "/type/edition"}, "subjects": ["Film & Video - General", "Pop Arts / Pop Culture"], "revision": 3}
+/type/edition /books/OL11143454M 7 2020-12-05T21:26:05.621886 {"publishers": ["Perfection Learning"], "identifiers": {"goodreads": ["4275539"], "librarything": ["5501022"]}, "subtitle": "Moments in History (Cover-To-Cover Books)", "covers": [5101917], "physical_format": "Paperback", "key": "/books/OL11143454M", "authors": [{"key": "/authors/OL1400502A"}], "subjects": ["Latin America - Central America", "History - General History"], "isbn_13": ["9780789154392"], "title": "The Mayan Civilization", "number_of_pages": 64, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0789154390"], "publish_date": "January 2001", "works": [{"key": "/works/OL5755996W"}], "type": {"key": "/type/edition"}, "lccn": ["2002275131"], "lc_classifications": ["F1435 .J77 2001"], "source_records": ["marc:marc_loc_2016/BooksAll.2016.part29.utf8:231106145:809"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-05T21:26:05.621886"}}
+/type/edition /books/OL11143574M 6 2011-04-22T19:53:26.068740 {"publishers": ["Perfection Learning (Sd)"], "identifiers": {"librarything": ["3599090"], "goodreads": ["2954194"]}, "weight": "1.3 ounces", "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-22T19:53:26.068740"}, "latest_revision": 6, "key": "/books/OL11143574M", "authors": [{"key": "/authors/OL1389620A"}], "subjects": ["Science & Nature - Anatomy & Physiology", "Juvenile Nonfiction", "Brain", "Juvenile literature", "Nerves", "Children: Grades 3-4"], "languages": [{"key": "/languages/eng"}], "title": "The Brain and Nerves (Human Body Basics)", "number_of_pages": 24, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780789166296"], "isbn_10": ["0789166291"], "publish_date": "January 3, 2006", "oclc_numbers": ["70069977"], "works": [{"key": "/works/OL5713184W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.8 x 7 x 0.2 inches", "revision": 6}
+/type/edition /books/OL11144139M 6 2011-04-27T03:54:01.151181 {"publishers": ["Dorling Kindersley Publishing"], "languages": [{"key": "/languages/eng"}], "identifiers": {"goodreads": ["737024"]}, "last_modified": {"type": "/type/datetime", "value": "2011-04-27T03:54:01.151181"}, "title": "S-P B Bears Birthday Party (Mac)", "physical_format": "Unknown Binding", "number_of_pages": 1, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780789400970"], "isbn_10": ["0789400979"], "publish_date": "December 1997", "key": "/books/OL11144139M", "authors": [{"key": "/authors/OL2655350A"}], "latest_revision": 6, "oclc_numbers": ["33978982"], "works": [{"key": "/works/OL8214010W"}], "type": {"key": "/type/edition"}, "subjects": ["General", "Children's Books/Baby-Preschool"], "revision": 6}
+/type/edition /books/OL11144225M 4 2011-04-29T12:13:25.119719 {"publishers": ["DK Preschool"], "subtitle": "Baby Faces", "weight": "4.8 ounces", "covers": [2631644], "physical_format": "Board book", "last_modified": {"type": "/type/datetime", "value": "2011-04-29T12:13:25.119719"}, "latest_revision": 4, "key": "/books/OL11144225M", "authors": [{"key": "/authors/OL2655350A"}], "subjects": ["Social Situations - Emotions & Feelings", "Children's Books/Baby-Preschool", "Children: Babies & Toddlers"], "languages": [{"key": "/languages/eng"}], "title": "Block Books", "number_of_pages": 20, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780789406224"], "isbn_10": ["0789406225"], "publish_date": "April 1, 1996", "oclc_numbers": ["35095562"], "works": [{"key": "/works/OL7960468W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "0.2 x 0.2 x 0.2 inches", "revision": 4}
+/type/edition /books/OL11144342M 4 2010-04-24T18:14:52.712244 {"publishers": ["DK MULTIMEDIA"], "subtitle": "Eyewitness Virtual Reality Cat CD-ROM and Video", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:14:52.712244"}, "title": "Eyewitness Cat Gift Pack", "identifiers": {"goodreads": ["2485774"]}, "isbn_13": ["9780789410467"], "physical_format": "CD-ROM", "isbn_10": ["078941046X"], "publish_date": "March 15, 1996", "key": "/books/OL11144342M", "authors": [{"key": "/authors/OL2655350A"}], "latest_revision": 4, "works": [{"key": "/works/OL7958449W"}], "type": {"key": "/type/edition"}, "subjects": ["Nature / Cats", "NOT AVAILABLE/MEM REQ: 4m", "OUT OF PRINT"], "revision": 4}
+/type/edition /books/OL11144471M 3 2010-04-13T06:26:02.837391 {"publishers": ["DK CHILDREN"], "languages": [{"key": "/languages/eng"}], "subtitle": "Detective Fun File", "weight": "3.4 ounces", "title": "Fun Files", "isbn_10": ["0789417863"], "isbn_13": ["9780789417862"], "covers": [5101911], "edition_name": "Spiral edition", "physical_format": "Spiral-bound", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:26:02.837391"}, "latest_revision": 3, "key": "/books/OL11144471M", "authors": [{"key": "/authors/OL2655350A"}], "publish_date": "May 1, 1997", "works": [{"key": "/works/OL7960474W"}], "type": {"key": "/type/edition"}, "subjects": ["Crafts & Hobbies", "General", "Juvenile Nonfiction / Games & Activities / General", "Games & Activities - General", "Juvenile Nonfiction", "Children's 9-12"], "physical_dimensions": "6.3 x 4.5 x 0.4 inches", "revision": 3}
+/type/edition /books/OL11144480M 9 2018-05-20T05:08:14.571787 {"publishers": ["DK CHILDREN"], "identifiers": {"goodreads": ["3028480"], "librarything": ["3161910"]}, "weight": "2.1 ounces", "isbn_10": ["0789418339"], "covers": [5102012], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2018-05-20T05:08:14.571787"}, "latest_revision": 9, "key": "/books/OL11144480M", "authors": [{"key": "/authors/OL2655350A"}], "ocaid": "gruesomehistorie0000maye", "isbn_13": ["9780789418333"], "classifications": {}, "source_records": ["ia:gruesomehistorie0000maye"], "title": "Gruesome Histories", "notes": {"type": "/type/text", "value": "Funfax"}, "number_of_pages": 48, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "subjects": ["Culture & customs", "Hobbies, quizzes & games", "General", "History - General", "Juvenile Nonfiction / Games & Activities / General", "Games & Activities - General", "Holidays & Celebrations - Halloween", "Juvenile Nonfiction", "Children's 9-12"], "publish_date": "June 1, 1997", "oclc_numbers": ["48215944"], "works": [{"key": "/works/OL7958743W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "7 x 4.2 x 0.2 inches", "revision": 9}
+/type/edition /books/OL11144497M 3 2010-04-13T06:26:02.837391 {"publishers": ["DK CHILDREN"], "number_of_pages": 12, "weight": "0.2 ounces", "languages": [{"key": "/languages/eng"}], "isbn_10": ["0789418576"], "title": "Secret Messages (Microfax Spy Books)", "isbn_13": ["9780789418579"], "covers": [5101940], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:26:02.837391"}, "latest_revision": 3, "key": "/books/OL11144497M", "authors": [{"key": "/authors/OL2655350A"}], "publish_date": "March 1, 1997", "works": [{"key": "/works/OL7959571W"}], "type": {"key": "/type/edition"}, "subjects": ["Crafts & Hobbies", "General", "Juvenile Nonfiction / Games & Activities / General", "Games & Activities - General", "Law & Crime", "Juvenile Nonfiction", "Children's 9-12"], "physical_dimensions": "3.3 x 2.2 x 0.1 inches", "revision": 3}
+/type/edition /books/OL1114458M 8 2020-11-18T14:45:02.772281 {"publishers": ["Ohio University Press"], "identifiers": {"goodreads": ["3758527"]}, "subtitle": "punishment and forgiveness", "isbn_10": ["0821411179"], "subject_place": ["England"], "covers": [3885942], "lc_classifications": ["PR4592.P76 R44 1995"], "latest_revision": 8, "key": "/books/OL1114458M", "authors": [{"key": "/authors/OL526672A"}], "ocaid": "dickensthackeray0000reed", "publish_places": ["Athens"], "subject_time": ["19th century.", "19th century"], "pagination": "xvi, 504 p. ;", "source_records": ["amazon:0821411179", "ia:dickensthackeray0000reed", "bwb:9780821411179", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:147713203:1230"], "title": "Dickens and Thackeray", "dewey_decimal_class": ["823/.809353"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. 482-496) and index."}, "number_of_pages": 504, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["94040416"], "subjects": ["Dickens, Charles, 1812-1870 -- Criticism and interpretation.", "Thackeray, William Makepeace, 1811-1863 -- Criticism and interpretation.", "Thackeray, William Makepeace, 1811-1863 -- Ethics.", "Dickens, Charles, 1812-1870 -- Ethics.", "Punishment in literature.", "Literature and society -- England -- History -- 19th century.", "English fiction -- 19th century -- History and criticism.", "Didactic fiction, English -- History and criticism.", "Forgiveness in literature."], "publish_date": "1995", "publish_country": "ohu", "last_modified": {"type": "/type/datetime", "value": "2020-11-18T14:45:02.772281"}, "by_statement": "John R. Reed.", "works": [{"key": "/works/OL3232729W"}], "type": {"key": "/type/edition"}, "revision": 8}
+/type/edition /books/OL11144613M 6 2011-04-25T16:20:27.877721 {"publishers": ["DK CHILDREN"], "weight": "5.6 ounces", "covers": [2631815], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-25T16:20:27.877721"}, "latest_revision": 6, "key": "/books/OL11144613M", "authors": [{"key": "/authors/OL2655350A"}], "subjects": ["Juvenile Nonfiction / Games & Activities / General", "Games & Activities - General", "Juvenile Nonfiction", "Children's 4-8 - Games / Gamebooks", "Children: Grades 3-4"], "languages": [{"key": "/languages/eng"}], "title": "Chinese Jump Rope (FUNPAX)", "identifiers": {"goodreads": ["2300328"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780789430199"], "isbn_10": ["0789430193"], "publish_date": "March 15, 1998", "oclc_numbers": ["42243304"], "works": [{"key": "/works/OL7958088W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "11.2 x 9 x 0.8 inches", "revision": 6}
+/type/edition /books/OL1114465M 10 2011-10-27T16:41:43.604780 {"publishers": ["Chelsea House Publishers"], "subtitle": "District of Columbia, Virginia, West Virginia", "ia_box_id": ["IA136322"], "isbn_10": ["0791034003", "0791034186"], "subject_place": ["South Atlantic States", "Middle Atlantic States", "Virginia", "West Virginia", "Washington (D.C.)", "Atlantic States.", "Virginia.", "West Virginia."], "covers": [4739645, 3886237, 1489682], "lc_classifications": ["F209.3 .A94 1996"], "latest_revision": 10, "key": "/books/OL1114465M", "authors": [{"key": "/authors/OL458705A"}], "ocaid": "atlanticdistrict00ayle", "publish_places": ["New York"], "contributions": ["Aylesworth, Virginia L."], "pagination": "p. cm.", "source_records": ["marc:marc_records_scriblio_net/part24.dat:73207776:1253", "marc:marc_loc_updates/v37.i38.records.utf8:6282842:1253", "ia:atlanticdistrict00ayle"], "title": "Atlantic", "dewey_decimal_class": ["975"], "notes": {"type": "/type/text", "value": "Includes bibliographical references (p. ) and index."}, "identifiers": {"librarything": ["3103136"], "goodreads": ["2283717"]}, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "languages": [{"key": "/languages/eng"}], "lccn": ["94040423"], "subjects": ["South Atlantic States -- Juvenile literature", "Middle Atlantic States -- Juvenile literature", "Virginia -- Juvenile literature", "West Virginia -- Juvenile literature", "Washington (D.C.) -- Juvenile literature", "Atlantic States", "Virginia", "West Virginia", "Washington (D.C.)"], "publish_date": "1996", "publish_country": "nyu", "last_modified": {"type": "/type/datetime", "value": "2011-10-27T16:41:43.604780"}, "series": ["State studies"], "by_statement": "by Thomas G. Aylesworth, Virginia L. Aylesworth.", "works": [{"key": "/works/OL2993486W"}], "type": {"key": "/type/edition"}, "revision": 10}
+/type/edition /books/OL11144729M 3 2011-04-27T21:35:52.365426 {"publishers": ["Dorling Kindersley"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T21:35:52.365426"}, "title": "Mig The Superstar Pig A Rhyme and Read Story", "identifiers": {"librarything": ["3721418"]}, "isbn_13": ["9780789437884"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0789437880"], "publish_date": "1998", "key": "/books/OL11144729M", "latest_revision": 3, "oclc_numbers": ["40569035"], "type": {"key": "/type/edition"}, "revision": 3}
+/type/edition /books/OL11144824M 3 2010-04-13T06:26:02.837391 {"publishers": ["DK CHILDREN"], "languages": [{"key": "/languages/eng"}], "subtitle": "Friendship #1 (Pack of 12)", "weight": "4.2 ounces", "title": "Micro Sticker Strips", "isbn_10": ["0789444097"], "isbn_13": ["9780789444097"], "covers": [2631917], "edition_name": "Ppk edition", "physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2010-04-13T06:26:02.837391"}, "latest_revision": 3, "key": "/books/OL11144824M", "authors": [{"key": "/authors/OL2655350A"}], "publish_date": "February 1, 1999", "works": [{"key": "/works/OL7960527W"}], "type": {"key": "/type/edition"}, "subjects": ["Non-Classifiable", "Juvenile Nonfiction / Games & Activities / General", "Games & Activities - General", "Juvenile Nonfiction", "Children's 4-8 - Stationary / Gift Wrap", "Children: Grades 1-2"], "physical_dimensions": "8.5 x 2.1 x 0.6 inches", "revision": 3}
+/type/edition /books/OL1114495M 12 2021-10-22T04:04:08.086596 {"publishers": ["Time-Life Books", "School and library distribution by Time-Life Education"], "identifiers": {"goodreads": ["75227"], "librarything": ["1241439"]}, "ia_box_id": ["IA119204"], "series": ["The Time Life complete gardener"], "covers": [12171597, 6533431], "key": "/books/OL1114495M", "publish_places": ["Alexandria, Va", "Richmond, Va"], "contributions": ["Time-Life Books."], "pagination": "168 p. :", "source_records": ["marc:marc_records_scriblio_net/part24.dat:73237347:1032", "marc:CollingswoodLibraryMarcDump10-27-2008/Collingswood.out:15120358:1871", "ia:lowmaintenancega00time", "marc:marc_loc_2016/BooksAll.2016.part23.utf8:147742880:1032"], "title": "Low Maintenance Gardening", "notes": "Includes bibliographical references (p. 163-164) and index.", "number_of_pages": 168, "languages": [{"key": "/languages/eng"}], "subjects": ["Landscape gardening", "Low maintenance gardening", "Plants, Ornamental", "Landscape gardening -- United States", "Low maintenance gardening -- United States", "Plants, Ornamental -- United States"], "publish_date": "1995", "publish_country": "vau", "subject_place": ["United States."], "by_statement": "by the editors of Time-Life Books.", "works": [{"key": "/works/OL16476473W"}], "type": {"key": "/type/edition"}, "ocaid": "lowmaintenancega00time", "isbn_10": ["0783541015"], "lccn": ["94040455"], "oclc_numbers": ["31376189"], "classifications": {}, "dewey_decimal_class": ["635.9"], "lc_classifications": ["SB473 .L69 1995"], "latest_revision": 12, "revision": 12, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2021-10-22T04:04:08.086596"}}
+/type/edition /books/OL11145329M 2 2009-12-15T00:59:44.914978 {"physical_format": "Paperback", "publishers": ["DK Publishing (Dorling Kindersley)"], "isbn_10": ["0789493683"], "number_of_pages": 400, "isbn_13": ["9780789493682"], "languages": [{"key": "/languages/eng"}], "last_modified": {"type": "/type/datetime", "value": "2009-12-15T00:59:44.914978"}, "publish_date": "August 2003", "latest_revision": 2, "key": "/books/OL11145329M", "authors": [{"key": "/authors/OL3556646A"}], "title": "Birds", "subjects": ["Birds & Birdwatching - General", "Animals"], "works": [{"key": "/works/OL9553911W"}], "type": {"key": "/type/edition"}, "revision": 2}
+/type/edition /books/OL11145419M 4 2010-04-24T18:14:52.712244 {"publishers": ["Thomson Learning"], "number_of_pages": 448, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_10": ["0789511711"], "identifiers": {"goodreads": ["5319127"]}, "isbn_13": ["9780789511713"], "physical_format": "Unknown Binding", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:14:52.712244"}, "publish_date": "September 1996", "key": "/books/OL11145419M", "authors": [{"key": "/authors/OL62134A"}, {"key": "/authors/OL1776719A"}, {"key": "/authors/OL2078721A"}], "title": "Microsoft Works for Windows 95 for the Short Course", "latest_revision": 4, "works": [{"key": "/works/OL15028671W"}], "type": {"key": "/type/edition"}, "revision": 4}
+/type/edition /books/OL11145568M 5 2010-12-25T03:12:05.996103 {"publishers": ["Course Technology Ptr (Sd)"], "subtitle": "World Wide Web Enhanced", "weight": "6 pounds", "covers": [5102129], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2010-12-25T03:12:05.996103"}, "latest_revision": 5, "key": "/books/OL11145568M", "authors": [{"key": "/authors/OL62134A"}, {"key": "/authors/OL1776719A"}, {"key": "/authors/OL1012959A"}, {"key": "/authors/OL2871256A"}], "subjects": ["General", "Computers", "Computer Books: General"], "edition_name": "Package edition", "languages": [{"key": "/languages/eng"}], "title": "Discovering Computers 98: A Link to the Future ", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780789578334"], "isbn_10": ["0789578336"], "publish_date": "June 1990", "works": [{"key": "/works/OL15028734W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "11 x 8.8 x 2 inches", "revision": 5}
+/type/edition /books/OL11145691M 4 2010-04-24T18:14:52.712244 {"publishers": ["Que"], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2010-04-24T18:14:52.712244"}, "title": "Office Max - Using Quicken 4 Windows", "identifiers": {"goodreads": ["4445970"]}, "isbn_13": ["9780789707017"], "languages": [{"key": "/languages/eng"}], "isbn_10": ["0789707012"], "publish_date": "October 1994", "key": "/books/OL11145691M", "authors": [{"key": "/authors/OL3103053A"}], "latest_revision": 4, "works": [{"key": "/works/OL8954867W"}], "type": {"key": "/type/edition"}, "subjects": ["Financial Applications", "Computer Bks - Accounting Packages"], "revision": 4}
+/type/edition /books/OL11145733M 1 2008-04-30T09:38:13.731961 {"languages": [{"key": "/languages/eng"}], "physical_format": "Hardcover", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Que"], "title": "10 Minute Guide to Lotus SmartSuite Plus with Organizer for Windows 95", "isbn_13": ["9780789710116"], "isbn_10": ["0789710110"], "publish_date": "May 1997", "key": "/books/OL11145733M", "type": {"key": "/type/edition"}, "revision": 1}
+/type/edition /books/OL11146140M 5 2020-05-21T14:21:38.838644 {"publishers": ["Editorial Unlimited"], "identifiers": {"goodreads": ["2950290"]}, "subtitle": "Life is An Attitude", "weight": "10.9 ounces", "isbn_10": ["0789904586"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2020-05-21T14:21:38.838644"}, "latest_revision": 5, "key": "/books/OL11146140M", "authors": [{"key": "/authors/OL2749110A"}, {"key": "/authors/OL382664A"}, {"key": "/authors/OL2879899A"}], "contributions": ["Heagy (Translator)"], "languages": [{"key": "/languages/spa"}], "classifications": {}, "title": "Actitud ante La Vida", "number_of_pages": 260, "isbn_13": ["9780789904584"], "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "edition_name": "1 edition", "subjects": ["Christianity - Christian Life - General", "Religion - Christian Life"], "publish_date": "May 1, 1998", "by_statement": "con Donita Dyer", "oclc_numbers": ["47828486"], "works": [{"key": "/works/OL20779873W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.3 x 5.5 x 0.7 inches", "revision": 5}
+/type/edition /books/OL11146409M 7 2011-04-27T01:07:41.816401 {"publishers": ["Editorial Unilit"], "number_of_pages": 305, "weight": "12 ounces", "covers": [5102161], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2011-04-27T01:07:41.816401"}, "latest_revision": 7, "key": "/books/OL11146409M", "authors": [{"key": "/authors/OL254868A"}], "subjects": ["Christian Life - General", "Religion", "Spanish: Adult Nonfiction"], "isbn_13": ["9780789912428"], "title": "El Clamor de mi corazon", "identifiers": {"librarything": ["8033206"], "goodreads": ["1531543"]}, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "languages": [{"key": "/languages/spa"}], "isbn_10": ["0789912422"], "publish_date": "June 30, 2005", "oclc_numbers": ["62112475"], "works": [{"key": "/works/OL2078389W"}], "type": {"key": "/type/edition"}, "physical_dimensions": "8.1 x 5.4 x 0.8 inches", "revision": 7}
+/type/edition /books/OL11146672M 6 2022-11-16T22:12:19.719162 {"publishers": ["Rigby"], "physical_format": "Paperback", "key": "/books/OL11146672M", "authors": [{"key": "/authors/OL2753600A"}], "subjects": ["General", "English language", "Juvenile literature", "Numbers", "Readers (Primary)", "Textbooks for foreign speakers", "Textbooks"], "isbn_13": ["9780790101811"], "classifications": {}, "title": "Stg 4a Numerals Is", "notes": {"type": "/type/text", "value": "Literacy 2000 Stage 4"}, "identifiers": {"librarything": ["5554673"]}, "languages": [{"key": "/languages/eng"}], "isbn_10": ["0790101815"], "publish_date": "December 1990", "oclc_numbers": ["31124777"], "works": [{"key": "/works/OL8275103W"}], "type": {"key": "/type/edition"}, "source_records": ["amazon:0790101815"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-16T22:12:19.719162"}}
+/type/edition /books/OL11146798M 1 2008-04-30T09:38:13.731961 {"physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "publishers": ["Shortland Publications"], "title": "Nests (Literacy Links Plus Guided Readers Emergent)", "isbn_13": ["9780790105277"], "isbn_10": ["0790105276"], "publish_date": "January 1, 2001", "key": "/books/OL11146798M", "type": {"key": "/type/edition"}, "subjects": ["English language readers"], "revision": 1}
+/type/edition /books/OL11146803M 2 2019-07-31T12:41:56.046137 {"publishers": ["Shortland Publications"], "physical_format": "Paperback", "last_modified": {"type": "/type/datetime", "value": "2019-07-31T12:41:56.046137"}, "title": "Yellow (Literacy Links Plus Guided Readers Emergent)", "created": {"type": "/type/datetime", "value": "2008-04-30T09:38:13.731961"}, "isbn_13": ["9780790105352"], "isbn_10": ["0790105357"], "publish_date": "January 1, 2001", "key": "/books/OL11146803M", "latest_revision": 2, "works": [{"key": "/works/OL11404601W"}], "type": {"key": "/type/edition"}, "subjects": ["English language readers"], "revision": 2}
diff --git a/data/unprocessed/ol_dump_works b/data/unprocessed/ol_dump_works
new file mode 100644
index 0000000..ff0a3b8
--- /dev/null
+++ b/data/unprocessed/ol_dump_works
@@ -0,0 +1,7999 @@
+/type/work /works/OL10000077W 7 2021-08-13T09:02:17.282451 {"title": "Classic garden style", "subjects": ["Floral decorations", "Garden ornaments and furniture", "Decoration and ornament", "Garden structures", "Jardins", "Meubles et ornements", "Antiquit\u00e9s (Objets anciens)"], "key": "/works/OL10000077W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL3965042A"}}], "type": {"key": "/type/work"}, "covers": [11604950], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2009-12-11T01:57:19.964652"}, "last_modified": {"type": "/type/datetime", "value": "2021-08-13T09:02:17.282451"}}
+/type/work /works/OL10000238W 3 2010-04-28T06:54:19.472104 {"title": "H\u00e9rault de S\u00e9chelles, ou les infortunes de la beaut\u00e9", "created": {"type": "/type/datetime", "value": "2009-12-11T01:57:19.964652"}, "covers": [3140482], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T06:54:19.472104"}, "latest_revision": 3, "key": "/works/OL10000238W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL3965269A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10000261W 3 2010-04-28T06:54:19.472104 {"title": "Envoy\u00e9s sp\u00e9cieux", "created": {"type": "/type/datetime", "value": "2009-12-11T01:57:19.964652"}, "covers": [3142759], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T06:54:19.472104"}, "latest_revision": 3, "key": "/works/OL10000261W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL3965289A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10000387W 3 2010-04-28T06:54:19.472104 {"title": "JC de Castelbajac", "created": {"type": "/type/datetime", "value": "2009-12-11T01:57:19.964652"}, "covers": [3140687], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T06:54:19.472104"}, "latest_revision": 3, "key": "/works/OL10000387W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL3965419A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10000507W 3 2010-04-28T06:54:19.472104 {"title": "L'Alchimie de la gu\u00e9rison, tome 2", "created": {"type": "/type/datetime", "value": "2009-12-11T01:57:19.964652"}, "covers": [3140956], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T06:54:19.472104"}, "latest_revision": 3, "key": "/works/OL10000507W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL3965546A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10001426W 3 2010-04-28T06:54:19.472104 {"title": "Signac", "created": {"type": "/type/datetime", "value": "2009-12-11T01:57:29.804644"}, "covers": [5362501], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T06:54:19.472104"}, "latest_revision": 3, "key": "/works/OL10001426W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL3966601A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10001570W 3 2010-04-28T06:54:19.472104 {"title": "Massacres \u00e0 l'anisette", "created": {"type": "/type/datetime", "value": "2009-12-11T01:57:29.804644"}, "covers": [3143488], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T06:54:19.472104"}, "latest_revision": 3, "key": "/works/OL10001570W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL3966754A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10001682W 3 2010-04-28T06:54:19.472104 {"title": "Les M\u00e9tiers de la banque et de la finance 2003", "created": {"type": "/type/datetime", "value": "2009-12-11T01:57:29.804644"}, "covers": [3143687], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T06:54:19.472104"}, "latest_revision": 3, "key": "/works/OL10001682W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL3966863A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10001987W 3 2010-04-28T06:54:19.472104 {"title": "T2 coleopteres de France", "created": {"type": "/type/datetime", "value": "2009-12-11T01:57:29.804644"}, "covers": [3144448], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T06:54:19.472104"}, "latest_revision": 3, "key": "/works/OL10001987W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL3967221A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10002121W 4 2020-09-13T06:25:02.154954 {"created": {"type": "/type/datetime", "value": "2009-12-11T01:57:38.254267"}, "subjects": ["Video art", "Catalogs"], "latest_revision": 4, "key": "/works/OL10002121W", "title": "Pierrick Sorin", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL3967406A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-09-13T06:25:02.154954"}, "covers": [3144721], "revision": 4}
+/type/work /works/OL10002163W 1 2009-12-11T01:57:38.254267 {"title": "Les soignants et la communication", "created": {"type": "/type/datetime", "value": "2009-12-11T01:57:38.254267"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T01:57:38.254267"}, "latest_revision": 1, "key": "/works/OL10002163W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL3967452A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1000282W 7 2022-12-17T02:59:48.902296 {"title": "A Scandalous Suggestion", "covers": [4636254], "key": "/works/OL1000282W", "authors": [{"author": {"key": "/authors/OL92943A"}, "type": {"key": "/type/author_role"}}], "type": {"key": "/type/work"}, "description": "Sybil Eagleton\u2019s London Season has an unfortunate start. Then she is befriended by Robert Medland, son of her stepmama\u2019s best friend, and things start looking up. When the handsome Viscount Buckingham pays court to her, she must decide if her affections can be given to this haughty perfectionist, or if they have already been captured by a treasured soul mate.", "subjects": ["Fiction, Romance, Historical, Regency", "Fiction, general"], "subject_times": ["Regency Era"], "subject_people": ["Sybil Eagleton", "Robert Medland", "Viscount Buckingham"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2009-12-09T19:03:27.899466"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T02:59:48.902296"}}
+/type/work /works/OL10002860W 3 2010-04-28T06:54:19.472104 {"title": "Momus philosophe", "created": {"type": "/type/datetime", "value": "2009-12-11T01:57:38.254267"}, "covers": [3146197], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T06:54:19.472104"}, "latest_revision": 3, "key": "/works/OL10002860W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL3968295A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10003240W 2 2021-08-14T07:49:36.682217 {"title": "Dominique delise", "key": "/works/OL10003240W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL3968687A"}}], "type": {"key": "/type/work"}, "subjects": ["Biographie", "Guerres napol\u00e9oniennes (1800-1815)", "R\u00e9cits personnels fran\u00e7ais", "Biographies"], "covers": [11621626], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T01:57:52.839053"}, "last_modified": {"type": "/type/datetime", "value": "2021-08-14T07:49:36.682217"}}
+/type/work /works/OL10003273W 2 2022-05-22T19:55:21.121047 {"title": "Promenade", "key": "/works/OL10003273W", "authors": [{"author": {"key": "/authors/OL169144A"}, "type": {"key": "/type/author_role"}}], "type": {"key": "/type/work"}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T01:57:52.839053"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-22T19:55:21.121047"}}
+/type/work /works/OL1000385W 3 2010-04-28T06:54:19.472104 {"title": "Salem, tome 13", "created": {"type": "/type/datetime", "value": "2009-12-09T19:05:50.674576"}, "covers": [3107914], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T06:54:19.472104"}, "latest_revision": 3, "key": "/works/OL1000385W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL92946A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10004185W 3 2010-04-28T06:54:19.472104 {"title": "L'Amour sans elle", "created": {"type": "/type/datetime", "value": "2009-12-11T01:58:02.183946"}, "covers": [3148401], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T06:54:19.472104"}, "latest_revision": 3, "key": "/works/OL10004185W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL3969685A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10004442W 3 2010-04-28T06:54:19.472104 {"title": "Dictionnaire du fran\u00e7ais r\u00e9gional de Haute-Bretagne", "created": {"type": "/type/datetime", "value": "2009-12-11T01:58:02.183946"}, "covers": [3149003], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T06:54:19.472104"}, "latest_revision": 3, "key": "/works/OL10004442W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL3970006A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10005835W 2 2019-04-03T21:59:01.897844 {"last_modified": {"type": "/type/datetime", "value": "2019-04-03T21:59:01.897844"}, "title": "Rome la ville et le prince", "created": {"type": "/type/datetime", "value": "2009-12-11T01:58:11.470855"}, "subjects": ["Civilization", "History"], "latest_revision": 2, "key": "/works/OL10005835W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL3971664A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10005897W 3 2010-04-28T06:54:19.472104 {"title": "Nature et culture", "created": {"type": "/type/datetime", "value": "2009-12-11T01:58:11.470855"}, "covers": [3151989], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T06:54:19.472104"}, "latest_revision": 3, "key": "/works/OL10005897W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL3971722A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10006377W 1 2009-12-11T01:58:20.117391 {"title": "Budapest l'insurrection- 1956", "created": {"type": "/type/datetime", "value": "2009-12-11T01:58:20.117391"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T01:58:20.117391"}, "latest_revision": 1, "key": "/works/OL10006377W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL3972395A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10007350W 3 2010-04-28T06:54:19.472104 {"title": "A la table d'un cuisiner tao\u00efste", "created": {"type": "/type/datetime", "value": "2009-12-11T01:58:28.508302"}, "covers": [3155555], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T06:54:19.472104"}, "latest_revision": 3, "key": "/works/OL10007350W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL3973409A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10007786W 3 2022-12-31T13:08:43.223389 {"title": "Mathieu Briand", "key": "/works/OL10007786W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL3973933A"}}], "type": {"key": "/type/work"}, "subjects": ["Exhibitions", "Expositions"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T01:58:28.508302"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-31T13:08:43.223389"}}
+/type/work /works/OL10007790W 1 2009-12-11T01:58:28.508302 {"title": "La vie d'autrefois en gironde", "created": {"type": "/type/datetime", "value": "2009-12-11T01:58:28.508302"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T01:58:28.508302"}, "latest_revision": 1, "key": "/works/OL10007790W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL3973936A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10008564W 1 2009-12-11T01:58:39.514198 {"title": "Un visage appuy\u00e9 contre le monde", "created": {"type": "/type/datetime", "value": "2009-12-11T01:58:39.514198"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T01:58:39.514198"}, "latest_revision": 1, "key": "/works/OL10008564W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL3974902A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10009549W 2 2020-09-02T05:06:18.212364 {"title": "Vie, sens unique", "created": {"type": "/type/datetime", "value": "2009-12-11T01:58:48.541720"}, "covers": [10414069], "last_modified": {"type": "/type/datetime", "value": "2020-09-02T05:06:18.212364"}, "latest_revision": 2, "key": "/works/OL10009549W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL3976037A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10009883W 4 2020-12-07T10:09:28.181215 {"title": "Albert Camus: Un Apostolat Sanglant: Approche Pragmatique Et Cognitive de Son Uvre Theatrale", "covers": [3158309], "key": "/works/OL10009883W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL3976337A"}}], "type": {"key": "/type/work"}, "subjects": ["Dramatic works"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T01:58:48.541720"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-07T10:09:28.181215"}}
+/type/work /works/OL10010068W 3 2010-04-28T06:54:19.472104 {"title": "Charlotte the Lucky Charm", "created": {"type": "/type/datetime", "value": "2009-12-11T01:58:57.594996"}, "covers": [3158681], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T06:54:19.472104"}, "latest_revision": 3, "key": "/works/OL10010068W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL3976530A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10010978W 1 2009-12-11T01:58:57.594996 {"title": "M\u00e9decine tib\u00e9taine", "created": {"type": "/type/datetime", "value": "2009-12-11T01:58:57.594996"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T01:58:57.594996"}, "latest_revision": 1, "key": "/works/OL10010978W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL3977556A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10011085W 1 2009-12-11T01:59:11.351463 {"title": "JOE DOWNING", "created": {"type": "/type/datetime", "value": "2009-12-11T01:59:11.351463"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T01:59:11.351463"}, "latest_revision": 1, "key": "/works/OL10011085W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL3977643A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10011161W 3 2010-04-28T06:54:19.472104 {"title": "Aquarelle selon Franck Webb", "created": {"type": "/type/datetime", "value": "2009-12-11T01:59:11.351463"}, "covers": [3159979], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T06:54:19.472104"}, "latest_revision": 3, "key": "/works/OL10011161W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL3977707A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10011459W 1 2009-12-11T01:59:11.351463 {"title": "Les hommes veritables", "created": {"type": "/type/datetime", "value": "2009-12-11T01:59:11.351463"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T01:59:11.351463"}, "latest_revision": 1, "key": "/works/OL10011459W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL3978082A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10011695W 1 2009-12-11T01:59:11.351463 {"title": "Zapata, en temps de guerre", "created": {"type": "/type/datetime", "value": "2009-12-11T01:59:11.351463"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T01:59:11.351463"}, "latest_revision": 1, "key": "/works/OL10011695W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL3978304A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10011708W 4 2010-04-28T06:54:19.472104 {"subtitle": "A l'Epreuve de la Grande Guerre", "title": "L'Odyss\u00e9e technique et humaine du sous-marin en France, tome 3", "created": {"type": "/type/datetime", "value": "2009-12-11T01:59:11.351463"}, "covers": [3160814], "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL3978330A"}}], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T06:54:19.472104"}, "latest_revision": 4, "key": "/works/OL10011708W", "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL10011727W 3 2010-04-28T06:54:19.472104 {"title": "Paroles d'or", "created": {"type": "/type/datetime", "value": "2009-12-11T01:59:11.351463"}, "covers": [3160857], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T06:54:19.472104"}, "latest_revision": 3, "key": "/works/OL10011727W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL3978345A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10011776W 3 2010-04-28T06:54:19.472104 {"title": "La poche du M\u00e9doc", "created": {"type": "/type/datetime", "value": "2009-12-11T01:59:11.351463"}, "covers": [5205227], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T06:54:19.472104"}, "latest_revision": 3, "key": "/works/OL10011776W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL3978399A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1001209W 3 2010-07-22T11:21:27.434339 {"created": {"type": "/type/datetime", "value": "2009-12-09T19:05:50.674576"}, "subject_places": ["United States"], "subjects": ["Glassware", "Catalogs", "Collectors and collecting"], "latest_revision": 3, "key": "/works/OL1001209W", "title": "Collectibles of the depression", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL93006A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:21:27.434339"}, "revision": 3}
+/type/work /works/OL1001217W 3 2010-07-22T11:21:27.434339 {"last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:21:27.434339"}, "latest_revision": 3, "key": "/works/OL1001217W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL93012A"}}], "created": {"type": "/type/datetime", "value": "2009-12-09T19:05:50.674576"}, "title": "Rekonstruktion von Meereisdrift und terrigenem Sedimenteintrag im Spa\u0308tquarta\u0308r", "subject_places": ["Russia (Federation)", "Laptev Sea", "Arctic Ocean"], "subjects": ["Heavy minerals", "Marine sediments", "Sea ice drift", "Analysis", "Paleoclimatology"], "subject_times": ["Quaternary"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10012198W 1 2009-12-11T01:59:20.516526 {"title": "Le guide des soci\u00e9t\u00e9s d'\u00e9tudes", "created": {"type": "/type/datetime", "value": "2009-12-11T01:59:20.516526"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T01:59:20.516526"}, "latest_revision": 1, "key": "/works/OL10012198W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL3978899A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10012485W 3 2010-04-28T06:54:19.472104 {"title": "Eternal Rangoon", "created": {"type": "/type/datetime", "value": "2009-12-11T01:59:20.516526"}, "covers": [3161934], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T06:54:19.472104"}, "latest_revision": 3, "key": "/works/OL10012485W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL3979180A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10012607W 1 2009-12-11T01:59:20.516526 {"title": "L'archipretre et la cite des tours", "created": {"type": "/type/datetime", "value": "2009-12-11T01:59:20.516526"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T01:59:20.516526"}, "latest_revision": 1, "key": "/works/OL10012607W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL3979327A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10013049W 3 2010-07-22T11:21:27.434339 {"last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:21:27.434339"}, "title": "Une \u00eatre de raison", "created": {"type": "/type/datetime", "value": "2009-12-11T01:59:29.466453"}, "subjects": ["\u00c9conomie politique", "Rationalit\u00e9 \u00e9conomique", "Aspect psychologique", "Homo \u0153conomicus", "Aspect sociologique"], "latest_revision": 3, "key": "/works/OL10013049W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL3979824A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10013139W 1 2009-12-11T01:59:29.466453 {"title": "Les paysans dans la societe francaise", "created": {"type": "/type/datetime", "value": "2009-12-11T01:59:29.466453"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T01:59:29.466453"}, "latest_revision": 1, "key": "/works/OL10013139W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL3979924A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10013522W 3 2010-04-28T06:54:19.472104 {"title": "Pr\u00e9sidentielles 2002", "created": {"type": "/type/datetime", "value": "2009-12-11T01:59:29.466453"}, "covers": [3163744], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T06:54:19.472104"}, "latest_revision": 3, "key": "/works/OL10013522W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL3980307A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10013712W 3 2010-04-28T06:54:19.472104 {"title": "Les Embruns de Kos", "created": {"type": "/type/datetime", "value": "2009-12-11T01:59:29.466453"}, "covers": [3164090], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T06:54:19.472104"}, "latest_revision": 3, "key": "/works/OL10013712W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL3980528A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10014178W 3 2019-07-30T20:45:39.849962 {"last_modified": {"type": "/type/datetime", "value": "2019-07-30T20:45:39.849962"}, "title": "Syllabaire Elamite Histoire Et Paleographie", "created": {"type": "/type/datetime", "value": "2009-12-11T01:59:38.336708"}, "subjects": ["Elamite Cuneiform inscriptions", "Elamite language", "Cuneiform inscriptions, Elamite"], "latest_revision": 3, "key": "/works/OL10014178W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL3980916A"}}, {"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2186636A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10014342W 1 2009-12-11T01:59:38.336708 {"title": "Histoire du costume d'Arles", "created": {"type": "/type/datetime", "value": "2009-12-11T01:59:38.336708"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T01:59:38.336708"}, "latest_revision": 1, "key": "/works/OL10014342W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL3981086A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10014753W 3 2010-04-28T06:54:19.472104 {"title": "Patronentaschen, Patroneng\u00fcrtel und Banduliere 1850-1950", "created": {"type": "/type/datetime", "value": "2009-12-11T01:59:38.336708"}, "covers": [3165185], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T06:54:19.472104"}, "latest_revision": 3, "key": "/works/OL10014753W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL3981551A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1001496W 3 2010-07-22T11:21:27.434339 {"created": {"type": "/type/datetime", "value": "2009-12-09T19:07:21.849284"}, "subject_places": ["Brazil", "Argentina", "Southern Cone of South America"], "subjects": ["Foreign relations", "Geopolitics"], "latest_revision": 3, "key": "/works/OL1001496W", "title": "Argentina e Brasil", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL93041A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:21:27.434339"}, "revision": 3}
+/type/work /works/OL10015212W 3 2021-09-14T11:15:01.190260 {"title": "Le Drame Militaire En Allemagne Au Xviiie Siecle", "key": "/works/OL10015212W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL3982122A"}}], "type": {"key": "/type/work"}, "subjects": ["German drama", "History and criticism", "Lessing, gotthold ephraim, 1729-1781", "German drama, history and criticism"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T01:59:46.639055"}, "last_modified": {"type": "/type/datetime", "value": "2021-09-14T11:15:01.190260"}}
+/type/work /works/OL10015315W 3 2010-04-28T06:54:19.472104 {"title": "Aristoteles", "created": {"type": "/type/datetime", "value": "2009-12-11T01:59:46.639055"}, "covers": [3165678], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T06:54:19.472104"}, "latest_revision": 3, "key": "/works/OL10015315W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL3982239A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10015606W 2 2010-12-20T23:32:38.309373 {"title": "Mathematik. Formeln, S\u00e4tze und Tabellen. F\u00fcr die Sekundarstufen 1 und 2.", "created": {"type": "/type/datetime", "value": "2009-12-11T01:59:46.639055"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-20T23:32:38.309373"}, "latest_revision": 2, "key": "/works/OL10015606W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL3982610A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10016081W 3 2010-04-28T06:56:07.056432 {"title": "Allgemeinmedizin (De Gruyter Lehrbuch)", "created": {"type": "/type/datetime", "value": "2009-12-11T01:59:54.234602"}, "covers": [3167326], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T06:56:07.056432"}, "latest_revision": 3, "key": "/works/OL10016081W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL3983429A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1001625W 3 2010-07-22T11:21:27.434339 {"created": {"type": "/type/datetime", "value": "2009-12-09T19:07:21.849284"}, "subject_places": ["Brazil"], "subjects": ["Civil law", "Language"], "latest_revision": 3, "key": "/works/OL1001625W", "title": "R\u00e9plica", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL93051A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:21:27.434339"}, "revision": 3}
+/type/work /works/OL10016517W 1 2009-12-11T01:59:54.234602 {"title": "Der Weg Zur Einheit Und Das Vereinigte Deutschland (Abiturwissen)", "created": {"type": "/type/datetime", "value": "2009-12-11T01:59:54.234602"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T01:59:54.234602"}, "latest_revision": 1, "key": "/works/OL10016517W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL3984031A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10017694W 2 2010-10-19T23:23:44.628097 {"title": "Mozart:String Qts", "created": {"type": "/type/datetime", "value": "2009-12-11T02:00:04.646565"}, "last_modified": {"type": "/type/datetime", "value": "2010-10-19T23:23:44.628097"}, "latest_revision": 2, "key": "/works/OL10017694W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL68526A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10018108W 3 2010-04-28T06:56:07.056432 {"title": "Sophisticated Emollients", "created": {"type": "/type/datetime", "value": "2009-12-11T02:00:12.274589"}, "covers": [3170671], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T06:56:07.056432"}, "latest_revision": 3, "key": "/works/OL10018108W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL3986831A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10018929W 4 2020-07-27T04:19:21.712715 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:00:12.274589"}, "subjects": ["Elterngebot", "Recht", "Ethiek", "Biblical teaching", "Fr\u00fchjudentum", "Ten commandments", "Bijbel", "Parent and child", "Neues Testament", "Parents", "Filial piety", "Traditionsgeschichtliche Forschung", "Altes Testament", "Ouderschap"], "latest_revision": 4, "key": "/works/OL10018929W", "title": "Ehre Vater Und Mutter (Wissenschaftliche Untersuchungen Zum Neuen Testament, 2)", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL3989051A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-07-27T04:19:21.712715"}, "covers": [5206527], "revision": 4}
+/type/work /works/OL10019334W 3 2010-04-28T06:56:07.056432 {"title": "Ethik im Pflegealltag. Wie Pflegende ihr Handeln reflektieren und begr\u00fcnden k\u00f6nnen", "created": {"type": "/type/datetime", "value": "2009-12-11T02:00:20.902306"}, "covers": [3173656], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T06:56:07.056432"}, "latest_revision": 3, "key": "/works/OL10019334W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL3989551A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10019449W 3 2010-04-28T06:56:07.056432 {"title": "Sonderp\u00e4dagogische F\u00f6rderung lernbeeintr\u00e4chtigter Kinder. Analysen und Perspektiven", "created": {"type": "/type/datetime", "value": "2009-12-11T02:00:20.902306"}, "covers": [3173813], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T06:56:07.056432"}, "latest_revision": 3, "key": "/works/OL10019449W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL3989716A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10020396W 3 2010-04-28T06:56:07.056432 {"title": "K\u00f6stliche Sommerdrinks - Smoothies. Fruchtig, frostig, frisch", "created": {"type": "/type/datetime", "value": "2009-12-11T02:00:29.828371"}, "covers": [3265725], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T06:56:07.056432"}, "latest_revision": 3, "key": "/works/OL10020396W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL3991067A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10020546W 3 2010-04-28T06:56:07.056432 {"title": "Logico Trainer, \u00dcbungsb\u00fccher, Rechnen bis 100, Malnehmen und Teilen", "created": {"type": "/type/datetime", "value": "2009-12-11T02:00:29.828371"}, "covers": [3268649], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T06:56:07.056432"}, "latest_revision": 3, "key": "/works/OL10020546W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL3991296A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10020573W 1 2009-12-11T02:00:29.828371 {"title": "Wir spielen Verstecken... Im Wald. Mit Guckloch", "created": {"type": "/type/datetime", "value": "2009-12-11T02:00:29.828371"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:00:29.828371"}, "latest_revision": 1, "key": "/works/OL10020573W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL3991313A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10020898W 1 2009-12-11T02:00:29.828371 {"title": "Die betriebliche Karriereplanung", "created": {"type": "/type/datetime", "value": "2009-12-11T02:00:29.828371"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:00:29.828371"}, "latest_revision": 1, "key": "/works/OL10020898W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL3991807A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10021101W 3 2010-04-28T06:56:07.056432 {"title": "Unsere Katze bekommt Junge. Ratgeber rund um die Katze", "created": {"type": "/type/datetime", "value": "2009-12-11T02:00:36.695666"}, "covers": [3177757], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T06:56:07.056432"}, "latest_revision": 3, "key": "/works/OL10021101W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL3992035A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10021341W 3 2010-04-28T06:56:07.056432 {"title": "Lernen, So klappt's!, neue Rechtschreibung, Rechnen", "created": {"type": "/type/datetime", "value": "2009-12-11T02:00:36.695666"}, "covers": [3238194], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T06:56:07.056432"}, "latest_revision": 3, "key": "/works/OL10021341W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL3992228A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10021445W 1 2009-12-11T02:00:36.695666 {"title": "Clarinet World, Vol. 2", "created": {"type": "/type/datetime", "value": "2009-12-11T02:00:36.695666"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:00:36.695666"}, "latest_revision": 1, "key": "/works/OL10021445W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL3992326A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10022012W 1 2009-12-11T02:00:43.044964 {"title": "Holzschutzleitfaden f\u00fcr die Praxis. Grundlagen, Ma\u00dfnahmen, Sicherheit", "created": {"type": "/type/datetime", "value": "2009-12-11T02:00:43.044964"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:00:43.044964"}, "latest_revision": 1, "key": "/works/OL10022012W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL3993017A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10022184W 1 2009-12-11T02:00:43.044964 {"title": "Usedom", "created": {"type": "/type/datetime", "value": "2009-12-11T02:00:43.044964"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:00:43.044964"}, "latest_revision": 1, "key": "/works/OL10022184W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL3993155A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10022263W 3 2010-04-28T06:56:07.056432 {"title": "Das Ekel von Rahnsdorf. Und andere spektakul\u00e4re Mordf\u00e4lle aus der DDR", "created": {"type": "/type/datetime", "value": "2009-12-11T02:00:43.044964"}, "covers": [3193113], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T06:56:07.056432"}, "latest_revision": 3, "key": "/works/OL10022263W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL3993293A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1002253W 1 2009-12-09T19:07:21.849284 {"title": "Reino na\u0303o conquistado", "created": {"type": "/type/datetime", "value": "2009-12-09T19:07:21.849284"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:07:21.849284"}, "latest_revision": 1, "key": "/works/OL1002253W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL93132A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1002266W 1 2009-12-09T19:07:21.849284 {"title": "Cinza das quartas-feiras", "created": {"type": "/type/datetime", "value": "2009-12-09T19:07:21.849284"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:07:21.849284"}, "latest_revision": 1, "key": "/works/OL1002266W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL93136A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10022892W 3 2010-04-28T06:56:07.056432 {"title": "Kindergartenmaus, Auf dem Bauernhof", "created": {"type": "/type/datetime", "value": "2009-12-11T02:00:43.044964"}, "covers": [3257738], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T06:56:07.056432"}, "latest_revision": 3, "key": "/works/OL10022892W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL3993835A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10023336W 1 2009-12-11T02:00:50.445585 {"title": "Ohren auf!, Unterrichtsvorschl\u00e4ge", "created": {"type": "/type/datetime", "value": "2009-12-11T02:00:50.445585"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:00:50.445585"}, "latest_revision": 1, "key": "/works/OL10023336W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL3994507A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10023390W 1 2009-12-11T02:00:50.445585 {"title": "Erlebnisorientierter Geographieunterricht. Ein fachdidaktischer Beitrag zu verantwortlichem Handeln", "created": {"type": "/type/datetime", "value": "2009-12-11T02:00:50.445585"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:00:50.445585"}, "latest_revision": 1, "key": "/works/OL10023390W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL3994569A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10023758W 3 2010-07-22T11:21:27.434339 {"last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:21:27.434339"}, "title": "Les dessous de la peau", "created": {"type": "/type/datetime", "value": "2009-12-11T02:00:50.445585"}, "subjects": ["Peau", "Chirurgie", "Soins et hygi\u00e8ne", "Maladies"], "latest_revision": 3, "key": "/works/OL10023758W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL3994838A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10023932W 3 2010-04-28T06:56:07.056432 {"title": "Sieben Wochen meines Lebens war ich reich. 20 literarische Wanderungen in Oberbayern", "created": {"type": "/type/datetime", "value": "2009-12-11T02:00:50.445585"}, "covers": [3183647], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T06:56:07.056432"}, "latest_revision": 3, "key": "/works/OL10023932W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL3995024A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1002395W 1 2009-12-09T19:08:41.964839 {"title": "Horizonte vertical", "created": {"type": "/type/datetime", "value": "2009-12-09T19:08:41.964839"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:08:41.964839"}, "latest_revision": 1, "key": "/works/OL1002395W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL93157A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1002427W 3 2010-07-22T11:21:27.434339 {"created": {"type": "/type/datetime", "value": "2009-12-09T19:08:41.964839"}, "subject_places": ["Brazil"], "subjects": ["Free schools", "Open plan schools"], "latest_revision": 3, "key": "/works/OL1002427W", "title": "Escola natural", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL93164A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:21:27.434339"}, "revision": 3}
+/type/work /works/OL10024482W 4 2019-02-07T14:47:50.503406 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:00:59.408032"}, "subjects": ["Study and teaching", "Goethe-Institut (Munich, Germany)", "Exhibitions", "German philology"], "latest_revision": 4, "key": "/works/OL10024482W", "title": "Murnau, Manila, Minsk. 50 Jahre Goethe- Institut", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL3995785A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2019-02-07T14:47:50.503406"}, "covers": [3184865], "revision": 4}
+/type/work /works/OL10024654W 1 2009-12-11T02:00:59.408032 {"title": "Stra\u00dfenverkehrs-Richtlinien (ohne Fortsetzungsnotierung). Inkl. 37. Erg\u00e4nzungslieferung", "created": {"type": "/type/datetime", "value": "2009-12-11T02:00:59.408032"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:00:59.408032"}, "latest_revision": 1, "key": "/works/OL10024654W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL3996104A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10024833W 3 2010-04-28T06:56:07.056432 {"title": "Spiele", "created": {"type": "/type/datetime", "value": "2009-12-11T02:00:59.408032"}, "covers": [3185742], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T06:56:07.056432"}, "latest_revision": 3, "key": "/works/OL10024833W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL3996341A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10024903W 3 2010-04-28T06:56:07.056432 {"title": "Peer- Education. Bildung und Erziehung von Gleichaltrigen durch Gleichaltrige", "created": {"type": "/type/datetime", "value": "2009-12-11T02:00:59.408032"}, "covers": [3185832], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T06:56:07.056432"}, "latest_revision": 3, "key": "/works/OL10024903W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL3996464A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10025204W 1 2009-12-11T02:01:11.600659 {"title": "Dragonheart/Signature Collection/Cav", "created": {"type": "/type/datetime", "value": "2009-12-11T02:01:11.600659"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:01:11.600659"}, "latest_revision": 1, "key": "/works/OL10025204W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL3996874A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10026089W 1 2009-12-11T02:01:19.014862 {"title": "Was hei\u00dft hier schulf\u00e4hig?", "created": {"type": "/type/datetime", "value": "2009-12-11T02:01:19.014862"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:01:19.014862"}, "latest_revision": 1, "key": "/works/OL10026089W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL3997862A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10026252W 1 2009-12-11T02:01:19.014862 {"title": "Historisches rund um Gr\u00fcnau", "created": {"type": "/type/datetime", "value": "2009-12-11T02:01:19.014862"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:01:19.014862"}, "latest_revision": 1, "key": "/works/OL10026252W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL3998084A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10026333W 3 2010-04-28T06:56:07.056432 {"title": "Strategic E-Business. Strategien, strategische Konzepte und Instrumente aus Sicht von Beratungsgesellschaften", "created": {"type": "/type/datetime", "value": "2009-12-11T02:01:19.014862"}, "covers": [3186997], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T06:56:07.056432"}, "latest_revision": 3, "key": "/works/OL10026333W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL3998197A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10026344W 1 2009-12-11T02:01:19.014862 {"title": "Strategische Unternehmensplanung und ethische Reflexion (Schriftenreihe Unternehmensfuhrung)", "created": {"type": "/type/datetime", "value": "2009-12-11T02:01:19.014862"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:01:19.014862"}, "latest_revision": 1, "key": "/works/OL10026344W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL3998207A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10026617W 3 2010-04-28T06:56:07.056432 {"title": "Gabler Lexikon Auslandsgesch\u00e4fte", "created": {"type": "/type/datetime", "value": "2009-12-11T02:01:19.014862"}, "covers": [3187335], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T06:56:07.056432"}, "latest_revision": 3, "key": "/works/OL10026617W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL3998560A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10026857W 1 2009-12-11T02:01:19.014862 {"title": "Die lex Voconia", "created": {"type": "/type/datetime", "value": "2009-12-11T02:01:19.014862"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:01:19.014862"}, "latest_revision": 1, "key": "/works/OL10026857W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL3998893A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10026865W 4 2020-12-07T08:12:41.270210 {"title": "Auschwitz darstellen. \u00c4sthetische Positionen zwischen Adorno, Spielberg und Walser", "covers": [3187976], "key": "/works/OL10026865W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL3998902A"}}], "type": {"key": "/type/work"}, "subjects": ["Holocaust, Jewish (1939-1945)", "Influence", "Auschwitz (Concentration camp)"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T02:01:19.014862"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-07T08:12:41.270210"}}
+/type/work /works/OL10027615W 2 2020-12-02T11:23:11.209174 {"title": "Kursbuch Stadt. Stadtleben und Stadtkultur an der Jahrtausendwende", "key": "/works/OL10027615W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL3999693A"}}], "type": {"key": "/type/work"}, "subjects": ["Cities and towns", "City and town life", "Urban Sociology"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T02:01:26.307523"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-02T11:23:11.209174"}}
+/type/work /works/OL10028486W 3 2010-04-28T06:56:07.056432 {"title": "Das Wagner - Kompendium. Sein Leben - Seine Musik", "created": {"type": "/type/datetime", "value": "2009-12-11T02:01:33.871223"}, "covers": [3192120], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T06:56:07.056432"}, "latest_revision": 3, "key": "/works/OL10028486W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4000842A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10028571W 3 2010-04-28T06:56:07.056432 {"title": "Blo\u00df gut, dass es uns noch gibt. Familie Lehmann und der 51. Geburtstag der DDR", "created": {"type": "/type/datetime", "value": "2009-12-11T02:01:33.871223"}, "covers": [3192485], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T06:56:07.056432"}, "latest_revision": 3, "key": "/works/OL10028571W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4000924A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10028793W 4 2021-11-05T05:46:05.604047 {"title": "Praxis- Lexikon Verbraucherrecht. Ihr Recht als K\u00e4ufer, Kunde, Urlauber", "covers": [3193285], "key": "/works/OL10028793W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4001122A"}}], "type": {"key": "/type/work"}, "subjects": ["Verbraucherschutz", "Ratgeber"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T02:01:33.871223"}, "last_modified": {"type": "/type/datetime", "value": "2021-11-05T05:46:05.604047"}}
+/type/work /works/OL10028929W 1 2009-12-11T02:01:33.871223 {"title": "Kautschuk- und Asbestindustrie. Strukturelle Probleme und Wachstumschancen. Mit 28 Tab., 5 Abb. (ifo Struktur und Wachstum. Reihe Industrie; IFO I 5)", "created": {"type": "/type/datetime", "value": "2009-12-11T02:01:33.871223"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:01:33.871223"}, "latest_revision": 1, "key": "/works/OL10028929W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4001304A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1002941W 5 2020-12-08T09:08:51.397617 {"covers": [4920691], "key": "/works/OL1002941W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL93276A"}}], "title": "Folclore poli\u0301tico", "subject_places": ["Brazil"], "subjects": ["Politics and government", "Anecdotes, facetiae, satire", "Errors, inventions"], "type": {"key": "/type/work"}, "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2009-12-09T19:08:41.964839"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-08T09:08:51.397617"}}
+/type/work /works/OL10029488W 3 2010-04-28T06:56:07.056432 {"title": "Rinderzucht", "created": {"type": "/type/datetime", "value": "2009-12-11T02:01:42.131156"}, "covers": [3262477], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T06:56:07.056432"}, "latest_revision": 3, "key": "/works/OL10029488W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4001844A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10029665W 4 2020-12-07T14:37:50.158505 {"title": "Leichtbeton Im Konstruktiven Ingenieurbau", "covers": [3194196], "key": "/works/OL10029665W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4002087A"}}], "type": {"key": "/type/work"}, "subjects": ["Lightweight concrete", "Concrete construction"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T02:01:42.131156"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-07T14:37:50.158505"}}
+/type/work /works/OL10029774W 1 2009-12-11T02:01:42.131156 {"title": "Windim - Statische Vordimensionierung-Technische Machbarkeit", "created": {"type": "/type/datetime", "value": "2009-12-11T02:01:42.131156"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:01:42.131156"}, "latest_revision": 1, "key": "/works/OL10029774W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4002202A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10030070W 3 2010-04-28T06:56:07.056432 {"title": "80 F\u00e4lle Innere Medizin. Zur Vorbereitung auf m\u00fcndliche Pr\u00fcfungen mit praxisnahen Fragen und ausf\u00fchrlichen Kommentaren", "created": {"type": "/type/datetime", "value": "2009-12-11T02:01:48.904502"}, "covers": [3194774], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T06:56:07.056432"}, "latest_revision": 3, "key": "/works/OL10030070W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4002755A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10030482W 1 2009-12-11T02:01:48.904502 {"title": "Hundebuch f\u00fcr Singles", "created": {"type": "/type/datetime", "value": "2009-12-11T02:01:48.904502"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:01:48.904502"}, "latest_revision": 1, "key": "/works/OL10030482W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4003285A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10030508W 3 2010-04-28T06:56:07.056432 {"title": "Kosmos- Lexikon Westernreiten", "created": {"type": "/type/datetime", "value": "2009-12-11T02:01:48.904502"}, "covers": [3195474], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T06:56:07.056432"}, "latest_revision": 3, "key": "/works/OL10030508W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4003309A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1003088W 2 2010-03-20T01:42:15.193995 {"subtitle": "come\u0301dia em 1 ato.", "title": "Quase ministro", "created": {"type": "/type/datetime", "value": "2009-12-09T19:08:41.964839"}, "last_modified": {"type": "/type/datetime", "value": "2010-03-20T01:42:15.193995"}, "latest_revision": 2, "key": "/works/OL1003088W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL93286A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10031342W 3 2010-07-22T11:21:27.434339 {"last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:21:27.434339"}, "title": "Characterization of plastics by physical methods", "created": {"type": "/type/datetime", "value": "2009-12-11T02:01:57.226654"}, "subjects": ["Plastics", "Analysis"], "latest_revision": 3, "key": "/works/OL10031342W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4004483A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10031498W 3 2010-04-28T06:56:07.056432 {"title": "Werkzeugmaschinen der spanlosen und spanenden Formgebung", "created": {"type": "/type/datetime", "value": "2009-12-11T02:01:57.226654"}, "covers": [3199934], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T06:56:07.056432"}, "latest_revision": 3, "key": "/works/OL10031498W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4004771A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10031579W 3 2010-07-22T11:21:27.434339 {"last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:21:27.434339"}, "title": "Schauder's estimates and boundary value problems for quasilinear partial differential equations", "created": {"type": "/type/datetime", "value": "2009-12-11T02:01:57.226654"}, "subjects": ["Differential equations, Partial", "Boundary value problems", "Schauder bases", "Partial Differential equations"], "latest_revision": 3, "key": "/works/OL10031579W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4004975A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10031596W 3 2010-04-28T06:56:07.056432 {"title": "Leichtbau-Konstruktion . Berechnungsgrundlagen und Gestaltung", "created": {"type": "/type/datetime", "value": "2009-12-11T02:01:57.226654"}, "covers": [3226103], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T06:56:07.056432"}, "latest_revision": 3, "key": "/works/OL10031596W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4004999A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10032221W 1 2009-12-11T02:02:04.537043 {"title": "50 gute Gr\u00fcnde, sich heute Zeit zu nehmen", "created": {"type": "/type/datetime", "value": "2009-12-11T02:02:04.537043"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:02:04.537043"}, "latest_revision": 1, "key": "/works/OL10032221W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4005717A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10032476W 1 2009-12-11T02:02:04.537043 {"title": "Grundriss f\u00fcr Rechtsanwaltsfachangestellte. Ausbildung und Praxis", "created": {"type": "/type/datetime", "value": "2009-12-11T02:02:04.537043"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:02:04.537043"}, "latest_revision": 1, "key": "/works/OL10032476W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4006060A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10032710W 1 2009-12-11T02:02:04.537043 {"title": "Herz hinter Dornen", "created": {"type": "/type/datetime", "value": "2009-12-11T02:02:04.537043"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:02:04.537043"}, "latest_revision": 1, "key": "/works/OL10032710W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4006296A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1003351W 1 2009-12-09T19:11:10.903132 {"title": "Bola da vez", "created": {"type": "/type/datetime", "value": "2009-12-09T19:11:10.903132"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:11:10.903132"}, "latest_revision": 1, "key": "/works/OL1003351W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL93300A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1003490W 1 2009-12-09T19:11:10.903132 {"title": "Ribanceira", "created": {"type": "/type/datetime", "value": "2009-12-09T19:11:10.903132"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:11:10.903132"}, "latest_revision": 1, "key": "/works/OL1003490W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL93330A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1003582W 2 2020-11-20T00:48:28.278449 {"description": {"type": "/type/text", "value": "\"Reprint of a 1967 collection is a sign of the popularity of both author and genre. In her treatment of multifarious rural, urban, local, national and international topics, Queiroz invariably reveals an affective dimension\"--Handbook of Latin American Studies, v. 58."}, "title": "O cac\u0327ador de tatu", "created": {"type": "/type/datetime", "value": "2009-12-09T19:11:10.903132"}, "last_modified": {"type": "/type/datetime", "value": "2020-11-20T00:48:28.278449"}, "latest_revision": 2, "key": "/works/OL1003582W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL93344A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL1003674W 4 2010-07-20T11:15:39.538218 {"title": "A escola acabou?", "created": {"type": "/type/datetime", "value": "2009-12-09T19:11:10.903132"}, "covers": [4043635], "subject_places": ["Brazil"], "last_modified": {"type": "/type/datetime", "value": "2010-07-20T11:15:39.538218"}, "latest_revision": 4, "key": "/works/OL1003674W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL93358A"}}], "type": {"key": "/type/work"}, "subjects": ["Education", "Social aspects", "Social aspects of Education"], "revision": 4}
+/type/work /works/OL1003699W 3 2010-07-20T11:15:41.532629 {"created": {"type": "/type/datetime", "value": "2009-12-09T19:11:10.903132"}, "title": "Realizac\u0327a\u0303o e compromisso", "subject_places": ["Brazil", "Cear\u00e1 (State)"], "last_modified": {"type": "/type/datetime", "value": "2010-07-20T11:15:41.532629"}, "latest_revision": 3, "key": "/works/OL1003699W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL93360A"}}], "type": {"key": "/type/work"}, "subjects": ["Education, Higher", "Universidade Estadual Vale do Acara\u00fa", "Higher Education"], "revision": 3}
+/type/work /works/OL10039179W 4 2010-12-21T08:59:44.276942 {"title": "Lesetraining Bildw\u00f6rter Heft 2. Schwierigkeitsstufe 2.", "created": {"type": "/type/datetime", "value": "2009-12-11T02:03:23.850442"}, "covers": [3203952], "last_modified": {"type": "/type/datetime", "value": "2010-12-21T08:59:44.276942"}, "latest_revision": 4, "key": "/works/OL10039179W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4013869A"}}], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL10039201W 3 2010-04-28T06:56:07.056432 {"title": "New York f\u00fcr Fortgeschrittene", "created": {"type": "/type/datetime", "value": "2009-12-11T02:03:23.850442"}, "covers": [3204083], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T06:56:07.056432"}, "latest_revision": 3, "key": "/works/OL10039201W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4013910A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10039541W 1 2009-12-11T02:03:23.850442 {"title": "Es werde Licht. Texte und Bilder", "created": {"type": "/type/datetime", "value": "2009-12-11T02:03:23.850442"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:03:23.850442"}, "latest_revision": 1, "key": "/works/OL10039541W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4014655A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10039896W 4 2010-12-21T11:33:18.547297 {"title": "Sharons first case. Ab Lernjahr 2, Level 1.", "created": {"type": "/type/datetime", "value": "2009-12-11T02:03:23.850442"}, "covers": [3206182], "last_modified": {"type": "/type/datetime", "value": "2010-12-21T11:33:18.547297"}, "latest_revision": 4, "key": "/works/OL10039896W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4015166A"}}], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL10040386W 3 2010-04-28T07:02:27.167015 {"title": "Selbstheilungskr\u00e4fte in der Seele entfalten. CD. Selbsthypnose mit Musik", "created": {"type": "/type/datetime", "value": "2009-12-11T02:03:31.792977"}, "covers": [3208461], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:02:27.167015"}, "latest_revision": 3, "key": "/works/OL10040386W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4016257A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10040503W 3 2010-04-28T07:02:27.167015 {"title": "Langenscheidt Travel Pack, Buch m. Audio-CD u. Handw\u00f6rter-Tuch, Portugiesisch f\u00fcr den Urlaub", "created": {"type": "/type/datetime", "value": "2009-12-11T02:03:31.792977"}, "covers": [3208658], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:02:27.167015"}, "latest_revision": 3, "key": "/works/OL10040503W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4016520A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10040638W 3 2010-04-28T07:02:27.167015 {"title": "Fehler Und Fehlerkorrektur", "created": {"type": "/type/datetime", "value": "2009-12-11T02:03:31.792977"}, "covers": [3209170], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:02:27.167015"}, "latest_revision": 3, "key": "/works/OL10040638W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4016769A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10040662W 3 2010-04-28T07:02:27.167015 {"title": "Langenscheidts Praktischer Sprachlehrgang, m. Audio-CD, Chinesisch", "created": {"type": "/type/datetime", "value": "2009-12-11T02:03:31.792977"}, "covers": [3209282], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:02:27.167015"}, "latest_revision": 3, "key": "/works/OL10040662W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4016824A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10040875W 3 2010-04-28T07:02:27.167015 {"title": "Die Unterhaltsberechnung. Berrechnungsbeispiele f\u00fcr den Praktiker", "created": {"type": "/type/datetime", "value": "2009-12-11T02:03:31.792977"}, "covers": [3209721], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:02:27.167015"}, "latest_revision": 3, "key": "/works/OL10040875W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4017101A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10040957W 3 2010-04-28T07:02:27.167015 {"title": "Methoden- ABC im Coaching. Praktisches Handwerkszeug f\u00fcr den erfolgreichen Coach", "created": {"type": "/type/datetime", "value": "2009-12-11T02:03:31.792977"}, "covers": [3209865], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:02:27.167015"}, "latest_revision": 3, "key": "/works/OL10040957W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4017308A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10041079W 5 2022-10-08T08:58:25.860041 {"title": "Der Klub der sieben Raben und der Piratenschatz. UNDERGROUND- Krimi.", "covers": [3236103], "key": "/works/OL10041079W", "authors": [{"author": {"key": "/authors/OL4017568A"}, "type": {"key": "/type/author_role"}}], "type": {"key": "/type/work"}, "subjects": ["Children's fiction", "Children's Books -- Literature -- Science Fiction, Fantasy, Mystery & Horror -- Mysteries, Espionage, & Detectives", "[series:Underground-Krimi]"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2009-12-11T02:03:39.555081"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-08T08:58:25.860041"}}
+/type/work /works/OL10041112W 3 2010-04-28T07:02:27.167015 {"title": "THINK. Memo Crime", "created": {"type": "/type/datetime", "value": "2009-12-11T02:03:39.555081"}, "covers": [3211052], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:02:27.167015"}, "latest_revision": 3, "key": "/works/OL10041112W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4017618A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10041690W 1 2009-12-11T02:03:39.555081 {"title": "Mediale Kommunikation", "created": {"type": "/type/datetime", "value": "2009-12-11T02:03:39.555081"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:03:39.555081"}, "latest_revision": 1, "key": "/works/OL10041690W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4018524A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10042083W 3 2010-04-28T07:02:27.167015 {"title": "Kulturelle Offenheit gegen\u00fcber Auslandsm\u00e4rkten", "created": {"type": "/type/datetime", "value": "2009-12-11T02:03:47.051201"}, "covers": [3275571], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:02:27.167015"}, "latest_revision": 3, "key": "/works/OL10042083W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4019163A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10042130W 4 2021-09-15T19:34:34.470684 {"title": "Die Wundersame Welt Der Atomis", "covers": [3225045], "key": "/works/OL10042130W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4019284A"}}], "type": {"key": "/type/work"}, "subjects": ["Physics"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T02:03:47.051201"}, "last_modified": {"type": "/type/datetime", "value": "2021-09-15T19:34:34.470684"}}
+/type/work /works/OL10042360W 2 2010-04-28T07:02:27.167015 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:03:47.051201"}, "title": "Bibliotheca Chemica 2 Vol", "covers": [5207836], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:02:27.167015"}, "latest_revision": 2, "key": "/works/OL10042360W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4019834A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10042516W 3 2010-04-28T07:02:27.167015 {"title": "Fotos und Folien f\u00fcr die Konfirmandenarbeit und Gemeindearbeit (lose Bl\u00e4tter)", "created": {"type": "/type/datetime", "value": "2009-12-11T02:03:47.051201"}, "covers": [3214745], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:02:27.167015"}, "latest_revision": 3, "key": "/works/OL10042516W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4020035A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10042587W 1 2009-12-11T02:03:47.051201 {"title": "Der Josefinismus und seine Geschichte", "created": {"type": "/type/datetime", "value": "2009-12-11T02:03:47.051201"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:03:47.051201"}, "latest_revision": 1, "key": "/works/OL10042587W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4020169A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10042649W 1 2009-12-11T02:03:47.051201 {"title": "Der Mann von Asteri", "created": {"type": "/type/datetime", "value": "2009-12-11T02:03:47.051201"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:03:47.051201"}, "latest_revision": 1, "key": "/works/OL10042649W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4020238A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10043264W 3 2010-04-28T07:02:27.167015 {"title": "Wann bitte findet das Leben statt? Sonderausgabe", "created": {"type": "/type/datetime", "value": "2009-12-11T02:03:55.538555"}, "covers": [3217132], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:02:27.167015"}, "latest_revision": 3, "key": "/works/OL10043264W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4020938A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10043308W 3 2010-07-22T11:21:27.434339 {"title": "Simone Weil in Selbstzeugnissen und Bilddokumenten", "created": {"type": "/type/datetime", "value": "2009-12-11T02:03:55.538555"}, "last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:21:27.434339"}, "latest_revision": 3, "key": "/works/OL10043308W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4020977A"}}], "subject_people": ["Simone Weil (1909-1943)"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1004740W 3 2010-07-22T11:21:27.434339 {"created": {"type": "/type/datetime", "value": "2009-12-09T19:12:24.848949"}, "subject_places": ["Portugal"], "subjects": ["Blacks", "History"], "latest_revision": 3, "key": "/works/OL1004740W", "title": "Os negros em Portugal", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL93507A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:21:27.434339"}, "revision": 3}
+/type/work /works/OL1004954W 7 2023-01-09T16:54:17.476065 {"covers": [4152048], "key": "/works/OL1004954W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL93546A"}}], "title": "The maternal face of God", "subjects": ["Theology", "Christianity", "Religious aspects", "Women", "Religious aspects of Women", "Maternit\u00e9", "Femme (Th\u00e9ologie chr\u00e9tienne)", "Th\u00e9ologie", "Theology of the Blessed Virgin Mary", "F\u00e9minit\u00e9", "Mary, blessed virgin, saint, theology", "Women, religious aspects", "Religion"], "subject_people": ["Mary Blessed Virgin, Saint"], "type": {"key": "/type/work"}, "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2009-12-09T19:12:24.848949"}, "last_modified": {"type": "/type/datetime", "value": "2023-01-09T16:54:17.476065"}}
+/type/work /works/OL1005070W 1 2009-12-09T19:12:24.848949 {"title": "Os galos de aurora", "created": {"type": "/type/datetime", "value": "2009-12-09T19:12:24.848949"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:12:24.848949"}, "latest_revision": 1, "key": "/works/OL1005070W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL93553A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1005237W 1 2009-12-09T19:12:24.848949 {"title": "Confisso\u0303es de Minas", "created": {"type": "/type/datetime", "value": "2009-12-09T19:12:24.848949"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:12:24.848949"}, "latest_revision": 1, "key": "/works/OL1005237W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL93585A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1005275W 3 2010-04-28T07:02:27.167015 {"title": "Rua da Bahia", "created": {"type": "/type/datetime", "value": "2009-12-09T19:12:24.848949"}, "covers": [3715257], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:02:27.167015"}, "latest_revision": 3, "key": "/works/OL1005275W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL93585A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1005382W 4 2020-11-03T04:58:36.716838 {"created": {"type": "/type/datetime", "value": "2009-12-09T19:14:47.654413"}, "subject_places": ["Brazil"], "subjects": ["Liability for traffic accidents", "Damages", "Law and legislation", "Insurance, Automobile", "Traffic violations", "Automobile Insurance", "Automobile insurance"], "latest_revision": 4, "key": "/works/OL1005382W", "title": "A reparac\u0327a\u0303o nos acidentes de tra\u0302nsito", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL93594A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-11-03T04:58:36.716838"}, "revision": 4}
+/type/work /works/OL10054489W 3 2010-04-28T07:02:27.167015 {"title": "Das Praxiswissen f\u00fcr den Skipper. Ein Nachschlagewerk f\u00fcr den Bordgebrauch", "created": {"type": "/type/datetime", "value": "2009-12-11T02:06:25.580169"}, "covers": [3220447], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:02:27.167015"}, "latest_revision": 3, "key": "/works/OL10054489W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4034794A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10054540W 4 2020-12-05T08:25:45.154423 {"title": "Altersbedingter Mundartgebrauch", "covers": [3220496], "key": "/works/OL10054540W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4034869A"}}], "type": {"key": "/type/work"}, "subjects": ["German language", "Dialects"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T02:06:25.580169"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-05T08:25:45.154423"}}
+/type/work /works/OL10055002W 1 2009-12-11T02:06:25.580169 {"title": "Evolution, money, war and computers", "created": {"type": "/type/datetime", "value": "2009-12-11T02:06:25.580169"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:06:25.580169"}, "latest_revision": 1, "key": "/works/OL10055002W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4035362A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1005503W 1 2009-12-09T19:14:47.654413 {"title": "Di\u00e1rio de b\u00f4lso", "created": {"type": "/type/datetime", "value": "2009-12-09T19:14:47.654413"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:14:47.654413"}, "latest_revision": 1, "key": "/works/OL1005503W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL93615A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10055409W 4 2022-09-17T02:55:48.057749 {"title": "Doing Business with Germans", "covers": [3223649], "key": "/works/OL10055409W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4036168A"}}], "type": {"key": "/type/work"}, "subjects": ["Business communication", "Business etiquette", "Corporate culture", "National characteristics, german", "Intercultural communication"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T02:06:33.714917"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-17T02:55:48.057749"}}
+/type/work /works/OL10055502W 3 2010-04-28T07:02:27.167015 {"title": "Leicht wie der Geist der Rose. Selbstheilungskr\u00e4fte entdecken", "created": {"type": "/type/datetime", "value": "2009-12-11T02:06:33.714917"}, "covers": [3223863], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:02:27.167015"}, "latest_revision": 3, "key": "/works/OL10055502W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4036269A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10055938W 1 2009-12-11T02:06:33.714917 {"title": "Umweltanalytik Von Kohlenwasserstoffen", "created": {"type": "/type/datetime", "value": "2009-12-11T02:06:33.714917"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:06:33.714917"}, "latest_revision": 1, "key": "/works/OL10055938W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4036749A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10055961W 1 2009-12-11T02:06:33.714917 {"title": "Gesetz Uber Arbeitnehmererfindungen", "created": {"type": "/type/datetime", "value": "2009-12-11T02:06:33.714917"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:06:33.714917"}, "latest_revision": 1, "key": "/works/OL10055961W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4036771A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10056105W 1 2009-12-11T02:06:43.691423 {"title": "Gas Chromatography in Essential Oil Analysis", "created": {"type": "/type/datetime", "value": "2009-12-11T02:06:43.691423"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:06:43.691423"}, "latest_revision": 1, "key": "/works/OL10056105W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4036919A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10056354W 4 2021-10-04T04:47:42.412536 {"title": "Fachenglisch Fur Chemisch-Techn Assistenten 2a", "covers": [3224693], "key": "/works/OL10056354W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4037177A"}}], "type": {"key": "/type/work"}, "subjects": ["Chemistry, dictionaries"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T02:06:43.691423"}, "last_modified": {"type": "/type/datetime", "value": "2021-10-04T04:47:42.412536"}}
+/type/work /works/OL10056502W 1 2009-12-11T02:06:43.691423 {"title": "Theoretische Mechanik 12. Auflag", "created": {"type": "/type/datetime", "value": "2009-12-11T02:06:43.691423"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:06:43.691423"}, "latest_revision": 1, "key": "/works/OL10056502W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4037397A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10056593W 3 2010-04-28T07:02:27.167015 {"title": "Traumjobs Sind Nicht Nur Traume", "created": {"type": "/type/datetime", "value": "2009-12-11T02:06:43.691423"}, "covers": [3225214], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:02:27.167015"}, "latest_revision": 3, "key": "/works/OL10056593W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4037534A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10056632W 4 2012-06-30T17:32:03.035510 {"title": "Digitale Fotografie F\u00fcr Dummies", "created": {"type": "/type/datetime", "value": "2009-12-11T02:06:43.691423"}, "covers": [3225383], "last_modified": {"type": "/type/datetime", "value": "2012-06-30T17:32:03.035510"}, "latest_revision": 4, "key": "/works/OL10056632W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4037648A"}}], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL10057282W 3 2010-07-22T11:21:27.434339 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:06:53.406182"}, "subjects": ["Tragic, The", "History and criticism", "Contributions in concept of the tragic", "Theory", "Greek drama (Tragedy)", "The Tragic"], "subject_people": ["Aristotle", "Sophocles"], "key": "/works/OL10057282W", "title": "Die Suche nach der Schuld", "latest_revision": 3, "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4038722A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:21:27.434339"}, "revision": 3}
+/type/work /works/OL1005754W 3 2010-07-22T11:21:27.434339 {"created": {"type": "/type/datetime", "value": "2009-12-09T19:14:47.654413"}, "subject_places": ["Brazil"], "subjects": ["Civil procedure"], "latest_revision": 3, "key": "/works/OL1005754W", "title": "Novas linhas do processo civil", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL93637A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:21:27.434339"}, "revision": 3}
+/type/work /works/OL10057557W 3 2010-04-28T07:02:27.167015 {"title": "Gehirnschnitt-Modell / Brain Section Model", "created": {"type": "/type/datetime", "value": "2009-12-11T02:06:53.406182"}, "covers": [5209217], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:02:27.167015"}, "latest_revision": 3, "key": "/works/OL10057557W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4039114A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10057858W 3 2010-04-28T07:02:27.167015 {"title": "Voller Leben", "created": {"type": "/type/datetime", "value": "2009-12-11T02:06:53.406182"}, "covers": [3227744], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:02:27.167015"}, "latest_revision": 3, "key": "/works/OL10057858W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4039764A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10057866W 3 2010-04-28T07:02:27.167015 {"title": "Training in der Physiotherapie", "created": {"type": "/type/datetime", "value": "2009-12-11T02:06:53.406182"}, "covers": [3227775], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:02:27.167015"}, "latest_revision": 3, "key": "/works/OL10057866W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4039779A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10058289W 3 2010-04-28T07:02:27.167015 {"title": "Vom neurologischen Symptom zur Diagnose", "created": {"type": "/type/datetime", "value": "2009-12-11T02:07:05.015575"}, "covers": [3229464], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:02:27.167015"}, "latest_revision": 3, "key": "/works/OL10058289W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4040690A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10058467W 1 2009-12-11T02:07:05.015575 {"title": "Theoretische \u00d6kologie. Eine Einf\u00fchrung", "created": {"type": "/type/datetime", "value": "2009-12-11T02:07:05.015575"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:07:05.015575"}, "latest_revision": 1, "key": "/works/OL10058467W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4041141A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1005873W 2 2010-08-13T21:10:11.018250 {"subtitle": "& outros textos para teatro", "title": "Corpo mi\u0301stico", "created": {"type": "/type/datetime", "value": "2009-12-09T19:14:47.654413"}, "last_modified": {"type": "/type/datetime", "value": "2010-08-13T21:10:11.018250"}, "latest_revision": 2, "key": "/works/OL1005873W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL93652A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10058753W 3 2010-04-28T07:02:27.167015 {"title": "The Role of the Bacterial Membrane in Chromosome Replication and Partition", "created": {"type": "/type/datetime", "value": "2009-12-11T02:07:05.015575"}, "covers": [5209636], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:02:27.167015"}, "latest_revision": 3, "key": "/works/OL10058753W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4041733A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1005889W 1 2009-12-09T19:14:47.654413 {"title": "Padre Mororo\u0301", "created": {"type": "/type/datetime", "value": "2009-12-09T19:14:47.654413"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:14:47.654413"}, "latest_revision": 1, "key": "/works/OL1005889W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL93653A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10058929W 4 2010-12-27T23:13:02.368876 {"title": "Bereicherungsrecht", "created": {"type": "/type/datetime", "value": "2009-12-11T02:07:05.015575"}, "covers": [3231279], "last_modified": {"type": "/type/datetime", "value": "2010-12-27T23:13:02.368876"}, "latest_revision": 4, "key": "/works/OL10058929W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4042092A"}}], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL1006122W 3 2010-07-22T11:21:27.434339 {"created": {"type": "/type/datetime", "value": "2009-12-09T19:14:47.654413"}, "subject_places": ["Santo Amaro do Sul (Brazil)"], "subjects": ["Literary collections"], "latest_revision": 3, "key": "/works/OL1006122W", "title": "Momentos de Santo Amaro", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL93690A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:21:27.434339"}, "revision": 3}
+/type/work /works/OL1006252W 3 2010-07-22T11:21:27.434339 {"created": {"type": "/type/datetime", "value": "2009-12-09T19:14:47.654413"}, "subject_places": ["Brazil"], "subjects": ["Literature", "Reading (Elementary)", "Study and teaching (Elementary)"], "latest_revision": 3, "key": "/works/OL1006252W", "title": "A leitura e o ensino da literatura", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL93694A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:21:27.434339"}, "revision": 3}
+/type/work /works/OL1006332W 1 2009-12-09T19:15:49.908994 {"title": "A\u0301lea e vazio", "created": {"type": "/type/datetime", "value": "2009-12-09T19:15:49.908994"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:15:49.908994"}, "latest_revision": 1, "key": "/works/OL1006332W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL93696A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1006443W 3 2010-07-22T11:21:27.434339 {"created": {"type": "/type/datetime", "value": "2009-12-09T19:15:49.908994"}, "subjects": ["Poetry"], "subject_people": ["Jesus Christ"], "key": "/works/OL1006443W", "title": "Via dolorosa", "latest_revision": 3, "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL93707A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:21:27.434339"}, "revision": 3}
+/type/work /works/OL1006481W 1 2009-12-09T19:15:49.908994 {"title": "Cancioneiro romeno", "created": {"type": "/type/datetime", "value": "2009-12-09T19:15:49.908994"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:15:49.908994"}, "latest_revision": 1, "key": "/works/OL1006481W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL93710A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1006545W 3 2010-07-22T11:21:27.434339 {"created": {"type": "/type/datetime", "value": "2009-12-09T19:15:49.908994"}, "subject_places": ["Brazil"], "subjects": ["Program budgeting", "Business management", "Universities and colleges"], "latest_revision": 3, "key": "/works/OL1006545W", "title": "Budgeting and resource allocation in universities", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL93715A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:21:27.434339"}, "revision": 3}
+/type/work /works/OL1006599W 3 2010-07-20T11:19:19.969833 {"created": {"type": "/type/datetime", "value": "2009-12-09T19:15:49.908994"}, "title": "Do jornalismo poli\u0301tico a\u0300 indu\u0301stria cultural", "subject_places": ["Brazil"], "last_modified": {"type": "/type/datetime", "value": "2010-07-20T11:19:19.969833"}, "latest_revision": 3, "key": "/works/OL1006599W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL93736A"}}], "subject_times": ["20th century"], "type": {"key": "/type/work"}, "subjects": ["Journalism", "Press and politics", "Political aspects", "History", "Ultima hora (Rio de Janeiro, Brazil)", "Not\u00edcias populares (S\u00e3o Paulo, Brazil)", "Political aspects of Journalism"], "revision": 3}
+/type/work /works/OL1006731W 3 2010-07-22T11:21:27.434339 {"created": {"type": "/type/datetime", "value": "2009-12-09T19:15:49.908994"}, "subject_places": ["Brazil"], "subjects": ["Public health laws"], "latest_revision": 3, "key": "/works/OL1006731W", "title": "Direito da sau\u0301de", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL93783A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:21:27.434339"}, "revision": 3}
+/type/work /works/OL1006896W 1 2009-12-09T19:15:49.908994 {"title": "Variante Gotemburgo", "created": {"type": "/type/datetime", "value": "2009-12-09T19:15:49.908994"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:15:49.908994"}, "latest_revision": 1, "key": "/works/OL1006896W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL93844A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10070900W 2 2020-11-22T18:27:38.248188 {"last_modified": {"type": "/type/datetime", "value": "2020-11-22T18:27:38.248188"}, "title": "Pyonhwa ui sidae e uri cholmunidul ege (Taehak kyoyang chongso)", "created": {"type": "/type/datetime", "value": "2009-12-11T02:09:40.192095"}, "subjects": ["Economic conditions"], "latest_revision": 2, "key": "/works/OL10070900W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4055015A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10071308W 2 2020-12-07T05:30:18.215041 {"title": "Master of Manipulation", "key": "/works/OL10071308W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4055202A"}}], "type": {"key": "/type/work"}, "subjects": ["Politics and government", "Foreign relations", "National security", "History"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T02:09:46.515383"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-07T05:30:18.215041"}}
+/type/work /works/OL10071894W 2 2020-11-17T11:11:55.186330 {"last_modified": {"type": "/type/datetime", "value": "2020-11-17T11:11:55.186330"}, "title": "Onu kwangdae ui sarang", "created": {"type": "/type/datetime", "value": "2009-12-11T02:09:46.515383"}, "subjects": ["Comedians", "Biography"], "latest_revision": 2, "key": "/works/OL10071894W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4055451A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10072089W 2 2020-11-22T19:47:55.062750 {"last_modified": {"type": "/type/datetime", "value": "2020-11-22T19:47:55.062750"}, "title": "21-segi sin kwahak wollon", "created": {"type": "/type/datetime", "value": "2009-12-11T02:09:52.982619"}, "subjects": ["Forecasting", "Physical sciences", "Science and civilization", "Progress", "Philosophy", "Social sciences", "Metaphysics"], "latest_revision": 2, "key": "/works/OL10072089W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4055557A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10072266W 2 2020-09-13T20:29:50.501291 {"last_modified": {"type": "/type/datetime", "value": "2020-09-13T20:29:50.501291"}, "title": "Ilsim kwa silchon", "created": {"type": "/type/datetime", "value": "2009-12-11T02:09:52.982619"}, "subjects": ["East and West", "Comparative Philosophy", "Philosophy and religion"], "latest_revision": 2, "key": "/works/OL10072266W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4055662A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10072343W 1 2009-12-11T02:09:52.982619 {"title": "Yoksa ui yoro", "created": {"type": "/type/datetime", "value": "2009-12-11T02:09:52.982619"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:09:52.982619"}, "latest_revision": 1, "key": "/works/OL10072343W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4055710A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10072360W 1 2009-12-11T02:09:52.982619 {"title": "Hanul arae ku muot i nopta hario", "created": {"type": "/type/datetime", "value": "2009-12-11T02:09:52.982619"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:09:52.982619"}, "latest_revision": 1, "key": "/works/OL10072360W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4055716A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10072467W 2 2020-11-27T03:22:24.573837 {"last_modified": {"type": "/type/datetime", "value": "2020-11-27T03:22:24.573837"}, "title": "Uri munhwa ui susukkekki", "created": {"type": "/type/datetime", "value": "2009-12-11T02:09:52.982619"}, "subjects": ["Social life and customs", "Civilization"], "latest_revision": 2, "key": "/works/OL10072467W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4055761A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10072772W 2 2020-11-25T15:03:47.663387 {"last_modified": {"type": "/type/datetime", "value": "2020-11-25T15:03:47.663387"}, "title": "Kaebang chou chedo e kwanhan yongu", "created": {"type": "/type/datetime", "value": "2009-12-11T02:09:52.982619"}, "subjects": ["Alternatives to imprisonment", "Open prisons"], "latest_revision": 2, "key": "/works/OL10072772W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4055879A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10073031W 2 2020-11-22T18:24:40.278886 {"last_modified": {"type": "/type/datetime", "value": "2020-11-22T18:24:40.278886"}, "title": "Pon", "created": {"type": "/type/datetime", "value": "2009-12-11T02:09:52.982619"}, "subjects": ["Conduct of life"], "latest_revision": 2, "key": "/works/OL10073031W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4056026A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL1007308W 3 2010-07-22T11:21:27.434339 {"created": {"type": "/type/datetime", "value": "2009-12-09T19:16:41.643142"}, "subject_places": ["Brazil"], "subjects": ["Fiction", "Italians", "Immigrants"], "latest_revision": 3, "key": "/works/OL1007308W", "title": "A suavidade do sol poente", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL93912A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:21:27.434339"}, "revision": 3}
+/type/work /works/OL10073334W 1 2009-12-11T02:09:59.681091 {"title": "Supingkusu ui choju", "created": {"type": "/type/datetime", "value": "2009-12-11T02:09:59.681091"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:09:59.681091"}, "latest_revision": 1, "key": "/works/OL10073334W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4056170A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10073354W 1 2009-12-11T02:09:59.681091 {"title": "Hanguk chongdang chegye punsok", "created": {"type": "/type/datetime", "value": "2009-12-11T02:09:59.681091"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:09:59.681091"}, "latest_revision": 1, "key": "/works/OL10073354W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4056179A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10073545W 2 2010-08-04T03:08:47.265458 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:09:59.681091"}, "subjects": ["Korean poetry", "History and criticism"], "latest_revision": 2, "key": "/works/OL10073545W", "title": "Hanguk hyondaesi ui chontong kwa saeroum", "subject_times": ["20th century"], "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4056284A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-08-04T03:08:47.265458"}, "revision": 2}
+/type/work /works/OL10073550W 2 2020-11-29T22:10:29.360204 {"last_modified": {"type": "/type/datetime", "value": "2020-11-29T22:10:29.360204"}, "title": "Hanguk munhak sasang ui hyondaesong yongu", "created": {"type": "/type/datetime", "value": "2009-12-11T02:09:59.681091"}, "subjects": ["Korean literature", "Literature and folklore", "Religion and literature", "Mythology in literature", "History and criticism"], "latest_revision": 2, "key": "/works/OL10073550W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4056287A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL1007370W 3 2010-07-22T11:21:27.434339 {"last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:21:27.434339"}, "latest_revision": 3, "key": "/works/OL1007370W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL93916A"}}], "created": {"type": "/type/datetime", "value": "2009-12-09T19:16:41.643142"}, "title": "O salto para a vida", "subject_places": ["Ukraine", "Brazil", "Sudova Vyshni\ufe20a\ufe21", "Poland", "Przemy\u015bl (Przemy\u015bl)", "Przemy\u015bl (Poland)", "Sudova Vyshni\ufe20a\ufe21 (Ukraine)"], "subjects": ["Biography", "Personal narratives", "Holocaust, Jewish (1939-1945)", "Jews", "Holocaust survivors"], "subject_people": ["L\u00e9a Mamber (1918-1993)"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10073743W 2 2020-11-22T17:51:28.343882 {"last_modified": {"type": "/type/datetime", "value": "2020-11-22T17:51:28.343882"}, "title": "Chongchaek punsongnon", "created": {"type": "/type/datetime", "value": "2009-12-11T02:09:59.681091"}, "subjects": ["Policy sciences"], "latest_revision": 2, "key": "/works/OL10073743W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4056388A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10074092W 3 2010-07-22T11:21:27.434339 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:10:07.308099"}, "subject_places": ["Korea (South)"], "subjects": ["Vernacular architecture", "Encyclopedias"], "latest_revision": 3, "key": "/works/OL10074092W", "title": "Algi swiun Han\u02bcguk ko\u0306nch\u02bbuk yongo\u0306 sajo\u0306n", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4056577A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:21:27.434339"}, "revision": 3}
+/type/work /works/OL10074112W 3 2010-07-22T11:21:27.434339 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:10:07.308099"}, "subject_places": ["Korea"], "subjects": ["History and criticism", "Music", "A\u02beak"], "latest_revision": 3, "key": "/works/OL10074112W", "title": "Han\u02beguk aaksa y\u014fn\u02begu", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4056583A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:21:27.434339"}, "revision": 3}
+/type/work /works/OL10074241W 1 2009-12-11T02:10:07.308099 {"title": "Ttang ui chasiktul", "created": {"type": "/type/datetime", "value": "2009-12-11T02:10:07.308099"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:10:07.308099"}, "latest_revision": 1, "key": "/works/OL10074241W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4056659A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10074650W 3 2020-11-29T22:12:33.472899 {"last_modified": {"type": "/type/datetime", "value": "2020-11-29T22:12:33.472899"}, "title": "Kumnyung chayuhwa wa kumnyung kamdok", "created": {"type": "/type/datetime", "value": "2009-12-11T02:10:07.308099"}, "subjects": ["Banks and banking", "State supervision"], "latest_revision": 3, "key": "/works/OL10074650W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4056884A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10075069W 2 2020-12-04T20:39:08.176088 {"title": "Koryo sidae hyangni yongu", "key": "/works/OL10075069W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4057125A"}}], "type": {"key": "/type/work"}, "subjects": ["Local officials and employees", "History", "Officials and employees"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T02:10:15.264680"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-04T20:39:08.176088"}}
+/type/work /works/OL10075159W 2 2020-11-29T22:07:03.111626 {"last_modified": {"type": "/type/datetime", "value": "2020-11-29T22:07:03.111626"}, "title": "Tonghap kyokwa unyong", "created": {"type": "/type/datetime", "value": "2009-12-11T02:10:15.264680"}, "subjects": ["Curricula", "Education", "History"], "latest_revision": 2, "key": "/works/OL10075159W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4057178A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10075326W 2 2020-12-05T03:13:49.066588 {"title": "Siga munhak yongu", "key": "/works/OL10075326W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4057280A"}}], "type": {"key": "/type/work"}, "subjects": ["Sijo", "History and criticism", "Kasa", "Korean poetry"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T02:10:15.264680"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-05T03:13:49.066588"}}
+/type/work /works/OL10075427W 3 2010-07-22T11:21:27.434339 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:10:15.264680"}, "subject_places": ["China", "Korea (North)", "Korea (South)"], "subjects": ["Foreign relations", "Korean reunification question (1945- )", "Korean reunification question (1945- )"], "latest_revision": 3, "key": "/works/OL10075427W", "title": "Hanbando p\u02bby\u014fnghwa ch\u02bbeje kuch\u02bbuk e taehan Chungguk \u016di ipchang kwa ch\u014fllyak", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4057322A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:21:27.434339"}, "revision": 3}
+/type/work /works/OL10075435W 2 2020-12-07T13:31:35.524928 {"title": "Pukhan ui sanop ipchi wa Nambuk hyomnyok", "key": "/works/OL10075435W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4057326A"}}], "type": {"key": "/type/work"}, "subjects": ["High technology industries", "Location", "Industrial location", "Foreign economic relations"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T02:10:15.264680"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-07T13:31:35.524928"}}
+/type/work /works/OL10075840W 2 2020-12-04T18:54:00.893174 {"title": "Hanguk, Cheju, Okinawa minyo wa minsongnon (Haksul chongso)", "key": "/works/OL10075840W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4057563A"}}], "type": {"key": "/type/work"}, "subjects": ["Folklore", "Korean Folk songs", "History and criticism", "Social life and customs"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T02:10:15.264680"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-04T18:54:00.893174"}}
+/type/work /works/OL10076435W 2 2020-12-05T02:42:12.424342 {"title": "Hancha nun uri kul ida", "key": "/works/OL10076435W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4057960A"}}], "type": {"key": "/type/work"}, "subjects": ["Civilization", "Chinese influences", "Chinese characters", "Korean language", "History"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T02:10:23.124184"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-05T02:42:12.424342"}}
+/type/work /works/OL10076781W 3 2010-07-22T11:21:27.434339 {"last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:21:27.434339"}, "latest_revision": 3, "key": "/works/OL10076781W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4058205A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T02:10:23.124184"}, "title": "Ab\u014fji \u016di \u014flgul", "subject_places": ["Korea (South)"], "subjects": ["Biography"], "subject_people": ["Kyu-ch\u02bb\u014fl Ch\u02bbae (1937-)"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10076888W 2 2020-12-04T19:06:19.768006 {"title": "Nama innun yoksa, sarajinun konchungmul", "key": "/works/OL10076888W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4058286A"}}], "type": {"key": "/type/work"}, "subjects": ["Architecture", "History"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T02:10:23.124184"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-04T19:06:19.768006"}}
+/type/work /works/OL1007697W 1 2009-12-09T19:16:41.643142 {"title": "Dos rivales y una fuga", "created": {"type": "/type/datetime", "value": "2009-12-09T19:16:41.643142"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:16:41.643142"}, "latest_revision": 1, "key": "/works/OL1007697W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL93996A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10076999W 1 2009-12-11T02:10:23.124184 {"title": "Business Dictionary with Indexes", "created": {"type": "/type/datetime", "value": "2009-12-11T02:10:23.124184"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:10:23.124184"}, "latest_revision": 1, "key": "/works/OL10076999W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4058387A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10077014W 1 2009-12-11T02:10:23.124184 {"title": "Annual of the Swedish Theological Institute - 1970-71", "created": {"type": "/type/datetime", "value": "2009-12-11T02:10:23.124184"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:10:23.124184"}, "latest_revision": 1, "key": "/works/OL10077014W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4058395A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10077506W 6 2022-12-29T08:35:05.269212 {"subjects": ["Islam", "Islamic philosophy", "Theodicy", "Optimism", "Theodicee"], "key": "/works/OL10077506W", "title": "Ibn Taymiyya's Theodicy of Perpetual Optimism (Islamic Philosophy, Theology, and Science)", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4058888A"}}], "type": {"key": "/type/work"}, "covers": [3338244], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2009-12-11T02:10:32.891218"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-29T08:35:05.269212"}}
+/type/work /works/OL10077553W 5 2022-05-25T04:27:16.004314 {"subjects": ["Vendetta in literature", "Revenge", "Vendetta", "History", "Feudalism, europe", "Europe, history"], "key": "/works/OL10077553W", "title": "Feud In Medieval And Early Modern Europe", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4058930A"}}], "type": {"key": "/type/work"}, "covers": [3336468], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2009-12-11T02:10:32.891218"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T04:27:16.004314"}}
+/type/work /works/OL10077585W 5 2021-09-10T15:03:07.329205 {"title": "Le Sucre", "covers": [3338376], "subject_places": ["Mediterranean Region"], "subjects": ["History", "Commerce", "Sugar trade", "Sugar", "Mediterranean region, history"], "key": "/works/OL10077585W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4058954A"}}], "subject_times": ["To 1500"], "type": {"key": "/type/work"}, "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2009-12-11T02:10:32.891218"}, "last_modified": {"type": "/type/datetime", "value": "2021-09-10T15:03:07.329205"}}
+/type/work /works/OL10077589W 5 2022-12-15T01:31:51.176777 {"subjects": ["Comparative government", "Civil-military relations", "Military art and science", "Relations pouvoir civil-pouvoir militaire", "POLITICAL SCIENCE", "Political Process", "Political Advocacy"], "key": "/works/OL10077589W", "title": "Managing civil-military cooperation", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4058957A"}}], "type": {"key": "/type/work"}, "covers": [9786347], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2009-12-11T02:10:32.891218"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-15T01:31:51.176777"}}
+/type/work /works/OL10077717W 1 2009-12-11T02:10:32.891218 {"title": "Het Habshuisje", "created": {"type": "/type/datetime", "value": "2009-12-11T02:10:32.891218"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:10:32.891218"}, "latest_revision": 1, "key": "/works/OL10077717W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4059093A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10077882W 2 2010-11-15T21:50:12.738063 {"last_modified": {"type": "/type/datetime", "value": "2010-11-15T21:50:12.738063"}, "latest_revision": 2, "key": "/works/OL10077882W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4059281A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T02:10:32.891218"}, "title": "Austria", "subject_places": ["Austria", "Southern Germany"], "subjects": ["Maps"], "subject_times": ["To 1800"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10077933W 5 2020-12-20T15:51:14.870791 {"subjects": ["Hebrew language", "Verb", "Grammar"], "key": "/works/OL10077933W", "title": "The Function of the Niphal in Biblical Hebrew in Relationship to Other Passive Reflexive Verbal Stems and to the Pual and Hophal in Particular (Studia Semitica Neerlandica)", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4059344A"}}], "type": {"key": "/type/work"}, "covers": [3338470], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2009-12-11T02:10:32.891218"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-20T15:51:14.870791"}}
+/type/work /works/OL10077998W 2 2020-11-25T07:46:13.361021 {"last_modified": {"type": "/type/datetime", "value": "2020-11-25T07:46:13.361021"}, "title": "Paradijs der lage landen", "created": {"type": "/type/datetime", "value": "2009-12-11T02:10:32.891218"}, "subjects": ["Immigrants", "Government policy", "Ethnic relations", "Minorities"], "latest_revision": 2, "key": "/works/OL10077998W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4059430A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10078040W 2 2020-08-04T00:38:47.078651 {"last_modified": {"type": "/type/datetime", "value": "2020-08-04T00:38:47.078651"}, "title": "The Passionate Liberal", "created": {"type": "/type/datetime", "value": "2009-12-11T02:10:32.891218"}, "subjects": ["Liberalism", "Right and left (political science)"], "latest_revision": 2, "key": "/works/OL10078040W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4059468A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10078912W 1 2009-12-11T02:10:53.294715 {"title": "Micromechanical Modelling of the Transverse Strenghts of Unidrectional Glass Fibre Reinforced Polyester", "created": {"type": "/type/datetime", "value": "2009-12-11T02:10:53.294715"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:10:53.294715"}, "latest_revision": 1, "key": "/works/OL10078912W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4060349A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10079007W 5 2022-08-13T05:15:01.415750 {"subjects": ["Electromagnetic waves", "Radiation", "Ondes \u00e9lectromagn\u00e9tiques", "Electromagnetic radiation"], "key": "/works/OL10079007W", "title": "Electromagnetic Waves", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4060474A"}}], "type": {"key": "/type/work"}, "covers": [3338740], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2009-12-11T02:10:53.294715"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-13T05:15:01.415750"}}
+/type/work /works/OL10079172W 3 2010-04-28T07:02:27.167015 {"title": "Novel Tissue-equivalent Proportional Counter Based On A Gas Electron Multiplier", "created": {"type": "/type/datetime", "value": "2009-12-11T02:11:02.350398"}, "covers": [3338943], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:02:27.167015"}, "latest_revision": 3, "key": "/works/OL10079172W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4060665A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10079475W 3 2010-04-28T07:02:27.167015 {"title": "Rough Dialectics. Sorokin's Philosophy of Value", "created": {"type": "/type/datetime", "value": "2009-12-11T02:11:02.350398"}, "covers": [5430061], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:02:27.167015"}, "latest_revision": 3, "key": "/works/OL10079475W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4061018A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10079652W 4 2022-12-30T08:24:14.494491 {"title": "Fr uhe Neuzeit, vol. 95: Sp athumanismus und Konfessionspolitik: die europ aische Gelehrtenrepublik um 1600 im Spiegel der Korrespondenzen Georg Michael Lingelsheims", "subjects": ["History of Europe", "Intellectual life", "History", "Humanists"], "key": "/works/OL10079652W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4061206A"}}], "type": {"key": "/type/work"}, "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T02:11:02.350398"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-30T08:24:14.494491"}}
+/type/work /works/OL10080049W 1 2009-12-11T02:11:11.854399 {"title": "Les onctions baptismales dans la tradition syrienne", "created": {"type": "/type/datetime", "value": "2009-12-11T02:11:11.854399"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:11:11.854399"}, "latest_revision": 1, "key": "/works/OL10080049W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4061377A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10080109W 1 2009-12-11T02:11:11.854399 {"title": "Baron Friedrich von H\u00fcgel's Philosophy of Religion", "created": {"type": "/type/datetime", "value": "2009-12-11T02:11:11.854399"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:11:11.854399"}, "latest_revision": 1, "key": "/works/OL10080109W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4061413A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10080310W 1 2009-12-11T02:11:11.854399 {"title": "Om periodiske Depressionstilstande og deres Patogenese", "created": {"type": "/type/datetime", "value": "2009-12-11T02:11:11.854399"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:11:11.854399"}, "latest_revision": 1, "key": "/works/OL10080310W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4061602A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10080312W 5 2022-12-29T18:10:19.856318 {"title": "The Portrayal of Christ in the Syriac Commentary on the Diatessaron", "covers": [3339398], "key": "/works/OL10080312W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4061602A"}}], "type": {"key": "/type/work"}, "subjects": ["Versions", "Diatessaron", "History of doctrines", "Criticism, interpretation", "History", "In literature", "Commentaren", "Syrisch", "Christologie", "Bible"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2009-12-11T02:11:11.854399"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-29T18:10:19.856318"}}
+/type/work /works/OL10080326W 3 2010-07-22T11:21:27.434339 {"last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:21:27.434339"}, "latest_revision": 3, "key": "/works/OL10080326W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4061619A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T02:11:11.854399"}, "title": "Catalogue des \u00e9ditions du XVIe si\u00e8cle conserv\u00e9es \u00e0 la Biblioth\u00e8que del'abbaye de Maredsous", "subject_places": ["Belgium"], "subjects": ["Catalogs", "Bibliography", "Monastic libraries", "Early printed books", "Abbaye de Maredsous. Biblioth\u00e8que", "Abbaye de Maredsous"], "subject_times": ["16th century"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10080495W 4 2020-09-12T11:01:57.994641 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:11:11.854399"}, "subjects": ["Social prediction", "Forecasting", "Economic forecasting", "Physical geography", "Flood forecasting", "Human geography"], "latest_revision": 4, "key": "/works/OL10080495W", "title": "Toekomstbeelden", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4061864A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-09-12T11:01:57.994641"}, "covers": [5212910], "revision": 4}
+/type/work /works/OL1008076W 1 2009-12-09T19:16:41.643142 {"title": "Topless", "created": {"type": "/type/datetime", "value": "2009-12-09T19:16:41.643142"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:16:41.643142"}, "latest_revision": 1, "key": "/works/OL1008076W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL94041A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10080800W 4 2019-03-12T10:44:49.096434 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:11:11.854399"}, "subjects": ["Medicine", "Abstracting and indexing", "Subject headings", "Terminology", "Medical informatics"], "latest_revision": 4, "key": "/works/OL10080800W", "title": "Thesaurus of Health Informatics, (Studies in Health Technology and Informatics, 53)", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4062256A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2019-03-12T10:44:49.096434"}, "covers": [3339739], "revision": 4}
+/type/work /works/OL10080878W 4 2020-08-19T01:41:00.166176 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:11:11.854399"}, "subjects": ["United states, foreign relations, europe", "Europe, foreign relations"], "latest_revision": 4, "key": "/works/OL10080878W", "title": "Ever Closer Partnership", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4062350A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-08-19T01:41:00.166176"}, "covers": [5213284], "revision": 4}
+/type/work /works/OL10081833W 2 2012-06-18T00:53:14.552270 {"title": "Unternehmen Zahnarztpraxis. Springers gro\u00dfer Wirtschafts- und Rechtsratgeber f\u00fcr Zahn\u00e4rzte", "created": {"type": "/type/datetime", "value": "2009-12-11T02:11:21.065206"}, "last_modified": {"type": "/type/datetime", "value": "2012-06-18T00:53:14.552270"}, "latest_revision": 2, "key": "/works/OL10081833W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4063449A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL1008196W 3 2010-07-22T11:31:31.906069 {"created": {"type": "/type/datetime", "value": "2009-12-09T19:16:41.643142"}, "subject_places": ["Brazil"], "subjects": ["Executions (Law)"], "latest_revision": 3, "key": "/works/OL1008196W", "title": "Do procedimento de execuc\u0327a\u0303o", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL94064A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:31:31.906069"}, "revision": 3}
+/type/work /works/OL10082035W 1 2009-12-11T02:11:21.065206 {"title": "Ventricular/Vascular Coupling", "created": {"type": "/type/datetime", "value": "2009-12-11T02:11:21.065206"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:11:21.065206"}, "latest_revision": 1, "key": "/works/OL10082035W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4063834A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10082180W 3 2010-04-28T07:02:27.167015 {"title": "Kelsos Kampf mit den Flu\u00dfpiraten. Mit der Protector vor Kalkutta", "created": {"type": "/type/datetime", "value": "2009-12-11T02:11:27.978828"}, "covers": [3233195], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:02:27.167015"}, "latest_revision": 3, "key": "/works/OL10082180W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4064045A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10083038W 3 2010-04-28T07:02:27.167015 {"title": "Das Duell der Gro\u00dfv\u00e4ter. Und andere Geschichten aus meiner Kindheit in Ostpreu\u00dfen", "created": {"type": "/type/datetime", "value": "2009-12-11T02:11:27.978828"}, "covers": [3237401], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:02:27.167015"}, "latest_revision": 3, "key": "/works/OL10083038W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4065141A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10083266W 4 2010-12-21T06:09:11.935997 {"title": "Pocket Thema. Technisches Alltagswissen.", "created": {"type": "/type/datetime", "value": "2009-12-11T02:11:36.869658"}, "covers": [3238163], "last_modified": {"type": "/type/datetime", "value": "2010-12-21T06:09:11.935997"}, "latest_revision": 4, "key": "/works/OL10083266W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4065591A"}}], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL10083743W 3 2010-07-22T11:31:31.906069 {"last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:31:31.906069"}, "title": "Das Hakenkreuz", "created": {"type": "/type/datetime", "value": "2009-12-11T02:11:36.869658"}, "subjects": ["History", "Politics and culture", "Culture", "Swastikas", "National socialism", "Political aspects", "Political aspects of Swastikas"], "latest_revision": 3, "key": "/works/OL10083743W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4066297A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10083786W 4 2010-07-22T11:31:31.906069 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:11:36.869658"}, "subjects": ["Physics", "History"], "latest_revision": 4, "key": "/works/OL10083786W", "title": "Historische Elemente einer Prinzipienphysik", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4066363A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:31:31.906069"}, "covers": [5352393], "revision": 4}
+/type/work /works/OL10083792W 3 2010-04-28T07:02:27.167015 {"title": "M\u00f6wengel\u00e4chter", "created": {"type": "/type/datetime", "value": "2009-12-11T02:11:36.869658"}, "covers": [3239944], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:02:27.167015"}, "latest_revision": 3, "key": "/works/OL10083792W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4066367A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1008381W 1 2009-12-09T19:17:43.675214 {"title": "Roteiro de Bom Jardim", "created": {"type": "/type/datetime", "value": "2009-12-09T19:17:43.675214"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:17:43.675214"}, "latest_revision": 1, "key": "/works/OL1008381W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL94090A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10084036W 1 2009-12-11T02:11:36.869658 {"title": "Schauspieltexte Im Theatermuseum Der Universitat Zu Koln", "created": {"type": "/type/datetime", "value": "2009-12-11T02:11:36.869658"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:11:36.869658"}, "latest_revision": 1, "key": "/works/OL10084036W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4066610A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10084139W 2 2021-12-29T01:41:11.404906 {"title": "Lexicographi Graeci: Vol. IX: Pollucis Onomasticon", "key": "/works/OL10084139W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4066675A"}}], "type": {"key": "/type/work"}, "subjects": ["History, ancient"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T02:11:45.410425"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-29T01:41:11.404906"}}
+/type/work /works/OL10084170W 3 2010-04-28T07:02:27.167015 {"title": "Frauen zeigen Profil. Weibliche Wege zum Erfolg", "created": {"type": "/type/datetime", "value": "2009-12-11T02:11:45.410425"}, "covers": [3272018], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:02:27.167015"}, "latest_revision": 3, "key": "/works/OL10084170W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4066707A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10084338W 3 2010-07-22T11:31:31.906069 {"last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:31:31.906069"}, "title": "Gr\u00f6den", "created": {"type": "/type/datetime", "value": "2009-12-11T02:11:45.410425"}, "subjects": ["Economic conditions", "Gardena Valley, Italy", "Italy Gardena Valley"], "latest_revision": 3, "key": "/works/OL10084338W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4067035A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10084378W 1 2009-12-11T02:11:45.410425 {"title": "Profitipps f\u00fcr Anwender - Internet mit Internet- Explorer 5.5. Tipps f\u00fcr die Praxis", "created": {"type": "/type/datetime", "value": "2009-12-11T02:11:45.410425"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:11:45.410425"}, "latest_revision": 1, "key": "/works/OL10084378W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4067081A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10085103W 4 2020-11-29T14:26:32.726644 {"last_modified": {"type": "/type/datetime", "value": "2020-11-29T14:26:32.726644"}, "title": "Verknupfung betriebswirtschaftlicher und gesellschaftspolitischer Ziele in kommunalen Versorgungsunternehmen", "created": {"type": "/type/datetime", "value": "2009-12-11T02:11:55.830657"}, "subjects": ["Public utilities", "Municipal services", "Government business enterprises", "Finance"], "latest_revision": 4, "key": "/works/OL10085103W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4067999A"}}], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL10085860W 4 2020-12-07T18:02:07.104507 {"title": "Studien Zur Stammbuchpraxis Der Fruhen Neuzeit", "covers": [5214950], "key": "/works/OL10085860W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4068812A"}}], "type": {"key": "/type/work"}, "subjects": ["Autograph albums", "History", "Interpersonal communication"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T02:11:55.830657"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-07T18:02:07.104507"}}
+/type/work /works/OL10085963W 2 2020-12-08T07:04:56.398720 {"title": "Die Angemessene Nutzung Gemeinschaftlicher Ressourcen Am Beispiel Von Flussen Und Speziellen Okosystemen", "key": "/works/OL10085963W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4068918A"}}], "type": {"key": "/type/work"}, "subjects": ["Natural resources", "Law and legislation", "International cooperation", "International Environmental law", "Alpen", "Wassernutzung", "Nat\u00fcrliche Ressourcen", "Nutzungsrecht", "V\u00f6lkerrechtlicher Vertrag", "Hochschulschrift"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T02:11:55.830657"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-08T07:04:56.398720"}}
+/type/work /works/OL10086025W 1 2009-12-11T02:11:55.830657 {"title": "Michael Ende", "created": {"type": "/type/datetime", "value": "2009-12-11T02:11:55.830657"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:11:55.830657"}, "latest_revision": 1, "key": "/works/OL10086025W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4068994A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10086042W 2 2020-12-08T06:38:54.995180 {"title": "Radikalisierte Phanomenologie (Reihe Der Osterreichischen Gesellschaft Fur Phanomenologie,)", "key": "/works/OL10086042W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4069013A"}}], "type": {"key": "/type/work"}, "subjects": ["Phenomenology"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T02:11:55.830657"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-08T06:38:54.995180"}}
+/type/work /works/OL10086250W 2 2020-12-08T06:39:32.393015 {"title": "Theorienvergleichende Rekonstruktion Mikrookonomischer Modelle Zum Arbeitsangebot Privater Haushalte (Europaische Hochschulschriften: Reihe 5, Volks- Und Betriebs)", "key": "/works/OL10086250W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4069232A"}}], "type": {"key": "/type/work"}, "subjects": ["Haushalt", "Arbeitsangebot", "Mikrookonomisches Modell"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T02:12:06.487692"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-08T06:39:32.393015"}}
+/type/work /works/OL10086304W 4 2020-08-19T11:24:22.195710 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:12:06.487692"}, "subjects": ["Criticism and interpretation", "Music and literature", "Schubert, franz, 1797-1828"], "subject_people": ["Friedrich von Matthisson (1761-1831)", "Franz Schubert (1797-1828)"], "key": "/works/OL10086304W", "title": "Der Komponist als produzierender Leser", "latest_revision": 4, "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4069286A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-08-19T11:24:22.195710"}, "revision": 4}
+/type/work /works/OL10086405W 2 2020-12-08T06:34:33.859255 {"title": "Rechtliche Grundlagen Bayerischer Zensur Im 19. Jahrhundert", "key": "/works/OL10086405W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4069393A"}}], "type": {"key": "/type/work"}, "subjects": ["Censorship", "History", "Intellectual freedom", "Press law"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T02:12:06.487692"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-08T06:34:33.859255"}}
+/type/work /works/OL10086575W 4 2020-12-19T11:27:34.159098 {"subjects": ["Language arts", "German philology", "Study and teaching", "German language", "Grammar", "Competence and performance (Linguistics)", "Fremdsprachenlernen", "Grammatik", "Kommunikative Kompetenz", "Lernpsychologie", "Deutschunterricht", "Ausl\u00e4nder", "Kommunikative Didaktik"], "subtitle": "Bindeglied Zwischen Linguistik, Psychologie Und Fremdsprachendidaktik", "key": "/works/OL10086575W", "title": "Eine Grammatik F\u00fcr Lernende Unter Funktional-kommunikativem Blickwinkel", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4069580A"}}], "type": {"key": "/type/work"}, "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T02:12:06.487692"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-19T11:27:34.159098"}}
+/type/work /works/OL100867W 3 2010-07-22T11:31:31.906069 {"last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:31:31.906069"}, "title": "The social origins of the sexual division of labour", "created": {"type": "/type/datetime", "value": "2009-10-17T17:59:12.548417"}, "subjects": ["History", "Sex discrimination against women", "Sex role", "Sex discrimination in employment", "Division of labor", "Social conditions", "Women"], "latest_revision": 3, "key": "/works/OL100867W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL32353A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10086912W 3 2010-04-28T07:02:27.167015 {"title": "Die Entnazifizierte Sprache (Variolingua: Nonstandard, Standard, Substandard)", "created": {"type": "/type/datetime", "value": "2009-12-11T02:12:06.487692"}, "covers": [3241919], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:02:27.167015"}, "latest_revision": 3, "key": "/works/OL10086912W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4069955A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10087103W 3 2021-09-14T11:44:13.235997 {"title": "Sprachnormenwandel Im Geschriebenen Deutsch an Der Schwelle Zum 21. Jahrhundert (Duisburger Arbeiten Zur Sprach- Und Kulturwissenschaft)", "key": "/works/OL10087103W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4070148A"}}], "type": {"key": "/type/work"}, "subjects": ["German language", "Variation", "Grammar", "History", "Writing", "German language, grammar", "German language, writing", "German language, history"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T02:12:15.603293"}, "last_modified": {"type": "/type/datetime", "value": "2021-09-14T11:44:13.235997"}}
+/type/work /works/OL10087458W 3 2020-12-18T03:43:02.699337 {"title": "Weltenspringer: Ein Linguistisch-Integratives Modell Zum Umgang Mit Der Gerichtetheit Sprachlicher Auerungen in Moglichen Welten (Europaische Hochschulschriften: Reihe 21, Linguistik)", "subjects": ["Speech acts (linguistics)", "Language and culture", "Acting", "Speech acts (Linguistics)", "Intentionality (Philosophy)"], "key": "/works/OL10087458W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4070579A"}}], "type": {"key": "/type/work"}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T02:12:15.603293"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-18T03:43:02.699337"}}
+/type/work /works/OL10087593W 3 2010-07-22T11:31:31.906069 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:12:15.603293"}, "subjects": ["German drama", "Mythology in literature", "Mythology, Classical", "History and criticism", "Classical Mythology"], "latest_revision": 3, "key": "/works/OL10087593W", "title": "Mythopoetik", "subject_times": ["20th century"], "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4070736A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:31:31.906069"}, "revision": 3}
+/type/work /works/OL10087903W 3 2010-07-22T11:31:31.906069 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:12:15.603293"}, "subjects": ["Fiction"], "subject_people": ["Klemens Maria Hofbauer Saint (1751-820)"], "key": "/works/OL10087903W", "title": "Listen, Vienna!", "latest_revision": 3, "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4071173A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:31:31.906069"}, "revision": 3}
+/type/work /works/OL10087968W 1 2009-12-11T02:12:15.603293 {"title": "Innsbrucker theologische Studien, vol. 62: Keine Theologie ohne Kirche", "created": {"type": "/type/datetime", "value": "2009-12-11T02:12:15.603293"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:12:15.603293"}, "latest_revision": 1, "key": "/works/OL10087968W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4071310A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1008839W 1 2009-12-09T19:17:43.675214 {"title": "Meninos do mangue", "created": {"type": "/type/datetime", "value": "2009-12-09T19:17:43.675214"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:17:43.675214"}, "latest_revision": 1, "key": "/works/OL1008839W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL94167A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL100889W 7 2020-02-28T08:20:38.358546 {"last_modified": {"type": "/type/datetime", "value": "2020-02-28T08:20:38.358546"}, "title": "Dead man walking", "created": {"type": "/type/datetime", "value": "2009-10-17T17:59:12.548417"}, "covers": [779148], "subject_places": ["United States"], "subjects": ["Drama", "Motion picture plays", "Religious aspects of Capital punishment", "Capital punishment", "Dead man walking (Motion picture)"], "subject_people": ["Helen Prejean"], "key": "/works/OL100889W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL32358A"}}], "latest_revision": 7, "type": {"key": "/type/work"}, "revision": 7}
+/type/work /works/OL10092821W 3 2010-07-22T11:31:31.906069 {"created": {"type": "/type/datetime", "value": "2009-11-11T19:16:58.846383"}, "subject_places": ["Spain", "Barcelona"], "subjects": ["Architecture, modern", "Guidebooks"], "latest_revision": 3, "key": "/works/OL10092821W", "title": "Barcelona architecture guide, 1929-2000", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL3203881A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:31:31.906069"}, "revision": 3}
+/type/work /works/OL10098879W 2 2010-10-21T17:41:01.469501 {"title": "Farewell", "created": {"type": "/type/datetime", "value": "2009-12-11T02:14:23.788306"}, "last_modified": {"type": "/type/datetime", "value": "2010-10-21T17:41:01.469501"}, "latest_revision": 2, "key": "/works/OL10098879W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1069190A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10099548W 1 2009-12-11T02:14:34.210617 {"title": "Electrophotography Dig Wrld", "created": {"type": "/type/datetime", "value": "2009-12-11T02:14:34.210617"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:14:34.210617"}, "latest_revision": 1, "key": "/works/OL10099548W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4084152A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10099841W 1 2009-12-11T02:14:34.210617 {"title": "Limitation of Rights (A Study of the European Convention and the South African Bill of Rights)", "created": {"type": "/type/datetime", "value": "2009-12-11T02:14:34.210617"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:14:34.210617"}, "latest_revision": 1, "key": "/works/OL10099841W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4084495A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10099880W 3 2020-09-12T22:14:44.028021 {"last_modified": {"type": "/type/datetime", "value": "2020-09-12T22:14:44.028021"}, "title": "Production & Characterization of Recombinant Rat Proopiomelanocortin 1-74", "created": {"type": "/type/datetime", "value": "2009-12-11T02:14:34.210617"}, "subjects": ["Proopiomelanocortin"], "latest_revision": 3, "key": "/works/OL10099880W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4084536A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10099905W 4 2020-09-12T20:04:14.774255 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:14:34.210617"}, "subjects": ["Carcinogenesis", "Tumors"], "latest_revision": 4, "key": "/works/OL10099905W", "title": "Introduction to Tumor Biology (Surgical Oncology)", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4084554A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-09-12T20:04:14.774255"}, "covers": [3340839], "revision": 4}
+/type/work /works/OL10100085W 3 2010-04-28T07:03:53.568145 {"title": "VLAMINGEN AAN HET OOSTFRONT 2: Deel 2", "created": {"type": "/type/datetime", "value": "2009-12-11T02:14:45.106778"}, "covers": [5215604], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:03:53.568145"}, "latest_revision": 3, "key": "/works/OL10100085W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4084721A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10100200W 3 2010-04-28T07:03:53.568145 {"title": "Interatomic distances 1960-65; organic and organometallic crystal structures", "created": {"type": "/type/datetime", "value": "2009-12-11T02:14:45.106778"}, "covers": [5215661], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:03:53.568145"}, "latest_revision": 3, "key": "/works/OL10100200W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4084840A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10100336W 1 2009-12-11T02:14:45.106778 {"title": "Responses of Mammalian Skin to Ultraviolet Irradiation", "created": {"type": "/type/datetime", "value": "2009-12-11T02:14:45.106778"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:14:45.106778"}, "latest_revision": 1, "key": "/works/OL10100336W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4084995A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10100727W 1 2009-12-11T02:14:45.106778 {"title": "Eisenstein Series on the Metaplectic Group", "created": {"type": "/type/datetime", "value": "2009-12-11T02:14:45.106778"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:14:45.106778"}, "latest_revision": 1, "key": "/works/OL10100727W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4085386A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10100737W 1 2009-12-11T02:14:45.106778 {"title": "Proceedings of the European Study Group Wi", "created": {"type": "/type/datetime", "value": "2009-12-11T02:14:45.106778"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:14:45.106778"}, "latest_revision": 1, "key": "/works/OL10100737W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4085396A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10101577W 1 2009-12-11T02:14:54.393184 {"title": "Access 2 Projects Windows", "created": {"type": "/type/datetime", "value": "2009-12-11T02:14:54.393184"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:14:54.393184"}, "latest_revision": 1, "key": "/works/OL10101577W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4086258A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10101697W 1 2009-12-11T02:14:54.393184 {"title": "Studia Varia Bruxellensia. Ad Orbem Graeco-Latinum Pertinentia III", "created": {"type": "/type/datetime", "value": "2009-12-11T02:14:54.393184"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:14:54.393184"}, "latest_revision": 1, "key": "/works/OL10101697W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4086345A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10101793W 1 2009-12-11T02:14:54.393184 {"title": "Over de Oudegyptische Denkwereld", "created": {"type": "/type/datetime", "value": "2009-12-11T02:14:54.393184"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:14:54.393184"}, "latest_revision": 1, "key": "/works/OL10101793W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4086436A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1010203W 3 2010-07-22T11:31:31.906069 {"last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:31:31.906069"}, "title": "Temas filoso\u0301ficos", "created": {"type": "/type/datetime", "value": "2009-12-09T19:18:43.917227"}, "subjects": ["Philosophy"], "latest_revision": 3, "key": "/works/OL1010203W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL94509A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10102051W 3 2020-11-29T19:39:23.675702 {"last_modified": {"type": "/type/datetime", "value": "2020-11-29T19:39:23.675702"}, "title": "The Bolivian Experiment", "created": {"type": "/type/datetime", "value": "2009-12-11T02:14:54.393184"}, "subjects": ["Bolivia, economic conditions", "Economic policy", "Economic conditions"], "latest_revision": 3, "key": "/works/OL10102051W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4086849A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10102230W 1 2009-12-11T02:15:04.636951 {"title": "Panorama Airport Schiphol", "created": {"type": "/type/datetime", "value": "2009-12-11T02:15:04.636951"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:15:04.636951"}, "latest_revision": 1, "key": "/works/OL10102230W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4087033A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10102303W 1 2009-12-11T02:15:04.636951 {"title": "'64th Eage Conference 2002 Florence Extended Abstracts", "created": {"type": "/type/datetime", "value": "2009-12-11T02:15:04.636951"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:15:04.636951"}, "latest_revision": 1, "key": "/works/OL10102303W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4087138A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10102428W 1 2009-12-11T02:15:04.636951 {"title": "Weyers & Borms", "created": {"type": "/type/datetime", "value": "2009-12-11T02:15:04.636951"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:15:04.636951"}, "latest_revision": 1, "key": "/works/OL10102428W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4087281A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10102700W 5 2021-11-02T09:24:45.367729 {"subjects": ["Conscience", "Conscientious objection", "Conscientious objectors"], "key": "/works/OL10102700W", "title": "Conscience and Conscientious Objections", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4087611A"}}], "type": {"key": "/type/work"}, "covers": [3341648], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2009-12-11T02:15:04.636951"}, "last_modified": {"type": "/type/datetime", "value": "2021-11-02T09:24:45.367729"}}
+/type/work /works/OL1010289W 3 2010-07-22T11:31:31.906069 {"title": "Antologia poe\u0301tica", "created": {"type": "/type/datetime", "value": "2009-12-09T19:18:43.917227"}, "last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:31:31.906069"}, "latest_revision": 3, "key": "/works/OL1010289W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL94532A"}}], "subject_people": ["Patativa do Assar\u00e9"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10102959W 4 2022-12-22T05:10:14.794147 {"title": "God in the Fourth Gospel", "covers": [5217745], "key": "/works/OL10102959W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4087881A"}}], "type": {"key": "/type/work"}, "subjects": ["God", "Biblical teaching", "Criticism, interpretation", "History", "Hermeneutics", "Biblical criticism", "Bible"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T02:15:04.636951"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-22T05:10:14.794147"}}
+/type/work /works/OL10103093W 1 2009-12-11T02:15:15.523721 {"title": "Mathematics with MathCAD", "created": {"type": "/type/datetime", "value": "2009-12-11T02:15:15.523721"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:15:15.523721"}, "latest_revision": 1, "key": "/works/OL10103093W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4087993A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10103390W 2 2011-01-16T19:17:34.345973 {"title": "Development and Application of New Methods for Anticancer Drug Discovery and Early Evaluation", "created": {"type": "/type/datetime", "value": "2009-12-11T02:15:15.523721"}, "last_modified": {"type": "/type/datetime", "value": "2011-01-16T19:17:34.345973"}, "latest_revision": 2, "key": "/works/OL10103390W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4088279A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10103415W 1 2009-12-11T02:15:15.523721 {"title": "Nutrient Use Strategies of Plants of Various Life-Forms in a Subarctic Environment", "created": {"type": "/type/datetime", "value": "2009-12-11T02:15:15.523721"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:15:15.523721"}, "latest_revision": 1, "key": "/works/OL10103415W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4088303A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10103428W 1 2009-12-11T02:15:15.523721 {"title": "Adrenocortical Tumors", "created": {"type": "/type/datetime", "value": "2009-12-11T02:15:15.523721"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:15:15.523721"}, "latest_revision": 1, "key": "/works/OL10103428W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4088316A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10103628W 2 2011-01-16T19:35:48.784385 {"title": "Genetic Studies of Rheumatoid Arthritis Using Animal Models", "created": {"type": "/type/datetime", "value": "2009-12-11T02:15:15.523721"}, "last_modified": {"type": "/type/datetime", "value": "2011-01-16T19:35:48.784385"}, "latest_revision": 2, "key": "/works/OL10103628W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4088510A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL101040W 3 2010-04-28T07:03:53.568145 {"created": {"type": "/type/datetime", "value": "2009-10-17T18:13:12.238883"}, "title": "Le temps premier", "covers": [5204886], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:03:53.568145"}, "latest_revision": 3, "key": "/works/OL101040W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1208012A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10104209W 1 2009-12-11T02:15:25.365835 {"title": "The Book of Life English-arabic Text of the New Testament From the Living Bible", "created": {"type": "/type/datetime", "value": "2009-12-11T02:15:25.365835"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:15:25.365835"}, "latest_revision": 1, "key": "/works/OL10104209W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4089054A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10104614W 1 2009-12-11T02:15:25.365835 {"title": "Habil u-Qabil la-shar-i Arbail (Shanogari)", "created": {"type": "/type/datetime", "value": "2009-12-11T02:15:25.365835"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:15:25.365835"}, "latest_revision": 1, "key": "/works/OL10104614W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4089457A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10104718W 2 2020-11-06T12:15:40.096871 {"last_modified": {"type": "/type/datetime", "value": "2020-11-06T12:15:40.096871"}, "title": "Erik XIV:s overarmsskada med fraktur och rontgentata fragment", "created": {"type": "/type/datetime", "value": "2009-12-11T02:15:25.365835"}, "subjects": ["Health", "Kings and rulers", "Biography"], "latest_revision": 2, "key": "/works/OL10104718W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4089546A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10104804W 1 2009-12-11T02:15:25.365835 {"title": "Du M Nniska Sa Gabriel", "created": {"type": "/type/datetime", "value": "2009-12-11T02:15:25.365835"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:15:25.365835"}, "latest_revision": 1, "key": "/works/OL10104804W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4089627A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10105079W 1 2009-12-11T02:15:34.173642 {"title": "Den Wind in den H\u00e4nden", "created": {"type": "/type/datetime", "value": "2009-12-11T02:15:34.173642"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:15:34.173642"}, "latest_revision": 1, "key": "/works/OL10105079W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4089975A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10105185W 1 2009-12-11T02:15:34.173642 {"title": "Liebhabereiverordnung. mit neuester Judikatur und Verwaltungsmeinung", "created": {"type": "/type/datetime", "value": "2009-12-11T02:15:34.173642"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:15:34.173642"}, "latest_revision": 1, "key": "/works/OL10105185W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4090231A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10105503W 3 2010-04-28T07:03:53.568145 {"title": "Lapaj, der ber\u00fchmte Sackpfeifer", "created": {"type": "/type/datetime", "value": "2009-12-11T02:15:34.173642"}, "covers": [3243078], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:03:53.568145"}, "latest_revision": 3, "key": "/works/OL10105503W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4090544A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10105640W 3 2010-04-28T07:03:53.568145 {"title": "Biochemistry of Neuroectodermal Tumours", "created": {"type": "/type/datetime", "value": "2009-12-11T02:15:34.173642"}, "covers": [5218974], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:03:53.568145"}, "latest_revision": 3, "key": "/works/OL10105640W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4090748A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10105853W 1 2009-12-11T02:15:34.173642 {"title": "Vom Papier zum Internet", "created": {"type": "/type/datetime", "value": "2009-12-11T02:15:34.173642"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:15:34.173642"}, "latest_revision": 1, "key": "/works/OL10105853W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4091083A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10105966W 3 2010-04-28T07:03:53.568145 {"title": "Das Wunder der Christnacht. Und Die Zw\u00f6lf Heiligen N\u00e4chte", "created": {"type": "/type/datetime", "value": "2009-12-11T02:15:34.173642"}, "covers": [3275966], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:03:53.568145"}, "latest_revision": 3, "key": "/works/OL10105966W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4091239A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10106016W 1 2009-12-11T02:15:34.173642 {"title": "VOM TOD ZUR WIEDERVERK\u00d6RPERUNG", "created": {"type": "/type/datetime", "value": "2009-12-11T02:15:34.173642"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:15:34.173642"}, "latest_revision": 1, "key": "/works/OL10106016W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4091299A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10106153W 3 2010-04-28T07:03:53.568145 {"title": "Strategien zur Umnutzung von Industrie- und Gewerbebrachen", "created": {"type": "/type/datetime", "value": "2009-12-11T02:15:44.062316"}, "covers": [3243879], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:03:53.568145"}, "latest_revision": 3, "key": "/works/OL10106153W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4091551A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10106157W 1 2009-12-11T02:15:44.062316 {"title": "Grundpraktikum Physikalische Chemie. Theorie und Experimente", "created": {"type": "/type/datetime", "value": "2009-12-11T02:15:44.062316"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:15:44.062316"}, "latest_revision": 1, "key": "/works/OL10106157W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4091559A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10106284W 3 2010-04-28T07:03:53.568145 {"title": "Schwarzwild - Report. Mein Leben unter Wildschweinen", "created": {"type": "/type/datetime", "value": "2009-12-11T02:15:44.062316"}, "covers": [3244149], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:03:53.568145"}, "latest_revision": 3, "key": "/works/OL10106284W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4091747A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10106427W 1 2009-12-11T02:15:44.062316 {"title": "Sag' dein wort!", "created": {"type": "/type/datetime", "value": "2009-12-11T02:15:44.062316"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:15:44.062316"}, "latest_revision": 1, "key": "/works/OL10106427W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4091900A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10106435W 1 2009-12-11T02:15:44.062316 {"title": "Stadtplan Juterbog 1:10 000", "created": {"type": "/type/datetime", "value": "2009-12-11T02:15:44.062316"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:15:44.062316"}, "latest_revision": 1, "key": "/works/OL10106435W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4091906A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10106495W 1 2009-12-11T02:15:44.062316 {"title": "Magischer W\u00fcrfel, aufklappbarer Kunststoff-W\u00fcrfel, Magischer Kreis 'Bl\u00fcten', aufklappbarer Kunststoff-W\u00fcrfel", "created": {"type": "/type/datetime", "value": "2009-12-11T02:15:44.062316"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:15:44.062316"}, "latest_revision": 1, "key": "/works/OL10106495W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4091963A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10106498W 1 2009-12-11T02:15:44.062316 {"title": "Weisheiten gro\u00dfer M\u00e4nner", "created": {"type": "/type/datetime", "value": "2009-12-11T02:15:44.062316"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:15:44.062316"}, "latest_revision": 1, "key": "/works/OL10106498W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4091964A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10106647W 3 2010-04-28T07:03:53.568145 {"title": "Sinnliche Bibelarbeit. Wie die Bibel in Bewegung bringt", "created": {"type": "/type/datetime", "value": "2009-12-11T02:15:44.062316"}, "covers": [3245376], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:03:53.568145"}, "latest_revision": 3, "key": "/works/OL10106647W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4092239A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10106747W 4 2019-07-30T22:50:31.920011 {"covers": [3245554], "last_modified": {"type": "/type/datetime", "value": "2019-07-30T22:50:31.920011"}, "latest_revision": 4, "key": "/works/OL10106747W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4092386A"}}, {"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL688758A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T02:15:44.062316"}, "title": "Singing opera in Germany", "subject_places": ["Germany"], "subjects": ["Vocational guidance", "Singers", "Opera", "Performing arts", "Germany", "Living & working abroad", "Techniques of music"], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL10107109W 1 2009-12-11T02:15:52.089370 {"title": "Umap Modules 1977-1979", "created": {"type": "/type/datetime", "value": "2009-12-11T02:15:52.089370"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:15:52.089370"}, "latest_revision": 1, "key": "/works/OL10107109W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4093089A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10107553W 1 2009-12-11T02:15:52.089370 {"title": "Twelve little plays", "created": {"type": "/type/datetime", "value": "2009-12-11T02:15:52.089370"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:15:52.089370"}, "latest_revision": 1, "key": "/works/OL10107553W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4093705A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10107746W 4 2010-12-20T07:58:17.502627 {"title": "Das Spiel- Erlebnisbuch.", "created": {"type": "/type/datetime", "value": "2009-12-11T02:15:52.089370"}, "covers": [3269016], "last_modified": {"type": "/type/datetime", "value": "2010-12-20T07:58:17.502627"}, "latest_revision": 4, "key": "/works/OL10107746W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4094196A"}}], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL10108291W 1 2009-12-11T02:15:59.558039 {"title": "Hausrezepte f\u00fcr den Ruhestand. Besinnung und Bew\u00e4ltigung", "created": {"type": "/type/datetime", "value": "2009-12-11T02:15:59.558039"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:15:59.558039"}, "latest_revision": 1, "key": "/works/OL10108291W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4095198A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10108364W 3 2010-04-28T07:03:53.568145 {"title": "Tabuthema Trauerarbeit. Erzieherinnen begleiten Kinder bei Abschied, Verlust und Tod", "created": {"type": "/type/datetime", "value": "2009-12-11T02:15:59.558039"}, "covers": [3249271], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:03:53.568145"}, "latest_revision": 3, "key": "/works/OL10108364W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4095298A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10108750W 3 2010-07-22T11:31:31.906069 {"last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:31:31.906069"}, "title": "Philosophie contra Psychologie?", "created": {"type": "/type/datetime", "value": "2009-12-11T02:15:59.558039"}, "subjects": ["Psychotherapy", "Philosophy", "Philosophical counseling"], "latest_revision": 3, "key": "/works/OL10108750W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4095798A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10108759W 3 2010-07-22T11:31:31.906069 {"last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:31:31.906069"}, "title": "Existenzsicherung in der marktwirtschaftlichen Demokratie", "created": {"type": "/type/datetime", "value": "2009-12-11T02:15:59.558039"}, "subjects": ["Social aspects", "Sociological aspects", "Economics", "Free enterprise", "Income maintenance programs", "Sociological aspects of Economics", "Social aspects of Free enterprise"], "latest_revision": 3, "key": "/works/OL10108759W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4095805A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10108835W 3 2010-04-28T07:03:53.568145 {"title": "Experimente mit Hochspannung", "created": {"type": "/type/datetime", "value": "2009-12-11T02:15:59.558039"}, "covers": [3250659], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:03:53.568145"}, "latest_revision": 3, "key": "/works/OL10108835W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4095905A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10108857W 1 2009-12-11T02:15:59.558039 {"title": "VB.NET- Referenz", "created": {"type": "/type/datetime", "value": "2009-12-11T02:15:59.558039"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:15:59.558039"}, "latest_revision": 1, "key": "/works/OL10108857W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4095934A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10108919W 3 2010-04-28T07:03:53.568145 {"title": "So betreiben Sie CB- Funk richtig. Grundlagen, Kauftips, Funkpraxis", "created": {"type": "/type/datetime", "value": "2009-12-11T02:15:59.558039"}, "covers": [3250830], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:03:53.568145"}, "latest_revision": 3, "key": "/works/OL10108919W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4095982A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10108976W 3 2010-04-28T07:03:53.568145 {"title": "Filigrane Herbstzeit", "created": {"type": "/type/datetime", "value": "2009-12-11T02:15:59.558039"}, "covers": [3250946], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:03:53.568145"}, "latest_revision": 3, "key": "/works/OL10108976W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4096007A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10109518W 1 2009-12-11T02:16:12.668457 {"title": "Erdolraffinerien, Leitungen, Petrochemie in der Bundesrepublik Deutschland, in Belgien, den Niederlanden und Ostfrankreich", "created": {"type": "/type/datetime", "value": "2009-12-11T02:16:12.668457"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:16:12.668457"}, "latest_revision": 1, "key": "/works/OL10109518W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4096442A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1010952W 3 2010-04-28T07:03:53.568145 {"title": "A\u0301 sombra do cipreste", "created": {"type": "/type/datetime", "value": "2009-12-09T19:20:41.447771"}, "covers": [4921314], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:03:53.568145"}, "latest_revision": 3, "key": "/works/OL1010952W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL94677A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10109808W 1 2009-12-11T02:16:12.668457 {"title": "Als Mutter ein Kind war", "created": {"type": "/type/datetime", "value": "2009-12-11T02:16:12.668457"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:16:12.668457"}, "latest_revision": 1, "key": "/works/OL10109808W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4096919A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10109974W 3 2010-04-28T07:03:53.568145 {"title": "Andreotti. Eine italienische Karriere zwischen Geheimdienst und Mafia", "created": {"type": "/type/datetime", "value": "2009-12-11T02:16:12.668457"}, "covers": [3253005], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:03:53.568145"}, "latest_revision": 3, "key": "/works/OL10109974W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4097267A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10109997W 3 2010-04-28T07:03:53.568145 {"title": "Mein geliebtes M\u00fcnchen", "created": {"type": "/type/datetime", "value": "2009-12-11T02:16:12.668457"}, "covers": [3253125], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:03:53.568145"}, "latest_revision": 3, "key": "/works/OL10109997W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4097292A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10110147W 3 2010-04-28T07:03:53.568145 {"title": "Babys und Kleinkinder richtig ern\u00e4hren. Vom ersten L\u00f6ffelchen bis zur Familienkost", "created": {"type": "/type/datetime", "value": "2009-12-11T02:16:22.283088"}, "covers": [3253526], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:03:53.568145"}, "latest_revision": 3, "key": "/works/OL10110147W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4097611A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10110458W 3 2010-04-28T07:03:53.568145 {"title": "Und er r\u00fchrte sie an ..", "created": {"type": "/type/datetime", "value": "2009-12-11T02:16:22.283088"}, "covers": [3255310], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:03:53.568145"}, "latest_revision": 3, "key": "/works/OL10110458W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4098149A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL101104W 5 2013-12-16T01:44:03.081286 {"subtitle": "a novel", "description": {"type": "/type/text", "value": "\"The ghost of a willful and vicious young woman, Melany Horsemanden, haunts a house in colonial Virginia. When, years later, another young girl named Melany settles in the house and attracts a lover, the spirit of the deceased woman intervenes to frustrate their courtship. Ultimately, only the power of love can overcome the vampire-like powers of the undead.\"- - Description by Peter Haining, in \"A Century of Ghost Novels 1900 - 2000\" (Appendix to his book, The Mammoth Book of Modern Ghost Stories)"}, "last_modified": {"type": "/type/datetime", "value": "2013-12-16T01:44:03.081286"}, "title": "The ghost garden", "created": {"type": "/type/datetime", "value": "2009-10-17T18:13:12.238883"}, "covers": [5840131], "subject_places": ["Virginia"], "subjects": ["Ghosts", "colonial Virginia", "romance", "haunting", "vampire", "undead"], "subject_people": ["Melany Horsemanden"], "key": "/works/OL101104W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1208155A"}}], "latest_revision": 5, "subject_times": ["both in colonial America and 1918 (the year the book was written)"], "type": {"key": "/type/work"}, "revision": 5}
+/type/work /works/OL10111092W 1 2009-12-11T02:16:43.568460 {"title": "Einf\u00fchrung in die Selbstevaluation. Ein Leitfaden zur Bewertung der Praxis Sozialer Arbeit", "created": {"type": "/type/datetime", "value": "2009-12-11T02:16:43.568460"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:16:43.568460"}, "latest_revision": 1, "key": "/works/OL10111092W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4099283A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1011333W 1 2009-12-09T19:21:39.323891 {"title": "Cunha bueno", "created": {"type": "/type/datetime", "value": "2009-12-09T19:21:39.323891"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:21:39.323891"}, "latest_revision": 1, "key": "/works/OL1011333W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL94744A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1011791W 4 2020-12-03T07:35:34.502797 {"title": "Os no\u0301s do \"no\u0301s\"", "covers": [4920873], "key": "/works/OL1011791W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL94840A"}}], "type": {"key": "/type/work"}, "subjects": ["Teachers", "Social conditions", "Professores especializados", "Organizacao sindical"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-09T19:21:39.323891"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-03T07:35:34.502797"}}
+/type/work /works/OL1012039W 1 2009-12-09T19:21:39.323891 {"title": "O retorno da aura", "created": {"type": "/type/datetime", "value": "2009-12-09T19:21:39.323891"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:21:39.323891"}, "latest_revision": 1, "key": "/works/OL1012039W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL94903A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1012055W 3 2010-04-28T07:03:53.568145 {"title": "A assinatura perdida", "created": {"type": "/type/datetime", "value": "2009-12-09T19:21:39.323891"}, "covers": [5396468], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:03:53.568145"}, "latest_revision": 3, "key": "/works/OL1012055W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL94908A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1012110W 3 2010-07-22T11:31:31.906069 {"created": {"type": "/type/datetime", "value": "2009-12-09T19:21:39.323891"}, "subject_places": ["Brazil"], "subjects": ["Education", "Educational change", "Philosophy", "History"], "latest_revision": 3, "key": "/works/OL1012110W", "title": "A reinvenc\u0327a\u0303o da cidade e da multida\u0303o", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL94918A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:31:31.906069"}, "revision": 3}
+/type/work /works/OL10121429W 2 2022-06-27T21:33:51.380343 {"title": "Matching employment opportunities and expectations", "key": "/works/OL10121429W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL114892A"}}], "type": {"key": "/type/work"}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T02:18:34.917399"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-27T21:33:51.380343"}}
+/type/work /works/OL10121978W 1 2009-12-11T02:18:34.917399 {"title": "Peb Echanges", "created": {"type": "/type/datetime", "value": "2009-12-11T02:18:34.917399"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:18:34.917399"}, "latest_revision": 1, "key": "/works/OL10121978W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4110796A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10122230W 4 2010-07-22T11:31:31.906069 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:18:43.469119"}, "subjects": ["Heinse,"], "latest_revision": 4, "key": "/works/OL10122230W", "title": "Wilhelm Heinse", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4111050A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:31:31.906069"}, "covers": [5763350], "revision": 4}
+/type/work /works/OL10122323W 1 2009-12-11T02:18:43.469119 {"title": "Heathlands of Western Europe", "created": {"type": "/type/datetime", "value": "2009-12-11T02:18:43.469119"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:18:43.469119"}, "latest_revision": 1, "key": "/works/OL10122323W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4111270A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10122487W 2 2022-11-19T09:13:24.998599 {"title": "Study of the Radionuclides Contained in Wastes Produced by the Phosphate Industry and Their Impact on the Environment", "key": "/works/OL10122487W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4111527A"}}], "type": {"key": "/type/work"}, "subjects": ["Phosphates"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T02:18:43.469119"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T09:13:24.998599"}}
+/type/work /works/OL10122745W 1 2009-12-11T02:18:43.469119 {"title": "Propagation of coherent electromagnetic radiation in the atmosphere", "created": {"type": "/type/datetime", "value": "2009-12-11T02:18:43.469119"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:18:43.469119"}, "latest_revision": 1, "key": "/works/OL10122745W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4112013A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1012305W 3 2010-07-22T11:31:31.906069 {"cover_edition": {"key": "/books/OL143898M"}, "last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:31:31.906069"}, "latest_revision": 3, "key": "/works/OL1012305W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL94954A"}}], "created": {"type": "/type/datetime", "value": "2009-12-09T19:22:31.063497"}, "title": "Vidas compartilhadas", "subject_places": ["Brazil", "Mar\u00edlia (Brazil)", "Mar\u00edlia"], "subjects": ["Social life and customs", "Grandparent and child"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10123216W 2 2010-12-19T20:25:23.108439 {"title": "Clever und Co. Gruselr\u00e4tsel.", "created": {"type": "/type/datetime", "value": "2009-12-11T02:18:51.955019"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-19T20:25:23.108439"}, "latest_revision": 2, "key": "/works/OL10123216W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4112846A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10123247W 4 2010-12-20T00:12:34.989039 {"title": "WahnsinnsWissen. Die anziehende Welt der Physik.", "created": {"type": "/type/datetime", "value": "2009-12-11T02:18:51.955019"}, "covers": [3256568], "last_modified": {"type": "/type/datetime", "value": "2010-12-20T00:12:34.989039"}, "latest_revision": 4, "key": "/works/OL10123247W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4112879A"}}], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL10123636W 3 2010-04-28T07:03:53.568145 {"title": "RLT-Anlagen. Leitfaden f\u00fcr die Planungspraxis", "created": {"type": "/type/datetime", "value": "2009-12-11T02:18:51.955019"}, "covers": [3257487], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:03:53.568145"}, "latest_revision": 3, "key": "/works/OL10123636W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4113414A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10123790W 3 2010-07-22T11:31:31.906069 {"last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:31:31.906069"}, "title": "Auf den Busch geklopft", "created": {"type": "/type/datetime", "value": "2009-12-11T02:18:51.955019"}, "subjects": ["Terms and phrases", "German language", "Terminology", "Forests and forestry"], "latest_revision": 3, "key": "/works/OL10123790W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4113652A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1012388W 3 2010-07-20T11:28:08.055907 {"created": {"type": "/type/datetime", "value": "2009-12-09T19:22:31.063497"}, "title": "La Plaza de Armas de La Habana", "subject_places": ["Havana (Cuba)", "Cuba) Plaza de Armas (Havana", "Plaza de Armas (Havana, Cuba)"], "last_modified": {"type": "/type/datetime", "value": "2010-07-20T11:28:08.055907"}, "latest_revision": 3, "key": "/works/OL1012388W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL94977A"}}], "subject_times": ["19th century"], "type": {"key": "/type/work"}, "subjects": ["Social life and customs"], "revision": 3}
+/type/work /works/OL10124277W 3 2010-04-28T07:03:53.568145 {"title": "Die bestimmungsgerechte Elektroinstallations- Praxis. Handbuch f\u00fcr Handwerk, Industrie und EVU", "created": {"type": "/type/datetime", "value": "2009-12-11T02:19:00.461686"}, "covers": [3258578], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:03:53.568145"}, "latest_revision": 3, "key": "/works/OL10124277W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4114425A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL101245W 3 2010-07-22T11:31:31.906069 {"created": {"type": "/type/datetime", "value": "2009-10-17T18:13:12.238883"}, "subject_places": ["England", "Beverley (Humberside)", "Eng Beverley", "Beverley (England)", "Beverley"], "subjects": ["Guidebooks", "Architecture", "Buildings", "Buildings, structures", "Historic houses"], "latest_revision": 3, "key": "/works/OL101245W", "title": "Historic Beverley", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1208615A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:31:31.906069"}, "revision": 3}
+/type/work /works/OL10124700W 3 2010-04-28T07:03:53.568145 {"title": "Frauen um Napoleon", "created": {"type": "/type/datetime", "value": "2009-12-11T02:19:00.461686"}, "covers": [3259711], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:03:53.568145"}, "latest_revision": 3, "key": "/works/OL10124700W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4115262A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10124776W 3 2010-04-28T07:03:53.568145 {"title": "Noch besser telefonieren", "created": {"type": "/type/datetime", "value": "2009-12-11T02:19:00.461686"}, "covers": [3259803], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:03:53.568145"}, "latest_revision": 3, "key": "/works/OL10124776W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4115352A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10124874W 1 2009-12-11T02:19:00.461686 {"title": "Pr\u00e4ventive Kardiologie. Prophylaxe der koronaren Herzkrankheit", "created": {"type": "/type/datetime", "value": "2009-12-11T02:19:00.461686"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:19:00.461686"}, "latest_revision": 1, "key": "/works/OL10124874W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4115612A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10124942W 1 2009-12-11T02:19:00.461686 {"title": "Das Jahrbuch f\u00fcr Videofilmer 2003", "created": {"type": "/type/datetime", "value": "2009-12-11T02:19:00.461686"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:19:00.461686"}, "latest_revision": 1, "key": "/works/OL10124942W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4115884A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10125139W 3 2010-04-28T07:03:53.568145 {"title": "Intensive Violin Technique Vol. 2", "created": {"type": "/type/datetime", "value": "2009-12-11T02:19:09.290991"}, "covers": [3260705], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:03:53.568145"}, "latest_revision": 3, "key": "/works/OL10125139W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4116116A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1012521W 4 2010-07-22T11:31:31.906069 {"covers": [3715748], "last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:31:31.906069"}, "latest_revision": 4, "key": "/works/OL1012521W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL95007A"}}], "created": {"type": "/type/datetime", "value": "2009-12-09T19:22:31.063497"}, "title": "Retratando a educac\u0327a\u0303o especial em Porto Alegre", "subject_places": ["Brazil", "Porto Alegre"], "subjects": ["History", "Special education", "Education", "Children with disabilities"], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL1012624W 3 2010-04-28T07:03:53.568145 {"title": "Nuevo salvajismo", "created": {"type": "/type/datetime", "value": "2009-12-09T19:22:31.063497"}, "covers": [3715866], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:03:53.568145"}, "latest_revision": 3, "key": "/works/OL1012624W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL95023A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10126303W 1 2009-12-11T02:19:18.236563 {"title": "Electronic Control Engineering Made Easy", "created": {"type": "/type/datetime", "value": "2009-12-11T02:19:18.236563"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:19:18.236563"}, "latest_revision": 1, "key": "/works/OL10126303W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4118179A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10126753W 3 2010-04-28T07:03:53.568145 {"title": "Die Pfefferk\u00f6rner 12. Abschied mit Hindernissen", "created": {"type": "/type/datetime", "value": "2009-12-11T02:19:18.236563"}, "covers": [3264613], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:03:53.568145"}, "latest_revision": 3, "key": "/works/OL10126753W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4118900A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10127096W 3 2010-04-28T07:03:53.568145 {"title": "An der L\u00fcbecker Bucht. Ein Reisebegleiter von Fehmarnsund bis L\u00fcbeck", "created": {"type": "/type/datetime", "value": "2009-12-11T02:19:26.641574"}, "covers": [3265492], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:03:53.568145"}, "latest_revision": 3, "key": "/works/OL10127096W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4119360A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10127326W 4 2010-12-21T11:58:12.872369 {"title": "Sprechen, Schreiben, Verstehen. Deutsch f\u00fcr Berufs- und Berufsfachschulen.", "created": {"type": "/type/datetime", "value": "2009-12-11T02:19:26.641574"}, "covers": [3266034], "last_modified": {"type": "/type/datetime", "value": "2010-12-21T11:58:12.872369"}, "latest_revision": 4, "key": "/works/OL10127326W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4119658A"}}], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL10127478W 3 2010-04-28T07:03:53.568145 {"title": "Komm!, Kindermappe, m. Gebetsheft", "created": {"type": "/type/datetime", "value": "2009-12-11T02:19:26.641574"}, "covers": [3266411], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:03:53.568145"}, "latest_revision": 3, "key": "/works/OL10127478W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4120058A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10127501W 3 2010-07-22T11:31:31.906069 {"last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:31:31.906069"}, "latest_revision": 3, "key": "/works/OL10127501W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4120091A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T02:19:26.641574"}, "title": "Bismarcks Erben, 1890-1945", "subject_places": ["Germany"], "subjects": ["Foreign relations", "History"], "subject_times": ["20th century", "1888-1918", "William II, 1888-1918"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10127697W 6 2023-01-10T22:46:21.732289 {"title": "The Role of Endorphins & Neuropsychiatry (Modern Problems of Pharmacopsychiatry)", "subjects": ["Neuropsychiatry", "Endorphins", "Physiological effect", "Physiology", "Mental Disorders", "Metabolism", "Neuropsychopharmacology"], "key": "/works/OL10127697W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4120294A"}}], "type": {"key": "/type/work"}, "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2009-12-11T02:19:26.641574"}, "last_modified": {"type": "/type/datetime", "value": "2023-01-10T22:46:21.732289"}}
+/type/work /works/OL10128347W 1 2009-12-11T02:19:36.732397 {"title": "From Basic Cancer Research to Clinical Application: International Society for Oncodevelopmental Biology & Medicine, 25th Anniversary Meeting, Montreux, September 1997", "created": {"type": "/type/datetime", "value": "2009-12-11T02:19:36.732397"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:19:36.732397"}, "latest_revision": 1, "key": "/works/OL10128347W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4121063A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10128435W 3 2010-04-28T07:03:53.568145 {"title": "Low-Calorie Sweeteners", "created": {"type": "/type/datetime", "value": "2009-12-11T02:19:36.732397"}, "covers": [3266572], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:03:53.568145"}, "latest_revision": 3, "key": "/works/OL10128435W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4121178A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10128667W 3 2010-04-28T07:03:53.568145 {"title": "Apoptosis in the Hematopoietic System (Acta Haematologica)", "created": {"type": "/type/datetime", "value": "2009-12-11T02:19:36.732397"}, "covers": [3266897], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:03:53.568145"}, "latest_revision": 3, "key": "/works/OL10128667W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4121481A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10128859W 3 2010-04-28T07:03:53.568145 {"title": "Playtime, Englisch f\u00fcr Kinder, Bd.2", "created": {"type": "/type/datetime", "value": "2009-12-11T02:19:36.732397"}, "covers": [3267320], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:03:53.568145"}, "latest_revision": 3, "key": "/works/OL10128859W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4121722A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10128964W 3 2010-04-28T07:03:53.568145 {"title": "Unsichtbare Welten. Von der Sch\u00f6nheit des Mikrokosmos", "created": {"type": "/type/datetime", "value": "2009-12-11T02:19:36.732397"}, "covers": [3267584], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:03:53.568145"}, "latest_revision": 3, "key": "/works/OL10128964W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4121930A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1012906W 3 2022-12-07T09:06:37.148922 {"description": {"type": "/type/text", "value": "Text on Malagasy civilization, culture, language and grammar for the 2nd year of secondary education."}, "title": "Gasikarako, T 7", "key": "/works/OL1012906W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL95112A"}}], "type": {"key": "/type/work"}, "subjects": ["Malagasy language", "Texts"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-09T19:22:31.063497"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-07T09:06:37.148922"}}
+/type/work /works/OL10129214W 1 2009-12-11T02:19:46.464581 {"title": "Landesbauordnung f\u00fcr das Land Schleswig-Holstein (LBO). Textausgabe mit Einf\u00fchrung", "created": {"type": "/type/datetime", "value": "2009-12-11T02:19:46.464581"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:19:46.464581"}, "latest_revision": 1, "key": "/works/OL10129214W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4122315A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10129416W 3 2010-04-28T07:03:53.568145 {"title": "1018 neue R\u00e4tsel. Superdicker Ratespa\u00df", "created": {"type": "/type/datetime", "value": "2009-12-11T02:19:46.464581"}, "covers": [3268916], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:03:53.568145"}, "latest_revision": 3, "key": "/works/OL10129416W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4122808A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1013053W 3 2010-07-22T11:31:31.906069 {"created": {"type": "/type/datetime", "value": "2009-12-09T19:22:31.063497"}, "subject_places": ["Malawi"], "subjects": ["Women in development", "Government policy", "Women"], "latest_revision": 3, "key": "/works/OL1013053W", "title": "A policy and plan of action for women in Malawi", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL95143A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:31:31.906069"}, "revision": 3}
+/type/work /works/OL1013291W 2 2010-07-16T13:09:28.682010 {"subtitle": "Erza\u0308hlung.", "created": {"type": "/type/datetime", "value": "2009-12-09T19:22:31.063497"}, "title": "Die Witwe von Husum", "last_modified": {"type": "/type/datetime", "value": "2010-07-16T13:09:28.682010"}, "latest_revision": 2, "key": "/works/OL1013291W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL95188A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL101330W 3 2010-07-22T11:31:31.906069 {"last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:31:31.906069"}, "title": "F Plan Diet", "created": {"type": "/type/datetime", "value": "2009-10-17T18:13:12.238883"}, "subjects": ["Reducing diets", "High-fiber diet"], "latest_revision": 3, "key": "/works/OL101330W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1208816A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10134003W 2 2011-05-22T21:24:32.496180 {"title": "Charade", "created": {"type": "/type/datetime", "value": "2009-12-11T02:20:34.001943"}, "last_modified": {"type": "/type/datetime", "value": "2011-05-22T21:24:32.496180"}, "latest_revision": 2, "key": "/works/OL10134003W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1007084A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10141074W 3 2010-07-22T11:31:31.906069 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:21:50.131263"}, "subject_places": ["Japan", "China"], "subjects": ["Relations", "Foreign relations"], "latest_revision": 3, "key": "/works/OL10141074W", "title": "100 ge li you", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4134234A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:31:31.906069"}, "revision": 3}
+/type/work /works/OL10141434W 3 2010-04-28T07:03:53.568145 {"title": "The Biology, Status and Conservation of the Monk Seal (Monachus Monachus): Final Report to the Council of Europe (Nature and Environmment Series)", "created": {"type": "/type/datetime", "value": "2009-12-11T02:21:58.617854"}, "covers": [5228009], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:03:53.568145"}, "latest_revision": 3, "key": "/works/OL10141434W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4134441A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10141490W 3 2010-04-28T07:03:53.568145 {"title": "The Baltic Sea Project (Secondary Education)", "created": {"type": "/type/datetime", "value": "2009-12-11T02:21:58.617854"}, "covers": [5228013], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:03:53.568145"}, "latest_revision": 3, "key": "/works/OL10141490W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4134499A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10141534W 4 2020-12-17T22:07:18.201577 {"title": "Protection of Witnesses And Collaborators of Justice-recommendation Rec(2005)9 And Explanatory Memorandum (2005) (Legal Issues)", "covers": [5387978], "key": "/works/OL10141534W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4134550A"}}], "type": {"key": "/type/work"}, "subjects": ["Witnesses", "Protection", "Informers"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T02:21:58.617854"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-17T22:07:18.201577"}}
+/type/work /works/OL10141760W 1 2009-12-11T02:21:58.617854 {"title": "EUFORGEN Noble Hardwoods Network", "created": {"type": "/type/datetime", "value": "2009-12-11T02:21:58.617854"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:21:58.617854"}, "latest_revision": 1, "key": "/works/OL10141760W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4134907A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10141819W 1 2009-12-11T02:21:58.617854 {"title": "The Determinants of Individual Diets and Nutritional Status in Six Villages of Southern India", "created": {"type": "/type/datetime", "value": "2009-12-11T02:21:58.617854"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:21:58.617854"}, "latest_revision": 1, "key": "/works/OL10141819W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4134973A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10142114W 1 2009-12-11T02:22:06.483123 {"title": "Automoviles Fiat 125 Berlina - Familiar", "created": {"type": "/type/datetime", "value": "2009-12-11T02:22:06.483123"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:22:06.483123"}, "latest_revision": 1, "key": "/works/OL10142114W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4135238A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10142193W 3 2010-04-28T07:03:53.568145 {"title": "Principios de Ecocardiografia y Doppler", "created": {"type": "/type/datetime", "value": "2009-12-11T02:22:06.483123"}, "covers": [3343843], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:03:53.568145"}, "latest_revision": 3, "key": "/works/OL10142193W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4135287A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10142271W 1 2009-12-11T02:22:06.483123 {"title": "Z Marketing", "created": {"type": "/type/datetime", "value": "2009-12-11T02:22:06.483123"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:22:06.483123"}, "latest_revision": 1, "key": "/works/OL10142271W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4135397A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10142400W 3 2010-04-28T07:03:53.568145 {"title": "Decoracion Artesanal de Tortas", "created": {"type": "/type/datetime", "value": "2009-12-11T02:22:06.483123"}, "covers": [3344096], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:03:53.568145"}, "latest_revision": 3, "key": "/works/OL10142400W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4135465A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10142515W 2 2020-11-05T00:44:25.861556 {"last_modified": {"type": "/type/datetime", "value": "2020-11-05T00:44:25.861556"}, "title": "Peron", "created": {"type": "/type/datetime", "value": "2009-12-11T02:22:06.483123"}, "subjects": ["Peronism", "Psychology", "Psychological aspects"], "latest_revision": 2, "key": "/works/OL10142515W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4135545A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10142816W 1 2009-12-11T02:22:06.483123 {"title": "Historia del Tango 9 - Carlos Gardel", "created": {"type": "/type/datetime", "value": "2009-12-11T02:22:06.483123"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:22:06.483123"}, "latest_revision": 1, "key": "/works/OL10142816W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4135912A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10142867W 1 2009-12-11T02:22:06.483123 {"title": "La Riqueza de Las Personas", "created": {"type": "/type/datetime", "value": "2009-12-11T02:22:06.483123"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:22:06.483123"}, "latest_revision": 1, "key": "/works/OL10142867W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4135972A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10143135W 4 2012-07-05T06:41:04.726462 {"title": "Autoritarismo hispanoamericano", "created": {"type": "/type/datetime", "value": "2009-12-11T02:22:12.629258"}, "last_modified": {"type": "/type/datetime", "value": "2012-07-05T06:41:04.726462"}, "latest_revision": 4, "key": "/works/OL10143135W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4136393A"}}], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL10144335W 3 2018-07-04T16:11:09.995759 {"title": "El Marketing Se Mueve", "cover_edition": {"key": "/books/OL12958958M"}, "created": {"type": "/type/datetime", "value": "2009-12-11T02:22:18.627217"}, "last_modified": {"type": "/type/datetime", "value": "2018-07-04T16:11:09.995759"}, "latest_revision": 3, "key": "/works/OL10144335W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL216799A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10144693W 3 2010-04-28T07:05:36.125994 {"title": "Historias de Inicios y Desafios", "created": {"type": "/type/datetime", "value": "2009-12-11T02:22:18.627217"}, "covers": [3346188], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:05:36.125994"}, "latest_revision": 3, "key": "/works/OL10144693W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4137195A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10145250W 1 2009-12-11T02:22:25.446490 {"title": "Educacion y Estado - Organizacion del Sistema Educ", "created": {"type": "/type/datetime", "value": "2009-12-11T02:22:25.446490"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:22:25.446490"}, "latest_revision": 1, "key": "/works/OL10145250W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4137657A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10145949W 1 2009-12-11T02:22:25.446490 {"title": "Nace El Amor", "created": {"type": "/type/datetime", "value": "2009-12-11T02:22:25.446490"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:22:25.446490"}, "latest_revision": 1, "key": "/works/OL10145949W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4138116A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10146912W 3 2010-04-28T07:05:36.125994 {"title": "Professionalisierung und Schulentwicklung", "created": {"type": "/type/datetime", "value": "2009-12-11T02:22:32.875700"}, "covers": [3269493], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:05:36.125994"}, "latest_revision": 3, "key": "/works/OL10146912W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4138987A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10146938W 4 2019-07-30T23:37:51.687840 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:22:32.875700"}, "subjects": ["Politik", "OUR Brockhaus selection"], "latest_revision": 4, "key": "/works/OL10146938W", "title": "Asylpolitik auf Abwegen: nationalstaatliche und europ aische Reaktionen auf die Globalisierung der Fl uchtlingsstr ome", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4139019A"}}, {"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL853878A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2019-07-30T23:37:51.687840"}, "covers": [3269542], "revision": 4}
+/type/work /works/OL10147199W 2 2010-12-21T09:32:04.904040 {"title": "ACCESS 2000. Eine kompakte Einf\u00fchrung.", "created": {"type": "/type/datetime", "value": "2009-12-11T02:22:37.735690"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-21T09:32:04.904040"}, "latest_revision": 2, "key": "/works/OL10147199W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4139489A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10147237W 4 2010-07-22T11:31:31.906069 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:22:37.735690"}, "subjects": ["OUR Brockhaus selection", "Milit ar"], "latest_revision": 4, "key": "/works/OL10147237W", "title": "Kriegsfischkutter: KFK", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4139554A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:31:31.906069"}, "covers": [3270905], "revision": 4}
+/type/work /works/OL10147391W 3 2010-04-28T07:05:36.125994 {"title": "Regul\u00e4re und chaotische Dynamik", "created": {"type": "/type/datetime", "value": "2009-12-11T02:22:37.735690"}, "covers": [3271166], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:05:36.125994"}, "latest_revision": 3, "key": "/works/OL10147391W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4139744A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10148148W 1 2009-12-11T02:22:46.167506 {"title": "English Coversation leicht gemacht", "created": {"type": "/type/datetime", "value": "2009-12-11T02:22:46.167506"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:22:46.167506"}, "latest_revision": 1, "key": "/works/OL10148148W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4140021A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10148685W 4 2023-01-09T10:14:25.621017 {"title": "Seventh-Day Adventist Contributions to East Africa, 1903-1983", "subjects": ["Zending", "Seventh-Day Adventists", "Gemeinschaft der Siebenten-Tags-Adventisten", "Missions", "Zevendedagadventisten", "History", "Church history"], "key": "/works/OL10148685W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4141005A"}}], "type": {"key": "/type/work"}, "covers": [10667925], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T02:22:46.167506"}, "last_modified": {"type": "/type/datetime", "value": "2023-01-09T10:14:25.621017"}}
+/type/work /works/OL10148730W 1 2009-12-11T02:22:46.167506 {"title": "Benjamin Bl\u00fcmchen. Laubs\u00e4gearbeiten", "created": {"type": "/type/datetime", "value": "2009-12-11T02:22:46.167506"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:22:46.167506"}, "latest_revision": 1, "key": "/works/OL10148730W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4141073A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10148854W 3 2010-04-28T07:05:36.125994 {"title": "Eine Frau verr\u00e4t ihrem besten Freund, was Frauen wirklich ant\u00f6rnt", "created": {"type": "/type/datetime", "value": "2009-12-11T02:22:46.167506"}, "covers": [3273433], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:05:36.125994"}, "latest_revision": 3, "key": "/works/OL10148854W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4141267A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10149359W 2 2019-07-30T23:44:03.275985 {"title": "Sprachpraxis", "created": {"type": "/type/datetime", "value": "2009-12-11T02:22:55.052504"}, "covers": [3275081], "last_modified": {"type": "/type/datetime", "value": "2019-07-30T23:44:03.275985"}, "latest_revision": 2, "key": "/works/OL10149359W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4142348A"}}, {"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4142349A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10149626W 1 2009-12-11T02:22:55.052504 {"title": "Projektportfolio- Management. Multiprojektarbeit im Unternehmenswandel", "created": {"type": "/type/datetime", "value": "2009-12-11T02:22:55.052504"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:22:55.052504"}, "latest_revision": 1, "key": "/works/OL10149626W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4142737A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10149862W 3 2010-04-28T07:05:36.125994 {"title": "Die Loyalit\u00e4t unzufriedener Kunden. Determinanten und Implikationen", "created": {"type": "/type/datetime", "value": "2009-12-11T02:22:55.052504"}, "covers": [3275588], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:05:36.125994"}, "latest_revision": 3, "key": "/works/OL10149862W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4142983A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10149905W 3 2010-04-28T07:05:36.125994 {"title": "Unternehmen auf dem Weg zu einer nachhaltigen Wirtschaftsweise", "created": {"type": "/type/datetime", "value": "2009-12-11T02:22:55.052504"}, "covers": [3275642], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:05:36.125994"}, "latest_revision": 3, "key": "/works/OL10149905W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4143027A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10149979W 3 2010-04-28T07:05:36.125994 {"title": "Theorie und Methode zur Behandlung von perzeptionsgest\u00f6rten Kindern", "created": {"type": "/type/datetime", "value": "2009-12-11T02:22:55.052504"}, "covers": [3275746], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:05:36.125994"}, "latest_revision": 3, "key": "/works/OL10149979W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4143107A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10150267W 5 2020-12-07T06:56:05.789687 {"covers": [8413455], "key": "/works/OL10150267W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4143675A"}}], "title": "Von der Wiederkehr der Seelen Verstorbener", "subjects": ["Christliche Religion", "OUR Brockhaus selection", "Soul", "Spirits", "Future life", "Early works to 1800", "Catholic Church", "Doctrines", "Apparitions"], "subject_people": ["Jacobus de Clusa (1381?-1465)"], "type": {"key": "/type/work"}, "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2009-12-11T02:23:03.574049"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-07T06:56:05.789687"}}
+/type/work /works/OL10150744W 3 2010-07-22T11:31:31.906069 {"last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:31:31.906069"}, "title": "Nachfolge Christi - Nachahmung der Natur: himmlische und nat urliche Magie bei Paracelsus, im Paracelsismus und in der Barockliteratur (Scheffler, Zesen, Grimmelshausen)", "created": {"type": "/type/datetime", "value": "2009-12-11T02:23:03.574049"}, "subjects": ["OUR Brockhaus selection", "Theology, Christianity", "Christianity Theology"], "latest_revision": 3, "key": "/works/OL10150744W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4144261A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10150958W 1 2009-12-11T02:23:03.574049 {"title": "The Coptic Museum", "created": {"type": "/type/datetime", "value": "2009-12-11T02:23:03.574049"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:23:03.574049"}, "latest_revision": 1, "key": "/works/OL10150958W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4144565A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10150968W 3 2010-04-28T07:05:36.125994 {"title": "Marpel 7", "created": {"type": "/type/datetime", "value": "2009-12-11T02:23:03.574049"}, "covers": [3277140], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:05:36.125994"}, "latest_revision": 3, "key": "/works/OL10150968W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4144580A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10150973W 1 2009-12-11T02:23:03.574049 {"title": "Lexikon Der Kartographie Und Geomatik", "created": {"type": "/type/datetime", "value": "2009-12-11T02:23:03.574049"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:23:03.574049"}, "latest_revision": 1, "key": "/works/OL10150973W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4144585A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10151489W 3 2010-04-28T07:05:36.125994 {"title": "Animals in Social Life", "created": {"type": "/type/datetime", "value": "2009-12-11T02:23:11.480753"}, "covers": [3279008], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:05:36.125994"}, "latest_revision": 3, "key": "/works/OL10151489W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4145031A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10151683W 1 2009-12-11T02:23:11.480753 {"title": "Skandinavie, automapa 1:1 800 000 =", "created": {"type": "/type/datetime", "value": "2009-12-11T02:23:11.480753"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:23:11.480753"}, "latest_revision": 1, "key": "/works/OL10151683W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4145127A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10152179W 1 2009-12-11T02:23:20.110084 {"title": "Perchtenmasken in O\u0308sterreich =", "created": {"type": "/type/datetime", "value": "2009-12-11T02:23:20.110084"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:23:20.110084"}, "latest_revision": 1, "key": "/works/OL10152179W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4145613A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10152300W 2 2020-12-20T17:17:39.414794 {"title": "Besch\u00e4ftigungs- und familienpolitische Aspekte der Teilzeitarbeit im Lichte des Teilzeit- und Befristungsgesetzes", "key": "/works/OL10152300W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4145746A"}}], "type": {"key": "/type/work"}, "subjects": ["Part-time employment", "Hours of labor", "Work and family"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T02:23:20.110084"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-20T17:17:39.414794"}}
+/type/work /works/OL10152536W 1 2009-12-11T02:23:20.110084 {"title": "Studio Eighty Interior Design", "created": {"type": "/type/datetime", "value": "2009-12-11T02:23:20.110084"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:23:20.110084"}, "latest_revision": 1, "key": "/works/OL10152536W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4145980A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10152684W 2 2010-12-22T05:15:59.409382 {"title": "Multimedia-Verkabelung", "created": {"type": "/type/datetime", "value": "2009-12-11T02:23:20.110084"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-22T05:15:59.409382"}, "latest_revision": 2, "key": "/works/OL10152684W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4146139A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10152794W 4 2022-06-17T14:34:33.759651 {"title": "KDE", "covers": [3281427], "key": "/works/OL10152794W", "authors": [{"author": {"key": "/authors/OL4146288A"}, "type": {"key": "/type/author_role"}}, {"author": {"key": "/authors/OL3880943A"}, "type": {"key": "/type/author_role"}}], "type": {"key": "/type/work"}, "subtitle": "Anwendung & Programmierung", "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T02:23:20.110084"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-17T14:34:33.759651"}}
+/type/work /works/OL10153024W 2 2019-04-09T06:31:09.436624 {"last_modified": {"type": "/type/datetime", "value": "2019-04-09T06:31:09.436624"}, "title": "La profesion juridica: Nuevas realidades", "created": {"type": "/type/datetime", "value": "2009-12-11T02:23:20.110084"}, "subjects": ["Lawyers", "Employment"], "latest_revision": 2, "key": "/works/OL10153024W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4146533A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10153858W 2 2020-12-13T13:15:50.285146 {"title": "Ley de Contrato de Trabajo", "key": "/works/OL10153858W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4147249A"}}], "type": {"key": "/type/work"}, "subjects": ["Labor contract", "Digests"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T02:23:28.371314"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-13T13:15:50.285146"}}
+/type/work /works/OL10153866W 2 2020-12-08T22:00:25.264780 {"title": "Practica del Fideicomiso", "key": "/works/OL10153866W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4147254A"}}], "type": {"key": "/type/work"}, "subjects": ["Fideicommissum", "Trusts and trustees"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T02:23:28.371314"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-08T22:00:25.264780"}}
+/type/work /works/OL1015403W 4 2010-10-10T15:08:11.014788 {"created": {"type": "/type/datetime", "value": "2009-12-09T19:24:44.920671"}, "latest_revision": 4, "description": {"type": "/type/text", "value": "une jeune femme-elle n'est pas jeune dan le texte\r\nl'unite entre les habitant de l'ile rodrigues"}, "key": "/works/OL1015403W", "title": "Une jeune femme au Mont Limon", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL95793A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-10-10T15:08:11.014788"}, "covers": [6291011], "revision": 4}
+/type/work /works/OL10154085W 1 2009-12-11T02:23:28.371314 {"title": "El Hombre En Busca de Si Mismo", "created": {"type": "/type/datetime", "value": "2009-12-11T02:23:28.371314"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:23:28.371314"}, "latest_revision": 1, "key": "/works/OL10154085W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4147448A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10154358W 1 2009-12-11T02:23:36.104035 {"title": "Control Interno", "created": {"type": "/type/datetime", "value": "2009-12-11T02:23:36.104035"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:23:36.104035"}, "latest_revision": 1, "key": "/works/OL10154358W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4147680A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10154397W 2 2020-12-07T14:41:58.647331 {"title": "Derecho de Da~nos", "key": "/works/OL10154397W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4147711A"}}], "type": {"key": "/type/work"}, "subjects": ["Damages", "Torts"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T02:23:36.104035"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-07T14:41:58.647331"}}
+/type/work /works/OL10154409W 1 2009-12-11T02:23:36.104035 {"title": "Compendio de Derecho de Seguros. Tradicionales y Modernos", "created": {"type": "/type/datetime", "value": "2009-12-11T02:23:36.104035"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:23:36.104035"}, "latest_revision": 1, "key": "/works/OL10154409W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4147720A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10154517W 2 2011-03-16T15:10:41.143575 {"title": "ECG - Master Replacement Guide", "created": {"type": "/type/datetime", "value": "2009-12-11T02:23:36.104035"}, "covers": [6669621, -1], "last_modified": {"type": "/type/datetime", "value": "2011-03-16T15:10:41.143575"}, "latest_revision": 2, "key": "/works/OL10154517W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4147771A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL1015462W 1 2009-12-09T19:24:44.920671 {"title": "Forty days in the desert", "created": {"type": "/type/datetime", "value": "2009-12-09T19:24:44.920671"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:24:44.920671"}, "latest_revision": 1, "key": "/works/OL1015462W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL95814A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10154740W 1 2009-12-11T02:23:36.104035 {"title": "Que Es La Economia?", "created": {"type": "/type/datetime", "value": "2009-12-11T02:23:36.104035"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:23:36.104035"}, "latest_revision": 1, "key": "/works/OL10154740W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4147957A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10154786W 1 2009-12-11T02:23:36.104035 {"title": "Gestion & Exito Empresario", "created": {"type": "/type/datetime", "value": "2009-12-11T02:23:36.104035"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:23:36.104035"}, "latest_revision": 1, "key": "/works/OL10154786W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4147988A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10155022W 1 2009-12-11T02:23:36.104035 {"title": "Matematica Financiera - Fichas", "created": {"type": "/type/datetime", "value": "2009-12-11T02:23:36.104035"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:23:36.104035"}, "latest_revision": 1, "key": "/works/OL10155022W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4148213A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10155213W 3 2019-07-31T12:32:42.662173 {"last_modified": {"type": "/type/datetime", "value": "2019-07-31T12:32:42.662173"}, "title": "Civilidad y Politica En Los Origenes de La Nacion Argentina Las Sociabilidades En Buenos Aires /182", "created": {"type": "/type/datetime", "value": "2009-12-11T02:23:44.138555"}, "subjects": ["Politics and government", "Social life and customs", "Political socialization", "History", "Political socialization -- Argentina -- Buenos Aires -- History -- 19th century.", "Buenos Aires (Argentina) -- Social life and customs -- 19th century.", "Buenos Aires (Argentina) -- Politics and government -- 19th century."], "latest_revision": 3, "key": "/works/OL10155213W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4148401A"}}, {"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL6453811A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10155645W 2 2019-10-28T10:06:56.688117 {"title": "La Civilizacion del Gen", "created": {"type": "/type/datetime", "value": "2009-12-11T02:23:44.138555"}, "last_modified": {"type": "/type/datetime", "value": "2019-10-28T10:06:56.688117"}, "latest_revision": 2, "key": "/works/OL10155645W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL3112798A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10155710W 1 2009-12-11T02:23:44.138555 {"title": "Tecnicas Psicoanaliticas y Conflictos Psiquicos", "created": {"type": "/type/datetime", "value": "2009-12-11T02:23:44.138555"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:23:44.138555"}, "latest_revision": 1, "key": "/works/OL10155710W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4148859A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10155755W 3 2010-04-28T07:05:36.125994 {"title": "Cuentos En Un 1 Minuto", "created": {"type": "/type/datetime", "value": "2009-12-11T02:23:44.138555"}, "covers": [3348234], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:05:36.125994"}, "latest_revision": 3, "key": "/works/OL10155755W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4148878A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10155847W 1 2009-12-11T02:23:44.138555 {"title": "La Arquitectura del Fantasma", "created": {"type": "/type/datetime", "value": "2009-12-11T02:23:44.138555"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:23:44.138555"}, "latest_revision": 1, "key": "/works/OL10155847W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4148943A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10156242W 1 2009-12-11T02:23:51.687118 {"title": "Jim Morrison - Un Jinete En La Tormenta", "created": {"type": "/type/datetime", "value": "2009-12-11T02:23:51.687118"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:23:51.687118"}, "latest_revision": 1, "key": "/works/OL10156242W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4149301A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10156387W 2 2020-02-18T21:28:11.500592 {"title": "Camino a la Perfeccion de Las Virtudes", "created": {"type": "/type/datetime", "value": "2009-12-11T02:23:51.687118"}, "last_modified": {"type": "/type/datetime", "value": "2020-02-18T21:28:11.500592"}, "latest_revision": 2, "key": "/works/OL10156387W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL60265A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10156455W 1 2009-12-11T02:23:51.687118 {"title": "Reencarnacion, La", "created": {"type": "/type/datetime", "value": "2009-12-11T02:23:51.687118"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:23:51.687118"}, "latest_revision": 1, "key": "/works/OL10156455W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4149455A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10156566W 1 2009-12-11T02:23:51.687118 {"title": "Adonde Me Dirijo? - Las Entidades de Bien Publico", "created": {"type": "/type/datetime", "value": "2009-12-11T02:23:51.687118"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:23:51.687118"}, "latest_revision": 1, "key": "/works/OL10156566W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4149563A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10156725W 1 2009-12-11T02:23:51.687118 {"title": "Madre Divina, La", "created": {"type": "/type/datetime", "value": "2009-12-11T02:23:51.687118"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:23:51.687118"}, "latest_revision": 1, "key": "/works/OL10156725W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4149671A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10156773W 1 2009-12-11T02:23:51.687118 {"title": "The Impuestos Internos", "created": {"type": "/type/datetime", "value": "2009-12-11T02:23:51.687118"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:23:51.687118"}, "latest_revision": 1, "key": "/works/OL10156773W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4149702A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10157038W 3 2010-07-22T11:31:31.906069 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:23:51.687118"}, "subject_places": ["Argentina"], "subjects": ["Humor", "Men", "Man-woman relationships", "Attitudes"], "latest_revision": 3, "key": "/works/OL10157038W", "title": "Todo lo que usted siempre pens\u00f3 sobre los hombres--", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4149917A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:31:31.906069"}, "revision": 3}
+/type/work /works/OL10157059W 4 2011-02-05T03:59:15.169550 {"title": "Manual de Alquileres", "created": {"type": "/type/datetime", "value": "2009-12-11T02:23:51.687118"}, "covers": [5233926], "last_modified": {"type": "/type/datetime", "value": "2011-02-05T03:59:15.169550"}, "latest_revision": 4, "key": "/works/OL10157059W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4149933A"}}], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL10157141W 1 2009-12-11T02:23:58.207624 {"title": "San Francisco y Los Angeles", "created": {"type": "/type/datetime", "value": "2009-12-11T02:23:58.207624"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:23:58.207624"}, "latest_revision": 1, "key": "/works/OL10157141W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4149936A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10157432W 1 2009-12-11T02:23:58.207624 {"title": "Dichos del Truco - Historia, Formas de Jugarlo", "created": {"type": "/type/datetime", "value": "2009-12-11T02:23:58.207624"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:23:58.207624"}, "latest_revision": 1, "key": "/works/OL10157432W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4150080A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10157728W 5 2020-02-13T07:04:44.133505 {"title": "La Hipertension / Hypertension", "created": {"type": "/type/datetime", "value": "2009-12-11T02:23:58.207624"}, "covers": [5234030], "last_modified": {"type": "/type/datetime", "value": "2020-02-13T07:04:44.133505"}, "latest_revision": 5, "key": "/works/OL10157728W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4150225A"}}], "type": {"key": "/type/work"}, "revision": 5}
+/type/work /works/OL10158157W 1 2009-12-11T02:24:06.644211 {"title": "Velas Artesanales - Fabricacion y Decoracion", "created": {"type": "/type/datetime", "value": "2009-12-11T02:24:06.644211"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:24:06.644211"}, "latest_revision": 1, "key": "/works/OL10158157W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4150668A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10158191W 1 2009-12-11T02:24:06.644211 {"title": "Kazuo Ohno - El Ultimo Emperador de La Danza", "created": {"type": "/type/datetime", "value": "2009-12-11T02:24:06.644211"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:24:06.644211"}, "latest_revision": 1, "key": "/works/OL10158191W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4150696A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10158779W 2 2020-12-14T17:41:17.806801 {"title": "Quiebra y Responsabilidad de Administradores y Terceros", "key": "/works/OL10158779W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4151288A"}}], "type": {"key": "/type/work"}, "subjects": ["Bankruptcy", "Business failures", "Law and legislation", "Directors of corporations", "Legal status, laws", "Social responsibility of business"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T02:24:06.644211"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-14T17:41:17.806801"}}
+/type/work /works/OL10159056W 1 2009-12-11T02:24:06.644211 {"title": "Matematica Para Arquitectura y Diseo", "created": {"type": "/type/datetime", "value": "2009-12-11T02:24:06.644211"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:24:06.644211"}, "latest_revision": 1, "key": "/works/OL10159056W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4151551A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10159068W 4 2020-12-02T03:27:09.347526 {"title": "Los Fideicomisos y Las Obligaciones Negociables", "covers": [5234504], "key": "/works/OL10159068W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4151563A"}}], "type": {"key": "/type/work"}, "subjects": ["Fideicommissum", "Obligations (Law)"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T02:24:06.644211"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-02T03:27:09.347526"}}
+/type/work /works/OL10159104W 1 2009-12-11T02:24:06.644211 {"title": "Estatica de Las Construcciones", "created": {"type": "/type/datetime", "value": "2009-12-11T02:24:06.644211"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:24:06.644211"}, "latest_revision": 1, "key": "/works/OL10159104W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4151587A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10159197W 2 2012-06-23T22:57:21.315098 {"title": "Como Reconocer Espa\u00f1a En Tour O Por Su Cuenta", "created": {"type": "/type/datetime", "value": "2009-12-11T02:24:13.474535"}, "last_modified": {"type": "/type/datetime", "value": "2012-06-23T22:57:21.315098"}, "latest_revision": 2, "key": "/works/OL10159197W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4151700A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10159463W 1 2009-12-11T02:24:13.474535 {"title": "Parabolas del Evangelio Segun Los Padres de La Iglesia, Las - Tomo 6", "created": {"type": "/type/datetime", "value": "2009-12-11T02:24:13.474535"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:24:13.474535"}, "latest_revision": 1, "key": "/works/OL10159463W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4151940A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10160020W 3 2010-07-22T11:31:31.906069 {"last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:31:31.906069"}, "title": "Mian dui qi gong jie", "created": {"type": "/type/datetime", "value": "2009-12-11T02:24:13.474535"}, "subjects": ["Qi gong", "China", "Exercise therapy"], "latest_revision": 3, "key": "/works/OL10160020W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4152339A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10160098W 3 2010-04-28T07:05:36.125994 {"title": "Du shi di n\u00fc er", "created": {"type": "/type/datetime", "value": "2009-12-11T02:24:13.474535"}, "covers": [5359351], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:05:36.125994"}, "latest_revision": 3, "key": "/works/OL10160098W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4152351A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10160860W 3 2010-07-22T11:31:31.906069 {"last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:31:31.906069"}, "latest_revision": 3, "key": "/works/OL10160860W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4152561A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T02:24:18.444877"}, "title": "Da qin di guo shi huang ying zheng chuan qi", "subject_places": ["China"], "subjects": ["History"], "subject_times": ["1949-"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10160987W 2 2020-11-25T16:31:03.243664 {"last_modified": {"type": "/type/datetime", "value": "2020-11-25T16:31:03.243664"}, "title": "Huang Bo hai yu lei xi chong yan jiu", "created": {"type": "/type/datetime", "value": "2009-12-11T02:24:18.444877"}, "subjects": ["Fishes", "Trematoda"], "latest_revision": 2, "key": "/works/OL10160987W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4152655A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10161088W 2 2020-12-06T23:20:00.250440 {"title": "Yu Xia shi qi de zhong yuan", "key": "/works/OL10161088W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4152742A"}}], "type": {"key": "/type/work"}, "subjects": ["Civilization", "Antiquities"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T02:24:18.444877"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-06T23:20:00.250440"}}
+/type/work /works/OL1016109W 3 2010-04-28T07:05:36.125994 {"title": "Dictionar Ilustrat Englez-Roman", "created": {"type": "/type/datetime", "value": "2009-12-09T19:24:44.920671"}, "covers": [3356332], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:05:36.125994"}, "latest_revision": 3, "key": "/works/OL1016109W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL96030A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10161314W 4 2020-11-16T12:04:25.212642 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:24:22.849358"}, "subjects": ["Criticism and interpretation"], "latest_revision": 4, "key": "/works/OL10161314W", "title": "Zheng Zhenduo lun", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4152832A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-11-16T12:04:25.212642"}, "covers": [5234861], "revision": 4}
+/type/work /works/OL10161351W 4 2020-12-01T21:19:39.250007 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:24:22.849358"}, "subjects": ["Sociolinguistics", "Streets", "History"], "latest_revision": 4, "key": "/works/OL10161351W", "title": "Beijing jie xiang ming cheng shi hua", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4152843A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-01T21:19:39.250007"}, "covers": [5242479], "revision": 4}
+/type/work /works/OL1016156W 3 2010-07-22T11:31:31.906069 {"created": {"type": "/type/datetime", "value": "2009-12-09T19:24:44.920671"}, "subject_places": ["Finance"], "subjects": ["Energy development", "South Africa"], "latest_revision": 3, "key": "/works/OL1016156W", "title": "Complete documentation of energy projects available for funding, 1993", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL96034A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:31:31.906069"}, "revision": 3}
+/type/work /works/OL10161674W 4 2020-11-13T21:16:15.352839 {"last_modified": {"type": "/type/datetime", "value": "2020-11-13T21:16:15.352839"}, "title": "Tai ping tian guo zhi du chu tan", "created": {"type": "/type/datetime", "value": "2009-12-11T02:24:22.849358"}, "subjects": ["Taiping Rebellion, 1850-1864", "History"], "latest_revision": 4, "key": "/works/OL10161674W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4152951A"}}], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL10162277W 4 2022-12-07T05:47:13.641305 {"subject_places": ["China", "Portugal", "Macau (China : Special Administrative Region)"], "subjects": ["Sources", "Military relations", "History", "Bao xiao shi mo shu", "Commercial Law"], "key": "/works/OL10162277W", "title": "Weiliduo \"Bao xiao shi mo shu\" jian zheng =", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4153165A"}}], "type": {"key": "/type/work"}, "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T02:24:28.055717"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-07T05:47:13.641305"}}
+/type/work /works/OL1016231W 1 2009-12-09T19:24:44.920671 {"title": "Le livre blanc du football camerounais", "created": {"type": "/type/datetime", "value": "2009-12-09T19:24:44.920671"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:24:44.920671"}, "latest_revision": 1, "key": "/works/OL1016231W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL96053A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10162404W 1 2009-12-11T02:24:28.055717 {"title": "Sun Qifeng (Dang dai ming jia Zhongguo hua quan ji)", "created": {"type": "/type/datetime", "value": "2009-12-11T02:24:28.055717"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:24:28.055717"}, "latest_revision": 1, "key": "/works/OL10162404W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4153207A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10162733W 2 2020-11-17T13:16:48.873338 {"last_modified": {"type": "/type/datetime", "value": "2020-11-17T13:16:48.873338"}, "title": "Zhongguo xi fa", "created": {"type": "/type/datetime", "value": "2009-12-11T02:24:28.055717"}, "subjects": ["Magic tricks"], "latest_revision": 2, "key": "/works/OL10162733W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4153344A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10163107W 1 2009-12-11T02:24:28.055717 {"title": "Hong lou meng: Gen ju Cao Xueqin yuan yi xin xu", "created": {"type": "/type/datetime", "value": "2009-12-11T02:24:28.055717"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:24:28.055717"}, "latest_revision": 1, "key": "/works/OL10163107W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4153510A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10163162W 2 2020-11-29T23:49:10.984495 {"last_modified": {"type": "/type/datetime", "value": "2020-11-29T23:49:10.984495"}, "title": "Kong hou tian di", "created": {"type": "/type/datetime", "value": "2009-12-11T02:24:32.947486"}, "subjects": ["Instruction and study", "Kong hou"], "latest_revision": 2, "key": "/works/OL10163162W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4153529A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10163432W 2 2020-11-09T14:43:40.839713 {"last_modified": {"type": "/type/datetime", "value": "2020-11-09T14:43:40.839713"}, "title": "Yi shu zhi jue yan jiu =", "created": {"type": "/type/datetime", "value": "2009-12-11T02:24:32.947486"}, "subjects": ["Arts", "Psychological aspects", "Intuition (Psychology)"], "latest_revision": 2, "key": "/works/OL10163432W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4153617A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10163548W 4 2020-09-12T09:54:12.148753 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:24:32.947486"}, "subjects": ["Economic policy", "Economics"], "latest_revision": 4, "key": "/works/OL10163548W", "title": "Li Yining jiu shi nian dai wen xuan (Li Yining jing ji zhu zuo xi lie)", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4153636A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-09-12T09:54:12.148753"}, "covers": [5236325], "revision": 4}
+/type/work /works/OL10163597W 2 2020-11-29T23:24:19.090308 {"last_modified": {"type": "/type/datetime", "value": "2020-11-29T23:24:19.090308"}, "title": "Liu de ku he ting yu sheng", "created": {"type": "/type/datetime", "value": "2009-12-11T02:24:32.947486"}, "subjects": ["Chinese poetry", "History and criticism"], "latest_revision": 2, "key": "/works/OL10163597W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4153647A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10163619W 3 2020-12-01T22:10:22.353217 {"subtitle": "Yi ge Taiwan she qu di xin yang yu ren sheng (Wen hua ren lei xue bi ji cong shu)", "title": "Shan jie di ji yi", "key": "/works/OL10163619W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4153650A"}}], "type": {"key": "/type/work"}, "subjects": ["Religion", "Rites and ceremonies"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T02:24:32.947486"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-01T22:10:22.353217"}}
+/type/work /works/OL10164028W 2 2020-11-12T03:49:44.655548 {"last_modified": {"type": "/type/datetime", "value": "2020-11-12T03:49:44.655548"}, "title": "Lao dong jing sai shou ce", "created": {"type": "/type/datetime", "value": "2009-12-11T02:24:32.947486"}, "subjects": ["Socialist competition"], "latest_revision": 2, "key": "/works/OL10164028W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4153836A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10164601W 2 2020-11-08T08:46:46.637282 {"last_modified": {"type": "/type/datetime", "value": "2020-11-08T08:46:46.637282"}, "title": "Lao hu pi gu shang di cang ying he cang ying bi hu xia di lao hu", "created": {"type": "/type/datetime", "value": "2009-12-11T02:24:39.197129"}, "subjects": ["Dictionaries", "Personal Names", "Chinese"], "latest_revision": 2, "key": "/works/OL10164601W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4154252A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10164871W 4 2020-12-07T13:23:25.779915 {"title": "Song dai zai fu zhi du yan jiu", "covers": [5236915], "key": "/works/OL10164871W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4154346A"}}], "type": {"key": "/type/work"}, "subjects": ["Prime ministers", "Politics and government"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T02:24:39.197129"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-07T13:23:25.779915"}}
+/type/work /works/OL101648W 6 2020-10-05T21:26:16.615890 {"covers": [6519301], "last_modified": {"type": "/type/datetime", "value": "2020-10-05T21:26:16.615890"}, "latest_revision": 6, "key": "/works/OL101648W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1209770A"}}], "created": {"type": "/type/datetime", "value": "2009-10-17T18:13:12.238883"}, "title": "A la recherche des mondes perdus", "subject_places": ["Middle East"], "subjects": ["Archaeology", "Antiquities", "History"], "type": {"key": "/type/work"}, "revision": 6}
+/type/work /works/OL10165265W 2 2020-12-07T13:34:42.216688 {"title": "Zhongguo zhao huang yu zhao lai shi sheng", "key": "/works/OL10165265W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4154468A"}}], "type": {"key": "/type/work"}, "subjects": ["Outdoor Advertising", "History", "Signs and signboards", "Advertising"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T02:24:45.415559"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-07T13:34:42.216688"}}
+/type/work /works/OL10165350W 4 2020-12-02T15:54:36.939772 {"title": "Tang Shaoyi yu Qing mo Min guo zheng fu (Ming ren, li shi shun jian)", "covers": [5235460], "key": "/works/OL10165350W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4154492A"}}], "type": {"key": "/type/work"}, "subjects": ["Prime ministers", "Biography", "History"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T02:24:45.415559"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-02T15:54:36.939772"}}
+/type/work /works/OL10165393W 2 2020-12-05T08:20:14.901627 {"title": "Shijiazhuang xi bu lu you zhan lue kai fa yan jiu", "key": "/works/OL10165393W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4154506A"}}], "type": {"key": "/type/work"}, "subjects": ["Tourism", "Description and travel"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T02:24:45.415559"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-05T08:20:14.901627"}}
+/type/work /works/OL10165398W 3 2010-07-22T11:31:31.906069 {"last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:31:31.906069"}, "latest_revision": 3, "key": "/works/OL10165398W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4154508A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T02:24:45.415559"}, "title": "Qian Jia xue shu bian nian", "subject_places": ["China"], "subjects": ["History", "Learning and scholarship"], "subject_times": ["Qing dynasty, 1644-1912"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10165828W 2 2020-11-25T15:06:58.790359 {"last_modified": {"type": "/type/datetime", "value": "2020-11-25T15:06:58.790359"}, "title": "Zhongguo gu dai bei fang min zu shi xin lun (Nei Menggu li shi wen hua cong shu)", "created": {"type": "/type/datetime", "value": "2009-12-11T02:24:45.415559"}, "subjects": ["Ethnology", "Ethnic relations"], "latest_revision": 2, "key": "/works/OL10165828W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4154683A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10165831W 4 2019-11-10T12:15:42.067097 {"last_modified": {"type": "/type/datetime", "value": "2019-11-10T12:15:42.067097"}, "title": "Chang zheng zhong de n\u00fc hong jun", "created": {"type": "/type/datetime", "value": "2009-12-11T02:24:45.415559"}, "covers": [9108842], "subject_places": ["China"], "subjects": ["Women soldiers", "History", "Long March (China : 1934-1935) fast (OCoLC)fst01353590", "Er wan wu qian li chang zheng", "Shi liao", "Bao gao wen xue"], "latest_revision": 4, "key": "/works/OL10165831W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4154685A"}}], "subject_times": ["Long March, 1934-1935"], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL10166352W 2 2020-11-11T22:54:34.989002 {"last_modified": {"type": "/type/datetime", "value": "2020-11-11T22:54:34.989002"}, "title": "Yan shuo xin li xue", "created": {"type": "/type/datetime", "value": "2009-12-11T02:24:50.459195"}, "subjects": ["Public speaking", "Psychological aspects"], "latest_revision": 2, "key": "/works/OL10166352W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4154901A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10166411W 2 2020-11-13T18:36:48.148952 {"last_modified": {"type": "/type/datetime", "value": "2020-11-13T18:36:48.148952"}, "title": "50 jia zhong xiao qi ye chang zhang jing li jing ying mi jue", "created": {"type": "/type/datetime", "value": "2009-12-11T02:24:50.459195"}, "subjects": ["Factory management"], "latest_revision": 2, "key": "/works/OL10166411W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4154924A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10166902W 2 2020-12-22T11:28:19.427527 {"title": "Hu Ning zhuan", "key": "/works/OL10166902W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4155089A"}}], "type": {"key": "/type/work"}, "subjects": ["Physicists", "Biography"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T02:24:50.459195"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-22T11:28:19.427527"}}
+/type/work /works/OL10167427W 5 2022-12-31T18:03:52.290324 {"subject_places": ["Kaifeng Shi..", "China"], "subjects": ["Temples, Buddhist", "Xiang guo si (Kaifeng Shi, China)", "Buddhist Temples", "Buddhist temples", "Buddhism", "History", "Xiang guo si (Kaifeng Shi, China)"], "key": "/works/OL10167427W", "title": "Xiang guo si", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4155235A"}}], "type": {"key": "/type/work"}, "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2009-12-11T02:24:55.467951"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-31T18:03:52.290324"}}
+/type/work /works/OL10167511W 4 2020-12-05T09:29:27.868878 {"title": "Zhan lue yu mu biao", "covers": [5244611], "key": "/works/OL10167511W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4155265A"}}], "type": {"key": "/type/work"}, "subjects": ["City planning", "Urban policy", "Strategy"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T02:24:55.467951"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-05T09:29:27.868878"}}
+/type/work /works/OL10167883W 3 2010-07-22T11:39:27.357312 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:24:55.467951"}, "subject_places": ["China"], "subjects": ["Political corruption", "Party work", "Power (Social sciences)", "Political ethics", "Zhongguo gong chan dang"], "latest_revision": 3, "key": "/works/OL10167883W", "title": "Lun gong chan dang ren de quan li guan =", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4155376A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:39:27.357312"}, "revision": 3}
+/type/work /works/OL10168142W 3 2010-07-22T11:39:27.357312 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:25:00.905099"}, "subject_places": ["Singapore"], "subjects": ["Southern Min dialects", "Dictionaries"], "latest_revision": 3, "key": "/works/OL10168142W", "title": "Xinjiapo Min nan hua ci dian", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4155474A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:39:27.357312"}, "revision": 3}
+/type/work /works/OL10168166W 2 2020-11-18T21:18:15.622440 {"last_modified": {"type": "/type/datetime", "value": "2020-11-18T21:18:15.622440"}, "title": "Zhongguo kao shi fa zhan shi lue", "created": {"type": "/type/datetime", "value": "2009-12-11T02:25:00.905099"}, "subjects": ["Civil service", "Examinations", "History"], "latest_revision": 2, "key": "/works/OL10168166W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4155482A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10168275W 3 2010-07-22T11:39:27.357312 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:25:00.905099"}, "subjects": ["Criticism and interpretation"], "subject_people": ["Shu Yan (991-1055)"], "key": "/works/OL10168275W", "title": "Yan Shu ci xin shi ji ping", "latest_revision": 3, "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4155514A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:39:27.357312"}, "revision": 3}
+/type/work /works/OL10168509W 4 2020-11-17T05:08:50.590649 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:25:00.905099"}, "subjects": ["Marketing"], "latest_revision": 4, "key": "/works/OL10168509W", "title": "Zhongguo shi chang fa yu yan jiu (\"Zhongguo xian shi jing ji yan jiu\" cong shu)", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4155607A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-11-17T05:08:50.590649"}, "covers": [5235847], "revision": 4}
+/type/work /works/OL10169230W 1 2009-12-11T02:25:06.489922 {"title": "\"Yue mian wu\" de n\u00fc sheng", "created": {"type": "/type/datetime", "value": "2009-12-11T02:25:06.489922"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:25:06.489922"}, "latest_revision": 1, "key": "/works/OL10169230W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4155883A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10169681W 2 2020-11-13T19:09:48.000171 {"last_modified": {"type": "/type/datetime", "value": "2020-11-13T19:09:48.000171"}, "title": "Born to Run H/B (Changjiang lu you xi lie tu shu)", "created": {"type": "/type/datetime", "value": "2009-12-11T02:25:06.489922"}, "subjects": ["Tales"], "latest_revision": 2, "key": "/works/OL10169681W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4156055A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10169920W 2 2020-11-12T00:04:05.210578 {"last_modified": {"type": "/type/datetime", "value": "2020-11-12T00:04:05.210578"}, "title": "Zhong xue sheng san bu qu", "created": {"type": "/type/datetime", "value": "2009-12-11T02:25:06.489922"}, "subjects": ["High school students"], "latest_revision": 2, "key": "/works/OL10169920W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4156141A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10170492W 4 2020-11-10T08:51:55.243268 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:25:12.539217"}, "subjects": ["Real property", "Popular works"], "latest_revision": 4, "key": "/works/OL10170492W", "title": "Fang wu zheng ce fa lu zhi shi", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4156384A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-11-10T08:51:55.243268"}, "covers": [5235921], "revision": 4}
+/type/work /works/OL10170503W 3 2010-04-28T07:05:36.125994 {"title": "Mao de ji qing shi dai (Zhong Ri nu zuo jia xin zuo da xi. Zhong guo fang zhen)", "created": {"type": "/type/datetime", "value": "2009-12-11T02:25:12.539217"}, "covers": [5238042], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:05:36.125994"}, "latest_revision": 3, "key": "/works/OL10170503W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4156389A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1017096W 3 2010-07-22T11:39:27.357312 {"created": {"type": "/type/datetime", "value": "2009-12-09T19:26:18.550368"}, "subject_places": ["Lesotho"], "subjects": ["Drought"], "latest_revision": 3, "key": "/works/OL1017096W", "title": "Assessment of areas most affected by drought in Lesotho", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL96360A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:39:27.357312"}, "revision": 3}
+/type/work /works/OL10171125W 2 2020-11-12T14:23:51.020857 {"last_modified": {"type": "/type/datetime", "value": "2020-11-12T14:23:51.020857"}, "title": "Zhong xi wen hua yu Mao Zedong zao qi si xiang", "created": {"type": "/type/datetime", "value": "2009-12-11T02:25:12.539217"}, "subjects": ["Philosophy"], "latest_revision": 2, "key": "/works/OL10171125W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4156665A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10171797W 1 2009-12-11T02:25:17.723503 {"title": "Shen mi de lai xin", "created": {"type": "/type/datetime", "value": "2009-12-11T02:25:17.723503"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:25:17.723503"}, "latest_revision": 1, "key": "/works/OL10171797W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4156934A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1017197W 3 2010-07-22T11:39:27.357312 {"created": {"type": "/type/datetime", "value": "2009-12-09T19:26:18.550368"}, "subject_places": ["Mulago II Village", "Uganda"], "subjects": ["Malnutrition in children", "Growth", "Children", "Prevention"], "latest_revision": 3, "key": "/works/OL1017197W", "title": "Growth monitoring and promotion in Mulago II village", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL96403A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:39:27.357312"}, "revision": 3}
+/type/work /works/OL10172101W 4 2010-07-22T11:39:27.357312 {"last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:39:27.357312"}, "title": "Dang dai Zhongguo de wen hua pi ping", "created": {"type": "/type/datetime", "value": "2009-12-11T02:25:17.723503"}, "covers": [5510973], "subject_places": ["China"], "subjects": ["Criticism", "History"], "latest_revision": 4, "key": "/works/OL10172101W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4157058A"}}], "subject_times": ["20th century"], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL10172144W 2 2020-11-16T05:35:26.055187 {"last_modified": {"type": "/type/datetime", "value": "2020-11-16T05:35:26.055187"}, "title": "Su cha tong yi fan yi ci dian", "created": {"type": "/type/datetime", "value": "2009-12-11T02:25:23.523886"}, "subjects": ["Chinese language", "Synonyms and antonyms", "Dictionaries"], "latest_revision": 2, "key": "/works/OL10172144W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4157073A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10172316W 3 2010-07-22T11:39:27.357312 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:25:23.523886"}, "subject_places": ["China", "Xinjiang Uygur Zizhiqu"], "subjects": ["Cookery, Chinese", "Cookery", "Cookery, Uighur", "Chinese Cookery", "Uighur Cookery"], "latest_revision": 3, "key": "/works/OL10172316W", "title": "Xinjiang te se cai =", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4157116A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:39:27.357312"}, "revision": 3}
+/type/work /works/OL10172513W 4 2020-11-16T03:36:40.834630 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:25:23.523886"}, "subjects": ["Funeral rites and ceremonies", "Civilization", "Social life and customs"], "latest_revision": 4, "key": "/works/OL10172513W", "title": "Zhongguo gu dai sang zang xi su (Zhongguo feng su cong shu)", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4157206A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-11-16T03:36:40.834630"}, "covers": [5236129], "revision": 4}
+/type/work /works/OL10172524W 3 2010-07-22T11:39:27.357312 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:25:23.523886"}, "subjects": ["History and criticism", "Chinese fiction", "Chinese poetry"], "latest_revision": 3, "key": "/works/OL10172524W", "title": "Xiao shuo yu shi di yi shu", "subject_times": ["20th century"], "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4157209A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:39:27.357312"}, "revision": 3}
+/type/work /works/OL10172835W 1 2009-12-11T02:25:23.523886 {"title": "Protein-protein interactions involved in transcriptional activation by activators", "created": {"type": "/type/datetime", "value": "2009-12-11T02:25:23.523886"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:25:23.523886"}, "latest_revision": 1, "key": "/works/OL10172835W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4157367A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1017297W 2 2010-07-22T11:39:27.357312 {"created": {"type": "/type/datetime", "value": "2009-12-09T19:26:18.550368"}, "subject_places": ["Ghana"], "subjects": ["Cacao", "Juvenile literature"], "latest_revision": 2, "key": "/works/OL1017297W", "title": "The golden cocoa pod", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL96453A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:39:27.357312"}, "revision": 2}
+/type/work /works/OL10173550W 2 2020-11-19T00:26:17.978104 {"last_modified": {"type": "/type/datetime", "value": "2020-11-19T00:26:17.978104"}, "title": "Sheng ren yu wu shi", "created": {"type": "/type/datetime", "value": "2009-12-11T02:25:34.218479"}, "subjects": ["Civilization"], "latest_revision": 2, "key": "/works/OL10173550W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4157694A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10173809W 2 2010-08-03T18:52:40.843642 {"subtitle": "Lei no. 2/78/M de 25 de fevereiro.", "last_modified": {"type": "/type/datetime", "value": "2010-08-03T18:52:40.843642"}, "latest_revision": 2, "key": "/works/OL10173809W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4157791A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T02:25:34.218479"}, "title": "Imposto profissional", "subject_places": ["China", "Macau (Special Administrative Region)"], "subjects": ["Law and legislation", "Income tax", "Professions", "Taxation"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10174102W 3 2022-12-27T09:14:15.083994 {"title": "Huang Pilie ping zhuan (Zhongguo si xiang jia ping zhuan cong shu)", "key": "/works/OL10174102W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4157916A"}}], "type": {"key": "/type/work"}, "subjects": ["Book Collectors", "Biography", "Book collectors"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T02:25:34.218479"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-27T09:14:15.083994"}}
+/type/work /works/OL10174163W 2 2020-11-25T15:13:13.966368 {"last_modified": {"type": "/type/datetime", "value": "2020-11-25T15:13:13.966368"}, "title": "She qu yan jiu di li lun yu fang fa", "created": {"type": "/type/datetime", "value": "2009-12-11T02:25:44.423888"}, "subjects": ["Communities", "Research"], "latest_revision": 2, "key": "/works/OL10174163W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4157945A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL1017416W 1 2009-12-09T19:27:21.257727 {"title": "Revealed comparative advantage and export propensity in Kenya", "created": {"type": "/type/datetime", "value": "2009-12-09T19:27:21.257727"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:27:21.257727"}, "latest_revision": 1, "key": "/works/OL1017416W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL96480A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10174579W 2 2020-11-25T14:28:13.292390 {"last_modified": {"type": "/type/datetime", "value": "2020-11-25T14:28:13.292390"}, "title": "Kangde mei xue yan jiu", "created": {"type": "/type/datetime", "value": "2009-12-11T02:25:44.423888"}, "subjects": ["Aesthetics", "Modern Aesthetics"], "latest_revision": 2, "key": "/works/OL10174579W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4158122A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10174812W 1 2009-12-11T02:25:44.423888 {"title": "Ai yo wei hao da dan", "created": {"type": "/type/datetime", "value": "2009-12-11T02:25:44.423888"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:25:44.423888"}, "latest_revision": 1, "key": "/works/OL10174812W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4158195A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10175413W 2 2020-11-17T17:33:24.928442 {"last_modified": {"type": "/type/datetime", "value": "2020-11-17T17:33:24.928442"}, "title": "Gu yi fan zui jie duan xing tai lun (Xing fa xue yan jiu cong shu)", "created": {"type": "/type/datetime", "value": "2009-12-11T02:25:51.922716"}, "subjects": ["Criminal intent", "Preparation (Criminal law)"], "latest_revision": 2, "key": "/works/OL10175413W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4158470A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10175452W 3 2010-07-22T11:39:27.357312 {"last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:39:27.357312"}, "title": "Jie ti Ying yu ci hui 6000 =", "created": {"type": "/type/datetime", "value": "2009-12-11T02:25:51.922716"}, "subjects": ["English language", "Textbooks for foreign speakers", "Problems, exercises, etc", "Problems, exercises"], "latest_revision": 3, "key": "/works/OL10175452W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4158496A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10175647W 2 2020-11-17T07:49:49.885544 {"last_modified": {"type": "/type/datetime", "value": "2020-11-17T07:49:49.885544"}, "title": "Zhongguo wen ti bi jiao xue", "created": {"type": "/type/datetime", "value": "2009-12-11T02:25:51.922716"}, "subjects": ["Style", "Chinese language"], "latest_revision": 2, "key": "/works/OL10175647W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4158579A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10175688W 3 2010-07-22T11:39:27.357312 {"last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:39:27.357312"}, "latest_revision": 3, "key": "/works/OL10175688W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4158604A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T02:25:51.922716"}, "title": "Song shi lun l\u00fce", "subject_places": ["China"], "subjects": ["History"], "subject_times": ["Song dynasty, 960-1279"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10175706W 3 2010-07-22T11:39:27.357312 {"last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:39:27.357312"}, "latest_revision": 3, "key": "/works/OL10175706W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4158608A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T02:25:51.922716"}, "title": "Jinling qiu meng", "subject_places": ["Taiwan", "China"], "subjects": ["Biography", "History", "Zhongguo guo min dang"], "subject_times": ["1945-", "20th century"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10175884W 2 2020-10-16T03:31:50.613017 {"last_modified": {"type": "/type/datetime", "value": "2020-10-16T03:31:50.613017"}, "title": "Huipulla", "created": {"type": "/type/datetime", "value": "2009-12-11T02:25:51.922716"}, "subjects": ["Generals", "Biography"], "latest_revision": 2, "key": "/works/OL10175884W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4158723A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10175910W 2 2020-11-24T23:58:38.511517 {"last_modified": {"type": "/type/datetime", "value": "2020-11-24T23:58:38.511517"}, "title": "Byrokraatista kansalaisten palvelijaksi", "created": {"type": "/type/datetime", "value": "2009-12-11T02:25:51.922716"}, "subjects": ["Public administration"], "latest_revision": 2, "key": "/works/OL10175910W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4158749A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10176067W 5 2020-10-28T05:02:36.379889 {"last_modified": {"type": "/type/datetime", "value": "2020-10-28T05:02:36.379889"}, "title": "Alvar Aalto", "created": {"type": "/type/datetime", "value": "2009-12-11T02:25:51.922716"}, "subjects": ["Contributions in design", "Design", "History", "Bildband", "M\u00f6bel"], "latest_revision": 5, "key": "/works/OL10176067W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4158890A"}}], "type": {"key": "/type/work"}, "revision": 5}
+/type/work /works/OL10176412W 1 2009-12-11T02:25:59.420834 {"title": "SYMMETRIA", "created": {"type": "/type/datetime", "value": "2009-12-11T02:25:59.420834"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:25:59.420834"}, "latest_revision": 1, "key": "/works/OL10176412W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4159242A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10176487W 1 2009-12-11T02:25:59.420834 {"title": "Klik!", "created": {"type": "/type/datetime", "value": "2009-12-11T02:25:59.420834"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:25:59.420834"}, "latest_revision": 1, "key": "/works/OL10176487W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4159327A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10176908W 2 2020-11-15T20:57:59.875926 {"last_modified": {"type": "/type/datetime", "value": "2020-11-15T20:57:59.875926"}, "title": "Zhongguo xiao shuo pi ping shi lue", "created": {"type": "/type/datetime", "value": "2009-12-11T02:25:59.420834"}, "subjects": ["Chinese fiction", "History and criticism"], "latest_revision": 2, "key": "/works/OL10176908W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4159577A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10177060W 3 2010-07-22T11:39:27.357312 {"last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:39:27.357312"}, "latest_revision": 3, "key": "/works/OL10177060W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4159635A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T02:25:59.420834"}, "title": "Han Jin zhi ji dao jia si xiang yan jiu", "subject_places": ["China"], "subjects": ["Taoism", "Philosophy, Chinese", "Chinese Philosophy"], "subject_times": ["221 B.C.-960 A.D."], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10177286W 2 2020-11-17T07:45:43.545154 {"last_modified": {"type": "/type/datetime", "value": "2020-11-17T07:45:43.545154"}, "title": "Qi ye yong li zhi yuan", "created": {"type": "/type/datetime", "value": "2009-12-11T02:26:04.767655"}, "subjects": ["Organziational behavior", "Corporate culture"], "latest_revision": 2, "key": "/works/OL10177286W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4159715A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10177485W 2 2020-11-12T03:56:20.502065 {"last_modified": {"type": "/type/datetime", "value": "2020-11-12T03:56:20.502065"}, "title": "Xian dai qi ye yu shi chang jing ying ce lue (Xin ji shu ge ming yu guan li xian dai hua cong shu)", "created": {"type": "/type/datetime", "value": "2009-12-11T02:26:04.767655"}, "subjects": ["Marketing", "Management"], "latest_revision": 2, "key": "/works/OL10177485W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4159793A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10177549W 4 2020-11-19T01:08:20.406765 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:26:04.767655"}, "subjects": ["Economic policy"], "latest_revision": 4, "key": "/works/OL10177549W", "title": "Quan ceng kai fang", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4159833A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-11-19T01:08:20.406765"}, "covers": [5237123], "revision": 4}
+/type/work /works/OL10177896W 2 2020-11-25T14:27:12.371204 {"last_modified": {"type": "/type/datetime", "value": "2020-11-25T14:27:12.371204"}, "title": "Qian qiu ye", "created": {"type": "/type/datetime", "value": "2009-12-11T02:26:04.767655"}, "subjects": ["Qianyang zhi ye zhong xue (Shaanxi Sheng, China)"], "latest_revision": 2, "key": "/works/OL10177896W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4159980A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10177898W 1 2009-12-11T02:26:04.767655 {"title": "Zhongguo hun", "created": {"type": "/type/datetime", "value": "2009-12-11T02:26:04.767655"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:26:04.767655"}, "latest_revision": 1, "key": "/works/OL10177898W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4159980A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10178775W 2 2020-11-16T08:56:58.175891 {"last_modified": {"type": "/type/datetime", "value": "2020-11-16T08:56:58.175891"}, "title": "Cuo bie zi ci jian xi", "created": {"type": "/type/datetime", "value": "2009-12-11T02:26:11.070277"}, "subjects": ["Chinese language", "Glossaries, vocabularies", "Errors of usage"], "latest_revision": 2, "key": "/works/OL10178775W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4160330A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10178776W 1 2009-12-11T02:26:11.070277 {"title": "Dai Huang tong xun bao hao xuan (Zhongguo ji zhe cong shu)", "created": {"type": "/type/datetime", "value": "2009-12-11T02:26:11.070277"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:26:11.070277"}, "latest_revision": 1, "key": "/works/OL10178776W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4160331A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL101788W 3 2010-07-22T11:39:27.357312 {"last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:39:27.357312"}, "title": "Jacobs staffe to bear up, the faithful and to beate downe, the profane", "created": {"type": "/type/datetime", "value": "2009-10-17T18:13:12.238883"}, "subjects": ["Sermons, English", "English Sermons"], "latest_revision": 3, "key": "/works/OL101788W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1210156A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10178996W 3 2010-07-22T11:39:27.357312 {"last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:39:27.357312"}, "latest_revision": 3, "key": "/works/OL10178996W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4160422A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T02:26:11.070277"}, "title": "20 shi ji Zhongguo yin yue", "subject_places": ["China"], "subjects": ["History and criticism", "Music"], "subject_times": ["20th century"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10179211W 3 2010-07-22T11:39:27.357312 {"title": "Fan Ye yu qi Hou Han shu", "created": {"type": "/type/datetime", "value": "2009-12-11T02:26:17.918736"}, "last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:39:27.357312"}, "latest_revision": 3, "key": "/works/OL10179211W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4160520A"}}], "subject_people": ["Ye Fan (398-445)"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10179508W 1 2009-12-11T02:26:17.918736 {"title": "You hua dui ni shuo (Dang dai qing nian nu zuo jia san wen jing cui cong shu)", "created": {"type": "/type/datetime", "value": "2009-12-11T02:26:17.918736"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:26:17.918736"}, "latest_revision": 1, "key": "/works/OL10179508W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4160649A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10180477W 2 2020-11-10T01:21:14.585427 {"last_modified": {"type": "/type/datetime", "value": "2020-11-10T01:21:14.585427"}, "title": "Zhongguo wen xue zhi zui (Zhongguo zhi zui cong shu)", "created": {"type": "/type/datetime", "value": "2009-12-11T02:26:24.329004"}, "subjects": ["Chinese literature", "Miscellanea"], "latest_revision": 2, "key": "/works/OL10180477W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4161225A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10180787W 2 2020-09-12T18:13:50.180056 {"last_modified": {"type": "/type/datetime", "value": "2020-09-12T18:13:50.180056"}, "title": "Sheng shi feng cai", "created": {"type": "/type/datetime", "value": "2009-12-11T02:26:24.329004"}, "subjects": ["Three-color ware", "Chinese Pottery"], "latest_revision": 2, "key": "/works/OL10180787W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4161358A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10181066W 3 2010-07-22T11:39:27.357312 {"last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:39:27.357312"}, "title": "Song Jin Yuan Ming Qing qu ci tong shi", "created": {"type": "/type/datetime", "value": "2009-12-11T02:26:24.329004"}, "subjects": ["Dictionaries", "Chinese", "Terms and phrases", "Qu (Chinese literature)", "Chinese language", "Chinese drama"], "latest_revision": 3, "key": "/works/OL10181066W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4161454A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10181183W 3 2010-07-22T11:39:27.357312 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:26:30.896325"}, "subjects": ["Philosophy", "Conduct of life"], "subject_people": ["Guofan Zeng (1811-1872)"], "key": "/works/OL10181183W", "title": "Mian jing", "latest_revision": 3, "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4161507A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:39:27.357312"}, "revision": 3}
+/type/work /works/OL10181378W 2 2020-11-29T22:43:38.756016 {"last_modified": {"type": "/type/datetime", "value": "2020-11-29T22:43:38.756016"}, "title": "Deng Xiaoping zhi zheng dang jian she li lun xue xi gang yao", "created": {"type": "/type/datetime", "value": "2009-12-11T02:26:30.896325"}, "subjects": ["Communist leadership", "Knowledge"], "latest_revision": 2, "key": "/works/OL10181378W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4161590A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL1018146W 1 2009-12-09T19:27:21.257727 {"title": "Socie\u0301te\u0301s islamiques de placement de fonds et \"ouverture e\u0301conomique\"", "created": {"type": "/type/datetime", "value": "2009-12-09T19:27:21.257727"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:27:21.257727"}, "latest_revision": 1, "key": "/works/OL1018146W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL96716A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1018172W 1 2009-12-09T19:27:21.257727 {"title": "al- Inji\u0304l bi-h\u0323asab Murqus", "created": {"type": "/type/datetime", "value": "2009-12-09T19:27:21.257727"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:27:21.257727"}, "latest_revision": 1, "key": "/works/OL1018172W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL96729A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10181859W 1 2009-12-11T02:26:30.896325 {"title": "You lie fu jun", "created": {"type": "/type/datetime", "value": "2009-12-11T02:26:30.896325"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:26:30.896325"}, "latest_revision": 1, "key": "/works/OL10181859W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4161836A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10182336W 1 2009-12-11T02:26:38.065823 {"title": "Lei sa Duonao he", "created": {"type": "/type/datetime", "value": "2009-12-11T02:26:38.065823"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:26:38.065823"}, "latest_revision": 1, "key": "/works/OL10182336W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4162091A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10182471W 2 2020-11-22T18:37:36.216368 {"last_modified": {"type": "/type/datetime", "value": "2020-11-22T18:37:36.216368"}, "title": "Zhongguo jin rong shi chang tu shu yao lan", "created": {"type": "/type/datetime", "value": "2009-12-11T02:26:38.065823"}, "subjects": ["Bibliography", "Finance"], "latest_revision": 2, "key": "/works/OL10182471W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4162171A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10182752W 3 2010-07-22T11:39:27.357312 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:26:38.065823"}, "subject_places": ["China"], "subjects": ["Conglomerate corporations"], "latest_revision": 3, "key": "/works/OL10182752W", "title": "Zhongguo qi ye ji tuan di li lun yu shi jian", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4162341A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:39:27.357312"}, "revision": 3}
+/type/work /works/OL10183032W 3 2010-07-22T11:39:27.357312 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:26:38.065823"}, "subjects": ["Buddhism in literature", "Taoism in literature"], "subject_people": ["Xueqin Cao (ca. 1717-1763)"], "key": "/works/OL10183032W", "title": "Tan fo shuo dao jie Hong lou", "latest_revision": 3, "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4162480A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:39:27.357312"}, "revision": 3}
+/type/work /works/OL10183393W 2 2020-11-25T15:20:14.734232 {"last_modified": {"type": "/type/datetime", "value": "2020-11-25T15:20:14.734232"}, "title": "Fan Lin hua ji", "created": {"type": "/type/datetime", "value": "2009-12-11T02:26:44.204021"}, "subjects": ["Landscapes in art"], "latest_revision": 2, "key": "/works/OL10183393W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4162623A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10183622W 4 2020-11-09T15:45:43.045737 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:26:44.204021"}, "subjects": ["Tactics", "History"], "latest_revision": 4, "key": "/works/OL10183622W", "title": "Zhan shu shi gang yao", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4162709A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-11-09T15:45:43.045737"}, "covers": [5238178], "revision": 4}
+/type/work /works/OL10184484W 3 2010-07-22T11:39:27.357312 {"last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:39:27.357312"}, "title": "Gu xiang lai hong", "created": {"type": "/type/datetime", "value": "2009-12-11T02:26:51.093236"}, "subjects": ["Hung wei ping"], "latest_revision": 3, "key": "/works/OL10184484W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4163147A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1018463W 1 2009-12-09T19:28:01.823913 {"title": "al- Fiqh", "created": {"type": "/type/datetime", "value": "2009-12-09T19:28:01.823913"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:28:01.823913"}, "latest_revision": 1, "key": "/works/OL1018463W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL96784A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10184725W 3 2010-07-22T11:39:27.357312 {"title": "\"Laozi\" bian xi ji qi shi", "created": {"type": "/type/datetime", "value": "2009-12-11T02:26:51.093236"}, "last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:39:27.357312"}, "latest_revision": 3, "key": "/works/OL10184725W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4163248A"}}], "subject_people": ["Laozi"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10184791W 1 2009-12-11T02:26:51.093236 {"title": "Velour 100", "created": {"type": "/type/datetime", "value": "2009-12-11T02:26:51.093236"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:26:51.093236"}, "latest_revision": 1, "key": "/works/OL10184791W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4163290A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10185150W 1 2009-12-11T02:26:57.094625 {"title": "Gu yue ci xin ming (Shuo wen tan shi cong shu)", "created": {"type": "/type/datetime", "value": "2009-12-11T02:26:57.094625"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:26:57.094625"}, "latest_revision": 1, "key": "/works/OL10185150W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4163487A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10185236W 1 2009-12-11T02:26:57.094625 {"title": "Wan xian zhen", "created": {"type": "/type/datetime", "value": "2009-12-11T02:26:57.094625"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:26:57.094625"}, "latest_revision": 1, "key": "/works/OL10185236W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4163539A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10185240W 2 2020-11-10T00:26:52.904762 {"last_modified": {"type": "/type/datetime", "value": "2020-11-10T00:26:52.904762"}, "title": "Yang jia jiang qian zhuan", "created": {"type": "/type/datetime", "value": "2009-12-11T02:26:57.094625"}, "subjects": ["History", "Fiction"], "latest_revision": 2, "key": "/works/OL10185240W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4163540A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL1018539W 3 2010-07-22T11:39:27.357312 {"created": {"type": "/type/datetime", "value": "2009-12-09T19:28:01.823913"}, "subject_places": ["Palestine", "Israel"], "subjects": ["History", "Jewish-Arab relations", "Zionism", "Arab-Israeli conflict"], "latest_revision": 3, "key": "/works/OL1018539W", "title": "Friedensfeinde", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL96790A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:39:27.357312"}, "revision": 3}
+/type/work /works/OL10185409W 4 2020-12-05T05:21:43.677551 {"title": "Xi bu da kai fa fang lue", "covers": [5244107], "key": "/works/OL10185409W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4163624A"}}], "type": {"key": "/type/work"}, "subjects": ["Economic policy", "Economic conditions"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T02:26:57.094625"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-05T05:21:43.677551"}}
+/type/work /works/OL1018540W 3 2010-07-22T11:39:27.357312 {"last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:39:27.357312"}, "latest_revision": 3, "key": "/works/OL1018540W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL96790A"}}], "created": {"type": "/type/datetime", "value": "2009-12-09T19:28:01.823913"}, "title": "Peace enemies", "subject_places": ["Israel"], "subjects": ["Politics and government", "Arab-Israeli conflict", "Palestinian Arabs", "Peace"], "subject_times": ["20th century", "1993-"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10185722W 3 2023-01-09T05:29:05.151310 {"title": "Sichuan jing nei di Xiang fang yan (Zhong yang yan jiu yuan li shi yu yan yan jiu suo tian ye gong zuo bao gao)", "subjects": ["Dialects", "Chinese language", "Xiang dialects"], "key": "/works/OL10185722W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4163759A"}}], "type": {"key": "/type/work"}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T02:26:57.094625"}, "last_modified": {"type": "/type/datetime", "value": "2023-01-09T05:29:05.151310"}}
+/type/work /works/OL10185856W 4 2010-07-22T11:39:27.357312 {"covers": [5483265], "last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:39:27.357312"}, "latest_revision": 4, "key": "/works/OL10185856W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4163802A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T02:26:57.094625"}, "title": "Zhu Guangqian", "subjects": ["East and West", "Criticism and interpretation"], "subject_people": ["Guangqian Zhu (1897-1986)"], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL10185901W 3 2010-07-22T11:39:27.357312 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:26:57.094625"}, "subject_places": ["Taiwan"], "subjects": ["Description and travel"], "latest_revision": 3, "key": "/works/OL10185901W", "title": "He jiao zu ben Pi hai ji you", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4163820A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:39:27.357312"}, "revision": 3}
+/type/work /works/OL10186163W 3 2010-07-22T11:39:27.357312 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:27:03.227003"}, "subject_places": ["Sanxingdui Site (China)", "Guanghan Shi (China)"], "subjects": ["Antiquities", "Civilization"], "latest_revision": 3, "key": "/works/OL10186163W", "title": "Huaxia shen du", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4163907A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:39:27.357312"}, "revision": 3}
+/type/work /works/OL10186194W 1 2009-12-11T02:27:03.227003 {"title": "Huang Tingjian shu Fan Pang zhuan", "created": {"type": "/type/datetime", "value": "2009-12-11T02:27:03.227003"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:27:03.227003"}, "latest_revision": 1, "key": "/works/OL10186194W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4163914A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1018620W 4 2011-04-29T21:20:21.839729 {"last_modified": {"type": "/type/datetime", "value": "2011-04-29T21:20:21.839729"}, "latest_revision": 4, "key": "/works/OL1018620W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4219349A"}}], "created": {"type": "/type/datetime", "value": "2009-12-09T19:28:01.823913"}, "title": "al- Adab al-Tu\u0304nisi\u0304 al-mu\u02bba\u0304s\u0323ir", "subject_places": ["Tunisia"], "subjects": ["History and criticism", "Arabic literature", "Tunisian literature (French)"], "subject_times": ["20th century"], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL10186220W 2 2020-11-22T17:53:29.321889 {"last_modified": {"type": "/type/datetime", "value": "2020-11-22T17:53:29.321889"}, "title": "Shan shui hua tan", "created": {"type": "/type/datetime", "value": "2009-12-11T02:27:03.227003"}, "subjects": ["Chinese Landscape painting"], "latest_revision": 2, "key": "/works/OL10186220W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4163921A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10186401W 2 2020-11-16T05:54:01.096744 {"last_modified": {"type": "/type/datetime", "value": "2020-11-16T05:54:01.096744"}, "title": "Wei qi ci dian (Ti yu ci dian cong shu)", "created": {"type": "/type/datetime", "value": "2009-12-11T02:27:03.227003"}, "subjects": ["Go (Game)", "Dictionaries", "Chinese"], "latest_revision": 2, "key": "/works/OL10186401W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4164021A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL1018726W 5 2022-05-25T00:29:39.696495 {"covers": [2064751], "key": "/works/OL1018726W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL96827A"}}], "title": "The new A-Z of the Middle East", "subject_places": ["Middle East"], "subjects": ["Dictionaries", "English", "Arab-Israeli conflict", "Middle east, history"], "type": {"key": "/type/work"}, "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2009-12-09T19:28:01.823913"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T00:29:39.696495"}}
+/type/work /works/OL10187396W 2 2020-11-13T23:12:51.691742 {"last_modified": {"type": "/type/datetime", "value": "2020-11-13T23:12:51.691742"}, "title": "Xi tong fang fa gai lun", "created": {"type": "/type/datetime", "value": "2009-12-11T02:27:09.452369"}, "subjects": ["System theory"], "latest_revision": 2, "key": "/works/OL10187396W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4164468A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10187497W 5 2023-01-10T08:58:22.956435 {"title": "She hui mao dun yu jin dai Zhongguo", "covers": [5238717], "key": "/works/OL10187497W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4164514A"}}], "type": {"key": "/type/work"}, "subjects": ["Social conflict", "History", "Social conditions"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2009-12-11T02:27:09.452369"}, "last_modified": {"type": "/type/datetime", "value": "2023-01-10T08:58:22.956435"}}
+/type/work /works/OL10187612W 2 2020-11-14T20:37:41.072807 {"last_modified": {"type": "/type/datetime", "value": "2020-11-14T20:37:41.072807"}, "title": "Mu ke ru men", "created": {"type": "/type/datetime", "value": "2009-12-11T02:27:09.452369"}, "subjects": ["Wood-engraving", "Technique"], "latest_revision": 2, "key": "/works/OL10187612W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4164577A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10187645W 3 2010-07-22T11:39:27.357312 {"last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:39:27.357312"}, "title": "Shi yong Zhong yi fu ke xue", "created": {"type": "/type/datetime", "value": "2009-12-11T02:27:09.452369"}, "subjects": ["Gynecology", "Medicine, Chinese", "Chinese Medicine"], "latest_revision": 3, "key": "/works/OL10187645W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4164601A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10187713W 2 2020-11-09T23:59:39.493831 {"last_modified": {"type": "/type/datetime", "value": "2020-11-09T23:59:39.493831"}, "title": "\"Lu shi chun qiu\" yu \"Huainan zi\" si xiang yan jiu (Zhongguo chuan tong si xiang yan jiu cong shu)", "created": {"type": "/type/datetime", "value": "2009-12-11T02:27:09.452369"}, "subjects": ["Chinese Philosophy", "L\u00fc shi chun qiu", "Huainan zi"], "latest_revision": 2, "key": "/works/OL10187713W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4164636A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10187936W 2 2020-11-19T20:43:47.834214 {"last_modified": {"type": "/type/datetime", "value": "2020-11-19T20:43:47.834214"}, "title": "Lin Lanying lun wen xuan (Fujian ji ke xue jia lun wen xuan ji cong shu)", "created": {"type": "/type/datetime", "value": "2009-12-11T02:27:09.452369"}, "subjects": ["Materials science", "Semiconductors"], "latest_revision": 2, "key": "/works/OL10187936W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4164734A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10187969W 2 2020-11-14T00:04:40.638686 {"last_modified": {"type": "/type/datetime", "value": "2020-11-14T00:04:40.638686"}, "title": "Gu jin yi yi ci (Wen yan ci hui xi lie shou ce)", "created": {"type": "/type/datetime", "value": "2009-12-11T02:27:09.452369"}, "subjects": ["Chinese language", "Homonyms"], "latest_revision": 2, "key": "/works/OL10187969W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4164750A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10188671W 3 2010-07-22T11:39:27.357312 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:27:16.314398"}, "subjects": ["War poetry, Chinese", "Chinese poetry", "History and criticism", "Chinese War poetry"], "latest_revision": 3, "key": "/works/OL10188671W", "title": "Nan chao bian sai shi xin lun", "subject_times": ["Northern and Southern dynasties, 386-589"], "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4165094A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:39:27.357312"}, "revision": 3}
+/type/work /works/OL10188907W 3 2020-11-16T07:14:42.498608 {"last_modified": {"type": "/type/datetime", "value": "2020-11-16T07:14:42.498608"}, "title": "Shennong jia di chuan shuo (Jing Chu chuan shuo hua cong)", "created": {"type": "/type/datetime", "value": "2009-12-11T02:27:16.314398"}, "subjects": ["Tales", "Pictorial works"], "latest_revision": 3, "key": "/works/OL10188907W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4165226A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10188917W 2 2020-11-08T16:33:50.684048 {"last_modified": {"type": "/type/datetime", "value": "2020-11-08T16:33:50.684048"}, "title": "Guai hua lian pian", "created": {"type": "/type/datetime", "value": "2009-12-11T02:27:16.314398"}, "subjects": ["Chinese literature", "History and criticism"], "latest_revision": 2, "key": "/works/OL10188917W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4165232A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10188982W 3 2010-07-22T11:39:27.357312 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:27:16.314398"}, "subject_places": ["China"], "subjects": ["Etiquette", "History", "Court and courtiers", "Social life and customs"], "latest_revision": 3, "key": "/works/OL10188982W", "title": "Huang shi li yi", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4165257A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:39:27.357312"}, "revision": 3}
+/type/work /works/OL10189156W 2 2020-11-08T16:03:48.349016 {"last_modified": {"type": "/type/datetime", "value": "2020-11-08T16:03:48.349016"}, "title": "Guo ji qi ye yu guo ji shi chang =", "created": {"type": "/type/datetime", "value": "2009-12-11T02:27:23.083821"}, "subjects": ["International business enterprises", "Export marketing"], "latest_revision": 2, "key": "/works/OL10189156W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4165330A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10189652W 4 2020-11-19T20:49:25.315810 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:27:23.083821"}, "subjects": ["Correspondence"], "latest_revision": 4, "key": "/works/OL10189652W", "title": "Wu Yuzhang wang lai shu xin ji", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4165557A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-11-19T20:49:25.315810"}, "covers": [5242587], "revision": 4}
+/type/work /works/OL1018980W 1 2009-12-09T19:28:01.823913 {"title": "\u015eiirler", "created": {"type": "/type/datetime", "value": "2009-12-09T19:28:01.823913"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:28:01.823913"}, "latest_revision": 1, "key": "/works/OL1018980W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL96888A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10189923W 2 2020-11-19T07:52:12.791750 {"last_modified": {"type": "/type/datetime", "value": "2020-11-19T07:52:12.791750"}, "title": "Zhongguo xuan guan zang", "created": {"type": "/type/datetime", "value": "2009-12-11T02:27:23.083821"}, "subjects": ["Tombs", "Funeral rites and ceremonies"], "latest_revision": 2, "key": "/works/OL10189923W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4165714A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10189985W 2 2020-11-19T20:38:29.199064 {"last_modified": {"type": "/type/datetime", "value": "2020-11-19T20:38:29.199064"}, "title": "Shi gu wen ji lian", "created": {"type": "/type/datetime", "value": "2009-12-11T02:27:23.083821"}, "subjects": ["Chinese Calligraphy", "History"], "latest_revision": 2, "key": "/works/OL10189985W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4165752A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10190050W 2 2020-12-01T21:05:01.946281 {"last_modified": {"type": "/type/datetime", "value": "2020-12-01T21:05:01.946281"}, "title": "Li Shinan zuo pin (Masterpieces of Chinese famous painters)", "created": {"type": "/type/datetime", "value": "2009-12-11T02:27:23.083821"}, "subjects": ["Impressionism (Art)"], "latest_revision": 2, "key": "/works/OL10190050W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4165785A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10190074W 4 2010-07-22T11:39:27.357312 {"last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:39:27.357312"}, "title": "Xianggang te bie Xingzhengqu zhi duo shao", "created": {"type": "/type/datetime", "value": "2009-12-11T02:27:23.083821"}, "covers": [5453389], "subject_places": ["Hong Kong (China)"], "subjects": ["Politics and government"], "latest_revision": 4, "key": "/works/OL10190074W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4165806A"}}], "subject_times": ["1997-"], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL10190246W 2 2020-11-16T02:35:57.160820 {"last_modified": {"type": "/type/datetime", "value": "2020-11-16T02:35:57.160820"}, "title": "Lun He Jingzhi di shi", "created": {"type": "/type/datetime", "value": "2009-12-11T02:27:30.269119"}, "subjects": ["Criticism and interpretation"], "latest_revision": 2, "key": "/works/OL10190246W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4165892A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10190443W 2 2020-11-29T22:24:43.662836 {"last_modified": {"type": "/type/datetime", "value": "2020-11-29T22:24:43.662836"}, "title": "Zhong De wen xue yan jiu (Xin shi ji wan you wen ku)", "created": {"type": "/type/datetime", "value": "2009-12-11T02:27:30.269119"}, "subjects": ["German and Chinese", "Comparative literature", "Chinese and German"], "latest_revision": 2, "key": "/works/OL10190443W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4165984A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10190532W 2 2020-11-16T00:34:54.299564 {"last_modified": {"type": "/type/datetime", "value": "2020-11-16T00:34:54.299564"}, "title": "Wei wu shi guan yu shi xue", "created": {"type": "/type/datetime", "value": "2009-12-11T02:27:30.269119"}, "subjects": ["Historiography", "Historical materialism"], "latest_revision": 2, "key": "/works/OL10190532W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4166031A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10190957W 2 2020-11-09T15:00:12.987015 {"last_modified": {"type": "/type/datetime", "value": "2020-11-09T15:00:12.987015"}, "title": "Caishi da zhan", "created": {"type": "/type/datetime", "value": "2009-12-11T02:27:30.269119"}, "subjects": ["Fiction", "History"], "latest_revision": 2, "key": "/works/OL10190957W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4166281A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10191068W 1 2009-12-11T02:27:30.269119 {"title": "Yi shu yu ren xue", "created": {"type": "/type/datetime", "value": "2009-12-11T02:27:30.269119"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:27:30.269119"}, "latest_revision": 1, "key": "/works/OL10191068W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4166341A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10191648W 4 2020-12-02T08:21:58.397522 {"title": "Pinochet", "covers": [5271853], "key": "/works/OL10191648W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4166924A"}}], "type": {"key": "/type/work"}, "subjects": ["Presidents", "Literary art", "Psychology", "Biography", "History"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T02:27:38.672304"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-02T08:21:58.397522"}}
+/type/work /works/OL1019188W 3 2010-07-22T11:39:27.357312 {"last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:39:27.357312"}, "latest_revision": 3, "key": "/works/OL1019188W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL96930A"}}], "created": {"type": "/type/datetime", "value": "2009-12-09T19:28:01.823913"}, "title": "AKPapa'n\u0131n temel ic\u0327gu\u0308du\u0308su\u0308", "subject_places": ["Turkey", "Germany"], "subjects": ["Foreign relations", "Politics and government"], "subject_times": ["1980-"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1019240W 3 2010-07-22T11:39:27.357312 {"created": {"type": "/type/datetime", "value": "2009-12-09T19:28:01.823913"}, "subjects": ["Criticism and interpretation"], "subject_people": ["Kaygusuz Abdal (15th cent)"], "key": "/works/OL1019240W", "title": "Kaygusuz Abdal Sultan", "latest_revision": 3, "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL96937A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:39:27.357312"}, "revision": 3}
+/type/work /works/OL10192511W 3 2020-11-17T20:52:06.620806 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:27:43.239312"}, "subjects": ["Politics and government"], "latest_revision": 3, "key": "/works/OL10192511W", "title": "Xizang yan jiu lun ji (Ren wen ji she hui ke xue wen ku)", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4167304A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-11-17T20:52:06.620806"}, "covers": [5239579], "revision": 3}
+/type/work /works/OL10193384W 3 2010-07-22T11:39:27.357312 {"last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:39:27.357312"}, "latest_revision": 3, "key": "/works/OL10193384W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4167618A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T02:27:47.835658"}, "title": "Long Yingtai ping xiao shuo", "subject_places": ["Taiwan"], "subjects": ["Chinese fiction", "History and criticism"], "subject_times": ["20th century"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10193522W 3 2010-07-22T11:39:27.357312 {"last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:39:27.357312"}, "title": "Zhong gu Han yu yu ci li shi", "created": {"type": "/type/datetime", "value": "2009-12-11T02:27:47.835658"}, "subjects": ["Terms and phrases", "Chinese language"], "latest_revision": 3, "key": "/works/OL10193522W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4167672A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10193653W 2 2023-01-10T08:53:19.911758 {"title": "L\u00fc ye xian zong", "key": "/works/OL10193653W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4167716A"}}], "type": {"key": "/type/work"}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T02:27:47.835658"}, "last_modified": {"type": "/type/datetime", "value": "2023-01-10T08:53:19.911758"}}
+/type/work /works/OL10193816W 4 2020-11-22T18:00:10.496493 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:27:47.835658"}, "subjects": ["Neo-Confucianism"], "latest_revision": 4, "key": "/works/OL10193816W", "title": "Zhuzi xue yu Ming chu li xue di fa zhan (Zhongguo zhe xue cong kan)", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4167762A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-11-22T18:00:10.496493"}, "covers": [5239568], "revision": 4}
+/type/work /works/OL10193949W 3 2010-07-22T11:39:27.357312 {"last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:39:27.357312"}, "title": "Wei shi san lun jin zhu", "created": {"type": "/type/datetime", "value": "2009-12-11T02:27:47.835658"}, "subjects": ["Yog\u0101c\u0101ra (Buddhism)"], "latest_revision": 3, "key": "/works/OL10193949W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4167811A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10194053W 3 2010-07-22T11:39:27.357312 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:27:47.835658"}, "subject_places": ["China", "Germany"], "subjects": ["Foreign relations", "Sino-Japanese War, 1937-1945"], "latest_revision": 3, "key": "/works/OL10194053W", "title": "You hu? di hu?", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4167844A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:39:27.357312"}, "revision": 3}
+/type/work /works/OL10194247W 3 2010-07-22T11:39:27.357312 {"last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:39:27.357312"}, "latest_revision": 3, "key": "/works/OL10194247W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4167892A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T02:27:52.963147"}, "title": "Ren zhi di shan shui", "subject_places": ["China"], "subjects": ["Biography", "Publishers and publishing"], "subject_people": ["Yuanji Zhang (1867-1959)"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10194288W 3 2020-11-16T12:37:25.829598 {"last_modified": {"type": "/type/datetime", "value": "2020-11-16T12:37:25.829598"}, "title": "Xu Xinliang yan lun xuan ji", "created": {"type": "/type/datetime", "value": "2009-12-11T02:27:52.963147"}, "subjects": ["Politics and government"], "latest_revision": 3, "key": "/works/OL10194288W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4167902A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10194595W 4 2019-01-13T12:18:32.562793 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:27:52.963147"}, "subjects": ["Translated Fiction"], "latest_revision": 4, "key": "/works/OL10194595W", "title": "Yue qiu xing shi", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4168019A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2019-01-13T12:18:32.562793"}, "covers": [8233658], "revision": 4}
+/type/work /works/OL10194663W 1 2009-12-11T02:27:52.963147 {"title": "Mi gong ling jian (Lian he wen cong)", "created": {"type": "/type/datetime", "value": "2009-12-11T02:27:52.963147"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:27:52.963147"}, "latest_revision": 1, "key": "/works/OL10194663W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4168049A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10194712W 1 2009-12-11T02:27:52.963147 {"title": "Ai shang mian hua tang", "created": {"type": "/type/datetime", "value": "2009-12-11T02:27:52.963147"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:27:52.963147"}, "latest_revision": 1, "key": "/works/OL10194712W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4168063A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10194758W 1 2009-12-11T02:27:52.963147 {"title": "Wan min suo yi", "created": {"type": "/type/datetime", "value": "2009-12-11T02:27:52.963147"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:27:52.963147"}, "latest_revision": 1, "key": "/works/OL10194758W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4168066A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10194772W 1 2009-12-11T02:27:52.963147 {"title": "Yue guang guang: Guang fu yi qian", "created": {"type": "/type/datetime", "value": "2009-12-11T02:27:52.963147"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:27:52.963147"}, "latest_revision": 1, "key": "/works/OL10194772W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4168069A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10195019W 3 2010-07-22T11:39:27.357312 {"last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:39:27.357312"}, "title": "Hei an yu yu mei de shou hu shen", "created": {"type": "/type/datetime", "value": "2009-12-11T02:27:52.963147"}, "subjects": ["Church history"], "latest_revision": 3, "key": "/works/OL10195019W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4168148A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL101950W 10 2022-11-17T19:26:26.280045 {"subjects": ["Scienct Fiction", "Fiction", "Hugo Award Winner", "award:hugo_award=1965", "award:hugo_award=novel", "Fiction, general"], "key": "/works/OL101950W", "title": "The Wanderer", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL29390A"}}], "type": {"key": "/type/work"}, "covers": [379960], "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2009-10-17T18:36:50.013545"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T19:26:26.280045"}}
+/type/work /works/OL10195359W 2 2020-11-19T04:13:37.879541 {"last_modified": {"type": "/type/datetime", "value": "2020-11-19T04:13:37.879541"}, "title": "Dou E yuan (Zhongguo shi da bei ju)", "created": {"type": "/type/datetime", "value": "2009-12-11T02:27:58.655791"}, "subjects": ["Chinese drama (Tragedy)"], "latest_revision": 2, "key": "/works/OL10195359W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4168295A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10195820W 2 2020-09-13T12:22:07.310783 {"last_modified": {"type": "/type/datetime", "value": "2020-09-13T12:22:07.310783"}, "title": "Taiwan ke yi shuo bu (Wen xue feng qing)", "created": {"type": "/type/datetime", "value": "2009-12-11T02:27:58.655791"}, "subjects": ["Politics and government", "Relations"], "latest_revision": 2, "key": "/works/OL10195820W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4168444A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10196005W 3 2010-07-22T11:39:27.357312 {"last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:39:27.357312"}, "latest_revision": 3, "key": "/works/OL10196005W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4168509A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T02:27:58.655791"}, "title": "Pan feng", "subject_places": ["Taiwan"], "subjects": ["Biography", "Physically handicapped", "People with disabilities"], "subject_people": ["Zhongxiang Zhu (1965-)"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10196753W 3 2020-11-17T21:52:20.641883 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:28:04.233067"}, "subjects": ["Social conditions", "Working class", "History"], "latest_revision": 3, "key": "/works/OL10196753W", "title": "Qing mo di xia ceng she hui qi meng yun dong, 1901-1911 (Zhong yang yan jiu yuan jin dai shi yan jiu suo zhuan kan)", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4168831A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-11-17T21:52:20.641883"}, "covers": [5510752], "revision": 3}
+/type/work /works/OL10196866W 3 2010-07-22T11:39:27.357312 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:28:04.233067"}, "subject_places": ["China"], "subjects": ["Carving (Decorative arts)", "Folk art", "Wood-carvings"], "latest_revision": 3, "key": "/works/OL10196866W", "title": "Juan diao =", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4168882A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:39:27.357312"}, "revision": 3}
+/type/work /works/OL10196876W 1 2009-12-11T02:28:04.233067 {"title": "Situ Qi hua ji", "created": {"type": "/type/datetime", "value": "2009-12-11T02:28:04.233067"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:28:04.233067"}, "latest_revision": 1, "key": "/works/OL10196876W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4168884A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10197123W 2 2020-09-13T18:29:04.653344 {"last_modified": {"type": "/type/datetime", "value": "2020-09-13T18:29:04.653344"}, "title": "Taiwan du shi de nei bu jie gou", "created": {"type": "/type/datetime", "value": "2009-12-11T02:28:04.233067"}, "subjects": ["Cities and towns", "Research", "Urban ecology (Sociology)", "Urban Sociology"], "latest_revision": 2, "key": "/works/OL10197123W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4169001A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL1019723W 1 2009-12-09T19:30:02.728832 {"title": "Onuncu k\u00f6y", "created": {"type": "/type/datetime", "value": "2009-12-09T19:30:02.728832"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:30:02.728832"}, "latest_revision": 1, "key": "/works/OL1019723W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL96998A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10197268W 2 2020-12-04T22:54:26.547497 {"title": "Bai Juyi quan zhuan", "key": "/works/OL10197268W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4169069A"}}], "type": {"key": "/type/work"}, "subjects": ["Fiction"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T02:28:10.235059"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-04T22:54:26.547497"}}
+/type/work /works/OL1019753W 3 2010-07-22T11:39:27.357312 {"created": {"type": "/type/datetime", "value": "2009-12-09T19:30:02.728832"}, "subjects": ["Turkish drama", "History and criticism"], "latest_revision": 3, "key": "/works/OL1019753W", "title": "Tu\u0308rk tiyatrosundan insan manzaralar\u0131", "subject_times": ["20th century"], "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL97007A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:39:27.357312"}, "revision": 3}
+/type/work /works/OL10197859W 4 2010-07-22T11:39:27.357312 {"last_modified": {"type": "/type/datetime", "value": "2010-07-22T11:39:27.357312"}, "title": "Kun jing zhong de Zhongguo xian dai xing yi shi", "created": {"type": "/type/datetime", "value": "2009-12-11T02:28:10.235059"}, "covers": [5457989], "subject_places": ["China"], "subjects": ["Civilization", "Philosophy, Chinese", "Chinese Philosophy"], "latest_revision": 4, "key": "/works/OL10197859W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4169305A"}}], "subject_times": ["20th century"], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL10198245W 2 2020-11-16T00:05:24.456146 {"last_modified": {"type": "/type/datetime", "value": "2020-11-16T00:05:24.456146"}, "title": "Guan cang fa zhan (Tu shu guan xue yu zi xun ke xue ji ben cong shu)", "created": {"type": "/type/datetime", "value": "2009-12-11T02:28:16.338308"}, "subjects": ["Collection development (Libraries)"], "latest_revision": 2, "key": "/works/OL10198245W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4169463A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10198300W 2 2020-11-16T11:05:09.622838 {"last_modified": {"type": "/type/datetime", "value": "2020-11-16T11:05:09.622838"}, "title": "Xian Qin di bing jia (Guo li Taiwan da xue wen shi cong kan)", "created": {"type": "/type/datetime", "value": "2009-12-11T02:28:16.338308"}, "subjects": ["War (Philosophy)", "Chinese Philosophy", "To 221 B.C."], "latest_revision": 2, "key": "/works/OL10198300W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4169487A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10198725W 2 2020-11-29T22:47:45.111079 {"last_modified": {"type": "/type/datetime", "value": "2020-11-29T22:47:45.111079"}, "title": "Yi zuo gong yuan di dan sheng", "created": {"type": "/type/datetime", "value": "2009-12-11T02:28:16.338308"}, "subjects": ["National parks and reserves"], "latest_revision": 2, "key": "/works/OL10198725W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4169659A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10198847W 2 2020-12-04T19:03:17.697815 {"title": "Yin bao Taiwan zhi zhan", "key": "/works/OL10198847W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4169712A"}}], "type": {"key": "/type/work"}, "subjects": ["Politics and government", "Chinese reunification question, 1949-"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T02:28:16.338308"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-04T19:03:17.697815"}}
+/type/work /works/OL10199393W 2 2020-09-12T09:53:54.310531 {"last_modified": {"type": "/type/datetime", "value": "2020-09-12T09:53:54.310531"}, "title": "Xing zheng fa yao yi", "created": {"type": "/type/datetime", "value": "2009-12-11T02:28:24.225897"}, "subjects": ["Administrative law"], "latest_revision": 2, "key": "/works/OL10199393W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4170000A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10199396W 2 2020-12-01T22:22:32.927077 {"title": "Wu Yue guo Wusu wang ji shi", "key": "/works/OL10199396W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4170003A"}}], "type": {"key": "/type/work"}, "subjects": ["Kings and rulers", "Biography", "History"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T02:28:24.225897"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-01T22:22:32.927077"}}
+/type/work /works/OL1019944W 4 2020-12-03T08:34:18.770245 {"title": "Kur\u02bcan, dil ve siyaset u\u0308zerine so\u0308yles\u0327iler", "key": "/works/OL1019944W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL97038A"}}], "type": {"key": "/type/work"}, "subjects": ["Islam and politics", "Koran", "Qur\u02bcan"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-09T19:30:02.728832"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-03T08:34:18.770245"}}
+/type/work /works/OL10200277W 2 2011-11-22T21:09:02.366417 {"title": "El secreto de las perlas", "created": {"type": "/type/datetime", "value": "2009-12-11T02:28:33.928347"}, "last_modified": {"type": "/type/datetime", "value": "2011-11-22T21:09:02.366417"}, "latest_revision": 2, "key": "/works/OL10200277W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4170773A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10200527W 3 2010-04-28T07:08:20.389598 {"title": "Mi Primer Misalito/ My First Missal", "created": {"type": "/type/datetime", "value": "2009-12-11T02:28:33.928347"}, "covers": [5241316], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:08:20.389598"}, "latest_revision": 3, "key": "/works/OL10200527W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4170988A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10200760W 2 2020-12-11T22:32:23.093361 {"title": "Las Aguas Minerales Medicinales y Su Proyeccion En El Caribe", "key": "/works/OL10200760W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4171207A"}}], "type": {"key": "/type/work"}, "subjects": ["Mineral waters", "Therapeutic use"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T02:28:33.928347"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-11T22:32:23.093361"}}
+/type/work /works/OL10201116W 3 2010-04-28T07:08:20.389598 {"title": "Esta Noche De Noviembre", "created": {"type": "/type/datetime", "value": "2009-12-11T02:28:33.928347"}, "covers": [5241176], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:08:20.389598"}, "latest_revision": 3, "key": "/works/OL10201116W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4171586A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10201449W 3 2010-04-28T07:08:20.389598 {"title": "Cephalonia", "created": {"type": "/type/datetime", "value": "2009-12-11T02:28:42.390109"}, "covers": [3351784], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:08:20.389598"}, "latest_revision": 3, "key": "/works/OL10201449W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4171896A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10202064W 2 2020-11-11T21:23:43.377564 {"last_modified": {"type": "/type/datetime", "value": "2020-11-11T21:23:43.377564"}, "title": "Wu shi ge wen yi jia zhi si (Jiao dian wen ku)", "created": {"type": "/type/datetime", "value": "2009-12-11T02:28:42.390109"}, "subjects": ["Atrocities", "History"], "latest_revision": 2, "key": "/works/OL10202064W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4172349A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10202154W 1 2009-12-11T02:28:48.551722 {"title": "Xin Ma Tai lu you tu =", "created": {"type": "/type/datetime", "value": "2009-12-11T02:28:48.551722"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:28:48.551722"}, "latest_revision": 1, "key": "/works/OL10202154W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4172390A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10202165W 4 2019-07-15T10:03:28.655731 {"last_modified": {"type": "/type/datetime", "value": "2019-07-15T10:03:28.655731"}, "title": "Zhu ji xiao guan", "created": {"type": "/type/datetime", "value": "2009-12-11T02:28:48.551722"}, "subjects": ["Cookery, Chinese", "Cantonese style", "Chinese Cookery", "Chinese Cooking"], "latest_revision": 4, "key": "/works/OL10202165W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4172392A"}}], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL10202278W 1 2009-12-11T02:28:48.551722 {"title": "Ming yun zhi ji liu (Bo yi xin sheng huo xi lie)", "created": {"type": "/type/datetime", "value": "2009-12-11T02:28:48.551722"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:28:48.551722"}, "latest_revision": 1, "key": "/works/OL10202278W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4172433A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10202408W 3 2010-07-22T13:45:13.536275 {"last_modified": {"type": "/type/datetime", "value": "2010-07-22T13:45:13.536275"}, "title": "A modelling of the noise from simple coaxial jets. Part III - With hot primary flow", "created": {"type": "/type/datetime", "value": "2009-12-11T02:28:48.551722"}, "subjects": ["Noise", "Coaxial flow"], "latest_revision": 3, "key": "/works/OL10202408W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4172574A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10202411W 3 2010-07-22T13:45:13.536275 {"last_modified": {"type": "/type/datetime", "value": "2010-07-22T13:45:13.536275"}, "title": "The propagation of buzz-saw noise in hard-walled ducts", "created": {"type": "/type/datetime", "value": "2009-12-11T02:28:48.551722"}, "subjects": ["Saws", "Noise"], "latest_revision": 3, "key": "/works/OL10202411W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4172574A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10202626W 4 2010-07-22T13:45:42.941799 {"covers": [5410505], "last_modified": {"type": "/type/datetime", "value": "2010-07-22T13:45:42.941799"}, "latest_revision": 4, "key": "/works/OL10202626W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4172675A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T02:28:48.551722"}, "title": "Zhongguo quan tong wen hua di yi quan he bian yi", "subject_places": ["China"], "subjects": ["Civilization"], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL10202707W 1 2009-12-11T02:28:48.551722 {"title": "Ouzhou sheng yue fa zhan shi =", "created": {"type": "/type/datetime", "value": "2009-12-11T02:28:48.551722"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:28:48.551722"}, "latest_revision": 1, "key": "/works/OL10202707W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4172723A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1020270W 1 2009-12-09T19:30:02.728832 {"title": "Susmak mi konusmak mi?", "created": {"type": "/type/datetime", "value": "2009-12-09T19:30:02.728832"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:30:02.728832"}, "latest_revision": 1, "key": "/works/OL1020270W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL97110A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10202939W 3 2010-07-22T13:45:42.941799 {"last_modified": {"type": "/type/datetime", "value": "2010-07-22T13:45:42.941799"}, "title": "Jia ting mei shi jing pin =", "created": {"type": "/type/datetime", "value": "2009-12-11T02:28:48.551722"}, "subjects": ["Cookery, Chinese", "Chinese Cookery"], "latest_revision": 3, "key": "/works/OL10202939W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4172850A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10203152W 2 2020-11-22T15:26:30.361113 {"last_modified": {"type": "/type/datetime", "value": "2020-11-22T15:26:30.361113"}, "title": "Zhongguo di er da zhuan an", "created": {"type": "/type/datetime", "value": "2009-12-11T02:28:57.179902"}, "subjects": ["Zhongguo gong chan dang", "Purges"], "latest_revision": 2, "key": "/works/OL10203152W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4172963A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10203743W 2 2010-12-25T07:04:49.358801 {"title": "Sermones Compilati in Studio Generali Quinquecclesiensi the Munich Codex", "created": {"type": "/type/datetime", "value": "2009-12-11T02:28:57.179902"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-25T07:04:49.358801"}, "latest_revision": 2, "key": "/works/OL10203743W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4173454A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL1020388W 3 2010-07-22T13:45:42.941799 {"last_modified": {"type": "/type/datetime", "value": "2010-07-22T13:45:42.941799"}, "title": "Atatu\u0308rk'ten hic\u0327 yay\u0131nlanmam\u0131s\u0327 an\u0131lar", "created": {"type": "/type/datetime", "value": "2009-12-09T19:31:01.596646"}, "subject_places": ["Turkey"], "subjects": ["History"], "subject_people": ["Kemal Atat\u00fcrk (1881-1938)"], "key": "/works/OL1020388W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL97126A"}}], "latest_revision": 3, "subject_times": ["1918-1960"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10204004W 2 2020-11-14T19:43:14.060733 {"last_modified": {"type": "/type/datetime", "value": "2020-11-14T19:43:14.060733"}, "title": "Cheng, Chen qi yi", "created": {"type": "/type/datetime", "value": "2009-12-11T02:28:57.179902"}, "subjects": ["Fiction"], "latest_revision": 2, "key": "/works/OL10204004W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4173657A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10204045W 2 2020-11-19T21:16:50.478792 {"last_modified": {"type": "/type/datetime", "value": "2020-11-19T21:16:50.478792"}, "title": "Zhongnanhai feng yun ji shi", "created": {"type": "/type/datetime", "value": "2009-12-11T02:28:57.179902"}, "subjects": ["Communists", "Elite (Social sciences)", "Anecdotes", "History"], "latest_revision": 2, "key": "/works/OL10204045W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4173686A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10204120W 1 2009-12-11T02:28:57.179902 {"title": "Ming yun di yun, mei you yu", "created": {"type": "/type/datetime", "value": "2009-12-11T02:28:57.179902"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:28:57.179902"}, "latest_revision": 1, "key": "/works/OL10204120W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4173730A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10204255W 3 2010-07-22T13:45:42.941799 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:29:05.744354"}, "subject_places": ["China"], "subjects": ["Socialism and the arts", "Chronology"], "latest_revision": 3, "key": "/works/OL10204255W", "title": "Guo tong qu kang zhan wen yi yun dong da shi ji", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4173813A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-07-22T13:45:42.941799"}, "revision": 3}
+/type/work /works/OL10205011W 3 2010-07-22T13:45:42.941799 {"last_modified": {"type": "/type/datetime", "value": "2010-07-22T13:45:42.941799"}, "latest_revision": 3, "key": "/works/OL10205011W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4174238A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T02:29:05.744354"}, "title": "\"Yi guo liang zhi\" yu Xianggang hui gui hou de zheng zhi fa zhan", "subject_places": ["Hong Kong (China)"], "subjects": ["Politics and government"], "subject_times": ["1997-"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10205235W 2 2020-11-25T14:46:42.248144 {"last_modified": {"type": "/type/datetime", "value": "2020-11-25T14:46:42.248144"}, "title": "Luo Fu Yu Guangzhong shi ge xin shang (Zhongguo xian dai zuo jia zuo pin xin shang cong shu)", "created": {"type": "/type/datetime", "value": "2009-12-11T02:29:13.023254"}, "subjects": ["Chinese poetry", "History and criticism", "Criticism and interpretation"], "latest_revision": 2, "key": "/works/OL10205235W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4174368A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10205382W 2 2020-11-22T16:38:04.777881 {"last_modified": {"type": "/type/datetime", "value": "2020-11-22T16:38:04.777881"}, "title": "Bei xing man ji", "created": {"type": "/type/datetime", "value": "2009-12-11T02:29:13.023254"}, "subjects": ["Politics and government", "Communism"], "latest_revision": 2, "key": "/works/OL10205382W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4174453A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10205676W 2 2020-11-29T23:53:35.307457 {"last_modified": {"type": "/type/datetime", "value": "2020-11-29T23:53:35.307457"}, "title": "30 nian dai Chaoxian gong chan zhu yi zhe zai Zhongguo Dongbei (Dongbei shi fan da xue bo shi sheng dao shi wen ku)", "created": {"type": "/type/datetime", "value": "2009-12-11T02:29:13.023254"}, "subjects": ["Koreans", "Korean resistance movements, 1905-1945", "Communism"], "latest_revision": 2, "key": "/works/OL10205676W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4174631A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10205698W 2 2020-11-19T08:28:04.053150 {"last_modified": {"type": "/type/datetime", "value": "2020-11-19T08:28:04.053150"}, "title": "Yong dong di da chao", "created": {"type": "/type/datetime", "value": "2009-12-11T02:29:13.023254"}, "subjects": ["Economic conditions"], "latest_revision": 2, "key": "/works/OL10205698W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4174643A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10205933W 2 2020-11-12T12:49:14.533069 {"last_modified": {"type": "/type/datetime", "value": "2020-11-12T12:49:14.533069"}, "title": "Han zi xing ti yan bian gai lun", "created": {"type": "/type/datetime", "value": "2009-12-11T02:29:13.023254"}, "subjects": ["Chinese language", "Etymology"], "latest_revision": 2, "key": "/works/OL10205933W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4174778A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10206546W 3 2020-12-10T12:41:08.138646 {"title": "Zhong cai fa lun (Min shi su song fa xue zhuan zhu cong shu)", "subjects": ["Arbitration and award", "Corporation law", "Industrial laws and legislation", "Business enterprises", "Law and legislation"], "key": "/works/OL10206546W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4175172A"}}], "type": {"key": "/type/work"}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T02:29:20.603825"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-10T12:41:08.138646"}}
+/type/work /works/OL10207814W 3 2010-07-22T13:46:09.903400 {"last_modified": {"type": "/type/datetime", "value": "2010-07-22T13:46:09.903400"}, "title": "Chao ji zong tong Pujin", "created": {"type": "/type/datetime", "value": "2009-12-11T02:29:28.332666"}, "subject_places": ["Russia (Federation)"], "subjects": ["Politics and government", "Presidents", "Biography"], "subject_people": ["Vladimir Vladimirovich Putin (1952-)"], "key": "/works/OL10207814W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4176046A"}}], "latest_revision": 3, "subject_times": ["1991-"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10208175W 2 2020-11-22T18:37:47.076463 {"last_modified": {"type": "/type/datetime", "value": "2020-11-22T18:37:47.076463"}, "title": "Jing shen sun hai pei chang yuan li yu shi wu", "created": {"type": "/type/datetime", "value": "2009-12-11T02:29:36.569063"}, "subjects": ["Personal injuries", "Damages", "Libel and slander"], "latest_revision": 2, "key": "/works/OL10208175W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4176275A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10208221W 2 2020-11-19T21:38:49.210891 {"last_modified": {"type": "/type/datetime", "value": "2020-11-19T21:38:49.210891"}, "title": "Gao tian hou tu", "created": {"type": "/type/datetime", "value": "2009-12-11T02:29:36.569063"}, "subjects": ["Agriculture and state", "Agriculture"], "latest_revision": 2, "key": "/works/OL10208221W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4176298A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10208288W 2 2020-11-13T22:49:52.316111 {"last_modified": {"type": "/type/datetime", "value": "2020-11-13T22:49:52.316111"}, "title": "Yuan Jianqi jiao shou yan kuang di zhi lun wen xuan ji", "created": {"type": "/type/datetime", "value": "2009-12-11T02:29:36.569063"}, "subjects": ["Salt deposits"], "latest_revision": 2, "key": "/works/OL10208288W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4176336A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL1020842W 5 2020-11-20T05:36:15.537751 {"description": {"type": "/type/text", "value": "A\u011fz\u0131m Suland\u0131 \u015eiir kokore\u00e7 kokusudur N\u00e2z\u0131m us\u00fbl\u00fc mangaldan Yar\u0131 k\u0131zarm\u0131\u015f \u00e7eyrek ekme\u011fin i\u00e7ine d\u00f6\u015fersin Dize Dize dizip \u00dcst\u00fcne de bol kekik Gezintiler I. Saz\u0131m\u0131n tellerinde geziniyorum d\u00fcnyay\u0131 D\u00fczen tutmuyor II. Yery\u00fcz\u00fcn\u00fcn elleri gezinirken bedenimde O ahtapot sarmal\u0131 yemye\u015fil Nefessiz kal\u0131yorum birden Erguvanlar\u0131yla kapat\u0131yor g\u00f6zlerimi Bir Devrin'mi\u015f me\u011fer \u00d6l\u00fcm Bir mavi ispirto \u015fi\u015fesi yuvarlan\u0131yor Bay\u0131rda a\u015fa\u011f\u0131 T\u0131ng\u0131rr m\u0131ng\u0131rr (Kitab\u0131n Giri\u015finden)"}, "covers": [6882680], "last_modified": {"type": "/type/datetime", "value": "2020-11-20T05:36:15.537751"}, "latest_revision": 5, "key": "/works/OL1020842W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL97206A"}}], "created": {"type": "/type/datetime", "value": "2009-12-09T19:31:01.596646"}, "title": "Gezintiler", "subjects": ["Turkish Poetry", "Turkish poetry"], "type": {"key": "/type/work"}, "revision": 5}
+/type/work /works/OL10208751W 2 2020-11-18T21:03:05.055820 {"last_modified": {"type": "/type/datetime", "value": "2020-11-18T21:03:05.055820"}, "title": "Qi ye jing ji he tong guan li shi wu", "created": {"type": "/type/datetime", "value": "2009-12-11T02:29:36.569063"}, "subjects": ["Contracts"], "latest_revision": 2, "key": "/works/OL10208751W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4176614A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10208991W 2 2020-11-19T01:58:31.246559 {"last_modified": {"type": "/type/datetime", "value": "2020-11-19T01:58:31.246559"}, "title": "Li dai ming jia lun yang sheng", "created": {"type": "/type/datetime", "value": "2009-12-11T02:29:36.569063"}, "subjects": ["Cursive writing", "History", "Chinese Calligraphy", "Chinese language"], "latest_revision": 2, "key": "/works/OL10208991W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4176759A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10209006W 2 2020-11-19T21:20:40.658319 {"last_modified": {"type": "/type/datetime", "value": "2020-11-19T21:20:40.658319"}, "title": "Di yi feng liu", "created": {"type": "/type/datetime", "value": "2009-12-11T02:29:36.569063"}, "subjects": ["Criticism and interpretation"], "latest_revision": 2, "key": "/works/OL10209006W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4176769A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10209068W 2 2010-07-22T13:46:09.903400 {"last_modified": {"type": "/type/datetime", "value": "2010-07-22T13:46:09.903400"}, "title": "Qing dai Han lin yuan zhi du =", "created": {"type": "/type/datetime", "value": "2009-12-11T02:29:36.569063"}, "subjects": ["Han lin yuan"], "latest_revision": 2, "key": "/works/OL10209068W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4176807A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10209462W 2 2012-01-18T07:52:03.450448 {"last_modified": {"type": "/type/datetime", "value": "2012-01-18T07:52:03.450448"}, "title": "Wo qin li Zhongguo shi guan bei zha", "created": {"type": "/type/datetime", "value": "2009-12-11T02:29:44.877650"}, "subjects": ["Kosovo War, 1998-1999", "Foreign Participation"], "latest_revision": 2, "key": "/works/OL10209462W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4177055A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10210305W 2 2020-11-14T08:36:01.484118 {"last_modified": {"type": "/type/datetime", "value": "2020-11-14T08:36:01.484118"}, "title": "Dang dai fang zhi xue tan lun", "created": {"type": "/type/datetime", "value": "2009-12-11T02:29:52.350784"}, "subjects": ["Historiography", "Local History"], "latest_revision": 2, "key": "/works/OL10210305W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4177559A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10211051W 2 2020-11-25T14:25:38.295815 {"last_modified": {"type": "/type/datetime", "value": "2020-11-25T14:25:38.295815"}, "title": "Tian guo wai zhuan", "created": {"type": "/type/datetime", "value": "2009-12-11T02:29:52.350784"}, "subjects": ["History", "Fiction"], "latest_revision": 2, "key": "/works/OL10211051W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4178008A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL1021119W 3 2010-07-22T13:50:22.061668 {"last_modified": {"type": "/type/datetime", "value": "2010-07-22T13:50:22.061668"}, "latest_revision": 3, "key": "/works/OL1021119W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL97256A"}}], "created": {"type": "/type/datetime", "value": "2009-12-09T19:31:01.596646"}, "title": "Kurtulus\u0327 Savas\u0327\u0131 so\u0308zlu\u0308g\u0306u\u0308", "subject_places": ["Turkey"], "subjects": ["Dictionaries", "History"], "subject_times": ["Revolution, 1918-1923"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10211297W 2 2020-11-19T21:23:35.025535 {"last_modified": {"type": "/type/datetime", "value": "2020-11-19T21:23:35.025535"}, "title": "Heng huang xin lun (Song ren xiao shuo)", "created": {"type": "/type/datetime", "value": "2009-12-11T02:30:00.147961"}, "subjects": ["History", "Anecdotes"], "latest_revision": 2, "key": "/works/OL10211297W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4178167A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL1021132W 3 2010-07-22T13:50:22.061668 {"created": {"type": "/type/datetime", "value": "2009-12-09T19:31:01.596646"}, "subjects": ["Criticism and interpretation"], "subject_people": ["\u015eeyh Galip (1757 or 8-1799)", "\u0130smail Dede Hamm\u00e2m\u0131\u0302-z\u00e2de (1778-1846)"], "key": "/works/OL1021132W", "title": "Kug\u0306unun son s\u0327ark\u0131s\u0131", "latest_revision": 3, "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL97260A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-07-22T13:50:22.061668"}, "revision": 3}
+/type/work /works/OL10211492W 2 2020-11-30T00:04:22.219019 {"last_modified": {"type": "/type/datetime", "value": "2020-11-30T00:04:22.219019"}, "title": "Gu Shutang xuan ji ([Zhongguo dang dai jing ji xue jia wen cong])", "created": {"type": "/type/datetime", "value": "2009-12-11T02:30:00.147961"}, "subjects": ["Marxian economics", "Economic conditions"], "latest_revision": 2, "key": "/works/OL10211492W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4178295A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10211929W 2 2020-12-04T16:45:33.352961 {"title": "Qi meng yu ge ming: \"wu si\" ji jin pai de liang nan (\"Zhongguo : xian dai xing yu chuan tong\" lun cong)", "key": "/works/OL10211929W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4178558A"}}], "type": {"key": "/type/work"}, "subjects": ["History", "Intellectual life", "Chinese Philosophy"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T02:30:00.147961"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-04T16:45:33.352961"}}
+/type/work /works/OL10212120W 2 2020-12-06T23:24:36.618106 {"title": "Han yu shi", "key": "/works/OL10212120W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4178670A"}}], "type": {"key": "/type/work"}, "subjects": ["Chinese language", "History"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T02:30:00.147961"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-06T23:24:36.618106"}}
+/type/work /works/OL10212326W 3 2010-04-28T07:08:20.389598 {"title": "Oil Painting by Tian Kesheng", "created": {"type": "/type/datetime", "value": "2009-12-11T02:30:07.862451"}, "covers": [3321720], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:08:20.389598"}, "latest_revision": 3, "key": "/works/OL10212326W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4178786A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10212354W 2 2020-11-14T02:54:11.568886 {"last_modified": {"type": "/type/datetime", "value": "2020-11-14T02:54:11.568886"}, "title": "Xin shi qi min zu wen ti tan suo", "created": {"type": "/type/datetime", "value": "2009-12-11T02:30:07.862451"}, "subjects": ["Ethnology", "Ethnic relations"], "latest_revision": 2, "key": "/works/OL10212354W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4178804A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10212362W 3 2010-07-22T13:50:49.588977 {"last_modified": {"type": "/type/datetime", "value": "2010-07-22T13:50:49.588977"}, "title": "Zhongguo yu yan sheng diao gai lan", "created": {"type": "/type/datetime", "value": "2009-12-11T02:30:07.862451"}, "subjects": ["Chinese language", "Intonation", "Tone"], "latest_revision": 3, "key": "/works/OL10212362W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4178807A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10212458W 4 2020-12-07T16:48:54.728573 {"key": "/works/OL10212458W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4178870A"}}], "title": "Wen Zhengming nian pu", "subject_places": ["China"], "subjects": ["Painters", "Biography", "Chronology"], "subject_people": ["Zhengming Wen (1470-1559)"], "type": {"key": "/type/work"}, "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T02:30:07.862451"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-07T16:48:54.728573"}}
+/type/work /works/OL1021248W 4 2021-08-20T09:11:25.904526 {"key": "/works/OL1021248W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL97287A"}}], "title": "Studies on Ottoman economic and social history", "subject_places": ["Turkey"], "subjects": ["Congresses", "Social conditions", "Economic conditions", "History", "15.50 general world history; history of great parts of the world, peoples, civilizations: general", "Economic history", "Geschichte", "Sozialgeschichte", "Wirtschaft", "Aufsatzsammlung", "Economische situatie", "Sociale situatie", "Conditions \u00e9conomiques", "Conditions sociales"], "subject_times": ["Ottoman Empire, 1288-1918"], "type": {"key": "/type/work"}, "covers": [11722723], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-09T19:31:01.596646"}, "last_modified": {"type": "/type/datetime", "value": "2021-08-20T09:11:25.904526"}}
+/type/work /works/OL10213332W 1 2009-12-11T02:30:16.531692 {"title": "A Bauhaus", "created": {"type": "/type/datetime", "value": "2009-12-11T02:30:16.531692"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:30:16.531692"}, "latest_revision": 1, "key": "/works/OL10213332W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4179493A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10213506W 1 2009-12-11T02:30:16.531692 {"title": "Indianok # 36", "created": {"type": "/type/datetime", "value": "2009-12-11T02:30:16.531692"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:30:16.531692"}, "latest_revision": 1, "key": "/works/OL10213506W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4179646A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10213767W 1 2009-12-11T02:30:16.531692 {"title": "Selected Works of Adel Deldadeh, Collection No. 2", "created": {"type": "/type/datetime", "value": "2009-12-11T02:30:16.531692"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:30:16.531692"}, "latest_revision": 1, "key": "/works/OL10213767W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4179864A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10214211W 2 2020-11-30T07:10:06.703248 {"last_modified": {"type": "/type/datetime", "value": "2020-11-30T07:10:06.703248"}, "title": "Dastanha-yi Irani (Zaban va adabiyat / Pizhuhishgah-i Farhang va Hunar-i Islami)", "created": {"type": "/type/datetime", "value": "2009-12-11T02:30:32.008381"}, "subjects": ["Persian fiction", "Persian Islamic literature", "History and criticism"], "latest_revision": 2, "key": "/works/OL10214211W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4180153A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10214431W 1 2009-12-11T02:30:32.008381 {"title": "Ma\u02bbajiz al-Imam \u02bbAli", "created": {"type": "/type/datetime", "value": "2009-12-11T02:30:32.008381"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:30:32.008381"}, "latest_revision": 1, "key": "/works/OL10214431W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4180316A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10214758W 2 2020-09-12T16:29:57.674310 {"last_modified": {"type": "/type/datetime", "value": "2020-09-12T16:29:57.674310"}, "title": "Avamil-i suqut-i hukumatha dar Quran va Nahj al-balaghah", "created": {"type": "/type/datetime", "value": "2009-12-11T02:30:32.008381"}, "subjects": ["Islam and state", "Qur\u02bcanic teaching", "Political science", "Qur\u02bcan"], "latest_revision": 2, "key": "/works/OL10214758W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4180561A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10214985W 2 2020-12-03T09:49:37.485787 {"title": "\"Nazariyah-i tawtiah\", saud-i saltanat-i Pahlavi va tarikhnigari-i jadid dar Iran", "key": "/works/OL10214985W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4180764A"}}], "type": {"key": "/type/work"}, "subjects": ["Historiography", "Politics and government"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T02:30:32.008381"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-03T09:49:37.485787"}}
+/type/work /works/OL10215006W 1 2009-12-11T02:30:32.008381 {"title": "Kajha-yi zard", "created": {"type": "/type/datetime", "value": "2009-12-11T02:30:32.008381"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:30:32.008381"}, "latest_revision": 1, "key": "/works/OL10215006W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4180783A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL102150W 12 2022-11-17T10:28:00.814542 {"subjects": ["Algebras, Linear", "Linear Algebras", "Lineare Algebra", "Algebras, linear"], "key": "/works/OL102150W", "title": "Elementary linear algebra", "authors": [{"author": {"key": "/authors/OL29433A"}, "type": {"key": "/type/author_role"}}, {"author": {"key": "/authors/OL561885A"}, "type": {"key": "/type/author_role"}}], "type": {"key": "/type/work"}, "covers": [83234], "latest_revision": 12, "revision": 12, "created": {"type": "/type/datetime", "value": "2009-10-17T18:36:50.013545"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T10:28:00.814542"}}
+/type/work /works/OL10215303W 2 2022-08-22T15:32:11.079559 {"title": "Lel zikaron (Sifriyah la-am)", "key": "/works/OL10215303W", "authors": [{"author": {"key": "/authors/OL3894529A"}, "type": {"key": "/type/author_role"}}], "type": {"key": "/type/work"}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T02:30:38.079189"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-22T15:32:11.079559"}}
+/type/work /works/OL10216039W 3 2010-07-22T13:50:49.588977 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:30:38.079189"}, "subjects": ["Personal narratives, Israeli", "Al-Aqsa Intifada, 2000-", "Diaries", "Israeli Personal narratives"], "subject_people": ["Amnon Lord"], "key": "/works/OL10216039W", "title": "Mil\u1e25amah ba-bayit", "latest_revision": 3, "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4181371A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-07-22T13:50:49.588977"}, "revision": 3}
+/type/work /works/OL10216072W 1 2009-12-11T02:30:38.079189 {"title": "\u1e7ea\u1e33um", "created": {"type": "/type/datetime", "value": "2009-12-11T02:30:38.079189"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:30:38.079189"}, "latest_revision": 1, "key": "/works/OL10216072W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4181382A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10216074W 1 2009-12-11T02:30:38.079189 {"title": "Shosh", "created": {"type": "/type/datetime", "value": "2009-12-11T02:30:38.079189"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:30:38.079189"}, "latest_revision": 1, "key": "/works/OL10216074W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4181382A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1021611W 3 2010-07-22T13:50:49.588977 {"created": {"type": "/type/datetime", "value": "2009-12-09T19:31:53.442512"}, "subject_places": ["Istanbul (Turkey)"], "subjects": ["Social life and customs"], "latest_revision": 3, "key": "/works/OL1021611W", "title": "I\u0307stanbul yaz\u0131lar\u0131", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL97375A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-07-22T13:50:49.588977"}, "revision": 3}
+/type/work /works/OL10216203W 2 2020-11-05T02:37:07.136348 {"last_modified": {"type": "/type/datetime", "value": "2020-11-05T02:37:07.136348"}, "title": "Gilo shel adam (Sifriyat ofakim)", "created": {"type": "/type/datetime", "value": "2009-12-11T02:30:49.523441"}, "subjects": ["Aging", "Adulthood", "Psychological aspects", "Developmental psychology", "Human Life cycle"], "latest_revision": 2, "key": "/works/OL10216203W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4181436A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10216277W 1 2009-12-11T02:30:49.523441 {"title": "Dayah Henig (ha-Sidrah ha-levanah)", "created": {"type": "/type/datetime", "value": "2009-12-11T02:30:49.523441"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:30:49.523441"}, "latest_revision": 1, "key": "/works/OL10216277W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4181472A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10216368W 2 2020-09-12T16:21:13.800464 {"last_modified": {"type": "/type/datetime", "value": "2020-09-12T16:21:13.800464"}, "title": "Rahok ve-khan", "created": {"type": "/type/datetime", "value": "2009-12-11T02:30:49.523441"}, "subjects": ["Childhood and youth"], "latest_revision": 2, "key": "/works/OL10216368W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4181521A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10216388W 2 2020-10-28T08:36:35.512638 {"last_modified": {"type": "/type/datetime", "value": "2020-10-28T08:36:35.512638"}, "title": "Milim loaziyot bi-leshonenu (Gome)", "created": {"type": "/type/datetime", "value": "2009-12-11T02:30:49.523441"}, "subjects": ["Hebrew language", "Foreign words and phrases", "Dictionaries"], "latest_revision": 2, "key": "/works/OL10216388W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4181527A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10216948W 4 2020-11-10T12:33:31.255923 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:30:49.523441"}, "subjects": ["Piyutim", "Early works to 1800", "Criticism and interpretation"], "latest_revision": 4, "key": "/works/OL10216948W", "title": "Piyute Rabi Mosheh Bug'nah, ish Tripoli", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4181890A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-11-10T12:33:31.255923"}, "covers": [5245166], "revision": 4}
+/type/work /works/OL10217339W 4 2020-11-16T13:22:10.455655 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:30:57.153785"}, "subjects": ["Yiddish language", "Glossaries, vocabularies", "Yiddish Manuscripts", "Facsimiles", "Criticism, interpretation", "Bible"], "latest_revision": 4, "key": "/works/OL10217339W", "title": "Sefer pitronot Rashi", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4182116A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-11-16T13:22:10.455655"}, "covers": [5245304], "revision": 4}
+/type/work /works/OL10217426W 3 2010-07-22T13:51:26.135792 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:30:57.153785"}, "subject_places": ["Kurdistan"], "subjects": ["Dictionaries", "Aramaic language", "Hebrew", "Dialects", "Hebrew language", "Aramaic"], "latest_revision": 3, "key": "/works/OL10217426W", "title": "Milon Arami-Kurdi-\u02bbIvri", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4182177A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-07-22T13:51:26.135792"}, "revision": 3}
+/type/work /works/OL10217653W 2 2020-11-25T12:07:02.490001 {"last_modified": {"type": "/type/datetime", "value": "2020-11-25T12:07:02.490001"}, "title": "Mapat Rosh ha-Ayin (78) (Pirsume Rashut ha-atikot)", "created": {"type": "/type/datetime", "value": "2009-12-11T02:30:57.153785"}, "subjects": ["Directories", "Antiquities"], "latest_revision": 2, "key": "/works/OL10217653W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4182294A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10217823W 1 2009-12-11T02:30:57.153785 {"title": "Le-\u02bbet \u02bberev-avivim", "created": {"type": "/type/datetime", "value": "2009-12-11T02:30:57.153785"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:30:57.153785"}, "latest_revision": 1, "key": "/works/OL10217823W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4182393A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10218055W 2 2020-09-13T09:33:31.261534 {"last_modified": {"type": "/type/datetime", "value": "2020-09-13T09:33:31.261534"}, "title": "Lizel sheli (Halonot)", "created": {"type": "/type/datetime", "value": "2009-12-11T02:30:57.153785"}, "subjects": ["Holocaust, Jewish (1939-1945)", "Fiction"], "latest_revision": 2, "key": "/works/OL10218055W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4182540A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10218117W 1 2009-12-11T02:30:57.153785 {"title": "Teatron ha-yafim", "created": {"type": "/type/datetime", "value": "2009-12-11T02:30:57.153785"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:30:57.153785"}, "latest_revision": 1, "key": "/works/OL10218117W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4182593A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10218246W 1 2009-12-11T02:31:05.714401 {"title": "Di sh\u1e6dil\u1e33ay\u1e6d bren\u1e6d", "created": {"type": "/type/datetime", "value": "2009-12-11T02:31:05.714401"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:31:05.714401"}, "latest_revision": 1, "key": "/works/OL10218246W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4182700A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10218284W 3 2010-07-22T13:51:26.135792 {"last_modified": {"type": "/type/datetime", "value": "2010-07-22T13:51:26.135792"}, "latest_revision": 3, "key": "/works/OL10218284W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4182719A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T02:31:05.714401"}, "title": "Le-et ka-zot", "subject_places": ["Thessalonik\u0113", "Greece"], "subjects": ["Drama", "In literature", "Jewish theater", "Musicals", "Librettos", "Bible"], "subject_people": ["Shlomo Reuven Mordejai (b. 1908)", "Esther Queen of Persia"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10218565W 3 2010-04-28T07:08:20.389598 {"title": "Searching for the Bull", "created": {"type": "/type/datetime", "value": "2009-12-11T02:31:05.714401"}, "covers": [3353241], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:08:20.389598"}, "latest_revision": 3, "key": "/works/OL10218565W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4182891A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10218758W 1 2009-12-11T02:31:05.714401 {"title": "Ana\u1e25nu lo datiyim", "created": {"type": "/type/datetime", "value": "2009-12-11T02:31:05.714401"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:31:05.714401"}, "latest_revision": 1, "key": "/works/OL10218758W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4183037A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10218761W 2 2020-11-25T12:20:32.965090 {"last_modified": {"type": "/type/datetime", "value": "2020-11-25T12:20:32.965090"}, "title": "Tikhnun fizi shel merkeze peilut kehilatiyim", "created": {"type": "/type/datetime", "value": "2009-12-11T02:31:05.714401"}, "subjects": ["Community centers", "Recreation centers", "Structural design", "Design and construction"], "latest_revision": 2, "key": "/works/OL10218761W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4183040A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10218826W 2 2020-12-04T20:36:27.081168 {"title": "Magalim be-kahol", "key": "/works/OL10218826W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4183084A"}}], "type": {"key": "/type/work"}, "subjects": ["Jews", "Folklore", "Jewish folk literature"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T02:31:05.714401"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-04T20:36:27.081168"}}
+/type/work /works/OL10218938W 1 2009-12-11T02:31:05.714401 {"title": "Unity Is Strength (Tales of the Sang Kancil)", "created": {"type": "/type/datetime", "value": "2009-12-11T02:31:05.714401"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:31:05.714401"}, "latest_revision": 1, "key": "/works/OL10218938W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4183186A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10218965W 3 2010-04-28T07:08:20.389598 {"title": "Asian Wisdom for Effective Management", "created": {"type": "/type/datetime", "value": "2009-12-11T02:31:05.714401"}, "covers": [3353417], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:08:20.389598"}, "latest_revision": 3, "key": "/works/OL10218965W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4183222A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10219305W 3 2022-10-30T05:25:57.431421 {"title": "Manual del Perfecto Ogt / Manual to Become a Perfect Son of a Bitch", "subjects": ["Ego\u00edsmo", "Self-interest", "Egoism", "Inter\u00e9s propio", "Relaciones humanas", "Interpersonal relations", "Assertiveness (Psychology)", "Afirmaci\u00f3n de s\u00ed mismo"], "key": "/works/OL10219305W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4183491A"}}], "type": {"key": "/type/work"}, "covers": [12980983], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T02:31:13.440459"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-30T05:25:57.431421"}}
+/type/work /works/OL10219547W 4 2011-05-02T10:20:06.208513 {"title": "Discursos sobre el progreso humano", "created": {"type": "/type/datetime", "value": "2009-12-11T02:31:13.440459"}, "covers": [5264277], "last_modified": {"type": "/type/datetime", "value": "2011-05-02T10:20:06.208513"}, "latest_revision": 4, "key": "/works/OL10219547W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL6393476A"}}], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL10219604W 1 2009-12-11T02:31:13.440459 {"title": "Historia de La Economia", "created": {"type": "/type/datetime", "value": "2009-12-11T02:31:13.440459"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:31:13.440459"}, "latest_revision": 1, "key": "/works/OL10219604W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4183759A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10220061W 2 2022-05-14T10:11:06.907878 {"title": "Eleccion De Carrera", "key": "/works/OL10220061W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4184062A"}}], "type": {"key": "/type/work"}, "subjects": ["Vocational guidance", "Professions", "Orientaci\u00f3n profesional", "Profesiones", "Educaci\u00f3n superior", "Orientaci\u00f3n profesional y vocacional"], "covers": [12744771], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T02:31:13.440459"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-14T10:11:06.907878"}}
+/type/work /works/OL10220303W 4 2022-07-26T05:06:49.394371 {"title": "Historia Universal Contemporanea", "covers": [5246698], "key": "/works/OL10220303W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4184244A"}}], "type": {"key": "/type/work"}, "subjects": ["Modern History", "Histoire", "Historia moderna"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T02:31:21.633098"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-26T05:06:49.394371"}}
+/type/work /works/OL10220343W 3 2010-04-28T07:08:20.389598 {"title": "Historia Regional De Morelos/ Regional History of Morelos", "created": {"type": "/type/datetime", "value": "2009-12-11T02:31:21.633098"}, "covers": [5246744], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:08:20.389598"}, "latest_revision": 3, "key": "/works/OL10220343W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4184291A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1022086W 1 2009-12-09T19:31:53.442512 {"title": "27 Mayis 1960 darbesi", "created": {"type": "/type/datetime", "value": "2009-12-09T19:31:53.442512"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:31:53.442512"}, "latest_revision": 1, "key": "/works/OL1022086W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL97515A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10220896W 1 2009-12-11T02:31:21.633098 {"title": "Los Valores Y Las Valoraciones En La Edu", "created": {"type": "/type/datetime", "value": "2009-12-11T02:31:21.633098"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:31:21.633098"}, "latest_revision": 1, "key": "/works/OL10220896W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4184745A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1022102W 1 2009-12-09T19:31:53.442512 {"title": "Ion\u0131a", "created": {"type": "/type/datetime", "value": "2009-12-09T19:31:53.442512"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:31:53.442512"}, "latest_revision": 1, "key": "/works/OL1022102W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL97520A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10221155W 2 2019-03-26T06:13:54.478549 {"last_modified": {"type": "/type/datetime", "value": "2019-03-26T06:13:54.478549"}, "title": "Colibri", "created": {"type": "/type/datetime", "value": "2009-12-11T02:31:21.633098"}, "subjects": ["Children's stories, Mexican", "Spanish language materials", "Juvenile literature", "Legends"], "latest_revision": 2, "key": "/works/OL10221155W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4185014A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10221717W 3 2010-04-28T07:08:20.389598 {"title": "H E C T O R novela hist\u00f3rica cristera", "created": {"type": "/type/datetime", "value": "2009-12-11T02:31:29.863832"}, "covers": [3354011], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:08:20.389598"}, "latest_revision": 3, "key": "/works/OL10221717W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4185480A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10221724W 1 2009-12-11T02:31:29.863832 {"title": "Servidumbre", "created": {"type": "/type/datetime", "value": "2009-12-11T02:31:29.863832"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:31:29.863832"}, "latest_revision": 1, "key": "/works/OL10221724W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4185483A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10221848W 3 2010-04-28T07:08:20.389598 {"title": "Practica del Amor a Jesucristo", "created": {"type": "/type/datetime", "value": "2009-12-11T02:31:29.863832"}, "covers": [5264489], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:08:20.389598"}, "latest_revision": 3, "key": "/works/OL10221848W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4185588A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10222047W 4 2022-01-05T05:08:17.987636 {"title": "El Sastrecillo Valiente?", "covers": [5247822], "key": "/works/OL10222047W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4185758A"}}], "type": {"key": "/type/work"}, "subjects": ["Boys", "Juvenile fiction", "Tailors", "Reading", "Muchachos", "Novela juvenil", "Sastrer\u00eda", "Lectura"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T02:31:29.863832"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-05T05:08:17.987636"}}
+/type/work /works/OL10222378W 4 2021-08-24T04:58:48.140471 {"title": "Los Derechos De Los Ninos", "covers": [5252538], "key": "/works/OL10222378W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4186026A"}}], "type": {"key": "/type/work"}, "subjects": ["Juvenile literature", "Children's rights", "Children (International law)", "Ni\u00f1os", "Literatura juvenil", "Derechos", "United Nations. General Assembly", "United Nations", "Declaration of the Rights of the Child (United Nations. General Assembly)"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T02:31:38.774319"}, "last_modified": {"type": "/type/datetime", "value": "2021-08-24T04:58:48.140471"}}
+/type/work /works/OL10222675W 3 2010-04-28T07:08:20.389598 {"title": "Los Chistes Favoritos de los Ninos \"2\"", "created": {"type": "/type/datetime", "value": "2009-12-11T02:31:38.774319"}, "covers": [3354448], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:08:20.389598"}, "latest_revision": 3, "key": "/works/OL10222675W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4186253A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10223231W 1 2009-12-11T02:31:47.603397 {"title": "Redaccn 2 Leer, escribir, investigar", "created": {"type": "/type/datetime", "value": "2009-12-11T02:31:47.603397"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:31:47.603397"}, "latest_revision": 1, "key": "/works/OL10223231W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4186765A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10223727W 3 2010-04-28T07:08:20.389598 {"title": "Frantisek Vizner", "created": {"type": "/type/datetime", "value": "2009-12-11T02:31:47.603397"}, "covers": [5367219], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:08:20.389598"}, "latest_revision": 3, "key": "/works/OL10223727W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4187219A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10223778W 1 2009-12-11T02:31:47.603397 {"title": "Forensic Services Directory", "created": {"type": "/type/datetime", "value": "2009-12-11T02:31:47.603397"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:31:47.603397"}, "latest_revision": 1, "key": "/works/OL10223778W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4187264A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10223868W 1 2009-12-11T02:31:47.603397 {"title": "Arcadian gaze", "created": {"type": "/type/datetime", "value": "2009-12-11T02:31:47.603397"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:31:47.603397"}, "latest_revision": 1, "key": "/works/OL10223868W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4187346A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1022422W 1 2009-12-09T19:32:41.929970 {"title": "Hayu bekorner", "created": {"type": "/type/datetime", "value": "2009-12-09T19:32:41.929970"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:32:41.929970"}, "latest_revision": 1, "key": "/works/OL1022422W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL97620A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10224515W 4 2019-03-26T04:31:46.689099 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:32:00.794364"}, "subjects": ["Religion", "Description and travel", "Descriptions et voyages", "Travel", "Histoire", "History"], "latest_revision": 4, "key": "/works/OL10224515W", "title": "Real Ceylon", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4187945A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2019-03-26T04:31:46.689099"}, "covers": [5249117], "revision": 4}
+/type/work /works/OL10224530W 1 2009-12-11T02:32:00.794364 {"title": "Letters on Sports in Eastern Bengal", "created": {"type": "/type/datetime", "value": "2009-12-11T02:32:00.794364"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:32:00.794364"}, "latest_revision": 1, "key": "/works/OL10224530W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4187962A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10225679W 3 2010-04-28T07:08:20.389598 {"title": "The Funny Side of English", "created": {"type": "/type/datetime", "value": "2009-12-11T02:32:09.841911"}, "covers": [3322333], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:08:20.389598"}, "latest_revision": 3, "key": "/works/OL10225679W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4188904A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10226026W 1 2009-12-11T02:32:09.841911 {"title": "Diwali", "created": {"type": "/type/datetime", "value": "2009-12-11T02:32:09.841911"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:32:09.841911"}, "latest_revision": 1, "key": "/works/OL10226026W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4189179A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10226045W 1 2009-12-11T02:32:09.841911 {"title": "Dr. Homi Bhabha", "created": {"type": "/type/datetime", "value": "2009-12-11T02:32:09.841911"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:32:09.841911"}, "latest_revision": 1, "key": "/works/OL10226045W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4189192A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10226057W 1 2009-12-11T02:32:09.841911 {"title": "Pulmonary Tuberculosis", "created": {"type": "/type/datetime", "value": "2009-12-11T02:32:09.841911"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:32:09.841911"}, "latest_revision": 1, "key": "/works/OL10226057W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4189195A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10226136W 1 2009-12-11T02:32:09.841911 {"title": "Anatomy and Physiology of Eye", "created": {"type": "/type/datetime", "value": "2009-12-11T02:32:09.841911"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:32:09.841911"}, "latest_revision": 1, "key": "/works/OL10226136W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4189256A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10226485W 2 2021-12-26T15:25:08.952382 {"title": "Comparative Anatomy of Vertebrates", "key": "/works/OL10226485W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4189594A"}}], "type": {"key": "/type/work"}, "subjects": ["Vertebrates, anatomy", "Anatomy, comparative, atlases"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T02:32:15.921563"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-26T15:25:08.952382"}}
+/type/work /works/OL10226557W 1 2009-12-11T02:32:15.921563 {"title": "Corporate Accounting", "created": {"type": "/type/datetime", "value": "2009-12-11T02:32:15.921563"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:32:15.921563"}, "latest_revision": 1, "key": "/works/OL10226557W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4189666A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10227023W 1 2009-12-11T02:32:15.921563 {"title": "Indian Economy", "created": {"type": "/type/datetime", "value": "2009-12-11T02:32:15.921563"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:32:15.921563"}, "latest_revision": 1, "key": "/works/OL10227023W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4189829A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1022708W 2 2020-12-19T12:58:57.661927 {"title": "N\u01b0\u0304a, tai, \u02bbo\u031c\u0304k, tok", "key": "/works/OL1022708W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL97664A"}}], "type": {"key": "/type/work"}, "description": {"type": "/type/text", "value": "Commentaries of Thai and foreign writers and literary awards."}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-09T19:32:41.929970"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-19T12:58:57.661927"}}
+/type/work /works/OL10227159W 1 2009-12-11T02:32:15.921563 {"title": "Pattern of Evolution", "created": {"type": "/type/datetime", "value": "2009-12-11T02:32:15.921563"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:32:15.921563"}, "latest_revision": 1, "key": "/works/OL10227159W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4189884A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10227405W 1 2009-12-11T02:32:24.066624 {"title": "Modern Governments and Constitutions - 2 Vols", "created": {"type": "/type/datetime", "value": "2009-12-11T02:32:24.066624"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:32:24.066624"}, "latest_revision": 1, "key": "/works/OL10227405W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4190045A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10227740W 3 2010-04-28T07:08:20.389598 {"title": "A Journey Out of India", "created": {"type": "/type/datetime", "value": "2009-12-11T02:32:24.066624"}, "covers": [5250708], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:08:20.389598"}, "latest_revision": 3, "key": "/works/OL10227740W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4190301A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10227818W 3 2022-12-28T15:55:06.403770 {"title": "Begum Akhtar ; The Story of My Ammi", "key": "/works/OL10227818W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4190368A"}}], "type": {"key": "/type/work"}, "subjects": ["Singers", "Biography", "Urdu Ghazals", "Music", "Vocal music"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T02:32:24.066624"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-28T15:55:06.403770"}}
+/type/work /works/OL10227879W 2 2020-12-15T03:37:22.696432 {"title": "Tribals and the Indian Constitution", "key": "/works/OL10227879W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4190419A"}}], "type": {"key": "/type/work"}, "subjects": ["Scheduled tribes", "Legal status, laws"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T02:32:24.066624"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-15T03:37:22.696432"}}
+/type/work /works/OL1022791W 4 2020-12-03T08:47:50.917022 {"subject_places": ["Asia"], "subjects": ["Arms race", "Defenses"], "key": "/works/OL1022791W", "title": "Kamlang rop \u02bbE\u0304chi\u0304a", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL97684A"}}], "type": {"key": "/type/work"}, "description": {"type": "/type/text", "value": "Data information on Asian defences and arms race."}, "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-09T19:32:41.929970"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-03T08:47:50.917022"}}
+/type/work /works/OL10228535W 3 2010-04-28T07:08:20.389598 {"title": "Adult Education", "created": {"type": "/type/datetime", "value": "2009-12-11T02:32:32.144450"}, "covers": [3322977], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:08:20.389598"}, "latest_revision": 3, "key": "/works/OL10228535W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4190983A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10229349W 1 2009-12-11T02:32:40.575446 {"title": "Prevention and Control of Fish and Prawn Diseases", "created": {"type": "/type/datetime", "value": "2009-12-11T02:32:40.575446"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:32:40.575446"}, "latest_revision": 1, "key": "/works/OL10229349W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4191566A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10231054W 3 2020-02-28T10:33:10.309220 {"title": "Islamic Law of Business Organization Partnerships", "created": {"type": "/type/datetime", "value": "2009-12-11T02:32:49.489675"}, "last_modified": {"type": "/type/datetime", "value": "2020-02-28T10:33:10.309220"}, "latest_revision": 3, "key": "/works/OL10231054W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4192874A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1023116W 4 2020-11-12T21:09:41.655025 {"description": {"type": "/type/text", "value": "Suggestions to improve Thai urban bureaucrats' perceptions of rural development in Thailand."}, "last_modified": {"type": "/type/datetime", "value": "2020-11-12T21:09:41.655025"}, "latest_revision": 4, "key": "/works/OL1023116W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL97743A"}}], "created": {"type": "/type/datetime", "value": "2009-12-09T19:32:41.929970"}, "title": "Kha\u0304niyom kho\u031c\u0304ng kha\u0304ra\u0304tchaka\u0304n Thai thi\u0304 pen \u02bbuppasak to\u031c\u0304 ka\u0304nphatthana\u0304 chonnabot", "subject_places": ["Thailand"], "subjects": ["Rural development", "Government policy"], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL10231178W 1 2009-12-11T02:32:58.860512 {"title": "A CRITICAL STUDY OF THE NOVELS OF ARUN JOSHI, RAJA RAO AND SUDHIM GHOSE", "created": {"type": "/type/datetime", "value": "2009-12-11T02:32:58.860512"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:32:58.860512"}, "latest_revision": 1, "key": "/works/OL10231178W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4192999A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10231504W 1 2009-12-11T02:32:58.860512 {"title": "Selections from the Writings of Hurrish Chunder Mookerji", "created": {"type": "/type/datetime", "value": "2009-12-11T02:32:58.860512"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:32:58.860512"}, "latest_revision": 1, "key": "/works/OL10231504W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4193209A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10231704W 3 2010-04-28T07:08:20.389598 {"title": "Ayurvedic Treatment for Common Diseases", "created": {"type": "/type/datetime", "value": "2009-12-11T02:32:58.860512"}, "covers": [5251407], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:08:20.389598"}, "latest_revision": 3, "key": "/works/OL10231704W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4193341A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10231949W 2 2020-12-16T13:55:00.229124 {"title": "Comprehensive Vison and Transforming Mission", "key": "/works/OL10231949W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4193581A"}}], "type": {"key": "/type/work"}, "subjects": ["Advaita", "Social change"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T02:32:58.860512"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-16T13:55:00.229124"}}
+/type/work /works/OL10232269W 1 2009-12-11T02:33:08.242740 {"title": "Daily and Occassional Dua's", "created": {"type": "/type/datetime", "value": "2009-12-11T02:33:08.242740"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:33:08.242740"}, "latest_revision": 1, "key": "/works/OL10232269W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4193842A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10232323W 2 2011-01-08T05:56:06.893206 {"title": "An Introduction to Mechanical Engineering", "created": {"type": "/type/datetime", "value": "2009-12-11T02:33:08.242740"}, "last_modified": {"type": "/type/datetime", "value": "2011-01-08T05:56:06.893206"}, "latest_revision": 2, "key": "/works/OL10232323W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4193906A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL1023284W 4 2020-09-13T07:30:54.941177 {"description": {"type": "/type/text", "value": "Royal decree on electronic commerce, circuit design protection law of Thailand."}, "last_modified": {"type": "/type/datetime", "value": "2020-09-13T07:30:54.941177"}, "latest_revision": 4, "key": "/works/OL1023284W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL97754A"}}], "created": {"type": "/type/datetime", "value": "2009-12-09T19:32:41.929970"}, "title": "Phrara\u0304tchabanyat Khumkhro\u0304\u031cng B\u00e6\u0304p Phangphu\u0304m kho\u0304\u031cng Wongc\u030cho\u0304\u031cn R\u01b0\u0304am, Phutthasakkara\u0304t 2543", "subject_places": ["Thailand"], "subjects": ["Electronic commerce", "Electronic circuit design", "Law and legislation"], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL10233088W 3 2010-04-28T07:08:20.389598 {"title": "Drudgery of Hill Women", "created": {"type": "/type/datetime", "value": "2009-12-11T02:33:08.242740"}, "covers": [5251867], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:08:20.389598"}, "latest_revision": 3, "key": "/works/OL10233088W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4194551A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10233291W 1 2009-12-11T02:33:17.167333 {"title": "Mercy for Mankind", "created": {"type": "/type/datetime", "value": "2009-12-11T02:33:17.167333"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:33:17.167333"}, "latest_revision": 1, "key": "/works/OL10233291W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4194713A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10234299W 1 2009-12-11T02:33:25.421767 {"title": "Rushdie, Kureishi and Syal", "created": {"type": "/type/datetime", "value": "2009-12-11T02:33:25.421767"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:33:25.421767"}, "latest_revision": 1, "key": "/works/OL10234299W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4195548A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10234520W 3 2010-07-22T13:52:23.330457 {"last_modified": {"type": "/type/datetime", "value": "2010-07-22T13:52:23.330457"}, "title": "Clinical diagnostics of the internal diseases of domestic animals", "created": {"type": "/type/datetime", "value": "2009-12-11T02:33:25.421767"}, "subjects": ["Veterinary medicine", "Veterinary clinical pathology", "Diagnosis"], "latest_revision": 3, "key": "/works/OL10234520W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4195726A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10234525W 4 2010-12-24T09:14:13.067344 {"title": "Dictionary of Gardening and General Horticulture - 2 Vols", "created": {"type": "/type/datetime", "value": "2009-12-11T02:33:25.421767"}, "covers": [5252216], "last_modified": {"type": "/type/datetime", "value": "2010-12-24T09:14:13.067344"}, "latest_revision": 4, "key": "/works/OL10234525W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL162361A"}}], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL10234746W 1 2009-12-11T02:33:25.421767 {"title": "Poverty, Rural Development and Public Policy", "created": {"type": "/type/datetime", "value": "2009-12-11T02:33:25.421767"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:33:25.421767"}, "latest_revision": 1, "key": "/works/OL10234746W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4195878A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10234962W 4 2022-12-28T22:23:30.231217 {"title": "Rama in Ancient Indian Sculpture", "key": "/works/OL10234962W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4196103A"}}], "type": {"key": "/type/work"}, "subjects": ["R\u0101ma (Hindu deity)", "Art", "Ancient Sculpture", "Relief (Sculpture), Hindu", "Relief (Sculpture)", "Sculpture, india", "Sculpture, ancient", "Relief (sculpture)", "Hindu relief (Sculpture)"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T02:33:25.421767"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-28T22:23:30.231217"}}
+/type/work /works/OL10235482W 3 2010-04-28T07:08:20.389598 {"title": "Libro sagrado de los sue\u00f1os", "created": {"type": "/type/datetime", "value": "2009-12-11T02:33:34.444585"}, "covers": [3354975], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:08:20.389598"}, "latest_revision": 3, "key": "/works/OL10235482W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4196567A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10235632W 1 2009-12-11T02:33:34.444585 {"title": "Tecnologias de La Informacion y de La Comunicacion", "created": {"type": "/type/datetime", "value": "2009-12-11T02:33:34.444585"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:33:34.444585"}, "latest_revision": 1, "key": "/works/OL10235632W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4196725A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1023580W 2 2020-11-02T11:29:45.610609 {"description": {"type": "/type/text", "value": "Letters written to The\u0304wawongwaro\u0304paka\u0304n, Prince, son of Mongkut, King of Siam, 1858-1923, during His Majesty\u02bcs tour to northern Thailand; cremation volume for Y\u01b0\u0304nyong Wo\u0304\u031crapho\u0304, 1913-1964 and Supha\u0304wadi\u0304 Wo\u0304\u031crapho\u0304, 1949-1960."}, "title": "Phrara\u0304tchahatthale\u0304kha\u0304 khra\u0304o sadet Monthon Fa\u0304i N\u01b0\u0304a", "created": {"type": "/type/datetime", "value": "2009-12-09T19:33:28.532982"}, "last_modified": {"type": "/type/datetime", "value": "2020-11-02T11:29:45.610609"}, "latest_revision": 2, "key": "/works/OL1023580W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL97782A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10235952W 3 2022-12-23T19:30:12.357693 {"title": "La Carta Atenagorica De Sor Juana Ines / Letter of Atenagorica of Mother Juana Ines", "covers": [5252634], "key": "/works/OL10235952W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4197094A"}}], "type": {"key": "/type/work"}, "subjects": ["Early works to 1800", "Person and offices", "Mexican literature", "Catholic authors", "History and criticism", "Literatura mexicana (cr\u00edtica e interpreta\u00e7\u00e3o)"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T02:33:34.444585"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-23T19:30:12.357693"}}
+/type/work /works/OL10235979W 1 2009-12-11T02:33:34.444585 {"title": "Comision De Estudios Para La Reforma Del Estado", "created": {"type": "/type/datetime", "value": "2009-12-11T02:33:34.444585"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:33:34.444585"}, "latest_revision": 1, "key": "/works/OL10235979W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4197123A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10235990W 3 2010-04-28T07:08:20.389598 {"title": "Analisis Sociologico del Caso Stanley / Sociological Analysis of the Stanley Case", "created": {"type": "/type/datetime", "value": "2009-12-11T02:33:34.444585"}, "covers": [5252482], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:08:20.389598"}, "latest_revision": 3, "key": "/works/OL10235990W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4197140A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10236516W 4 2020-12-17T00:35:28.469434 {"title": "Mas Si Osare Un Extra\u00b1o Enemigo\u00e0cl Aniversario Del Himno Nacional Mexicano / Anniversary of the Mexican National Hymn (Parentesis Musical)", "covers": [5253412], "key": "/works/OL10236516W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4197641A"}}], "type": {"key": "/type/work"}, "subjects": ["National songs", "History", "Patriotic music"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T02:33:44.638724"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-17T00:35:28.469434"}}
+/type/work /works/OL10236569W 4 2020-12-13T15:18:31.805277 {"title": "Del unico Mexicano en el Titanic", "covers": [5253016], "key": "/works/OL10236569W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4197702A"}}], "type": {"key": "/type/work"}, "subjects": ["Disasters", "Disaster victims", "Shipwrecks", "Titanic (Steamship)"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T02:33:44.638724"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-13T15:18:31.805277"}}
+/type/work /works/OL10236607W 1 2009-12-11T02:33:44.638724 {"title": "Las Profecias del Juicio Final?", "created": {"type": "/type/datetime", "value": "2009-12-11T02:33:44.638724"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:33:44.638724"}, "latest_revision": 1, "key": "/works/OL10236607W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4197738A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10236608W 1 2009-12-11T02:33:44.638724 {"title": "Cosmologia Egipcia - La Armonia Absoluta", "created": {"type": "/type/datetime", "value": "2009-12-11T02:33:44.638724"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:33:44.638724"}, "latest_revision": 1, "key": "/works/OL10236608W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4197739A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10236762W 3 2010-04-28T07:08:20.389598 {"title": "Costo Integral Conjunto", "created": {"type": "/type/datetime", "value": "2009-12-11T02:33:44.638724"}, "covers": [5253063], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:08:20.389598"}, "latest_revision": 3, "key": "/works/OL10236762W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4197884A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10236902W 2 2020-12-13T12:04:12.576876 {"title": "Sustentabilidad y Desarrollo", "key": "/works/OL10236902W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4198019A"}}], "type": {"key": "/type/work"}, "subjects": ["Sustainable development", "Human ecology"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T02:33:44.638724"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-13T12:04:12.576876"}}
+/type/work /works/OL10236917W 3 2010-04-28T07:08:20.389598 {"title": "Otro dia 3 (Otro Dia)", "created": {"type": "/type/datetime", "value": "2009-12-11T02:33:44.638724"}, "covers": [3355668], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:08:20.389598"}, "latest_revision": 3, "key": "/works/OL10236917W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4198030A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10237579W 1 2009-12-11T02:33:53.552828 {"title": "A catedral verde", "created": {"type": "/type/datetime", "value": "2009-12-11T02:33:53.552828"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:33:53.552828"}, "latest_revision": 1, "key": "/works/OL10237579W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4198702A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1023759W 5 2020-12-10T17:16:49.646780 {"subjects": ["Business and politics", "Heads of state", "Thailand, politics and government", "Politics and government", "Economic policy"], "key": "/works/OL1023759W", "title": "Thaksin", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL97808A"}}], "type": {"key": "/type/work"}, "covers": [1054433], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2009-12-09T19:33:28.532982"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-10T17:16:49.646780"}}
+/type/work /works/OL10237605W 1 2009-12-11T02:33:53.552828 {"title": "O ELOGIO DO FRACASSO (Colec\u00e7\u00e3o: Grandes Narrativas)", "created": {"type": "/type/datetime", "value": "2009-12-11T02:33:53.552828"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:33:53.552828"}, "latest_revision": 1, "key": "/works/OL10237605W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4198721A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10237636W 2 2011-12-28T02:06:10.210749 {"last_modified": {"type": "/type/datetime", "value": "2011-12-28T02:06:10.210749"}, "title": "Figuras desportivas do passado", "created": {"type": "/type/datetime", "value": "2009-12-11T02:33:53.552828"}, "subjects": ["Biography", "Sports personnel", "Encyclopedias", "Sports teams"], "latest_revision": 2, "key": "/works/OL10237636W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4198750A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10237868W 2 2020-09-13T09:53:51.114647 {"last_modified": {"type": "/type/datetime", "value": "2020-09-13T09:53:51.114647"}, "title": "Yi chao zhi ru ru lai di", "created": {"type": "/type/datetime", "value": "2009-12-11T02:33:53.552828"}, "subjects": ["Chinese Landscape painting", "Views on landscape painting"], "latest_revision": 2, "key": "/works/OL10237868W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4198939A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10237950W 1 2009-12-11T02:33:53.552828 {"title": "Bucuresti, planul orasului 1:15 000: Contine indexul strazilor = City plan 1:15 000", "created": {"type": "/type/datetime", "value": "2009-12-11T02:33:53.552828"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:33:53.552828"}, "latest_revision": 1, "key": "/works/OL10237950W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4199010A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10238362W 4 2023-01-03T15:43:22.942016 {"title": "Socio-Historical Precursors of Economic Rationalism in Australian Education", "covers": [3356640], "key": "/works/OL10238362W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4199378A"}}], "type": {"key": "/type/work"}, "subjects": ["Education", "History"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T02:34:03.274719"}, "last_modified": {"type": "/type/datetime", "value": "2023-01-03T15:43:22.942016"}}
+/type/work /works/OL10238471W 4 2020-12-07T21:10:28.050915 {"title": "The Hair in Black Women", "covers": [3356769], "key": "/works/OL10238471W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4199503A"}}], "type": {"key": "/type/work"}, "subjects": ["African American women", "Health and hygiene", "Hair", "Care and hygiene", "Personal Beauty"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T02:34:03.274719"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-07T21:10:28.050915"}}
+/type/work /works/OL10238578W 2 2020-11-18T05:41:18.347095 {"last_modified": {"type": "/type/datetime", "value": "2020-11-18T05:41:18.347095"}, "title": "al-Zawahir al-turathiyah fi al-shir al-Misri al-hadith", "created": {"type": "/type/datetime", "value": "2009-12-11T02:34:03.274719"}, "subjects": ["Arabic poetry", "History and criticism"], "latest_revision": 2, "key": "/works/OL10238578W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4199580A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10238922W 1 2009-12-11T02:34:03.274719 {"title": "The Qur'an: God and man in communication", "created": {"type": "/type/datetime", "value": "2009-12-11T02:34:03.274719"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:34:03.274719"}, "latest_revision": 1, "key": "/works/OL10238922W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4199778A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1023953W 4 2020-11-16T16:41:38.276735 {"description": {"type": "/type/text", "value": "Study on attitudes toward family values in Thai society."}, "last_modified": {"type": "/type/datetime", "value": "2020-11-16T16:41:38.276735"}, "latest_revision": 4, "key": "/works/OL1023953W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL97854A"}}], "created": {"type": "/type/datetime", "value": "2009-12-09T19:33:28.532982"}, "title": "Thatsanakhati to\u031c\u0304 kha\u0304niyom ki\u0304eokap khro\u031c\u0304pkhru\u0304a nai sangkhom Thai", "subject_places": ["Thailand"], "subjects": ["Social values", "Family", "Families"], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL10239564W 3 2019-07-31T14:50:53.609053 {"last_modified": {"type": "/type/datetime", "value": "2019-07-31T14:50:53.609053"}, "title": "al-Nashat al-Amriki fi al-Yaman fima bayna al-harbayn al-alamiyatayn, 1918-1939", "created": {"type": "/type/datetime", "value": "2009-12-11T02:34:16.140410"}, "subjects": ["Foreign relations"], "latest_revision": 3, "key": "/works/OL10239564W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4200145A"}}, {"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1145704A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1024011W 4 2020-11-23T04:18:59.676668 {"description": {"type": "/type/text", "value": "Transcripts of lectures on democracy, state and society with reference to future of political system of Thailand."}, "last_modified": {"type": "/type/datetime", "value": "2020-11-23T04:18:59.676668"}, "latest_revision": 4, "key": "/works/OL1024011W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL97868A"}}], "created": {"type": "/type/datetime", "value": "2009-12-09T19:33:28.532982"}, "title": "Pracha\u0304thipatai kap \u02bbana\u0304khot ka\u0304nm\u01b0\u0304ang Thai", "subject_places": ["Thailand"], "subjects": ["Politics and government", "Democracy"], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL10240203W 1 2009-12-11T02:34:30.734682 {"title": "Qasaid hubb", "created": {"type": "/type/datetime", "value": "2009-12-11T02:34:30.734682"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:34:30.734682"}, "latest_revision": 1, "key": "/works/OL10240203W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4200498A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10240325W 2 2020-12-03T08:08:09.897879 {"title": "al-Adalah al-ijtimaiyah", "key": "/works/OL10240325W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4200579A"}}], "type": {"key": "/type/work"}, "subjects": ["Social justice", "Socialism"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T02:34:30.734682"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-03T08:08:09.897879"}}
+/type/work /works/OL10240577W 1 2009-12-11T02:34:30.734682 {"title": "al-Allamah Muhammad Iqbal fi Misr al-Azhar", "created": {"type": "/type/datetime", "value": "2009-12-11T02:34:30.734682"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:34:30.734682"}, "latest_revision": 1, "key": "/works/OL10240577W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4200753A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10240782W 1 2009-12-11T02:34:30.734682 {"title": "al- Tajwi\u0304d al-Qur\u02bca\u0304ni\u0304", "created": {"type": "/type/datetime", "value": "2009-12-11T02:34:30.734682"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:34:30.734682"}, "latest_revision": 1, "key": "/works/OL10240782W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4200914A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10240855W 2 2020-12-07T12:46:33.611256 {"title": "Tuna al-Jabal", "key": "/works/OL10240855W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4200970A"}}], "type": {"key": "/type/work"}, "subjects": ["Monuments", "History", "Architecture"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T02:34:30.734682"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-07T12:46:33.611256"}}
+/type/work /works/OL10241327W 1 2009-12-11T02:34:39.648302 {"title": "al-Hanin ila al-nisyan", "created": {"type": "/type/datetime", "value": "2009-12-11T02:34:39.648302"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:34:39.648302"}, "latest_revision": 1, "key": "/works/OL10241327W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4201310A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10241479W 2 2020-12-04T14:28:01.809005 {"title": "al-Jami al-sahih fi al-qadar", "key": "/works/OL10241479W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4201417A"}}], "type": {"key": "/type/work"}, "subjects": ["Predestination (Islam)"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T02:34:39.648302"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-04T14:28:01.809005"}}
+/type/work /works/OL10241917W 2 2020-11-20T05:29:45.119714 {"last_modified": {"type": "/type/datetime", "value": "2020-11-20T05:29:45.119714"}, "title": "al-Anthrupulujiya al-tibbiyah", "created": {"type": "/type/datetime", "value": "2009-12-11T02:34:39.648302"}, "subjects": ["Intermarriage", "Traditional medicine", "Medical anthropology"], "latest_revision": 2, "key": "/works/OL10241917W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4201755A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10242023W 4 2020-11-23T04:53:16.966631 {"last_modified": {"type": "/type/datetime", "value": "2020-11-23T04:53:16.966631"}, "title": "al-Mutawaffa anha zawjuha fi al-fiqh al-Islami", "created": {"type": "/type/datetime", "value": "2009-12-11T02:34:39.648302"}, "subjects": ["Widows (Islamic law)", "Married women (Islamic law)"], "latest_revision": 4, "key": "/works/OL10242023W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4201840A"}}, {"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL6781826A"}}], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL1024233W 1 2009-12-09T19:33:28.532982 {"title": "Khon ha\u0304 pla\u0304", "created": {"type": "/type/datetime", "value": "2009-12-09T19:33:28.532982"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:33:28.532982"}, "latest_revision": 1, "key": "/works/OL1024233W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL97922A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10242960W 3 2010-04-28T07:08:20.389598 {"title": "Manaka: En el coraz\u00f3n del Orinoco", "created": {"type": "/type/datetime", "value": "2009-12-11T02:34:49.537594"}, "covers": [6016587], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:08:20.389598"}, "latest_revision": 3, "key": "/works/OL10242960W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4202713A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10243015W 2 2020-11-16T17:24:59.635192 {"last_modified": {"type": "/type/datetime", "value": "2020-11-16T17:24:59.635192"}, "title": "Xin Ma Hua wen wen xue yan jiu shu mu ti yao", "created": {"type": "/type/datetime", "value": "2009-12-11T02:34:49.537594"}, "subjects": ["Singaporean literature (Chinese)", "Bibliography", "History and criticism", "Malaysian literature (Chinese)"], "latest_revision": 2, "key": "/works/OL10243015W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4202754A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10243108W 1 2009-12-11T02:34:49.537594 {"title": "Praying Over God's Promises", "created": {"type": "/type/datetime", "value": "2009-12-11T02:34:49.537594"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:34:49.537594"}, "latest_revision": 1, "key": "/works/OL10243108W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4202805A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1024332W 2 2019-11-25T12:21:08.537466 {"title": "The medium-format manual", "created": {"type": "/type/datetime", "value": "2009-12-09T19:35:29.144627"}, "last_modified": {"type": "/type/datetime", "value": "2019-11-25T12:21:08.537466"}, "latest_revision": 2, "key": "/works/OL1024332W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2622234A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10243526W 2 2020-11-20T04:42:47.638482 {"last_modified": {"type": "/type/datetime", "value": "2020-11-20T04:42:47.638482"}, "title": "Chi dao hong liu", "created": {"type": "/type/datetime", "value": "2009-12-11T02:34:59.666745"}, "subjects": ["Fiction", "History"], "latest_revision": 2, "key": "/works/OL10243526W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4203467A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10243649W 4 2020-12-19T12:48:52.961055 {"key": "/works/OL10243649W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4203602A"}}], "title": "Capitalist realism", "subject_places": ["Russia (Federation)"], "subjects": ["Architecture", "History"], "subject_times": ["20th century", "21st century"], "type": {"key": "/type/work"}, "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T02:34:59.666745"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-19T12:48:52.961055"}}
+/type/work /works/OL10244006W 1 2009-12-11T02:34:59.666745 {"title": "Coaching and Playing Badminton the Right Way", "created": {"type": "/type/datetime", "value": "2009-12-11T02:34:59.666745"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:34:59.666745"}, "latest_revision": 1, "key": "/works/OL10244006W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4204003A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10244251W 1 2009-12-11T02:35:09.053151 {"title": "Scott's Fun Time Poems and Story", "created": {"type": "/type/datetime", "value": "2009-12-11T02:35:09.053151"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:35:09.053151"}, "latest_revision": 1, "key": "/works/OL10244251W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4204213A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10244685W 3 2010-04-28T07:08:20.389598 {"title": "Death (Pilgrims Quotation)", "created": {"type": "/type/datetime", "value": "2009-12-11T02:35:09.053151"}, "covers": [5549810], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:08:20.389598"}, "latest_revision": 3, "key": "/works/OL10244685W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4204647A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10246090W 1 2009-12-11T02:35:18.983720 {"title": "Fundamentals of Soil Science", "created": {"type": "/type/datetime", "value": "2009-12-11T02:35:18.983720"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:35:18.983720"}, "latest_revision": 1, "key": "/works/OL10246090W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4205793A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1024627W 2 2019-11-25T12:21:08.537466 {"title": "Space traveller's handbook", "created": {"type": "/type/datetime", "value": "2009-12-09T19:35:29.144627"}, "last_modified": {"type": "/type/datetime", "value": "2019-11-25T12:21:08.537466"}, "latest_revision": 2, "key": "/works/OL1024627W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2622234A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10246419W 1 2009-12-11T02:35:29.520750 {"title": "Encyclopaedia of Tourism in the New Millennium - 7 Vols", "created": {"type": "/type/datetime", "value": "2009-12-11T02:35:29.520750"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:35:29.520750"}, "latest_revision": 1, "key": "/works/OL10246419W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4206067A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10246522W 1 2009-12-11T02:35:29.520750 {"title": "Learn and Teach Vedic Mathematics", "created": {"type": "/type/datetime", "value": "2009-12-11T02:35:29.520750"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:35:29.520750"}, "latest_revision": 1, "key": "/works/OL10246522W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4206142A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10246621W 4 2020-12-17T01:29:16.887772 {"title": "Mani and I ; Memoirs of a Banarasi Karachiite", "covers": [5255830], "key": "/works/OL10246621W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4206218A"}}], "type": {"key": "/type/work"}, "subjects": ["Immigrants", "Biography", "Emigration and immigration", "History"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T02:35:29.520750"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-17T01:29:16.887772"}}
+/type/work /works/OL10246903W 1 2009-12-11T02:35:29.520750 {"title": "Mental Relaxation ; Music Theraphy, Extraversion and Neuroticism", "created": {"type": "/type/datetime", "value": "2009-12-11T02:35:29.520750"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:35:29.520750"}, "latest_revision": 1, "key": "/works/OL10246903W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4206484A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10246992W 1 2009-12-11T02:35:29.520750 {"title": "Economic History of the Punjab", "created": {"type": "/type/datetime", "value": "2009-12-11T02:35:29.520750"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:35:29.520750"}, "latest_revision": 1, "key": "/works/OL10246992W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4206579A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10247016W 1 2009-12-11T02:35:29.520750 {"title": "An Introduction to Administrative Law", "created": {"type": "/type/datetime", "value": "2009-12-11T02:35:29.520750"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:35:29.520750"}, "latest_revision": 1, "key": "/works/OL10247016W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4206602A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1024720W 1 2009-12-09T19:35:29.144627 {"title": "Covering the Intifada", "created": {"type": "/type/datetime", "value": "2009-12-09T19:35:29.144627"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:35:29.144627"}, "latest_revision": 1, "key": "/works/OL1024720W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL98051A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10247370W 1 2009-12-11T02:35:39.321607 {"title": "Indian Novel in English", "created": {"type": "/type/datetime", "value": "2009-12-11T02:35:39.321607"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:35:39.321607"}, "latest_revision": 1, "key": "/works/OL10247370W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4206918A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10247439W 1 2009-12-11T02:35:39.321607 {"title": "Can God Improve My Balance Sheet? Invoking the Inner Potential", "created": {"type": "/type/datetime", "value": "2009-12-11T02:35:39.321607"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:35:39.321607"}, "latest_revision": 1, "key": "/works/OL10247439W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4206996A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10247679W 1 2009-12-11T02:35:39.321607 {"title": "Food Microbiology", "created": {"type": "/type/datetime", "value": "2009-12-11T02:35:39.321607"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:35:39.321607"}, "latest_revision": 1, "key": "/works/OL10247679W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4207230A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10247843W 1 2009-12-11T02:35:39.321607 {"title": "Sai Namavali", "created": {"type": "/type/datetime", "value": "2009-12-11T02:35:39.321607"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:35:39.321607"}, "latest_revision": 1, "key": "/works/OL10247843W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4207375A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10247862W 2 2010-07-22T13:52:55.215903 {"last_modified": {"type": "/type/datetime", "value": "2010-07-22T13:52:55.215903"}, "title": "The dancing years", "created": {"type": "/type/datetime", "value": "2009-12-11T02:35:39.321607"}, "subjects": ["Morley College Folk Dance Club", "Morley College"], "latest_revision": 2, "key": "/works/OL10247862W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4207395A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10248085W 1 2009-12-11T02:35:39.321607 {"title": "Dhundh", "created": {"type": "/type/datetime", "value": "2009-12-11T02:35:39.321607"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:35:39.321607"}, "latest_revision": 1, "key": "/works/OL10248085W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4207603A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10248110W 1 2009-12-11T02:35:39.321607 {"title": "To be Human", "created": {"type": "/type/datetime", "value": "2009-12-11T02:35:39.321607"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:35:39.321607"}, "latest_revision": 1, "key": "/works/OL10248110W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4207626A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10248430W 1 2009-12-11T02:35:49.876593 {"title": "Fen Shui for Your Bedrooms", "created": {"type": "/type/datetime", "value": "2009-12-11T02:35:49.876593"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:35:49.876593"}, "latest_revision": 1, "key": "/works/OL10248430W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4207928A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1024903W 1 2009-12-09T19:35:29.144627 {"title": "The Lichauco paper: imperialism in the Philippines", "created": {"type": "/type/datetime", "value": "2009-12-09T19:35:29.144627"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:35:29.144627"}, "latest_revision": 1, "key": "/works/OL1024903W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL98117A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10249573W 1 2009-12-11T02:35:59.407379 {"title": "Revolutionary twenties", "created": {"type": "/type/datetime", "value": "2009-12-11T02:35:59.407379"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:35:59.407379"}, "latest_revision": 1, "key": "/works/OL10249573W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4209035A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10249776W 2 2020-12-08T06:42:24.368992 {"title": "Blizna", "key": "/works/OL10249776W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4209239A"}}], "type": {"key": "/type/work"}, "subjects": ["History", "Trials (Political crimes and offenses)", "Catholic Church. Archdiocese of Krak\u00f3w (Poland). Kuria Metropolitalna w Krakowie", "Catholic Church"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T02:35:59.407379"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-08T06:42:24.368992"}}
+/type/work /works/OL10250086W 2 2020-12-10T16:38:49.656116 {"title": "Poziom Zycia Spoeczenstwa Rosyjskiego W Latach 1992-2000", "key": "/works/OL10250086W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4209481A"}}], "type": {"key": "/type/work"}, "subjects": ["Economic conditions", "Social conditions"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T02:35:59.407379"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-10T16:38:49.656116"}}
+/type/work /works/OL10250366W 1 2009-12-11T02:36:07.902946 {"title": "WARRANT OF ARREST", "created": {"type": "/type/datetime", "value": "2009-12-11T02:36:07.902946"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:36:07.902946"}, "latest_revision": 1, "key": "/works/OL10250366W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4209656A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10251125W 3 2010-04-28T07:08:20.389598 {"title": "Cleopatra", "created": {"type": "/type/datetime", "value": "2009-12-11T02:36:07.902946"}, "covers": [3324669], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:08:20.389598"}, "latest_revision": 3, "key": "/works/OL10251125W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4210296A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10251435W 1 2009-12-11T02:36:17.637966 {"title": "La Agricultura Biologica", "created": {"type": "/type/datetime", "value": "2009-12-11T02:36:17.637966"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:36:17.637966"}, "latest_revision": 1, "key": "/works/OL10251435W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4210631A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10251940W 2 2010-07-22T13:52:55.215903 {"last_modified": {"type": "/type/datetime", "value": "2010-07-22T13:52:55.215903"}, "title": "Bibliograf\u00eda cajaliana", "created": {"type": "/type/datetime", "value": "2009-12-11T02:36:17.637966"}, "subject_places": ["Spain"], "subjects": ["Medicine", "Physicians", "Bibliography", "Biography", "Spanish Authors"], "subject_people": ["Santiago Ram\u00f3n y Cajal (1852-1934)"], "key": "/works/OL10251940W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4211103A"}}], "latest_revision": 2, "subject_times": ["20th century"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10252068W 2 2022-12-29T08:40:03.662929 {"title": "El ruisenor y la fuente/ The Nightingale and Fountain", "key": "/works/OL10252068W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4211266A"}}], "type": {"key": "/type/work"}, "subjects": ["Spanish poetry"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T02:36:17.637966"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-29T08:40:03.662929"}}
+/type/work /works/OL10252662W 3 2010-04-28T07:09:49.701426 {"title": "Logica y Gnoseologia Para Juristas", "created": {"type": "/type/datetime", "value": "2009-12-11T02:36:26.076033"}, "covers": [5258906], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:09:49.701426"}, "latest_revision": 3, "key": "/works/OL10252662W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4211794A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10252970W 3 2010-04-28T07:09:49.701426 {"title": "Barney Super Stickers N 2 - Viva La Primavera", "created": {"type": "/type/datetime", "value": "2009-12-11T02:36:26.076033"}, "covers": [3361871], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:09:49.701426"}, "latest_revision": 3, "key": "/works/OL10252970W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4212105A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10253086W 4 2020-12-16T12:05:50.209772 {"title": "Un canto a la Patria", "covers": [3359352], "key": "/works/OL10253086W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4212190A"}}], "type": {"key": "/type/work"}, "subjects": ["Biography", "Officers", "Assassination", "Argentina. Ej\u00e9rcito", "Argentina"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T02:36:26.076033"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-16T12:05:50.209772"}}
+/type/work /works/OL1025312W 9 2020-02-14T00:36:02.500322 {"subtitle": "making the most of films and filters", "covers": [6645269], "last_modified": {"type": "/type/datetime", "value": "2020-02-14T00:36:02.500322"}, "latest_revision": 9, "key": "/works/OL1025312W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2622234A"}}], "created": {"type": "/type/datetime", "value": "2009-12-09T20:05:57.582667"}, "title": "Film", "subjects": ["Films", "Photography"], "type": {"key": "/type/work"}, "revision": 9}
+/type/work /works/OL1025332W 8 2020-08-14T16:27:44.269059 {"subtitle": "the land and the people", "last_modified": {"type": "/type/datetime", "value": "2020-08-14T16:27:44.269059"}, "title": "Sudan", "created": {"type": "/type/datetime", "value": "2009-12-09T20:05:57.582667"}, "covers": [157593], "subject_places": ["Sudan"], "subjects": ["Pictorial works", "Human Geography", "Photojournalism", "Subjects & Themes - Travel - World/Africa", "Africa - General", "Ethnic Studies - General", "Subjects & Themes - Travel - General", "History", "Photography", "Sudan", "History: World", "Africa, pictorial works"], "latest_revision": 8, "key": "/works/OL1025332W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2622234A"}}, {"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL3242454A"}}, {"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL3242455A"}}], "type": {"key": "/type/work"}, "revision": 8}
+/type/work /works/OL10253422W 3 2010-04-28T07:09:49.701426 {"title": "La Investigacion En El Aula", "created": {"type": "/type/datetime", "value": "2009-12-11T02:36:34.854678"}, "covers": [3362273], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:09:49.701426"}, "latest_revision": 3, "key": "/works/OL10253422W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4212470A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1025395W 4 2020-12-03T08:52:14.438182 {"key": "/works/OL1025395W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL97938A"}}], "title": "Kanghan to\u0304\u031cng lom", "subject_places": ["Thailand"], "subjects": ["Biography", "Women"], "subject_people": ["Than\u014d\u031cm Kittikha\u010dh\u014d\u031cn (1911-)", "Suwich\u0101 (1943-)"], "type": {"key": "/type/work"}, "description": {"type": "/type/text", "value": "Autobiography of a daughter of former Thai prime minister, Thano\u0304\u031cm Kittikhac\u030cho\u0304\u031cn, b. 1911; includes some of her memoirs associated to her father."}, "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-09T20:05:57.582667"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-03T08:52:14.438182"}}
+/type/work /works/OL10254043W 1 2009-12-11T02:36:34.854678 {"title": "El caballo criollo y su pelaje", "created": {"type": "/type/datetime", "value": "2009-12-11T02:36:34.854678"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:36:34.854678"}, "latest_revision": 1, "key": "/works/OL10254043W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4212989A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10254501W 3 2010-04-28T07:09:49.701426 {"title": "Tu You Toi", "created": {"type": "/type/datetime", "value": "2009-12-11T02:36:44.766976"}, "covers": [3360709], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:09:49.701426"}, "latest_revision": 3, "key": "/works/OL10254501W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4213454A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10254811W 3 2010-04-28T07:09:49.701426 {"title": "Anecdotas Mas Interesantes de Todos Los Tiempos", "created": {"type": "/type/datetime", "value": "2009-12-11T02:36:44.766976"}, "covers": [3360928], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:09:49.701426"}, "latest_revision": 3, "key": "/works/OL10254811W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4213794A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10255123W 1 2009-12-11T02:36:44.766976 {"title": "Te presto mi stradivarius", "created": {"type": "/type/datetime", "value": "2009-12-11T02:36:44.766976"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:36:44.766976"}, "latest_revision": 1, "key": "/works/OL10255123W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4214096A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10255154W 3 2010-04-28T07:09:49.701426 {"title": "Ahora Me Toca a Mi/now It's My Turn (Libros Para Mujeres)", "created": {"type": "/type/datetime", "value": "2009-12-11T02:36:44.766976"}, "covers": [5260332], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:09:49.701426"}, "latest_revision": 3, "key": "/works/OL10255154W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4214130A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10255278W 3 2010-04-28T07:09:49.701426 {"title": "Top Secret Twelve", "created": {"type": "/type/datetime", "value": "2009-12-11T02:36:52.854924"}, "covers": [3361413], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:09:49.701426"}, "latest_revision": 3, "key": "/works/OL10255278W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4214251A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1025552W 4 2020-12-03T08:53:04.428538 {"title": "Rat\u0323t\u0323hpraha\u0304r damla\u0302k lok La\u0301n Na\u0301l", "subject_places": ["Cambodia"], "subjects": ["Politics and government", "History"], "subject_people": ["Lon Nol"], "key": "/works/OL1025552W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL97980A"}}], "subject_times": ["1953-1975"], "type": {"key": "/type/work"}, "description": {"type": "/type/text", "value": "On political conditions during Lon Nol tenure as president of Cambodia, 1970-1975 and uprising agianst him."}, "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-09T20:05:57.582667"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-03T08:53:04.428538"}}
+/type/work /works/OL10255715W 3 2010-04-28T07:09:49.701426 {"title": "Vender/ Selling", "created": {"type": "/type/datetime", "value": "2009-12-11T02:36:52.854924"}, "covers": [3362236], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:09:49.701426"}, "latest_revision": 3, "key": "/works/OL10255715W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4214649A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10255953W 1 2009-12-11T02:36:52.854924 {"title": "Ecstatica (PC Juegos)", "created": {"type": "/type/datetime", "value": "2009-12-11T02:36:52.854924"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:36:52.854924"}, "latest_revision": 1, "key": "/works/OL10255953W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4214913A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10256072W 3 2010-04-28T07:09:49.701426 {"title": "Obsesiones Corporales", "created": {"type": "/type/datetime", "value": "2009-12-11T02:36:52.854924"}, "covers": [3362161], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:09:49.701426"}, "latest_revision": 3, "key": "/works/OL10256072W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4215045A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10256448W 1 2009-12-11T02:37:02.053976 {"title": "Guia de Carreras Cortas 2003", "created": {"type": "/type/datetime", "value": "2009-12-11T02:37:02.053976"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:37:02.053976"}, "latest_revision": 1, "key": "/works/OL10256448W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4215385A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10256704W 1 2009-12-11T02:37:02.053976 {"title": "Mala Praxis En Cirugia Plastica", "created": {"type": "/type/datetime", "value": "2009-12-11T02:37:02.053976"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:37:02.053976"}, "latest_revision": 1, "key": "/works/OL10256704W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4215666A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10256802W 1 2009-12-11T02:37:02.053976 {"title": "Control de Constitucionalidad de La Ley de Riesgo", "created": {"type": "/type/datetime", "value": "2009-12-11T02:37:02.053976"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:37:02.053976"}, "latest_revision": 1, "key": "/works/OL10256802W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4215750A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10256966W 1 2009-12-11T02:37:02.053976 {"title": "Historia Aprendizaje Plural O Gritos de Silencio?", "created": {"type": "/type/datetime", "value": "2009-12-11T02:37:02.053976"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:37:02.053976"}, "latest_revision": 1, "key": "/works/OL10256966W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4215963A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10257051W 1 2009-12-11T02:37:02.053976 {"title": "Educacion Vial Para El Conductor", "created": {"type": "/type/datetime", "value": "2009-12-11T02:37:02.053976"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:37:02.053976"}, "latest_revision": 1, "key": "/works/OL10257051W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4216049A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10257594W 3 2023-01-07T04:59:36.495964 {"title": "Qamus al-addad", "key": "/works/OL10257594W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4216575A"}}], "type": {"key": "/type/work"}, "subjects": ["Arabic language", "Dictionaries", "Synonyms and antonyms", "Arabic"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T02:37:11.456847"}, "last_modified": {"type": "/type/datetime", "value": "2023-01-07T04:59:36.495964"}}
+/type/work /works/OL10257648W 2 2020-12-07T00:04:08.475516 {"title": "Jamiyat al-shabab wa-tafil al-mujtama al-madani", "key": "/works/OL10257648W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4216612A"}}], "type": {"key": "/type/work"}, "subjects": ["Youth", "Societies and clubs", "Law and legislation", "Civil society"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T02:37:11.456847"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-07T00:04:08.475516"}}
+/type/work /works/OL10257859W 1 2009-12-11T02:37:11.456847 {"title": "Buradat al-hadid (Ibdaat Arabiyah)", "created": {"type": "/type/datetime", "value": "2009-12-11T02:37:11.456847"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:37:11.456847"}, "latest_revision": 1, "key": "/works/OL10257859W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4216772A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10257932W 2 2020-12-07T00:11:21.163277 {"title": "al-Fuyudat al-rabbaniyah min anfas al-sadah al-Alawiyah fi al-ayat al-Quraniyah wa-al-ahadith al-Nabawiyah", "key": "/works/OL10257932W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4216836A"}}], "type": {"key": "/type/work"}, "subjects": ["Criticism, interpretation", "Hadith", "Qur\u02bcan"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T02:37:11.456847"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-07T00:11:21.163277"}}
+/type/work /works/OL10258160W 2 2020-12-03T08:22:34.171053 {"title": "Qaidat al-umur bi-maqasidiha", "key": "/works/OL10258160W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4217020A"}}], "type": {"key": "/type/work"}, "subjects": ["Islamic law", "Unterpretation and construction"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T02:37:11.456847"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-03T08:22:34.171053"}}
+/type/work /works/OL10258639W 1 2009-12-11T02:37:21.039642 {"title": "Diwan Ibn Hutayl", "created": {"type": "/type/datetime", "value": "2009-12-11T02:37:21.039642"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:37:21.039642"}, "latest_revision": 1, "key": "/works/OL10258639W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4217400A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10259320W 2 2020-12-07T00:09:28.418073 {"title": "al-Adab fi shamal gharb al-Jazirah al-Arabiyah", "key": "/works/OL10259320W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4217967A"}}], "type": {"key": "/type/work"}, "subjects": ["Arabic literature", "History and criticism"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T02:37:31.334512"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-07T00:09:28.418073"}}
+/type/work /works/OL10259332W 1 2009-12-11T02:37:31.334512 {"title": "Hirasat al-fadilah", "created": {"type": "/type/datetime", "value": "2009-12-11T02:37:31.334512"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:37:31.334512"}, "latest_revision": 1, "key": "/works/OL10259332W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4217979A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10259644W 4 2020-12-04T14:24:15.776004 {"title": "L'Affaire Bouiali", "covers": [5261467], "key": "/works/OL10259644W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4218233A"}}], "type": {"key": "/type/work"}, "subjects": ["Political prisoners", "Biography", "Politics and government"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T02:37:31.334512"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-04T14:24:15.776004"}}
+/type/work /works/OL10260041W 1 2009-12-11T02:37:31.334512 {"title": "Kalulu the Forest Queen (Our Heritage)", "created": {"type": "/type/datetime", "value": "2009-12-11T02:37:31.334512"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:37:31.334512"}, "latest_revision": 1, "key": "/works/OL10260041W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4218619A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10260052W 4 2020-12-14T12:39:50.435602 {"title": "Uganda's Revolution 1979-1986", "covers": [3363305], "key": "/works/OL10260052W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4218629A"}}], "type": {"key": "/type/work"}, "subjects": ["Politics and government", "History", "National Resistance Army (Uganda)"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T02:37:31.334512"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-14T12:39:50.435602"}}
+/type/work /works/OL10260129W 1 2009-12-11T02:37:31.334512 {"title": "Bu dong fen shou de nu hai", "created": {"type": "/type/datetime", "value": "2009-12-11T02:37:31.334512"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:37:31.334512"}, "latest_revision": 1, "key": "/works/OL10260129W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4218690A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10260446W 4 2020-12-07T09:33:37.001366 {"title": "Escuchando a Las Mujeres De San Martin y Ucayali", "covers": [5261680], "key": "/works/OL10260446W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4219144A"}}], "type": {"key": "/type/work"}, "subjects": ["Reproductive health", "Sex role", "Shipibo-Conibo Indians", "Health and hygiene"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T02:37:41.235651"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-07T09:33:37.001366"}}
+/type/work /works/OL10261257W 1 2009-12-11T02:37:50.125381 {"title": "Shahid min Harb al-Basus", "created": {"type": "/type/datetime", "value": "2009-12-11T02:37:50.125381"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:37:50.125381"}, "latest_revision": 1, "key": "/works/OL10261257W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4219802A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10261312W 2 2020-12-05T02:25:24.725329 {"title": "Mihnat al-awn al-qadai bi-al-Maghrib: Maa muqaranat bi-al-nizamayn al-Faransi wa-al-Tunisi", "key": "/works/OL10261312W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4219841A"}}], "type": {"key": "/type/work"}, "subjects": ["Bailiffs", "Legal status, laws", "Courts", "Officials and employees"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T02:37:50.125381"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-05T02:25:24.725329"}}
+/type/work /works/OL10261494W 2 2020-11-27T12:09:15.109339 {"last_modified": {"type": "/type/datetime", "value": "2020-11-27T12:09:15.109339"}, "title": "Tahawwul al-tasarrufat al-qanuniyah", "created": {"type": "/type/datetime", "value": "2009-12-11T02:37:50.125381"}, "subjects": ["Juristic acts", "Nullity"], "latest_revision": 2, "key": "/works/OL10261494W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4219985A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10261554W 1 2009-12-11T02:37:50.125381 {"title": "Ijraat al-tahqiq fi al-dawa fi Qanun al-Mastarah al-Madaniyah al-Maghribi", "created": {"type": "/type/datetime", "value": "2009-12-11T02:37:50.125381"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:37:50.125381"}, "latest_revision": 1, "key": "/works/OL10261554W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4220039A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10261569W 2 2020-12-05T02:26:41.841903 {"title": "Ilm al-nafs al-tarbawi", "key": "/works/OL10261569W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4220050A"}}], "type": {"key": "/type/work"}, "subjects": ["Educational psychology", "Child psychology"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T02:37:50.125381"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-05T02:26:41.841903"}}
+/type/work /works/OL10261696W 1 2009-12-11T02:37:50.125381 {"title": "Lilput English-Latvian Dictionary", "created": {"type": "/type/datetime", "value": "2009-12-11T02:37:50.125381"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:37:50.125381"}, "latest_revision": 1, "key": "/works/OL10261696W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4220181A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10261748W 2 2020-11-26T15:17:24.957587 {"last_modified": {"type": "/type/datetime", "value": "2020-11-26T15:17:24.957587"}, "title": "Vandens ukio ir zemetvarkos fakultetas", "created": {"type": "/type/datetime", "value": "2009-12-11T02:37:50.125381"}, "subjects": ["Lietuvos \u017dem\u0117s \u016bkio akademija. Vandens \u016bkio ir \u017eem\u0117tvarkos fakultetas", "Lietuvos \u017dem\u0117s \u016bkio akademija", "History"], "latest_revision": 2, "key": "/works/OL10261748W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4220234A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10262638W 4 2020-12-14T18:03:02.428588 {"title": "Documentacion Medieval de Estella (Siglos XII-XVI)", "covers": [5262244], "key": "/works/OL10262638W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4221016A"}}], "type": {"key": "/type/work"}, "subjects": ["Sources", "History"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T02:37:58.937316"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-14T18:03:02.428588"}}
+/type/work /works/OL10262935W 1 2009-12-11T02:37:58.937316 {"title": "Las Mejores Recetas Con Patatas", "created": {"type": "/type/datetime", "value": "2009-12-11T02:37:58.937316"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:37:58.937316"}, "latest_revision": 1, "key": "/works/OL10262935W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4221280A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10263154W 1 2009-12-11T02:37:58.937316 {"title": "El Gran Libro de Los Cuentos de Siempre 1", "created": {"type": "/type/datetime", "value": "2009-12-11T02:37:58.937316"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:37:58.937316"}, "latest_revision": 1, "key": "/works/OL10263154W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4221480A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10263453W 1 2009-12-11T02:38:07.548428 {"title": "Discursos Sagrados Sobre La Muerte del Peregrino", "created": {"type": "/type/datetime", "value": "2009-12-11T02:38:07.548428"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:38:07.548428"}, "latest_revision": 1, "key": "/works/OL10263453W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4221695A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1026359W 5 2019-07-15T03:20:00.459020 {"subtitle": "meeting the challenges of development and poverty reduction", "last_modified": {"type": "/type/datetime", "value": "2019-07-15T03:20:00.459020"}, "title": "The continuing revolution", "created": {"type": "/type/datetime", "value": "2009-12-09T20:06:23.813030"}, "subject_places": ["Philippines"], "subjects": ["Politics and government", "Social conditions", "Economic conditions", "Congresses", "Foreign relations"], "latest_revision": 5, "key": "/works/OL1026359W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL98231A"}}], "subject_times": ["1986-"], "type": {"key": "/type/work"}, "revision": 5}
+/type/work /works/OL1026407W 3 2010-07-22T13:54:02.226914 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:06:23.813030"}, "subject_places": ["Philippines", "Bicol River Valley", "Bicol River Valley (Philippines)"], "subjects": ["Women", "Social conditions", "Women in development", "Economic conditions", "Employment"], "latest_revision": 3, "key": "/works/OL1026407W", "title": "Involvement by choice", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL98247A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-07-22T13:54:02.226914"}, "revision": 3}
+/type/work /works/OL10264210W 1 2009-12-11T02:38:15.787416 {"title": "Nuestros Pies", "created": {"type": "/type/datetime", "value": "2009-12-11T02:38:15.787416"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:38:15.787416"}, "latest_revision": 1, "key": "/works/OL10264210W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4222453A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10264213W 1 2009-12-11T02:38:15.787416 {"title": "40.000 Km a Bordo del Aeroplano Fantasma", "created": {"type": "/type/datetime", "value": "2009-12-11T02:38:15.787416"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:38:15.787416"}, "latest_revision": 1, "key": "/works/OL10264213W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4222456A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10264463W 3 2010-04-28T07:09:49.701426 {"title": "Problemas Para No Dormir", "created": {"type": "/type/datetime", "value": "2009-12-11T02:38:15.787416"}, "covers": [5263279], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:09:49.701426"}, "latest_revision": 3, "key": "/works/OL10264463W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4222675A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10264600W 1 2009-12-11T02:38:15.787416 {"title": "La Aspirina", "created": {"type": "/type/datetime", "value": "2009-12-11T02:38:15.787416"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:38:15.787416"}, "latest_revision": 1, "key": "/works/OL10264600W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4222822A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10265064W 1 2009-12-11T02:38:15.787416 {"title": "Manual Practico de Astronomia Con CD ROM", "created": {"type": "/type/datetime", "value": "2009-12-11T02:38:15.787416"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:38:15.787416"}, "latest_revision": 1, "key": "/works/OL10265064W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4223249A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10265273W 1 2009-12-11T02:38:24.291689 {"title": "Sinclair Ql - Guia del Usuario", "created": {"type": "/type/datetime", "value": "2009-12-11T02:38:24.291689"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:38:24.291689"}, "latest_revision": 1, "key": "/works/OL10265273W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4223376A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10265499W 1 2009-12-11T02:38:24.291689 {"title": "3D Studio", "created": {"type": "/type/datetime", "value": "2009-12-11T02:38:24.291689"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:38:24.291689"}, "latest_revision": 1, "key": "/works/OL10265499W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4223525A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1026559W 4 2020-12-17T14:15:09.715577 {"subject_places": ["Gia \u0110\u1ecbnh (Vietnam : Province)"], "subjects": ["Description and travel", "Historical geography"], "key": "/works/OL1026559W", "title": "Gia \u0110i\u0323nh tha\u0300nh tho\u0302ng chi\u0301", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL98286A"}}], "type": {"key": "/type/work"}, "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-09T20:06:23.813030"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-17T14:15:09.715577"}}
+/type/work /works/OL10265766W 2 2012-06-18T06:46:39.512525 {"title": "Sintaxis Del Espa\u00f1ol - Nivel De Perfeccionamiento", "created": {"type": "/type/datetime", "value": "2009-12-11T02:38:24.291689"}, "last_modified": {"type": "/type/datetime", "value": "2012-06-18T06:46:39.512525"}, "latest_revision": 2, "key": "/works/OL10265766W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4223823A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10265940W 1 2009-12-11T02:38:24.291689 {"title": "Beethoven Y Fidelio (Musicando Con)", "created": {"type": "/type/datetime", "value": "2009-12-11T02:38:24.291689"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:38:24.291689"}, "latest_revision": 1, "key": "/works/OL10265940W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4223973A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1026605W 3 2010-07-22T13:54:02.226914 {"title": "Nha\u0300 soa\u0323n ki\u0323ch ca\u0309i l\u01b0\u01a1ng Tra\u0300\u0302n H\u01b0\u0303u Trang", "created": {"type": "/type/datetime", "value": "2009-12-09T20:06:23.813030"}, "last_modified": {"type": "/type/datetime", "value": "2010-07-22T13:54:02.226914"}, "latest_revision": 3, "key": "/works/OL1026605W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL98299A"}}], "subject_people": ["H\u1eefu Trang Tr\u00e0\u0302n (1906-1966)"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10266646W 1 2009-12-11T02:38:32.428923 {"title": "Guia de La Alimentacion Natural del Nino", "created": {"type": "/type/datetime", "value": "2009-12-11T02:38:32.428923"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:38:32.428923"}, "latest_revision": 1, "key": "/works/OL10266646W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4224609A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10266720W 1 2009-12-11T02:38:32.428923 {"title": "El Caniche", "created": {"type": "/type/datetime", "value": "2009-12-11T02:38:32.428923"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:38:32.428923"}, "latest_revision": 1, "key": "/works/OL10266720W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4224656A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1026701W 1 2009-12-09T19:43:57.277188 {"title": "Th\u01a1\u0300i gian cu\u0309a ng\u01b0\u01a1\u0300i", "created": {"type": "/type/datetime", "value": "2009-12-09T19:43:57.277188"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:43:57.277188"}, "latest_revision": 1, "key": "/works/OL1026701W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL98311A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10267083W 3 2010-04-28T07:09:49.701426 {"title": "El Gran Libro de las Plantas Carnivoras", "created": {"type": "/type/datetime", "value": "2009-12-11T02:38:32.428923"}, "covers": [3326484], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:09:49.701426"}, "latest_revision": 3, "key": "/works/OL10267083W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4224980A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1026717W 3 2010-07-22T13:54:02.226914 {"last_modified": {"type": "/type/datetime", "value": "2010-07-22T13:54:02.226914"}, "latest_revision": 3, "key": "/works/OL1026717W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL98317A"}}], "created": {"type": "/type/datetime", "value": "2009-12-09T20:06:23.813030"}, "title": "Ng\u01b0\u01a1\u0300i Tha\u0306ng Long", "subject_places": ["Vietnam"], "subjects": ["History", "Fiction"], "subject_times": ["939-1428"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10267312W 1 2009-12-11T02:38:40.881443 {"title": "A new time-of-flight data processing system", "created": {"type": "/type/datetime", "value": "2009-12-11T02:38:40.881443"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:38:40.881443"}, "latest_revision": 1, "key": "/works/OL10267312W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4225179A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1026738W 3 2010-07-22T13:54:02.226914 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:06:23.813030"}, "subject_places": ["\u0110i Lu\u00e2n (Vietnam)"], "subjects": ["History"], "latest_revision": 3, "key": "/works/OL1026738W", "title": "X\u01b0\u0301 Ro\u0300n - Di Lua\u0302n, th\u01a1\u0300i gian va\u0300 li\u0323ch s\u01b0\u0309", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL98319A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-07-22T13:54:02.226914"}, "revision": 3}
+/type/work /works/OL1026748W 2 2010-01-16T02:32:33.375898 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:06:23.813030"}, "title": "Go\u0300 Co\u0302ng, ca\u0309nh cu\u0303, ng\u01b0\u01a1\u0300i x\u01b0a", "subject_places": ["G\u00f2 C\u00f4ng (Vietnam)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-16T02:32:33.375898"}, "latest_revision": 2, "key": "/works/OL1026748W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL98325A"}}], "type": {"key": "/type/work"}, "subjects": ["History"], "revision": 2}
+/type/work /works/OL10267500W 1 2009-12-11T02:38:40.881443 {"title": "El Schnauzer y El Pinscher", "created": {"type": "/type/datetime", "value": "2009-12-11T02:38:40.881443"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:38:40.881443"}, "latest_revision": 1, "key": "/works/OL10267500W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4225280A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10267734W 1 2009-12-11T02:38:40.881443 {"title": "Contabilidad de Costes - Toma Decisiones", "created": {"type": "/type/datetime", "value": "2009-12-11T02:38:40.881443"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:38:40.881443"}, "latest_revision": 1, "key": "/works/OL10267734W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4225479A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10268144W 3 2010-04-28T07:09:49.701426 {"title": "Debate sobre la educacion / Debate about Education", "created": {"type": "/type/datetime", "value": "2009-12-11T02:38:40.881443"}, "covers": [5268222], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:09:49.701426"}, "latest_revision": 3, "key": "/works/OL10268144W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4225911A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10268312W 1 2009-12-11T02:38:49.225586 {"title": "Tina Turner", "created": {"type": "/type/datetime", "value": "2009-12-11T02:38:49.225586"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:38:49.225586"}, "latest_revision": 1, "key": "/works/OL10268312W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4226149A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10268886W 1 2009-12-11T02:38:49.225586 {"title": "Fundamentos De Psicopatologia General (Psicologia)", "created": {"type": "/type/datetime", "value": "2009-12-11T02:38:49.225586"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:38:49.225586"}, "latest_revision": 1, "key": "/works/OL10268886W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4226675A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10269070W 1 2009-12-11T02:38:49.225586 {"title": "Direccion Por Implicacion Dpi / Contradiction DPI Direction", "created": {"type": "/type/datetime", "value": "2009-12-11T02:38:49.225586"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:38:49.225586"}, "latest_revision": 1, "key": "/works/OL10269070W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4227101A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10269089W 3 2010-04-28T07:09:49.701426 {"title": "Escritos Sobre Estetica", "created": {"type": "/type/datetime", "value": "2009-12-11T02:38:49.225586"}, "covers": [5265509], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:09:49.701426"}, "latest_revision": 3, "key": "/works/OL10269089W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4227120A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10269180W 3 2010-04-28T07:09:49.701426 {"title": "U2 (Rock-Pop)", "created": {"type": "/type/datetime", "value": "2009-12-11T02:38:49.225586"}, "covers": [5265824], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:09:49.701426"}, "latest_revision": 3, "key": "/works/OL10269180W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4227214A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10270306W 1 2009-12-11T02:39:11.258290 {"title": "Astronomical Phenomena for the Year, 1992", "created": {"type": "/type/datetime", "value": "2009-12-11T02:39:11.258290"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:39:11.258290"}, "latest_revision": 1, "key": "/works/OL10270306W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4228255A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10270930W 1 2009-12-11T02:39:11.258290 {"title": "Assessment in Science Education", "created": {"type": "/type/datetime", "value": "2009-12-11T02:39:11.258290"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:39:11.258290"}, "latest_revision": 1, "key": "/works/OL10270930W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4228855A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10271209W 3 2010-07-22T13:54:45.444055 {"title": "Dryden's poetic Kingdoms", "created": {"type": "/type/datetime", "value": "2009-12-11T02:39:26.104810"}, "last_modified": {"type": "/type/datetime", "value": "2010-07-22T13:54:45.444055"}, "latest_revision": 3, "key": "/works/OL10271209W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4229125A"}}], "subject_people": ["J. Dryden"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10271350W 1 2009-12-11T02:39:26.104810 {"title": "Practical Aspects of Technology Transfer a Legal Compendium", "created": {"type": "/type/datetime", "value": "2009-12-11T02:39:26.104810"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:39:26.104810"}, "latest_revision": 1, "key": "/works/OL10271350W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4229261A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10271559W 1 2009-12-11T02:39:26.104810 {"title": "Rethinking Indian Law", "created": {"type": "/type/datetime", "value": "2009-12-11T02:39:26.104810"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:39:26.104810"}, "latest_revision": 1, "key": "/works/OL10271559W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4229457A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1027174W 3 2010-07-22T13:54:45.444055 {"last_modified": {"type": "/type/datetime", "value": "2010-07-22T13:54:45.444055"}, "title": "T\u01b0\u0300 ngo\u0302n ng\u01b0\u0303 chung \u0111e\u0301\u0302n ngo\u0302n ng\u01b0\u0303 nghe\u0323\u0302 thua\u0323\u0302t", "created": {"type": "/type/datetime", "value": "2009-12-09T20:06:23.813030"}, "subjects": ["Vietnamese language", "History"], "latest_revision": 3, "key": "/works/OL1027174W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL98424A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10271759W 1 2009-12-11T02:39:26.104810 {"title": "Social Studies Curriculum Guide", "created": {"type": "/type/datetime", "value": "2009-12-11T02:39:26.104810"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:39:26.104810"}, "latest_revision": 1, "key": "/works/OL10271759W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4229664A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10272011W 1 2009-12-11T02:39:26.104810 {"title": "Canadian Government Housing Expenditures", "created": {"type": "/type/datetime", "value": "2009-12-11T02:39:26.104810"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:39:26.104810"}, "latest_revision": 1, "key": "/works/OL10272011W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4229920A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10272291W 1 2009-12-11T02:39:36.538105 {"title": "Comprehension Charts I (R488a)", "created": {"type": "/type/datetime", "value": "2009-12-11T02:39:36.538105"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:39:36.538105"}, "latest_revision": 1, "key": "/works/OL10272291W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4230192A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10272364W 1 2009-12-11T02:39:36.538105 {"title": "The Bahais/Bahai", "created": {"type": "/type/datetime", "value": "2009-12-11T02:39:36.538105"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:39:36.538105"}, "latest_revision": 1, "key": "/works/OL10272364W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4230265A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10272419W 1 2009-12-11T02:39:36.538105 {"title": "Personnel Software Census 1991", "created": {"type": "/type/datetime", "value": "2009-12-11T02:39:36.538105"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:39:36.538105"}, "latest_revision": 1, "key": "/works/OL10272419W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4230314A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10272472W 1 2009-12-11T02:39:36.538105 {"title": "Self Hypnosis", "created": {"type": "/type/datetime", "value": "2009-12-11T02:39:36.538105"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:39:36.538105"}, "latest_revision": 1, "key": "/works/OL10272472W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4230358A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10272964W 1 2009-12-11T02:39:36.538105 {"title": "Qalat satati", "created": {"type": "/type/datetime", "value": "2009-12-11T02:39:36.538105"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:39:36.538105"}, "latest_revision": 1, "key": "/works/OL10272964W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4230874A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1027305W 1 2009-12-09T19:44:16.373737 {"title": "The Australian theatre", "created": {"type": "/type/datetime", "value": "2009-12-09T19:44:16.373737"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:44:16.373737"}, "latest_revision": 1, "key": "/works/OL1027305W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL98476A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10273233W 1 2009-12-11T02:39:45.244520 {"title": "Prepare for a Richer Retirement (Csst)", "created": {"type": "/type/datetime", "value": "2009-12-11T02:39:45.244520"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:39:45.244520"}, "latest_revision": 1, "key": "/works/OL10273233W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4231135A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10273319W 1 2009-12-11T02:39:45.244520 {"title": "Proceedings", "created": {"type": "/type/datetime", "value": "2009-12-11T02:39:45.244520"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:39:45.244520"}, "latest_revision": 1, "key": "/works/OL10273319W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4231226A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10273511W 1 2009-12-11T02:39:45.244520 {"title": "Dona Barbara cuarta edicion", "created": {"type": "/type/datetime", "value": "2009-12-11T02:39:45.244520"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:39:45.244520"}, "latest_revision": 1, "key": "/works/OL10273511W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4231399A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10273635W 1 2009-12-11T02:39:45.244520 {"title": "Un Perro de Compania", "created": {"type": "/type/datetime", "value": "2009-12-11T02:39:45.244520"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:39:45.244520"}, "latest_revision": 1, "key": "/works/OL10273635W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4231531A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1027411W 1 2009-12-09T19:44:16.373737 {"title": "The securities market in Singapore", "created": {"type": "/type/datetime", "value": "2009-12-09T19:44:16.373737"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:44:16.373737"}, "latest_revision": 1, "key": "/works/OL1027411W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL98498A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10274411W 1 2009-12-11T02:39:53.932979 {"title": "Historia De Detectives/ Detective Stories", "created": {"type": "/type/datetime", "value": "2009-12-11T02:39:53.932979"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:39:53.932979"}, "latest_revision": 1, "key": "/works/OL10274411W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4232169A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10274431W 3 2022-11-17T12:44:40.932395 {"title": "Pig trouble", "key": "/works/OL10274431W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4232184A"}}], "type": {"key": "/type/work"}, "subjects": ["Children's fiction", "Pigs, fiction", "Friendship, fiction"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T02:39:53.932979"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T12:44:40.932395"}}
+/type/work /works/OL10274761W 4 2011-01-11T10:14:18.165181 {"title": "Lenguaje C 2006 / Language C 2006", "created": {"type": "/type/datetime", "value": "2009-12-11T02:39:53.932979"}, "covers": [3327662], "last_modified": {"type": "/type/datetime", "value": "2011-01-11T10:14:18.165181"}, "latest_revision": 4, "key": "/works/OL10274761W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4232451A"}}], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL10274765W 3 2010-04-28T07:09:49.701426 {"title": "Flash 8 - La Biblia", "created": {"type": "/type/datetime", "value": "2009-12-11T02:39:53.932979"}, "covers": [3327712], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:09:49.701426"}, "latest_revision": 3, "key": "/works/OL10274765W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4232458A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1027479W 3 2010-04-28T07:09:49.701426 {"title": "The gunpowder trail & other stories", "created": {"type": "/type/datetime", "value": "2009-12-09T20:06:44.929483"}, "covers": [4250594], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:09:49.701426"}, "latest_revision": 3, "key": "/works/OL1027479W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL98516A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10274896W 1 2009-12-11T02:39:53.932979 {"title": "Crecimiento Fetal Normal y Patologico", "created": {"type": "/type/datetime", "value": "2009-12-11T02:39:53.932979"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:39:53.932979"}, "latest_revision": 1, "key": "/works/OL10274896W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4232583A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10274941W 1 2009-12-11T02:39:53.932979 {"title": "Tecnica Ortopedica", "created": {"type": "/type/datetime", "value": "2009-12-11T02:39:53.932979"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:39:53.932979"}, "latest_revision": 1, "key": "/works/OL10274941W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4232641A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10275119W 2 2021-10-03T22:55:09.929895 {"title": "Grecia, Del Siglo De Pericles Al Periodo Alejandrino (Historia De La Ciencia Y La Tecnica)", "key": "/works/OL10275119W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4232811A"}}], "type": {"key": "/type/work"}, "subjects": ["World history"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T02:39:53.932979"}, "last_modified": {"type": "/type/datetime", "value": "2021-10-03T22:55:09.929895"}}
+/type/work /works/OL10275376W 2 2021-07-06T15:29:25.040708 {"title": "La Busqueda Mistica (Los Canticos de Bronce, Volumen 2)", "key": "/works/OL10275376W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL448253A"}}], "type": {"key": "/type/work"}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T02:40:03.746181"}, "last_modified": {"type": "/type/datetime", "value": "2021-07-06T15:29:25.040708"}}
+/type/work /works/OL10275635W 2 2012-06-18T06:47:16.084838 {"title": "25000 Paginas de Internet En Espa\u00f1ol 99", "created": {"type": "/type/datetime", "value": "2009-12-11T02:40:03.746181"}, "last_modified": {"type": "/type/datetime", "value": "2012-06-18T06:47:16.084838"}, "latest_revision": 2, "key": "/works/OL10275635W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4233313A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10275950W 3 2010-04-28T07:09:49.701426 {"title": "Historia de la nacion Chichimeca/History of the Chichimec nation (Cronicas De America)", "created": {"type": "/type/datetime", "value": "2009-12-11T02:40:03.746181"}, "covers": [5267937], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:09:49.701426"}, "latest_revision": 3, "key": "/works/OL10275950W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4233649A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10276258W 3 2010-07-22T13:55:58.480163 {"last_modified": {"type": "/type/datetime", "value": "2010-07-22T13:55:58.480163"}, "title": "Quiropr\u00e1ctica", "created": {"type": "/type/datetime", "value": "2009-12-11T02:40:12.462005"}, "subjects": ["Chiropractic", "Quiropr\u00e1ctica", "Medicina alternativa", "Alternative medicine"], "latest_revision": 3, "key": "/works/OL10276258W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4234059A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10276799W 4 2016-08-17T11:34:08.047162 {"title": "El Manuscrito de Dios", "created": {"type": "/type/datetime", "value": "2009-12-11T02:40:12.462005"}, "covers": [3328963], "last_modified": {"type": "/type/datetime", "value": "2016-08-17T11:34:08.047162"}, "latest_revision": 4, "key": "/works/OL10276799W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4234556A"}}], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL10277014W 1 2009-12-11T02:40:12.462005 {"title": "Dita Y Dito Aprenden a Nadar/ Dita and Dito Learn How to Swim", "created": {"type": "/type/datetime", "value": "2009-12-11T02:40:12.462005"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:40:12.462005"}, "latest_revision": 1, "key": "/works/OL10277014W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4234754A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10277808W 1 2009-12-11T02:40:20.548448 {"title": "Nacimiento De UN Palafito/the Birth of a Prehistoric Lake", "created": {"type": "/type/datetime", "value": "2009-12-11T02:40:20.548448"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:40:20.548448"}, "latest_revision": 1, "key": "/works/OL10277808W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4235527A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10277836W 1 2009-12-11T02:40:20.548448 {"title": "Arte Y Tecnicas Manualidades", "created": {"type": "/type/datetime", "value": "2009-12-11T02:40:20.548448"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:40:20.548448"}, "latest_revision": 1, "key": "/works/OL10277836W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4235549A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10277874W 1 2009-12-11T02:40:20.548448 {"title": "Plantas de Compaia", "created": {"type": "/type/datetime", "value": "2009-12-11T02:40:20.548448"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:40:20.548448"}, "latest_revision": 1, "key": "/works/OL10277874W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4235589A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10277990W 1 2009-12-11T02:40:20.548448 {"title": "Grandes Metaforas de La Tradicion Sagrada", "created": {"type": "/type/datetime", "value": "2009-12-11T02:40:20.548448"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:40:20.548448"}, "latest_revision": 1, "key": "/works/OL10277990W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4235702A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10278017W 1 2009-12-11T02:40:20.548448 {"title": "El Canto del Inmediato Satori", "created": {"type": "/type/datetime", "value": "2009-12-11T02:40:20.548448"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:40:20.548448"}, "latest_revision": 1, "key": "/works/OL10278017W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4235728A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10278031W 1 2009-12-11T02:40:20.548448 {"title": "Denkoroku", "created": {"type": "/type/datetime", "value": "2009-12-11T02:40:20.548448"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:40:20.548448"}, "latest_revision": 1, "key": "/works/OL10278031W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4235739A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10278176W 1 2009-12-11T02:40:20.548448 {"title": "Quiero a Mi Conejo", "created": {"type": "/type/datetime", "value": "2009-12-11T02:40:20.548448"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:40:20.548448"}, "latest_revision": 1, "key": "/works/OL10278176W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4235850A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10278536W 2 2020-10-15T17:27:26.891875 {"title": "Tiempo En Ruinas", "created": {"type": "/type/datetime", "value": "2009-12-11T02:40:30.069049"}, "last_modified": {"type": "/type/datetime", "value": "2020-10-15T17:27:26.891875"}, "latest_revision": 2, "key": "/works/OL10278536W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4236176A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10278568W 3 2020-12-05T07:27:37.478377 {"title": "Movilidad Ocupacional de La Mujeres En Espa\u00f1a", "key": "/works/OL10278568W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4236207A"}}], "type": {"key": "/type/work"}, "subjects": ["Women", "Employment", "Occupational mobility"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T02:40:30.069049"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-05T07:27:37.478377"}}
+/type/work /works/OL1027867W 1 2009-12-09T19:44:16.373737 {"title": "N\u0303a\u0304n\u0332am", "created": {"type": "/type/datetime", "value": "2009-12-09T19:44:16.373737"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:44:16.373737"}, "latest_revision": 1, "key": "/works/OL1027867W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL98600A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10278766W 6 2022-12-27T11:16:52.562045 {"subjects": ["Individual Artist", "Art / Fine Arts", "Art / Individual Artist", "Electronic And Computer Art", "Exhibition Catalogs", "Art", "Art & Art Instruction", "Installations (art)", "Public art", "Art, exhibitions", "Exhibitions", "Installations (Art)", "Interactive art", "Mexican Art"], "key": "/works/OL10278766W", "title": "Rafael Lozano-Hemmer", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL3220939A"}}, {"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL3208733A"}}, {"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2974270A"}}, {"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL390733A"}}, {"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL3208745A"}}, {"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2787834A"}}, {"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4236427A"}}, {"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2952829A"}}], "type": {"key": "/type/work"}, "covers": [3329432], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2009-12-11T02:40:30.069049"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-27T11:16:52.562045"}}
+/type/work /works/OL10278887W 1 2009-12-11T02:40:30.069049 {"title": "El Caballero de La Brillante Armadura", "created": {"type": "/type/datetime", "value": "2009-12-11T02:40:30.069049"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:40:30.069049"}, "latest_revision": 1, "key": "/works/OL10278887W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4236538A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10278893W 5 2020-02-28T14:24:57.700167 {"last_modified": {"type": "/type/datetime", "value": "2020-02-28T14:24:57.700167"}, "title": "El Bebe Con Discapacidades", "created": {"type": "/type/datetime", "value": "2009-12-11T02:40:30.069049"}, "subjects": ["Family relationships", "Children with disabilities", "Care", "Children with disabilities -- Family relationships", "Children with disabilities -- Care"], "latest_revision": 5, "key": "/works/OL10278893W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4236550A"}}, {"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL3136088A"}}], "type": {"key": "/type/work"}, "revision": 5}
+/type/work /works/OL10279127W 1 2009-12-11T02:40:30.069049 {"title": "Organizacion Base Cero - Bol -", "created": {"type": "/type/datetime", "value": "2009-12-11T02:40:30.069049"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:40:30.069049"}, "latest_revision": 1, "key": "/works/OL10279127W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4236769A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10279269W 1 2009-12-11T02:40:39.519304 {"title": "Monarquias Helenisticas I, Las - Egipto de Lagida", "created": {"type": "/type/datetime", "value": "2009-12-11T02:40:39.519304"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:40:39.519304"}, "latest_revision": 1, "key": "/works/OL10279269W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4236907A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10279312W 1 2009-12-11T02:40:39.519304 {"title": "Hacer Visible Lo Cotidiano/ Making Visible the Everyday (Universitaria)", "created": {"type": "/type/datetime", "value": "2009-12-11T02:40:39.519304"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:40:39.519304"}, "latest_revision": 1, "key": "/works/OL10279312W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4236944A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1027932W 1 2009-12-09T19:44:16.373737 {"title": "Sampah", "created": {"type": "/type/datetime", "value": "2009-12-09T19:44:16.373737"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:44:16.373737"}, "latest_revision": 1, "key": "/works/OL1027932W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL98610A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10279566W 2 2020-12-08T00:29:33.641077 {"title": "Guia Para La Identificacion de Grabados", "key": "/works/OL10279566W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4237213A"}}], "type": {"key": "/type/work"}, "subjects": ["Prints", "Technique", "Expertising"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T02:40:39.519304"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-08T00:29:33.641077"}}
+/type/work /works/OL10279812W 7 2020-08-15T04:02:36.879268 {"last_modified": {"type": "/type/datetime", "value": "2020-08-15T04:02:36.879268"}, "latest_revision": 7, "key": "/works/OL10279812W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4237430A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T02:40:39.519304"}, "title": "Singing Was the Easy Part", "subject_places": ["United States"], "subjects": ["Singers", "Biography", "Singers, biography", "Singers, united states"], "subject_people": ["Vic Damone"], "type": {"key": "/type/work"}, "revision": 7}
+/type/work /works/OL10279874W 1 2009-12-11T02:40:39.519304 {"title": "Register of the American Psychological Association", "created": {"type": "/type/datetime", "value": "2009-12-11T02:40:39.519304"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:40:39.519304"}, "latest_revision": 1, "key": "/works/OL10279874W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4237500A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1027992W 3 2010-07-22T13:55:58.480163 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:06:44.929483"}, "subject_places": ["Malaysia"], "subjects": ["Popular works", "Labor laws and legislation"], "latest_revision": 3, "key": "/works/OL1027992W", "title": "Malaysian labour laws made simple", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL98629A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-07-22T13:55:58.480163"}, "revision": 3}
+/type/work /works/OL10280154W 1 2009-12-11T02:40:39.519304 {"title": "Ams 38th Annual Office Salaries Directory", "created": {"type": "/type/datetime", "value": "2009-12-11T02:40:39.519304"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:40:39.519304"}, "latest_revision": 1, "key": "/works/OL10280154W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4237792A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10280355W 2 2020-12-08T10:15:20.675784 {"title": "Krimi Dhe Droga", "key": "/works/OL10280355W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4237976A"}}], "type": {"key": "/type/work"}, "subjects": ["Drug abuse and crime", "Drug traffic", "Criminal statistics"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T02:40:49.809995"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-08T10:15:20.675784"}}
+/type/work /works/OL10280432W 1 2009-12-11T02:40:49.809995 {"title": "Pims", "created": {"type": "/type/datetime", "value": "2009-12-11T02:40:49.809995"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:40:49.809995"}, "latest_revision": 1, "key": "/works/OL10280432W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4238073A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10280688W 1 2009-12-11T02:40:49.809995 {"title": "Techniques for Meeting Nutrition Education Needs", "created": {"type": "/type/datetime", "value": "2009-12-11T02:40:49.809995"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:40:49.809995"}, "latest_revision": 1, "key": "/works/OL10280688W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4238326A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10280906W 1 2009-12-11T02:40:49.809995 {"title": "American Drama 1782-1812 (Dissertation No, 003444)", "created": {"type": "/type/datetime", "value": "2009-12-11T02:40:49.809995"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:40:49.809995"}, "latest_revision": 1, "key": "/works/OL10280906W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4238556A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10280943W 2 2020-12-19T20:26:44.742579 {"title": "Highland Lakes", "key": "/works/OL10280943W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4238600A"}}], "type": {"key": "/type/work"}, "subjects": ["Armenian Authors", "Biography"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T02:40:49.809995"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-19T20:26:44.742579"}}
+/type/work /works/OL1028121W 1 2009-12-09T19:44:16.373737 {"title": "Api di Lembah Kecubung", "created": {"type": "/type/datetime", "value": "2009-12-09T19:44:16.373737"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:44:16.373737"}, "latest_revision": 1, "key": "/works/OL1028121W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL98671A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10281262W 1 2009-12-11T02:40:59.223732 {"title": "De Quelques Formes Primitives De Classification", "created": {"type": "/type/datetime", "value": "2009-12-11T02:40:59.223732"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:40:59.223732"}, "latest_revision": 1, "key": "/works/OL10281262W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4238881A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10281272W 3 2010-07-22T13:55:58.480163 {"last_modified": {"type": "/type/datetime", "value": "2010-07-22T13:55:58.480163"}, "title": "Flow through openings in width constrictions", "created": {"type": "/type/datetime", "value": "2009-12-11T02:40:59.223732"}, "subjects": ["Hydraulics", "Highway engineering"], "latest_revision": 3, "key": "/works/OL10281272W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4238891A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10281421W 1 2009-12-11T02:40:59.223732 {"title": "Also, the Altar Piece", "created": {"type": "/type/datetime", "value": "2009-12-11T02:40:59.223732"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:40:59.223732"}, "latest_revision": 1, "key": "/works/OL10281421W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4239048A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10281937W 1 2009-12-11T02:40:59.223732 {"title": "Ufo Library", "created": {"type": "/type/datetime", "value": "2009-12-11T02:40:59.223732"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:40:59.223732"}, "latest_revision": 1, "key": "/works/OL10281937W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4239561A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10282003W 1 2009-12-11T02:40:59.223732 {"title": "Directory of Faculty Contacts and Bargaining Agents in Institutions of Higher Education, January, 1993", "created": {"type": "/type/datetime", "value": "2009-12-11T02:40:59.223732"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:40:59.223732"}, "latest_revision": 1, "key": "/works/OL10282003W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4239631A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10282212W 1 2009-12-11T02:40:59.223732 {"title": "Bill Wellington Presents Woof Hits the Road", "created": {"type": "/type/datetime", "value": "2009-12-11T02:40:59.223732"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:40:59.223732"}, "latest_revision": 1, "key": "/works/OL10282212W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4239851A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10282731W 1 2009-12-11T02:41:14.054209 {"title": "Archaeological Investigations in the Adobe Dam Project Area (Museum of Northern Arizona Research Paper, 27)", "created": {"type": "/type/datetime", "value": "2009-12-11T02:41:14.054209"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:41:14.054209"}, "latest_revision": 1, "key": "/works/OL10282731W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4240366A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10283183W 3 2010-07-22T13:55:58.480163 {"last_modified": {"type": "/type/datetime", "value": "2010-07-22T13:55:58.480163"}, "title": "Canciones populares espa\u00f1olas", "created": {"type": "/type/datetime", "value": "2009-12-11T02:41:14.054209"}, "subjects": ["Folk songs, Spanish", "Spanish Folk songs"], "latest_revision": 3, "key": "/works/OL10283183W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4240855A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10283351W 3 2010-04-28T07:09:49.701426 {"title": "El Poder de La Memoria", "created": {"type": "/type/datetime", "value": "2009-12-11T02:41:24.142993"}, "covers": [3329964], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:09:49.701426"}, "latest_revision": 3, "key": "/works/OL10283351W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4241040A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10283358W 2 2021-02-17T06:27:04.922503 {"title": "Como Hacer Feliz en el Amor al Hombre", "key": "/works/OL10283358W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4241046A"}}], "type": {"key": "/type/work"}, "subjects": ["Sex instruction for men", "Men", "Sexual behavior", "Male orgasm", "Educaci\u00f3n sexual para hombres", "Hombres", "Conducta sexual"], "covers": [10645135], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T02:41:24.142993"}, "last_modified": {"type": "/type/datetime", "value": "2021-02-17T06:27:04.922503"}}
+/type/work /works/OL10283690W 1 2009-12-11T02:41:24.142993 {"title": "En La Rusia de Los Zares - Scorpio", "created": {"type": "/type/datetime", "value": "2009-12-11T02:41:24.142993"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:41:24.142993"}, "latest_revision": 1, "key": "/works/OL10283690W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4241384A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10283745W 1 2009-12-11T02:41:24.142993 {"title": "Biofisica", "created": {"type": "/type/datetime", "value": "2009-12-11T02:41:24.142993"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:41:24.142993"}, "latest_revision": 1, "key": "/works/OL10283745W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4241440A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10283857W 1 2009-12-11T02:41:24.142993 {"title": "Sueo y Procesos Cognitivos", "created": {"type": "/type/datetime", "value": "2009-12-11T02:41:24.142993"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:41:24.142993"}, "latest_revision": 1, "key": "/works/OL10283857W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4241607A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10283891W 1 2009-12-11T02:41:24.142993 {"title": "Tecnicas Cualitativas de Investigacion Social", "created": {"type": "/type/datetime", "value": "2009-12-11T02:41:24.142993"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:41:24.142993"}, "latest_revision": 1, "key": "/works/OL10283891W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4241665A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10284003W 1 2009-12-11T02:41:24.142993 {"title": "Didactica de La Segunda Lengua En Educacion Infant", "created": {"type": "/type/datetime", "value": "2009-12-11T02:41:24.142993"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:41:24.142993"}, "latest_revision": 1, "key": "/works/OL10284003W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4241850A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10284206W 2 2020-12-08T02:12:57.100788 {"title": "El Gobierno Municipal de Velez-Malaga En El Siglo XVIII", "key": "/works/OL10284206W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4242081A"}}], "type": {"key": "/type/work"}, "subjects": ["Politics and government", "Public Finance", "History"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T02:41:24.142993"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-08T02:12:57.100788"}}
+/type/work /works/OL10284285W 2 2020-11-26T17:22:12.783967 {"last_modified": {"type": "/type/datetime", "value": "2020-11-26T17:22:12.783967"}, "title": "Retratos del principe cristiano", "created": {"type": "/type/datetime", "value": "2009-12-11T02:41:33.414374"}, "subjects": ["Early works to 1800", "Education of princes", "Kings and rulers", "Duties", "History"], "latest_revision": 2, "key": "/works/OL10284285W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4242154A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10284394W 2 2020-12-02T13:29:09.666722 {"title": "Estudios sobre las relaciones entre Aragon y Castilla", "key": "/works/OL10284394W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4242283A"}}], "type": {"key": "/type/work"}, "subjects": ["Relations"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T02:41:33.414374"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-02T13:29:09.666722"}}
+/type/work /works/OL1028444W 3 2010-07-22T13:55:58.480163 {"last_modified": {"type": "/type/datetime", "value": "2010-07-22T13:55:58.480163"}, "latest_revision": 3, "key": "/works/OL1028444W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL98735A"}}], "created": {"type": "/type/datetime", "value": "2009-12-09T20:07:12.176718"}, "title": "Riwayat hidup dan perjuangan Sultan Iskandar Muda", "subject_places": ["Indonesia", "Aceh"], "subjects": ["Biography", "Sultans"], "subject_people": ["Iskandar Muda Sultan of Aceh (ca. 1590-1636)"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10284604W 3 2010-04-28T07:09:49.701426 {"title": "Los sonidos de el bosque (Los sonidos de . . . series)", "created": {"type": "/type/datetime", "value": "2009-12-11T02:41:33.414374"}, "covers": [3330560], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:09:49.701426"}, "latest_revision": 3, "key": "/works/OL10284604W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4242563A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10284816W 1 2009-12-11T02:41:33.414374 {"title": "Belleza Natural", "created": {"type": "/type/datetime", "value": "2009-12-11T02:41:33.414374"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:41:33.414374"}, "latest_revision": 1, "key": "/works/OL10284816W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4242765A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10284865W 2 2019-02-04T05:33:28.100703 {"last_modified": {"type": "/type/datetime", "value": "2019-02-04T05:33:28.100703"}, "title": "Nino Vegetariano, El", "created": {"type": "/type/datetime", "value": "2009-12-11T02:41:33.414374"}, "subjects": ["Cookery (Baby foods)", "Cookery (Natural foods)", "Cocina", "Vegetarian cookery", "Alimentos naturales", "Alimentos para beb\u00e9s", "Cocina vegetariana"], "latest_revision": 2, "key": "/works/OL10284865W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4242832A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10285057W 1 2009-12-11T02:41:33.414374 {"title": "Problemas Medicos En La Escuela y Su Entorno -2b*", "created": {"type": "/type/datetime", "value": "2009-12-11T02:41:33.414374"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:41:33.414374"}, "latest_revision": 1, "key": "/works/OL10285057W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4243023A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10285162W 3 2019-07-31T06:23:46.675383 {"last_modified": {"type": "/type/datetime", "value": "2019-07-31T06:23:46.675383"}, "title": "Cartas Y Escritos De San Francisco Javier (BAC, 101)", "created": {"type": "/type/datetime", "value": "2009-12-11T02:41:33.414374"}, "subjects": ["Correspondence", "Christian saints", "Missionaries", "Francis Xavier, -- Saint, -- 1506-1552 -- Correspondence.", "Christian saints -- Correspondence.", "Missionaries -- Asia -- Correspondence."], "latest_revision": 3, "key": "/works/OL10285162W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4243171A"}}, {"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL306758A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10285187W 1 2009-12-11T02:41:33.414374 {"title": "Acosados", "created": {"type": "/type/datetime", "value": "2009-12-11T02:41:33.414374"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:41:33.414374"}, "latest_revision": 1, "key": "/works/OL10285187W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4243193A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10285235W 3 2010-04-28T07:09:49.701426 {"title": "Ideas y Trucos Para el Hogar", "created": {"type": "/type/datetime", "value": "2009-12-11T02:41:42.882185"}, "covers": [5271927], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:09:49.701426"}, "latest_revision": 3, "key": "/works/OL10285235W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4243242A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10285324W 1 2009-12-11T02:41:42.882185 {"title": "El Poder Magico Del Pendulo/ the Magic Power of the Pendulum (Hermetica-Ciencia Oculta)", "created": {"type": "/type/datetime", "value": "2009-12-11T02:41:42.882185"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:41:42.882185"}, "latest_revision": 1, "key": "/works/OL10285324W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4243327A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10285857W 2 2020-12-10T11:51:45.086101 {"title": "Sahagun", "key": "/works/OL10285857W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4243856A"}}], "type": {"key": "/type/work"}, "subjects": ["Description and travel"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T02:41:42.882185"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-10T11:51:45.086101"}}
+/type/work /works/OL10286014W 1 2009-12-11T02:41:42.882185 {"title": "Estiramientos Simplificados", "created": {"type": "/type/datetime", "value": "2009-12-11T02:41:42.882185"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:41:42.882185"}, "latest_revision": 1, "key": "/works/OL10286014W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4244002A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1028647W 2 2020-12-03T09:07:11.561300 {"title": "Urgensi khiyar dan elastisitas penerapannya di toko-toko swalayan", "key": "/works/OL1028647W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL98813A"}}], "type": {"key": "/type/work"}, "description": {"type": "/type/text", "value": "Study on the Islamic concept of consumer's right and its application in self-service stores in Padang, West Sumatra, Indonesia."}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-09T20:07:12.176718"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-03T09:07:11.561300"}}
+/type/work /works/OL10286588W 2 2021-08-20T14:28:52.622200 {"title": "Telefonia En Internet", "key": "/works/OL10286588W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4244610A"}}], "type": {"key": "/type/work"}, "subjects": ["Internet", "Tel\u00e9fono", "Teleinform\u00e1tica", "Telefon\u00eda por Internet"], "covers": [11726799], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T02:41:52.089255"}, "last_modified": {"type": "/type/datetime", "value": "2021-08-20T14:28:52.622200"}}
+/type/work /works/OL10286594W 1 2009-12-11T02:41:52.089255 {"title": "Proyecto Intranet, El", "created": {"type": "/type/datetime", "value": "2009-12-11T02:41:52.089255"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:41:52.089255"}, "latest_revision": 1, "key": "/works/OL10286594W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4244614A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10287063W 2 2020-12-01T23:39:13.513636 {"title": "Los conventos de dominicos en la Provincia de Palencia", "key": "/works/OL10287063W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4245161A"}}], "type": {"key": "/type/work"}, "subjects": ["Convents", "Dominicans"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T02:41:52.089255"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-01T23:39:13.513636"}}
+/type/work /works/OL10287095W 1 2009-12-11T02:41:52.089255 {"title": "Clinical Uses of Prism (Mosby's Optometric Problem Solving Series)", "created": {"type": "/type/datetime", "value": "2009-12-11T02:41:52.089255"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:41:52.089255"}, "latest_revision": 1, "key": "/works/OL10287095W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4245196A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10287114W 2 2021-10-03T23:22:55.347572 {"title": "Terapia en Oncohematologia", "key": "/works/OL10287114W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4245219A"}}], "type": {"key": "/type/work"}, "subjects": ["Hematology"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T02:41:52.089255"}, "last_modified": {"type": "/type/datetime", "value": "2021-10-03T23:22:55.347572"}}
+/type/work /works/OL10287820W 2 2012-06-23T22:25:35.117871 {"title": "La Dulce Espa\u00f1a", "created": {"type": "/type/datetime", "value": "2009-12-11T02:42:00.342310"}, "last_modified": {"type": "/type/datetime", "value": "2012-06-23T22:25:35.117871"}, "latest_revision": 2, "key": "/works/OL10287820W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4245909A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10288443W 3 2010-04-28T07:09:49.701426 {"title": "El ultimo rito (Coleccion Kaleidoscopio)", "created": {"type": "/type/datetime", "value": "2009-12-11T02:42:09.792264"}, "covers": [3332543], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:09:49.701426"}, "latest_revision": 3, "key": "/works/OL10288443W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4246567A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10289471W 1 2009-12-11T02:42:19.894124 {"title": "Diario de un Ilegal", "created": {"type": "/type/datetime", "value": "2009-12-11T02:42:19.894124"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:42:19.894124"}, "latest_revision": 1, "key": "/works/OL10289471W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4247617A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10289490W 1 2009-12-11T02:42:19.894124 {"title": "Duke Ellington - Una Biografia Intima", "created": {"type": "/type/datetime", "value": "2009-12-11T02:42:19.894124"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:42:19.894124"}, "latest_revision": 1, "key": "/works/OL10289490W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4247636A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10289659W 1 2009-12-11T02:42:19.894124 {"title": "Invitaciones y Protocolos En La Ceremonia", "created": {"type": "/type/datetime", "value": "2009-12-11T02:42:19.894124"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:42:19.894124"}, "latest_revision": 1, "key": "/works/OL10289659W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4247783A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10289859W 1 2009-12-11T02:42:19.894124 {"title": "Miniguia Clipper 5.2", "created": {"type": "/type/datetime", "value": "2009-12-11T02:42:19.894124"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:42:19.894124"}, "latest_revision": 1, "key": "/works/OL10289859W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4247970A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10289919W 1 2009-12-11T02:42:19.894124 {"title": "Hist. En Los Comics", "created": {"type": "/type/datetime", "value": "2009-12-11T02:42:19.894124"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:42:19.894124"}, "latest_revision": 1, "key": "/works/OL10289919W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4248027A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10290129W 1 2009-12-11T02:42:19.894124 {"title": "El Futuro de La Creacion", "created": {"type": "/type/datetime", "value": "2009-12-11T02:42:19.894124"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:42:19.894124"}, "latest_revision": 1, "key": "/works/OL10290129W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4248237A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10290258W 2 2023-01-08T19:47:51.014529 {"title": "La Pasion En El Cine", "key": "/works/OL10290258W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4248361A"}}], "type": {"key": "/type/work"}, "subjects": ["Love in motion pictures", "Motion pictures", "History"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T02:42:29.192429"}, "last_modified": {"type": "/type/datetime", "value": "2023-01-08T19:47:51.014529"}}
+/type/work /works/OL10290908W 1 2009-12-11T02:42:29.192429 {"title": "United States Medical Students, 1950-2000", "created": {"type": "/type/datetime", "value": "2009-12-11T02:42:29.192429"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:42:29.192429"}, "latest_revision": 1, "key": "/works/OL10290908W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4249018A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10290966W 1 2009-12-11T02:42:29.192429 {"title": "Catalogo De Las Fotocopias De Los Documentos Y Periodicos Yucatecosen LA Biblioteca De LA Universida De Texas En Arlington", "created": {"type": "/type/datetime", "value": "2009-12-11T02:42:29.192429"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:42:29.192429"}, "latest_revision": 1, "key": "/works/OL10290966W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4249069A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10291028W 1 2009-12-11T02:42:29.192429 {"title": "Durable Concrete in Hot Climates/Sp-139", "created": {"type": "/type/datetime", "value": "2009-12-11T02:42:29.192429"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:42:29.192429"}, "latest_revision": 1, "key": "/works/OL10291028W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4249123A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10291211W 1 2009-12-11T02:42:29.192429 {"title": "Nationwide Directory of Licensed Gambling Establishments", "created": {"type": "/type/datetime", "value": "2009-12-11T02:42:29.192429"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:42:29.192429"}, "latest_revision": 1, "key": "/works/OL10291211W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4249313A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10291296W 1 2009-12-11T02:42:39.065481 {"title": "St Paul, Liberty, and the Law", "created": {"type": "/type/datetime", "value": "2009-12-11T02:42:39.065481"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:42:39.065481"}, "latest_revision": 1, "key": "/works/OL10291296W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4249411A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10291373W 1 2009-12-11T02:42:39.065481 {"title": "Fashion genius of the world", "created": {"type": "/type/datetime", "value": "2009-12-11T02:42:39.065481"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:42:39.065481"}, "latest_revision": 1, "key": "/works/OL10291373W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4249491A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10292013W 1 2009-12-11T02:42:39.065481 {"title": "Tea", "created": {"type": "/type/datetime", "value": "2009-12-11T02:42:39.065481"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:42:39.065481"}, "latest_revision": 1, "key": "/works/OL10292013W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4250196A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1029234W 4 2020-12-03T09:16:13.923188 {"subject_places": ["Indonesia", "Ambon", "Ambon (Indonesia)"], "subjects": ["History", "Riots", "Religions", "Muslims", "Relations", "Religion", "Ethnic relations"], "key": "/works/OL1029234W", "title": "Ambon bersimbah darah", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL99042A"}}], "type": {"key": "/type/work"}, "description": {"type": "/type/text", "value": "On the sectarian fighting between Christians and Muslims in Ambon, Indonesia, January 19 to ca. April 1999."}, "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-09T20:07:12.176718"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-03T09:16:13.923188"}}
+/type/work /works/OL10292377W 2 2012-06-19T05:47:08.141113 {"title": "Strategies for Budgeting", "created": {"type": "/type/datetime", "value": "2009-12-11T02:42:48.308387"}, "last_modified": {"type": "/type/datetime", "value": "2012-06-19T05:47:08.141113"}, "latest_revision": 2, "key": "/works/OL10292377W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4250641A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10292520W 1 2009-12-11T02:42:48.308387 {"title": "Point of Sale", "created": {"type": "/type/datetime", "value": "2009-12-11T02:42:48.308387"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:42:48.308387"}, "latest_revision": 1, "key": "/works/OL10292520W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4250783A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10292788W 1 2009-12-11T02:42:48.308387 {"title": "Math Mastery Series", "created": {"type": "/type/datetime", "value": "2009-12-11T02:42:48.308387"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:42:48.308387"}, "latest_revision": 1, "key": "/works/OL10292788W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4251035A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10293367W 1 2009-12-11T02:42:57.926997 {"title": "Medical Device Register, 1990: Mid-Year Supplement", "created": {"type": "/type/datetime", "value": "2009-12-11T02:42:57.926997"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:42:57.926997"}, "latest_revision": 1, "key": "/works/OL10293367W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4251647A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10293469W 1 2009-12-11T02:42:57.926997 {"title": "County Business Patterns", "created": {"type": "/type/datetime", "value": "2009-12-11T02:42:57.926997"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:42:57.926997"}, "latest_revision": 1, "key": "/works/OL10293469W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4251761A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL102936W 5 2010-07-22T13:58:31.110996 {"covers": [4731728], "last_modified": {"type": "/type/datetime", "value": "2010-07-22T13:58:31.110996"}, "latest_revision": 5, "key": "/works/OL102936W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL24124A"}}], "created": {"type": "/type/datetime", "value": "2009-10-17T19:31:58.335109"}, "title": "Dickens's Christmas books, Christmas stories, and other short fiction", "subjects": ["Bibliography", "English Christmas stories", "Christmas stories"], "subject_people": ["Charles Dickens (1812-1870)"], "type": {"key": "/type/work"}, "revision": 5}
+/type/work /works/OL10293774W 1 2009-12-11T02:42:57.926997 {"title": "Flower Mites of Trinidad III: The Genus Rhinoseius (Acari: Ascidae) (Miscellaneous Publications, No 184)", "created": {"type": "/type/datetime", "value": "2009-12-11T02:42:57.926997"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:42:57.926997"}, "latest_revision": 1, "key": "/works/OL10293774W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4252082A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10293871W 1 2009-12-11T02:42:57.926997 {"title": "Food News for Consumers", "created": {"type": "/type/datetime", "value": "2009-12-11T02:42:57.926997"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:42:57.926997"}, "latest_revision": 1, "key": "/works/OL10293871W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4252160A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10294145W 1 2009-12-11T02:42:57.926997 {"title": "La Obra del Leon Verde", "created": {"type": "/type/datetime", "value": "2009-12-11T02:42:57.926997"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:42:57.926997"}, "latest_revision": 1, "key": "/works/OL10294145W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4252427A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10294636W 2 2020-12-14T18:05:21.785885 {"title": "Modernissims!!!", "key": "/works/OL10294636W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4252935A"}}], "type": {"key": "/type/work"}, "subjects": ["Clothing and dress", "Exhibitions", "History", "Fashion", "Social life and customs"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T02:43:07.905837"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-14T18:05:21.785885"}}
+/type/work /works/OL10294657W 3 2010-04-28T07:09:49.701426 {"title": "Japon/japan (Travel Time Jaguar)", "created": {"type": "/type/datetime", "value": "2009-12-11T02:43:07.905837"}, "covers": [3333482], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:09:49.701426"}, "latest_revision": 3, "key": "/works/OL10294657W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4252953A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10294869W 1 2009-12-11T02:43:07.905837 {"title": "Mis Diez Mandamientos / My Ten Commandments", "created": {"type": "/type/datetime", "value": "2009-12-11T02:43:07.905837"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:43:07.905837"}, "latest_revision": 1, "key": "/works/OL10294869W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4253181A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10294957W 2 2023-01-07T08:46:30.790554 {"title": "Bernard Plossu", "key": "/works/OL10294957W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4253262A"}}], "type": {"key": "/type/work"}, "subjects": ["Catalogs", "Artistic Photography"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T02:43:07.905837"}, "last_modified": {"type": "/type/datetime", "value": "2023-01-07T08:46:30.790554"}}
+/type/work /works/OL10295078W 1 2009-12-11T02:43:07.905837 {"title": "Windows 2000 Profesional", "created": {"type": "/type/datetime", "value": "2009-12-11T02:43:07.905837"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:43:07.905837"}, "latest_revision": 1, "key": "/works/OL10295078W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4253401A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10295096W 3 2010-04-28T07:09:49.701426 {"title": "Reiki", "created": {"type": "/type/datetime", "value": "2009-12-11T02:43:07.905837"}, "covers": [5275762], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:09:49.701426"}, "latest_revision": 3, "key": "/works/OL10295096W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4253420A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10295234W 3 2020-12-10T11:56:58.369279 {"title": "Catedrales Goticas/ Gothic Cathedrals (Catedrales De Espa\u00f1a)", "key": "/works/OL10295234W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4253571A"}}], "type": {"key": "/type/work"}, "subjects": ["Gothic Architecture", "Church architecture", "Cathedrals"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T02:43:16.896348"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-10T11:56:58.369279"}}
+/type/work /works/OL10296928W 5 2020-12-07T20:08:23.305917 {"title": "Breve Historia De La Religion En Espa\u00f1a (Albatros)", "covers": [5277088], "key": "/works/OL10296928W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4255161A"}}], "type": {"key": "/type/work"}, "subjects": ["Church history", "Religion"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2009-12-11T02:43:26.351036"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-07T20:08:23.305917"}}
+/type/work /works/OL10297566W 2 2020-12-11T22:38:00.578391 {"title": "La Sierra de Hoyo de Manzanares", "key": "/works/OL10297566W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4255821A"}}], "type": {"key": "/type/work"}, "subjects": ["Natural history"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T02:43:35.787405"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-11T22:38:00.578391"}}
+/type/work /works/OL10298181W 1 2009-12-11T02:43:35.787405 {"title": "Hot Water from the Sun", "created": {"type": "/type/datetime", "value": "2009-12-11T02:43:35.787405"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:43:35.787405"}, "latest_revision": 1, "key": "/works/OL10298181W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4256431A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10298358W 1 2009-12-11T02:43:46.575048 {"title": "The Fortunate Pilgrims", "created": {"type": "/type/datetime", "value": "2009-12-11T02:43:46.575048"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:43:46.575048"}, "latest_revision": 1, "key": "/works/OL10298358W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4256551A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10298503W 1 2009-12-11T02:43:46.575048 {"title": "Life and Times of Rosy Aster", "created": {"type": "/type/datetime", "value": "2009-12-11T02:43:46.575048"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:43:46.575048"}, "latest_revision": 1, "key": "/works/OL10298503W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4256705A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10298699W 1 2009-12-11T02:43:46.575048 {"title": "Lord's, dukes & Dorset Square", "created": {"type": "/type/datetime", "value": "2009-12-11T02:43:46.575048"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:43:46.575048"}, "latest_revision": 1, "key": "/works/OL10298699W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4256923A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10298765W 1 2009-12-11T02:43:46.575048 {"title": "The Amazing Red Man (Indian Life Library)", "created": {"type": "/type/datetime", "value": "2009-12-11T02:43:46.575048"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:43:46.575048"}, "latest_revision": 1, "key": "/works/OL10298765W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4256972A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10299483W 1 2009-12-11T02:43:57.400696 {"title": "Field Observations of Two Phase Flow in the Matagorda Offshore Pipeline System", "created": {"type": "/type/datetime", "value": "2009-12-11T02:43:57.400696"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:43:57.400696"}, "latest_revision": 1, "key": "/works/OL10299483W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4257801A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10299801W 1 2009-12-11T02:43:57.400696 {"title": "Petroleum Supply Annual, 1987", "created": {"type": "/type/datetime", "value": "2009-12-11T02:43:57.400696"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:43:57.400696"}, "latest_revision": 1, "key": "/works/OL10299801W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4258170A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10299806W 1 2009-12-11T02:43:57.400696 {"title": "October Dusk", "created": {"type": "/type/datetime", "value": "2009-12-11T02:43:57.400696"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:43:57.400696"}, "latest_revision": 1, "key": "/works/OL10299806W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4258177A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10300484W 1 2009-12-11T02:44:08.580828 {"title": "Interpreting: The Art of Cross-Cultural Mediation", "created": {"type": "/type/datetime", "value": "2009-12-11T02:44:08.580828"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:44:08.580828"}, "latest_revision": 1, "key": "/works/OL10300484W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4258958A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10300763W 1 2009-12-11T02:44:08.580828 {"title": "Wrat (Wide Range Achievement Test)", "created": {"type": "/type/datetime", "value": "2009-12-11T02:44:08.580828"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:44:08.580828"}, "latest_revision": 1, "key": "/works/OL10300763W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4259264A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10300827W 1 2009-12-11T02:44:08.580828 {"title": "Biochemistry", "created": {"type": "/type/datetime", "value": "2009-12-11T02:44:08.580828"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:44:08.580828"}, "latest_revision": 1, "key": "/works/OL10300827W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4259349A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10301098W 1 2009-12-11T02:44:08.580828 {"title": "Teenagers Guide to Rearing Their Parents", "created": {"type": "/type/datetime", "value": "2009-12-11T02:44:08.580828"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:44:08.580828"}, "latest_revision": 1, "key": "/works/OL10301098W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4259655A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10301402W 1 2009-12-11T02:44:17.875471 {"title": "Index to United States Patent Classification December, 1988", "created": {"type": "/type/datetime", "value": "2009-12-11T02:44:17.875471"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:44:17.875471"}, "latest_revision": 1, "key": "/works/OL10301402W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4259988A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10301460W 1 2009-12-11T02:44:17.875471 {"title": "Soldiers of Fortune", "created": {"type": "/type/datetime", "value": "2009-12-11T02:44:17.875471"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:44:17.875471"}, "latest_revision": 1, "key": "/works/OL10301460W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4260059A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10301795W 2 2020-12-14T14:23:42.321863 {"title": "DOS Insanos Mentais", "key": "/works/OL10301795W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4260380A"}}], "type": {"key": "/type/work"}, "subjects": ["Mental health laws", "Insanity (Law)", "Interdict (Civil law)"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T02:44:17.875471"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-14T14:23:42.321863"}}
+/type/work /works/OL10301950W 2 2020-12-13T15:58:50.428596 {"title": "O Rio de Janeiro Na Rota DOS Mares Do Sul", "key": "/works/OL10301950W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4260530A"}}], "type": {"key": "/type/work"}, "subjects": ["Description and travel", "Pictorial works"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T02:44:17.875471"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-13T15:58:50.428596"}}
+/type/work /works/OL1030205W 2 2010-01-16T02:56:52.495048 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:07:42.240730"}, "title": "Sejarah pembangunan pura-pura di Bali", "subject_places": ["Indonesia", "Bali Island"], "last_modified": {"type": "/type/datetime", "value": "2010-01-16T02:56:52.495048"}, "latest_revision": 2, "key": "/works/OL1030205W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL99416A"}}], "type": {"key": "/type/work"}, "subjects": ["Temples"], "revision": 2}
+/type/work /works/OL1030211W 4 2020-11-23T03:48:07.304218 {"description": {"type": "/type/text", "value": "Issues on economic conditions of Indonesia in 1980's; collected articles."}, "last_modified": {"type": "/type/datetime", "value": "2020-11-23T03:48:07.304218"}, "title": "Catatan ekonomi Indonesia", "created": {"type": "/type/datetime", "value": "2009-12-09T20:07:42.240730"}, "subject_places": ["Indonesia"], "subjects": ["Economic policy", "Economic conditions"], "latest_revision": 4, "key": "/works/OL1030211W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL99417A"}}], "subject_times": ["1945-"], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL10302450W 1 2009-12-11T02:44:27.465007 {"title": "Ny Carlsberg Glyptotek", "created": {"type": "/type/datetime", "value": "2009-12-11T02:44:27.465007"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:44:27.465007"}, "latest_revision": 1, "key": "/works/OL10302450W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4261065A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10302488W 3 2010-04-28T07:09:49.701426 {"title": "Teeth That Told", "created": {"type": "/type/datetime", "value": "2009-12-11T02:44:27.465007"}, "covers": [5283503], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:09:49.701426"}, "latest_revision": 3, "key": "/works/OL10302488W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4261097A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10303001W 1 2009-12-11T02:44:27.465007 {"title": "Thoughts and Findings of Angelo Ruffini in His Work \"Physiogeny\"", "created": {"type": "/type/datetime", "value": "2009-12-11T02:44:27.465007"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:44:27.465007"}, "latest_revision": 1, "key": "/works/OL10303001W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4261637A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10303017W 3 2022-12-04T03:34:02.012051 {"title": "Ascetico Narciso", "key": "/works/OL10303017W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4261655A"}}], "type": {"key": "/type/work"}, "subjects": ["Criticism and interpretation"], "covers": [13023229], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T02:44:27.465007"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T03:34:02.012051"}}
+/type/work /works/OL10303248W 3 2010-07-22T13:59:28.614425 {"last_modified": {"type": "/type/datetime", "value": "2010-07-22T13:59:28.614425"}, "title": "L' arte antica", "created": {"type": "/type/datetime", "value": "2009-12-11T02:44:37.021381"}, "subjects": ["Art, Ancient", "Ancient Art"], "latest_revision": 3, "key": "/works/OL10303248W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4261869A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10303397W 3 2020-01-28T18:54:21.804529 {"title": "Tre operai", "created": {"type": "/type/datetime", "value": "2009-12-11T02:44:37.021381"}, "last_modified": {"type": "/type/datetime", "value": "2020-01-28T18:54:21.804529"}, "latest_revision": 3, "key": "/works/OL10303397W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL190151A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10303996W 1 2009-12-11T02:44:37.021381 {"title": "Ragu Di Capra", "created": {"type": "/type/datetime", "value": "2009-12-11T02:44:37.021381"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:44:37.021381"}, "latest_revision": 1, "key": "/works/OL10303996W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4262936A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10304463W 1 2009-12-11T02:44:46.048154 {"title": "Caro-Kann Defence Advance Variation", "created": {"type": "/type/datetime", "value": "2009-12-11T02:44:46.048154"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:44:46.048154"}, "latest_revision": 1, "key": "/works/OL10304463W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4263428A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10304616W 1 2009-12-11T02:44:46.048154 {"title": "Iai Nesher, From Mirage to Kfir #2 (the Iaf Aircraft Series #3/2)", "created": {"type": "/type/datetime", "value": "2009-12-11T02:44:46.048154"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:44:46.048154"}, "latest_revision": 1, "key": "/works/OL10304616W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4263595A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10305186W 3 2020-11-23T00:39:59.098105 {"last_modified": {"type": "/type/datetime", "value": "2020-11-23T00:39:59.098105"}, "title": "Toen kwanggo, tun kwanggo, nan kwanggo", "created": {"type": "/type/datetime", "value": "2009-12-11T02:44:46.048154"}, "subjects": ["Advertising"], "latest_revision": 3, "key": "/works/OL10305186W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4264022A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10305612W 1 2009-12-11T02:44:54.017821 {"title": "Hogong (Munhak kwa chisong siinson)", "created": {"type": "/type/datetime", "value": "2009-12-11T02:44:54.017821"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:44:54.017821"}, "latest_revision": 1, "key": "/works/OL10305612W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4264310A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10305835W 1 2009-12-11T02:44:54.017821 {"title": "Chabonjuui ui yaksok", "created": {"type": "/type/datetime", "value": "2009-12-11T02:44:54.017821"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:44:54.017821"}, "latest_revision": 1, "key": "/works/OL10305835W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4264457A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1030612W 5 2020-12-03T09:17:41.894249 {"subtitle": "membela kebenaran, menegakkan keadilan", "key": "/works/OL1030612W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL99524A"}}], "title": "Catatan bijak", "subject_places": ["Indonesia"], "subjects": ["Law"], "type": {"key": "/type/work"}, "description": {"type": "/type/text", "value": "Law and justice in Indonesia; collection of articles."}, "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2009-12-09T20:08:13.076993"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-03T09:17:41.894249"}}
+/type/work /works/OL10306274W 1 2009-12-11T02:44:58.496049 {"title": "Haejok", "created": {"type": "/type/datetime", "value": "2009-12-11T02:44:58.496049"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:44:58.496049"}, "latest_revision": 1, "key": "/works/OL10306274W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4264763A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10306278W 1 2009-12-11T02:44:58.496049 {"title": "Kim Mi-sun chon", "created": {"type": "/type/datetime", "value": "2009-12-11T02:44:58.496049"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:44:58.496049"}, "latest_revision": 1, "key": "/works/OL10306278W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4264767A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10306519W 2 2010-10-12T22:02:52.189426 {"title": "Fabvlae", "created": {"type": "/type/datetime", "value": "2009-12-11T02:44:58.496049"}, "last_modified": {"type": "/type/datetime", "value": "2010-10-12T22:02:52.189426"}, "latest_revision": 2, "key": "/works/OL10306519W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL21589A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10306562W 4 2017-04-29T08:14:10.495478 {"last_modified": {"type": "/type/datetime", "value": "2017-04-29T08:14:10.495478"}, "title": "A literal translation of the Alcestis of Euripides", "created": {"type": "/type/datetime", "value": "2009-12-11T02:44:58.496049"}, "subjects": ["great_books_of_the_western_world"], "latest_revision": 4, "key": "/works/OL10306562W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL21589A"}}], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL10307119W 4 2020-04-20T19:41:35.761183 {"last_modified": {"type": "/type/datetime", "value": "2020-04-20T19:41:35.761183"}, "title": "Picture book (No.1) containing the diverting history of John Gilpin, The house that Jack built, An elegy on the death of a mad dog, The babes in the wood", "created": {"type": "/type/datetime", "value": "2009-12-11T02:44:58.496049"}, "subjects": ["Nursery rhymes"], "latest_revision": 4, "key": "/works/OL10307119W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2535479A"}}], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL10307423W 4 2017-11-25T01:39:16.135930 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:45:07.554430"}, "subject_places": ["Russia (Federation)"], "subjects": ["Agriculture, Cooperative", "Cooperative Agriculture"], "latest_revision": 4, "key": "/works/OL10307423W", "title": "Derevenskai\u0361a bi\u0361ednota i put\u02b9 k\u02ba sot\u0361sializmu", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4265227A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2017-11-25T01:39:16.135930"}, "revision": 4}
+/type/work /works/OL10307627W 3 2010-07-22T14:00:55.119508 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:45:07.554430"}, "subject_places": ["United States", "Great Britain"], "subjects": ["Commerce"], "latest_revision": 3, "key": "/works/OL10307627W", "title": "Remarks of Mr. Smith, of Maryland, in the Senate of the United States, on the subject of discriminating duties", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4265364A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-07-22T14:00:55.119508"}, "revision": 3}
+/type/work /works/OL10307662W 3 2010-07-22T14:01:37.836846 {"last_modified": {"type": "/type/datetime", "value": "2010-07-22T14:01:37.836846"}, "title": "Rules for the government of the Legislative Council of the State of New Jersey", "created": {"type": "/type/datetime", "value": "2009-12-11T02:45:07.554430"}, "subjects": ["Rules and practice", "New Jersey. Legislature. Senate", "New Jersey"], "latest_revision": 3, "key": "/works/OL10307662W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4265386A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10307728W 3 2010-07-22T14:01:37.836846 {"last_modified": {"type": "/type/datetime", "value": "2010-07-22T14:01:37.836846"}, "title": "Geer's patent single and double acting spring and blank butts ..", "created": {"type": "/type/datetime", "value": "2009-12-11T02:45:07.554430"}, "subjects": ["Hardware", "Advertising fliers"], "latest_revision": 3, "key": "/works/OL10307728W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4265438A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10307976W 3 2010-07-22T14:01:37.836846 {"last_modified": {"type": "/type/datetime", "value": "2010-07-22T14:01:37.836846"}, "title": "The excellent tomatoes", "created": {"type": "/type/datetime", "value": "2009-12-11T02:45:07.554430"}, "subjects": ["Canned foods", "Canned vegetables", "Food", "Advertising"], "latest_revision": 3, "key": "/works/OL10307976W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4265664A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10308017W 3 2010-07-22T14:01:37.836846 {"last_modified": {"type": "/type/datetime", "value": "2010-07-22T14:01:37.836846"}, "title": "Crape redressed..", "created": {"type": "/type/datetime", "value": "2009-12-11T02:45:07.554430"}, "subjects": ["Dyes and dyeing", "Advertising cards"], "latest_revision": 3, "key": "/works/OL10308017W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4265704A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10308173W 2 2021-08-24T04:53:09.301085 {"title": "Confidential talks with young women", "key": "/works/OL10308173W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4265853A"}}], "type": {"key": "/type/work"}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T02:45:07.554430"}, "last_modified": {"type": "/type/datetime", "value": "2021-08-24T04:53:09.301085"}}
+/type/work /works/OL10308534W 3 2010-07-22T14:01:37.836846 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:45:19.288083"}, "subject_places": ["Mexico"], "subjects": ["Prostitution"], "latest_revision": 3, "key": "/works/OL10308534W", "title": "Algunas consideraciones sobre la prostitucion pu\u0301blica en Me\u0301xico", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4266005A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-07-22T14:01:37.836846"}, "revision": 3}
+/type/work /works/OL10308633W 1 2009-12-11T02:45:19.288083 {"title": "Hohelied an den Ungenannten", "created": {"type": "/type/datetime", "value": "2009-12-11T02:45:19.288083"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:45:19.288083"}, "latest_revision": 1, "key": "/works/OL10308633W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4266063A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10308871W 3 2010-07-22T14:02:01.976375 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:45:19.288083"}, "subject_places": ["Asia", "Syria"], "subjects": ["Women", "Education", "Legal status, laws"], "latest_revision": 3, "key": "/works/OL10308871W", "title": "The Christian education of women in the East", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4266199A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-07-22T14:02:01.976375"}, "revision": 3}
+/type/work /works/OL10309268W 3 2010-07-22T14:02:01.976375 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:45:28.765916"}, "subject_places": ["France"], "subjects": ["Social conditions", "Prostitution", "Women"], "latest_revision": 3, "key": "/works/OL10309268W", "title": "La femme esclave", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4266488A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-07-22T14:02:01.976375"}, "revision": 3}
+/type/work /works/OL10309291W 3 2010-07-22T14:02:01.976375 {"last_modified": {"type": "/type/datetime", "value": "2010-07-22T14:02:01.976375"}, "latest_revision": 3, "key": "/works/OL10309291W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4266502A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T02:45:28.765916"}, "title": "Mon journal d'un an, ou, la vie d'une gouvernante en angleterre", "subject_places": ["England"], "subjects": ["Social life and customs", "Governesses"], "subject_times": ["19th century"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10309751W 2 2022-12-21T21:01:50.965857 {"title": "A short story: interspersed with poetry", "key": "/works/OL10309751W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4266837A"}}], "type": {"key": "/type/work"}, "subjects": ["English Short stories", "Early works to 1800"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T02:45:28.765916"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-21T21:01:50.965857"}}
+/type/work /works/OL10309752W 1 2009-12-11T02:45:28.765916 {"title": "The sorrows of Matilda", "created": {"type": "/type/datetime", "value": "2009-12-11T02:45:28.765916"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:45:28.765916"}, "latest_revision": 1, "key": "/works/OL10309752W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4266837A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10309780W 3 2010-07-22T14:02:01.976375 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:45:28.765916"}, "subject_places": ["Palermo", "Italy"], "subjects": ["Prostitution"], "latest_revision": 3, "key": "/works/OL10309780W", "title": "La mala vita di Palermo", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4266861A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-07-22T14:02:01.976375"}, "revision": 3}
+/type/work /works/OL10309905W 3 2010-07-22T14:02:29.617414 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:45:28.765916"}, "subject_places": ["Italy"], "subjects": ["Education", "Women"], "latest_revision": 3, "key": "/works/OL10309905W", "title": "Necessita\u0300 storica e sociale della educazione muliebre", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4266958A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-07-22T14:02:29.617414"}, "revision": 3}
+/type/work /works/OL10310289W 5 2022-12-21T16:59:23.406749 {"subjects": ["Social conditions", "Women"], "key": "/works/OL10310289W", "title": "The unquiet sex", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4267283A"}}], "type": {"key": "/type/work"}, "covers": [6061426], "description": {"type": "/type/text", "value": "Moody describes the character and motivations of the \"new\" woman who sought college education, participated in clubs, and was active in social reforms."}, "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2009-12-11T02:45:34.201068"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-21T16:59:23.406749"}}
+/type/work /works/OL10310720W 1 2009-12-11T02:45:34.201068 {"title": "Naphtali", "created": {"type": "/type/datetime", "value": "2009-12-11T02:45:34.201068"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:45:34.201068"}, "latest_revision": 1, "key": "/works/OL10310720W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4267568A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10310749W 1 2009-12-11T02:45:34.201068 {"title": "Journals of the House of Lords. ..", "created": {"type": "/type/datetime", "value": "2009-12-11T02:45:34.201068"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:45:34.201068"}, "latest_revision": 1, "key": "/works/OL10310749W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4267571A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10310752W 2 2020-12-20T08:29:11.821076 {"title": "Proceedings of the Irish House of Lords, 1771-1800", "key": "/works/OL10310752W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4267571A"}}], "type": {"key": "/type/work"}, "subjects": ["Politics and government", "History", "Ireland. Parliament. House of Lords", "Ireland"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T02:45:34.201068"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-20T08:29:11.821076"}}
+/type/work /works/OL10311664W 1 2009-12-11T02:45:39.774403 {"title": "A table of the antient sterling monies and weights of the Anglians", "created": {"type": "/type/datetime", "value": "2009-12-11T02:45:39.774403"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:45:39.774403"}, "latest_revision": 1, "key": "/works/OL10311664W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4267806A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1031179W 1 2009-12-09T19:45:51.613132 {"title": "Proses sosialisasi anak dalam keluarga pada masyarakat suku Banjar di Kalimantan Selatan", "created": {"type": "/type/datetime", "value": "2009-12-09T19:45:51.613132"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:45:51.613132"}, "latest_revision": 1, "key": "/works/OL1031179W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL99759A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1031183W 1 2009-12-09T19:45:51.613132 {"title": "Peranan IPTEK dan intelektual Muslim dalam penelaahan dan kebangkitan Islam", "created": {"type": "/type/datetime", "value": "2009-12-09T19:45:51.613132"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:45:51.613132"}, "latest_revision": 1, "key": "/works/OL1031183W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL99761A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10312137W 1 2009-12-11T02:45:39.774403 {"title": "A catalogue of the valuable and much esteemed museum of the late Rev. Dr. Friend, Dean of Canterbury; ... which will be sold by auction, by Mess. Christie and J. Ansell, ... on Friday, April 25, 1777, ..", "created": {"type": "/type/datetime", "value": "2009-12-11T02:45:39.774403"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:45:39.774403"}, "latest_revision": 1, "key": "/works/OL10312137W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4267991A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10312494W 1 2009-12-11T02:45:43.867257 {"title": "The purchaser's pocket-companion", "created": {"type": "/type/datetime", "value": "2009-12-11T02:45:43.867257"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:45:43.867257"}, "latest_revision": 1, "key": "/works/OL10312494W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4268148A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10312717W 3 2010-07-22T14:02:59.805347 {"last_modified": {"type": "/type/datetime", "value": "2010-07-22T14:02:59.805347"}, "latest_revision": 3, "key": "/works/OL10312717W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4268232A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T02:45:43.867257"}, "title": "To His Excellency Richard Earl of Bellomont, capt. general and governor in chief of His Majesties province of New-York, &c", "subject_places": ["New York (State)"], "subjects": ["Politics and government"], "subject_times": ["Colonial period, ca. 1600-1775", "To 1775"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10312760W 3 2010-07-22T14:02:59.805347 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:45:43.867257"}, "subjects": ["Instruction and study", "Harpsichord", "Harmony", "Continuo"], "latest_revision": 3, "key": "/works/OL10312760W", "title": "Le\u00e7ons de clavecin et principes d'harmonie", "subject_times": ["To 1800"], "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4268238A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-07-22T14:02:59.805347"}, "revision": 3}
+/type/work /works/OL10312980W 1 2009-12-11T02:45:43.867257 {"title": "A charge delivered at Tooting", "created": {"type": "/type/datetime", "value": "2009-12-11T02:45:43.867257"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:45:43.867257"}, "latest_revision": 1, "key": "/works/OL10312980W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4268291A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10313006W 1 2009-12-11T02:45:43.867257 {"title": "Domestick peace the best return for deliverance from foreign war", "created": {"type": "/type/datetime", "value": "2009-12-11T02:45:43.867257"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:45:43.867257"}, "latest_revision": 1, "key": "/works/OL10313006W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4268296A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10313099W 1 2009-12-11T02:45:43.867257 {"title": "An address from a clergyman to his parishioners, by William Bromley Cadogan, ..", "created": {"type": "/type/datetime", "value": "2009-12-11T02:45:43.867257"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:45:43.867257"}, "latest_revision": 1, "key": "/works/OL10313099W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4268321A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10313218W 1 2009-12-11T02:45:43.867257 {"title": "A voyage up the Thames", "created": {"type": "/type/datetime", "value": "2009-12-11T02:45:43.867257"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:45:43.867257"}, "latest_revision": 1, "key": "/works/OL10313218W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4268349A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10313369W 1 2009-12-11T02:45:48.124509 {"title": "The preservation of St. Paul from shipwreck on the island of Melita. A sermon, preached at the opening of the Chapel of the Royal Hospital for Seamen at Greenwich, ... on Sunday the 20th day of September, 1789. By the Rev. John Cooke, ..", "created": {"type": "/type/datetime", "value": "2009-12-11T02:45:48.124509"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:45:48.124509"}, "latest_revision": 1, "key": "/works/OL10313369W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4268375A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10313415W 1 2009-12-11T02:45:48.124509 {"title": "The five strange wonders of the world, or, A new merry book of all fives", "created": {"type": "/type/datetime", "value": "2009-12-11T02:45:48.124509"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:45:48.124509"}, "latest_revision": 1, "key": "/works/OL10313415W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4268391A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10313518W 1 2009-12-11T02:45:48.124509 {"title": "The happy exchange", "created": {"type": "/type/datetime", "value": "2009-12-11T02:45:48.124509"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:45:48.124509"}, "latest_revision": 1, "key": "/works/OL10313518W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4268412A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10313555W 3 2010-07-22T14:02:59.805347 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:45:48.124509"}, "subjects": ["Explorers"], "subject_people": ["Hugh Clapperton (1788-1827)"], "key": "/works/OL10313555W", "title": "An interesting centenary", "latest_revision": 3, "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4268423A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-07-22T14:02:59.805347"}, "revision": 3}
+/type/work /works/OL10313587W 3 2010-07-22T14:02:59.805347 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:45:48.124509"}, "subject_places": ["Great Britain"], "subjects": ["Warrants (Law)"], "latest_revision": 3, "key": "/works/OL10313587W", "title": "A letter from Candor, to the Public advertiser", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4268434A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-07-22T14:02:59.805347"}, "revision": 3}
+/type/work /works/OL1031366W 1 2009-12-09T19:46:19.833939 {"title": "Laporan perkembangan pelaksanaan program pembangunan Departemen Dalam Negeri untuk bahan R.A.P.B.N., 1979/1980", "created": {"type": "/type/datetime", "value": "2009-12-09T19:46:19.833939"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:46:19.833939"}, "latest_revision": 1, "key": "/works/OL1031366W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL99809A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10313826W 1 2009-12-11T02:45:48.124509 {"title": "Letters and conversations between several young ladies, on interesting and improving subjects", "created": {"type": "/type/datetime", "value": "2009-12-11T02:45:48.124509"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:45:48.124509"}, "latest_revision": 1, "key": "/works/OL10313826W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4268535A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10314123W 1 2009-12-11T02:45:48.124509 {"title": "A brief account of the dreadful fire at Blandford-Forum", "created": {"type": "/type/datetime", "value": "2009-12-11T02:45:48.124509"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:45:48.124509"}, "latest_revision": 1, "key": "/works/OL10314123W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4268650A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10314455W 1 2009-12-11T02:45:51.721563 {"title": "A sermon, preached at the parish church of St. Mary, in Beverley", "created": {"type": "/type/datetime", "value": "2009-12-11T02:45:51.721563"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:45:51.721563"}, "latest_revision": 1, "key": "/works/OL10314455W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4268744A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1031451W 1 2009-12-09T19:46:19.833939 {"title": "Perhiasan bumi", "created": {"type": "/type/datetime", "value": "2009-12-09T19:46:19.833939"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:46:19.833939"}, "latest_revision": 1, "key": "/works/OL1031451W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL99815A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10314600W 3 2010-07-22T14:02:59.805347 {"last_modified": {"type": "/type/datetime", "value": "2010-07-22T14:02:59.805347"}, "title": "An essay upon the action of an orator, as to his pronunciation & gesture", "created": {"type": "/type/datetime", "value": "2009-12-11T02:45:51.721563"}, "subjects": ["Early works to 1800", "Oratory", "Elocution"], "latest_revision": 3, "key": "/works/OL10314600W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4268789A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1031469W 5 2020-11-30T07:21:41.132943 {"description": {"type": "/type/text", "value": "Criticism of poetry of Indonesian women poets."}, "last_modified": {"type": "/type/datetime", "value": "2020-11-30T07:21:41.132943"}, "title": "Wanita penyair Indonesia", "created": {"type": "/type/datetime", "value": "2009-12-09T20:08:38.778809"}, "covers": [3761071], "subject_places": ["Indonesia"], "subjects": ["Indonesian poetry", "History and criticism", "Women authors", "Women and literature"], "latest_revision": 5, "key": "/works/OL1031469W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL99815A"}}], "subject_times": ["20th century"], "type": {"key": "/type/work"}, "revision": 5}
+/type/work /works/OL10315966W 1 2009-12-11T02:45:55.566133 {"title": "A sermon against self-murder", "created": {"type": "/type/datetime", "value": "2009-12-11T02:45:55.566133"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:45:55.566133"}, "latest_revision": 1, "key": "/works/OL10315966W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4269156A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10316074W 1 2009-12-11T02:45:55.566133 {"title": "A treatise on the use and management of a razor", "created": {"type": "/type/datetime", "value": "2009-12-11T02:45:55.566133"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:45:55.566133"}, "latest_revision": 1, "key": "/works/OL10316074W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4269192A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10316080W 1 2009-12-11T02:45:55.566133 {"title": "A sermon preach'd at the cathedral-church of Norwich, on Thursday, Nov. 5. 1724", "created": {"type": "/type/datetime", "value": "2009-12-11T02:45:55.566133"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:45:55.566133"}, "latest_revision": 1, "key": "/works/OL10316080W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4269194A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10316218W 3 2010-07-22T14:03:32.408755 {"last_modified": {"type": "/type/datetime", "value": "2010-07-22T14:03:32.408755"}, "title": "( Theos ephanerothe en sarki)", "created": {"type": "/type/datetime", "value": "2009-12-11T02:45:55.566133"}, "subjects": ["Criticism, interpretation", "Bible"], "latest_revision": 3, "key": "/works/OL10316218W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4269217A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1031641W 1 2009-12-09T19:46:19.833939 {"title": "Hubungan antara paparan polusi udara dengan kapasitas vital paru pada penyapu jalan di Kotamadya Semarang", "created": {"type": "/type/datetime", "value": "2009-12-09T19:46:19.833939"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:46:19.833939"}, "latest_revision": 1, "key": "/works/OL1031641W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL99891A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10316716W 1 2009-12-11T02:45:59.975346 {"title": "A narrative of the dispute in the corporation of Kinsale. In a letter from a buff at Kinsale, to his friend in Dublin", "created": {"type": "/type/datetime", "value": "2009-12-11T02:45:59.975346"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:45:59.975346"}, "latest_revision": 1, "key": "/works/OL10316716W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4269348A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10316904W 1 2009-12-11T02:45:59.975346 {"title": "A sermon preach'd at St. Clement-danes, the 29th of Sept. 1700", "created": {"type": "/type/datetime", "value": "2009-12-11T02:45:59.975346"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:45:59.975346"}, "latest_revision": 1, "key": "/works/OL10316904W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4269404A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10317148W 1 2009-12-11T02:45:59.975346 {"title": "A treatise of the genders of Latin nouns: by way of examination of Lilly's Grammar rules, commonly called, Propria qu\u00e6 maribus. Being a specimen of Grammatical commentaries, intended to be published by way of subscription upon the whole grammar. ... By Ric. Johnson, ..", "created": {"type": "/type/datetime", "value": "2009-12-11T02:45:59.975346"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:45:59.975346"}, "latest_revision": 1, "key": "/works/OL10317148W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4269463A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10317357W 3 2010-07-22T14:03:32.408755 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:46:06.008766"}, "subjects": ["Sermons, English", "Repentance", "Sermons", "Funeral sermons", "English Sermons"], "latest_revision": 3, "key": "/works/OL10317357W", "title": "The great danger and uncertainty of death-bed repentance", "subject_times": ["17th century"], "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4269535A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-07-22T14:03:32.408755"}, "revision": 3}
+/type/work /works/OL10317888W 1 2009-12-11T02:46:06.008766 {"title": "Religion and loyalty inseparable", "created": {"type": "/type/datetime", "value": "2009-12-11T02:46:06.008766"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:46:06.008766"}, "latest_revision": 1, "key": "/works/OL10317888W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4269772A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10317952W 1 2009-12-11T02:46:06.008766 {"title": "Answers for Thomas Traill, merchant in Kirkwall; to the petition of Robert Baikie, Esquire, of Tankerness", "created": {"type": "/type/datetime", "value": "2009-12-11T02:46:06.008766"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:46:06.008766"}, "latest_revision": 1, "key": "/works/OL10317952W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4269808A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10318188W 1 2009-12-11T02:46:06.008766 {"title": "Astrologus Britannicus: or an almanack for the year of our redemption, 1712, ... To which is added an answer to Mr. Whalley, ... By Richard Gibson, ..", "created": {"type": "/type/datetime", "value": "2009-12-11T02:46:06.008766"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:46:06.008766"}, "latest_revision": 1, "key": "/works/OL10318188W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4269916A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10318537W 3 2010-07-22T14:03:32.408755 {"last_modified": {"type": "/type/datetime", "value": "2010-07-22T14:03:32.408755"}, "latest_revision": 3, "key": "/works/OL10318537W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4270037A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T02:46:10.588726"}, "title": "Memoir of Mowhee", "subject_places": ["New Zealand"], "subjects": ["Christian converts"], "subject_people": ["Mowhee (1796?-1816)"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10318643W 1 2009-12-11T02:46:10.588726 {"title": "William Gray, at the Bible in Canon-Alley, against the north-door of St. Paul's, London, book-binder, binds and sells bibles, common prayers, and testaments, ..", "created": {"type": "/type/datetime", "value": "2009-12-11T02:46:10.588726"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:46:10.588726"}, "latest_revision": 1, "key": "/works/OL10318643W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4270066A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10318765W 2 2022-01-16T11:34:54.602881 {"title": "Further correction of the Vicar of Banbury, in a reply to his third pamphlet intituled, The plain-dealing of the quakers, &c. By Richard Vivers", "key": "/works/OL10318765W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4270115A"}}], "type": {"key": "/type/work"}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T02:46:10.588726"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-16T11:34:54.602881"}}
+/type/work /works/OL10319207W 1 2009-12-11T02:46:10.588726 {"title": "Ern. Sal. Cypriani dissertatio de propagatione h\u00e6resium per cantilenas. Accedit Cunr. Theodorici oratio de mixta h\u00e6reticorum prudentia", "created": {"type": "/type/datetime", "value": "2009-12-11T02:46:10.588726"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:46:10.588726"}, "latest_revision": 1, "key": "/works/OL10319207W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4270265A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10319208W 3 2010-07-22T14:03:32.408755 {"last_modified": {"type": "/type/datetime", "value": "2010-07-22T14:03:32.408755"}, "title": "Pr\u030ceswe\u030cdc\u030cuyjcy\u0301 nauc\u030ceni\u0301 o p\u00b0uwodu a zr\u00b0ustu Papez\u030cstwa", "created": {"type": "/type/datetime", "value": "2009-12-11T02:46:10.588726"}, "subjects": ["Controversial literature", "Early works to 1800", "Papacy", "Catholic Church"], "latest_revision": 3, "key": "/works/OL10319208W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4270265A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10319450W 1 2009-12-11T02:46:15.486689 {"title": "Democritus: or, the laughing philosopher", "created": {"type": "/type/datetime", "value": "2009-12-11T02:46:15.486689"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:46:15.486689"}, "latest_revision": 1, "key": "/works/OL10319450W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4270365A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10319625W 3 2010-07-22T14:03:32.408755 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:46:15.486689"}, "subject_places": ["Scotland"], "subjects": ["Friendly societies", "Annuities", "Societies", "Insurance, life"], "latest_revision": 3, "key": "/works/OL10319625W", "title": "Report on friendly or benefit societies exhibiting the law of sickness, as deduced from returns by friendly societies in different parts of Scotland : to which are subjoined tables, shewing the rates of contribution necessary for the different allowances", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4270433A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-07-22T14:03:32.408755"}, "revision": 3}
+/type/work /works/OL10320014W 1 2009-12-11T02:46:15.486689 {"title": "A sermon at the funeral of the Lady Dorothy Norton", "created": {"type": "/type/datetime", "value": "2009-12-11T02:46:15.486689"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:46:15.486689"}, "latest_revision": 1, "key": "/works/OL10320014W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4270561A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1032030W 1 2009-12-09T19:46:19.833939 {"title": "Pengukuran kebutuhan (need assessment) untuk perancangan intervensi sosial dan perilaku penurunan resiko tindak kekerasan dalam keluarga pada ibu dan anak di Daerah Istimewa Yogyakarta", "created": {"type": "/type/datetime", "value": "2009-12-09T19:46:19.833939"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:46:19.833939"}, "latest_revision": 1, "key": "/works/OL1032030W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL100061A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10320766W 1 2009-12-11T02:46:20.205286 {"title": "A perswasive to moderation and forbearance in love. Among the divided forms of Christians. By ... Mr. Jeremiah White, ..", "created": {"type": "/type/datetime", "value": "2009-12-11T02:46:20.205286"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:46:20.205286"}, "latest_revision": 1, "key": "/works/OL10320766W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4270833A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1032089W 1 2009-12-09T19:46:19.833939 {"title": "Sikap bahasa wanita keturunan Cina di Surakarta terhadap bahasa Jawa", "created": {"type": "/type/datetime", "value": "2009-12-09T19:46:19.833939"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:46:19.833939"}, "latest_revision": 1, "key": "/works/OL1032089W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL100083A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10321360W 1 2009-12-11T02:46:25.908022 {"title": "The case of Sir John Lambert, Bart", "created": {"type": "/type/datetime", "value": "2009-12-11T02:46:25.908022"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:46:25.908022"}, "latest_revision": 1, "key": "/works/OL10321360W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4271044A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10321624W 3 2010-07-22T14:04:10.686352 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:46:25.908022"}, "subjects": ["Religion and ethics"], "subject_people": ["Henry Home Kames Lord (1696-1782)", "David Hume (1711-1776)"], "key": "/works/OL10321624W", "title": "An analysis of the moral and religious sentiments contained in the writings of Sopho, and David Hume", "latest_revision": 3, "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4271167A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-07-22T14:04:10.686352"}, "revision": 3}
+/type/work /works/OL10321886W 3 2010-07-22T14:04:10.686352 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:46:25.908022"}, "subject_places": ["England"], "subjects": ["Faith", "Calvinism", "Biblical teaching"], "latest_revision": 3, "key": "/works/OL10321886W", "title": "Preparation to conversion, or, Faith's harbinger", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4271289A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-07-22T14:04:10.686352"}, "revision": 3}
+/type/work /works/OL10321989W 1 2009-12-11T02:46:25.908022 {"title": "A letter from an English gentleman in Dublin", "created": {"type": "/type/datetime", "value": "2009-12-11T02:46:25.908022"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:46:25.908022"}, "latest_revision": 1, "key": "/works/OL10321989W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4271336A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10322099W 1 2009-12-11T02:46:25.908022 {"title": "Tetelestai: the final close. A poem", "created": {"type": "/type/datetime", "value": "2009-12-11T02:46:25.908022"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:46:25.908022"}, "latest_revision": 1, "key": "/works/OL10322099W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4271374A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1032234W 1 2009-12-09T19:46:19.833939 {"title": "Aus", "created": {"type": "/type/datetime", "value": "2009-12-09T19:46:19.833939"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:46:19.833939"}, "latest_revision": 1, "key": "/works/OL1032234W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL100133A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10322453W 1 2009-12-11T02:46:32.813566 {"title": "The snuff box, or, A trip to Bath", "created": {"type": "/type/datetime", "value": "2009-12-11T02:46:32.813566"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:46:32.813566"}, "latest_revision": 1, "key": "/works/OL10322453W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4271560A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10323128W 4 2021-09-04T05:07:27.094868 {"title": "Memorial sketch of Hyde Park, Mass., for the first twenty years of its corporate existence [1868-1888]", "subjects": ["Statistics", "History", "History. [from old catalog]"], "key": "/works/OL10323128W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4272070A"}}], "type": {"key": "/type/work"}, "covers": [6538509], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T02:46:32.813566"}, "last_modified": {"type": "/type/datetime", "value": "2021-09-04T05:07:27.094868"}}
+/type/work /works/OL10323416W 3 2021-09-06T00:48:23.243861 {"title": "Practice in the United States Patent Office", "subjects": ["Patent laws and legislation"], "key": "/works/OL10323416W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4272222A"}}], "type": {"key": "/type/work"}, "covers": [6553219], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T02:46:39.142381"}, "last_modified": {"type": "/type/datetime", "value": "2021-09-06T00:48:23.243861"}}
+/type/work /works/OL10323507W 4 2022-12-28T17:13:12.318690 {"title": "Abraham Lincoln", "covers": [5927583], "key": "/works/OL10323507W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4272281A"}}], "type": {"key": "/type/work"}, "subjects": ["Influence", "Sermons", "Fast-day sermons"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T02:46:39.142381"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-28T17:13:12.318690"}}
+/type/work /works/OL10323689W 4 2012-06-08T22:37:01.193561 {"last_modified": {"type": "/type/datetime", "value": "2012-06-08T22:37:01.193561"}, "title": "Water treatment plant design", "created": {"type": "/type/datetime", "value": "2009-12-11T02:46:39.142381"}, "subjects": ["Water treatment plants"], "latest_revision": 4, "key": "/works/OL10323689W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL57175A"}}], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL10323830W 4 2022-10-05T04:40:07.880593 {"key": "/works/OL10323830W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4272523A"}}], "title": "M\u00e9moires Richard Nixon", "subjects": ["\u00c9tats-Unis", "Biographies", "Pr\u00e9sidents", "Politique et gouvernement", "Presidents", "Biography", "Politics and government", "Vie politique", "Document", "1974", "Politique \u00e9trang\u00e8re", "Sources"], "subject_people": ["Richard M. Nixon (1913-1994)"], "subject_times": ["1945-"], "type": {"key": "/type/work"}, "covers": [12929832], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T02:46:39.142381"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-05T04:40:07.880593"}}
+/type/work /works/OL10323888W 2 2012-08-09T09:57:42.467061 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:46:39.142381"}, "subjects": ["Death and burial"], "latest_revision": 2, "key": "/works/OL10323888W", "title": "A seven days' vision at the death of Abraham Lincoln", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4272563A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-08-09T09:57:42.467061"}, "covers": [7217051], "revision": 2}
+/type/work /works/OL10324064W 1 2009-12-11T02:46:39.142381 {"title": "Building code requirements for reinforced concrete (ACI 318-51)", "created": {"type": "/type/datetime", "value": "2009-12-11T02:46:39.142381"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:46:39.142381"}, "latest_revision": 1, "key": "/works/OL10324064W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4272678A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10324191W 4 2012-08-09T09:52:47.173253 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:46:39.142381"}, "subjects": ["Military pensions"], "latest_revision": 4, "key": "/works/OL10324191W", "title": "Service pension", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4272768A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-08-09T09:52:47.173253"}, "covers": [6078064], "revision": 4}
+/type/work /works/OL10324384W 3 2021-09-01T22:35:56.893256 {"title": "A history of northwest Ohio", "subjects": ["Biography", "History"], "key": "/works/OL10324384W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4272905A"}}], "type": {"key": "/type/work"}, "covers": [6513260], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T02:46:46.283509"}, "last_modified": {"type": "/type/datetime", "value": "2021-09-01T22:35:56.893256"}}
+/type/work /works/OL10324571W 2 2012-08-08T08:34:49.262699 {"title": "The Oraibi Soyal ceremony", "created": {"type": "/type/datetime", "value": "2009-12-11T02:46:46.283509"}, "covers": [7209539], "last_modified": {"type": "/type/datetime", "value": "2012-08-08T08:34:49.262699"}, "latest_revision": 2, "key": "/works/OL10324571W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4273037A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10324784W 3 2010-07-22T14:04:45.738469 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:46:46.283509"}, "subjects": ["Epistolary poetry, Latin", "Latin Epistolary poetry"], "subject_people": ["Horace"], "key": "/works/OL10324784W", "title": "Die siebente Epistel im ersten Buche des Horaz", "latest_revision": 3, "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4273216A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-07-22T14:04:45.738469"}, "revision": 3}
+/type/work /works/OL10324797W 2 2012-08-07T03:30:15.144973 {"title": "The last straw", "created": {"type": "/type/datetime", "value": "2009-12-11T02:46:46.283509"}, "covers": [7199743], "last_modified": {"type": "/type/datetime", "value": "2012-08-07T03:30:15.144973"}, "latest_revision": 2, "key": "/works/OL10324797W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4273226A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10325084W 3 2010-04-28T07:11:09.867398 {"title": "De ratione Herodotea praepositionibus utendi a scriptoribus Atticis diversa", "created": {"type": "/type/datetime", "value": "2009-12-11T02:46:46.283509"}, "covers": [5928214], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:11:09.867398"}, "latest_revision": 3, "key": "/works/OL10325084W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4273407A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10325191W 3 2010-07-22T14:04:45.738469 {"last_modified": {"type": "/type/datetime", "value": "2010-07-22T14:04:45.738469"}, "title": "Rodney and Frances", "created": {"type": "/type/datetime", "value": "2009-12-11T02:46:46.283509"}, "subjects": ["Canadian fiction (English), CIHM", "Roman canadien-anglais, ICMH"], "latest_revision": 3, "key": "/works/OL10325191W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4273471A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10325322W 2 2022-11-17T20:24:21.396628 {"title": "Designated assassin", "key": "/works/OL10325322W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4273553A"}}], "type": {"key": "/type/work"}, "subjects": ["Fiction, mystery & detective, general"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T02:47:04.244363"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T20:24:21.396628"}}
+/type/work /works/OL10325692W 3 2010-04-28T07:11:09.867398 {"title": "Napoleon III und sein Hof", "created": {"type": "/type/datetime", "value": "2009-12-11T02:47:04.244363"}, "covers": [5747413], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:11:09.867398"}, "latest_revision": 3, "key": "/works/OL10325692W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4273786A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10325729W 3 2010-04-28T07:11:09.867398 {"title": "Society for the Improvement of the Condition of the Labouring Classes", "created": {"type": "/type/datetime", "value": "2009-12-11T02:47:04.244363"}, "covers": [5929450], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:11:09.867398"}, "latest_revision": 3, "key": "/works/OL10325729W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4273808A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10325772W 3 2010-04-28T07:11:09.867398 {"title": "Arrangements for the memorial address on the life and character of James Abram Garfield, to be delivered before both houses of Congress, at their request, in the hall of the House of representatives", "created": {"type": "/type/datetime", "value": "2009-12-11T02:47:04.244363"}, "covers": [5929551], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:11:09.867398"}, "latest_revision": 3, "key": "/works/OL10325772W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4273843A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10326285W 4 2012-08-07T16:59:27.970207 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:47:15.949576"}, "subjects": ["Moral education (Elementary)", "Education", "Religious education of children", "Handbooks, manuals"], "latest_revision": 4, "key": "/works/OL10326285W", "title": "Manuel de pedagogie et de methodique generale", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4274245A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-08-07T16:59:27.970207"}, "covers": [5775558], "revision": 4}
+/type/work /works/OL10326560W 4 2012-08-07T03:06:47.164569 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:47:15.949576"}, "subjects": ["Industries", "Social problems", "Working class"], "latest_revision": 4, "key": "/works/OL10326560W", "title": "The larger liberalism", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4274413A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-08-07T03:06:47.164569"}, "covers": [5931424], "revision": 4}
+/type/work /works/OL10326668W 5 2013-08-30T18:31:47.856766 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:47:15.949576"}, "subjects": ["Politics and government", "Social life and customs"], "latest_revision": 5, "key": "/works/OL10326668W", "title": "La Hongrie politique et sociale", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1150781A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2013-08-30T18:31:47.856766"}, "covers": [5932075], "revision": 5}
+/type/work /works/OL10326747W 5 2022-12-27T10:01:20.594059 {"subjects": ["Christ Church Priory (Canterbury, England)", "Divorce", "History"], "key": "/works/OL10326747W", "title": "Christ church letters", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4274555A"}}], "type": {"key": "/type/work"}, "covers": [5932278], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2009-12-11T02:47:15.949576"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-27T10:01:20.594059"}}
+/type/work /works/OL10326887W 1 2009-12-11T02:47:15.949576 {"title": "Les loups et les brebis, ou, La nuit d'\u00e9t\u00e9", "created": {"type": "/type/datetime", "value": "2009-12-11T02:47:15.949576"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:47:15.949576"}, "latest_revision": 1, "key": "/works/OL10326887W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4274665A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10327602W 4 2012-08-09T09:23:16.241014 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:47:23.790222"}, "subjects": ["World War, 1914-1918"], "latest_revision": 4, "key": "/works/OL10327602W", "title": "Serbia crucified", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4275168A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-08-09T09:23:16.241014"}, "covers": [5934538], "revision": 4}
+/type/work /works/OL10327848W 2 2012-08-02T12:37:34.037878 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:47:23.790222"}, "subjects": ["Episcopal Church", "Episcopal Church. Diocese of New York", "History"], "latest_revision": 2, "key": "/works/OL10327848W", "title": "The centennial history of the Protestant Episcopal Church in the Diocese of New York, 1785-1885", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4275369A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-08-02T12:37:34.037878"}, "covers": [7175244], "revision": 2}
+/type/work /works/OL10328324W 3 2010-07-22T14:05:38.277740 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:47:29.682356"}, "subject_places": ["Algeria"], "subjects": ["Botany"], "latest_revision": 3, "key": "/works/OL10328324W", "title": "Flore de l'Alg\u00e9rie, ou, Catalogue des plantes indig\u00e8nes du royaume d'Alger", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4275761A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-07-22T14:05:38.277740"}, "revision": 3}
+/type/work /works/OL10328537W 3 2010-04-28T07:11:09.867398 {"title": "Die Flora von Bayern", "created": {"type": "/type/datetime", "value": "2009-12-11T02:47:29.682356"}, "covers": [5935111], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:11:09.867398"}, "latest_revision": 3, "key": "/works/OL10328537W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4275809A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1032856W 3 2010-07-22T14:05:38.277740 {"last_modified": {"type": "/type/datetime", "value": "2010-07-22T14:05:38.277740"}, "title": "Jalai Jako' Iban", "created": {"type": "/type/datetime", "value": "2009-12-09T20:09:08.202689"}, "subjects": ["Iban language", "Grammar"], "latest_revision": 3, "key": "/works/OL1032856W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL100325A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10328729W 20 2022-12-22T21:22:28.415320 {"title": "Laws", "covers": [8246112], "subject_places": ["Iran", "The State"], "subjects": ["Constitutional law", "Constitutional law.", "Early works to 1700", "Early works to 1800", "History", "Political science", "Religion and politics", "Statutes", "The State", "Utopias", "State, the", "Law, philosophy", "Political science, early works to 1800", "Natural law", "Political science, philosophy", "Philosophy", "Politische Philosophie", "Natural law (Philosophy)", "Leges (Plato)"], "subject_people": ["Plato", "Platon (0427?-0348? av. J.-C.)."], "key": "/works/OL10328729W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL189658A"}}], "subject_times": ["To 640"], "type": {"key": "/type/work"}, "latest_revision": 20, "revision": 20, "created": {"type": "/type/datetime", "value": "2009-12-11T02:47:29.682356"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-22T21:22:28.415320"}}
+/type/work /works/OL10328753W 4 2012-08-02T15:47:34.521856 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:47:29.682356"}, "subjects": ["Christian union", "Congresses"], "latest_revision": 4, "key": "/works/OL10328753W", "title": "Church federation, Inter-church conference on federation, New York, November 15-21, 1905", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4275921A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-08-02T15:47:34.521856"}, "covers": [5935539], "revision": 4}
+/type/work /works/OL10328816W 5 2012-11-23T10:39:09.369881 {"last_modified": {"type": "/type/datetime", "value": "2012-11-23T10:39:09.369881"}, "title": "Aeschyli Tragoediae", "created": {"type": "/type/datetime", "value": "2009-12-11T02:47:29.682356"}, "subjects": ["Drama", "Greek Mythology", "Greek drama (Tragedy)"], "latest_revision": 5, "key": "/works/OL10328816W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL74434A"}}], "type": {"key": "/type/work"}, "revision": 5}
+/type/work /works/OL10328951W 3 2010-04-28T07:11:09.867398 {"title": "On rhythm science", "created": {"type": "/type/datetime", "value": "2009-12-11T02:47:29.682356"}, "covers": [5935749], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:11:09.867398"}, "latest_revision": 3, "key": "/works/OL10328951W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4275986A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10329334W 1 2009-12-11T02:47:37.011212 {"title": "Il solco", "created": {"type": "/type/datetime", "value": "2009-12-11T02:47:37.011212"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:47:37.011212"}, "latest_revision": 1, "key": "/works/OL10329334W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4276330A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10330391W 3 2010-07-22T14:06:12.445162 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:47:42.697945"}, "subject_places": ["United States"], "subjects": ["Coastal zone management", "Law and legislation", "United States", "United States. National Oceanic and Atmospheric Administration"], "latest_revision": 3, "key": "/works/OL10330391W", "title": "Coastal Zone Management Reauthorization Act of 1985", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4277023A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-07-22T14:06:12.445162"}, "revision": 3}
+/type/work /works/OL10330418W 3 2010-07-22T14:06:12.445162 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:47:42.697945"}, "subject_places": ["Lake States"], "subjects": ["Lake States", "Wildlife conservation", "Tissue banks", "Law and legislation", "Wildlife research", "Great Lakes Fish and Wildlife Tissue Bank"], "latest_revision": 3, "key": "/works/OL10330418W", "title": "The Great Lakes Fish and Wildlife Tissue Bank Act", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4277023A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-07-22T14:06:12.445162"}, "revision": 3}
+/type/work /works/OL10330730W 3 2010-04-28T07:11:09.867398 {"title": "Tracts for the times", "created": {"type": "/type/datetime", "value": "2009-12-11T02:47:42.697945"}, "covers": [5751444], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:11:09.867398"}, "latest_revision": 3, "key": "/works/OL10330730W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4277222A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10331025W 5 2020-08-11T09:56:22.681134 {"covers": [5776896], "last_modified": {"type": "/type/datetime", "value": "2020-08-11T09:56:22.681134"}, "latest_revision": 5, "key": "/works/OL10331025W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4277404A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T02:47:42.697945"}, "title": "A digest of the decisions of the Railroad commission of Wisconsin", "subject_places": ["Wisconsin"], "subjects": ["Railroad law", "Railroads"], "type": {"key": "/type/work"}, "revision": 5}
+/type/work /works/OL1033112W 1 2009-12-09T19:46:45.540369 {"title": "Sistem dukungan masyarakat terhadap wanita pekerja di Kotamadya Surabaya", "created": {"type": "/type/datetime", "value": "2009-12-09T19:46:45.540369"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:46:45.540369"}, "latest_revision": 1, "key": "/works/OL1033112W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL100394A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1033131W 1 2009-12-09T19:46:45.540369 {"title": "Kepercayaan eskhatologis orang Islam Jawa", "created": {"type": "/type/datetime", "value": "2009-12-09T19:46:45.540369"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:46:45.540369"}, "latest_revision": 1, "key": "/works/OL1033131W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL100406A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1033146W 1 2009-12-09T19:46:45.540369 {"title": "Desain percepatan wajib belajar pendidikan dasar 9 tahun di Propinsi Jawa Timur", "created": {"type": "/type/datetime", "value": "2009-12-09T19:46:45.540369"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:46:45.540369"}, "latest_revision": 1, "key": "/works/OL1033146W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL100414A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10331538W 5 2021-10-05T11:18:07.853233 {"title": "A national system of education. --", "covers": [5777823], "key": "/works/OL10331538W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4277777A"}}], "type": {"key": "/type/work"}, "subjects": ["Education, great britain"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2009-12-11T02:47:47.670340"}, "last_modified": {"type": "/type/datetime", "value": "2021-10-05T11:18:07.853233"}}
+/type/work /works/OL10332359W 4 2020-08-18T15:21:12.263946 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:47:54.535787"}, "subjects": ["Poetry (poetic works by one author)"], "latest_revision": 4, "key": "/works/OL10332359W", "title": "Guillevic", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4278200A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-08-18T15:21:12.263946"}, "covers": [1534719], "revision": 4}
+/type/work /works/OL10332889W 3 2010-04-28T07:11:09.867398 {"title": "Historic discourse delivered at the quarter century anniversary, of the second Presbyterian Church, Terre Haute, Indiana, December 27, 1873", "created": {"type": "/type/datetime", "value": "2009-12-11T02:47:54.535787"}, "covers": [6021841], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:11:09.867398"}, "latest_revision": 3, "key": "/works/OL10332889W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4278526A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1033299W 2 2020-11-27T11:05:14.918118 {"description": {"type": "/type/text", "value": "Social service for the aged in Central Java Province."}, "title": "Penelitian tentang pelaksanaan pelayanan kesejahteraan sosial lanjut usia di Panti Sosial Tresna Werdha \"Wening Wardoyo\" Ungaran", "created": {"type": "/type/datetime", "value": "2009-12-09T20:09:08.202689"}, "last_modified": {"type": "/type/datetime", "value": "2020-11-27T11:05:14.918118"}, "latest_revision": 2, "key": "/works/OL1033299W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL100465A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10333506W 2 2010-01-16T03:36:51.874032 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:48:00.579138"}, "title": "Aegyptische Urkunden aus den Koeniglichen Museen zu Berlin", "last_modified": {"type": "/type/datetime", "value": "2010-01-16T03:36:51.874032"}, "latest_revision": 2, "key": "/works/OL10333506W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4278911A"}}], "type": {"key": "/type/work"}, "subjects": ["Manuscripts, Greek (Papyri)"], "revision": 2}
+/type/work /works/OL10333725W 4 2021-08-31T13:30:53.752048 {"title": "First-[fifth] report of the Record Commisssioners relative to the early town records", "covers": [5982654], "key": "/works/OL10333725W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4278998A"}}], "type": {"key": "/type/work"}, "subjects": ["Sources", "History"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T02:48:00.579138"}, "last_modified": {"type": "/type/datetime", "value": "2021-08-31T13:30:53.752048"}}
+/type/work /works/OL10334047W 3 2010-04-28T07:11:09.867398 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:48:00.579138"}, "title": "K\u00f6rperSt\u00fccke", "covers": [5287392], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:11:09.867398"}, "latest_revision": 3, "key": "/works/OL10334047W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4279244A"}}], "subject_people": ["Elfriede Jelinek (1946-)"], "type": {"key": "/type/work"}, "subjects": ["Criticism and interpretation"], "revision": 3}
+/type/work /works/OL10334187W 4 2022-07-11T03:27:15.582326 {"covers": [10356641], "key": "/works/OL10334187W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4279291A"}}], "title": "The geographic structure of southeastern North Carolina", "subject_places": ["North Carolina"], "subjects": ["Economic conditions", "Natural resources", "Economic history"], "type": {"key": "/type/work"}, "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T02:48:00.579138"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-11T03:27:15.582326"}}
+/type/work /works/OL10334200W 3 2010-12-06T07:22:44.065527 {"last_modified": {"type": "/type/datetime", "value": "2010-12-06T07:22:44.065527"}, "title": "The great debate on charter reform", "created": {"type": "/type/datetime", "value": "2009-12-11T02:48:00.579138"}, "subjects": ["Amendments", "United Nations"], "latest_revision": 3, "key": "/works/OL10334200W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4279298A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10334588W 2 2010-01-16T03:39:32.057517 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:48:03.187035"}, "title": "Geochemistry", "last_modified": {"type": "/type/datetime", "value": "2010-01-16T03:39:32.057517"}, "latest_revision": 2, "key": "/works/OL10334588W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4279350A"}}], "type": {"key": "/type/work"}, "subjects": ["Geochemistry"], "revision": 2}
+/type/work /works/OL10334979W 3 2010-12-04T00:06:54.177107 {"last_modified": {"type": "/type/datetime", "value": "2010-12-04T00:06:54.177107"}, "title": "Chan hai zhen yan", "created": {"type": "/type/datetime", "value": "2009-12-11T02:48:03.187035"}, "subjects": ["Quotations, Zen", "Quotations, maxims", "Zen Buddhism", "Zen Quotations"], "latest_revision": 3, "key": "/works/OL10334979W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4279450A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10335440W 2 2010-01-16T03:41:54.595645 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:48:06.062742"}, "title": "Jinja", "subject_places": ["Japan"], "last_modified": {"type": "/type/datetime", "value": "2010-01-16T03:41:54.595645"}, "latest_revision": 2, "key": "/works/OL10335440W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4279540A"}}], "type": {"key": "/type/work"}, "subjects": ["Shrines"], "revision": 2}
+/type/work /works/OL10335545W 2 2020-11-08T08:04:25.743376 {"last_modified": {"type": "/type/datetime", "value": "2020-11-08T08:04:25.743376"}, "title": "En-shi Eiraku taiten genzon kanmokuhy\u014d hosei", "created": {"type": "/type/datetime", "value": "2009-12-11T02:48:06.062742"}, "subjects": ["Union lists", "Yung-le ta tien", "Bibliography", "Chinese Encyclopedias and dictionaries", "Union catalogs"], "latest_revision": 2, "key": "/works/OL10335545W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4279559A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10336223W 2 2010-01-16T03:41:54.595645 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:48:06.062742"}, "title": "Himerareta Nihon kodaishi 100 no nazo", "subject_places": ["Japan"], "last_modified": {"type": "/type/datetime", "value": "2010-01-16T03:41:54.595645"}, "latest_revision": 2, "key": "/works/OL10336223W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4279698A"}}], "subject_times": ["To 794"], "type": {"key": "/type/work"}, "subjects": ["Civilization", "History"], "revision": 2}
+/type/work /works/OL10336979W 4 2021-09-18T00:21:33.698508 {"title": "Die Aufst\u00e4nde der Unfreien Arbeiter, 143-129 v.Chr", "key": "/works/OL10336979W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4279901A"}}], "type": {"key": "/type/work"}, "subjects": ["History", "Slave labor", "Slavery", "Serfdom", "Working class", "Economic conditions"], "covers": [11860096], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T02:48:14.922369"}, "last_modified": {"type": "/type/datetime", "value": "2021-09-18T00:21:33.698508"}}
+/type/work /works/OL10337020W 2 2010-01-16T03:44:16.845462 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:48:14.922369"}, "title": "Paulys real-encyclop\u00e4dic der classischen altertumswissenschaft", "last_modified": {"type": "/type/datetime", "value": "2010-01-16T03:44:16.845462"}, "latest_revision": 2, "key": "/works/OL10337020W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4279915A"}}], "type": {"key": "/type/work"}, "subjects": ["Classical dictionaries"], "revision": 2}
+/type/work /works/OL1033717W 2 2010-01-16T03:44:16.845462 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:09:32.382218"}, "title": "Toward a gender-responsive legislation", "subject_places": ["Philippines"], "last_modified": {"type": "/type/datetime", "value": "2010-01-16T03:44:16.845462"}, "latest_revision": 2, "key": "/works/OL1033717W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL100617A"}}], "type": {"key": "/type/work"}, "subjects": ["Women in development", "Equality before the law", "Sex and law", "Legal status, laws", "Women"], "revision": 2}
+/type/work /works/OL1033745W 2 2010-01-16T03:44:16.845462 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:09:32.382218"}, "title": "Special annual report on local police personnel management for the calender year 1965", "subject_places": ["Philippines"], "last_modified": {"type": "/type/datetime", "value": "2010-01-16T03:44:16.845462"}, "latest_revision": 2, "key": "/works/OL1033745W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL100624A"}}], "type": {"key": "/type/work"}, "subjects": ["Police", "Supervision of"], "revision": 2}
+/type/work /works/OL10337962W 4 2022-10-20T07:51:28.074382 {"key": "/works/OL10337962W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL45499A"}}], "title": "Ren\u00e9 Magritte, die Reize der Landschaft", "subjects": ["Landscape painting", "Peinture de paysages", "Landschaftsmalerei"], "subject_people": ["Ren\u00e9 Magritte (1898-1967)"], "subject_times": ["20th century"], "type": {"key": "/type/work"}, "covers": [12956250], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T02:48:18.827467"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-20T07:51:28.074382"}}
+/type/work /works/OL10338222W 1 2009-12-11T02:48:18.827467 {"title": "M'asal beag dubh", "created": {"type": "/type/datetime", "value": "2009-12-11T02:48:18.827467"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:48:18.827467"}, "latest_revision": 1, "key": "/works/OL10338222W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4280258A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10338832W 2 2010-01-16T03:49:23.177456 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:48:22.045592"}, "title": "Serai\ufe20a\ufe21 Shei\u012dka", "last_modified": {"type": "/type/datetime", "value": "2010-01-16T03:49:23.177456"}, "latest_revision": 2, "key": "/works/OL10338832W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4280400A"}}], "type": {"key": "/type/work"}, "subjects": ["Animals", "Children's stories, Russian", "Juvenile fiction", "Fiction"], "revision": 2}
+/type/work /works/OL10339210W 3 2022-04-10T16:08:04.122992 {"title": "Mo\u012d shchenok Trezor", "key": "/works/OL10339210W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL274931A"}}], "type": {"key": "/type/work"}, "subjects": ["Children's poetry, Russian"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T02:48:22.045592"}, "last_modified": {"type": "/type/datetime", "value": "2022-04-10T16:08:04.122992"}}
+/type/work /works/OL10339373W 7 2021-02-20T05:17:53.116160 {"title": "Somersault", "subjects": ["Religious leadersb23090133", "Fiction", "Cults", "Terrorism", "Japanese literature", "Religious life", "Spiritual life"], "key": "/works/OL10339373W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2781343A"}}], "type": {"key": "/type/work"}, "covers": [10651784], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2009-12-11T02:48:24.021368"}, "last_modified": {"type": "/type/datetime", "value": "2021-02-20T05:17:53.116160"}}
+/type/work /works/OL10339756W 1 2009-12-11T02:48:24.021368 {"title": "Casse-pipe [par] Louis-Ferdinand C\u00e9line [pseud.]", "created": {"type": "/type/datetime", "value": "2009-12-11T02:48:24.021368"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:48:24.021368"}, "latest_revision": 1, "key": "/works/OL10339756W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4280496A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10339871W 2 2010-01-16T03:49:23.177456 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:48:24.021368"}, "title": "L' art et la morale", "last_modified": {"type": "/type/datetime", "value": "2010-01-16T03:49:23.177456"}, "latest_revision": 2, "key": "/works/OL10339871W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4280500A"}}], "type": {"key": "/type/work"}, "subjects": ["Art and morals"], "revision": 2}
+/type/work /works/OL10340015W 3 2010-09-09T12:08:11.587085 {"subtitle": "Lithographies de Maurice Brianchon.", "title": "Th\u00e9\u00e2tre complet", "created": {"type": "/type/datetime", "value": "2009-12-11T02:48:24.021368"}, "last_modified": {"type": "/type/datetime", "value": "2010-09-09T12:08:11.587085"}, "latest_revision": 3, "key": "/works/OL10340015W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL48458A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10340496W 1 2009-12-11T02:48:25.942680 {"title": "Du sang, de la volupt\u00e9 et de la mort", "created": {"type": "/type/datetime", "value": "2009-12-11T02:48:25.942680"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:48:25.942680"}, "latest_revision": 1, "key": "/works/OL10340496W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4280568A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10341052W 1 2009-12-11T02:48:25.942680 {"title": "Parlamentarismo espa\u00f1ol [por] Azor\u00edn", "created": {"type": "/type/datetime", "value": "2009-12-11T02:48:25.942680"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:48:25.942680"}, "latest_revision": 1, "key": "/works/OL10341052W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4280630A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10341266W 6 2011-10-13T02:15:31.290231 {"title": "Dramas", "created": {"type": "/type/datetime", "value": "2009-12-11T02:48:25.942680"}, "covers": [6935033], "last_modified": {"type": "/type/datetime", "value": "2011-10-13T02:15:31.290231"}, "latest_revision": 6, "key": "/works/OL10341266W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4280652A"}}], "type": {"key": "/type/work"}, "revision": 6}
+/type/work /works/OL10341727W 1 2009-12-11T02:48:28.210402 {"title": "Escenas monta\u00f1esas", "created": {"type": "/type/datetime", "value": "2009-12-11T02:48:28.210402"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:48:28.210402"}, "latest_revision": 1, "key": "/works/OL10341727W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4280721A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10341884W 1 2009-12-11T02:48:28.210402 {"title": "Political and satiric verse ..", "created": {"type": "/type/datetime", "value": "2009-12-11T02:48:28.210402"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:48:28.210402"}, "latest_revision": 1, "key": "/works/OL10341884W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4280775A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10342320W 3 2010-12-06T07:22:16.503393 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:48:30.548936"}, "subjects": ["Criticism, Textual", "Textual Criticism"], "subject_people": ["William Shakespeare (1564-1616)"], "key": "/works/OL10342320W", "title": "William Shakespeare : Hamlet", "latest_revision": 3, "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4280849A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-06T07:22:16.503393"}, "revision": 3}
+/type/work /works/OL10342768W 2 2022-07-10T18:36:11.249261 {"title": "Songs", "key": "/works/OL10342768W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL3203135A"}}], "type": {"key": "/type/work"}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T02:48:30.548936"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-10T18:36:11.249261"}}
+/type/work /works/OL10342769W 3 2022-12-18T05:46:25.883101 {"title": "Songs of childhood", "key": "/works/OL10342769W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL3203135A"}}], "type": {"key": "/type/work"}, "subjects": ["Translations into English", "Children's poetry, Spanish"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T02:48:30.548936"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-18T05:46:25.883101"}}
+/type/work /works/OL10342905W 3 2011-01-16T17:54:04.434130 {"subtitle": "poems of Juan Ram\u00f3n Jimenez", "title": "Naked music", "created": {"type": "/type/datetime", "value": "2009-12-11T02:48:30.548936"}, "last_modified": {"type": "/type/datetime", "value": "2011-01-16T17:54:04.434130"}, "latest_revision": 3, "key": "/works/OL10342905W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL82891A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10343521W 2 2010-01-16T03:55:07.318892 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:48:34.415131"}, "title": "Th\u00e9orie des groupes fuchsiens", "last_modified": {"type": "/type/datetime", "value": "2010-01-16T03:55:07.318892"}, "latest_revision": 2, "key": "/works/OL10343521W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4281084A"}}], "type": {"key": "/type/work"}, "subjects": ["Automorphic functions"], "revision": 2}
+/type/work /works/OL10343751W 2 2010-01-16T03:55:07.318892 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:48:34.415131"}, "title": "Oxyurata of animals and man : part one", "last_modified": {"type": "/type/datetime", "value": "2010-01-16T03:55:07.318892"}, "latest_revision": 2, "key": "/works/OL10343751W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4281165A"}}], "type": {"key": "/type/work"}, "subjects": ["Nematoda"], "revision": 2}
+/type/work /works/OL10343863W 2 2010-01-16T03:55:07.318892 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:48:34.415131"}, "title": "A profile study of selected recreational vehicle users", "last_modified": {"type": "/type/datetime", "value": "2010-01-16T03:55:07.318892"}, "latest_revision": 2, "key": "/works/OL10343863W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4281232A"}}], "type": {"key": "/type/work"}, "subjects": ["Recreational vehicles"], "revision": 2}
+/type/work /works/OL10344102W 4 2020-09-01T21:53:22.576914 {"subtitle": "Prvn\u00ed p\u0159edn\u00e1\u0161ka cyklu \"\u010ceskoslovensk\u00e1 revoluce\" proslovena dne 12. b\u0159ezna, 1923.", "last_modified": {"type": "/type/datetime", "value": "2020-09-01T21:53:22.576914"}, "title": "Smysl \u010deskoslovensk\u00e9 revoluce", "created": {"type": "/type/datetime", "value": "2009-12-11T02:48:34.415131"}, "subject_places": ["Czechoslovakia"], "subjects": ["History"], "latest_revision": 4, "key": "/works/OL10344102W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL51034A"}}], "subject_times": ["1918-1938"], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL10344110W 3 2020-09-01T21:53:22.576914 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:48:34.415131"}, "subject_places": ["Europe"], "subjects": ["Politics and government"], "latest_revision": 3, "key": "/works/OL10344110W", "title": "Vers un r\u00e9groupement des forces en Europe?", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL51034A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-09-01T21:53:22.576914"}, "revision": 3}
+/type/work /works/OL10344753W 2 2010-01-16T03:57:29.778790 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:48:39.251853"}, "title": "Der islamische Orient", "subject_places": ["Arabian Peninsula"], "last_modified": {"type": "/type/datetime", "value": "2010-01-16T03:57:29.778790"}, "latest_revision": 2, "key": "/works/OL10344753W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4281577A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10344937W 1 2009-12-11T02:48:39.251853 {"title": "L' Approbaniste", "created": {"type": "/type/datetime", "value": "2009-12-11T02:48:39.251853"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:48:39.251853"}, "latest_revision": 1, "key": "/works/OL10344937W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4281640A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10345528W 6 2020-08-13T12:19:20.394170 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:48:43.220336"}, "subjects": ["French literature", "History and criticism", "Litt\u00e9rature fran\u00e7aise", "Histoire et critique"], "latest_revision": 6, "key": "/works/OL10345528W", "title": "\u00c9tudes sur la litt\u00e9rature fran\u00e7aise", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4281841A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-08-13T12:19:20.394170"}, "covers": [5970954], "revision": 6}
+/type/work /works/OL10345662W 2 2010-01-16T03:59:59.789711 {"title": "\"Homo Regius\" in Africa (in commemoration of the centenary of David Livingstone's death)", "created": {"type": "/type/datetime", "value": "2009-12-11T02:48:43.220336"}, "subject_places": ["Great Britain", "Africa"], "last_modified": {"type": "/type/datetime", "value": "2010-01-16T03:59:59.789711"}, "latest_revision": 2, "key": "/works/OL10345662W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4281909A"}}], "subject_people": ["David Livingstone (1813-1873)"], "type": {"key": "/type/work"}, "subjects": ["Colonies", "History"], "revision": 2}
+/type/work /works/OL10345888W 3 2010-12-06T07:27:46.967723 {"last_modified": {"type": "/type/datetime", "value": "2010-12-06T07:27:46.967723"}, "latest_revision": 3, "key": "/works/OL10345888W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4281980A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T02:48:43.220336"}, "title": "Damdiny Bi\ufe20a\ufe21mbaa", "subjects": ["Biography", "Mongolian Poets", "Poets, Mongolian"], "subject_people": ["D. Bi\ufe20a\ufe21mbaa (1936-)"], "subject_times": ["20th century"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10346062W 3 2010-12-06T07:24:28.560828 {"last_modified": {"type": "/type/datetime", "value": "2010-12-06T07:24:28.560828"}, "latest_revision": 3, "key": "/works/OL10346062W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4282041A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T02:48:43.220336"}, "title": "\u1e62altu\u1e33-n\u0101me", "subject_places": ["Turkey"], "subjects": ["Epic literature, Turkish", "Legends", "Turkish Epic literature"], "subject_people": ["Sar\u0131 Saltuk (13th cent)"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10346214W 2 2010-01-16T03:59:59.789711 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:48:43.220336"}, "title": "Kory\u014f naj\u014fn ch\u02bbilgi y\u014fn\u02begu", "subject_places": ["Korea"], "last_modified": {"type": "/type/datetime", "value": "2010-01-16T03:59:59.789711"}, "latest_revision": 2, "key": "/works/OL10346214W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4282105A"}}], "subject_times": ["Kory\u014f period, 935-1392"], "type": {"key": "/type/work"}, "subjects": ["Lacquer and lacquering", "History"], "revision": 2}
+/type/work /works/OL10346306W 2 2010-01-16T03:59:59.789711 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:48:47.055460"}, "title": "Gu jiu wen cun", "last_modified": {"type": "/type/datetime", "value": "2010-01-16T03:59:59.789711"}, "latest_revision": 2, "key": "/works/OL10346306W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4282119A"}}], "type": {"key": "/type/work"}, "subjects": ["Chinese prose literature (Selections: Extracts, etc.)", "Chinese essays (Collections)"], "revision": 2}
+/type/work /works/OL1034636W 2 2020-12-08T20:00:03.959987 {"title": "Kisah Walisongo", "key": "/works/OL1034636W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL100867A"}}], "type": {"key": "/type/work"}, "description": {"type": "/type/text", "value": "Buka"}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-09T20:09:58.676919"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-08T20:00:03.959987"}}
+/type/work /works/OL10346448W 3 2010-12-03T17:55:49.054670 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T17:55:49.054670"}, "title": "Ainu to Nihonjin", "created": {"type": "/type/datetime", "value": "2009-12-11T02:48:47.055460"}, "subjects": ["Ainu", "History", "Hokkaido, Japan", "Japan Hokkaido"], "latest_revision": 3, "key": "/works/OL10346448W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4282179A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10346992W 1 2009-12-11T02:48:47.055460 {"title": "The Da\u015bakum\u0101racarita, with a commentary", "created": {"type": "/type/datetime", "value": "2009-12-11T02:48:47.055460"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:48:47.055460"}, "latest_revision": 1, "key": "/works/OL10346992W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4282411A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10347354W 3 2010-12-06T07:23:50.174807 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:48:53.024852"}, "subjects": ["History", "Korean Painting", "Painting, Korean"], "latest_revision": 3, "key": "/works/OL10347354W", "title": "Han'guk hwaron", "subject_times": ["To 1900"], "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4282509A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-06T07:23:50.174807"}, "revision": 3}
+/type/work /works/OL10347614W 2 2010-01-16T04:02:39.856194 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:48:53.024852"}, "title": "An ethnohistorical study of the dominant community reaction to the Chinese and Japanese immigrant communities in Bellingham, Washington", "subject_places": ["Bellingham", "Washington (State)", "Bellingham (Wash.)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-16T04:02:39.856194"}, "latest_revision": 2, "key": "/works/OL10347614W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4282648A"}}], "type": {"key": "/type/work"}, "subjects": ["Public opinion", "Race relations", "Japanese", "Chinese", "Race discrimination"], "revision": 2}
+/type/work /works/OL10347691W 3 2020-04-02T20:14:59.658960 {"last_modified": {"type": "/type/datetime", "value": "2020-04-02T20:14:59.658960"}, "latest_revision": 3, "key": "/works/OL10347691W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL72078A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T02:48:53.024852"}, "title": "Autobiografia", "subject_places": ["Mexico"], "subjects": ["Biography", "Painters"], "subject_people": ["Jos\u00e9 Clemente Orozco (1883-1949)"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10347700W 3 2020-04-02T20:14:59.658960 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:48:53.024852"}, "subjects": ["Mural painting and decoration"], "subject_people": ["Jos\u00e9 Clemente Orozco (1883-1949)"], "key": "/works/OL10347700W", "title": "Orozco \"explains\"", "latest_revision": 3, "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL72078A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-04-02T20:14:59.658960"}, "revision": 3}
+/type/work /works/OL10348361W 3 2010-08-25T20:20:59.824388 {"subtitle": "shokan o t\u014dshite mita sh\u014dgai to sakuhin", "last_modified": {"type": "/type/datetime", "value": "2010-08-25T20:20:59.824388"}, "latest_revision": 3, "key": "/works/OL10348361W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4283022A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T02:48:56.655977"}, "title": "Tominaga Tar\u014d", "subjects": ["Correspondence"], "subject_people": ["Tar\u014d Tominaga (1901-1925)"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10348598W 5 2011-02-23T10:03:30.619787 {"subtitle": "report at the Conference of the Worker's Party of Korea [by] Kim Il Sung.", "last_modified": {"type": "/type/datetime", "value": "2011-02-23T10:03:30.619787"}, "latest_revision": 5, "key": "/works/OL10348598W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL290303A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T02:48:56.655977"}, "title": "The present situation and the tasks of our party", "subject_places": ["Korea (North)"], "subjects": ["Chos\u014fn Nodongdang", "Communism"], "type": {"key": "/type/work"}, "revision": 5}
+/type/work /works/OL10348943W 3 2010-12-06T07:25:29.350773 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:48:56.655977"}, "subject_places": ["Ferndale (Wash.)", "Washington (State)"], "subjects": ["Education", "Ethnic relations", "Fisheries", "Fishing", "Lummi Indians", "Social aspects", "Social aspects of Fisheries", "Social conditions"], "latest_revision": 3, "key": "/works/OL10348943W", "title": "Lummi stories from high school", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4283219A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-06T07:25:29.350773"}, "revision": 3}
+/type/work /works/OL10349415W 3 2010-12-06T07:25:40.420576 {"last_modified": {"type": "/type/datetime", "value": "2010-12-06T07:25:40.420576"}, "title": "Dainichiky\u014d k\u014dshaku zen\u02beyaku", "created": {"type": "/type/datetime", "value": "2009-12-11T02:49:00.213096"}, "subjects": ["Criticism, interpretation", "Tripi.taka"], "latest_revision": 3, "key": "/works/OL10349415W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4283288A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10349609W 2 2022-08-19T07:28:02.435907 {"title": "Akuma ga kitarite fue o fuku", "key": "/works/OL10349609W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL3162031A"}}], "type": {"key": "/type/work"}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T02:49:00.213096"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-19T07:28:02.435907"}}
+/type/work /works/OL10349647W 2 2010-01-16T04:07:24.499342 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:49:00.213096"}, "title": "Baoying xian tu jing", "last_modified": {"type": "/type/datetime", "value": "2010-01-16T04:07:24.499342"}, "latest_revision": 2, "key": "/works/OL10349647W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4283366A"}}], "type": {"key": "/type/work"}, "subjects": ["Pao-ying, China (District, Jiangsu Sheng)", "History"], "revision": 2}
+/type/work /works/OL10349803W 2 2010-01-16T04:07:24.499342 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:49:00.213096"}, "title": "Minna taihen", "subject_places": ["Africa"], "last_modified": {"type": "/type/datetime", "value": "2010-01-16T04:07:24.499342"}, "latest_revision": 2, "key": "/works/OL10349803W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4283389A"}}], "type": {"key": "/type/work"}, "subjects": ["Savanna animals"], "revision": 2}
+/type/work /works/OL10349864W 1 2009-12-11T02:49:00.213096 {"title": "Shiritsu idai satsujin jiken", "created": {"type": "/type/datetime", "value": "2009-12-11T02:49:00.213096"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:49:00.213096"}, "latest_revision": 1, "key": "/works/OL10349864W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4283400A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10349946W 3 2010-12-03T21:23:29.578066 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T21:23:29.578066"}, "latest_revision": 3, "key": "/works/OL10349946W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4283424A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T02:49:00.213096"}, "title": "Amerikan, Amerika", "subject_places": ["United States"], "subjects": ["American National characteristics", "Civilization", "National characteristics, American"], "subject_times": ["1945-"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10350007W 1 2009-12-11T02:49:00.213096 {"title": "Mitasareta seikatsu", "created": {"type": "/type/datetime", "value": "2009-12-11T02:49:00.213096"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:49:00.213096"}, "latest_revision": 1, "key": "/works/OL10350007W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4283434A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10350382W 1 2009-12-11T02:49:04.446544 {"title": "Wu hou de qing l\u00fc", "created": {"type": "/type/datetime", "value": "2009-12-11T02:49:04.446544"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:49:04.446544"}, "latest_revision": 1, "key": "/works/OL10350382W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4283462A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10351442W 2 2010-12-06T07:24:56.955696 {"last_modified": {"type": "/type/datetime", "value": "2010-12-06T07:24:56.955696"}, "title": "Knowledge of results and motor learning", "created": {"type": "/type/datetime", "value": "2009-12-11T02:49:14.193298"}, "subjects": ["Motor learning"], "latest_revision": 2, "key": "/works/OL10351442W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4283847A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10351485W 3 2010-12-03T12:31:59.927001 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:49:14.193298"}, "subjects": ["Baseball", "History", "St. Louis Cardinals (Baseball team)"], "subject_people": ["Branch Rickey (1881-1965)"], "key": "/works/OL10351485W", "title": "Branch Rickey and the St. Louis Cardinal farm system", "latest_revision": 3, "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4283887A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T12:31:59.927001"}, "revision": 3}
+/type/work /works/OL10351631W 3 2010-12-06T07:25:40.420576 {"last_modified": {"type": "/type/datetime", "value": "2010-12-06T07:25:40.420576"}, "title": "Organization and governance of men's and women's athletic programs within the Big Ten Conference", "created": {"type": "/type/datetime", "value": "2009-12-11T02:49:14.193298"}, "subjects": ["College sports", "Intercollegiate Conference of Faculty Representatives", "Management", "Organization and administration", "Sports for women"], "latest_revision": 3, "key": "/works/OL10351631W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4284018A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10351692W 2 2010-01-16T04:09:58.859120 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:49:14.193298"}, "title": "A comparison of the effectiveness of two methods of teaching selected sports activities to third and sixth grade children", "last_modified": {"type": "/type/datetime", "value": "2010-01-16T04:09:58.859120"}, "latest_revision": 2, "key": "/works/OL10351692W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4284072A"}}], "type": {"key": "/type/work"}, "subjects": ["Study and teaching", "Comparative studies", "Sports for children", "Physical education for children", "Attitude (Psychology)", "Movement education (Elementary)", "Boys", "Movement education"], "revision": 2}
+/type/work /works/OL10351893W 3 2010-12-06T07:25:29.350773 {"last_modified": {"type": "/type/datetime", "value": "2010-12-06T07:25:29.350773"}, "title": "The effects of reward/no reward, success/failure upon intrinsic motivation", "created": {"type": "/type/datetime", "value": "2009-12-11T02:49:14.193298"}, "subjects": ["Child psychology", "Failure (Psychology)", "Motivation (Psychology)", "Reward (Psychology)", "Success"], "latest_revision": 3, "key": "/works/OL10351893W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4284249A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1035224W 1 2009-12-09T19:47:35.668379 {"title": "Pemahaman muballigh tentang persoalan-persoalan teologis", "created": {"type": "/type/datetime", "value": "2009-12-09T19:47:35.668379"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:47:35.668379"}, "latest_revision": 1, "key": "/works/OL1035224W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL101018A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10352630W 3 2010-12-03T12:44:14.534093 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T12:44:14.534093"}, "title": "The effects of two instructional styles on learning and retention of a novel task", "created": {"type": "/type/datetime", "value": "2009-12-11T02:49:24.526467"}, "subjects": ["Juggling", "Learning, Psychology of", "Perceptual-motor learning", "Psychology of Learning", "Study and teaching"], "latest_revision": 3, "key": "/works/OL10352630W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4284922A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10352860W 3 2010-12-03T18:55:24.890228 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T18:55:24.890228"}, "title": "The reliability of two measures of cardiac output using CO\u2082 rebreathing", "created": {"type": "/type/datetime", "value": "2009-12-11T02:49:24.526467"}, "subjects": ["Carbon dioxide", "Carbon dioxide in the body", "Cardiac output", "Exercise", "Heart function tests", "Measurement", "Physiological aspects", "Physiological aspects of Exercise", "Physiological effect", "Respiration"], "latest_revision": 3, "key": "/works/OL10352860W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4285138A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10353013W 2 2010-01-16T04:14:48.306242 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:49:24.526467"}, "title": "Effects of hypnosis, relaxation training, or music on state anxiety and stress in female athletes", "last_modified": {"type": "/type/datetime", "value": "2010-01-16T04:14:48.306242"}, "latest_revision": 2, "key": "/works/OL10353013W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4285285A"}}], "type": {"key": "/type/work"}, "subjects": ["Women athletes", "Anxiety", "Psychology", "Stress (Psychology)", "Hypnotism", "Therapeutic use"], "revision": 2}
+/type/work /works/OL10353068W 2 2010-01-16T04:14:48.306242 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:49:24.526467"}, "title": "The effects of stimulus velocity and stimulus duration on the spatial-temporal structure and response accuracy of coincident timing responses", "last_modified": {"type": "/type/datetime", "value": "2010-01-16T04:14:48.306242"}, "latest_revision": 2, "key": "/works/OL10353068W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4285337A"}}], "type": {"key": "/type/work"}, "subjects": ["Perceptual-motor learning", "Reaction time"], "revision": 2}
+/type/work /works/OL10353375W 2 2010-01-16T04:14:48.306242 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:49:30.124645"}, "title": "Lettres sur l'unit\u00e9 du mouvement positiviste ..", "last_modified": {"type": "/type/datetime", "value": "2010-01-16T04:14:48.306242"}, "latest_revision": 2, "key": "/works/OL10353375W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4285614A"}}], "type": {"key": "/type/work"}, "subjects": ["Positivism"], "revision": 2}
+/type/work /works/OL10353942W 2 2010-01-16T04:14:48.306242 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:49:30.124645"}, "title": "[The recuyles or gaderi[n]ge to gyder of the hystoryes of Troy]", "subject_places": ["Troy (Extinct city)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-16T04:14:48.306242"}, "latest_revision": 2, "key": "/works/OL10353942W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4285938A"}}], "type": {"key": "/type/work"}, "subjects": ["Early works to 1800", "Romances"], "revision": 2}
+/type/work /works/OL10353986W 1 2009-12-11T02:49:30.124645 {"title": "Medschnun und Leila, morgenl\u00e4ndischer Liebesroman", "created": {"type": "/type/datetime", "value": "2009-12-11T02:49:30.124645"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:49:30.124645"}, "latest_revision": 1, "key": "/works/OL10353986W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4285948A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10354068W 3 2010-12-03T20:53:13.326313 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T20:53:13.326313"}, "latest_revision": 3, "key": "/works/OL10354068W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4285958A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T02:49:30.124645"}, "title": "On St. Paul's Cathedral represented by Mr. Dan. King", "subject_places": ["London (England)"], "subjects": ["History", "St. Paul's Cathedral (London, England)"], "subject_times": ["17th century"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10354189W 2 2010-12-06T07:27:46.967723 {"last_modified": {"type": "/type/datetime", "value": "2010-12-06T07:27:46.967723"}, "title": "The history of Merchant-Taylors School, from its foundation to the present time", "created": {"type": "/type/datetime", "value": "2009-12-11T02:49:30.124645"}, "subjects": ["Merchant Taylors' School, Crosby (Lancashire)"], "latest_revision": 2, "key": "/works/OL10354189W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4285996A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10354387W 2 2010-01-16T04:17:13.766876 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:49:35.760291"}, "title": "Transportation policy for a changing America", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-16T04:17:13.766876"}, "latest_revision": 2, "key": "/works/OL10354387W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4286056A"}}], "type": {"key": "/type/work"}, "subjects": ["Transportation and state"], "revision": 2}
+/type/work /works/OL10354448W 3 2010-12-06T07:27:23.373887 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:49:35.760291"}, "subject_places": ["United States"], "subjects": ["Agriculture, Cooperative", "Cooperative Agriculture", "Farm corporations", "Finance"], "latest_revision": 3, "key": "/works/OL10354448W", "title": "Financing new cooperatives", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4286086A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-06T07:27:23.373887"}, "revision": 3}
+/type/work /works/OL10354558W 2 2010-01-16T04:17:13.766876 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:49:35.760291"}, "title": "Byram's energy criterion for wildland fires", "last_modified": {"type": "/type/datetime", "value": "2010-01-16T04:17:13.766876"}, "latest_revision": 2, "key": "/works/OL10354558W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4286141A"}}], "type": {"key": "/type/work"}, "subjects": ["Mathematical models", "Forest fires", "Wildfires"], "revision": 2}
+/type/work /works/OL10354687W 2 2010-01-16T04:17:13.766876 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:49:35.760291"}, "title": "Interactive inversion of transient electromagnetic data for central-induction loop over layered earth models", "last_modified": {"type": "/type/datetime", "value": "2010-01-16T04:17:13.766876"}, "latest_revision": 2, "key": "/works/OL10354687W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4286200A"}}], "type": {"key": "/type/work"}, "subjects": ["Geomagnetism", "Computer programs"], "revision": 2}
+/type/work /works/OL10355228W 2 2010-01-16T04:17:13.766876 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:49:35.760291"}, "title": "Availability of ground-water data for Washington, 2004", "subject_places": ["Washington (State)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-16T04:17:13.766876"}, "latest_revision": 2, "key": "/works/OL10355228W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4286559A"}}], "type": {"key": "/type/work"}, "subjects": ["Groundwater", "Computer network resources", "Information services"], "revision": 2}
+/type/work /works/OL10355828W 1 2009-12-11T02:49:41.228968 {"title": "L\u00f6ns Gedenkbuch", "created": {"type": "/type/datetime", "value": "2009-12-11T02:49:41.228968"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:49:41.228968"}, "latest_revision": 1, "key": "/works/OL10355828W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4286945A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10356174W 3 2021-07-02T00:19:16.315907 {"title": "O muzyke, muzykantakh, o sebe", "subject_places": ["Armenian S.S.R."], "key": "/works/OL10356174W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL92841A"}}], "subject_people": ["Aram Il\u02b9ich Khachaturi\ufe20a\ufe21n (1903-1978)"], "type": {"key": "/type/work"}, "subjects": ["Composers", "Biography"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T02:49:41.228968"}, "last_modified": {"type": "/type/datetime", "value": "2021-07-02T00:19:16.315907"}}
+/type/work /works/OL10356393W 3 2010-12-03T21:58:13.437223 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T21:58:13.437223"}, "title": "Ling shu jing", "created": {"type": "/type/datetime", "value": "2009-12-11T02:49:45.802068"}, "subjects": ["Causes and theories of causation", "Chinese Medicine", "Cures", "Diseases", "Ling shu jing", "Medicine, Chinese"], "latest_revision": 3, "key": "/works/OL10356393W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4287151A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10356513W 2 2010-01-16T04:22:20.724931 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:49:45.802068"}, "title": "Terrestrial mammals of Washington State", "subject_places": ["Washington (State)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-16T04:22:20.724931"}, "latest_revision": 2, "key": "/works/OL10356513W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4287216A"}}], "type": {"key": "/type/work"}, "subjects": ["Mammals", "Geographical distribution", "Gap analysis (Conservation biology)", "Maps"], "revision": 2}
+/type/work /works/OL10357093W 1 2009-12-11T02:49:45.802068 {"title": "Natsu", "created": {"type": "/type/datetime", "value": "2009-12-11T02:49:45.802068"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:49:45.802068"}, "latest_revision": 1, "key": "/works/OL10357093W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4287469A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10357274W 1 2009-12-11T02:49:45.802068 {"title": "Kishibe no matsuri", "created": {"type": "/type/datetime", "value": "2009-12-11T02:49:45.802068"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:49:45.802068"}, "latest_revision": 1, "key": "/works/OL10357274W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4287510A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10357710W 3 2022-12-27T02:16:40.786851 {"title": "Sukur\u012bn no shiki", "key": "/works/OL10357710W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL765306A"}}], "subject_people": ["Sh\u014dtar\u014d Ikenami (1923-1990)"], "type": {"key": "/type/work"}, "subjects": ["Moving-pictures"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T02:49:49.856463"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-27T02:16:40.786851"}}
+/type/work /works/OL10358170W 2 2010-01-16T04:24:52.218286 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:49:49.856463"}, "title": "El congreso de literatura", "last_modified": {"type": "/type/datetime", "value": "2010-01-16T04:24:52.218286"}, "latest_revision": 2, "key": "/works/OL10358170W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4287831A"}}], "type": {"key": "/type/work"}, "subjects": ["Fiction", "Ficci\u00f3n", "Literature", "Literatura", "Arte de escribir", "Congresses", "Cloning", "Authorship", "Congresos, conferencias", "Clonaci\u00f3n"], "revision": 2}
+/type/work /works/OL10358418W 2 2010-01-16T04:24:52.218286 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:49:54.844989"}, "title": "Ch\u02bb\u014fnjae n\u016dn opta", "last_modified": {"type": "/type/datetime", "value": "2010-01-16T04:24:52.218286"}, "latest_revision": 2, "key": "/works/OL10358418W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4287975A"}}], "type": {"key": "/type/work"}, "subjects": ["Philosophy", "Education", "Child rearing"], "revision": 2}
+/type/work /works/OL10358526W 2 2010-01-16T04:24:52.218286 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:49:54.844989"}, "title": "Chinese-English dictionary of the vernacular or spoken language of Amoy", "subject_places": ["China", "Xiamen (Fujian Sheng)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-16T04:24:52.218286"}, "latest_revision": 2, "key": "/works/OL10358526W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4288023A"}}], "type": {"key": "/type/work"}, "subjects": ["Dictionaries", "Southern Min dialects", "English", "Chinese language"], "revision": 2}
+/type/work /works/OL10358762W 3 2010-12-04T07:50:25.214647 {"last_modified": {"type": "/type/datetime", "value": "2010-12-04T07:50:25.214647"}, "title": "Li dai xiao hua ji", "created": {"type": "/type/datetime", "value": "2009-12-11T02:49:54.844989"}, "subjects": ["Chinese Short stories", "Chinese wit and humor", "Short stories, Chinese", "Translations into Vietnamese", "Translations into Vietnamese ."], "latest_revision": 3, "key": "/works/OL10358762W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4288136A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10359272W 3 2010-12-03T17:50:01.615393 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T17:50:01.615393"}, "title": "Zheng zhi", "created": {"type": "/type/datetime", "value": "2009-12-11T02:49:54.844989"}, "subjects": ["Chinese classics", "Criticism, interpretation", "Wu ching", "Wu jing"], "latest_revision": 3, "key": "/works/OL10359272W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4288288A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10359293W 2 2010-12-06T07:27:23.373887 {"last_modified": {"type": "/type/datetime", "value": "2010-12-06T07:27:23.373887"}, "title": "Shu yi zhu yi", "created": {"type": "/type/datetime", "value": "2009-12-11T02:49:54.844989"}, "subjects": ["Shu jing"], "latest_revision": 2, "key": "/works/OL10359293W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4288301A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10359715W 3 2010-12-06T07:25:52.480595 {"last_modified": {"type": "/type/datetime", "value": "2010-12-06T07:25:52.480595"}, "latest_revision": 3, "key": "/works/OL10359715W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4288435A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T02:49:58.552573"}, "title": "Watsuji Tetsur\u014d ningen sonzai no rinrigaku", "subject_places": ["Japan"], "subjects": ["Ethics", "Japanese Philosophy", "Philosophy, Japanese"], "subject_times": ["20th century"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10359854W 2 2010-01-16T04:27:09.688552 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:49:58.552573"}, "title": "Itogi i\ufe20a\ufe21zykovogo stroitel\u02b9stva Buri\ufe20a\ufe21t-Mongolii", "subject_places": ["Buri\ufe20a\ufe21tii\ufe20a\ufe21 (Russia)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-16T04:27:09.688552"}, "latest_revision": 2, "key": "/works/OL10359854W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4288462A"}}], "type": {"key": "/type/work"}, "subjects": ["Languages", "Alphabet", "Political aspects", "Buriat language"], "revision": 2}
+/type/work /works/OL10360463W 3 2020-11-14T21:22:14.530468 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:50:04.683815"}, "subject_places": ["Korea"], "subjects": ["World politics", "Foreign relations", "Pol\u00edtica internacional", "Regionalismo", "Relaciones exteriores"], "latest_revision": 3, "key": "/works/OL10360463W", "title": "Korea at the crossroads", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4288645A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-11-14T21:22:14.530468"}, "revision": 3}
+/type/work /works/OL10360535W 2 2010-01-16T04:29:26.617308 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:50:04.683815"}, "title": "British Columbia", "subject_places": ["British Columbia"], "last_modified": {"type": "/type/datetime", "value": "2010-01-16T04:29:26.617308"}, "latest_revision": 2, "key": "/works/OL10360535W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4288685A"}}], "type": {"key": "/type/work"}, "subjects": ["Bibliography", "History"], "revision": 2}
+/type/work /works/OL10360546W 4 2022-12-29T15:17:12.515424 {"title": "Xinjiang de qing tong shi dai he zao qi tie qi shi dai wen hua", "subject_places": ["Xinjiang Uygur Zizhiqu (China)", "China", "Xinjiang Uygur Zizhiqu"], "key": "/works/OL10360546W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4288695A"}}], "type": {"key": "/type/work"}, "subjects": ["Excavations (Archaeology)", "Civilization", "Antiquities", "Bronze age", "Iron age"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T02:50:04.683815"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-29T15:17:12.515424"}}
+/type/work /works/OL1036068W 2 2010-01-16T04:29:26.617308 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:10:21.822708"}, "title": "Cik cuk", "last_modified": {"type": "/type/datetime", "value": "2010-01-16T04:29:26.617308"}, "latest_revision": 2, "key": "/works/OL1036068W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL101221A"}}], "type": {"key": "/type/work"}, "subjects": ["Urdu wit and humor"], "revision": 2}
+/type/work /works/OL10360867W 3 2010-11-16T08:36:02.454458 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:50:04.683815"}, "subjects": ["Russian poetry"], "latest_revision": 3, "key": "/works/OL10360867W", "title": "Izbrannoe", "subject_times": ["20th century"], "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL6082358A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-11-16T08:36:02.454458"}, "revision": 3}
+/type/work /works/OL1036097W 3 2020-12-14T12:20:44.117277 {"subtitle": "safar na\u0304mah", "title": "Sunahri\u0304 ullu\u0304 ka\u0304 shahr", "subject_places": ["India"], "key": "/works/OL1036097W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL101221A"}}], "subject_people": ["Mustan\u1e63ir \u1e24usain T\u0101ra\u1e5b"], "type": {"key": "/type/work"}, "subjects": ["Travel", "Description and travel"], "description": {"type": "/type/text", "value": "Travelog of India."}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-09T20:10:21.822708"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-14T12:20:44.117277"}}
+/type/work /works/OL1036143W 1 2009-12-09T19:47:56.769146 {"title": "Gula\u0304bon\u0332 va\u0304li\u0304 gali\u0304", "created": {"type": "/type/datetime", "value": "2009-12-09T19:47:56.769146"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:47:56.769146"}, "latest_revision": 1, "key": "/works/OL1036143W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL101234A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10362117W 3 2010-12-06T07:29:01.715737 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:50:10.060753"}, "subject_places": ["Baker, Mount (Wash.)", "Mount (Wash.) Baker"], "subjects": ["Mountaineering"], "latest_revision": 3, "key": "/works/OL10362117W", "title": "The first ascent of Mount Baker", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4289444A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-06T07:29:01.715737"}, "revision": 3}
+/type/work /works/OL1036248W 2 2020-11-08T00:23:15.470689 {"description": {"type": "/type/text", "value": "Commentary on the Di\u0304wa\u0304n (poetic work) of Muh\u0323ammadi\u0304 S\u0323a\u0304h\u0323ibza\u0304dah, Pushto poet."}, "title": "Z\u0307aghland naz\u0323ar da Muh\u0323ammadi\u0304 S\u0323a\u0304h\u0323ibza\u0304dah pri di\u0304wa\u0304n", "created": {"type": "/type/datetime", "value": "2009-12-09T20:10:21.822708"}, "last_modified": {"type": "/type/datetime", "value": "2020-11-08T00:23:15.470689"}, "latest_revision": 2, "key": "/works/OL1036248W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL101275A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10362515W 3 2010-12-06T07:28:37.112562 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:50:17.143064"}, "subject_places": ["Greece", "Rome"], "subjects": ["Ancient Cities and towns", "Cities and towns, Ancient", "Politics and government"], "latest_revision": 3, "key": "/works/OL10362515W", "title": "The growth of the city state", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4289674A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-06T07:28:37.112562"}, "revision": 3}
+/type/work /works/OL10362627W 2 2010-01-16T04:31:40.274451 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:50:17.143064"}, "title": "Stop sex role stereotypes in elementary education", "last_modified": {"type": "/type/datetime", "value": "2010-01-16T04:31:40.274451"}, "latest_revision": 2, "key": "/works/OL10362627W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4289713A"}}], "type": {"key": "/type/work"}, "subjects": ["Sex role", "Sex differences in education"], "revision": 2}
+/type/work /works/OL10362828W 2 2010-01-16T04:31:40.274451 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:50:17.143064"}, "title": "The language of the classroom", "last_modified": {"type": "/type/datetime", "value": "2010-01-16T04:31:40.274451"}, "latest_revision": 2, "key": "/works/OL10362828W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4289829A"}}], "type": {"key": "/type/work"}, "subjects": ["Teaching", "Oral communication"], "revision": 2}
+/type/work /works/OL1036283W 1 2009-12-09T19:47:56.769146 {"title": "Qis\u0323s\u0323ah pa\u0304ncven\u0332 darvesh ka\u0304", "created": {"type": "/type/datetime", "value": "2009-12-09T19:47:56.769146"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:47:56.769146"}, "latest_revision": 1, "key": "/works/OL1036283W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL101282A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10362899W 2 2010-01-16T04:33:58.718160 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:50:17.143064"}, "title": "Xiao xue ge ke xin jiao xue fa zhi yan jiu", "last_modified": {"type": "/type/datetime", "value": "2010-01-16T04:33:58.718160"}, "latest_revision": 2, "key": "/works/OL10362899W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4289884A"}}], "type": {"key": "/type/work"}, "subjects": ["Teaching", "Education"], "revision": 2}
+/type/work /works/OL10363746W 1 2009-12-11T02:50:25.094476 {"title": "The Christian's warfare and crown. A sermon occasioned by the death of the Rev. John Berridge, who departed this life, Jan. 3, 1793: preached at Bartholomew chapel. On Sunday evening, February 3, 1793. By the Rev. W. Holland, ... Taken in short hand, by Job Sibley", "created": {"type": "/type/datetime", "value": "2009-12-11T02:50:25.094476"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:50:25.094476"}, "latest_revision": 1, "key": "/works/OL10363746W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4290357A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1036438W 3 2020-12-03T09:46:11.845991 {"title": "\u02bbAurat ka\u0304 almi\u0304yah", "subject_places": ["Pakistan"], "key": "/works/OL1036438W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL101325A"}}], "type": {"key": "/type/work"}, "subjects": ["Social conditions", "Women", "Sex role", "Women's rights"], "description": {"type": "/type/text", "value": "On socio-cultural problems of women in Pakistan; includes a study on violation of their rights."}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-09T20:10:44.116717"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-03T09:46:11.845991"}}
+/type/work /works/OL1036447W 2 2010-01-16T04:36:13.872007 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:10:44.116717"}, "title": "The Balochi language", "last_modified": {"type": "/type/datetime", "value": "2010-01-16T04:36:13.872007"}, "latest_revision": 2, "key": "/works/OL1036447W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL101328A"}}], "type": {"key": "/type/work"}, "subjects": ["Baluchi language"], "revision": 2}
+/type/work /works/OL10364748W 3 2022-02-08T00:55:57.752251 {"title": "La politesse mondaine et les th\u00e9ories de l'honn\u00eatet\u00e9", "subject_places": ["France"], "key": "/works/OL10364748W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2152883A"}}], "type": {"key": "/type/work"}, "subjects": ["Etiquette", "Social life and customs", "Court and courtiers"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T02:50:31.122054"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-08T00:55:57.752251"}}
+/type/work /works/OL10365032W 2 2010-01-16T04:36:13.872007 {"title": "El \" Sannazaro espan\u0303ol\" de Herrera Maldonado", "created": {"type": "/type/datetime", "value": "2009-12-11T02:50:31.122054"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-16T04:36:13.872007"}, "latest_revision": 2, "key": "/works/OL10365032W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4291051A"}}], "subject_people": ["Francisco de Herrera Maldonado", "Jacopo Sannazaro (1458-1530)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10365205W 2 2010-01-16T04:36:13.872007 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:50:31.122054"}, "title": "Russkai\ufe20a\ufe21 literatura", "last_modified": {"type": "/type/datetime", "value": "2010-01-16T04:36:13.872007"}, "latest_revision": 2, "key": "/works/OL10365205W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4291114A"}}], "type": {"key": "/type/work"}, "subjects": ["Russian literature", "History and criticism"], "revision": 2}
+/type/work /works/OL10365446W 1 2009-12-11T02:50:37.293692 {"title": "Theirs is the kingdom", "created": {"type": "/type/datetime", "value": "2009-12-11T02:50:37.293692"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:50:37.293692"}, "latest_revision": 1, "key": "/works/OL10365446W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4291192A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10365600W 2 2010-01-16T04:38:33.666693 {"title": "Mon ami, Henry Miller =", "created": {"type": "/type/datetime", "value": "2009-12-11T02:50:37.293692"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-16T04:38:33.666693"}, "latest_revision": 2, "key": "/works/OL10365600W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4291238A"}}], "subject_people": ["Henry Miller (1891-)", "John Cowper Powys (1872-1963)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10365908W 2 2010-01-16T04:38:33.666693 {"title": "George Berkeley", "created": {"type": "/type/datetime", "value": "2009-12-11T02:50:37.293692"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-16T04:38:33.666693"}, "latest_revision": 2, "key": "/works/OL10365908W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4291406A"}}], "subject_people": ["George Berkeley (1685-1753)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10366181W 2 2010-12-06T07:28:12.248697 {"last_modified": {"type": "/type/datetime", "value": "2010-12-06T07:28:12.248697"}, "title": "The evolution of the Warsaw Pact", "created": {"type": "/type/datetime", "value": "2009-12-11T02:50:37.293692"}, "subjects": ["Warsaw Treaty Organization"], "latest_revision": 2, "key": "/works/OL10366181W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4291582A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10366578W 2 2010-01-16T04:38:33.666693 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:50:44.825560"}, "title": "On nereids commensal with hermit crabs", "last_modified": {"type": "/type/datetime", "value": "2010-01-16T04:38:33.666693"}, "latest_revision": 2, "key": "/works/OL10366578W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4291803A"}}], "type": {"key": "/type/work"}, "subjects": ["Hermit crabs", "Commensalism", "Nereis"], "revision": 2}
+/type/work /works/OL10366599W 1 2009-12-11T02:50:44.825560 {"title": "Signatures of all things", "created": {"type": "/type/datetime", "value": "2009-12-11T02:50:44.825560"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:50:44.825560"}, "latest_revision": 1, "key": "/works/OL10366599W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4291821A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10366641W 2 2020-11-06T13:41:31.771498 {"last_modified": {"type": "/type/datetime", "value": "2020-11-06T13:41:31.771498"}, "title": "Han\u02bcguk \u016di puch\u02bbae (s\u014fn)", "created": {"type": "/type/datetime", "value": "2009-12-11T02:50:44.825560"}, "subjects": ["Fans", "Pictorial works"], "latest_revision": 2, "key": "/works/OL10366641W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4291842A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10366655W 2 2010-01-16T04:38:33.666693 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:50:44.825560"}, "title": "Han\u02beguk \u016di ponghwangdo", "subject_places": ["Korea"], "last_modified": {"type": "/type/datetime", "value": "2010-01-16T04:38:33.666693"}, "latest_revision": 2, "key": "/works/OL10366655W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4291842A"}}], "type": {"key": "/type/work"}, "subjects": ["Phoenix (Mythical bird) in art", "Decorative arts"], "revision": 2}
+/type/work /works/OL1036692W 2 2010-01-16T04:41:00.783947 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:10:44.116717"}, "title": "Development and security", "subject_places": ["Pakistan", "South Asia"], "last_modified": {"type": "/type/datetime", "value": "2010-01-16T04:41:00.783947"}, "latest_revision": 2, "key": "/works/OL1036692W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL101399A"}}], "type": {"key": "/type/work"}, "subjects": ["National security"], "revision": 2}
+/type/work /works/OL10366990W 3 2010-12-06T07:28:12.248697 {"last_modified": {"type": "/type/datetime", "value": "2010-12-06T07:28:12.248697"}, "title": "Advertising and selling", "created": {"type": "/type/datetime", "value": "2009-12-11T02:50:44.825560"}, "subjects": ["Advertising", "Applied Psychology", "Psychology, Applied"], "latest_revision": 3, "key": "/works/OL10366990W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4292017A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10367128W 2 2010-01-16T04:41:00.783947 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:50:44.825560"}, "title": "Acute toxicity and detoxification of kraft pulp mill effluent", "last_modified": {"type": "/type/datetime", "value": "2010-01-16T04:41:00.783947"}, "latest_revision": 2, "key": "/works/OL10367128W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4292108A"}}], "type": {"key": "/type/work"}, "subjects": ["Water", "Pulpwood industry", "Pollution", "Waste disposal"], "revision": 2}
+/type/work /works/OL10367415W 2 2010-01-16T04:41:00.783947 {"title": "Kate Chopin", "created": {"type": "/type/datetime", "value": "2009-12-11T02:50:52.145767"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-16T04:41:00.783947"}, "latest_revision": 2, "key": "/works/OL10367415W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4292286A"}}], "subject_people": ["Kate Chopin (1851-1904)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10367457W 1 2009-12-11T02:50:52.145767 {"title": "Israel", "created": {"type": "/type/datetime", "value": "2009-12-11T02:50:52.145767"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:50:52.145767"}, "latest_revision": 1, "key": "/works/OL10367457W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4292301A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10367594W 2 2010-01-16T04:41:00.783947 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:50:52.145767"}, "title": "Zur Religion der Tujen des Sininggebietes (Kukunor)", "last_modified": {"type": "/type/datetime", "value": "2010-01-16T04:41:00.783947"}, "latest_revision": 2, "key": "/works/OL10367594W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4292361A"}}], "type": {"key": "/type/work"}, "subjects": ["Religion", "Mongour (Chinese people)"], "revision": 2}
+/type/work /works/OL10367933W 3 2020-02-28T09:04:55.721118 {"title": "Time's up", "created": {"type": "/type/datetime", "value": "2009-12-11T02:50:52.145767"}, "last_modified": {"type": "/type/datetime", "value": "2020-02-28T09:04:55.721118"}, "latest_revision": 3, "key": "/works/OL10367933W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4292552A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10368111W 2 2010-01-16T04:43:23.025269 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:50:52.145767"}, "title": "\u022ev\u022fr Mongol ardyn aman zokhiol", "subject_places": ["Inner Mongolia", "China", "Inner Mongolia (China)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-16T04:43:23.025269"}, "latest_revision": 2, "key": "/works/OL10368111W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4292624A"}}], "type": {"key": "/type/work"}, "subjects": ["Folklore", "Mongols", "Social life and customs"], "revision": 2}
+/type/work /works/OL10368682W 1 2009-12-11T02:50:58.447849 {"title": "Bodlyn khur : shu\u0307l\u0117g, na\u012draglal", "created": {"type": "/type/datetime", "value": "2009-12-11T02:50:58.447849"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:50:58.447849"}, "latest_revision": 1, "key": "/works/OL10368682W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4292949A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10368821W 1 2009-12-11T02:50:58.447849 {"title": "Srednevekovaia gorodskaia kul'tura Iuzhnogo Kazakhstana i Semirech'ia", "created": {"type": "/type/datetime", "value": "2009-12-11T02:50:58.447849"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:50:58.447849"}, "latest_revision": 1, "key": "/works/OL10368821W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4293025A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10368936W 1 2009-12-11T02:50:58.447849 {"title": "\u0130deoloji", "created": {"type": "/type/datetime", "value": "2009-12-11T02:50:58.447849"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:50:58.447849"}, "latest_revision": 1, "key": "/works/OL10368936W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4293100A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10369105W 5 2020-09-03T05:10:52.279156 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:50:58.447849"}, "subjects": ["Radiation chemistry", "Radiobiology", "Cytochemistry", "Strahlenbiologie", "Chimie sous rayonnement", "Strahlenchemie", "Radiobiologie", "Radiochemistry", "Cytochimie", "Radiochemie", "Strahlenbiochemie", "Depression, mental", "Psychopharmacology"], "latest_revision": 5, "key": "/works/OL10369105W", "title": "The chemical basis of radiation biology", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4293183A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-09-03T05:10:52.279156"}, "covers": [8520166], "revision": 5}
+/type/work /works/OL10369108W 2 2010-01-16T04:43:23.025269 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:50:58.447849"}, "title": "Human health risk assessment of herbicide applications to control noxious weeds and poisonous plants in the Northern Region", "subject_places": ["Rocky Mountains Region", "Great Plains"], "last_modified": {"type": "/type/datetime", "value": "2010-01-16T04:43:23.025269"}, "latest_revision": 2, "key": "/works/OL10369108W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4293185A"}}], "type": {"key": "/type/work"}, "subjects": ["Control", "Herbicides", "Weeds", "Toxicology", "Plants", "Effect of herbicides on", "Health risk assessment"], "revision": 2}
+/type/work /works/OL10369226W 2 2010-01-16T04:45:58.396420 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:50:58.447849"}, "title": "Population status and nesting trends of the Bald eagle (Haliaeetus leucocephalus L.) on San Juan Island, Washington", "subject_places": ["San Juan Island", "Washington (State)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-16T04:45:58.396420"}, "latest_revision": 2, "key": "/works/OL10369226W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4293253A"}}], "type": {"key": "/type/work"}, "subjects": ["Bald eagle", "Birds"], "revision": 2}
+/type/work /works/OL10369312W 3 2010-12-06T07:32:02.940228 {"last_modified": {"type": "/type/datetime", "value": "2010-12-06T07:32:02.940228"}, "title": "Lead accumulation in the starfish, Pisaster ochraceus", "created": {"type": "/type/datetime", "value": "2009-12-11T02:51:07.575709"}, "subjects": ["Effect of pollution on", "Environmental aspects", "Environmental aspects of Lead", "Lead", "Pisaster ochraceus"], "latest_revision": 3, "key": "/works/OL10369312W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4293291A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10369314W 2 2010-12-03T17:00:47.794665 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T17:00:47.794665"}, "title": "Human rights in Africa", "created": {"type": "/type/datetime", "value": "2009-12-11T02:51:07.575709"}, "subjects": ["Human Rights Africa"], "latest_revision": 2, "key": "/works/OL10369314W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4293293A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10369416W 3 2010-12-03T22:25:28.838560 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T22:25:28.838560"}, "title": "La Banda Municipal de M\u00fasica del Real Sitio y Villa de Aranjuez, 1898-1998", "created": {"type": "/type/datetime", "value": "2009-12-11T02:51:07.575709"}, "subjects": ["Banda de la Escuela Municipal de M\u00fasica \"Joaqu\u00edn Rodrigo\"", "History"], "latest_revision": 3, "key": "/works/OL10369416W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4293375A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10369575W 2 2010-12-06T07:31:31.582510 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:51:07.575709"}, "subject_places": ["Delaware River Watershed (N.Y.-Del. and N.J.)"], "subjects": ["Drought forecasting", "Measurement", "Precipitation (Meteorology)"], "latest_revision": 2, "key": "/works/OL10369575W", "title": "A precipitation-based drought index for the Delaware River basin", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4293507A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-06T07:31:31.582510"}, "revision": 2}
+/type/work /works/OL10369744W 2 2010-01-16T04:45:58.396420 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:51:07.575709"}, "title": "Uran zokhiol", "last_modified": {"type": "/type/datetime", "value": "2010-01-16T04:45:58.396420"}, "latest_revision": 2, "key": "/works/OL10369744W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4293635A"}}], "type": {"key": "/type/work"}, "subjects": ["Mongolian literature", "Literature", "History and criticism", "Translations into Mongolian"], "revision": 2}
+/type/work /works/OL10371446W 2 2010-01-16T04:50:55.797572 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:51:27.810465"}, "title": "The in vitro culture and transformation of Lycopersicon peruvianum", "last_modified": {"type": "/type/datetime", "value": "2010-01-16T04:50:55.797572"}, "latest_revision": 2, "key": "/works/OL10371446W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4295031A"}}], "type": {"key": "/type/work"}, "subjects": ["Tomatoes", "Micropropagation", "Regeneration (Botany)", "Plant micropropagation"], "revision": 2}
+/type/work /works/OL10371629W 2 2010-01-16T04:50:55.797572 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:51:27.810465"}, "title": "Using hypertext software in the graphic art laboratory", "last_modified": {"type": "/type/datetime", "value": "2010-01-16T04:50:55.797572"}, "latest_revision": 2, "key": "/works/OL10371629W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4295206A"}}], "type": {"key": "/type/work"}, "subjects": ["Graphic arts", "Study and teaching (Secondary)", "Hypertext systems", "Computer-assisted instruction"], "revision": 2}
+/type/work /works/OL10372764W 3 2010-12-06T07:31:31.582510 {"last_modified": {"type": "/type/datetime", "value": "2010-12-06T07:31:31.582510"}, "title": "Symbolic healing", "created": {"type": "/type/datetime", "value": "2009-12-11T02:51:37.477295"}, "subjects": ["Health", "Pentecostalism", "Religious aspects", "Religious aspects of Health", "Spiritual healing"], "latest_revision": 3, "key": "/works/OL10372764W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4296085A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10372929W 2 2010-01-16T04:53:14.759033 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:51:37.477295"}, "title": "A study to determine the relationship of teaching approaches to the writing achievement of third grade students", "last_modified": {"type": "/type/datetime", "value": "2010-01-16T04:53:14.759033"}, "latest_revision": 2, "key": "/works/OL10372929W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4296208A"}}], "type": {"key": "/type/work"}, "subjects": ["Language arts (Elementary)", "Study and teaching (Elementary)", "Children", "English language", "Writing"], "revision": 2}
+/type/work /works/OL10373376W 2 2010-01-16T04:53:14.759033 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:51:45.643038"}, "title": "Integrated early childhood special education", "last_modified": {"type": "/type/datetime", "value": "2010-01-16T04:53:14.759033"}, "latest_revision": 2, "key": "/works/OL10373376W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4296564A"}}], "type": {"key": "/type/work"}, "subjects": ["Special education", "Education (Preschool)", "Early childhood education", "Mainstreaming in education", "Children with disabilities"], "revision": 2}
+/type/work /works/OL10373425W 1 2009-12-11T02:51:45.643038 {"title": "Das Klavierwerk of Johannes Brahms", "created": {"type": "/type/datetime", "value": "2009-12-11T02:51:45.643038"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:51:45.643038"}, "latest_revision": 1, "key": "/works/OL10373425W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4296607A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10373504W 2 2010-01-16T04:53:14.759033 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:51:45.643038"}, "title": "A study on the effects of mental imagery on the creation of false memories", "last_modified": {"type": "/type/datetime", "value": "2010-01-16T04:53:14.759033"}, "latest_revision": 2, "key": "/works/OL10373504W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4296665A"}}], "type": {"key": "/type/work"}, "subjects": ["Mental suggestion", "False memory syndrome", "Imagery (Psychology)"], "revision": 2}
+/type/work /works/OL10373795W 7 2020-03-02T05:41:07.729858 {"subtitle": "a commentary on Atisha Dipamkara Shrijnana's A lamp for the Path to Enlightenment and Lama Je Tsong Khapa's Lines of experience", "last_modified": {"type": "/type/datetime", "value": "2020-03-02T05:41:07.729858"}, "title": "Illuminating the Path to Enlightenment", "created": {"type": "/type/datetime", "value": "2009-12-11T02:51:45.643038"}, "covers": [8661375], "subjects": ["Buddhism", "Compassion", "Religious aspects of Compassion", "Lam-rim", "Spiritual life", "Lam rim"], "subject_people": ["Tso\u1e45-kha-pa Blo-bza\u1e45-grags-pa (1357-1419)", "At\u012b\u015ba (982-1054)"], "key": "/works/OL10373795W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2886A"}}], "latest_revision": 7, "type": {"key": "/type/work"}, "revision": 7}
+/type/work /works/OL10373948W 4 2022-12-27T19:37:32.774286 {"subject_places": ["Japan", "K\u014dya-ch\u014d"], "subjects": ["Art", "Art, Buddhist", "Buddhist Art", "History", "K\u014dyasan Monasteries (Japan)", "Shingon (Sect)", "Buddhist art"], "key": "/works/OL10373948W", "title": "K\u014dyasan", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4296952A"}}], "type": {"key": "/type/work"}, "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T02:51:45.643038"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-27T19:37:32.774286"}}
+/type/work /works/OL10374448W 2 2010-10-24T06:19:26.927686 {"title": "Two", "created": {"type": "/type/datetime", "value": "2009-12-11T02:51:56.058779"}, "last_modified": {"type": "/type/datetime", "value": "2010-10-24T06:19:26.927686"}, "latest_revision": 2, "key": "/works/OL10374448W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2623782A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10374768W 2 2010-01-16T04:58:06.269338 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:51:56.058779"}, "title": "Differences in coronary heart disease risk factors between male myocardial infarction patients above and below the age of 40", "last_modified": {"type": "/type/datetime", "value": "2010-01-16T04:58:06.269338"}, "latest_revision": 2, "key": "/works/OL10374768W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4297584A"}}], "type": {"key": "/type/work"}, "subjects": ["Heart", "Diseases", "Patients", "Coronary heart disease", "Age factors", "Age factors in disease", "Myocardial infarction"], "revision": 2}
+/type/work /works/OL10374988W 2 2010-01-16T04:58:06.269338 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:51:56.058779"}, "title": "A comparison of the variation in the running patterns of individuals selected from various mental age categories", "last_modified": {"type": "/type/datetime", "value": "2010-01-16T04:58:06.269338"}, "latest_revision": 2, "key": "/works/OL10374988W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4297782A"}}], "type": {"key": "/type/work"}, "subjects": ["Child development", "Running", "Physical education for children with mental disabilities", "Kinesiology", "Running for children", "Motor ability in children"], "revision": 2}
+/type/work /works/OL10375099W 2 2010-01-16T04:58:06.269338 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:51:56.058779"}, "title": "A history and chronology of the modern Olympic marathon", "last_modified": {"type": "/type/datetime", "value": "2010-01-16T04:58:06.269338"}, "latest_revision": 2, "key": "/works/OL10375099W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4297876A"}}], "type": {"key": "/type/work"}, "subjects": ["Marathon running", "Olympics", "History"], "revision": 2}
+/type/work /works/OL10375146W 3 2010-12-06T07:32:02.940228 {"last_modified": {"type": "/type/datetime", "value": "2010-12-06T07:32:02.940228"}, "title": "The relationship between selected muscle strength imbalance ratio changes and changes in total pseudowork per stride in running", "created": {"type": "/type/datetime", "value": "2009-12-11T02:51:56.058779"}, "subjects": ["Muscle strength", "Physiological aspects", "Physiological aspects of Running", "Running"], "latest_revision": 3, "key": "/works/OL10375146W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4297918A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10375212W 2 2010-01-16T04:58:06.269338 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:51:56.058779"}, "title": "The effect of participation in sports on the early occupational attainment of male former college athletes", "last_modified": {"type": "/type/datetime", "value": "2010-01-16T04:58:06.269338"}, "latest_revision": 2, "key": "/works/OL10375212W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4297973A"}}], "type": {"key": "/type/work"}, "subjects": ["Occupational mobility", "Athletes", "Prediction of occupational success"], "revision": 2}
+/type/work /works/OL10375215W 3 2010-12-06T07:29:57.061426 {"last_modified": {"type": "/type/datetime", "value": "2010-12-06T07:29:57.061426"}, "title": "The influence of participation in a sports training program on the self-concepts of the educable mentally retarded", "created": {"type": "/type/datetime", "value": "2009-12-11T02:51:56.058779"}, "subjects": ["Psychological aspects", "Psychological aspects of Sports for people with mental disabilities", "Self-perception", "Special Olympics", "Sports for people with mental disabilities"], "latest_revision": 3, "key": "/works/OL10375215W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4297975A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1037540W 3 2020-11-27T08:53:05.566178 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:11:04.212508"}, "subject_places": ["India"], "subjects": ["Money market", "Foreign exchange rate", "Foreign exchange rates"], "latest_revision": 3, "key": "/works/OL1037540W", "title": "Essays on international finance", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL101590A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-11-27T08:53:05.566178"}, "revision": 3}
+/type/work /works/OL10375420W 2 2010-12-06T07:30:28.278665 {"last_modified": {"type": "/type/datetime", "value": "2010-12-06T07:30:28.278665"}, "title": "Design for utilizing gesture in dance", "created": {"type": "/type/datetime", "value": "2009-12-11T02:52:06.460982"}, "subjects": ["Gesture in dance"], "latest_revision": 2, "key": "/works/OL10375420W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4298154A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10375716W 2 2010-01-16T05:00:23.586585 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:52:06.460982"}, "title": "The physical education teacher and tort", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-16T05:00:23.586585"}, "latest_revision": 2, "key": "/works/OL10375716W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4298409A"}}], "type": {"key": "/type/work"}, "subjects": ["Legal status, laws", "Liability for school accidents", "Physical education teachers", "Malpractice", "Teachers"], "revision": 2}
+/type/work /works/OL10375968W 3 2010-12-03T18:47:11.201844 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T18:47:11.201844"}, "title": "A comparison of seventh and ninth grade girls on level of aspiration and performance in strength and endurance tasks", "created": {"type": "/type/datetime", "value": "2009-12-11T02:52:06.460982"}, "subjects": ["Girls", "Level of aspiration", "Motor ability", "Psychological aspects", "Psychological aspects of Motor ability"], "latest_revision": 3, "key": "/works/OL10375968W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4298644A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10376307W 2 2010-01-16T05:00:23.586585 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:52:06.460982"}, "title": "The diurnal variation of physiological and psychological responses to mental stress", "last_modified": {"type": "/type/datetime", "value": "2010-01-16T05:00:23.586585"}, "latest_revision": 2, "key": "/works/OL10376307W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4298953A"}}], "type": {"key": "/type/work"}, "subjects": ["Circadian rhythms", "Heart", "Patients", "Stress (Physiology)", "Diseases", "Stress (Psychology)", "Psychology"], "revision": 2}
+/type/work /works/OL10376430W 3 2010-12-03T12:23:40.525905 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T12:23:40.525905"}, "title": "Autogenic feedback as an adjunct to a smoking termination program", "created": {"type": "/type/datetime", "value": "2009-12-11T02:52:17.219262"}, "subjects": ["Autogenic training", "Biofeedback training", "Psychological aspects", "Psychological aspects of Smoking", "Smoking", "Smoking cessation"], "latest_revision": 3, "key": "/works/OL10376430W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4299060A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10376683W 5 2020-12-08T17:38:18.906825 {"subtitle": "Report Of A Workshop", "title": "Estimating Climate Sensitivity", "covers": [2363343], "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL3427244A"}}], "key": "/works/OL10376683W", "type": {"key": "/type/work"}, "subjects": ["Atmospheric carbon dioxide", "Congresses", "Climatic changes"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2009-11-11T19:26:46.885721"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-08T17:38:18.906825"}}
+/type/work /works/OL10376907W 2 2010-01-16T05:02:55.534122 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:52:17.219262"}, "title": "Constructivism in dance", "last_modified": {"type": "/type/datetime", "value": "2010-01-16T05:02:55.534122"}, "latest_revision": 2, "key": "/works/OL10376907W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4299490A"}}], "type": {"key": "/type/work"}, "subjects": ["Modern dance", "Stage-setting and scenery", "Dance", "Visualization", "Choreography", "Constructivism (Art)"], "revision": 2}
+/type/work /works/OL1037691W 3 2020-12-11T16:04:07.277727 {"title": "Cemmol\u0332i e\u0304n\u0332? etar\u0332ku?", "key": "/works/OL1037691W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL101630A"}}], "type": {"key": "/type/work"}, "subjects": ["Tamil language", "History"], "description": {"type": "/type/text", "value": "Study of Tamil, as a classical language."}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-09T20:11:04.212508"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-11T16:04:07.277727"}}
+/type/work /works/OL10377049W 2 2010-01-16T05:02:55.534122 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:52:17.219262"}, "title": "The effects of a preventive/corrective stability training program on self-reported symptoms of cumulative trauma in a female employee cohort", "last_modified": {"type": "/type/datetime", "value": "2010-01-16T05:02:55.534122"}, "latest_revision": 2, "key": "/works/OL10377049W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4299622A"}}], "type": {"key": "/type/work"}, "subjects": ["Overuse injuries", "Sitting position", "Diseases", "Occupational diseases", "Clerks", "Posture", "Exercise therapy"], "revision": 2}
+/type/work /works/OL10377088W 3 2010-12-06T07:32:55.043498 {"last_modified": {"type": "/type/datetime", "value": "2010-12-06T07:32:55.043498"}, "title": "Kinematic properties of human walking and running movements at different treadmill velocities", "created": {"type": "/type/datetime", "value": "2009-12-11T02:52:17.219262"}, "subjects": ["Gait in humans", "Human locomotion", "Kinesiology", "Physiological aspects", "Physiological aspects of Running", "Physiological aspects of Walking", "Running", "Treadmill exercise tests", "Walking"], "latest_revision": 3, "key": "/works/OL10377088W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4299656A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10377157W 2 2010-01-16T05:02:55.534122 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:52:17.219262"}, "title": "Construction of a knowledge test of baseball strategy", "last_modified": {"type": "/type/datetime", "value": "2010-01-16T05:02:55.534122"}, "latest_revision": 2, "key": "/works/OL10377157W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4299720A"}}], "type": {"key": "/type/work"}, "subjects": ["Examinations", "Baseball", "Educational tests and measurements"], "revision": 2}
+/type/work /works/OL10378498W 3 2021-08-29T01:36:52.924039 {"title": "Estimating productivity on sites with a low stocking capacity", "key": "/works/OL10378498W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4300642A"}}], "type": {"key": "/type/work"}, "subjects": ["Forest site quality", "Forests and forestry", "Measurement", "Mensuration"], "covers": [11846333], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T02:52:31.120998"}, "last_modified": {"type": "/type/datetime", "value": "2021-08-29T01:36:52.924039"}}
+/type/work /works/OL10378726W 2 2010-01-16T05:05:30.823610 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:52:31.120998"}, "title": "A method for estimating operability and location of the timber resource", "subject_places": ["Minnesota"], "last_modified": {"type": "/type/datetime", "value": "2010-01-16T05:05:30.823610"}, "latest_revision": 2, "key": "/works/OL10378726W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4300742A"}}], "type": {"key": "/type/work"}, "subjects": ["Timber", "Forests and forestry"], "revision": 2}
+/type/work /works/OL10378995W 2 2010-01-16T05:07:56.713056 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:52:31.120998"}, "title": "The health effect potential of reusing fruit processing wastewater within a cannery", "last_modified": {"type": "/type/datetime", "value": "2010-01-16T05:07:56.713056"}, "latest_revision": 2, "key": "/works/OL10378995W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4300901A"}}], "type": {"key": "/type/work"}, "subjects": ["Water reuse", "Fruit processing plants"], "revision": 2}
+/type/work /works/OL10379325W 2 2010-01-16T05:07:56.713056 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:52:37.234236"}, "title": "Wolf population in the Central Superior National Forest, 1967-1985", "subject_places": ["Minnesota", "Superior National Forest"], "last_modified": {"type": "/type/datetime", "value": "2010-01-16T05:07:56.713056"}, "latest_revision": 2, "key": "/works/OL10379325W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4301087A"}}], "type": {"key": "/type/work"}, "subjects": ["Control", "Wolves", "Wilderness areas"], "revision": 2}
+/type/work /works/OL10379365W 2 2010-01-16T05:07:56.713056 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:52:37.234236"}, "title": "The relationship of bole diameters and crown widths of seven bottomland hardwood species", "subject_places": ["Mississippi"], "last_modified": {"type": "/type/datetime", "value": "2010-01-16T05:07:56.713056"}, "latest_revision": 2, "key": "/works/OL10379365W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4301110A"}}], "type": {"key": "/type/work"}, "subjects": ["Stems (Botany)", "Hardwoods"], "revision": 2}
+/type/work /works/OL10379615W 2 2010-01-16T05:07:56.713056 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:52:37.234236"}, "title": "1991 ocean sampling program annual report", "subject_places": ["Washington (State)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-16T05:07:56.713056"}, "latest_revision": 2, "key": "/works/OL10379615W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4301239A"}}], "type": {"key": "/type/work"}, "subjects": ["Statistics", "Pacific salmon fisheries", "Fishing surveys", "Catch effort"], "revision": 2}
+/type/work /works/OL10379699W 2 2010-01-16T05:07:56.713056 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:52:37.234236"}, "title": "Response of thinned ponderosa pine to fertilization", "last_modified": {"type": "/type/datetime", "value": "2010-01-16T05:07:56.713056"}, "latest_revision": 2, "key": "/works/OL10379699W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4301271A"}}], "type": {"key": "/type/work"}, "subjects": ["Forest thinning", "Ponderosa pine"], "revision": 2}
+/type/work /works/OL10379736W 3 2021-09-01T07:47:56.689904 {"title": "Handcrew fireline production rates--some field observations", "subject_places": ["United States"], "key": "/works/OL10379736W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4301273A"}}], "type": {"key": "/type/work"}, "subjects": ["Wildfires", "Production standards", "Prevention and control", "Wildfire fighters", "Surveys"], "covers": [11878241], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T02:52:37.234236"}, "last_modified": {"type": "/type/datetime", "value": "2021-09-01T07:47:56.689904"}}
+/type/work /works/OL10379776W 2 2010-01-16T05:10:33.209610 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:52:37.234236"}, "title": "Phytoplankton sampling in quantative baseline and monitoring programs", "last_modified": {"type": "/type/datetime", "value": "2010-01-16T05:10:33.209610"}, "latest_revision": 2, "key": "/works/OL10379776W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4301299A"}}], "type": {"key": "/type/work"}, "subjects": ["Phytoplankton"], "revision": 2}
+/type/work /works/OL10379816W 2 2010-01-16T05:10:33.209610 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:52:37.234236"}, "title": "Fire-weather stations in northeastern United States", "subject_places": ["United States", "Northeastern States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-16T05:10:33.209610"}, "latest_revision": 2, "key": "/works/OL10379816W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4301327A"}}], "type": {"key": "/type/work"}, "subjects": ["Meteorological stations", "Fire weather"], "revision": 2}
+/type/work /works/OL10379875W 2 2010-01-16T05:10:33.209610 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:52:37.234236"}, "title": "Studded tire pavement wear reduction and repair, phase I", "last_modified": {"type": "/type/datetime", "value": "2010-01-16T05:10:33.209610"}, "latest_revision": 2, "key": "/works/OL10379875W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4301356A"}}], "type": {"key": "/type/work"}, "subjects": ["Studded tires"], "revision": 2}
+/type/work /works/OL10380109W 2 2010-01-16T05:10:33.209610 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:52:37.234236"}, "title": "Input-output tables of the U.S. economy, 1971", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-16T05:10:33.209610"}, "latest_revision": 2, "key": "/works/OL10380109W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4301505A"}}], "subject_times": ["1961-", "1961-1971"], "type": {"key": "/type/work"}, "subjects": ["Economic conditions", "Input-output analysis"], "revision": 2}
+/type/work /works/OL10380712W 2 2010-01-16T05:10:33.209610 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:52:43.557012"}, "title": "Environmental requirements and pollution tolerance of ephemeroptera", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-16T05:10:33.209610"}, "latest_revision": 2, "key": "/works/OL10380712W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4301842A"}}], "type": {"key": "/type/work"}, "subjects": ["Mayflies"], "revision": 2}
+/type/work /works/OL10381026W 3 2015-03-26T20:06:17.849604 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:52:43.557012"}, "subject_places": ["Oregon"], "subjects": ["Forest management", "Legumes"], "latest_revision": 3, "key": "/works/OL10381026W", "title": "Long-term growth of eight legumes introduced at three forest locations in southwest Oregon", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL958035A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2015-03-26T20:06:17.849604"}, "revision": 3}
+/type/work /works/OL10381269W 2 2010-01-16T05:13:06.422816 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:52:43.557012"}, "title": "WEEA, Women's educational equity act", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-16T05:13:06.422816"}, "latest_revision": 2, "key": "/works/OL10381269W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4302184A"}}], "type": {"key": "/type/work"}, "subjects": ["Education", "Sex discrimination in education", "Women"], "revision": 2}
+/type/work /works/OL10381307W 2 2010-01-16T05:13:06.422816 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:52:43.557012"}, "title": "Patterns of first-year growth in populations of Douglas-fir (Pseudotsuga menziesii var. glauca)", "last_modified": {"type": "/type/datetime", "value": "2010-01-16T05:13:06.422816"}, "latest_revision": 2, "key": "/works/OL10381307W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4302198A"}}], "type": {"key": "/type/work"}, "subjects": ["Douglas fir"], "revision": 2}
+/type/work /works/OL10381474W 2 2010-01-16T05:13:06.422816 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:52:50.611125"}, "title": "Digital-transport model study of Diisopropylmethylphosphonate (DIMP) ground-water contamination at the Rocky Mountain Arsenal, Colorado", "subject_places": ["Adams County", "Rocky Mountain Arsenal (Colo.)", "Colorado"], "last_modified": {"type": "/type/datetime", "value": "2010-01-16T05:13:06.422816"}, "latest_revision": 2, "key": "/works/OL10381474W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4302334A"}}], "type": {"key": "/type/work"}, "subjects": ["Groundwater", "Pollution"], "revision": 2}
+/type/work /works/OL10381526W 2 2010-01-16T05:13:06.422816 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:52:50.611125"}, "title": "Controls on the variance in chemistry of three lakes in the Flat Tops Wilderness Area, Colorado", "subject_places": ["Colorado"], "last_modified": {"type": "/type/datetime", "value": "2010-01-16T05:13:06.422816"}, "latest_revision": 2, "key": "/works/OL10381526W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4302374A"}}], "type": {"key": "/type/work"}, "subjects": ["Acid pollution of rivers, lakes", "Water quality"], "revision": 2}
+/type/work /works/OL10382138W 2 2010-01-16T05:15:28.590289 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:52:50.611125"}, "title": "Design optimization of the chlorination process", "last_modified": {"type": "/type/datetime", "value": "2010-01-16T05:15:28.590289"}, "latest_revision": 2, "key": "/works/OL10382138W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4302769A"}}], "type": {"key": "/type/work"}, "subjects": ["Effect of water pollution on", "Physiological effect", "Fishes", "Aquatic animals", "Chlorine"], "revision": 2}
+/type/work /works/OL10382628W 2 2010-01-16T05:17:58.970137 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:52:56.497781"}, "title": "Fish passage at road crossings", "last_modified": {"type": "/type/datetime", "value": "2010-01-16T05:17:58.970137"}, "latest_revision": 2, "key": "/works/OL10382628W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4303131A"}}], "type": {"key": "/type/work"}, "subjects": ["Bibliography", "Culverts", "Migration", "Fishes", "Fishways", "Fish habitat improvement", "Design and construction"], "revision": 2}
+/type/work /works/OL10382944W 2 2010-01-16T05:17:58.970137 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:52:56.497781"}, "title": "National highway inventory and performance summary from the 1976 National highway inventory and performance study", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-16T05:17:58.970137"}, "latest_revision": 2, "key": "/works/OL10382944W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4303289A"}}], "type": {"key": "/type/work"}, "subjects": ["Highway planning", "Roads", "Design and construction"], "revision": 2}
+/type/work /works/OL10383584W 2 2010-01-16T05:20:25.055521 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:53:02.868548"}, "title": "Effects of water suspension and wet-dry cycling on fertility of Douglas-fir pollen", "last_modified": {"type": "/type/datetime", "value": "2010-01-16T05:20:25.055521"}, "latest_revision": 2, "key": "/works/OL10383584W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4303640A"}}], "type": {"key": "/type/work"}, "subjects": ["Pollen", "Douglas fir"], "revision": 2}
+/type/work /works/OL10384886W 2 2010-01-16T05:22:53.749825 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:53:09.247216"}, "title": "Baseline studies of the feasibility and reliability of using animal behavior as a component in the prediction of earthquakes", "last_modified": {"type": "/type/datetime", "value": "2010-01-16T05:22:53.749825"}, "latest_revision": 2, "key": "/works/OL10384886W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4304303A"}}], "type": {"key": "/type/work"}, "subjects": ["Earthquake prediction"], "revision": 2}
+/type/work /works/OL10384998W 3 2010-12-06T07:35:49.475957 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:53:09.247216"}, "subject_places": ["Gulf of Mexico"], "subjects": ["ARC/INFO", "Abandonment", "ArcView", "Data processing", "Drilling platforms", "Environmental aspects", "Environmental aspects of Offshore oil industry", "Fisheries", "Fishery management", "Gas wells", "Geographic information systems", "Marine ecology", "Offshore oil industry", "Offshore structures", "Oil wells", "Research", "Statistics"], "latest_revision": 3, "key": "/works/OL10384998W", "title": "Cumulative ecological significance of oil and gas structures in the Gulf of Mexico", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4304340A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-06T07:35:49.475957"}, "revision": 3}
+/type/work /works/OL10385026W 2 2010-01-16T05:22:53.749825 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:53:09.247216"}, "title": "Investment analysis of upland oak stands", "last_modified": {"type": "/type/datetime", "value": "2010-01-16T05:22:53.749825"}, "latest_revision": 2, "key": "/works/OL10385026W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4304366A"}}], "type": {"key": "/type/work"}, "subjects": ["Investment analysis", "Oak"], "revision": 2}
+/type/work /works/OL10385068W 3 2010-12-06T07:34:37.241706 {"last_modified": {"type": "/type/datetime", "value": "2010-12-06T07:34:37.241706"}, "title": "Aircrew survival equipmentman 3 & 2", "created": {"type": "/type/datetime", "value": "2009-12-11T02:53:09.247216"}, "subjects": ["Aircraft survival equipment", "Aviation supplies and stores", "United States", "United States. Navy"], "latest_revision": 3, "key": "/works/OL10385068W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4304399A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10385498W 2 2010-01-16T05:25:17.670269 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:53:16.082408"}, "title": "Review of literature on the finite-element solution of the equations of two-dimensional surface-water flow in the horizontal plane", "last_modified": {"type": "/type/datetime", "value": "2010-01-16T05:25:17.670269"}, "latest_revision": 2, "key": "/works/OL10385498W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4304615A"}}], "type": {"key": "/type/work"}, "subjects": ["Hydraulic measurements", "Mathematical models", "Stream measurements", "Hydrodynamics"], "revision": 2}
+/type/work /works/OL10385856W 3 2012-08-06T18:26:28.540307 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:53:16.082408"}, "subject_places": ["Washington (State)"], "subjects": ["Statistics", "Medicine", "Physicians", "Supply and demand", "Specialties and specialists"], "latest_revision": 3, "key": "/works/OL10385856W", "title": "Characteristics of physicians, Washington, December 31, 1979", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1224435A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-08-06T18:26:28.540307"}, "revision": 3}
+/type/work /works/OL10386388W 2 2010-01-16T05:25:17.670269 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:53:23.058945"}, "title": "Flood-discharge profiles of selected streams in Rockland County, New York", "subject_places": ["Rockland County", "New York (State)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-16T05:25:17.670269"}, "latest_revision": 2, "key": "/works/OL10386388W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4305125A"}}], "type": {"key": "/type/work"}, "subjects": ["Flood forecasting", "Stream measurements"], "revision": 2}
+/type/work /works/OL10386645W 2 2010-01-16T05:27:51.478734 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:53:23.058945"}, "title": "Plants of the Seven Devils Mountains of Idaho--an annotated checklist", "subject_places": ["Idaho", "Seven Devils Mountains"], "last_modified": {"type": "/type/datetime", "value": "2010-01-16T05:27:51.478734"}, "latest_revision": 2, "key": "/works/OL10386645W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4305255A"}}], "type": {"key": "/type/work"}, "subjects": ["Botany", "Classification"], "revision": 2}
+/type/work /works/OL10386919W 2 2010-01-16T05:27:51.478734 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:53:23.058945"}, "title": "A vegetation classification system for use in California", "subject_places": ["California"], "last_modified": {"type": "/type/datetime", "value": "2010-01-16T05:27:51.478734"}, "latest_revision": 2, "key": "/works/OL10386919W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4305469A"}}], "type": {"key": "/type/work"}, "subjects": ["Vegetation classification"], "revision": 2}
+/type/work /works/OL10387421W 2 2010-01-16T05:30:18.419510 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:53:29.879612"}, "title": "A complete handbook on backyard and commercial rabbit production", "last_modified": {"type": "/type/datetime", "value": "2010-01-16T05:30:18.419510"}, "latest_revision": 2, "key": "/works/OL10387421W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4305803A"}}], "type": {"key": "/type/work"}, "subjects": ["Rabbits", "Breeding", "Handbooks, manuals"], "revision": 2}
+/type/work /works/OL10387852W 2 2010-01-16T05:30:18.419510 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:53:29.879612"}, "title": "Leadership education II", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-16T05:30:18.419510"}, "latest_revision": 2, "key": "/works/OL10387852W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4306054A"}}], "type": {"key": "/type/work"}, "subjects": ["Leadership", "Study and teaching"], "revision": 2}
+/type/work /works/OL10388698W 2 2010-01-16T22:03:06.234125 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:53:36.414805"}, "title": "Afghanistan", "subject_places": ["United States", "Soviet Union", "Afghanistan"], "last_modified": {"type": "/type/datetime", "value": "2010-01-16T22:03:06.234125"}, "latest_revision": 2, "key": "/works/OL10388698W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4306584A"}}], "subject_times": ["Soviet occupation, 1979-1989"], "type": {"key": "/type/work"}, "subjects": ["Foreign relations", "History"], "revision": 2}
+/type/work /works/OL10388881W 2 2010-01-16T22:03:06.234125 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:53:36.414805"}, "title": "Submitting samples for fish disease diagnosis", "last_modified": {"type": "/type/datetime", "value": "2010-01-16T22:03:06.234125"}, "latest_revision": 2, "key": "/works/OL10388881W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4306667A"}}], "type": {"key": "/type/work"}, "subjects": ["Fishes", "Transportation", "Diseases", "Diagnosis"], "revision": 2}
+/type/work /works/OL10389000W 2 2010-01-16T22:03:06.234125 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:53:36.414805"}, "title": "Religious program specialist 1 & C", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-16T22:03:06.234125"}, "latest_revision": 2, "key": "/works/OL10389000W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4306744A"}}], "type": {"key": "/type/work"}, "subjects": ["Church work with military personnel", "Handbooks, manuals"], "revision": 2}
+/type/work /works/OL10389250W 2 2010-01-16T22:06:53.719669 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:53:36.414805"}, "title": "Plant associations of the central Oregon pumice zone", "subject_places": ["Oregon"], "last_modified": {"type": "/type/datetime", "value": "2010-01-16T22:06:53.719669"}, "latest_revision": 2, "key": "/works/OL10389250W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4306890A"}}], "type": {"key": "/type/work"}, "subjects": ["Plant communities"], "revision": 2}
+/type/work /works/OL10389375W 2 2010-01-16T22:06:53.719669 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:53:42.780529"}, "title": "Species profiles", "subject_places": ["Pacific Coast (U.S.)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-16T22:06:53.719669"}, "latest_revision": 2, "key": "/works/OL10389375W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4306967A"}}], "type": {"key": "/type/work"}, "subjects": ["Coastal ecology", "Lobsters", "Spiny lobsters"], "revision": 2}
+/type/work /works/OL10389960W 2 2010-01-16T22:06:53.719669 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:53:42.780529"}, "title": "Summary report", "subject_places": ["Southern States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-16T22:06:53.719669"}, "latest_revision": 2, "key": "/works/OL10389960W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4307305A"}}], "type": {"key": "/type/work"}, "subjects": ["Forest health", "Forest surveys", "Trees", "Wounds and injuries"], "revision": 2}
+/type/work /works/OL1039007W 3 2010-04-28T07:13:24.349481 {"title": "Homecoming =", "created": {"type": "/type/datetime", "value": "2009-12-09T20:11:26.325194"}, "covers": [4893767], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:13:24.349481"}, "latest_revision": 3, "key": "/works/OL1039007W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL101945A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10390315W 2 2010-01-16T22:10:37.554209 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:53:42.780529"}, "title": "Impacts of the Jones Act on the Alaska forest products trade", "subject_places": ["Alaska"], "last_modified": {"type": "/type/datetime", "value": "2010-01-16T22:10:37.554209"}, "latest_revision": 2, "key": "/works/OL10390315W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4307527A"}}], "type": {"key": "/type/work"}, "subjects": ["Forest products industry", "Shipping", "Maritime law"], "revision": 2}
+/type/work /works/OL1039041W 2 2010-01-16T22:10:37.554209 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:11:26.325194"}, "title": "Early Malayalam prose", "last_modified": {"type": "/type/datetime", "value": "2010-01-16T22:10:37.554209"}, "latest_revision": 2, "key": "/works/OL1039041W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL101949A"}}], "type": {"key": "/type/work"}, "subjects": ["Malayalam language", "Grammar", "History"], "revision": 2}
+/type/work /works/OL1039054W 2 2010-01-16T22:10:37.554209 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:11:26.325194"}, "title": "Career maturity of Indian school students", "subject_places": ["Delhi", "India"], "last_modified": {"type": "/type/datetime", "value": "2010-01-16T22:10:37.554209"}, "latest_revision": 2, "key": "/works/OL1039054W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL101952A"}}], "type": {"key": "/type/work"}, "subjects": ["High school students", "Attitudes", "Vocational guidance"], "revision": 2}
+/type/work /works/OL10390758W 2 2010-01-16T22:10:37.554209 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:53:49.732966"}, "title": "Cryptology", "last_modified": {"type": "/type/datetime", "value": "2010-01-16T22:10:37.554209"}, "latest_revision": 2, "key": "/works/OL10390758W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4307800A"}}], "type": {"key": "/type/work"}, "subjects": ["Bibliography", "Ciphers", "Data encryption (Computer science)", "Cryptography"], "revision": 2}
+/type/work /works/OL10390928W 2 2010-01-16T22:10:37.554209 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:53:49.732966"}, "title": "How do I help my child say \"no\" to drugs?", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-16T22:10:37.554209"}, "latest_revision": 2, "key": "/works/OL10390928W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4307889A"}}], "type": {"key": "/type/work"}, "subjects": ["Youth", "Drug abuse", "Prevention", "Drug use"], "revision": 2}
+/type/work /works/OL10391181W 2 2010-01-16T22:14:11.129568 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:53:49.732966"}, "title": "Seed source influences juniper seedling survival under severe drought stress", "subject_places": ["Oklahoma"], "last_modified": {"type": "/type/datetime", "value": "2010-01-16T22:14:11.129568"}, "latest_revision": 2, "key": "/works/OL10391181W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4308068A"}}], "type": {"key": "/type/work"}, "subjects": ["Juniper", "Drought tolerance", "Seeds", "Windbreaks, shelterbelts"], "revision": 2}
+/type/work /works/OL1039152W 1 2009-12-09T19:49:03.496802 {"title": "Pan\u0303ja khu\u0304ha wa\u0304le", "created": {"type": "/type/datetime", "value": "2009-12-09T19:49:03.496802"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:49:03.496802"}, "latest_revision": 1, "key": "/works/OL1039152W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL101981A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10391780W 2 2010-01-16T22:14:11.129568 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:53:59.081832"}, "title": "Spectrographic analyses of insoluble-residue samples, within and adjacent to the Joplin 1p0s x 2p0s quadrangle, Missouri and Kansas", "subject_places": ["Kansas", "Missouri"], "last_modified": {"type": "/type/datetime", "value": "2010-01-16T22:14:11.129568"}, "latest_revision": 2, "key": "/works/OL10391780W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4308449A"}}], "type": {"key": "/type/work"}, "subjects": ["Geochemical prospecting", "Spectrum analysis"], "revision": 2}
+/type/work /works/OL10392186W 2 2010-01-16T22:17:40.069531 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:53:59.081832"}, "title": "Audio-visuals relating to animal care, use, and welfare", "last_modified": {"type": "/type/datetime", "value": "2010-01-16T22:17:40.069531"}, "latest_revision": 2, "key": "/works/OL10392186W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4308701A"}}], "type": {"key": "/type/work"}, "subjects": ["Audio-visual aids", "Bibliography", "Animals", "Animal welfare"], "revision": 2}
+/type/work /works/OL10392248W 2 2010-01-16T22:17:40.069531 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:53:59.081832"}, "title": "Hydrologic data: south branch Casselman River, Garrett County, and Marsh Run, Washington County, Maryland", "subject_places": ["Maryland", "Garrett County", "Washington County"], "last_modified": {"type": "/type/datetime", "value": "2010-01-16T22:17:40.069531"}, "latest_revision": 2, "key": "/works/OL10392248W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4308749A"}}], "type": {"key": "/type/work"}, "subjects": ["Hydrology", "Water resources development"], "revision": 2}
+/type/work /works/OL10392400W 2 2010-01-16T22:17:40.069531 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:54:05.521037"}, "title": "In-situ measurements of seismic velocities at twelve locations in the San Francisco Bay region", "subject_places": ["California", "San Francisco Bay Area (Calif.)", "San Francisco Bay Area"], "last_modified": {"type": "/type/datetime", "value": "2010-01-16T22:17:40.069531"}, "latest_revision": 2, "key": "/works/OL10392400W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4308833A"}}], "type": {"key": "/type/work"}, "subjects": ["Maps", "Seismometry", "Seismology"], "revision": 2}
+/type/work /works/OL1039257W 1 2009-12-09T19:49:03.496802 {"title": "Ava\u0304jaim\u0323 balka\u0304basti\u0304 ki\u0304", "created": {"type": "/type/datetime", "value": "2009-12-09T19:49:03.496802"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:49:03.496802"}, "latest_revision": 1, "key": "/works/OL1039257W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL102013A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1039261W 1 2009-12-09T19:49:03.496802 {"title": "Hiy\u0307a\u0304ra phulanira phula", "created": {"type": "/type/datetime", "value": "2009-12-09T19:49:03.496802"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:49:03.496802"}, "latest_revision": 1, "key": "/works/OL1039261W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL102015A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1039280W 1 2009-12-09T19:49:03.496802 {"title": "Swa-nirba\u0304cita sam\u0323kalana", "created": {"type": "/type/datetime", "value": "2009-12-09T19:49:03.496802"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:49:03.496802"}, "latest_revision": 1, "key": "/works/OL1039280W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL102021A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10393013W 2 2010-01-16T22:17:40.069531 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:54:05.521037"}, "title": "Baseline information on rural black elderly", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-16T22:17:40.069531"}, "latest_revision": 2, "key": "/works/OL10393013W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4309219A"}}], "type": {"key": "/type/work"}, "subjects": ["Research", "Older African Americans", "Rural elderly"], "revision": 2}
+/type/work /works/OL10393122W 2 2010-01-16T22:21:15.596874 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:54:05.521037"}, "title": "Breath-collection device for delayed breath-alcohol analysis", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-16T22:21:15.596874"}, "latest_revision": 2, "key": "/works/OL10393122W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4309290A"}}], "type": {"key": "/type/work"}, "subjects": ["Alcohol in the body", "Drinking and traffic accidents"], "revision": 2}
+/type/work /works/OL10393341W 2 2010-01-16T22:21:15.596874 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:54:12.234949"}, "title": "Geosat altimeter crossover difference handbook", "subject_places": ["Earth"], "last_modified": {"type": "/type/datetime", "value": "2010-01-16T22:21:15.596874"}, "latest_revision": 2, "key": "/works/OL10393341W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4309417A"}}], "type": {"key": "/type/work"}, "subjects": ["Handbooks, manuals", "Remote sensing", "Geodetic satellites", "Sea level", "Figure"], "revision": 2}
+/type/work /works/OL10393457W 2 2010-01-16T22:21:15.596874 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:54:12.234949"}, "title": "Shipboard acoustic doppler current profiler data collected during the Subtropical Atlantic Climate Studies (STACS) Project, (1983-1986)", "subject_places": ["North Atlantic Ocean", "Caribbean Area"], "last_modified": {"type": "/type/datetime", "value": "2010-01-16T22:21:15.596874"}, "latest_revision": 2, "key": "/works/OL10393457W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4309475A"}}], "type": {"key": "/type/work"}, "subjects": ["Observations", "Ocean currents"], "revision": 2}
+/type/work /works/OL10393511W 2 2010-01-16T22:21:15.596874 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:54:12.234949"}, "title": "Hydrogeologic and chemical data for the O-Field area, Aberdeen Proving Ground, Maryland", "subject_places": ["Maryland", "Edgewood Region (Harford County)", "Edgewood Region (Harforc County)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-16T22:21:15.596874"}, "latest_revision": 2, "key": "/works/OL10393511W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4309510A"}}], "type": {"key": "/type/work"}, "subjects": ["Hazardous waste sites", "Toxicology", "Arsenic", "Groundwater", "Pollution"], "revision": 2}
+/type/work /works/OL103937W 5 2011-10-19T00:48:52.939433 {"subtitle": "After Chekhov (Gallery Books)", "last_modified": {"type": "/type/datetime", "value": "2011-10-19T00:48:52.939433"}, "title": "The Yalta Game", "created": {"type": "/type/datetime", "value": "2009-10-17T20:21:15.648318"}, "covers": [4868271], "subject_places": ["Russia"], "subjects": ["Drama"], "latest_revision": 5, "key": "/works/OL103937W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4366712A"}}], "type": {"key": "/type/work"}, "revision": 5}
+/type/work /works/OL10393950W 2 2010-01-16T22:21:15.596874 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:54:12.234949"}, "title": "Selected meteorological data for an arid site near Beatty, Nye County, Nevada, calendar year 1986", "subject_places": ["Nye County", "Nevada"], "last_modified": {"type": "/type/datetime", "value": "2010-01-16T22:21:15.596874"}, "latest_revision": 2, "key": "/works/OL10393950W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4309800A"}}], "type": {"key": "/type/work"}, "subjects": ["Radioactive waste disposal in the ground", "Meteorology", "Observations"], "revision": 2}
+/type/work /works/OL10394162W 2 2010-01-16T22:24:42.605888 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:54:12.234949"}, "title": "A prototype model for simulating barrier fire performance", "last_modified": {"type": "/type/datetime", "value": "2010-01-16T22:24:42.605888"}, "latest_revision": 2, "key": "/works/OL10394162W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4309941A"}}], "type": {"key": "/type/work"}, "subjects": ["Wallboard", "Thermal properties", "Computer programs"], "revision": 2}
+/type/work /works/OL10395141W 3 2010-12-03T18:38:22.043299 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:54:19.991108"}, "subject_places": ["North Carolina"], "subjects": ["Curricula", "Education (Higher)", "Gerontology", "Minorities", "Minority aged", "North Carolina Central University", "North Carolina Central University. Public Administration Program", "Study and teaching"], "latest_revision": 3, "key": "/works/OL10395141W", "title": "Multidisciplinary career training in gerontology for minorities", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4310627A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T18:38:22.043299"}, "revision": 3}
+/type/work /works/OL10395314W 3 2010-12-06T07:35:27.340658 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:54:19.991108"}, "subject_places": ["Newville Region (Cumberland County)", "Pennsylvania"], "subjects": ["Agricultural chemicals", "Environmental aspects", "Environmental aspects of Agricultural chemicals", "Environmental aspects of Pesticides", "Hydrogeology", "Pesticides"], "latest_revision": 3, "key": "/works/OL10395314W", "title": "Hydrogeologic setting and simulation of pesticide fate and transport in the unsaturated zone of a regolith-mantled, carbonate-rock terrain near Newville, Pennsylvania", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4310763A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-06T07:35:27.340658"}, "revision": 3}
+/type/work /works/OL10395708W 2 2010-01-16T22:28:12.776983 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:54:38.278321"}, "title": "Geologic map of the area around the Nebo Annex, Marine Corps Logistics Base, Barstow, California", "subject_places": ["Barstow Region", "California"], "last_modified": {"type": "/type/datetime", "value": "2010-01-16T22:28:12.776983"}, "latest_revision": 2, "key": "/works/OL10395708W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4311126A"}}], "type": {"key": "/type/work"}, "subjects": ["Maps", "Geology"], "revision": 2}
+/type/work /works/OL10395879W 2 2010-01-16T22:28:12.776983 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:54:38.278321"}, "title": "Water-resources potential of the freshwater lens at Key West, Florida", "subject_places": ["Key West", "Florida"], "last_modified": {"type": "/type/datetime", "value": "2010-01-16T22:28:12.776983"}, "latest_revision": 2, "key": "/works/OL10395879W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4311294A"}}], "type": {"key": "/type/work"}, "subjects": ["Water-supply", "Water resources development"], "revision": 2}
+/type/work /works/OL10396363W 2 2010-01-16T22:31:32.726693 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:54:44.794170"}, "title": "Evaluation of the surface-water sampling design in the Western Lake Michigan Drainages in relation to environmental factors affecting water quality at base flow", "subject_places": ["Michigan", "Green Bay Region", "Wisconsin", "Upper Peninsula"], "last_modified": {"type": "/type/datetime", "value": "2010-01-16T22:31:32.726693"}, "latest_revision": 2, "key": "/works/OL10396363W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4311702A"}}], "type": {"key": "/type/work"}, "subjects": ["Water quality", "Measurement"], "revision": 2}
+/type/work /works/OL10396484W 2 2010-01-16T22:31:32.726693 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:54:44.794170"}, "title": "Variations in surface-water quantity and quality as a result of the 1993 summer flood in the Devils Lake Basin, North Dakota ; prepared in cooperation with the North Dakota Department of Health", "subject_places": ["Devils Lake Basin", "North Dakota", "Devils Lake Basin (N.D.)", "Devils Lake (N.D. : Lake)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-16T22:31:32.726693"}, "latest_revision": 2, "key": "/works/OL10396484W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4311804A"}}], "type": {"key": "/type/work"}, "subjects": ["Water quality", "Measurement"], "revision": 2}
+/type/work /works/OL103964W 3 2021-05-10T03:39:45.994426 {"title": "Cyprus", "subject_places": ["Cyprus"], "key": "/works/OL103964W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL18802A"}}], "type": {"key": "/type/work"}, "subjects": ["Antiquities"], "covers": [11040523], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-10-17T20:21:15.648318"}, "last_modified": {"type": "/type/datetime", "value": "2021-05-10T03:39:45.994426"}}
+/type/work /works/OL10396577W 2 2010-01-16T22:31:32.726693 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:54:44.794170"}, "title": "Ozone generators in indoor air settings", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-16T22:31:32.726693"}, "latest_revision": 2, "key": "/works/OL10396577W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4311905A"}}], "type": {"key": "/type/work"}, "subjects": ["Ozone", "Physiological effect", "Indoor air pollution"], "revision": 2}
+/type/work /works/OL10396889W 3 2023-01-06T11:06:34.175519 {"title": "An introduction to the Office of Juvenile Justice and Delinquency Prevention", "subject_places": ["United States"], "key": "/works/OL10396889W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4311940A"}}], "type": {"key": "/type/work"}, "subjects": ["Juvenile delinquency", "Prevention"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T02:54:44.794170"}, "last_modified": {"type": "/type/datetime", "value": "2023-01-06T11:06:34.175519"}}
+/type/work /works/OL10396967W 3 2010-12-06T07:38:48.249469 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:54:44.794170"}, "subject_places": ["United States"], "subjects": ["Abused children", "Missing and Exploited Children Comprehensive Action Program", "Police training", "Services for"], "latest_revision": 3, "key": "/works/OL10396967W", "title": "Missing and Exploited Children's Training Program", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4312012A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-06T07:38:48.249469"}, "revision": 3}
+/type/work /works/OL10397252W 3 2010-12-03T17:20:18.346859 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:54:44.794170"}, "subject_places": ["Washington (State)"], "subjects": ["Additives", "Asphalt Pavements", "Binders (Materials)", "Pavements, Asphalt", "Roads, Rubberized", "Rubberized Roads"], "latest_revision": 3, "key": "/works/OL10397252W", "title": "Rubber modified and performance based asphalt binder pavements", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4312285A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T17:20:18.346859"}, "revision": 3}
+/type/work /works/OL10397258W 2 2010-01-16T22:35:09.918849 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:54:44.794170"}, "title": "Quality-assurance plan for water-use program activities of the Caribbean District", "subject_places": ["Virgin Islands of the United States", "Puerto Rico"], "last_modified": {"type": "/type/datetime", "value": "2010-01-16T22:35:09.918849"}, "latest_revision": 2, "key": "/works/OL10397258W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4312292A"}}], "type": {"key": "/type/work"}, "subjects": ["Research", "Quality assurance", "Water use"], "revision": 2}
+/type/work /works/OL10397318W 2 2010-01-16T22:35:09.918849 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:54:44.794170"}, "title": "Sainfoin for Western Canada", "subject_places": ["Western Canada"], "last_modified": {"type": "/type/datetime", "value": "2010-01-16T22:35:09.918849"}, "latest_revision": 2, "key": "/works/OL10397318W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4312345A"}}], "type": {"key": "/type/work"}, "subjects": ["Sainfoin", "Forage plants"], "revision": 2}
+/type/work /works/OL1039756W 3 2020-12-03T10:00:16.661949 {"title": "Ka\u0304ra\u0304-anubhu\u0304ti", "subject_places": ["India", "Orissa", "Orissa (India)"], "key": "/works/OL1039756W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL102159A"}}], "subject_people": ["Surendranath Dwivedy (1913-)"], "type": {"key": "/type/work"}, "subjects": ["Biography", "Political prisoners", "Politicians"], "description": {"type": "/type/text", "value": "Prison experiences of a veteran Oriya freedom fighter, socialist leader and nationalist."}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-09T20:11:46.187045"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-03T10:00:16.661949"}}
+/type/work /works/OL1039785W 2 2010-01-16T22:35:09.918849 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:11:46.187045"}, "title": "Bangladesh customs, excise, and sales tax tariff", "subject_places": ["Bangladesh"], "last_modified": {"type": "/type/datetime", "value": "2010-01-16T22:35:09.918849"}, "latest_revision": 2, "key": "/works/OL1039785W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL102167A"}}], "type": {"key": "/type/work"}, "subjects": ["Law and legislation", "Tariff", "Sales tax", "Excise tax"], "revision": 2}
+/type/work /works/OL1039788W 2 2010-04-20T13:02:51.451679 {"subtitle": "translated English version", "title": "The Bangladesh Labour Code, 2006", "created": {"type": "/type/datetime", "value": "2009-12-09T20:11:46.187045"}, "subject_places": ["Bangladesh"], "last_modified": {"type": "/type/datetime", "value": "2010-04-20T13:02:51.451679"}, "latest_revision": 2, "key": "/works/OL1039788W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL102167A"}}], "type": {"key": "/type/work"}, "subjects": ["Labor laws and legislation"], "revision": 2}
+/type/work /works/OL10398161W 2 2010-01-16T22:38:34.089925 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:54:53.380470"}, "title": "Small-scale hydroelectric project development in Washington State", "subject_places": ["Washington (State)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-16T22:38:34.089925"}, "latest_revision": 2, "key": "/works/OL10398161W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4312943A"}}], "type": {"key": "/type/work"}, "subjects": ["Hydroelectric power plants"], "revision": 2}
+/type/work /works/OL1039829W 4 2020-12-04T13:41:47.010235 {"subtitle": "Bidyut\u0332a bishay\u0307aka a\u0304ina", "title": "The electricity laws =", "subject_places": ["Bangladesh"], "key": "/works/OL1039829W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL102167A"}}], "type": {"key": "/type/work"}, "subjects": ["Law and legislation", "Electric utilities"], "description": {"type": "/type/text", "value": "Compilation of text of laws, rules, and regulations of Bangladesh related to electricity; includes commentary."}, "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-09T20:11:46.187045"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-04T13:41:47.010235"}}
+/type/work /works/OL10398554W 2 2010-01-16T22:38:34.089925 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:54:59.947802"}, "title": "Hydrologic behavior of soils", "last_modified": {"type": "/type/datetime", "value": "2010-01-16T22:38:34.089925"}, "latest_revision": 2, "key": "/works/OL10398554W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4313210A"}}], "type": {"key": "/type/work"}, "subjects": ["Soil moisture", "Soil absorption and adsorption"], "revision": 2}
+/type/work /works/OL10398621W 2 2010-01-16T22:38:34.089925 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:54:59.947802"}, "title": "Common woolly aphids and adelgids of conifers", "subject_places": ["British Columbia"], "last_modified": {"type": "/type/datetime", "value": "2010-01-16T22:38:34.089925"}, "latest_revision": 2, "key": "/works/OL10398621W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4313258A"}}], "type": {"key": "/type/work"}, "subjects": ["Diseases and pests", "Adelges", "Spruce", "Aphididae", "Balsam fir"], "revision": 2}
+/type/work /works/OL10399163W 3 2010-12-03T12:57:14.825202 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:54:59.947802"}, "subject_places": ["Canada"], "subjects": ["Canada", "Industrial relations", "Labor laws and legislation"], "latest_revision": 3, "key": "/works/OL10399163W", "title": "The courts, the charter, and labour relations", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4313510A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T12:57:14.825202"}, "revision": 3}
+/type/work /works/OL10399205W 3 2023-01-04T17:10:38.800206 {"title": "Tshig bdun gsol \u02bedebs da\u1e45 \u02bebrel ba\u02bei bla ma\u02bei rnal \u02bebyor byin rlabs char \u02bebebs b\u017augs so", "key": "/works/OL10399205W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL15521A"}}], "type": {"key": "/type/work"}, "subjects": ["Buddhist meditations"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T02:54:59.947802"}, "last_modified": {"type": "/type/datetime", "value": "2023-01-04T17:10:38.800206"}}
+/type/work /works/OL10399383W 3 2010-12-06T07:36:57.643967 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:55:08.871466"}, "subject_places": ["United States"], "subjects": ["Administrative agencies", "Auditing", "Fraud investigation", "Handbooks, manuals", "Officials and employees", "Study and teaching", "Training of", "United States", "United States. General Accounting Office"], "latest_revision": 3, "key": "/works/OL10399383W", "title": "Advanced fraud", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4313676A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-06T07:36:57.643967"}, "revision": 3}
+/type/work /works/OL10399418W 3 2010-12-06T07:36:12.236737 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:55:08.871466"}, "subject_places": ["Bolling Air Force Base (Washington, D.C.)", "D.C.) Bolling Air Force Base (Washington"], "subjects": ["History"], "latest_revision": 3, "key": "/works/OL10399418W", "title": "Bolling Field", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4313700A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-06T07:36:12.236737"}, "revision": 3}
+/type/work /works/OL10399565W 1 2009-12-11T02:55:08.871466 {"title": "Die chinesische Nelke", "created": {"type": "/type/datetime", "value": "2009-12-11T02:55:08.871466"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:55:08.871466"}, "latest_revision": 1, "key": "/works/OL10399565W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4313836A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10399580W 2 2010-01-16T22:41:54.576686 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:55:08.871466"}, "title": "Investigation of fire and fatality, east Cameron block 60, April 9, 1999", "subject_places": ["Gulf of Mexico"], "last_modified": {"type": "/type/datetime", "value": "2010-01-16T22:41:54.576686"}, "latest_revision": 2, "key": "/works/OL10399580W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4313856A"}}], "type": {"key": "/type/work"}, "subjects": ["Accidents", "Offshore gas industry", "Offshore gas well drilling"], "revision": 2}
+/type/work /works/OL10399737W 1 2009-12-11T02:55:08.871466 {"title": "Zhongguo nong min de chuan tong sheng huo", "created": {"type": "/type/datetime", "value": "2009-12-11T02:55:08.871466"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:55:08.871466"}, "latest_revision": 1, "key": "/works/OL10399737W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4313974A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10399788W 3 2010-12-06T07:37:19.778393 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:55:08.871466"}, "subject_places": ["Cape Ray Region", "Newfoundland"], "subjects": ["Geology", "Geology, Structural", "Gold ores", "Metallogeny", "Structural Geology"], "latest_revision": 3, "key": "/works/OL10399788W", "title": "Gold metallogeny of the Cape Ray fault zone, southwestern Newfoundland", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4314009A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-06T07:37:19.778393"}, "revision": 3}
+/type/work /works/OL10399904W 2 2010-01-16T22:41:54.576686 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:55:08.871466"}, "title": "Unconscious influences on memory", "last_modified": {"type": "/type/datetime", "value": "2010-01-16T22:41:54.576686"}, "latest_revision": 2, "key": "/works/OL10399904W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4314125A"}}], "type": {"key": "/type/work"}, "subjects": ["Explicit memory", "Recollection (Psychology)", "Subconsciousness", "Memory"], "revision": 2}
+/type/work /works/OL10400089W 2 2010-01-16T22:45:19.659395 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:55:08.871466"}, "title": "Concepts of operations for a reusable launch vehicle", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-16T22:45:19.659395"}, "latest_revision": 2, "key": "/works/OL10400089W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4314277A"}}], "type": {"key": "/type/work"}, "subjects": ["Space flight", "Launch vehicles (Astronautics)", "Government policy", "Reusable space vehicles"], "revision": 2}
+/type/work /works/OL10400352W 2 2010-01-16T22:45:19.659395 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:55:16.617289"}, "title": "Current patterns and suspended sediment transport through the Inner Harbor, Bellingham Bay, Bellingham, Washington", "subject_places": ["Washington (State)", "Bellingham Bay"], "last_modified": {"type": "/type/datetime", "value": "2010-01-16T22:45:19.659395"}, "latest_revision": 2, "key": "/works/OL10400352W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4314457A"}}], "type": {"key": "/type/work"}, "subjects": ["Sediment transport", "Ocean circulation", "Oceanography"], "revision": 2}
+/type/work /works/OL1040073W 1 2009-12-09T19:49:22.296652 {"title": "Povesti, roman", "created": {"type": "/type/datetime", "value": "2009-12-09T19:49:22.296652"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:49:22.296652"}, "latest_revision": 1, "key": "/works/OL1040073W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL102197A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10400825W 3 2010-12-06T07:35:27.340658 {"last_modified": {"type": "/type/datetime", "value": "2010-12-06T07:35:27.340658"}, "latest_revision": 3, "key": "/works/OL10400825W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4314823A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T02:55:16.617289"}, "title": "The Upper Triassic Greens Creek VMS (volcanogenic massive sulfide) deposit and Woewodski Island VMS prospects, southeastern Alaska", "subject_places": ["Alaska"], "subjects": ["Geochemistry", "Geology, Stratigraphic", "Stratigraphic Geology", "Sulfide minerals"], "subject_times": ["Triassic"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1040097W 1 2009-12-09T19:49:22.296652 {"title": "Bindu o bista\u0304ra", "created": {"type": "/type/datetime", "value": "2009-12-09T19:49:22.296652"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:49:22.296652"}, "latest_revision": 1, "key": "/works/OL1040097W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL102201A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10401013W 3 2010-12-06T07:36:34.281650 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:55:16.617289"}, "subject_places": ["Nevada", "Sparks"], "subjects": ["Environmental aspects", "Environmental aspects of Explosives industry", "Environmental aspects of Factory and trade waste", "Explosives industry", "Factory and trade waste", "Hazardous waste site remediation"], "latest_revision": 3, "key": "/works/OL10401013W", "title": "Monite Explosives Factory", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4314961A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-06T07:36:34.281650"}, "revision": 3}
+/type/work /works/OL10401210W 2 2010-01-16T22:49:00.077288 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:55:16.617289"}, "title": "National Extension Targeted Water Quality Program, 1992-1995", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-16T22:49:00.077288"}, "latest_revision": 2, "key": "/works/OL10401210W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4315096A"}}], "type": {"key": "/type/work"}, "subjects": ["Water", "Water quality", "Agricultural pollution", "Pollution"], "revision": 2}
+/type/work /works/OL10401238W 2 2010-01-16T22:49:00.077288 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:55:16.617289"}, "title": "A specification-based coverage metric to evaluate test sets", "last_modified": {"type": "/type/datetime", "value": "2010-01-16T22:49:00.077288"}, "latest_revision": 2, "key": "/works/OL10401238W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4315125A"}}], "type": {"key": "/type/work"}, "subjects": ["Testing", "Software measurement", "Evaluation", "Computer software"], "revision": 2}
+/type/work /works/OL1040158W 3 2020-12-03T10:01:22.966695 {"title": "Mal e\u0307mne\u0307lgii\u0306n ne\u0307r tome\u030b\u0308ony gurvan khe\u0307lnii\u0306 tai\u0306lbar tol\u02b9", "key": "/works/OL1040158W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL102227A"}}], "type": {"key": "/type/work"}, "subjects": ["Dictionaries", "Russian language", "Veterinary medicine", "Latin", "Russian", "Mongolian"], "description": {"type": "/type/text", "value": "Dictionary of veterinary science."}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-09T20:11:46.187045"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-03T10:01:22.966695"}}
+/type/work /works/OL10402057W 2 2010-01-16T22:49:00.077288 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:55:24.870627"}, "title": "Ten-year growth and yield of Douglas-fir following stocking control", "last_modified": {"type": "/type/datetime", "value": "2010-01-16T22:49:00.077288"}, "latest_revision": 2, "key": "/works/OL10402057W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4315778A"}}], "type": {"key": "/type/work"}, "subjects": ["Douglas fir", "Thinning", "Yields", "Growth"], "revision": 2}
+/type/work /works/OL10402521W 2 2010-01-16T22:52:35.608145 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:55:33.001417"}, "title": "Russian toys", "subject_places": ["Russia"], "last_modified": {"type": "/type/datetime", "value": "2010-01-16T22:52:35.608145"}, "latest_revision": 2, "key": "/works/OL10402521W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4316173A"}}], "type": {"key": "/type/work"}, "subjects": ["Toys"], "revision": 2}
+/type/work /works/OL10402544W 1 2009-12-11T02:55:33.001417 {"title": "Conference on the United Nations of the next decade", "created": {"type": "/type/datetime", "value": "2009-12-11T02:55:33.001417"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:55:33.001417"}, "latest_revision": 1, "key": "/works/OL10402544W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4316193A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1040260W 1 2009-12-09T19:49:22.296652 {"title": "Ka\u0304kitac can\u0307kilikal\u0323", "created": {"type": "/type/datetime", "value": "2009-12-09T19:49:22.296652"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:49:22.296652"}, "latest_revision": 1, "key": "/works/OL1040260W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL102238A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10402788W 2 2010-01-16T22:52:35.608145 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:55:33.001417"}, "title": "An industry profile of Washington cattlemen", "subject_places": ["Washington (State)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-16T22:52:35.608145"}, "latest_revision": 2, "key": "/works/OL10402788W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4316354A"}}], "type": {"key": "/type/work"}, "subjects": ["Beef cattle", "Cattle trade"], "revision": 2}
+/type/work /works/OL10403390W 2 2010-01-16T22:56:00.681376 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:55:42.090378"}, "title": "Effects of hydraulic variability on sockeye salman (Oncorhynchus nerka) in Lake Ozette, Washington", "subject_places": ["Lake Ozette", "Washington (State)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-16T22:56:00.681376"}, "latest_revision": 2, "key": "/works/OL10403390W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4316766A"}}], "type": {"key": "/type/work"}, "subjects": ["Sockeye salmon", "Hydrology", "Effect of water levels on"], "revision": 2}
+/type/work /works/OL10403460W 2 2010-01-16T22:56:00.681376 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:55:42.090378"}, "title": "Geology and structure of Vestv\u00e5g\u00f8y, Lofoten, North Norway", "subject_places": ["Lofoten", "Norway"], "last_modified": {"type": "/type/datetime", "value": "2010-01-16T22:56:00.681376"}, "latest_revision": 2, "key": "/works/OL10403460W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4316822A"}}], "type": {"key": "/type/work"}, "subjects": ["Geology"], "revision": 2}
+/type/work /works/OL10403592W 3 2010-12-03T18:43:29.907143 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:55:42.090378"}, "subject_places": ["Cleveland", "Ohio"], "subjects": ["Health facilities", "History", "Medical care", "University Hospitals Health System", "University Hospitals of Cleveland (Ohio)"], "latest_revision": 3, "key": "/works/OL10403592W", "title": "University Hospitals Health System, University Hospitals of Cleveland", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4316912A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T18:43:29.907143"}, "revision": 3}
+/type/work /works/OL1040373W 1 2009-12-09T19:49:35.684403 {"title": "Adamya", "created": {"type": "/type/datetime", "value": "2009-12-09T19:49:35.684403"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:49:35.684403"}, "latest_revision": 1, "key": "/works/OL1040373W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL102244A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10403936W 3 2010-12-06T07:38:21.937185 {"last_modified": {"type": "/type/datetime", "value": "2010-12-06T07:38:21.937185"}, "title": "Folk dances of Bohemia and Moravia", "created": {"type": "/type/datetime", "value": "2009-12-11T02:55:42.090378"}, "subjects": ["Bohemian Folk dancing", "Children's songs", "Folk dance music", "Folk dancing, Bohemian", "Folk dancing, Moravian", "Moravian Folk dancing"], "latest_revision": 3, "key": "/works/OL10403936W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4317222A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10404101W 2 2010-01-16T22:56:00.681376 {"title": "Gesture and body movement as physical metaphor to facilitate learning and to enhance musical experience in the choral rehearsal", "created": {"type": "/type/datetime", "value": "2009-12-11T02:55:42.090378"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-16T22:56:00.681376"}, "latest_revision": 2, "key": "/works/OL10404101W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4317351A"}}], "subject_people": ["Rodney Eichenberger", "Timothy Haskett"], "type": {"key": "/type/work"}, "subjects": ["Instruction and study", "Interviews", "Choral singing", "Exercise music", "Music rehearsals", "History and criticism", "Choral conducting"], "revision": 2}
+/type/work /works/OL10404276W 1 2009-12-11T02:55:42.090378 {"title": "Researching environmental law", "created": {"type": "/type/datetime", "value": "2009-12-11T02:55:42.090378"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:55:42.090378"}, "latest_revision": 1, "key": "/works/OL10404276W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4317467A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL104047W 1 2009-10-17T20:21:15.648318 {"created": {"type": "/type/datetime", "value": "2009-10-17T20:21:15.648318"}, "title": "Miniguia - Los Records", "last_modified": {"type": "/type/datetime", "value": "2009-10-17T20:21:15.648318"}, "latest_revision": 1, "key": "/works/OL104047W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL18809A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10404951W 2 2010-01-16T22:59:44.423923 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:55:50.066150"}, "title": "La politique \u00e9conomique", "subject_places": ["Canada"], "last_modified": {"type": "/type/datetime", "value": "2010-01-16T22:59:44.423923"}, "latest_revision": 2, "key": "/works/OL10404951W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4317995A"}}], "type": {"key": "/type/work"}, "subjects": ["Politique \u00e9conomique", "Organismes consultatifs"], "revision": 2}
+/type/work /works/OL10405242W 1 2009-12-11T02:55:50.066150 {"title": "[Hawaii Volcanoes National Park internship journal]", "created": {"type": "/type/datetime", "value": "2009-12-11T02:55:50.066150"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:55:50.066150"}, "latest_revision": 1, "key": "/works/OL10405242W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4318190A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1040531W 3 2010-04-28T07:13:24.349481 {"title": "Ueber die Entstehung des indogermanischen Vokativs", "created": {"type": "/type/datetime", "value": "2009-12-09T20:12:00.802736"}, "covers": [5791803], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:13:24.349481"}, "latest_revision": 3, "key": "/works/OL1040531W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL102284A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10405410W 2 2010-01-16T22:59:44.423923 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:55:57.839579"}, "title": "Using research and reason in education", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-16T22:59:44.423923"}, "latest_revision": 2, "key": "/works/OL10405410W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4318294A"}}], "type": {"key": "/type/work"}, "subjects": ["Research", "Educational change", "Education", "Educational evaluation"], "revision": 2}
+/type/work /works/OL1040552W 3 2020-12-03T11:34:40.776509 {"title": "Alha\u0304 khan\u0323d\u0323a", "subjects": ["\u0100lha kha\u1e47\u1e0da"], "key": "/works/OL1040552W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL102289A"}}], "type": {"key": "/type/work"}, "description": {"type": "/type/text", "value": "Study of the various 19th century texts in Kanauji, Bhojpuri, Bundeli, and English on Alha\u0304 khan\u0323d\u0323a, folk songs on the exploits of Rajput warriors."}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-09T20:12:00.802736"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-03T11:34:40.776509"}}
+/type/work /works/OL10405554W 2 2010-01-16T22:59:44.423923 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:55:57.839579"}, "title": "The establishment of a catalog of compartment fire model algorithms and associated computer subroutines", "last_modified": {"type": "/type/datetime", "value": "2010-01-16T22:59:44.423923"}, "latest_revision": 2, "key": "/works/OL10405554W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4318421A"}}], "type": {"key": "/type/work"}, "subjects": ["Mathematical models", "Fires", "Algorithms"], "revision": 2}
+/type/work /works/OL1040556W 2 2010-01-16T22:59:44.423923 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:12:00.802736"}, "title": "Towards privatization", "subject_places": ["India", "Great Britain", "Germany (East)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-16T22:59:44.423923"}, "latest_revision": 2, "key": "/works/OL1040556W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL102289A"}}], "type": {"key": "/type/work"}, "subjects": ["Privatization", "Government business enterprises"], "revision": 2}
+/type/work /works/OL10405971W 1 2009-12-11T02:55:57.839579 {"title": "Assistant Program Director & Naturalist", "created": {"type": "/type/datetime", "value": "2009-12-11T02:55:57.839579"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:55:57.839579"}, "latest_revision": 1, "key": "/works/OL10405971W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4318763A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10406272W 2 2010-01-16T23:03:23.751375 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:55:57.839579"}, "title": "Analysis of cross-shore movement of natural longshore bars and material placed to create longshore bars", "last_modified": {"type": "/type/datetime", "value": "2010-01-16T23:03:23.751375"}, "latest_revision": 2, "key": "/works/OL10406272W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4318954A"}}], "type": {"key": "/type/work"}, "subjects": ["Dredging spoil", "Sediment transport", "Sand bars", "Littoral drift"], "revision": 2}
+/type/work /works/OL10406331W 2 2010-01-16T23:03:23.751375 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:55:57.839579"}, "title": "Respublika Buri\ufe20a\ufe21tit\ufe20a\ufe21", "subject_places": ["Buri\ufe20a\ufe21tii\ufe20a\ufe21 (Russia)", "Russia (Federation)", "Buri\ufe20a\ufe21tii\ufe20a\ufe21"], "last_modified": {"type": "/type/datetime", "value": "2010-01-16T23:03:23.751375"}, "latest_revision": 2, "key": "/works/OL10406331W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4319005A"}}], "type": {"key": "/type/work"}, "subjects": ["Politics and government", "Press and politics"], "revision": 2}
+/type/work /works/OL10406633W 3 2010-12-06T07:38:21.937185 {"last_modified": {"type": "/type/datetime", "value": "2010-12-06T07:38:21.937185"}, "title": "Islamic economics", "created": {"type": "/type/datetime", "value": "2009-12-11T02:56:07.324531"}, "subjects": ["Economic aspects", "Economic aspects of Islam", "Economics", "Islam", "Religious aspects", "Religious aspects of Economics"], "latest_revision": 3, "key": "/works/OL10406633W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4319238A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10406668W 1 2009-12-11T02:56:07.324531 {"title": "A benefit-cost analysis of the proposed county park bicycle trail to Larrabee State Park", "created": {"type": "/type/datetime", "value": "2009-12-11T02:56:07.324531"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:56:07.324531"}, "latest_revision": 1, "key": "/works/OL10406668W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4319256A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10406683W 3 2010-12-06T07:37:54.137693 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:56:07.324531"}, "subject_places": ["South Carolina", "United States"], "subjects": ["Licenses", "Nuclear power plants", "Safety measures", "Virgil C. Summer Nuclear Station"], "latest_revision": 3, "key": "/works/OL10406683W", "title": "Safety evaluation report related to the license renewal of the Virgil C. Summer Nuclear Station", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4319272A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-06T07:37:54.137693"}, "revision": 3}
+/type/work /works/OL10406769W 2 2012-07-11T15:24:22.738404 {"title": "Fields from primary production", "created": {"type": "/type/datetime", "value": "2009-12-11T02:56:07.324531"}, "last_modified": {"type": "/type/datetime", "value": "2012-07-11T15:24:22.738404"}, "latest_revision": 2, "key": "/works/OL10406769W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4319341A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10406998W 4 2020-12-10T22:20:10.875763 {"description": {"type": "/type/text", "value": "Aiming to help all community colleges unleash their\r\npotential for workforce and economic development the\r\nOffice of Vocational and Adult Education of the U.S.\r\nDepartment of Education sought to identify ways college\r\nleaders can improve those programs and services that\r\nmost directly affect the ability of citizens to compete in\r\ntoday\u2019s increasingly demanding skill-based labor market,\r\nand the ability of employers to compete in today\u2019s\r\nchallenging global market. The result is this guidebook,\r\nwhich has three major goals. \r\n\r\nThe first goal is to share up-to-date information on labor market\r\nresponsiveness. Based on contemporary research,\r\nthis guide explains what is meant by \u201clabor market\r\nresponsiveness,\u201d delineates factors associated with\r\nbecoming more responsive, and clarifies why labor\r\nmarket responsiveness is so important to community\r\ncolleges in the 21st century.\r\n\r\nThe second goal is to offer practical guidance to\r\ncollege administrators seeking to take actions\r\nthat will allow them to maximize their labor\r\nmarket responsiveness. We believe college\r\nleaders will be especially interested in learning how\r\ntheir colleagues across the nation have endeavored\r\nto make their colleges more responsive to labor\r\nmarket conditions.\r\n\r\nThe third goal is to encourage community college\r\nadministrators to engage in a critical selfassessment\r\nprocess. The guiding questions that\r\nappear throughout the guidebook and the selfassessment\r\ntools provided suggest a process that\r\nwill help college leaders and top officials to identify\r\ngaps in programs and services as well as\r\nopportunities for promoting action on campus.\r\n\r\nThis guidebook is directed to you, the top leadership\r\nat community colleges as presidents, boards of\r\ntrustees, and the senior administrators and deans\r\nresponsible for the colleges\u2019 missions and programs.\r\nIn turn, we expect that you will share portions of this\r\nguide, or its entirety, with others\u2014faculty, staff,\r\nemployers, economic development professionals,\r\nand public officials. Involving the broader campus\r\nand community in self-assessment and strategic\r\nplanning is an important step toward becoming\r\nincreasingly anticipatory of and responsive to local\r\nand regional workforce development needs."}, "title": "The 21st-century community college", "subject_places": ["United States"], "subjects": ["Community colleges", "Business and education", "Vocational education", "Planning", "Evaluation", "Employment forecasting", "Forecasting", "Labor supply", "Community college", "Economic aspects", "Labor market", "Research"], "key": "/works/OL10406998W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4319511A"}}], "subject_times": ["The Twenty-First Century"], "type": {"key": "/type/work"}, "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T02:56:07.324531"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-10T22:20:10.875763"}}
+/type/work /works/OL10407046W 3 2010-04-28T07:13:24.349481 {"title": "Du hu zhi du yan jiu", "created": {"type": "/type/datetime", "value": "2009-12-11T02:56:07.324531"}, "covers": [5288927], "subject_places": ["China"], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:13:24.349481"}, "latest_revision": 3, "key": "/works/OL10407046W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4319554A"}}], "subjects": ["Boundaries", "History", "Local government", "Minorities"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10407097W 2 2010-01-16T23:03:23.751375 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:56:07.324531"}, "title": "Manitoba people", "subject_places": ["Manitoba"], "last_modified": {"type": "/type/datetime", "value": "2010-01-16T23:03:23.751375"}, "latest_revision": 2, "key": "/works/OL10407097W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4319587A"}}], "type": {"key": "/type/work"}, "subjects": ["Population"], "revision": 2}
+/type/work /works/OL10407135W 1 2009-12-11T02:56:07.324531 {"title": "The recreation aspects of the Mt. Baker-Snoqualmie National Forest", "created": {"type": "/type/datetime", "value": "2009-12-11T02:56:07.324531"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:56:07.324531"}, "latest_revision": 1, "key": "/works/OL10407135W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4319616A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10407594W 2 2010-04-30T18:58:27.223451 {"subtitle": "Yi \u016cn-suk sijip.", "created": {"type": "/type/datetime", "value": "2009-12-11T02:56:15.668451"}, "title": "Chaban kod\u016dng\u014f r\u016dl kupta", "last_modified": {"type": "/type/datetime", "value": "2010-04-30T18:58:27.223451"}, "latest_revision": 2, "key": "/works/OL10407594W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4319983A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10407623W 2 2010-01-16T23:03:23.751375 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:56:15.668451"}, "title": "Wen xue gai lun", "last_modified": {"type": "/type/datetime", "value": "2010-01-16T23:03:23.751375"}, "latest_revision": 2, "key": "/works/OL10407623W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4319992A"}}], "type": {"key": "/type/work"}, "subjects": ["Literature", "History and criticism"], "revision": 2}
+/type/work /works/OL10407736W 2 2020-12-14T18:56:16.284484 {"title": "Ikh Mongolyn Suvarga : Onol khiigeed buteekh es", "key": "/works/OL10407736W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4320065A"}}], "type": {"key": "/type/work"}, "subjects": ["St\u016bpas"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T02:56:15.668451"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-14T18:56:16.284484"}}
+/type/work /works/OL10408385W 1 2009-12-11T02:56:24.030098 {"title": "Tropical biology in Costa Rica", "created": {"type": "/type/datetime", "value": "2009-12-11T02:56:24.030098"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:56:24.030098"}, "latest_revision": 1, "key": "/works/OL10408385W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4320466A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10408614W 2 2010-01-16T23:06:51.781885 {"title": "Ta\u012dny Vostochnogo \u0117kspressa", "created": {"type": "/type/datetime", "value": "2009-12-11T02:56:24.030098"}, "subject_places": ["Korea (North)", "Russia (Federation)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-16T23:06:51.781885"}, "latest_revision": 2, "key": "/works/OL10408614W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4320613A"}}], "subject_people": ["Ch\u014fng-il Kim (1942-)", "O. P. Mal\u02b9t\ufe20s\ufe21eva"], "type": {"key": "/type/work"}, "subjects": ["Travel", "Description and travel"], "revision": 2}
+/type/work /works/OL10408907W 2 2010-01-16T23:06:51.781885 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:56:24.030098"}, "title": "Li dai hua jia gu shi", "subject_places": ["China"], "last_modified": {"type": "/type/datetime", "value": "2010-01-16T23:06:51.781885"}, "latest_revision": 2, "key": "/works/OL10408907W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4320797A"}}], "type": {"key": "/type/work"}, "subjects": ["Painters", "Anecdotes"], "revision": 2}
+/type/work /works/OL10409039W 3 2022-12-29T23:27:54.515613 {"title": "Koster v stepi..", "key": "/works/OL10409039W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4320896A"}}], "type": {"key": "/type/work"}, "subjects": ["Correspondence", "Kalmyk Poets", "Biography", "Autobiography (memoirs)", "Criticism", "LANGUAGE AND LITERATURE", "Letters (Literary history)", "Poetry"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T02:56:24.030098"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-29T23:27:54.515613"}}
+/type/work /works/OL10409122W 4 2020-12-11T00:24:04.889141 {"key": "/works/OL10409122W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4320939A"}}], "title": "Gorodskoe naselenie I\ufe20A\ufe21kutii v uslovii\ufe20a\ufe21kh intensivnogo promyshlennogo osvoenii\ufe20a\ufe21 (konet\ufe20s\ufe21 50-kh -- 80-e gg. XX v.)", "subject_places": ["Russia (Federation)", "Sakha", "Sakha (Russia)"], "subjects": ["Economic aspects", "Emigration and immigration", "History", "Industrialization", "Internal Migration", "Migration, Internal", "Minorities", "Population", "Urbanization", "Rural-urban migration"], "subject_times": ["20th century"], "type": {"key": "/type/work"}, "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T02:56:24.030098"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-11T00:24:04.889141"}}
+/type/work /works/OL10409180W 3 2010-12-06T07:38:48.249469 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:56:24.030098"}, "subject_places": ["West (U.S.)"], "subjects": ["Archival resources", "Catalogs", "Ecology", "Natural resources", "Science", "Technology", "United States", "United States. National Archives and Records Administration. Pacific Sierra Region"], "latest_revision": 3, "key": "/works/OL10409180W", "title": "Records in the National Archives-Pacific Region, for the study of science, technology, natural resources, and the environment", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4320981A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-06T07:38:48.249469"}, "revision": 3}
+/type/work /works/OL1040919W 1 2009-12-09T19:49:35.684403 {"title": "Pui\u02ba khan\u02bb\u02ba chi\u0304\u02ba nok\u02bb mha n\u0307a rai khan\u02bb\u02ba mya\u0304\u02ba", "created": {"type": "/type/datetime", "value": "2009-12-09T19:49:35.684403"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:49:35.684403"}, "latest_revision": 1, "key": "/works/OL1040919W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL102342A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10409690W 2 2010-01-17T01:18:40.698958 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:56:31.871224"}, "title": "An investigation into the formation and recruitment processes of Aboriginal gangs in western Canada", "subject_places": ["Western Canada"], "last_modified": {"type": "/type/datetime", "value": "2010-01-17T01:18:40.698958"}, "latest_revision": 2, "key": "/works/OL10409690W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4321355A"}}], "type": {"key": "/type/work"}, "subjects": ["Gang members", "Organized crime", "Gang prevention", "Gangs", "Prevention"], "revision": 2}
+/type/work /works/OL10409904W 2 2010-01-17T01:18:40.698958 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:56:31.871224"}, "title": "Madkhal il\u00e1 al-adab al-Isl\u0101m\u012b", "last_modified": {"type": "/type/datetime", "value": "2010-01-17T01:18:40.698958"}, "latest_revision": 2, "key": "/works/OL10409904W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4321508A"}}], "type": {"key": "/type/work"}, "subjects": ["Islamic literature", "History and criticism"], "revision": 2}
+/type/work /works/OL10410423W 3 2011-01-18T09:13:04.004709 {"last_modified": {"type": "/type/datetime", "value": "2011-01-18T09:13:04.004709"}, "title": "Societal laws", "created": {"type": "/type/datetime", "value": "2009-12-11T02:56:36.699761"}, "subjects": ["Methodology", "Social sciences"], "latest_revision": 3, "key": "/works/OL10410423W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1195759A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10410656W 4 2019-07-31T02:39:12.373187 {"covers": [5144240], "last_modified": {"type": "/type/datetime", "value": "2019-07-31T02:39:12.373187"}, "latest_revision": 4, "key": "/works/OL10410656W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4321866A"}}, {"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1710678A"}}, {"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL3659589A"}}, {"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1487749A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T02:56:36.699761"}, "title": "The V\u1e5bttiv\u0101rttika or commentary on the functions of words of Appaya D\u012bk\u1e63ita", "subjects": ["Early works to 1800", "Poetics", "Sanskrit language", "Semantics", "Reference", "Language Arts & Disciplines", "Figures of speech", "Language"], "subject_people": ["Appayya D\u012bk\u1e63ita"], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL10410732W 2 2010-01-17T01:26:36.217000 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:56:36.699761"}, "title": "Mimamsanukramanika", "last_modified": {"type": "/type/datetime", "value": "2010-01-17T01:26:36.217000"}, "latest_revision": 2, "key": "/works/OL10410732W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4321885A"}}], "type": {"key": "/type/work"}, "subjects": ["M\u012bm\u0101\u1e43s\u0101"], "revision": 2}
+/type/work /works/OL10411137W 3 2010-12-03T13:16:10.718714 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:16:10.718714"}, "title": "Matbaat dar-al-Kutub", "created": {"type": "/type/datetime", "value": "2009-12-11T02:56:36.699761"}, "subjects": ["Civilization, Islamic", "Greek influences", "Islamic Civilization"], "latest_revision": 3, "key": "/works/OL10411137W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4322067A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10411192W 2 2010-01-17T01:26:36.217000 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:56:36.699761"}, "title": "Tatsachen, Normen, S\u00e4tze", "last_modified": {"type": "/type/datetime", "value": "2010-01-17T01:26:36.217000"}, "latest_revision": 2, "key": "/works/OL10411192W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4322103A"}}], "type": {"key": "/type/work"}, "subjects": ["Philosophy"], "revision": 2}
+/type/work /works/OL10411482W 2 2010-01-17T01:26:36.217000 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:56:41.148208"}, "title": "\u0130sl\u00e2m tasavvuf tarihi", "last_modified": {"type": "/type/datetime", "value": "2010-01-17T01:26:36.217000"}, "latest_revision": 2, "key": "/works/OL10411482W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4322228A"}}], "type": {"key": "/type/work"}, "subjects": ["Sufism", "Islam", "Mysticism"], "revision": 2}
+/type/work /works/OL10412037W 1 2009-12-11T02:56:41.148208 {"title": "Laminating and varnishing", "created": {"type": "/type/datetime", "value": "2009-12-11T02:56:41.148208"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:56:41.148208"}, "latest_revision": 1, "key": "/works/OL10412037W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4322445A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10412160W 1 2009-12-11T02:56:41.148208 {"title": "For cross or crescent", "created": {"type": "/type/datetime", "value": "2009-12-11T02:56:41.148208"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:56:41.148208"}, "latest_revision": 1, "key": "/works/OL10412160W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4322498A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10412557W 1 2009-12-11T02:56:46.361266 {"title": "The lost empire", "created": {"type": "/type/datetime", "value": "2009-12-11T02:56:46.361266"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:56:46.361266"}, "latest_revision": 1, "key": "/works/OL10412557W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4322644A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1041302W 1 2009-12-09T19:49:35.684403 {"title": "Phelud\u0101 e\u1e47\u1e0da ko\u1e43", "created": {"type": "/type/datetime", "value": "2009-12-09T19:49:35.684403"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:49:35.684403"}, "latest_revision": 1, "key": "/works/OL1041302W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL102385A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10413297W 2 2010-01-17T01:35:55.680202 {"title": "Rosa Luxemburg", "created": {"type": "/type/datetime", "value": "2009-12-11T02:56:46.361266"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-17T01:35:55.680202"}, "latest_revision": 2, "key": "/works/OL10413297W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4322887A"}}], "subject_people": ["Rosa Luxemburg (1871-1919)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10413868W 2 2020-11-27T07:39:53.343459 {"title": "The theory of beauty", "created": {"type": "/type/datetime", "value": "2009-12-11T02:56:50.771138"}, "last_modified": {"type": "/type/datetime", "value": "2020-11-27T07:39:53.343459"}, "latest_revision": 2, "key": "/works/OL10413868W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1801624A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10414301W 1 2009-12-11T02:56:50.771138 {"title": "Paintings, prints and drawings 1960-1970", "created": {"type": "/type/datetime", "value": "2009-12-11T02:56:50.771138"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:56:50.771138"}, "latest_revision": 1, "key": "/works/OL10414301W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4323192A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10414579W 1 2009-12-11T02:56:55.329252 {"title": "English country houses open to the public", "created": {"type": "/type/datetime", "value": "2009-12-11T02:56:55.329252"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:56:55.329252"}, "latest_revision": 1, "key": "/works/OL10414579W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4323275A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10414692W 1 2009-12-11T02:56:55.329252 {"title": "An essay on criticism", "created": {"type": "/type/datetime", "value": "2009-12-11T02:56:55.329252"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:56:55.329252"}, "latest_revision": 1, "key": "/works/OL10414692W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4323316A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10414741W 2 2010-01-17T01:35:55.680202 {"title": "George Meriton's A Yorkshire dialogue (1683)", "created": {"type": "/type/datetime", "value": "2009-12-11T02:56:55.329252"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-17T01:35:55.680202"}, "latest_revision": 2, "key": "/works/OL10414741W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4323340A"}}], "subject_people": ["George Meriton (1634-1711)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10414982W 2 2011-10-17T23:44:16.030520 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:56:55.329252"}, "subject_places": ["Latin America"], "subjects": ["Blacks"], "latest_revision": 2, "key": "/works/OL10414982W", "title": "On the provenience of new world negroes", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4323400A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2011-10-17T23:44:16.030520"}, "revision": 2}
+/type/work /works/OL1041513W 3 2021-10-20T08:08:31.412832 {"title": "India and Turkey, past and emerging relations", "subject_places": ["Turkey", "India"], "key": "/works/OL1041513W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL102422A"}}], "type": {"key": "/type/work"}, "subjects": ["Foreign relations"], "covers": [12138711], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-09T20:12:17.877485"}, "last_modified": {"type": "/type/datetime", "value": "2021-10-20T08:08:31.412832"}}
+/type/work /works/OL10415734W 2 2018-11-22T01:35:07.733433 {"title": "Christie's Christmas", "created": {"type": "/type/datetime", "value": "2009-12-11T02:57:00.035009"}, "last_modified": {"type": "/type/datetime", "value": "2018-11-22T01:35:07.733433"}, "latest_revision": 2, "key": "/works/OL10415734W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL967509A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL1041611W 4 2011-11-18T17:55:50.181362 {"title": "Will the Soul of Europe Return?", "created": {"type": "/type/datetime", "value": "2009-12-09T20:12:17.877485"}, "last_modified": {"type": "/type/datetime", "value": "2011-11-18T17:55:50.181362"}, "latest_revision": 4, "key": "/works/OL1041611W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL178533A"}}], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL10416135W 3 2017-05-18T06:09:59.779048 {"title": "Myth and miracle", "created": {"type": "/type/datetime", "value": "2009-12-11T02:57:00.035009"}, "last_modified": {"type": "/type/datetime", "value": "2017-05-18T06:09:59.779048"}, "latest_revision": 3, "key": "/works/OL10416135W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL119069A"}}], "subject_people": ["William Shakespeare (1564-1616)"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10416170W 3 2021-03-26T17:24:13.110401 {"title": "Around the world", "key": "/works/OL10416170W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL453388A"}}], "subject_times": ["1950-"], "type": {"key": "/type/work"}, "subjects": ["Readers"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T02:57:00.035009"}, "last_modified": {"type": "/type/datetime", "value": "2021-03-26T17:24:13.110401"}}
+/type/work /works/OL10416294W 3 2022-09-18T18:11:29.373860 {"title": "Education on the Dalton plan", "key": "/works/OL10416294W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4323899A"}}], "type": {"key": "/type/work"}, "covers": [10613260], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T02:57:00.035009"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-18T18:11:29.373860"}}
+/type/work /works/OL10416302W 3 2016-07-31T11:23:51.494542 {"title": "The unfinished odyssey of Robert Kennedy", "created": {"type": "/type/datetime", "value": "2009-12-11T02:57:00.035009"}, "last_modified": {"type": "/type/datetime", "value": "2016-07-31T11:23:51.494542"}, "latest_revision": 3, "key": "/works/OL10416302W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL29660A"}}], "subject_people": ["Robert F. Kennedy (1925-1968)", "Robert F. Kennedy", "Robert Kennedy"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10416466W 2 2010-10-22T23:40:09.540691 {"title": "Westminster Hall", "created": {"type": "/type/datetime", "value": "2009-12-11T02:57:04.576212"}, "last_modified": {"type": "/type/datetime", "value": "2010-10-22T23:40:09.540691"}, "latest_revision": 2, "key": "/works/OL10416466W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL122595A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10416666W 2 2017-10-13T16:27:11.573967 {"title": "Collected essays in literary criticism", "created": {"type": "/type/datetime", "value": "2009-12-11T02:57:04.576212"}, "last_modified": {"type": "/type/datetime", "value": "2017-10-13T16:27:11.573967"}, "latest_revision": 2, "key": "/works/OL10416666W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL117497A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10416807W 1 2009-12-11T02:57:04.576212 {"title": "Delinquents in the making", "created": {"type": "/type/datetime", "value": "2009-12-11T02:57:04.576212"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:57:04.576212"}, "latest_revision": 1, "key": "/works/OL10416807W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4323962A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10416962W 2 2019-07-30T10:14:45.274192 {"title": "Technical drawing", "created": {"type": "/type/datetime", "value": "2009-12-11T02:57:04.576212"}, "last_modified": {"type": "/type/datetime", "value": "2019-07-30T10:14:45.274192"}, "latest_revision": 2, "key": "/works/OL10416962W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4324034A"}}, {"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2540592A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL1041737W 4 2020-07-31T07:58:34.399471 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:12:17.877485"}, "subjects": ["Tamil literature", "History and criticism", "Tamil literature, history and criticism"], "latest_revision": 4, "key": "/works/OL1041737W", "title": "Companion studies to the history of Tamil literature", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL102474A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-07-31T07:58:34.399471"}, "covers": [4886347], "revision": 4}
+/type/work /works/OL10417719W 1 2009-12-11T02:57:11.354506 {"title": "Economic development and population growth;a conflict?", "created": {"type": "/type/datetime", "value": "2009-12-11T02:57:11.354506"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:57:11.354506"}, "latest_revision": 1, "key": "/works/OL10417719W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4324381A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10418031W 2 2010-01-17T01:43:30.146367 {"title": "Teste Scelte---da Rafaello D'Urbino", "created": {"type": "/type/datetime", "value": "2009-12-11T02:57:11.354506"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-17T01:43:30.146367"}, "latest_revision": 2, "key": "/works/OL10418031W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4324526A"}}], "subject_people": ["Raphael (1483-1520)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10418198W 1 2009-12-11T02:57:11.354506 {"title": "Physiology of the nervous system", "created": {"type": "/type/datetime", "value": "2009-12-11T02:57:11.354506"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:57:11.354506"}, "latest_revision": 1, "key": "/works/OL10418198W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4324635A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1041848W 4 2012-08-04T02:05:36.726969 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:12:17.877485"}, "subjects": ["Vedas", "Hindu Philosophy"], "latest_revision": 4, "key": "/works/OL1041848W", "title": "Dialogues on the Hindu philosophy, comprising the Nyaya, the Sankhya, the Vedant", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL102487A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-08-04T02:05:36.726969"}, "covers": [5639488], "revision": 4}
+/type/work /works/OL10418654W 2 2018-06-19T21:58:11.383327 {"title": "To whom do schools belong?", "created": {"type": "/type/datetime", "value": "2009-12-11T02:57:16.968183"}, "last_modified": {"type": "/type/datetime", "value": "2018-06-19T21:58:11.383327"}, "latest_revision": 2, "key": "/works/OL10418654W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2057854A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10418781W 1 2009-12-11T02:57:16.968183 {"title": "Indian Art in Middle America", "created": {"type": "/type/datetime", "value": "2009-12-11T02:57:16.968183"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:57:16.968183"}, "latest_revision": 1, "key": "/works/OL10418781W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4324879A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10419633W 2 2010-09-22T13:45:49.533036 {"title": "The downfalls of civilizations", "created": {"type": "/type/datetime", "value": "2009-12-11T02:57:21.217340"}, "last_modified": {"type": "/type/datetime", "value": "2010-09-22T13:45:49.533036"}, "latest_revision": 2, "key": "/works/OL10419633W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL114108A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10419639W 2 2010-09-22T13:45:49.533036 {"title": "Historien i nyt Lys", "created": {"type": "/type/datetime", "value": "2009-12-11T02:57:21.217340"}, "last_modified": {"type": "/type/datetime", "value": "2010-09-22T13:45:49.533036"}, "latest_revision": 2, "key": "/works/OL10419639W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL114108A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10419994W 2 2010-12-07T06:02:46.165702 {"title": "The Chronicle of the drum", "created": {"type": "/type/datetime", "value": "2009-12-11T02:57:21.217340"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-07T06:02:46.165702"}, "latest_revision": 2, "key": "/works/OL10419994W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL23186A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10420092W 4 2012-11-28T11:20:06.221790 {"title": "The book of snobs", "created": {"type": "/type/datetime", "value": "2009-12-11T02:57:21.217340"}, "last_modified": {"type": "/type/datetime", "value": "2012-11-28T11:20:06.221790"}, "latest_revision": 4, "key": "/works/OL10420092W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL23186A"}}], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL10420259W 2 2010-12-21T16:01:11.439746 {"title": "Lettering", "created": {"type": "/type/datetime", "value": "2009-12-11T02:57:21.217340"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-21T16:01:11.439746"}, "latest_revision": 2, "key": "/works/OL10420259W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL786143A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10420291W 2 2010-01-17T01:51:31.963660 {"title": "The poetry of Andrew Marvell", "created": {"type": "/type/datetime", "value": "2009-12-11T02:57:21.217340"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-17T01:51:31.963660"}, "latest_revision": 2, "key": "/works/OL10420291W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4325404A"}}], "subject_people": ["Andrew Marvell (1621-1678)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10420584W 1 2009-12-11T02:57:25.208228 {"title": "Designing schools for handicapped children", "created": {"type": "/type/datetime", "value": "2009-12-11T02:57:25.208228"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:57:25.208228"}, "latest_revision": 1, "key": "/works/OL10420584W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4325501A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10421131W 2 2010-01-17T01:51:31.963660 {"title": "Courbet", "created": {"type": "/type/datetime", "value": "2009-12-11T02:57:25.208228"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-17T01:51:31.963660"}, "latest_revision": 2, "key": "/works/OL10421131W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4325678A"}}], "subject_people": ["Gustave Courbet (1819-1877)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10421182W 5 2019-03-27T02:47:07.140726 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:57:25.208228"}, "subjects": ["English Short stories", "French Short stories", "Short stories, English", "Short stories, French", "Translations from French", "Translations into English"], "latest_revision": 5, "key": "/works/OL10421182W", "title": "Feux", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL20371A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2019-03-27T02:47:07.140726"}, "covers": [8469480], "revision": 5}
+/type/work /works/OL10421278W 1 2009-12-11T02:57:25.208228 {"title": "Tropical fish guide", "created": {"type": "/type/datetime", "value": "2009-12-11T02:57:25.208228"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:57:25.208228"}, "latest_revision": 1, "key": "/works/OL10421278W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4325720A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10421520W 2 2011-02-23T07:01:59.406056 {"title": "Green light", "created": {"type": "/type/datetime", "value": "2009-12-11T02:57:28.847702"}, "last_modified": {"type": "/type/datetime", "value": "2011-02-23T07:01:59.406056"}, "latest_revision": 2, "key": "/works/OL10421520W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL22554A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10421896W 1 2009-12-11T02:57:28.847702 {"title": "Natt i marknadsta\u0308ltet", "created": {"type": "/type/datetime", "value": "2009-12-11T02:57:28.847702"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:57:28.847702"}, "latest_revision": 1, "key": "/works/OL10421896W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4325784A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10422233W 1 2009-12-11T02:57:28.847702 {"title": "Cat's Prey", "created": {"type": "/type/datetime", "value": "2009-12-11T02:57:28.847702"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:57:28.847702"}, "latest_revision": 1, "key": "/works/OL10422233W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4325998A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10423526W 1 2009-12-11T02:57:35.520530 {"title": "Britannia, 1651-1951", "created": {"type": "/type/datetime", "value": "2009-12-11T02:57:35.520530"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:57:35.520530"}, "latest_revision": 1, "key": "/works/OL10423526W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4326331A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1042376W 2 2010-01-17T01:51:31.963660 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:12:37.549361"}, "title": "Tribal voting behaviour", "subject_places": ["India", "Bihar", "Bihar (India)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-17T01:51:31.963660"}, "latest_revision": 2, "key": "/works/OL1042376W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL102591A"}}], "type": {"key": "/type/work"}, "subjects": ["Voting", "Scheduled tribes", "Political participation"], "revision": 2}
+/type/work /works/OL10423848W 3 2022-11-04T05:39:31.295292 {"title": "Yours faithfully", "key": "/works/OL10423848W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4326391A"}}], "type": {"key": "/type/work"}, "subjects": ["Spiritual life", "Christianity", "Christianisme"], "covers": [12985802], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T02:57:35.520530"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-04T05:39:31.295292"}}
+/type/work /works/OL10423863W 1 2009-12-11T02:57:35.520530 {"title": "Giovani amici", "created": {"type": "/type/datetime", "value": "2009-12-11T02:57:35.520530"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:57:35.520530"}, "latest_revision": 1, "key": "/works/OL10423863W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4326396A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10423907W 1 2009-12-11T02:57:35.520530 {"title": "The jade lizard", "created": {"type": "/type/datetime", "value": "2009-12-11T02:57:35.520530"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:57:35.520530"}, "latest_revision": 1, "key": "/works/OL10423907W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4326402A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10424362W 1 2009-12-11T02:57:38.522026 {"title": "A little Rhodesian", "created": {"type": "/type/datetime", "value": "2009-12-11T02:57:38.522026"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:57:38.522026"}, "latest_revision": 1, "key": "/works/OL10424362W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4326528A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1042488W 1 2009-12-09T19:50:12.394791 {"title": "Ka\u0304la\u0304 gula\u0304ba", "created": {"type": "/type/datetime", "value": "2009-12-09T19:50:12.394791"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:50:12.394791"}, "latest_revision": 1, "key": "/works/OL1042488W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL102613A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10424960W 2 2012-12-29T20:21:16.799315 {"title": "English church plate, 597-1830", "created": {"type": "/type/datetime", "value": "2009-12-11T02:57:38.522026"}, "last_modified": {"type": "/type/datetime", "value": "2012-12-29T20:21:16.799315"}, "latest_revision": 2, "key": "/works/OL10424960W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1550981A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10425614W 2 2010-01-17T02:00:03.607233 {"title": "Vincent van Gogh", "created": {"type": "/type/datetime", "value": "2009-12-11T02:57:41.194868"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-17T02:00:03.607233"}, "latest_revision": 2, "key": "/works/OL10425614W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4326781A"}}], "subject_people": ["Vincent van Gogh (1853-1890)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL1042599W 1 2009-12-09T19:50:12.394791 {"title": "Unni\u0304sva\u0304n\u0332 adhya\u0304\u02bce", "created": {"type": "/type/datetime", "value": "2009-12-09T19:50:12.394791"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:50:12.394791"}, "latest_revision": 1, "key": "/works/OL1042599W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL102641A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10426128W 2 2010-12-06T07:40:10.989635 {"last_modified": {"type": "/type/datetime", "value": "2010-12-06T07:40:10.989635"}, "title": "The faith of a schoolmaster", "created": {"type": "/type/datetime", "value": "2009-12-11T02:57:41.194868"}, "subjects": ["Newbury Grammar School"], "latest_revision": 2, "key": "/works/OL10426128W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4326833A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10426622W 2 2022-12-21T10:30:21.533218 {"title": "Some characteristics of built stock in Reading", "key": "/works/OL10426622W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4326909A"}}], "type": {"key": "/type/work"}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T02:57:43.451766"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-21T10:30:21.533218"}}
+/type/work /works/OL10426641W 4 2017-05-15T06:36:59.599831 {"subtitle": "with a preliminary view of the ancient Mexican civilization, and the life of the conqueror, Hernando Corte s.", "last_modified": {"type": "/type/datetime", "value": "2017-05-15T06:36:59.599831"}, "title": "History of the conquest of Mexico", "created": {"type": "/type/datetime", "value": "2009-12-11T02:57:43.451766"}, "subject_places": ["Mexico"], "subjects": ["History"], "subject_people": ["Hernando Cort\u00e9s (1485-1547)"], "key": "/works/OL10426641W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL115275A"}}], "latest_revision": 4, "subject_times": ["Conquest, 1519-1540"], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL10426913W 3 2012-05-28T18:16:34.712662 {"title": "O propagande i agitatsii", "created": {"type": "/type/datetime", "value": "2009-12-11T02:57:43.451766"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-28T18:16:34.712662"}, "latest_revision": 3, "key": "/works/OL10426913W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1104A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10427285W 4 2020-02-14T01:29:49.950383 {"last_modified": {"type": "/type/datetime", "value": "2020-02-14T01:29:49.950383"}, "title": "Bad art", "created": {"type": "/type/datetime", "value": "2009-12-11T02:57:43.451766"}, "subjects": ["Aesthetics", "Influence", "Art and society", "Art criticism", "Art patronage"], "latest_revision": 4, "key": "/works/OL10427285W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4327004A"}}], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL10427470W 6 2021-11-02T03:48:40.651635 {"title": "The long view", "subjects": ["Fiction in English", "Marriage", "Fiction", "Man-woman relationships", "English fiction", "Fiction, family life, general", "England, fiction"], "key": "/works/OL10427470W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL421342A"}}], "type": {"key": "/type/work"}, "covers": [11673148], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2009-12-11T02:57:46.752554"}, "last_modified": {"type": "/type/datetime", "value": "2021-11-02T03:48:40.651635"}}
+/type/work /works/OL10427896W 1 2009-12-11T02:57:46.752554 {"title": "The price of printing in Philadelphia, 1754", "created": {"type": "/type/datetime", "value": "2009-12-11T02:57:46.752554"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:57:46.752554"}, "latest_revision": 1, "key": "/works/OL10427896W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4327088A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10428468W 1 2009-12-11T02:57:50.689630 {"title": "The instruments and articles of government of polytechnics", "created": {"type": "/type/datetime", "value": "2009-12-11T02:57:50.689630"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:57:50.689630"}, "latest_revision": 1, "key": "/works/OL10428468W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4327213A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10428496W 1 2009-12-11T02:57:50.689630 {"title": "Teaching mathematics applicable", "created": {"type": "/type/datetime", "value": "2009-12-11T02:57:50.689630"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:57:50.689630"}, "latest_revision": 1, "key": "/works/OL10428496W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4327224A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10428597W 1 2009-12-11T02:57:50.689630 {"title": "Friends and relations", "created": {"type": "/type/datetime", "value": "2009-12-11T02:57:50.689630"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:57:50.689630"}, "latest_revision": 1, "key": "/works/OL10428597W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4327251A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10428782W 1 2009-12-11T02:57:50.689630 {"title": "Near the brink", "created": {"type": "/type/datetime", "value": "2009-12-11T02:57:50.689630"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:57:50.689630"}, "latest_revision": 1, "key": "/works/OL10428782W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4327298A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10429195W 2 2010-01-17T02:07:47.694813 {"title": "La versification de Molie re", "created": {"type": "/type/datetime", "value": "2009-12-11T02:57:50.689630"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-17T02:07:47.694813"}, "latest_revision": 2, "key": "/works/OL10429195W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4327410A"}}], "subject_people": ["Moli\u00e8re (1622-1673)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL1042921W 1 2009-12-09T19:50:12.394791 {"title": "Baya\u0304n", "created": {"type": "/type/datetime", "value": "2009-12-09T19:50:12.394791"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:50:12.394791"}, "latest_revision": 1, "key": "/works/OL1042921W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL102712A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10429362W 4 2019-07-05T01:52:57.321631 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:57:54.804205"}, "subjects": ["French Erotic literature"], "latest_revision": 4, "key": "/works/OL10429362W", "title": "Les crimes de l'amour", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2660296A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2019-07-05T01:52:57.321631"}, "covers": [8687626], "revision": 4}
+/type/work /works/OL10429573W 2 2017-05-16T12:09:46.268192 {"title": "Invariant imbedding and time-dependent transport processes", "created": {"type": "/type/datetime", "value": "2009-12-11T02:57:54.804205"}, "last_modified": {"type": "/type/datetime", "value": "2017-05-16T12:09:46.268192"}, "latest_revision": 2, "key": "/works/OL10429573W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL406160A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10429790W 1 2009-12-11T02:57:54.804205 {"title": "Handbuch der organischen Chemie", "created": {"type": "/type/datetime", "value": "2009-12-11T02:57:54.804205"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:57:54.804205"}, "latest_revision": 1, "key": "/works/OL10429790W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4327584A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10429955W 1 2009-12-11T02:57:54.804205 {"title": "Some notes on English illustrated books", "created": {"type": "/type/datetime", "value": "2009-12-11T02:57:54.804205"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:57:54.804205"}, "latest_revision": 1, "key": "/works/OL10429955W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4327627A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10430357W 2 2011-12-12T18:30:26.522674 {"title": "The truth through theosophy", "created": {"type": "/type/datetime", "value": "2009-12-11T02:58:00.297542"}, "last_modified": {"type": "/type/datetime", "value": "2011-12-12T18:30:26.522674"}, "latest_revision": 2, "key": "/works/OL10430357W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL16933A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10430378W 2 2011-12-12T18:30:26.522674 {"title": "The ancient wisdom", "created": {"type": "/type/datetime", "value": "2009-12-11T02:58:00.297542"}, "last_modified": {"type": "/type/datetime", "value": "2011-12-12T18:30:26.522674"}, "latest_revision": 2, "key": "/works/OL10430378W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL16933A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10430521W 1 2009-12-11T02:58:00.297542 {"title": "Prilog kon prouc uvanjeto na makedonskite partizanski pesin", "created": {"type": "/type/datetime", "value": "2009-12-11T02:58:00.297542"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:58:00.297542"}, "latest_revision": 1, "key": "/works/OL10430521W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4327860A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1043054W 3 2020-09-13T11:42:26.473004 {"description": {"type": "/type/text", "value": "Selection of short stories, translated from Hindi."}, "last_modified": {"type": "/type/datetime", "value": "2020-09-13T11:42:26.473004"}, "latest_revision": 3, "key": "/works/OL1043054W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL102749A"}}], "created": {"type": "/type/datetime", "value": "2009-12-09T20:12:37.549361"}, "title": "My lover's name and other stories", "subjects": ["Translations into English"], "subject_people": ["Kusuma A\u1e43sala"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10430672W 1 2009-12-11T02:58:00.297542 {"title": "Problems of sampling dusty gases", "created": {"type": "/type/datetime", "value": "2009-12-11T02:58:00.297542"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:58:00.297542"}, "latest_revision": 1, "key": "/works/OL10430672W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4327957A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10430690W 1 2009-12-11T02:58:00.297542 {"title": "Svedoci", "created": {"type": "/type/datetime", "value": "2009-12-11T02:58:00.297542"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:58:00.297542"}, "latest_revision": 1, "key": "/works/OL10430690W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4327969A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10430782W 1 2009-12-11T02:58:00.297542 {"title": "So verba vo literaturata", "created": {"type": "/type/datetime", "value": "2009-12-11T02:58:00.297542"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:58:00.297542"}, "latest_revision": 1, "key": "/works/OL10430782W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4328014A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10431071W 1 2009-12-11T02:58:00.297542 {"title": "The evolution of Poland, and the composition of population in the existing state", "created": {"type": "/type/datetime", "value": "2009-12-11T02:58:00.297542"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:58:00.297542"}, "latest_revision": 1, "key": "/works/OL10431071W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4328129A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10431570W 3 2021-09-16T12:06:33.465015 {"title": "Essex", "subjects": ["Description and travel", "Essex (england)"], "key": "/works/OL10431570W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4328346A"}}], "type": {"key": "/type/work"}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T02:58:05.311160"}, "last_modified": {"type": "/type/datetime", "value": "2021-09-16T12:06:33.465015"}}
+/type/work /works/OL10431828W 1 2009-12-11T02:58:05.311160 {"title": "Edith Stein", "created": {"type": "/type/datetime", "value": "2009-12-11T02:58:05.311160"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:58:05.311160"}, "latest_revision": 1, "key": "/works/OL10431828W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4328421A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10431963W 3 2010-12-04T05:49:58.924457 {"last_modified": {"type": "/type/datetime", "value": "2010-12-04T05:49:58.924457"}, "latest_revision": 3, "key": "/works/OL10431963W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4328485A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T02:58:05.311160"}, "title": "Barbed-wire doctor", "subject_places": ["England", "Germany"], "subjects": ["Biography", "British Personal narratives", "Great Britain", "Great Britain. Army. Royal Warwickshire Regiment", "Personal narratives, British", "Physicians", "Prisoners and prisons", "World War, 1939-1945"], "subject_people": ["A. Crook"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10432081W 3 2020-10-04T10:55:49.323804 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:58:05.311160"}, "subjects": ["Intellectual life", "Friends and associates", "Biography", "English Authors"], "subject_people": ["William Godwin (1756-1836)", "Percy Bysshe Shelley (1792-1822)"], "key": "/works/OL10432081W", "title": "Shelley, Godwin and their circle", "latest_revision": 3, "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4328527A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-10-04T10:55:49.323804"}, "revision": 3}
+/type/work /works/OL10432274W 1 2009-12-11T02:58:05.311160 {"title": "Vectorial mechanics", "created": {"type": "/type/datetime", "value": "2009-12-11T02:58:05.311160"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:58:05.311160"}, "latest_revision": 1, "key": "/works/OL10432274W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4328581A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10432326W 1 2009-12-11T02:58:05.311160 {"title": "Company housing policy", "created": {"type": "/type/datetime", "value": "2009-12-11T02:58:05.311160"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:58:05.311160"}, "latest_revision": 1, "key": "/works/OL10432326W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4328610A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1043253W 3 2020-11-27T10:08:27.366416 {"description": {"type": "/type/text", "value": "Articles, chiefly on the history of Burma."}, "last_modified": {"type": "/type/datetime", "value": "2020-11-27T10:08:27.366416"}, "latest_revision": 3, "key": "/works/OL1043253W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL102779A"}}], "created": {"type": "/type/datetime", "value": "2009-12-09T20:12:37.549361"}, "title": "Samuin\u0307\u02bb\u02ba can\u0303\u02bb tvan\u0307\u02bb ne ra\u0304 yu\u0304 khran\u0307\u02bb\u02ba", "subject_places": ["Burma"], "subjects": ["History"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10432740W 2 2019-03-19T14:06:59.769835 {"title": "Der Staat Hitlers", "created": {"type": "/type/datetime", "value": "2009-12-11T02:58:10.075203"}, "last_modified": {"type": "/type/datetime", "value": "2019-03-19T14:06:59.769835"}, "latest_revision": 2, "key": "/works/OL10432740W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1088617A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10432846W 1 2009-12-11T02:58:10.075203 {"title": "Full powers and ratification", "created": {"type": "/type/datetime", "value": "2009-12-11T02:58:10.075203"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:58:10.075203"}, "latest_revision": 1, "key": "/works/OL10432846W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4328789A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10433081W 2 2010-01-17T02:15:56.980094 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:58:10.075203"}, "title": "Irritant effects of industrial chemicals, formaldehyde", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-17T02:15:56.980094"}, "latest_revision": 2, "key": "/works/OL10433081W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4328885A"}}], "type": {"key": "/type/work"}, "subjects": ["Formaldehyde", "Standards", "Physiological effect", "Industrial safety", "Toxicology", "Industrial hygiene"], "revision": 2}
+/type/work /works/OL10433086W 2 2010-01-17T02:15:56.980094 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:58:10.075203"}, "title": "Educating for a computer age", "last_modified": {"type": "/type/datetime", "value": "2010-01-17T02:15:56.980094"}, "latest_revision": 2, "key": "/works/OL10433086W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4328886A"}}], "type": {"key": "/type/work"}, "subjects": ["Congresses", "School management and organization", "Data processing", "Educational technology"], "revision": 2}
+/type/work /works/OL10433611W 1 2009-12-11T02:58:20.880609 {"title": "Particle-hole scattering systems", "created": {"type": "/type/datetime", "value": "2009-12-11T02:58:20.880609"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:58:20.880609"}, "latest_revision": 1, "key": "/works/OL10433611W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4329132A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10433636W 1 2009-12-11T02:58:20.880609 {"title": "Mechanized assembly in the metal-working industries", "created": {"type": "/type/datetime", "value": "2009-12-11T02:58:20.880609"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:58:20.880609"}, "latest_revision": 1, "key": "/works/OL10433636W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4329140A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10434381W 1 2009-12-11T02:58:25.610520 {"title": "An introduction to the cast irons", "created": {"type": "/type/datetime", "value": "2009-12-11T02:58:25.610520"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:58:25.610520"}, "latest_revision": 1, "key": "/works/OL10434381W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4329477A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10434945W 2 2010-01-17T02:15:56.980094 {"title": "Louis Jouvet", "created": {"type": "/type/datetime", "value": "2009-12-11T02:58:25.610520"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-17T02:15:56.980094"}, "latest_revision": 2, "key": "/works/OL10434945W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4329687A"}}], "subject_people": ["Louis Jouvet"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10435058W 1 2009-12-11T02:58:25.610520 {"title": "China", "created": {"type": "/type/datetime", "value": "2009-12-11T02:58:25.610520"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:58:25.610520"}, "latest_revision": 1, "key": "/works/OL10435058W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4329718A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10435132W 1 2009-12-11T02:58:25.610520 {"title": "A course in practical pharmacy", "created": {"type": "/type/datetime", "value": "2009-12-11T02:58:25.610520"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:58:25.610520"}, "latest_revision": 1, "key": "/works/OL10435132W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4329753A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10435211W 1 2009-12-11T02:58:25.610520 {"title": "An experiment with programmed learning", "created": {"type": "/type/datetime", "value": "2009-12-11T02:58:25.610520"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:58:25.610520"}, "latest_revision": 1, "key": "/works/OL10435211W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4329792A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10435542W 3 2013-01-23T21:35:09.535386 {"title": "The Webbs and Soviet Communism", "created": {"type": "/type/datetime", "value": "2009-12-11T02:58:30.332283"}, "last_modified": {"type": "/type/datetime", "value": "2013-01-23T21:35:09.535386"}, "latest_revision": 3, "key": "/works/OL10435542W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL117210A"}}], "subject_people": ["Beatrice Webb (1858-1943)", "Sidney Webb"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10435773W 2 2012-06-27T19:22:05.790749 {"title": "Cuatro problemas de la economia espa\u00f1ola", "created": {"type": "/type/datetime", "value": "2009-12-11T02:58:30.332283"}, "last_modified": {"type": "/type/datetime", "value": "2012-06-27T19:22:05.790749"}, "latest_revision": 2, "key": "/works/OL10435773W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4329980A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10435973W 1 2009-12-11T02:58:30.332283 {"title": "Zur Bildungspolitik der Arbeiterbewegung", "created": {"type": "/type/datetime", "value": "2009-12-11T02:58:30.332283"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:58:30.332283"}, "latest_revision": 1, "key": "/works/OL10435973W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4330014A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10436069W 1 2009-12-11T02:58:30.332283 {"title": "Computer model of co-sited radio transmitters", "created": {"type": "/type/datetime", "value": "2009-12-11T02:58:30.332283"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:58:30.332283"}, "latest_revision": 1, "key": "/works/OL10436069W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4330051A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10436287W 1 2009-12-11T02:58:30.332283 {"title": "On the theoretical foundations of shadow pricing in distorted economies", "created": {"type": "/type/datetime", "value": "2009-12-11T02:58:30.332283"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:58:30.332283"}, "latest_revision": 1, "key": "/works/OL10436287W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4330112A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10436456W 2 2010-01-17T02:15:56.980094 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:58:35.981463"}, "title": "Safety aspects of roadside cross-section design", "last_modified": {"type": "/type/datetime", "value": "2010-01-17T02:15:56.980094"}, "latest_revision": 2, "key": "/works/OL10436456W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4330200A"}}], "type": {"key": "/type/work"}, "subjects": ["Roads", "Automobiles", "Dynamics", "Shoulders", "Safety measures"], "revision": 2}
+/type/work /works/OL10436579W 2 2010-11-19T08:07:55.410288 {"title": "The orie analytique de la propagation de la chaleur", "created": {"type": "/type/datetime", "value": "2009-12-11T02:58:35.981463"}, "last_modified": {"type": "/type/datetime", "value": "2010-11-19T08:07:55.410288"}, "latest_revision": 2, "key": "/works/OL10436579W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4281084A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL1043675W 3 2010-04-28T07:13:24.349481 {"title": "The Man Who Was a Woman and Other Queer Tales of Hindu Lore (Haworth Gay & Lesbian Studies) (Haworth Gay & Lesbian Studies)", "created": {"type": "/type/datetime", "value": "2009-12-09T20:12:53.362144"}, "covers": [788830], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:13:24.349481"}, "latest_revision": 3, "key": "/works/OL1043675W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL102868A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10437043W 1 2009-12-11T02:58:35.981463 {"title": "The Trucial States", "created": {"type": "/type/datetime", "value": "2009-12-11T02:58:35.981463"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:58:35.981463"}, "latest_revision": 1, "key": "/works/OL10437043W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4330443A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1043729W 2 2010-03-20T10:22:37.667350 {"subtitle": "essays in translation and exegesis", "title": "The Vedas", "created": {"type": "/type/datetime", "value": "2009-12-09T20:12:53.362144"}, "last_modified": {"type": "/type/datetime", "value": "2010-03-20T10:22:37.667350"}, "latest_revision": 2, "key": "/works/OL1043729W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL102871A"}}], "type": {"key": "/type/work"}, "subjects": ["Vedas"], "revision": 2}
+/type/work /works/OL10437955W 1 2009-12-11T02:58:43.588556 {"title": "Processable high-temperature-resistant addition-type polyimide laminating resins", "created": {"type": "/type/datetime", "value": "2009-12-11T02:58:43.588556"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:58:43.588556"}, "latest_revision": 1, "key": "/works/OL10437955W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4330864A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10437956W 3 2010-12-06T07:40:10.989635 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:58:43.588556"}, "subject_places": ["United States"], "subjects": ["Agriculture", "Agriculture and state", "Economic aspects", "Economic aspects of Agriculture"], "latest_revision": 3, "key": "/works/OL10437956W", "title": "Agricultural policy under economic development", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4330865A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-06T07:40:10.989635"}, "revision": 3}
+/type/work /works/OL10437992W 2 2019-08-27T15:39:55.571420 {"title": "The eclipse of Russia", "created": {"type": "/type/datetime", "value": "2009-12-11T02:58:43.588556"}, "last_modified": {"type": "/type/datetime", "value": "2019-08-27T15:39:55.571420"}, "latest_revision": 2, "key": "/works/OL10437992W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1871051A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10438326W 1 2009-12-11T02:58:43.588556 {"title": "Principles of microbiology and immunology", "created": {"type": "/type/datetime", "value": "2009-12-11T02:58:43.588556"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:58:43.588556"}, "latest_revision": 1, "key": "/works/OL10438326W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4331018A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10438345W 1 2009-12-11T02:58:43.588556 {"title": "The marketing problem", "created": {"type": "/type/datetime", "value": "2009-12-11T02:58:43.588556"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:58:43.588556"}, "latest_revision": 1, "key": "/works/OL10438345W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4331034A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1043836W 3 2010-04-29T19:50:53.628218 {"subtitle": "The glorious blissful garland, The root sadhana of the dakini, The queen of great bliss from Long-chen Nying thig", "title": "Klon\u0307 chen sn\u0303in\u0307 gi thig le las, Yum ka bde chen rgyal mo\u02bci rtsa ba\u02bci sgrub pa bde chen dpal phren\u0307 bz\u0301ugs so =", "created": {"type": "/type/datetime", "value": "2009-12-09T20:12:53.362144"}, "last_modified": {"type": "/type/datetime", "value": "2010-04-29T19:50:53.628218"}, "latest_revision": 3, "key": "/works/OL1043836W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL102889A"}}], "type": {"key": "/type/work"}, "subjects": ["Early works to 1800", "Texts", "Rituals", "Cult", "\u1e0c\u0101kin\u012b (Buddhist deity)", "R\u00f1i\u1e45-ma-pa (Sect)"], "revision": 3}
+/type/work /works/OL10438437W 1 2009-12-11T02:58:48.382370 {"title": "Detergency", "created": {"type": "/type/datetime", "value": "2009-12-11T02:58:48.382370"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:58:48.382370"}, "latest_revision": 1, "key": "/works/OL10438437W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4331072A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10438850W 3 2011-03-03T02:46:39.077263 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:58:48.382370"}, "subtitle": "Gespra\u0308che 1961-1990", "key": "/works/OL10438850W", "title": "Der Klassiker auf der Bu\u0308hne", "subject_people": ["Friedrich D\u00fcrrenmatt (1921-1990)"], "latest_revision": 3, "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4331255A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2011-03-03T02:46:39.077263"}, "revision": 3}
+/type/work /works/OL1043891W 3 2020-11-25T13:11:02.344057 {"description": {"type": "/type/text", "value": "On the life and contribution of some intellectuals from Assam, India."}, "last_modified": {"type": "/type/datetime", "value": "2020-11-25T13:11:02.344057"}, "latest_revision": 3, "key": "/works/OL1043891W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL102903A"}}], "created": {"type": "/type/datetime", "value": "2009-12-09T20:12:53.362144"}, "title": "Bandita baren\u0323ya", "subject_places": ["Assam (India)", "Assam", "India"], "subjects": ["Biography", "Intellectuals", "Intellectual life"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10438944W 2 2020-04-01T22:21:58.412429 {"title": "India song Son nom de Venise dans Calcutta de\u0301sert", "created": {"type": "/type/datetime", "value": "2009-12-11T02:58:48.382370"}, "last_modified": {"type": "/type/datetime", "value": "2020-04-01T22:21:58.412429"}, "latest_revision": 2, "key": "/works/OL10438944W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL45468A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10439662W 1 2009-12-11T02:58:52.141330 {"title": "Electrical power transmission and interconnection", "created": {"type": "/type/datetime", "value": "2009-12-11T02:58:52.141330"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:58:52.141330"}, "latest_revision": 1, "key": "/works/OL10439662W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4331519A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10440383W 1 2009-12-11T02:58:56.490730 {"title": "A montane rain-forest", "created": {"type": "/type/datetime", "value": "2009-12-11T02:58:56.490730"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:58:56.490730"}, "latest_revision": 1, "key": "/works/OL10440383W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4331730A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10440632W 4 2013-03-19T19:55:40.247499 {"title": "Catherine de Russie", "created": {"type": "/type/datetime", "value": "2009-12-11T02:58:56.490730"}, "last_modified": {"type": "/type/datetime", "value": "2013-03-19T19:55:40.247499"}, "latest_revision": 4, "key": "/works/OL10440632W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL389255A"}}], "subject_people": ["Catherine II Empress of Russia (1729-1796)"], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL1044099W 3 2022-06-17T06:34:38.194796 {"title": "The leopard in India", "key": "/works/OL1044099W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL102932A"}}], "type": {"key": "/type/work"}, "subjects": ["Leopard", "Mammals, india"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-09T20:12:53.362144"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-17T06:34:38.194796"}}
+/type/work /works/OL10441735W 1 2009-12-11T02:59:06.342566 {"title": "Prosa de prisa, 1929-1972", "created": {"type": "/type/datetime", "value": "2009-12-11T02:59:06.342566"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:59:06.342566"}, "latest_revision": 1, "key": "/works/OL10441735W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4332249A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10441921W 1 2009-12-11T02:59:06.342566 {"title": "A crise do liberalismo e as primeiras manifestac \u02b9o es das ideias socialistas em Portugal (1820-1852)", "created": {"type": "/type/datetime", "value": "2009-12-11T02:59:06.342566"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:59:06.342566"}, "latest_revision": 1, "key": "/works/OL10441921W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4332313A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10442036W 2 2010-01-17T07:05:39.744669 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:59:06.342566"}, "title": "The united states of Britain", "subject_places": ["Great Britain"], "last_modified": {"type": "/type/datetime", "value": "2010-01-17T07:05:39.744669"}, "latest_revision": 2, "key": "/works/OL10442036W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4332348A"}}], "type": {"key": "/type/work"}, "subjects": ["Imperial federation", "Colonies"], "revision": 2}
+/type/work /works/OL1044223W 1 2009-12-09T19:50:29.438136 {"title": "Kyvan\u02bb to\u02bb nhan\u0307\u02bb\u02b9 kre\u02ba svan\u02bb\u02ba yan\u0303\u02bb kye\u02ba mhu", "created": {"type": "/type/datetime", "value": "2009-12-09T19:50:29.438136"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:50:29.438136"}, "latest_revision": 1, "key": "/works/OL1044223W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL102963A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10442281W 1 2009-12-11T02:59:06.342566 {"title": "Grama tica quechua", "created": {"type": "/type/datetime", "value": "2009-12-11T02:59:06.342566"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:59:06.342566"}, "latest_revision": 1, "key": "/works/OL10442281W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4332453A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10442404W 1 2009-12-11T02:59:11.419926 {"title": "Modelling water erosion processes", "created": {"type": "/type/datetime", "value": "2009-12-11T02:59:11.419926"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:59:11.419926"}, "latest_revision": 1, "key": "/works/OL10442404W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4332498A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10442523W 2 2010-01-17T07:05:39.744669 {"title": "Polkovodets", "created": {"type": "/type/datetime", "value": "2009-12-11T02:59:11.419926"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-17T07:05:39.744669"}, "latest_revision": 2, "key": "/works/OL10442523W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4332534A"}}], "subject_people": ["I. S. Konev (1897-)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10442782W 1 2009-12-11T02:59:11.419926 {"title": "Otsovskii slukh", "created": {"type": "/type/datetime", "value": "2009-12-11T02:59:11.419926"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:59:11.419926"}, "latest_revision": 1, "key": "/works/OL10442782W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4332672A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10442889W 2 2014-06-15T15:35:13.504288 {"title": "Literatura - real'nost' - literatura", "created": {"type": "/type/datetime", "value": "2009-12-11T02:59:11.419926"}, "last_modified": {"type": "/type/datetime", "value": "2014-06-15T15:35:13.504288"}, "latest_revision": 2, "key": "/works/OL10442889W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL47643A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10442972W 2 2013-04-14T03:00:50.350804 {"title": "Sochinenii a M.Iu. Lermontova", "created": {"type": "/type/datetime", "value": "2009-12-11T02:59:11.419926"}, "last_modified": {"type": "/type/datetime", "value": "2013-04-14T03:00:50.350804"}, "latest_revision": 2, "key": "/works/OL10442972W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4280300A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10443031W 3 2021-07-18T14:36:00.634383 {"title": "Dostoevskii\u0306-khudozhnik", "key": "/works/OL10443031W", "authors": [{"author": {"key": "/authors/OL4332763A"}, "type": {"key": "/type/author_role"}}], "subject_people": ["Fyodor Dostoyevsky (1821-1881)"], "type": {"key": "/type/work"}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T02:59:11.419926"}, "last_modified": {"type": "/type/datetime", "value": "2021-07-18T14:36:00.634383"}}
+/type/work /works/OL10443487W 2 2011-01-01T14:35:35.791700 {"title": "El h\u00e9roe de las mujeres", "created": {"type": "/type/datetime", "value": "2009-12-11T02:59:16.201137"}, "last_modified": {"type": "/type/datetime", "value": "2011-01-01T14:35:35.791700"}, "latest_revision": 2, "key": "/works/OL10443487W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL67141A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10444119W 1 2009-12-11T02:59:16.201137 {"title": "An investigation into the measurement of electromagnetic interference using time domain methods. 1979", "created": {"type": "/type/datetime", "value": "2009-12-11T02:59:16.201137"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:59:16.201137"}, "latest_revision": 1, "key": "/works/OL10444119W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4333138A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10445407W 1 2009-12-11T02:59:25.831738 {"title": "Para uma histo ria do povo portugue s", "created": {"type": "/type/datetime", "value": "2009-12-11T02:59:25.831738"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:59:25.831738"}, "latest_revision": 1, "key": "/works/OL10445407W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4333559A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10445500W 1 2009-12-11T02:59:25.831738 {"title": "Diciona rio bibliogra fico portugue z", "created": {"type": "/type/datetime", "value": "2009-12-11T02:59:25.831738"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:59:25.831738"}, "latest_revision": 1, "key": "/works/OL10445500W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4333592A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10445836W 3 2013-01-31T11:53:54.604865 {"title": "Architecture, ou, Art de bien bastir ..", "created": {"type": "/type/datetime", "value": "2009-12-11T02:59:25.831738"}, "last_modified": {"type": "/type/datetime", "value": "2013-01-31T11:53:54.604865"}, "latest_revision": 3, "key": "/works/OL10445836W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4630446A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10446372W 1 2009-12-11T02:59:30.101062 {"title": "Heat treatment of metals for manufacturing processes and service", "created": {"type": "/type/datetime", "value": "2009-12-11T02:59:30.101062"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:59:30.101062"}, "latest_revision": 1, "key": "/works/OL10446372W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4333820A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10446649W 1 2009-12-11T02:59:30.101062 {"title": "Die Fahrt zur Insel Nantucket Theater", "created": {"type": "/type/datetime", "value": "2009-12-11T02:59:30.101062"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:59:30.101062"}, "latest_revision": 1, "key": "/works/OL10446649W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4333893A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10446713W 2 2010-01-17T08:08:04.805738 {"created": {"type": "/type/datetime", "value": "2009-12-11T02:59:30.101062"}, "title": "L' explication fran\u00e7aise", "last_modified": {"type": "/type/datetime", "value": "2010-01-17T08:08:04.805738"}, "latest_revision": 2, "key": "/works/OL10446713W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4333899A"}}], "type": {"key": "/type/work"}, "subjects": ["Litt\u00e9rature fran\u00e7aise"], "revision": 2}
+/type/work /works/OL1044697W 3 2020-12-17T23:55:49.592576 {"title": "U\u0304nakot\u0323i", "subject_places": ["Tripura (India)", "Unakoti Site (India) [proposed]"], "key": "/works/OL1044697W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL103077A"}}], "type": {"key": "/type/work"}, "subjects": ["Antiquities"], "description": {"type": "/type/text", "value": "Articles on the antiquities of Unakoti Site, in Tripura, India."}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-09T20:13:16.722226"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-17T23:55:49.592576"}}
+/type/work /works/OL10447021W 1 2009-12-11T02:59:30.101062 {"title": "Realists and nominalists", "created": {"type": "/type/datetime", "value": "2009-12-11T02:59:30.101062"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:59:30.101062"}, "latest_revision": 1, "key": "/works/OL10447021W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4334025A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10447268W 3 2020-01-10T22:13:35.140216 {"title": "Les me\u0301ditations me\u0301taphysiques de Jean-Jacques Rousseau", "created": {"type": "/type/datetime", "value": "2009-12-11T02:59:30.101062"}, "last_modified": {"type": "/type/datetime", "value": "2020-01-10T22:13:35.140216"}, "latest_revision": 3, "key": "/works/OL10447268W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL134584A"}}], "subject_people": ["Jean-Jacques Rousseau (1712-1778)"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10447447W 1 2009-12-11T02:59:34.028483 {"title": "Dialogus inter philosophum, iudaeum et christianum", "created": {"type": "/type/datetime", "value": "2009-12-11T02:59:34.028483"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:59:34.028483"}, "latest_revision": 1, "key": "/works/OL10447447W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4334133A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10447577W 2 2010-12-03T19:40:03.537849 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T19:40:03.537849"}, "title": "The inaugural address to the Shelley Society", "created": {"type": "/type/datetime", "value": "2009-12-11T02:59:34.028483"}, "subjects": ["Shelley Society"], "latest_revision": 2, "key": "/works/OL10447577W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4334163A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10448431W 1 2009-12-11T02:59:38.920550 {"title": "The C.O.-the tribunal and after", "created": {"type": "/type/datetime", "value": "2009-12-11T02:59:38.920550"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:59:38.920550"}, "latest_revision": 1, "key": "/works/OL10448431W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4334501A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1044868W 1 2009-12-09T19:50:51.460615 {"title": "Tat-sama", "created": {"type": "/type/datetime", "value": "2009-12-09T19:50:51.460615"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:50:51.460615"}, "latest_revision": 1, "key": "/works/OL1044868W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL103100A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10449063W 1 2009-12-11T02:59:38.920550 {"title": "Sweet counsel", "created": {"type": "/type/datetime", "value": "2009-12-11T02:59:38.920550"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:59:38.920550"}, "latest_revision": 1, "key": "/works/OL10449063W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4334650A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10449175W 1 2009-12-11T02:59:38.920550 {"title": "Dumb", "created": {"type": "/type/datetime", "value": "2009-12-11T02:59:38.920550"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:59:38.920550"}, "latest_revision": 1, "key": "/works/OL10449175W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4334678A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10449180W 1 2009-12-11T02:59:38.920550 {"title": "Complete book-keeping and principles of accounts", "created": {"type": "/type/datetime", "value": "2009-12-11T02:59:38.920550"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:59:38.920550"}, "latest_revision": 1, "key": "/works/OL10449180W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4334683A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1044919W 3 2020-11-23T02:32:49.885555 {"description": {"type": "/type/text", "value": "On the life and work of Karata\u0304ra Sin\u0307gha Sara\u0304bha\u0304, 1896-1915, Indian freedom fighter from Punjab."}, "last_modified": {"type": "/type/datetime", "value": "2020-11-23T02:32:49.885555"}, "title": "Wi\u0304ra na\u0304ika Karata\u0304ra Sin\u0307gha Sara\u0304bha\u0304", "created": {"type": "/type/datetime", "value": "2009-12-09T20:13:16.722226"}, "subject_places": ["Punjab", "India", "Punjab (India)"], "subjects": ["Biography", "Revolutionaries", "Nationalism", "History"], "subject_people": ["Karat\u0101ra Si\u1e45gha Sar\u0101bh\u0101 (1896-1915)"], "key": "/works/OL1044919W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL103116A"}}], "latest_revision": 3, "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10449286W 1 2009-12-11T02:59:38.920550 {"title": "Register of closed passenger stations and goods depots in England, Scotland and Wales,1923-1962", "created": {"type": "/type/datetime", "value": "2009-12-11T02:59:38.920550"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:59:38.920550"}, "latest_revision": 1, "key": "/works/OL10449286W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4334720A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10449497W 2 2010-01-17T08:10:54.981629 {"title": "Brash and Reid", "created": {"type": "/type/datetime", "value": "2009-12-11T02:59:41.911505"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-17T08:10:54.981629"}, "latest_revision": 2, "key": "/works/OL10449497W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4334817A"}}], "subject_people": ["William Reid (b.1764)", "James Brash"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10449583W 1 2009-12-11T02:59:41.911505 {"title": "L'H ote inconnu", "created": {"type": "/type/datetime", "value": "2009-12-11T02:59:41.911505"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:59:41.911505"}, "latest_revision": 1, "key": "/works/OL10449583W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4334838A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL104497W 6 2022-12-19T22:06:13.583271 {"subjects": ["Human-alien encounters", "Fiction", "Science Fiction", "Fiction, science fiction, general"], "key": "/works/OL104497W", "title": "The Margarets", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL18898A"}}], "type": {"key": "/type/work"}, "covers": [1286997, 46901], "description": {"type": "/type/text", "value": "The Margarets marks the long-awaited return of one of the most respected authors in the sf community; a writer who has earned accolades and the admiration of every true aficionado of bold, brilliant, risk-taking speculative fiction. Sheri S. Tepper dazzles yet again with a powerful tale of ingenious survival and strange destiny.The only human child living in a human work colony on the Martian satellite Phobos, little Margaret Bain has devised a system for keeping the suffocating demons of boredom and loneliness at bay: She invents six imaginary companions, each an extension of her own personality, to play with. When the unproductive Phobos project is shut down, and after Margaret is forced to return to Earth with her parents, the child's other selves are lost to her. But they are not gone. Left behind, each one flourishes\u2014refining its own persona, acquiring its own history\u2014before ultimately dispersing to far-flung destinations throughout the universe.On a near-barren homeworld denuded by thoughtless-ness and chemistry, Margaret grows to adulthood and marries, despite the seemingly utter hopelessness of humanity's future. The Earth is so impoverished that its inhabitants must import water and other basic necessities of life\u2014trading the only viable product the planet has left to offer . . . slaves. The time will come when Margaret must leave this world as well, expelled as part of a desperate survival plan millennia in the making\u2014an astonishing scheme that will require her to gather together the many Margarets who are now scattered throughout the galaxy. The creator of the Margarets must now bring all her selves home . . . or watch her race perish."}, "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2009-10-17T20:21:15.648318"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-19T22:06:13.583271"}}
+/type/work /works/OL10449886W 2 2017-05-18T21:09:14.709376 {"title": "Fantasy and fugue", "created": {"type": "/type/datetime", "value": "2009-12-11T02:59:41.911505"}, "last_modified": {"type": "/type/datetime", "value": "2017-05-18T21:09:14.709376"}, "latest_revision": 2, "key": "/works/OL10449886W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL125770A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10450626W 1 2009-12-11T02:59:47.304071 {"title": "Past parliamentary elections in Greenock", "created": {"type": "/type/datetime", "value": "2009-12-11T02:59:47.304071"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:59:47.304071"}, "latest_revision": 1, "key": "/works/OL10450626W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4335121A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10451112W 3 2011-11-05T03:24:15.913642 {"subtitle": "a story of 1517", "title": "Evil May-day", "created": {"type": "/type/datetime", "value": "2009-12-11T02:59:47.304071"}, "last_modified": {"type": "/type/datetime", "value": "2011-11-05T03:24:15.913642"}, "latest_revision": 3, "key": "/works/OL10451112W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL879667A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10451603W 1 2009-12-11T02:59:51.525039 {"title": "History of anthony Waring", "created": {"type": "/type/datetime", "value": "2009-12-11T02:59:51.525039"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:59:51.525039"}, "latest_revision": 1, "key": "/works/OL10451603W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4335512A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1045163W 1 2009-12-09T19:50:51.460615 {"title": "Ira\u0304 anduru pat\u0323a", "created": {"type": "/type/datetime", "value": "2009-12-09T19:50:51.460615"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:50:51.460615"}, "latest_revision": 1, "key": "/works/OL1045163W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL103193A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10452642W 2 2010-12-06T07:40:10.989635 {"last_modified": {"type": "/type/datetime", "value": "2010-12-06T07:40:10.989635"}, "title": "Gloucestershire subsidy roll", "created": {"type": "/type/datetime", "value": "2009-12-11T02:59:56.776182"}, "subjects": ["Gloucestershire subsidy roll"], "latest_revision": 2, "key": "/works/OL10452642W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4335833A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10452719W 1 2009-12-11T02:59:56.776182 {"title": "[Paintings]", "created": {"type": "/type/datetime", "value": "2009-12-11T02:59:56.776182"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:59:56.776182"}, "latest_revision": 1, "key": "/works/OL10452719W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4335866A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10453116W 1 2009-12-11T02:59:56.776182 {"title": "Bees", "created": {"type": "/type/datetime", "value": "2009-12-11T02:59:56.776182"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T02:59:56.776182"}, "latest_revision": 1, "key": "/works/OL10453116W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4336039A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10453242W 4 2022-12-20T05:50:46.843670 {"title": "Germaine Richier", "key": "/works/OL10453242W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4336094A"}}], "subject_people": ["Germaine Richier"], "type": {"key": "/type/work"}, "subjects": ["Exhibitions", "Modern Art", "Space (Art)", "Space and time in art", "Philosophy", "Art and music", "Art"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T02:59:56.776182"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-20T05:50:46.843670"}}
+/type/work /works/OL1045370W 1 2009-12-09T19:51:11.140698 {"title": "Eisaba dinara\u0304tri", "created": {"type": "/type/datetime", "value": "2009-12-09T19:51:11.140698"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:51:11.140698"}, "latest_revision": 1, "key": "/works/OL1045370W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL103234A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10453869W 1 2009-12-11T03:00:01.992015 {"title": "Post mortem", "created": {"type": "/type/datetime", "value": "2009-12-11T03:00:01.992015"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:00:01.992015"}, "latest_revision": 1, "key": "/works/OL10453869W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4336324A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1045415W 1 2009-12-09T19:51:11.140698 {"title": "Toma\u0304dera ei nagare", "created": {"type": "/type/datetime", "value": "2009-12-09T19:51:11.140698"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:51:11.140698"}, "latest_revision": 1, "key": "/works/OL1045415W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL103234A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10454218W 1 2009-12-11T03:00:01.992015 {"title": "Elementy matematicheskoi logiki", "created": {"type": "/type/datetime", "value": "2009-12-11T03:00:01.992015"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:00:01.992015"}, "latest_revision": 1, "key": "/works/OL10454218W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4336488A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10455185W 1 2009-12-11T03:00:09.107212 {"title": "Delovoi chelovek", "created": {"type": "/type/datetime", "value": "2009-12-11T03:00:09.107212"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:00:09.107212"}, "latest_revision": 1, "key": "/works/OL10455185W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4337024A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1045529W 1 2009-12-09T19:51:11.140698 {"title": "Gharmajala\u0304niki khari\u0304du kat\u0323t\u0323e\u0304 s\u0323ara\u0304bu--?", "created": {"type": "/type/datetime", "value": "2009-12-09T19:51:11.140698"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:51:11.140698"}, "latest_revision": 1, "key": "/works/OL1045529W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL103262A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10455363W 1 2009-12-11T03:00:09.107212 {"title": "Pedagogicheskii protsess v remeslennykh uchilishchakh", "created": {"type": "/type/datetime", "value": "2009-12-11T03:00:09.107212"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:00:09.107212"}, "latest_revision": 1, "key": "/works/OL10455363W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4337128A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10455485W 2 2018-04-26T01:06:30.947688 {"title": "Rukovodstvo k pol'zovaniyu sistemoi Al'FA", "created": {"type": "/type/datetime", "value": "2009-12-11T03:00:14.485869"}, "last_modified": {"type": "/type/datetime", "value": "2018-04-26T01:06:30.947688"}, "latest_revision": 2, "key": "/works/OL10455485W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL468363A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10455492W 1 2009-12-11T03:00:14.485869 {"title": "Razmeshchenie proizvoditel'nykh sil", "created": {"type": "/type/datetime", "value": "2009-12-11T03:00:14.485869"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:00:14.485869"}, "latest_revision": 1, "key": "/works/OL10455492W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4337199A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10456053W 2 2010-12-06T07:42:16.960014 {"last_modified": {"type": "/type/datetime", "value": "2010-12-06T07:42:16.960014"}, "title": "The Birmingham School of Medicine", "created": {"type": "/type/datetime", "value": "2009-12-11T03:00:14.485869"}, "subjects": ["Birmingham School of Medicine and Surgery"], "latest_revision": 2, "key": "/works/OL10456053W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4337482A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10456254W 4 2010-12-03T20:54:43.592091 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:00:14.485869"}, "subjects": ["Bible"], "subject_people": ["Paul the Apostle, Saint"], "key": "/works/OL10456254W", "title": "The faith of St.Paul", "latest_revision": 4, "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL118013A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T20:54:43.592091"}, "revision": 4}
+/type/work /works/OL104563W 3 2011-10-30T13:16:39.173898 {"last_modified": {"type": "/type/datetime", "value": "2011-10-30T13:16:39.173898"}, "title": "The art of forgetting the unpleasant", "created": {"type": "/type/datetime", "value": "2009-10-17T20:21:15.648318"}, "subjects": ["Addresses, essays, lectures", "Conduct of life", "Memory"], "latest_revision": 3, "key": "/works/OL104563W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL127066A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10456557W 1 2009-12-11T03:00:20.262381 {"title": "Professional'noe vospitanie molodezhi", "created": {"type": "/type/datetime", "value": "2009-12-11T03:00:20.262381"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:00:20.262381"}, "latest_revision": 1, "key": "/works/OL10456557W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4337664A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10456581W 1 2009-12-11T03:00:20.262381 {"title": "Narodnyi kalendar' semeiskikh Zabaikal'ya", "created": {"type": "/type/datetime", "value": "2009-12-11T03:00:20.262381"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:00:20.262381"}, "latest_revision": 1, "key": "/works/OL10456581W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4337677A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10456854W 1 2009-12-11T03:00:20.262381 {"title": "Fond lichnogo potrebleniya nematerial'nykh blag", "created": {"type": "/type/datetime", "value": "2009-12-11T03:00:20.262381"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:00:20.262381"}, "latest_revision": 1, "key": "/works/OL10456854W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4337817A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10456981W 1 2009-12-11T03:00:20.262381 {"title": "The son-in-law", "created": {"type": "/type/datetime", "value": "2009-12-11T03:00:20.262381"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:00:20.262381"}, "latest_revision": 1, "key": "/works/OL10456981W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4337877A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1045704W 3 2020-12-03T10:16:12.615772 {"title": "Maulaba\u0304da o sa\u0304mprada\u0304y\u0307ika ra\u0304jani\u0304ti", "subject_places": ["Bangladesh"], "key": "/works/OL1045704W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL103295A"}}], "subject_times": ["1971-"], "type": {"key": "/type/work"}, "subjects": ["Politics and government", "Communalism", "Religious fundamentalism"], "description": {"type": "/type/text", "value": "Communalism and fundamentalism in politics in Bangladesh; articles."}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-09T20:13:36.127658"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-03T10:16:12.615772"}}
+/type/work /works/OL10457076W 1 2009-12-11T03:00:20.262381 {"title": "The pharmacology and therapeutics of the materia medica (Bruce and Dilling's Materia medica and therapeutics)", "created": {"type": "/type/datetime", "value": "2009-12-11T03:00:20.262381"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:00:20.262381"}, "latest_revision": 1, "key": "/works/OL10457076W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4337901A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1045707W 3 2020-12-04T13:50:17.806736 {"title": "Ba\u0304m\u0323la\u0304des\u0301era s\u0301iksha\u0304 byabastha\u0304 o pari\u0304ksha\u0304 paddhatira itiha\u0304sa", "subject_places": ["Bangladesh"], "key": "/works/OL1045707W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL103297A"}}], "type": {"key": "/type/work"}, "subjects": ["Education and state", "Educational evaluation"], "description": {"type": "/type/text", "value": "History of educational system and educational evaluation in Bangladesh."}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-09T20:13:36.127658"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-04T13:50:17.806736"}}
+/type/work /works/OL10457461W 1 2009-12-11T03:00:26.018220 {"title": "Teoreticheskoe obosnovanie differentsiatsii zakupochnykh tsen", "created": {"type": "/type/datetime", "value": "2009-12-11T03:00:26.018220"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:00:26.018220"}, "latest_revision": 1, "key": "/works/OL10457461W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4338075A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10457520W 1 2009-12-11T03:00:26.018220 {"title": "Sblizhenie Krest'yanstba s rabochim Klassom v Period razvernutogo stroitel'stva Kommunizma", "created": {"type": "/type/datetime", "value": "2009-12-11T03:00:26.018220"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:00:26.018220"}, "latest_revision": 1, "key": "/works/OL10457520W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4338099A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10457537W 1 2009-12-11T03:00:26.018220 {"title": "Ocherki istorii razvitiya televideniya v Zapadnoi Sibiri", "created": {"type": "/type/datetime", "value": "2009-12-11T03:00:26.018220"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:00:26.018220"}, "latest_revision": 1, "key": "/works/OL10457537W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4338107A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10457548W 1 2009-12-11T03:00:26.018220 {"title": "Kulturelle Prozesse im Sozialismus", "created": {"type": "/type/datetime", "value": "2009-12-11T03:00:26.018220"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:00:26.018220"}, "latest_revision": 1, "key": "/works/OL10457548W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4338114A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10458834W 6 2020-09-14T02:38:23.605334 {"last_modified": {"type": "/type/datetime", "value": "2020-09-14T02:38:23.605334"}, "title": "La formation du radicalisme philosophique", "created": {"type": "/type/datetime", "value": "2009-12-11T03:00:32.918183"}, "covers": [9973153], "subject_places": ["France"], "subjects": ["Utilitarianism", "Causes", "History"], "subject_people": ["Jeremy Bentham (1748-1832)"], "key": "/works/OL10458834W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL134087A"}}], "latest_revision": 6, "subject_times": ["Revolution, 1789-1799"], "type": {"key": "/type/work"}, "revision": 6}
+/type/work /works/OL10459334W 1 2009-12-11T03:00:32.918183 {"title": "A game against nature", "created": {"type": "/type/datetime", "value": "2009-12-11T03:00:32.918183"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:00:32.918183"}, "latest_revision": 1, "key": "/works/OL10459334W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4338955A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10459845W 4 2020-10-19T12:30:51.323871 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:00:36.894939"}, "subjects": ["Organizational behavior", "Organizations", "Theoriee\u0098n", "Comportement organisationnel", "Organisationsstruktur", "Organisationsentwicklung", "Behavior", "Theorie", "Personnel Management", "Organisationsverhalten", "Organisatiegedrag"], "latest_revision": 4, "key": "/works/OL10459845W", "title": "Theories of organizational behavior", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4339129A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-10-19T12:30:51.323871"}, "covers": [10020017], "revision": 4}
+/type/work /works/OL10459872W 1 2009-12-11T03:00:36.894939 {"title": "Sub-Saharan Africa", "created": {"type": "/type/datetime", "value": "2009-12-11T03:00:36.894939"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:00:36.894939"}, "latest_revision": 1, "key": "/works/OL10459872W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4339142A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10459978W 1 2009-12-11T03:00:36.894939 {"title": "Astbury, Whieldon, and Ralph Wood figures and toby jugs collected by Capt. R.K. Price", "created": {"type": "/type/datetime", "value": "2009-12-11T03:00:36.894939"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:00:36.894939"}, "latest_revision": 1, "key": "/works/OL10459978W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4339176A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1046067W 3 2020-12-03T10:17:30.246320 {"title": "Ba\u0304rish-i sang", "key": "/works/OL1046067W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL103397A"}}], "subject_times": ["20th century"], "type": {"key": "/type/work"}, "subjects": ["Urdu literature", "History and criticism"], "description": {"type": "/type/text", "value": "Articles on Urdu literature."}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-09T20:13:36.127658"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-03T10:17:30.246320"}}
+/type/work /works/OL10460869W 2 2012-05-18T12:43:39.041185 {"title": "Les Garcons", "created": {"type": "/type/datetime", "value": "2009-12-11T03:00:40.062927"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-18T12:43:39.041185"}, "latest_revision": 2, "key": "/works/OL10460869W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2774085A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10462449W 1 2009-12-11T03:00:49.349479 {"title": "The noncapitalist way", "created": {"type": "/type/datetime", "value": "2009-12-11T03:00:49.349479"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:00:49.349479"}, "latest_revision": 1, "key": "/works/OL10462449W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4339775A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10462549W 1 2009-12-11T03:00:49.349479 {"title": "Places", "created": {"type": "/type/datetime", "value": "2009-12-11T03:00:49.349479"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:00:49.349479"}, "latest_revision": 1, "key": "/works/OL10462549W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4339792A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1046261W 1 2009-12-09T19:51:11.140698 {"title": "Pe\u02ba su\u0304 nhan\u0307\u02bb\u02b9 yu\u0304 su\u0304", "created": {"type": "/type/datetime", "value": "2009-12-09T19:51:11.140698"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:51:11.140698"}, "latest_revision": 1, "key": "/works/OL1046261W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL103431A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10462701W 1 2009-12-11T03:00:49.349479 {"title": "How to improve your managerial performance", "created": {"type": "/type/datetime", "value": "2009-12-11T03:00:49.349479"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:00:49.349479"}, "latest_revision": 1, "key": "/works/OL10462701W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4339834A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10462803W 1 2009-12-11T03:00:49.349479 {"title": "Mai retrouve", "created": {"type": "/type/datetime", "value": "2009-12-11T03:00:49.349479"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:00:49.349479"}, "latest_revision": 1, "key": "/works/OL10462803W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4339872A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10462930W 1 2009-12-11T03:00:49.349479 {"title": "Gosplan and the Politics of Soviet Planning, 1929-1932", "created": {"type": "/type/datetime", "value": "2009-12-11T03:00:49.349479"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:00:49.349479"}, "latest_revision": 1, "key": "/works/OL10462930W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4339918A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10462955W 3 2010-12-03T17:48:17.288420 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:00:49.349479"}, "subject_places": ["United States"], "subjects": ["Clocks and watches", "Clocks andwatches", "Collectors and collecting"], "latest_revision": 3, "key": "/works/OL10462955W", "title": "American clocks for the collector", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4339937A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T17:48:17.288420"}, "revision": 3}
+/type/work /works/OL1046310W 2 2010-01-17T17:33:19.085712 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:13:55.483696"}, "title": "La\u0304la ma\u0304ti\u0304, ran\u0307gi\u0304ta mane", "subject_places": ["Konkan (India)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-17T17:33:19.085712"}, "latest_revision": 2, "key": "/works/OL1046310W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL103444A"}}], "type": {"key": "/type/work"}, "subjects": ["Biography"], "revision": 2}
+/type/work /works/OL10463117W 2 2010-12-06T07:40:37.954109 {"last_modified": {"type": "/type/datetime", "value": "2010-12-06T07:40:37.954109"}, "title": "West European perceptions of NATO", "created": {"type": "/type/datetime", "value": "2009-12-11T03:00:49.349479"}, "subjects": ["North Atlantic Treaty Organization"], "latest_revision": 2, "key": "/works/OL10463117W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4340019A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10463418W 5 2022-11-17T09:47:24.409416 {"title": "Dragon ride", "key": "/works/OL10463418W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL668699A"}}], "type": {"key": "/type/work"}, "subjects": ["Children's stories", "London (england), description and travel", "Children's fiction", "Adventure and adventurers, fiction"], "covers": [10980102], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2009-12-11T03:00:53.578217"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T09:47:24.409416"}}
+/type/work /works/OL10463689W 3 2011-11-05T03:03:45.735660 {"title": "Digest 41, 1 and 2", "created": {"type": "/type/datetime", "value": "2009-12-11T03:00:53.578217"}, "last_modified": {"type": "/type/datetime", "value": "2011-11-05T03:03:45.735660"}, "latest_revision": 3, "key": "/works/OL10463689W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL3765308A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10464029W 1 2009-12-11T03:00:53.578217 {"title": "An atlas of Durham City", "created": {"type": "/type/datetime", "value": "2009-12-11T03:00:53.578217"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:00:53.578217"}, "latest_revision": 1, "key": "/works/OL10464029W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4340414A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10464277W 2 2010-12-06T07:40:37.954109 {"last_modified": {"type": "/type/datetime", "value": "2010-12-06T07:40:37.954109"}, "title": "Memoria didactica", "created": {"type": "/type/datetime", "value": "2009-12-11T03:00:53.578217"}, "subjects": ["Fundacion del Fomento de las Artes y de la Estetica"], "latest_revision": 2, "key": "/works/OL10464277W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4340487A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10464310W 1 2009-12-11T03:00:53.578217 {"title": "Everybody's marionette book", "created": {"type": "/type/datetime", "value": "2009-12-11T03:00:53.578217"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:00:53.578217"}, "latest_revision": 1, "key": "/works/OL10464310W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4340501A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10465116W 1 2009-12-11T03:00:57.630506 {"title": "Loharekha", "created": {"type": "/type/datetime", "value": "2009-12-11T03:00:57.630506"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:00:57.630506"}, "latest_revision": 1, "key": "/works/OL10465116W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4340732A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10465135W 1 2009-12-11T03:00:57.630506 {"title": "Alag Matina Marad", "created": {"type": "/type/datetime", "value": "2009-12-11T03:00:57.630506"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:00:57.630506"}, "latest_revision": 1, "key": "/works/OL10465135W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4340746A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10465198W 2 2021-01-22T21:39:30.500734 {"title": "Manzil door che sukani", "key": "/works/OL10465198W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL3308A"}}], "type": {"key": "/type/work"}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T03:00:57.630506"}, "last_modified": {"type": "/type/datetime", "value": "2021-01-22T21:39:30.500734"}}
+/type/work /works/OL10465404W 1 2009-12-11T03:01:02.762771 {"title": "Aanand sadhana", "created": {"type": "/type/datetime", "value": "2009-12-11T03:01:02.762771"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:01:02.762771"}, "latest_revision": 1, "key": "/works/OL10465404W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4340838A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10465493W 1 2009-12-11T03:01:02.762771 {"title": "Sindhu swamini", "created": {"type": "/type/datetime", "value": "2009-12-11T03:01:02.762771"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:01:02.762771"}, "latest_revision": 1, "key": "/works/OL10465493W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4340874A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10465555W 1 2009-12-11T03:01:02.762771 {"title": "Aakash Sarita", "created": {"type": "/type/datetime", "value": "2009-12-11T03:01:02.762771"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:01:02.762771"}, "latest_revision": 1, "key": "/works/OL10465555W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4340895A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10466366W 1 2009-12-11T03:01:02.762771 {"title": "Ankhamn ugyan phool", "created": {"type": "/type/datetime", "value": "2009-12-11T03:01:02.762771"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:01:02.762771"}, "latest_revision": 1, "key": "/works/OL10466366W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4341185A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10466396W 1 2009-12-11T03:01:06.960394 {"title": "Pipermitna pahar par", "created": {"type": "/type/datetime", "value": "2009-12-11T03:01:06.960394"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:01:06.960394"}, "latest_revision": 1, "key": "/works/OL10466396W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4341191A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10466712W 1 2009-12-11T03:01:06.960394 {"title": "Diva Swapna", "created": {"type": "/type/datetime", "value": "2009-12-11T03:01:06.960394"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:01:06.960394"}, "latest_revision": 1, "key": "/works/OL10466712W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4341328A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10466972W 2 2010-01-17T17:38:23.783502 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:01:06.960394"}, "title": "A South Wales sketchbook", "subject_places": ["South Wales"], "last_modified": {"type": "/type/datetime", "value": "2010-01-17T17:38:23.783502"}, "latest_revision": 2, "key": "/works/OL10466972W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4341424A"}}], "type": {"key": "/type/work"}, "subjects": ["Description and travel", "Views"], "revision": 2}
+/type/work /works/OL10467150W 2 2011-01-06T21:29:57.268911 {"title": "An apple for Oink", "created": {"type": "/type/datetime", "value": "2009-12-11T03:01:06.960394"}, "last_modified": {"type": "/type/datetime", "value": "2011-01-06T21:29:57.268911"}, "latest_revision": 2, "key": "/works/OL10467150W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL627874A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10467790W 6 2020-08-30T07:20:31.041036 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:01:10.259643"}, "subjects": ["Fiction in English"], "latest_revision": 6, "key": "/works/OL10467790W", "title": "Daughter of the house", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL952385A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-08-30T07:20:31.041036"}, "covers": [10408165], "revision": 6}
+/type/work /works/OL10467906W 1 2009-12-11T03:01:10.259643 {"title": "Comics", "created": {"type": "/type/datetime", "value": "2009-12-11T03:01:10.259643"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:01:10.259643"}, "latest_revision": 1, "key": "/works/OL10467906W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4341558A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10467915W 2 2022-03-30T14:32:19.357038 {"title": "The Tregonnyth inheritance", "key": "/works/OL10467915W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4341562A"}}], "type": {"key": "/type/work"}, "covers": [12697836], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T03:01:10.259643"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-30T14:32:19.357038"}}
+/type/work /works/OL10468374W 3 2021-10-04T05:18:22.004686 {"title": "English satire", "subjects": ["History and criticism", "English Satire", "Histoire et critique", "Satire anglaise", "Literature, history and criticism"], "key": "/works/OL10468374W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4341682A"}}], "type": {"key": "/type/work"}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T03:01:10.259643"}, "last_modified": {"type": "/type/datetime", "value": "2021-10-04T05:18:22.004686"}}
+/type/work /works/OL10468768W 2 2021-08-14T18:18:51.932643 {"title": "Exercises in theoretical statistics, with answers and hints on solutions", "key": "/works/OL10468768W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4341867A"}}], "type": {"key": "/type/work"}, "subjects": ["Mathematical statistics", "Statistik"], "covers": [11629386], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T03:01:15.288539"}, "last_modified": {"type": "/type/datetime", "value": "2021-08-14T18:18:51.932643"}}
+/type/work /works/OL10469807W 1 2009-12-11T03:01:21.508372 {"title": "The Jacobean age", "created": {"type": "/type/datetime", "value": "2009-12-11T03:01:21.508372"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:01:21.508372"}, "latest_revision": 1, "key": "/works/OL10469807W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4342358A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10470385W 4 2021-10-04T12:03:06.656620 {"title": "Doom", "key": "/works/OL10470385W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4342625A"}}], "type": {"key": "/type/work"}, "subjects": ["Fiction in English", "England, fiction", "Fiction, humorous, general"], "covers": [10967748], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T03:01:27.527473"}, "last_modified": {"type": "/type/datetime", "value": "2021-10-04T12:03:06.656620"}}
+/type/work /works/OL10470394W 1 2009-12-11T03:01:27.527473 {"title": "Futility", "created": {"type": "/type/datetime", "value": "2009-12-11T03:01:27.527473"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:01:27.527473"}, "latest_revision": 1, "key": "/works/OL10470394W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4342625A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10470454W 1 2009-12-11T03:01:27.527473 {"title": "Scientific progress in the field of rubber and synthetic elastomers", "created": {"type": "/type/datetime", "value": "2009-12-11T03:01:27.527473"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:01:27.527473"}, "latest_revision": 1, "key": "/works/OL10470454W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4342664A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10470557W 1 2009-12-11T03:01:27.527473 {"title": "The East Midlands", "created": {"type": "/type/datetime", "value": "2009-12-11T03:01:27.527473"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:01:27.527473"}, "latest_revision": 1, "key": "/works/OL10470557W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4342724A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1047094W 3 2020-11-30T04:38:28.149296 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:13:55.483696"}, "subjects": ["Urdu drama", "History and criticism"], "latest_revision": 3, "description": {"type": "/type/text", "value": "On Urdu drama."}, "key": "/works/OL1047094W", "title": "Urd\u0323u\u0304 d\u0323ra\u0304mon\u0332 ka\u0304 mut\u0324a\u0304la\u02bbah", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL103655A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-11-30T04:38:28.149296"}, "revision": 3}
+/type/work /works/OL10471462W 1 2009-12-11T03:01:32.937107 {"title": "Private views", "created": {"type": "/type/datetime", "value": "2009-12-11T03:01:32.937107"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:01:32.937107"}, "latest_revision": 1, "key": "/works/OL10471462W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4343169A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10471935W 1 2009-12-11T03:01:32.937107 {"title": "biochemistry applied to malting and breWing", "created": {"type": "/type/datetime", "value": "2009-12-11T03:01:32.937107"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:01:32.937107"}, "latest_revision": 1, "key": "/works/OL10471935W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4343413A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10472108W 4 2022-10-02T05:29:12.542003 {"key": "/works/OL10472108W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL199905A"}}], "title": "Guttuso", "subject_places": ["Italy"], "subjects": ["Exhibitions", "Painters"], "subject_people": ["Renato Guttuso (1912-1987)"], "type": {"key": "/type/work"}, "covers": [12926738], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T03:01:32.937107"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-02T05:29:12.542003"}}
+/type/work /works/OL10472152W 3 2013-08-03T14:56:05.599718 {"title": "All about Queen Victoria", "created": {"type": "/type/datetime", "value": "2009-12-11T03:01:32.937107"}, "last_modified": {"type": "/type/datetime", "value": "2013-08-03T14:56:05.599718"}, "latest_revision": 3, "key": "/works/OL10472152W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL561107A"}}], "subject_people": ["Victoria Queen of Great Britain"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10472754W 2 2010-12-03T19:10:52.896678 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T19:10:52.896678"}, "title": "The story of the Royal Pavilion, Brighton", "created": {"type": "/type/datetime", "value": "2009-12-11T03:01:39.433895"}, "subjects": ["Royal Pavilion, Museums, and Libraries"], "latest_revision": 2, "key": "/works/OL10472754W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4343739A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10472831W 2 2010-01-17T17:43:09.102677 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:01:39.433895"}, "title": "A contribution to travel", "last_modified": {"type": "/type/datetime", "value": "2010-01-17T17:43:09.102677"}, "latest_revision": 2, "key": "/works/OL10472831W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4343792A"}}], "type": {"key": "/type/work"}, "subjects": ["Engineering", "History"], "revision": 2}
+/type/work /works/OL10472881W 1 2009-12-11T03:01:39.433895 {"title": "La mascarade de la vie Parisienne", "created": {"type": "/type/datetime", "value": "2009-12-11T03:01:39.433895"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:01:39.433895"}, "latest_revision": 1, "key": "/works/OL10472881W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4343829A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10472944W 1 2009-12-11T03:01:39.433895 {"title": "Some recent advances in physical chemistry", "created": {"type": "/type/datetime", "value": "2009-12-11T03:01:39.433895"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:01:39.433895"}, "latest_revision": 1, "key": "/works/OL10472944W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4343869A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10473194W 1 2009-12-11T03:01:39.433895 {"title": "mathematics in action", "created": {"type": "/type/datetime", "value": "2009-12-11T03:01:39.433895"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:01:39.433895"}, "latest_revision": 1, "key": "/works/OL10473194W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4344026A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10473365W 1 2009-12-11T03:01:39.433895 {"title": "Tables of incomplete Beta functions", "created": {"type": "/type/datetime", "value": "2009-12-11T03:01:39.433895"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:01:39.433895"}, "latest_revision": 1, "key": "/works/OL10473365W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4344112A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10473523W 1 2009-12-11T03:01:45.497912 {"title": "The colonial agents of the British West Indies", "created": {"type": "/type/datetime", "value": "2009-12-11T03:01:45.497912"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:01:45.497912"}, "latest_revision": 1, "key": "/works/OL10473523W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4344215A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10473938W 2 2010-01-17T17:43:09.102677 {"title": "Carlo Gesualdo", "created": {"type": "/type/datetime", "value": "2009-12-11T03:01:45.497912"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-17T17:43:09.102677"}, "latest_revision": 2, "key": "/works/OL10473938W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4344427A"}}], "subject_people": ["Carlo Gesualdo principe di Venosa (ca.1561-1613)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10474343W 1 2009-12-11T03:01:45.497912 {"title": "Problems of stocks and storage", "created": {"type": "/type/datetime", "value": "2009-12-11T03:01:45.497912"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:01:45.497912"}, "latest_revision": 1, "key": "/works/OL10474343W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4344597A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10474499W 1 2009-12-11T03:01:50.698238 {"title": "Process and change in housing", "created": {"type": "/type/datetime", "value": "2009-12-11T03:01:50.698238"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:01:50.698238"}, "latest_revision": 1, "key": "/works/OL10474499W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4344702A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10474561W 3 2022-10-23T21:52:43.525039 {"title": "John Baskerville, printer and designer", "key": "/works/OL10474561W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL125450A"}}], "subject_people": ["John Baskerville"], "type": {"key": "/type/work"}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T03:01:50.698238"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-23T21:52:43.525039"}}
+/type/work /works/OL10474606W 1 2009-12-11T03:01:50.698238 {"title": "Bus station planning and design", "created": {"type": "/type/datetime", "value": "2009-12-11T03:01:50.698238"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:01:50.698238"}, "latest_revision": 1, "key": "/works/OL10474606W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4344736A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10474773W 1 2009-12-11T03:01:50.698238 {"title": "How to write a book", "created": {"type": "/type/datetime", "value": "2009-12-11T03:01:50.698238"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:01:50.698238"}, "latest_revision": 1, "key": "/works/OL10474773W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4344785A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10474940W 2 2010-01-17T17:48:05.982126 {"title": "Shelley", "created": {"type": "/type/datetime", "value": "2009-12-11T03:01:50.698238"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-17T17:48:05.982126"}, "latest_revision": 2, "key": "/works/OL10474940W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4344842A"}}], "subject_people": ["Percy Bysshe Shelley (1792-1822)"], "type": {"key": "/type/work"}, "subjects": ["Criticism and interpretation"], "revision": 2}
+/type/work /works/OL1047516W 3 2010-04-28T07:13:24.349481 {"title": "Polymer science", "created": {"type": "/type/datetime", "value": "2009-12-09T20:14:19.324303"}, "covers": [5148287], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:13:24.349481"}, "latest_revision": 3, "key": "/works/OL1047516W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL103715A"}}], "subjects": ["Polymerization", "Polymers"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10475270W 2 2010-01-17T17:48:05.982126 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:01:50.698238"}, "title": "Royal Society expedition to Monserrat, B.W.I", "subject_places": ["Monserrat"], "last_modified": {"type": "/type/datetime", "value": "2010-01-17T17:48:05.982126"}, "latest_revision": 2, "key": "/works/OL10475270W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4344996A"}}], "type": {"key": "/type/work"}, "subjects": ["Geology"], "revision": 2}
+/type/work /works/OL10475377W 1 2009-12-11T03:01:50.698238 {"title": "Your school - my school", "created": {"type": "/type/datetime", "value": "2009-12-11T03:01:50.698238"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:01:50.698238"}, "latest_revision": 1, "key": "/works/OL10475377W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4345034A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10475533W 1 2009-12-11T03:01:55.943889 {"title": "Fragmenting markets and the dynamic restructuring of production", "created": {"type": "/type/datetime", "value": "2009-12-11T03:01:55.943889"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:01:55.943889"}, "latest_revision": 1, "key": "/works/OL10475533W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4345110A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10476001W 1 2009-12-11T03:01:55.943889 {"title": "Selected references on child abuse enquiries 1985-1988", "created": {"type": "/type/datetime", "value": "2009-12-11T03:01:55.943889"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:01:55.943889"}, "latest_revision": 1, "key": "/works/OL10476001W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4345325A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10476433W 3 2012-08-06T18:43:24.899820 {"last_modified": {"type": "/type/datetime", "value": "2012-08-06T18:43:24.899820"}, "title": "Confe rences de l'Acade mie royale de peinture et de sculpture", "created": {"type": "/type/datetime", "value": "2009-12-11T03:02:01.330236"}, "subjects": ["Acad\u00e9mie Royale de Peinture et de Sculpture"], "latest_revision": 3, "key": "/works/OL10476433W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL6019512A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10476511W 1 2009-12-11T03:02:01.330236 {"title": "A study of the expectancies which elementary teachers, administrators, school board members and parents have of the elementary teachers' roles", "created": {"type": "/type/datetime", "value": "2009-12-11T03:02:01.330236"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:02:01.330236"}, "latest_revision": 1, "key": "/works/OL10476511W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4345542A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10476840W 1 2009-12-11T03:02:01.330236 {"title": "Progre s re alise s dans l'application des matie res colorantes. Les produits anxiliaire s dans l'industrie textile", "created": {"type": "/type/datetime", "value": "2009-12-11T03:02:01.330236"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:02:01.330236"}, "latest_revision": 1, "key": "/works/OL10476840W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4345677A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10476859W 1 2009-12-11T03:02:01.330236 {"title": "E.I.T.review", "created": {"type": "/type/datetime", "value": "2009-12-11T03:02:01.330236"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:02:01.330236"}, "latest_revision": 1, "key": "/works/OL10476859W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4345690A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10476957W 1 2009-12-11T03:02:01.330236 {"title": "A minimum telemetry receiving system for the Alouette topside sounder satellite", "created": {"type": "/type/datetime", "value": "2009-12-11T03:02:01.330236"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:02:01.330236"}, "latest_revision": 1, "key": "/works/OL10476957W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4345733A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10476960W 1 2009-12-11T03:02:01.330236 {"title": "Deutsche Literatur im 20. Jahrhundert", "created": {"type": "/type/datetime", "value": "2009-12-11T03:02:01.330236"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:02:01.330236"}, "latest_revision": 1, "key": "/works/OL10476960W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4345736A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10477024W 1 2009-12-11T03:02:01.330236 {"title": "Zur Verfassungswidrigkeit des Niedersachsen-Konkordats", "created": {"type": "/type/datetime", "value": "2009-12-11T03:02:01.330236"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:02:01.330236"}, "latest_revision": 1, "key": "/works/OL10477024W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4345769A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10477191W 1 2009-12-11T03:02:01.330236 {"title": "Some psychological aspects of disarmament", "created": {"type": "/type/datetime", "value": "2009-12-11T03:02:01.330236"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:02:01.330236"}, "latest_revision": 1, "key": "/works/OL10477191W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4345839A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10477979W 1 2009-12-11T03:02:07.570552 {"title": "Graphic and analytic statics in theory and comparison", "created": {"type": "/type/datetime", "value": "2009-12-11T03:02:07.570552"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:02:07.570552"}, "latest_revision": 1, "key": "/works/OL10477979W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4346220A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1047820W 3 2020-12-03T10:22:36.528440 {"title": "The crescent and the cross", "subject_places": ["Middle East", "Orient"], "key": "/works/OL1047820W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL103809A"}}], "type": {"key": "/type/work"}, "subjects": ["English literature", "In literature", "Civilization, Islamic, in literature", "History and criticism", "Asian influences", "Islam in literature", "Islamic civilization in literature"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-09T20:14:19.324303"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-03T10:22:36.528440"}}
+/type/work /works/OL10478361W 1 2009-12-11T03:02:07.570552 {"title": "Packaging milk and milk products", "created": {"type": "/type/datetime", "value": "2009-12-11T03:02:07.570552"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:02:07.570552"}, "latest_revision": 1, "key": "/works/OL10478361W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4346389A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1047905W 3 2020-12-03T10:23:03.830709 {"title": "Su\u0304raja sa\u0304me dhu\u0304l\u0323a", "key": "/works/OL1047905W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL103835A"}}], "subject_people": ["Prad\u012bpa Da\u1e37av\u012b", "Gandhi Mahatma (1869-1948)"], "type": {"key": "/type/work"}, "subjects": ["Drama", "Assassination"], "description": {"type": "/type/text", "value": "Debate on the controversial play Mi\u0304 Nathura\u0304ma God\u0323ase bolata\u0304ya of Pradi\u0304pa Dal\u0323avi\u0304 on Mahatma Gandhi's assassination."}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-09T20:14:19.324303"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-03T10:23:03.830709"}}
+/type/work /works/OL10479301W 1 2009-12-11T03:02:13.612547 {"title": "Anionic \"living\" polymerisation as a route to block copolymers", "created": {"type": "/type/datetime", "value": "2009-12-11T03:02:13.612547"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:02:13.612547"}, "latest_revision": 1, "key": "/works/OL10479301W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4346886A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1047946W 1 2009-12-09T19:51:59.505481 {"title": "Burake", "created": {"type": "/type/datetime", "value": "2009-12-09T19:51:59.505481"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:51:59.505481"}, "latest_revision": 1, "key": "/works/OL1047946W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL103850A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10479603W 1 2009-12-11T03:02:20.418351 {"title": "Zur Soziologie der Heimatvertreibenen und Flu chtlinge", "created": {"type": "/type/datetime", "value": "2009-12-11T03:02:20.418351"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:02:20.418351"}, "latest_revision": 1, "key": "/works/OL10479603W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4347083A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10480118W 1 2009-12-11T03:02:20.418351 {"title": "Factors influencing use of credit in American agriculture (including comparisons with India)", "created": {"type": "/type/datetime", "value": "2009-12-11T03:02:20.418351"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:02:20.418351"}, "latest_revision": 1, "key": "/works/OL10480118W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4347363A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1048016W 1 2009-12-09T19:51:59.505481 {"title": "Bahuru\u0304pi\u0304a\u0304", "created": {"type": "/type/datetime", "value": "2009-12-09T19:51:59.505481"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:51:59.505481"}, "latest_revision": 1, "key": "/works/OL1048016W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL103868A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10480640W 2 2010-10-20T19:27:11.911756 {"title": "Discours de me\u0301taphysique et correspondance avec Arnauld", "created": {"type": "/type/datetime", "value": "2009-12-11T03:02:27.173649"}, "last_modified": {"type": "/type/datetime", "value": "2010-10-20T19:27:11.911756"}, "latest_revision": 2, "key": "/works/OL10480640W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL116444A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10480923W 1 2009-12-11T03:02:27.173649 {"title": "Politicki spisi", "created": {"type": "/type/datetime", "value": "2009-12-11T03:02:27.173649"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:02:27.173649"}, "latest_revision": 1, "key": "/works/OL10480923W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4347784A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10481016W 1 2009-12-11T03:02:27.173649 {"title": "L' estructura econo mica del pai s Valencia", "created": {"type": "/type/datetime", "value": "2009-12-11T03:02:27.173649"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:02:27.173649"}, "latest_revision": 1, "key": "/works/OL10481016W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4347836A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10481049W 3 2022-11-17T21:34:58.461886 {"title": "Social anthropology in perspective", "key": "/works/OL10481049W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4347861A"}}], "type": {"key": "/type/work"}, "subjects": ["Ethnology", "Anthropology"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T03:02:27.173649"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T21:34:58.461886"}}
+/type/work /works/OL10481078W 2 2022-10-24T00:22:03.609270 {"title": "Das Schweisstuch der Veronika", "key": "/works/OL10481078W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL142184A"}}], "type": {"key": "/type/work"}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T03:02:27.173649"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-24T00:22:03.609270"}}
+/type/work /works/OL10481255W 2 2010-12-04T01:37:16.321590 {"last_modified": {"type": "/type/datetime", "value": "2010-12-04T01:37:16.321590"}, "latest_revision": 2, "key": "/works/OL10481255W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4347968A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T03:02:27.173649"}, "title": "Input-output economics", "subject_places": ["United States"], "subjects": ["Economic conditions", "Interindustry economics"], "subject_times": ["1945-"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10481429W 1 2009-12-11T03:02:34.514797 {"title": "Plants poisonous to live stock", "created": {"type": "/type/datetime", "value": "2009-12-11T03:02:34.514797"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:02:34.514797"}, "latest_revision": 1, "key": "/works/OL10481429W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4348042A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10481764W 2 2022-09-25T18:21:24.871208 {"title": "The dynamical theory of sound", "key": "/works/OL10481764W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL117310A"}}], "type": {"key": "/type/work"}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T03:02:34.514797"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-25T18:21:24.871208"}}
+/type/work /works/OL1048206W 5 2022-12-28T05:22:28.403962 {"subjects": ["Conflit culturel", "Conflits ethniques", "Aspect social", "Mondialisation", "Social aspects", "Globalization", "Culture conflict", "Ethnic conflict", "Internationalisatie", "Internationale conflicten"], "key": "/works/OL1048206W", "title": "Fear of Small Numbers", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL103929A"}}], "type": {"key": "/type/work"}, "covers": [622958], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2009-12-09T20:14:19.324303"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-28T05:22:28.403962"}}
+/type/work /works/OL10482281W 1 2009-12-11T03:02:34.514797 {"title": "The ecology of malnutrition in middle Africa (Ghana, Nigeria, Republic of the Congo, Rwanda Burundi, and the former French Equatorial Africa)", "created": {"type": "/type/datetime", "value": "2009-12-11T03:02:34.514797"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:02:34.514797"}, "latest_revision": 1, "key": "/works/OL10482281W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4348578A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1048236W 6 2013-06-29T05:32:41.201192 {"description": "The main objective of the study is to describe and explain the effects of ethno-religiocity on fertility and contraceptive behavior in Sri Lanka. The study particularly examines the extent and nature of the variation in fertility behaviour among the ethno-religious groups: the Sinhala Buddhists; Sinhala Christians; Sri Lanka Tamil Hindus; Sri lanka Tamil Christians, Indian Tamils and moors.", "title": "Ethno-Religious Differentials in Contraceptive Accessibility and Use in Sri Lanka", "created": {"type": "/type/datetime", "value": "2009-12-09T20:14:19.324303"}, "last_modified": {"type": "/type/datetime", "value": "2013-06-29T05:32:41.201192"}, "latest_revision": 6, "key": "/works/OL1048236W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL103935A"}}], "type": {"key": "/type/work"}, "revision": 6}
+/type/work /works/OL104824W 4 2012-06-18T03:22:46.619711 {"title": "Dolphin's Rescue", "created": {"type": "/type/datetime", "value": "2009-10-17T20:21:15.648318"}, "covers": [2956777], "last_modified": {"type": "/type/datetime", "value": "2012-06-18T03:22:46.619711"}, "latest_revision": 4, "key": "/works/OL104824W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL18921A"}}], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL10482765W 2 2012-06-27T18:31:19.140818 {"title": "El poder de la banca en Espa\u00f1a", "created": {"type": "/type/datetime", "value": "2009-12-11T03:02:41.649720"}, "last_modified": {"type": "/type/datetime", "value": "2012-06-27T18:31:19.140818"}, "latest_revision": 2, "key": "/works/OL10482765W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4348859A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10482827W 1 2009-12-11T03:02:41.649720 {"title": "Russian popular science texts", "created": {"type": "/type/datetime", "value": "2009-12-11T03:02:41.649720"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:02:41.649720"}, "latest_revision": 1, "key": "/works/OL10482827W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4348902A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10482884W 1 2009-12-11T03:02:41.649720 {"title": "Re-use of waste water in Germany", "created": {"type": "/type/datetime", "value": "2009-12-11T03:02:41.649720"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:02:41.649720"}, "latest_revision": 1, "key": "/works/OL10482884W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4348928A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10482928W 1 2009-12-11T03:02:41.649720 {"title": "Obras escogidas", "created": {"type": "/type/datetime", "value": "2009-12-11T03:02:41.649720"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:02:41.649720"}, "latest_revision": 1, "key": "/works/OL10482928W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4348959A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10483262W 1 2009-12-11T03:02:41.649720 {"title": "Fairfax (RFL program 254)", "created": {"type": "/type/datetime", "value": "2009-12-11T03:02:41.649720"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:02:41.649720"}, "latest_revision": 1, "key": "/works/OL10483262W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4349138A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10483478W 7 2020-10-11T12:43:52.360761 {"description": {"type": "/type/text", "value": "The modern world has witnessed a dramatic breakthrough of the dark, negative forces of human nature. The \"**old ethic**,\" which pursued an illusory perfection by **repressing** the *dark side*, has lost its power to deal with contemporary problems. \r\nErich Neumann was convinced that the deadliest peril now confronting humanity lay in the ***\"scapegoat\" psychology*** associated with the old ethic. We are in the grip of this psychology when **we project our own dark shadow** onto an individual or group identified as our \"enemy,\" **failing to see it in ourselves**. \r\nThe only effective alternative to this dangerous shadow projection is **shadow recognition**, acknowledgement, and integration into the totality of the self. \r\n**Wholeness**, *not perfection*, is the goal of the new ethic.\r\n\r\nJordan B. Peterson: Erich Neumann is the most well-regarded student, analyst & distiller of Carl Jung's work."}, "covers": [9326148], "last_modified": {"type": "/type/datetime", "value": "2020-10-11T12:43:52.360761"}, "latest_revision": 7, "key": "/works/OL10483478W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4349254A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T03:02:48.272459"}, "title": "Depth Psychology and a New Ethic", "subjects": ["Psychoanalysis", "Ethics", "Shadow Self", "Scapegoating", "Scapegoat Psychology", "Persecution", "Discrimination", "Racism", "Dark side", "Shadow (Psychoanalysis)", "Good and evil"], "type": {"key": "/type/work"}, "revision": 7}
+/type/work /works/OL10483879W 2 2010-01-17T17:58:26.898741 {"title": "Karl Marx", "created": {"type": "/type/datetime", "value": "2009-12-11T03:02:48.272459"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-17T17:58:26.898741"}, "latest_revision": 2, "key": "/works/OL10483879W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4349479A"}}], "subject_people": ["Karl Marx (1818-1883)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10483894W 3 2022-12-03T08:54:35.914487 {"title": "Good speech", "key": "/works/OL10483894W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4349486A"}}], "type": {"key": "/type/work"}, "covers": [11243645], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T03:02:48.272459"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-03T08:54:35.914487"}}
+/type/work /works/OL10483961W 2 2011-12-21T21:39:00.407360 {"title": "Chronique", "created": {"type": "/type/datetime", "value": "2009-12-11T03:02:48.272459"}, "last_modified": {"type": "/type/datetime", "value": "2011-12-21T21:39:00.407360"}, "latest_revision": 2, "key": "/works/OL10483961W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL145887A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10484148W 1 2009-12-11T03:02:48.272459 {"title": "Case study of the development of higher education in the USSR", "created": {"type": "/type/datetime", "value": "2009-12-11T03:02:48.272459"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:02:48.272459"}, "latest_revision": 1, "key": "/works/OL10484148W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4349641A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10484477W 5 2020-02-13T06:20:00.771107 {"last_modified": {"type": "/type/datetime", "value": "2020-02-13T06:20:00.771107"}, "title": "Dvoiniki", "created": {"type": "/type/datetime", "value": "2009-12-11T03:02:54.874391"}, "subjects": ["Death and burial", "Hitler, Adolf, -- 1889-1945 -- Death and burial.", "Braun, Eva. -- Death and burial."], "latest_revision": 5, "key": "/works/OL10484477W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4349829A"}}, {"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL448411A"}}], "type": {"key": "/type/work"}, "revision": 5}
+/type/work /works/OL10484574W 1 2009-12-11T03:02:54.874391 {"title": "Photometric standards and the unit of light", "created": {"type": "/type/datetime", "value": "2009-12-11T03:02:54.874391"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:02:54.874391"}, "latest_revision": 1, "key": "/works/OL10484574W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4349871A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10484718W 1 2009-12-11T03:02:54.874391 {"title": "Houses of to-day", "created": {"type": "/type/datetime", "value": "2009-12-11T03:02:54.874391"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:02:54.874391"}, "latest_revision": 1, "key": "/works/OL10484718W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4349950A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10484996W 2 2010-01-17T17:58:26.898741 {"title": "The historical and nationalistic thought of Nicolae Iorga", "created": {"type": "/type/datetime", "value": "2009-12-11T03:02:54.874391"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-17T17:58:26.898741"}, "latest_revision": 2, "key": "/works/OL10484996W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4350118A"}}], "subject_people": ["Nicolae Iorga"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL1048500W 3 2020-10-28T12:15:57.631789 {"description": {"type": "/type/text", "value": "Comparative study of the teachings of Na\u0304madeva, 1270-1350, Marathi religious poet, and Nanak, 1469-1538, first guru of the Sikhs."}, "last_modified": {"type": "/type/datetime", "value": "2020-10-28T12:15:57.631789"}, "latest_revision": 3, "key": "/works/OL1048500W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL104001A"}}], "created": {"type": "/type/datetime", "value": "2009-12-09T20:14:36.998992"}, "title": "Santa N\u0101madeva \u0101\u1e47i Gur\u016b N\u0101nakadeva", "subjects": ["Teachings", "Criticism and interpretation"], "subject_people": ["N\u0101madeva (1270-1350)", "Nanak (1469-1538.*)", "Nanak Guru (1469-1538)"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10485166W 1 2009-12-11T03:02:54.874391 {"title": "The production and properties of some high-performance synthetic fibres", "created": {"type": "/type/datetime", "value": "2009-12-11T03:02:54.874391"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:02:54.874391"}, "latest_revision": 1, "key": "/works/OL10485166W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4350233A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10485272W 1 2009-12-11T03:02:54.874391 {"title": "Africa", "created": {"type": "/type/datetime", "value": "2009-12-11T03:02:54.874391"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:02:54.874391"}, "latest_revision": 1, "key": "/works/OL10485272W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4350292A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10485404W 1 2009-12-11T03:03:02.492997 {"title": "Some aspects of the chemistry of niobium peroxo complexes", "created": {"type": "/type/datetime", "value": "2009-12-11T03:03:02.492997"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:03:02.492997"}, "latest_revision": 1, "key": "/works/OL10485404W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4350375A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10485626W 2 2010-12-03T22:11:06.045041 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:03:02.492997"}, "subject_places": ["Provence (France)"], "subjects": ["Description and travel"], "latest_revision": 2, "key": "/works/OL10485626W", "title": "Aspects of provence", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4350509A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T22:11:06.045041"}, "revision": 2}
+/type/work /works/OL10485759W 1 2009-12-11T03:03:02.492997 {"title": "The practical turning of power looms", "created": {"type": "/type/datetime", "value": "2009-12-11T03:03:02.492997"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:03:02.492997"}, "latest_revision": 1, "key": "/works/OL10485759W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4350576A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10485879W 1 2009-12-11T03:03:02.492997 {"title": "A study of routine aniseikonic screening", "created": {"type": "/type/datetime", "value": "2009-12-11T03:03:02.492997"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:03:02.492997"}, "latest_revision": 1, "key": "/works/OL10485879W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4350651A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10485890W 1 2009-12-11T03:03:02.492997 {"title": "A geography of Europe, including Asiatic U.S.S.R", "created": {"type": "/type/datetime", "value": "2009-12-11T03:03:02.492997"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:03:02.492997"}, "latest_revision": 1, "key": "/works/OL10485890W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4350657A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10485966W 1 2009-12-11T03:03:02.492997 {"title": "The synthesis and realisation of active filters for biological applications", "created": {"type": "/type/datetime", "value": "2009-12-11T03:03:02.492997"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:03:02.492997"}, "latest_revision": 1, "key": "/works/OL10485966W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4350718A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10486056W 1 2009-12-11T03:03:02.492997 {"title": "A subjective assessment of concert hall acoustics", "created": {"type": "/type/datetime", "value": "2009-12-11T03:03:02.492997"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:03:02.492997"}, "latest_revision": 1, "key": "/works/OL10486056W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4350780A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10486290W 1 2009-12-11T03:03:02.492997 {"title": "Estimates of the equivalence coefficient", "created": {"type": "/type/datetime", "value": "2009-12-11T03:03:02.492997"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:03:02.492997"}, "latest_revision": 1, "key": "/works/OL10486290W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4350942A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10486618W 1 2009-12-11T03:03:09.087459 {"title": "Textile laboratory manual", "created": {"type": "/type/datetime", "value": "2009-12-11T03:03:09.087459"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:03:09.087459"}, "latest_revision": 1, "key": "/works/OL10486618W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4351152A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10486690W 1 2009-12-11T03:03:09.087459 {"title": "Vibration of solids and structures under moving loads", "created": {"type": "/type/datetime", "value": "2009-12-11T03:03:09.087459"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:03:09.087459"}, "latest_revision": 1, "key": "/works/OL10486690W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4351190A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10486730W 1 2009-12-11T03:03:09.087459 {"title": "National liberation war in Vietnam", "created": {"type": "/type/datetime", "value": "2009-12-11T03:03:09.087459"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:03:09.087459"}, "latest_revision": 1, "key": "/works/OL10486730W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4351204A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1048695W 2 2010-08-14T20:13:59.295647 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:14:36.998992"}, "subject_places": ["Burma"], "subjects": ["Constitutions"], "latest_revision": 2, "key": "/works/OL1048695W", "title": "Phvai\u02b9 ca\u00f1\u00f1\u02bb\u02ba \u02bcaup\u02bb khyup\u02bb pu\u1e43 \u02bcA khre kha\u1e43 upade", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL104024A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-08-14T20:13:59.295647"}, "revision": 2}
+/type/work /works/OL10487221W 1 2009-12-11T03:03:09.087459 {"title": "Cricket", "created": {"type": "/type/datetime", "value": "2009-12-11T03:03:09.087459"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:03:09.087459"}, "latest_revision": 1, "key": "/works/OL10487221W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4351480A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL104874W 1 2009-10-17T20:21:15.648318 {"created": {"type": "/type/datetime", "value": "2009-10-17T20:21:15.648318"}, "title": "La hermana de Eloi\u0301sa", "last_modified": {"type": "/type/datetime", "value": "2009-10-17T20:21:15.648318"}, "latest_revision": 1, "key": "/works/OL104874W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL18928A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10487568W 2 2010-01-17T17:58:26.898741 {"title": "Albert Rutherston", "created": {"type": "/type/datetime", "value": "2009-12-11T03:03:22.332984"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-17T17:58:26.898741"}, "latest_revision": 2, "key": "/works/OL10487568W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4351693A"}}], "subject_people": ["Albert Rutherston (1881-1953)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10488080W 1 2009-12-11T03:03:22.332984 {"title": "An English library", "created": {"type": "/type/datetime", "value": "2009-12-11T03:03:22.332984"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:03:22.332984"}, "latest_revision": 1, "key": "/works/OL10488080W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4352027A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1048808W 11 2021-10-04T01:18:04.960703 {"covers": [4622924], "key": "/works/OL1048808W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL104044A"}}], "title": "Private investment in India, 1900-1939", "subject_places": ["India"], "subjects": ["Industries", "Economic policy", "Investments", "India", "Corporations", "Industrial Trusts", "American Corporations", "Foreign economic relations", "Economic conditions", "American Investments", "Foreign Corporations", "Commerce", "Commercial policy", "Scottish Investments", "History", "British Investments", "Corporations, united states", "Corporations, american", "Trusts, industrial, europe", "Investments, india", "India, economic policy", "Industries, india"], "type": {"key": "/type/work"}, "latest_revision": 11, "revision": 11, "created": {"type": "/type/datetime", "value": "2009-12-09T20:14:36.998992"}, "last_modified": {"type": "/type/datetime", "value": "2021-10-04T01:18:04.960703"}}
+/type/work /works/OL10488866W 2 2022-12-24T23:20:24.694995 {"title": "Modern etching", "key": "/works/OL10488866W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL18126A"}}], "type": {"key": "/type/work"}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T03:03:28.480429"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-24T23:20:24.694995"}}
+/type/work /works/OL10489038W 3 2014-04-21T10:09:27.336499 {"title": "France, Europe and the two world wars", "created": {"type": "/type/datetime", "value": "2009-12-11T03:03:28.480429"}, "last_modified": {"type": "/type/datetime", "value": "2014-04-21T10:09:27.336499"}, "latest_revision": 3, "key": "/works/OL10489038W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1770238A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10489201W 1 2009-12-11T03:03:28.480429 {"title": "The golden arrow", "created": {"type": "/type/datetime", "value": "2009-12-11T03:03:28.480429"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:03:28.480429"}, "latest_revision": 1, "key": "/works/OL10489201W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4352604A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10489561W 3 2022-04-05T19:11:51.291737 {"title": "Cobbett", "key": "/works/OL10489561W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL658079A"}}], "subject_people": ["William Cobbett (1763-1835)"], "type": {"key": "/type/work"}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T03:03:34.593605"}, "last_modified": {"type": "/type/datetime", "value": "2022-04-05T19:11:51.291737"}}
+/type/work /works/OL10489855W 2 2010-01-17T18:03:31.717160 {"title": "Life and letters of Sir Wilfrid Laurier", "created": {"type": "/type/datetime", "value": "2009-12-11T03:03:34.593605"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-17T18:03:31.717160"}, "latest_revision": 2, "key": "/works/OL10489855W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4352940A"}}], "subject_people": ["Wilfrid Laurier Sir"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10489905W 1 2009-12-11T03:03:34.593605 {"title": "Other people's houses", "created": {"type": "/type/datetime", "value": "2009-12-11T03:03:34.593605"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:03:34.593605"}, "latest_revision": 1, "key": "/works/OL10489905W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4352980A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10490131W 1 2009-12-11T03:03:34.593605 {"title": "False colours; or, The free trader", "created": {"type": "/type/datetime", "value": "2009-12-11T03:03:34.593605"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:03:34.593605"}, "latest_revision": 1, "key": "/works/OL10490131W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4353047A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10490246W 1 2009-12-11T03:03:34.593605 {"title": "Blenny, prawn and sea anemone", "created": {"type": "/type/datetime", "value": "2009-12-11T03:03:34.593605"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:03:34.593605"}, "latest_revision": 1, "key": "/works/OL10490246W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4353104A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10490526W 1 2009-12-11T03:03:38.794052 {"title": "Who is who; or, All in a fog", "created": {"type": "/type/datetime", "value": "2009-12-11T03:03:38.794052"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:03:38.794052"}, "latest_revision": 1, "key": "/works/OL10490526W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4353219A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10490604W 2 2021-10-25T10:06:19.668365 {"title": "Placement at Thorn Security", "key": "/works/OL10490604W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL35174A"}}], "type": {"key": "/type/work"}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T03:03:38.794052"}, "last_modified": {"type": "/type/datetime", "value": "2021-10-25T10:06:19.668365"}}
+/type/work /works/OL10490684W 3 2022-11-03T15:32:52.571236 {"subject_places": ["United States"], "subjects": ["American fiction", "History and criticism", "Women novelists"], "key": "/works/OL10490684W", "title": "Pioneers & caretakers", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5017965A"}}], "type": {"key": "/type/work"}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T03:03:38.794052"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-03T15:32:52.571236"}}
+/type/work /works/OL10490949W 2 2012-08-07T05:36:35.481135 {"title": "Political thought in England, 1848-1914", "created": {"type": "/type/datetime", "value": "2009-12-11T03:03:38.794052"}, "last_modified": {"type": "/type/datetime", "value": "2012-08-07T05:36:35.481135"}, "latest_revision": 2, "key": "/works/OL10490949W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL18529A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10491111W 2 2012-06-23T22:26:40.202491 {"title": "La cultura en Espa\u00f1a", "created": {"type": "/type/datetime", "value": "2009-12-11T03:03:38.794052"}, "last_modified": {"type": "/type/datetime", "value": "2012-06-23T22:26:40.202491"}, "latest_revision": 2, "key": "/works/OL10491111W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4353398A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10491236W 1 2009-12-11T03:03:38.794052 {"title": "Reginald Marsh", "created": {"type": "/type/datetime", "value": "2009-12-11T03:03:38.794052"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:03:38.794052"}, "latest_revision": 1, "key": "/works/OL10491236W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4353464A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10491503W 1 2009-12-11T03:03:43.955597 {"title": "Aperc \u02b9us sur la teinture a l'indigo en Afrique Occidentale", "created": {"type": "/type/datetime", "value": "2009-12-11T03:03:43.955597"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:03:43.955597"}, "latest_revision": 1, "key": "/works/OL10491503W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4353562A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10491808W 1 2009-12-11T03:03:43.955597 {"title": "Directory and nomenclature of the first aeroplanes, 1809-1909", "created": {"type": "/type/datetime", "value": "2009-12-11T03:03:43.955597"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:03:43.955597"}, "latest_revision": 1, "key": "/works/OL10491808W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4353687A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10491939W 2 2019-07-30T21:45:50.383379 {"title": "Le franc\u0327ais aujourd'hui", "created": {"type": "/type/datetime", "value": "2009-12-11T03:03:43.955597"}, "last_modified": {"type": "/type/datetime", "value": "2019-07-30T21:45:50.383379"}, "latest_revision": 2, "key": "/works/OL10491939W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4353734A"}}, {"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL3447992A"}}, {"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL3473974A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10492120W 2 2018-09-21T16:07:02.630623 {"title": "The life of mammals", "created": {"type": "/type/datetime", "value": "2009-12-11T03:03:43.955597"}, "last_modified": {"type": "/type/datetime", "value": "2018-09-21T16:07:02.630623"}, "latest_revision": 2, "key": "/works/OL10492120W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL3430090A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10492556W 2 2010-12-03T22:35:33.521949 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T22:35:33.521949"}, "title": "Me\u0301moire historique sur la Bibliothe\u0300que dite de Bourgogne, pre\u0301sentement Bibliothe\u0300que Publique deBruxelles", "created": {"type": "/type/datetime", "value": "2009-12-11T03:03:49.243068"}, "subjects": ["Biblioth\u00e8que Publique de Bruxelles"], "latest_revision": 2, "key": "/works/OL10492556W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4354042A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10492687W 1 2009-12-11T03:03:49.243068 {"title": "A practical man", "created": {"type": "/type/datetime", "value": "2009-12-11T03:03:49.243068"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:03:49.243068"}, "latest_revision": 1, "key": "/works/OL10492687W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4354119A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10492840W 1 2009-12-11T03:03:49.243068 {"title": "Fairy tales of Russia", "created": {"type": "/type/datetime", "value": "2009-12-11T03:03:49.243068"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:03:49.243068"}, "latest_revision": 1, "key": "/works/OL10492840W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4354188A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10492945W 2 2010-12-04T00:48:19.078930 {"last_modified": {"type": "/type/datetime", "value": "2010-12-04T00:48:19.078930"}, "title": "Yet another impression", "created": {"type": "/type/datetime", "value": "2009-12-11T03:03:49.243068"}, "subjects": ["Oberammergauer Passionsspiel"], "latest_revision": 2, "key": "/works/OL10492945W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4354224A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10493368W 1 2009-12-11T03:03:49.243068 {"title": "The Development of astronimical thought", "created": {"type": "/type/datetime", "value": "2009-12-11T03:03:49.243068"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:03:49.243068"}, "latest_revision": 1, "key": "/works/OL10493368W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4354423A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10493393W 2 2010-01-17T18:08:30.479775 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:03:49.243068"}, "title": "The moon raiders", "last_modified": {"type": "/type/datetime", "value": "2010-01-17T18:08:30.479775"}, "latest_revision": 2, "key": "/works/OL10493393W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4354423A"}}], "type": {"key": "/type/work"}, "subjects": ["Children's stories"], "revision": 2}
+/type/work /works/OL10493956W 1 2009-12-11T03:03:53.355704 {"title": "Georgian pottery and chasing on metal =", "created": {"type": "/type/datetime", "value": "2009-12-11T03:03:53.355704"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:03:53.355704"}, "latest_revision": 1, "key": "/works/OL10493956W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4354611A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10494008W 3 2020-02-18T05:33:48.286402 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:03:53.355704"}, "subjects": ["Silverwork", "History"], "latest_revision": 3, "key": "/works/OL10494008W", "title": "Domestic silver of Great Britain and Ireland", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4354639A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-02-18T05:33:48.286402"}, "covers": [9274411], "revision": 3}
+/type/work /works/OL10494215W 2 2021-12-26T12:23:55.029573 {"title": "Lynd Ward", "key": "/works/OL10494215W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL809238A"}}], "type": {"key": "/type/work"}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T03:03:53.355704"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-26T12:23:55.029573"}}
+/type/work /works/OL10494680W 2 2022-09-26T17:52:13.172014 {"title": "To be a King", "key": "/works/OL10494680W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1776690A"}}], "type": {"key": "/type/work"}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T03:03:59.765973"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-26T17:52:13.172014"}}
+/type/work /works/OL1049494W 1 2009-12-09T19:52:39.306163 {"title": "Mutya\u0304la pallaki", "created": {"type": "/type/datetime", "value": "2009-12-09T19:52:39.306163"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:52:39.306163"}, "latest_revision": 1, "key": "/works/OL1049494W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL104216A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10495131W 1 2009-12-11T03:03:59.765973 {"title": "Life in Roman Britain", "created": {"type": "/type/datetime", "value": "2009-12-11T03:03:59.765973"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:03:59.765973"}, "latest_revision": 1, "key": "/works/OL10495131W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4355113A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10495237W 1 2009-12-11T03:03:59.765973 {"title": "Programme learning", "created": {"type": "/type/datetime", "value": "2009-12-11T03:03:59.765973"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:03:59.765973"}, "latest_revision": 1, "key": "/works/OL10495237W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4355149A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10495352W 2 2012-12-20T07:18:32.492051 {"title": "Dutch civilisation in the seventeenth century and other essays", "created": {"type": "/type/datetime", "value": "2009-12-11T03:03:59.765973"}, "last_modified": {"type": "/type/datetime", "value": "2012-12-20T07:18:32.492051"}, "latest_revision": 2, "key": "/works/OL10495352W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL116241A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10495391W 1 2009-12-11T03:03:59.765973 {"title": "Instructional design", "created": {"type": "/type/datetime", "value": "2009-12-11T03:03:59.765973"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:03:59.765973"}, "latest_revision": 1, "key": "/works/OL10495391W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4355228A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10495398W 2 2011-06-06T17:52:52.139440 {"title": "My life", "created": {"type": "/type/datetime", "value": "2009-12-11T03:03:59.765973"}, "last_modified": {"type": "/type/datetime", "value": "2011-06-06T17:52:52.139440"}, "latest_revision": 2, "key": "/works/OL10495398W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL38191A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL1049539W 2 2020-11-04T06:36:52.285012 {"description": {"type": "/type/text", "value": "Study based on 1951-1981 data of Kerala."}, "title": "Impact of the development process on the Indian family", "created": {"type": "/type/datetime", "value": "2009-12-09T20:15:00.731086"}, "last_modified": {"type": "/type/datetime", "value": "2020-11-04T06:36:52.285012"}, "latest_revision": 2, "key": "/works/OL1049539W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL104224A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10495459W 3 2010-12-04T04:23:29.725393 {"last_modified": {"type": "/type/datetime", "value": "2010-12-04T04:23:29.725393"}, "title": "January tomatoes", "created": {"type": "/type/datetime", "value": "2009-12-11T03:04:11.547605"}, "subjects": ["Agriculture", "Agriculture industries", "Economic aspects", "Economic aspects of Agriculture", "Food industry and trade", "Food supply"], "latest_revision": 3, "key": "/works/OL10495459W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4355260A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10495499W 1 2009-12-11T03:04:11.547605 {"title": "Britannia depicta", "created": {"type": "/type/datetime", "value": "2009-12-11T03:04:11.547605"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:04:11.547605"}, "latest_revision": 1, "key": "/works/OL10495499W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4355268A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10495513W 1 2009-12-11T03:04:11.547605 {"title": "L' Opera completa di Bramantino e Bramante pittore", "created": {"type": "/type/datetime", "value": "2009-12-11T03:04:11.547605"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:04:11.547605"}, "latest_revision": 1, "key": "/works/OL10495513W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4355274A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10496323W 1 2009-12-11T03:04:11.547605 {"title": "Teaching reading", "created": {"type": "/type/datetime", "value": "2009-12-11T03:04:11.547605"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:04:11.547605"}, "latest_revision": 1, "key": "/works/OL10496323W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4355618A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10496402W 2 2010-01-17T18:08:30.479775 {"title": "Posters for music", "created": {"type": "/type/datetime", "value": "2009-12-11T03:04:11.547605"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-17T18:08:30.479775"}, "latest_revision": 2, "key": "/works/OL10496402W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4355661A"}}], "subject_people": ["Tadanori Yokoo"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10496553W 1 2009-12-11T03:04:22.915396 {"title": "Air conditioning for printers", "created": {"type": "/type/datetime", "value": "2009-12-11T03:04:22.915396"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:04:22.915396"}, "latest_revision": 1, "key": "/works/OL10496553W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4355768A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10496625W 1 2009-12-11T03:04:22.915396 {"title": "B & A arithmetic", "created": {"type": "/type/datetime", "value": "2009-12-11T03:04:22.915396"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:04:22.915396"}, "latest_revision": 1, "key": "/works/OL10496625W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4355794A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10496858W 1 2009-12-11T03:04:22.915396 {"title": "The diabetic gourmet", "created": {"type": "/type/datetime", "value": "2009-12-11T03:04:22.915396"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:04:22.915396"}, "latest_revision": 1, "key": "/works/OL10496858W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4355914A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1049686W 2 2010-01-17T18:12:58.123511 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:15:00.731086"}, "title": "Total literacy campaign of Yavatmal District external evaluation report", "subject_places": ["Yeotmal (District)", "India"], "last_modified": {"type": "/type/datetime", "value": "2010-01-17T18:12:58.123511"}, "latest_revision": 2, "key": "/works/OL1049686W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL104250A"}}], "type": {"key": "/type/work"}, "subjects": ["Education"], "revision": 2}
+/type/work /works/OL10497683W 5 2021-09-16T14:18:29.445616 {"subject_places": ["Soviet Union"], "subjects": ["Collections of games", "Chess", "Indoor games", "Chess, collections of games", "Sports, soviet union"], "key": "/works/OL10497683W", "title": "USSR v Rest of the World challenge match", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL405595A"}}, {"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2624415A"}}, {"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2789945A"}}], "type": {"key": "/type/work"}, "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2009-12-11T03:04:27.437799"}, "last_modified": {"type": "/type/datetime", "value": "2021-09-16T14:18:29.445616"}}
+/type/work /works/OL10497961W 2 2010-01-17T18:12:58.123511 {"title": "Life of Tukaram", "created": {"type": "/type/datetime", "value": "2009-12-11T03:04:27.437799"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-17T18:12:58.123511"}, "latest_revision": 2, "key": "/works/OL10497961W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4356408A"}}], "subject_people": ["Tukaram"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10498023W 1 2009-12-11T03:04:27.437799 {"title": "Living with Parkinson's disease", "created": {"type": "/type/datetime", "value": "2009-12-11T03:04:27.437799"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:04:27.437799"}, "latest_revision": 1, "key": "/works/OL10498023W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4356445A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10498120W 1 2009-12-11T03:04:27.437799 {"title": "A guide to Sanchi", "created": {"type": "/type/datetime", "value": "2009-12-11T03:04:27.437799"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:04:27.437799"}, "latest_revision": 1, "key": "/works/OL10498120W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4356476A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10498206W 1 2009-12-11T03:04:27.437799 {"title": "How India won her freedom", "created": {"type": "/type/datetime", "value": "2009-12-11T03:04:27.437799"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:04:27.437799"}, "latest_revision": 1, "key": "/works/OL10498206W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4356525A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1049826W 2 2010-01-17T18:12:58.123511 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:15:00.731086"}, "title": "Putula putula", "last_modified": {"type": "/type/datetime", "value": "2010-01-17T18:12:58.123511"}, "latest_revision": 2, "key": "/works/OL1049826W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL104278A"}}], "type": {"key": "/type/work"}, "subjects": ["Children's literature, Bengali"], "revision": 2}
+/type/work /works/OL10498479W 2 2022-05-14T08:04:42.921892 {"title": "Jewish living", "key": "/works/OL10498479W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4356642A"}}], "type": {"key": "/type/work"}, "subjects": ["Judaism", "Customs and practices"], "covers": [12743831], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T03:04:32.435695"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-14T08:04:42.921892"}}
+/type/work /works/OL10498581W 7 2022-10-27T05:08:37.998193 {"title": "B.M.W. Twins 1970-90 owner's workshop manual", "key": "/works/OL10498581W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL785848A"}}], "type": {"key": "/type/work"}, "subjects": ["BMW motorcycle", "Handbooks, manuals", "Maintenance and repair", "BMW (Motocyclettes)", "Guides, manuels", "Entretien et r\u00e9parations"], "covers": [12973795], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2009-12-11T03:04:32.435695"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-27T05:08:37.998193"}}
+/type/work /works/OL10498665W 1 2009-12-11T03:04:32.435695 {"title": "The grief report", "created": {"type": "/type/datetime", "value": "2009-12-11T03:04:32.435695"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:04:32.435695"}, "latest_revision": 1, "key": "/works/OL10498665W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4356722A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10498807W 10 2022-07-17T09:52:28.729185 {"title": "VW owners workshop manual", "subjects": ["Jetta automobile", "Golf automobile", "Scirocco automobile", "Handbooks, manuals", "Volkswagen automobile", "Rabbit automobile", "Volkswagen automobiles", "Automobiles, maintenance and repair"], "key": "/works/OL10498807W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL785848A"}}], "type": {"key": "/type/work"}, "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2009-12-11T03:04:32.435695"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T09:52:28.729185"}}
+/type/work /works/OL10499127W 1 2009-12-11T03:04:32.435695 {"title": "Art metalwork", "created": {"type": "/type/datetime", "value": "2009-12-11T03:04:32.435695"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:04:32.435695"}, "latest_revision": 1, "key": "/works/OL10499127W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4356867A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10499155W 1 2009-12-11T03:04:32.435695 {"title": "Principes et formules classiques du calcul des probabilite s", "created": {"type": "/type/datetime", "value": "2009-12-11T03:04:32.435695"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:04:32.435695"}, "latest_revision": 1, "key": "/works/OL10499155W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4356885A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10499383W 2 2010-12-03T16:40:32.721198 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T16:40:32.721198"}, "title": "Leisure research and planning", "created": {"type": "/type/datetime", "value": "2009-12-11T03:04:32.435695"}, "subjects": ["Bibliography", "Information services", "Leisure"], "latest_revision": 2, "key": "/works/OL10499383W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4357002A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10499437W 1 2009-12-11T03:04:37.478917 {"title": "'Dole schools'", "created": {"type": "/type/datetime", "value": "2009-12-11T03:04:37.478917"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:04:37.478917"}, "latest_revision": 1, "key": "/works/OL10499437W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4357027A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10499496W 2 2010-12-06T07:41:31.245725 {"last_modified": {"type": "/type/datetime", "value": "2010-12-06T07:41:31.245725"}, "title": "Ridgeway College", "created": {"type": "/type/datetime", "value": "2009-12-11T03:04:37.478917"}, "subjects": ["Ridgeway College"], "latest_revision": 2, "key": "/works/OL10499496W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4357042A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10499674W 1 2009-12-11T03:04:37.478917 {"title": "Advertising", "created": {"type": "/type/datetime", "value": "2009-12-11T03:04:37.478917"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:04:37.478917"}, "latest_revision": 1, "key": "/works/OL10499674W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4357101A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10499952W 2 2010-10-14T21:37:48.902798 {"title": "Piano works", "created": {"type": "/type/datetime", "value": "2009-12-11T03:04:37.478917"}, "last_modified": {"type": "/type/datetime", "value": "2010-10-14T21:37:48.902798"}, "latest_revision": 2, "key": "/works/OL10499952W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2745735A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10499965W 3 2010-10-14T21:37:48.902798 {"subtitle": "arranged for two performers on the pianoforte.", "title": "Symphony no. 4 in A major, op. 90", "created": {"type": "/type/datetime", "value": "2009-12-11T03:04:37.478917"}, "last_modified": {"type": "/type/datetime", "value": "2010-10-14T21:37:48.902798"}, "latest_revision": 3, "key": "/works/OL10499965W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2745735A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1050028W 2 2010-01-17T18:12:58.123511 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:15:00.731086"}, "title": "Sa\u0304hityata bibartana", "last_modified": {"type": "/type/datetime", "value": "2010-01-17T18:12:58.123511"}, "latest_revision": 2, "key": "/works/OL1050028W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL104342A"}}], "type": {"key": "/type/work"}, "subjects": ["History and criticism", "Assamese literature"], "revision": 2}
+/type/work /works/OL10501299W 2 2017-05-18T10:19:55.201238 {"title": "Elegie, sonetti e canzoni", "created": {"type": "/type/datetime", "value": "2009-12-11T03:04:42.529449"}, "last_modified": {"type": "/type/datetime", "value": "2017-05-18T10:19:55.201238"}, "latest_revision": 2, "key": "/works/OL10501299W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL441262A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10501427W 6 2022-09-17T04:09:50.645016 {"title": "The Ethiopian revolution", "covers": [8524002], "subject_places": ["Ethiopia"], "subjects": ["Politics and government", "History", "Influence", "Ethiopia, politics and government"], "key": "/works/OL10501427W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL458420A"}}], "subject_times": ["1974-", "1889-"], "type": {"key": "/type/work"}, "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2009-12-11T03:04:47.222929"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-17T04:09:50.645016"}}
+/type/work /works/OL10501564W 2 2010-01-17T18:17:24.416614 {"title": "The typographical adventure of William Morris", "created": {"type": "/type/datetime", "value": "2009-12-11T03:04:47.222929"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-17T18:17:24.416614"}, "latest_revision": 2, "key": "/works/OL10501564W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4357903A"}}], "subject_people": ["William Morris (1834-1896)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL1050161W 3 2020-12-03T10:30:23.311996 {"title": "Itiha\u0304sa", "subject_places": ["India"], "key": "/works/OL1050161W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL104393A"}}], "subject_times": ["1857-1919", "1919-1947"], "type": {"key": "/type/work"}, "subjects": ["Drama", "Politics and government", "Nationalism", "History"], "description": {"type": "/type/text", "value": "Based on the story of the Indian freedom struggle against British rule; covers the period, 1857-1947."}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-09T20:15:00.731086"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-03T10:30:23.311996"}}
+/type/work /works/OL10501836W 1 2009-12-11T03:04:47.222929 {"title": "An introduction to Tudor architecture", "created": {"type": "/type/datetime", "value": "2009-12-11T03:04:47.222929"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:04:47.222929"}, "latest_revision": 1, "key": "/works/OL10501836W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4358012A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1050203W 2 2020-12-03T10:30:29.957812 {"title": "Smr\u0325tisthal\u0323a", "key": "/works/OL1050203W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL104402A"}}], "type": {"key": "/type/work"}, "description": {"type": "/type/text", "value": "Critical edition of a Maha\u0304nubha\u0304va verse work."}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-09T20:15:00.731086"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-03T10:30:29.957812"}}
+/type/work /works/OL10502040W 1 2009-12-11T03:04:47.222929 {"title": "Gabriele Mu nter", "created": {"type": "/type/datetime", "value": "2009-12-11T03:04:47.222929"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:04:47.222929"}, "latest_revision": 1, "key": "/works/OL10502040W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4358063A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10502057W 1 2009-12-11T03:04:47.222929 {"title": "Stories for disturbed children", "created": {"type": "/type/datetime", "value": "2009-12-11T03:04:47.222929"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:04:47.222929"}, "latest_revision": 1, "key": "/works/OL10502057W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4358078A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10503175W 3 2022-02-28T14:09:06.514047 {"title": "The scar of Montaigne", "key": "/works/OL10503175W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4358444A"}}], "subject_people": ["Michel de Montaigne (1533-1592)"], "type": {"key": "/type/work"}, "subjects": ["Montaigne, michel de, 1533-1592"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T03:04:51.852343"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-28T14:09:06.514047"}}
+/type/work /works/OL10503323W 1 2009-12-11T03:04:51.852343 {"title": "Single-subject syllabuses", "created": {"type": "/type/datetime", "value": "2009-12-11T03:04:51.852343"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:04:51.852343"}, "latest_revision": 1, "key": "/works/OL10503323W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4358514A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10504067W 2 2017-05-15T06:33:58.148106 {"title": "Nomads of the Australian desert", "created": {"type": "/type/datetime", "value": "2009-12-11T03:04:57.046652"}, "last_modified": {"type": "/type/datetime", "value": "2017-05-15T06:33:58.148106"}, "latest_revision": 2, "key": "/works/OL10504067W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL123627A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10504739W 2 2010-01-17T18:22:24.800523 {"title": "Fragments", "created": {"type": "/type/datetime", "value": "2009-12-11T03:05:04.102943"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-17T18:22:24.800523"}, "latest_revision": 2, "key": "/works/OL10504739W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4359174A"}}], "subject_people": ["Otto K\u00fcnzli"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10504811W 1 2009-12-11T03:05:04.102943 {"title": "An evaluation of the provision of cycle facilities", "created": {"type": "/type/datetime", "value": "2009-12-11T03:05:04.102943"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:05:04.102943"}, "latest_revision": 1, "key": "/works/OL10504811W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4359217A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10504991W 2 2010-01-17T18:22:24.800523 {"title": "More Baxter memoranda", "created": {"type": "/type/datetime", "value": "2009-12-11T03:05:04.102943"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-17T18:22:24.800523"}, "latest_revision": 2, "key": "/works/OL10504991W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4359313A"}}], "subject_people": ["George Baxter"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10505559W 2 2010-01-17T18:22:24.800523 {"title": "Suzuki Harunobu", "created": {"type": "/type/datetime", "value": "2009-12-11T03:05:08.787162"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-17T18:22:24.800523"}, "latest_revision": 2, "key": "/works/OL10505559W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4359610A"}}], "subject_people": ["Suzuki Harunobu"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10506388W 8 2022-11-17T12:31:02.682769 {"title": "Flash point", "covers": [4467183], "key": "/works/OL10506388W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL28135A"}}], "subjects": ["Fiction in English", "Fiction, mystery & detective, general"], "type": {"key": "/type/work"}, "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2009-12-11T03:05:08.787162"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T12:31:02.682769"}}
+/type/work /works/OL10506687W 1 2009-12-11T03:05:12.516653 {"title": "Fifty tumultuous years", "created": {"type": "/type/datetime", "value": "2009-12-11T03:05:12.516653"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:05:12.516653"}, "latest_revision": 1, "key": "/works/OL10506687W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4360024A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL105066W 2 2010-01-17T18:22:24.800523 {"title": "Compendio de derecho minero venezolano", "created": {"type": "/type/datetime", "value": "2009-10-17T20:52:55.384628"}, "subject_places": ["Venezuela"], "last_modified": {"type": "/type/datetime", "value": "2010-01-17T18:22:24.800523"}, "latest_revision": 2, "key": "/works/OL105066W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1210695A"}}], "type": {"key": "/type/work"}, "subjects": ["Mining law"], "revision": 2}
+/type/work /works/OL10506979W 1 2009-12-11T03:05:12.516653 {"title": "When all the world was young", "created": {"type": "/type/datetime", "value": "2009-12-11T03:05:12.516653"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:05:12.516653"}, "latest_revision": 1, "key": "/works/OL10506979W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4360090A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1050698W 4 2020-12-03T10:32:09.589006 {"subjects": ["Criticism and interpretation"], "subject_people": ["Jagannath Azad (1918-)"], "key": "/works/OL1050698W", "title": "Jagan Nath Azad - fikr va fann", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL104519A"}}], "type": {"key": "/type/work"}, "description": {"type": "/type/text", "value": "On the works of Jagan Nath Azad (1918 - 2004) Urdu poet."}, "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-09T20:15:24.381362"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-03T10:32:09.589006"}}
+/type/work /works/OL1050744W 3 2020-12-11T23:45:22.720448 {"title": "Sami\u0304ksha\u0304 ya\u0304tra\u0304", "subject_places": ["India"], "key": "/works/OL1050744W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL104541A"}}], "subject_times": ["20th century"], "type": {"key": "/type/work"}, "subjects": ["Nepali literature", "History and criticism"], "description": {"type": "/type/text", "value": "Articles on contemporary Nepali literature from India."}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-09T20:15:24.381362"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-11T23:45:22.720448"}}
+/type/work /works/OL10507589W 1 2009-12-11T03:05:16.465712 {"title": "Amarna age", "created": {"type": "/type/datetime", "value": "2009-12-11T03:05:16.465712"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:05:16.465712"}, "latest_revision": 1, "key": "/works/OL10507589W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4360304A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10507639W 4 2022-05-18T08:55:44.412983 {"title": "The minor works of George Grote", "covers": [5973432], "key": "/works/OL10507639W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4360319A"}}], "type": {"key": "/type/work"}, "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T03:05:16.465712"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-18T08:55:44.412983"}}
+/type/work /works/OL10507806W 6 2021-10-04T07:14:28.877387 {"subjects": ["Colonial administrators", "Generals", "Fiction", "Africa, fiction", "Fiction, historical, general", "Fiction, biographical"], "key": "/works/OL10507806W", "title": "The Last Encounter", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1222565A"}}], "type": {"key": "/type/work"}, "covers": [4503779], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2009-12-11T03:05:16.465712"}, "last_modified": {"type": "/type/datetime", "value": "2021-10-04T07:14:28.877387"}}
+/type/work /works/OL1050807W 1 2009-12-09T19:52:59.636988 {"title": "The Himalayan Journal", "created": {"type": "/type/datetime", "value": "2009-12-09T19:52:59.636988"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:52:59.636988"}, "latest_revision": 1, "key": "/works/OL1050807W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL104559A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10508275W 1 2009-12-11T03:05:16.465712 {"title": "The life and times of Napoleon", "created": {"type": "/type/datetime", "value": "2009-12-11T03:05:16.465712"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:05:16.465712"}, "latest_revision": 1, "key": "/works/OL10508275W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4360484A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10508279W 2 2010-01-17T18:27:12.522498 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:05:16.465712"}, "title": "Baptist Association life in Worcestershire, 1655-1926", "subject_places": ["Worcestershire"], "last_modified": {"type": "/type/datetime", "value": "2010-01-17T18:27:12.522498"}, "latest_revision": 2, "key": "/works/OL10508279W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4360486A"}}], "type": {"key": "/type/work"}, "subjects": ["Baptist history"], "revision": 2}
+/type/work /works/OL1050929W 1 2009-12-09T19:52:59.636988 {"title": "Chepana", "created": {"type": "/type/datetime", "value": "2009-12-09T19:52:59.636988"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:52:59.636988"}, "latest_revision": 1, "key": "/works/OL1050929W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL104577A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10509487W 1 2009-12-11T03:05:25.643398 {"title": "A short history of Czech literature", "created": {"type": "/type/datetime", "value": "2009-12-11T03:05:25.643398"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:05:25.643398"}, "latest_revision": 1, "key": "/works/OL10509487W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4360907A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10509716W 2 2010-01-17T18:27:12.522498 {"title": "Stendhal romancier", "created": {"type": "/type/datetime", "value": "2009-12-11T03:05:25.643398"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-17T18:27:12.522498"}, "latest_revision": 2, "key": "/works/OL10509716W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4360980A"}}], "subject_people": ["Stendhal (1783-1842)"], "type": {"key": "/type/work"}, "subjects": ["Criticism and interpretation"], "revision": 2}
+/type/work /works/OL10510232W 1 2009-12-11T03:05:25.643398 {"title": "Proximity voting, strategic voting, paradox voting", "created": {"type": "/type/datetime", "value": "2009-12-11T03:05:25.643398"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:05:25.643398"}, "latest_revision": 1, "key": "/works/OL10510232W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4361173A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10510641W 1 2009-12-11T03:05:29.585806 {"title": "Self-hire among slaves, 1820-1860", "created": {"type": "/type/datetime", "value": "2009-12-11T03:05:29.585806"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:05:29.585806"}, "latest_revision": 1, "key": "/works/OL10510641W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4361326A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10511041W 1 2009-12-11T03:05:29.585806 {"title": "Buying community nursing", "created": {"type": "/type/datetime", "value": "2009-12-11T03:05:29.585806"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:05:29.585806"}, "latest_revision": 1, "key": "/works/OL10511041W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4361430A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10511259W 2 2010-01-17T18:32:16.369530 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:05:29.585806"}, "title": "\" Ulster speaks\"", "subject_places": ["Ulster", "Ireland"], "last_modified": {"type": "/type/datetime", "value": "2010-01-17T18:32:16.369530"}, "latest_revision": 2, "key": "/works/OL10511259W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4361458A"}}], "type": {"key": "/type/work"}, "subjects": ["Dialects", "English language"], "revision": 2}
+/type/work /works/OL10512380W 1 2009-12-11T03:05:35.628713 {"title": "Preventive educational intervention for mental health", "created": {"type": "/type/datetime", "value": "2009-12-11T03:05:35.628713"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:05:35.628713"}, "latest_revision": 1, "key": "/works/OL10512380W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4362022A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1051257W 1 2009-12-09T19:52:59.636988 {"title": "Ni\u0304lamalakal\u0323ile suvarn\u0323an\u0303or\u0332ikal\u0323", "created": {"type": "/type/datetime", "value": "2009-12-09T19:52:59.636988"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:52:59.636988"}, "latest_revision": 1, "key": "/works/OL1051257W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL104667A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10512945W 1 2009-12-11T03:05:42.688103 {"title": "Meistenwerke deutscher Sprache aus dem neunzehnten Jahrhundert", "created": {"type": "/type/datetime", "value": "2009-12-11T03:05:42.688103"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:05:42.688103"}, "latest_revision": 1, "key": "/works/OL10512945W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4362351A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10513053W 1 2009-12-11T03:05:42.688103 {"title": "The doctrine of descent and Darwinism", "created": {"type": "/type/datetime", "value": "2009-12-11T03:05:42.688103"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:05:42.688103"}, "latest_revision": 1, "key": "/works/OL10513053W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4362413A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10513057W 1 2009-12-11T03:05:42.688103 {"title": "The East German Landsmaunschaften in the German Federal Republic", "created": {"type": "/type/datetime", "value": "2009-12-11T03:05:42.688103"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:05:42.688103"}, "latest_revision": 1, "key": "/works/OL10513057W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4362418A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10513343W 1 2009-12-11T03:05:42.688103 {"title": "Materials index", "created": {"type": "/type/datetime", "value": "2009-12-11T03:05:42.688103"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:05:42.688103"}, "latest_revision": 1, "key": "/works/OL10513343W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4362626A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10513358W 1 2009-12-11T03:05:42.688103 {"title": "Syllabus for a course in management information systems", "created": {"type": "/type/datetime", "value": "2009-12-11T03:05:42.688103"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:05:42.688103"}, "latest_revision": 1, "key": "/works/OL10513358W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4362642A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10513423W 2 2020-09-19T17:51:57.923173 {"title": "Morphology of the insect abdomen", "created": {"type": "/type/datetime", "value": "2009-12-11T03:05:49.332401"}, "last_modified": {"type": "/type/datetime", "value": "2020-09-19T17:51:57.923173"}, "latest_revision": 2, "key": "/works/OL10513423W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL841345A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10513519W 2 2018-03-06T10:16:19.810052 {"title": "Tvorimaia legenda", "created": {"type": "/type/datetime", "value": "2009-12-11T03:05:49.332401"}, "last_modified": {"type": "/type/datetime", "value": "2018-03-06T10:16:19.810052"}, "latest_revision": 2, "key": "/works/OL10513519W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL79396A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10513676W 1 2009-12-11T03:05:49.332401 {"title": "Obrazovanie i upotreblenie vidov glagola v russkom yazyke", "created": {"type": "/type/datetime", "value": "2009-12-11T03:05:49.332401"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:05:49.332401"}, "latest_revision": 1, "key": "/works/OL10513676W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4362780A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10513755W 1 2009-12-11T03:05:49.332401 {"title": "Im Streit der Meinungen von Produzenten, Konsumenten und Rezensenten", "created": {"type": "/type/datetime", "value": "2009-12-11T03:05:49.332401"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:05:49.332401"}, "latest_revision": 1, "key": "/works/OL10513755W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4362827A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10514712W 1 2009-12-11T03:05:55.969534 {"title": "Introduction to radiation chemistry", "created": {"type": "/type/datetime", "value": "2009-12-11T03:05:55.969534"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:05:55.969534"}, "latest_revision": 1, "key": "/works/OL10514712W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4363435A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10515434W 1 2009-12-11T03:06:03.837264 {"title": "The definition of fruits and seeds", "created": {"type": "/type/datetime", "value": "2009-12-11T03:06:03.837264"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:06:03.837264"}, "latest_revision": 1, "key": "/works/OL10515434W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4363856A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10515753W 1 2009-12-11T03:06:03.837264 {"title": "Technology of light metals", "created": {"type": "/type/datetime", "value": "2009-12-11T03:06:03.837264"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:06:03.837264"}, "latest_revision": 1, "key": "/works/OL10515753W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4364053A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10515886W 1 2009-12-11T03:06:03.837264 {"title": "Analytical chemistry", "created": {"type": "/type/datetime", "value": "2009-12-11T03:06:03.837264"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:06:03.837264"}, "latest_revision": 1, "key": "/works/OL10515886W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4364156A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10516280W 2 2010-01-17T18:37:35.792336 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:06:03.837264"}, "title": "The world's largest industrial enterprises", "last_modified": {"type": "/type/datetime", "value": "2010-01-17T18:37:35.792336"}, "latest_revision": 2, "key": "/works/OL10516280W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4364409A"}}], "subject_times": ["20th century"], "type": {"key": "/type/work"}, "subjects": ["Corporations", "History", "Statistics", "Big business"], "revision": 2}
+/type/work /works/OL10516714W 1 2009-12-11T03:06:12.296050 {"title": "Total flow, drop size and concentration measurement in liquid/liquid mixtures", "created": {"type": "/type/datetime", "value": "2009-12-11T03:06:12.296050"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:06:12.296050"}, "latest_revision": 1, "key": "/works/OL10516714W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4364724A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10516859W 1 2009-12-11T03:06:12.296050 {"title": "The job diagnostic survey", "created": {"type": "/type/datetime", "value": "2009-12-11T03:06:12.296050"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:06:12.296050"}, "latest_revision": 1, "key": "/works/OL10516859W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4364843A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10517000W 1 2009-12-11T03:06:12.296050 {"title": "Demand relationships for Ireland", "created": {"type": "/type/datetime", "value": "2009-12-11T03:06:12.296050"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:06:12.296050"}, "latest_revision": 1, "key": "/works/OL10517000W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4364939A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10517663W 1 2009-12-11T03:06:18.392449 {"title": "Antecedents and consequences of early school leaving", "created": {"type": "/type/datetime", "value": "2009-12-11T03:06:18.392449"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:06:18.392449"}, "latest_revision": 1, "key": "/works/OL10517663W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4365386A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10517888W 1 2009-12-11T03:06:18.392449 {"title": "A reference book of chemistry", "created": {"type": "/type/datetime", "value": "2009-12-11T03:06:18.392449"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:06:18.392449"}, "latest_revision": 1, "key": "/works/OL10517888W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4365498A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10518103W 1 2009-12-11T03:06:18.392449 {"title": "Suil Dhuv the coiner", "created": {"type": "/type/datetime", "value": "2009-12-11T03:06:18.392449"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:06:18.392449"}, "latest_revision": 1, "key": "/works/OL10518103W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4365612A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10519082W 1 2009-12-11T03:06:22.333464 {"title": "Camaralzaman and the fairy Badoura; or, The bad djinn and the good spirit", "created": {"type": "/type/datetime", "value": "2009-12-11T03:06:22.333464"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:06:22.333464"}, "latest_revision": 1, "key": "/works/OL10519082W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4365918A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10519124W 1 2009-12-11T03:06:22.333464 {"title": "The prompter's box", "created": {"type": "/type/datetime", "value": "2009-12-11T03:06:22.333464"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:06:22.333464"}, "latest_revision": 1, "key": "/works/OL10519124W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4365918A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10519259W 1 2009-12-11T03:06:22.333464 {"title": "The mistletoe bough, or, The fatal chest", "created": {"type": "/type/datetime", "value": "2009-12-11T03:06:22.333464"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:06:22.333464"}, "latest_revision": 1, "key": "/works/OL10519259W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4365943A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1051934W 2 2010-01-17T18:37:35.792336 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:15:47.678257"}, "title": "India's wildlife history", "subject_places": ["India"], "last_modified": {"type": "/type/datetime", "value": "2010-01-17T18:37:35.792336"}, "latest_revision": 2, "key": "/works/OL1051934W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL104827A"}}], "type": {"key": "/type/work"}, "subjects": ["Natural history", "Wildlife conservation"], "revision": 2}
+/type/work /works/OL10519650W 2 2010-01-17T18:37:35.792336 {"title": "The Oxford Shakespeare", "created": {"type": "/type/datetime", "value": "2009-12-11T03:06:26.364773"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-17T18:37:35.792336"}, "latest_revision": 2, "key": "/works/OL10519650W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4366093A"}}], "subject_people": ["William Shakespeare (1564-1616)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10519661W 4 2019-05-15T08:13:13.604923 {"covers": [4601647], "last_modified": {"type": "/type/datetime", "value": "2019-05-15T08:13:13.604923"}, "latest_revision": 4, "key": "/works/OL10519661W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4366093A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T03:06:26.364773"}, "title": "Shakespeare", "subjects": ["Dictionaries, indexes", "Dictionaries", "English Dramatists", "Biography"], "subject_people": ["William Shakespeare (1564-1616)"], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL1051997W 1 2009-12-09T19:53:18.940843 {"title": "Jaya-vijaya", "created": {"type": "/type/datetime", "value": "2009-12-09T19:53:18.940843"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:53:18.940843"}, "latest_revision": 1, "key": "/works/OL1051997W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL104843A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10520183W 1 2009-12-11T03:06:26.364773 {"title": "Virtue the source of pleasure", "created": {"type": "/type/datetime", "value": "2009-12-11T03:06:26.364773"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:06:26.364773"}, "latest_revision": 1, "key": "/works/OL10520183W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4366264A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10520269W 2 2018-03-23T13:45:27.037973 {"title": "De l'exploitation des bois", "created": {"type": "/type/datetime", "value": "2009-12-11T03:06:26.364773"}, "last_modified": {"type": "/type/datetime", "value": "2018-03-23T13:45:27.037973"}, "latest_revision": 2, "key": "/works/OL10520269W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL160013A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL1052074W 1 2009-12-09T19:53:18.940843 {"title": "Madhya ma\u0304t\u0323hera kho[sic]loy\u0307a\u0304r\u0323a", "created": {"type": "/type/datetime", "value": "2009-12-09T19:53:18.940843"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:53:18.940843"}, "latest_revision": 1, "key": "/works/OL1052074W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL104855A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10520872W 1 2009-12-11T03:06:31.037269 {"title": "Manuel des pe lerins de port-Royal des champs", "created": {"type": "/type/datetime", "value": "2009-12-11T03:06:31.037269"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:06:31.037269"}, "latest_revision": 1, "key": "/works/OL10520872W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4366532A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10520W 5 2010-12-04T14:28:11.117943 {"last_modified": {"type": "/type/datetime", "value": "2010-12-04T14:28:11.117943"}, "latest_revision": 5, "key": "/works/OL10520W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL880563A"}}], "created": {"type": "/type/datetime", "value": "2009-10-05T19:20:50.003374"}, "title": "Mad\u012bnatun\u0101 Y\u0101f\u0101 wa-Thawrat 1936", "subject_places": ["Israel) Jaffa (Tel Aviv", "Jaffa (Tel Aviv, Israel)", "Palestine"], "subjects": ["History"], "subject_times": ["Arab Rebellion, 1936-1939"], "type": {"key": "/type/work"}, "revision": 5}
+/type/work /works/OL10521100W 1 2009-12-11T03:06:31.037269 {"title": "Responses", "created": {"type": "/type/datetime", "value": "2009-12-11T03:06:31.037269"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:06:31.037269"}, "latest_revision": 1, "key": "/works/OL10521100W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4366653A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10521682W 2 2017-05-18T20:31:08.210018 {"title": "L' heureux naufrage, tragi-come\u0301die, de Rotrou", "created": {"type": "/type/datetime", "value": "2009-12-11T03:06:36.506681"}, "last_modified": {"type": "/type/datetime", "value": "2017-05-18T20:31:08.210018"}, "latest_revision": 2, "key": "/works/OL10521682W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL43979A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10521877W 1 2009-12-11T03:06:36.506681 {"title": "Remuneration of co-operative... managers, buyers and secretaries", "created": {"type": "/type/datetime", "value": "2009-12-11T03:06:36.506681"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:06:36.506681"}, "latest_revision": 1, "key": "/works/OL10521877W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4366980A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1052199W 3 2010-07-20T12:15:50.436943 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:15:47.678257"}, "title": "Impact evaluation of vegetable development programme in Himachal Pradesh", "subject_places": ["Himachal Pradesh", "India"], "last_modified": {"type": "/type/datetime", "value": "2010-07-20T12:15:50.436943"}, "latest_revision": 3, "key": "/works/OL1052199W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL104886A"}}], "type": {"key": "/type/work"}, "subjects": ["Agriculture", "Economic aspects", "Economic aspects of Agriculture"], "revision": 3}
+/type/work /works/OL10522138W 2 2023-01-01T02:16:45.046701 {"title": "The errand-boy", "key": "/works/OL10522138W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4367088A"}}], "type": {"key": "/type/work"}, "subjects": ["Christian life", "Juvenile fiction", "Diligence", "Glory of God", "Intergenerational relations", "Friendship", "Prayer", "Children", "Conduct of life", "Sunday school literature", "Children's stories, English"], "subject_times": ["19th century"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T03:06:36.506681"}, "last_modified": {"type": "/type/datetime", "value": "2023-01-01T02:16:45.046701"}}
+/type/work /works/OL10522435W 1 2009-12-11T03:06:42.786451 {"title": "Epistolario familiare", "created": {"type": "/type/datetime", "value": "2009-12-11T03:06:42.786451"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:06:42.786451"}, "latest_revision": 1, "key": "/works/OL10522435W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4367240A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10522668W 1 2009-12-11T03:06:42.786451 {"title": "Moi vospominaniya", "created": {"type": "/type/datetime", "value": "2009-12-11T03:06:42.786451"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:06:42.786451"}, "latest_revision": 1, "key": "/works/OL10522668W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4367370A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10522726W 1 2009-12-11T03:06:42.786451 {"title": "Raionnye sovety deputatov trudyashchikhsya v gorodakh", "created": {"type": "/type/datetime", "value": "2009-12-11T03:06:42.786451"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:06:42.786451"}, "latest_revision": 1, "key": "/works/OL10522726W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4367397A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10522843W 1 2009-12-11T03:06:42.786451 {"title": "Pravovye voprosy tekhnicheskoi pomoshchi SSSR inostrannym gosudarstvam i litsenzionnye dogovory", "created": {"type": "/type/datetime", "value": "2009-12-11T03:06:42.786451"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:06:42.786451"}, "latest_revision": 1, "key": "/works/OL10522843W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4367457A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10522939W 1 2009-12-11T03:06:42.786451 {"title": "Sotsiologiya fizicheskoi kul'tury i sporta v SSSR", "created": {"type": "/type/datetime", "value": "2009-12-11T03:06:42.786451"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:06:42.786451"}, "latest_revision": 1, "key": "/works/OL10522939W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4367505A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10523053W 2 2010-01-17T18:42:35.297197 {"title": "Rassvet", "created": {"type": "/type/datetime", "value": "2009-12-11T03:06:42.786451"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-17T18:42:35.297197"}, "latest_revision": 2, "key": "/works/OL10523053W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4367571A"}}], "subject_people": ["F. A. Artem-Sergeev"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10523085W 1 2009-12-11T03:06:42.786451 {"title": "Izbrannye trudy po istorii nauki", "created": {"type": "/type/datetime", "value": "2009-12-11T03:06:42.786451"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:06:42.786451"}, "latest_revision": 1, "key": "/works/OL10523085W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4367591A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10523126W 2 2010-11-21T08:22:56.856349 {"title": "Chort i rechetvortsy", "created": {"type": "/type/datetime", "value": "2009-12-11T03:06:42.786451"}, "last_modified": {"type": "/type/datetime", "value": "2010-11-21T08:22:56.856349"}, "latest_revision": 2, "key": "/works/OL10523126W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4367589A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10523608W 1 2009-12-11T03:06:50.188036 {"title": "On the haemolymph glands of some vertebrates", "created": {"type": "/type/datetime", "value": "2009-12-11T03:06:50.188036"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:06:50.188036"}, "latest_revision": 1, "key": "/works/OL10523608W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4367893A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10524356W 2 2010-01-17T18:42:35.297197 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:06:50.188036"}, "title": "Novy\u0304i\u0306 e\u0301tap v razvitii natsional'ny\u0304kh otnoshenii\u0306 v SSSR", "subject_places": ["Soviet Union"], "last_modified": {"type": "/type/datetime", "value": "2010-01-17T18:42:35.297197"}, "latest_revision": 2, "key": "/works/OL10524356W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4368301A"}}], "subject_times": ["1917-"], "type": {"key": "/type/work"}, "subjects": ["Politics and government", "Minorities"], "revision": 2}
+/type/work /works/OL10524580W 1 2009-12-11T03:06:57.330736 {"title": "O gosudarstvennom byudzhete SSSR na 1984 god i ob ispolnenii gosudarstvennogo byudzheta SSSR za 1982 god...", "created": {"type": "/type/datetime", "value": "2009-12-11T03:06:57.330736"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:06:57.330736"}, "latest_revision": 1, "key": "/works/OL10524580W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4368413A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10524719W 1 2009-12-11T03:06:57.330736 {"title": "The use of zeros to stabilize analytic continuation", "created": {"type": "/type/datetime", "value": "2009-12-11T03:06:57.330736"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:06:57.330736"}, "latest_revision": 1, "key": "/works/OL10524719W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4368495A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1052512W 2 2010-01-17T18:47:44.311675 {"title": "Ent\u0332e R\u0332as\u0323yan d\u0323ayar\u0332i", "created": {"type": "/type/datetime", "value": "2009-12-09T20:16:08.253087"}, "subject_places": ["Soviet Union"], "last_modified": {"type": "/type/datetime", "value": "2010-01-17T18:47:44.311675"}, "latest_revision": 2, "key": "/works/OL1052512W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL104931A"}}], "subject_people": ["E. K. Nayanar (1919-)"], "type": {"key": "/type/work"}, "subjects": ["Travel", "Description and travel"], "revision": 2}
+/type/work /works/OL10525259W 3 2012-07-26T07:06:26.897539 {"title": "Anoichta chartia", "created": {"type": "/type/datetime", "value": "2009-12-11T03:06:57.330736"}, "last_modified": {"type": "/type/datetime", "value": "2012-07-26T07:06:26.897539"}, "latest_revision": 3, "key": "/works/OL10525259W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL3317829A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10525683W 1 2009-12-11T03:07:05.057326 {"title": "Nash dom", "created": {"type": "/type/datetime", "value": "2009-12-11T03:07:05.057326"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:07:05.057326"}, "latest_revision": 1, "key": "/works/OL10525683W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4369119A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10525742W 1 2009-12-11T03:07:05.057326 {"title": "Zastolitsa", "created": {"type": "/type/datetime", "value": "2009-12-11T03:07:05.057326"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:07:05.057326"}, "latest_revision": 1, "key": "/works/OL10525742W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4369144A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10526271W 2 2010-01-17T18:47:44.311675 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:07:05.057326"}, "title": "Tradit\ufe20s\ufe21ionnye krest\u02b9i\ufe20a\ufe21nskie promysly Moldavii v XIX-nachale XX v", "subject_places": ["Moldavian S.S.R."], "last_modified": {"type": "/type/datetime", "value": "2010-01-17T18:47:44.311675"}, "latest_revision": 2, "key": "/works/OL10526271W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4369425A"}}], "type": {"key": "/type/work"}, "subjects": ["Cottage industries", "History"], "revision": 2}
+/type/work /works/OL10526296W 1 2009-12-11T03:07:05.057326 {"title": "Osobennosti mezhdunarodnogo sotsialisticheskogo obobshchestvleniya proizvodstva", "created": {"type": "/type/datetime", "value": "2009-12-11T03:07:05.057326"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:07:05.057326"}, "latest_revision": 1, "key": "/works/OL10526296W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4369444A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10526428W 1 2009-12-11T03:07:05.057326 {"title": "O mezhdunarodnom polozhenii", "created": {"type": "/type/datetime", "value": "2009-12-11T03:07:05.057326"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:07:05.057326"}, "latest_revision": 1, "key": "/works/OL10526428W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4369537A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10526538W 1 2009-12-11T03:07:09.498027 {"title": "Nauchno-tekhnicheskaya revolyutsiya i dialektika", "created": {"type": "/type/datetime", "value": "2009-12-11T03:07:09.498027"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:07:09.498027"}, "latest_revision": 1, "key": "/works/OL10526538W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4369597A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10526574W 1 2009-12-11T03:07:09.498027 {"title": "London Congregational directory and church guide, 1889", "created": {"type": "/type/datetime", "value": "2009-12-11T03:07:09.498027"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:07:09.498027"}, "latest_revision": 1, "key": "/works/OL10526574W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4369612A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10526763W 2 2010-01-17T18:47:44.311675 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:07:09.498027"}, "title": "The immaculate forest", "subject_places": ["Colombia"], "last_modified": {"type": "/type/datetime", "value": "2010-01-17T18:47:44.311675"}, "latest_revision": 2, "key": "/works/OL10526763W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4369694A"}}], "type": {"key": "/type/work"}, "subjects": ["Natural history", "Description and travel"], "revision": 2}
+/type/work /works/OL1052694W 1 2009-12-09T19:53:37.769310 {"title": "Marunn", "created": {"type": "/type/datetime", "value": "2009-12-09T19:53:37.769310"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:53:37.769310"}, "latest_revision": 1, "key": "/works/OL1052694W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL104966A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10527040W 2 2013-09-12T05:28:59.788566 {"title": "Kagtan di berhi", "created": {"type": "/type/datetime", "value": "2009-12-11T03:07:09.498027"}, "last_modified": {"type": "/type/datetime", "value": "2013-09-12T05:28:59.788566"}, "latest_revision": 2, "key": "/works/OL10527040W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5890A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10527136W 1 2009-12-11T03:07:09.498027 {"title": "Bhagat namdev", "created": {"type": "/type/datetime", "value": "2009-12-11T03:07:09.498027"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:07:09.498027"}, "latest_revision": 1, "key": "/works/OL10527136W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4369775A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10527452W 1 2009-12-11T03:07:15.624857 {"title": "Bhai Taroo Singh Shaheed", "created": {"type": "/type/datetime", "value": "2009-12-11T03:07:15.624857"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:07:15.624857"}, "latest_revision": 1, "key": "/works/OL10527452W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4369853A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10527459W 1 2009-12-11T03:07:15.624857 {"title": "Shama te toofan", "created": {"type": "/type/datetime", "value": "2009-12-11T03:07:15.624857"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:07:15.624857"}, "latest_revision": 1, "key": "/works/OL10527459W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4369853A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10527583W 1 2009-12-11T03:07:15.624857 {"title": "Birbal sathe bathamramh", "created": {"type": "/type/datetime", "value": "2009-12-11T03:07:15.624857"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:07:15.624857"}, "latest_revision": 1, "key": "/works/OL10527583W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4369897A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1052806W 2 2010-01-17T18:47:44.311675 {"title": "Da\u0304 Es. El. Bhairappanavara Vam\u0323s\u0301avr\u0325ks\u0323a", "created": {"type": "/type/datetime", "value": "2009-12-09T20:16:08.253087"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-17T18:47:44.311675"}, "latest_revision": 2, "key": "/works/OL1052806W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL104994A"}}], "subject_people": ["Es. El Bhairappanavara (1934-)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL1052819W 1 2009-12-09T19:53:37.769310 {"title": "Su\u0304rya", "created": {"type": "/type/datetime", "value": "2009-12-09T19:53:37.769310"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:53:37.769310"}, "latest_revision": 1, "key": "/works/OL1052819W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL104994A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10528376W 1 2009-12-11T03:07:15.624857 {"title": "Ghazal ghazal ghazal", "created": {"type": "/type/datetime", "value": "2009-12-11T03:07:15.624857"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:07:15.624857"}, "latest_revision": 1, "key": "/works/OL10528376W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4370296A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10528478W 2 2013-09-01T16:16:09.995782 {"title": "Raat da Chehra", "created": {"type": "/type/datetime", "value": "2009-12-11T03:07:21.173439"}, "last_modified": {"type": "/type/datetime", "value": "2013-09-01T16:16:09.995782"}, "latest_revision": 2, "key": "/works/OL10528478W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4575870A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10528552W 1 2009-12-11T03:07:21.173439 {"title": "Te siva balda reha", "created": {"type": "/type/datetime", "value": "2009-12-11T03:07:21.173439"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:07:21.173439"}, "latest_revision": 1, "key": "/works/OL10528552W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4370359A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10530307W 1 2009-12-11T03:07:25.877997 {"title": "Call of the mountains", "created": {"type": "/type/datetime", "value": "2009-12-11T03:07:25.877997"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:07:25.877997"}, "latest_revision": 1, "key": "/works/OL10530307W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4371098A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10530627W 1 2009-12-11T03:07:30.853333 {"title": "Early English dissenters in the light of recent research (1550-1641)", "created": {"type": "/type/datetime", "value": "2009-12-11T03:07:30.853333"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:07:30.853333"}, "latest_revision": 1, "key": "/works/OL10530627W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4371177A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1053088W 3 2010-04-28T07:13:24.349481 {"title": "India's kathak dance, past present, future", "created": {"type": "/type/datetime", "value": "2009-12-09T20:16:08.253087"}, "covers": [2267786], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:13:24.349481"}, "latest_revision": 3, "key": "/works/OL1053088W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL105049A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10530925W 1 2009-12-11T03:07:30.853333 {"title": "From chaos to the charter", "created": {"type": "/type/datetime", "value": "2009-12-11T03:07:30.853333"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:07:30.853333"}, "latest_revision": 1, "key": "/works/OL10530925W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4371270A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10530938W 2 2010-01-17T18:47:44.311675 {"title": "Hogarth's works", "created": {"type": "/type/datetime", "value": "2009-12-11T03:07:30.853333"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-17T18:47:44.311675"}, "latest_revision": 2, "key": "/works/OL10530938W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4371274A"}}], "subject_people": ["William Hogarth (1697-1764)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10531619W 1 2009-12-11T03:07:36.541644 {"title": "Craft and contemporary culture", "created": {"type": "/type/datetime", "value": "2009-12-11T03:07:36.541644"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:07:36.541644"}, "latest_revision": 1, "key": "/works/OL10531619W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4371605A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10531867W 2 2010-01-17T18:52:43.728366 {"title": "Materials and creativity", "created": {"type": "/type/datetime", "value": "2009-12-11T03:07:36.541644"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-17T18:52:43.728366"}, "latest_revision": 2, "key": "/works/OL10531867W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4371683A"}}], "subject_people": ["Salvatore Ferragamo"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10531935W 2 2010-08-17T22:37:59.922423 {"subtitle": "church and state in Hungary", "title": "\"Next time - always next time\"", "created": {"type": "/type/datetime", "value": "2009-12-11T03:07:36.541644"}, "last_modified": {"type": "/type/datetime", "value": "2010-08-17T22:37:59.922423"}, "latest_revision": 2, "key": "/works/OL10531935W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4371727A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL1053228W 1 2009-12-09T19:53:37.769310 {"title": "Mana ma\u0304n\u0310ge Indradhanusha", "created": {"type": "/type/datetime", "value": "2009-12-09T19:53:37.769310"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:53:37.769310"}, "latest_revision": 1, "key": "/works/OL1053228W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL105088A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10532313W 1 2009-12-11T03:07:36.541644 {"title": "Pricing policy and innovation in the meat and fish paste industry", "created": {"type": "/type/datetime", "value": "2009-12-11T03:07:36.541644"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:07:36.541644"}, "latest_revision": 1, "key": "/works/OL10532313W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4371910A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10532541W 1 2009-12-11T03:07:43.401860 {"title": "Resource centres in Avon secondary schools", "created": {"type": "/type/datetime", "value": "2009-12-11T03:07:43.401860"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:07:43.401860"}, "latest_revision": 1, "key": "/works/OL10532541W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4372016A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10532551W 1 2009-12-11T03:07:43.401860 {"title": "Animadversions on the unchristian conduct of an independent community, towards one of their members; in a controversy with reference to the doctrine of the Trinity, in three letters. To which is added, a postscript. By Richard Smart", "created": {"type": "/type/datetime", "value": "2009-12-11T03:07:43.401860"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:07:43.401860"}, "latest_revision": 1, "key": "/works/OL10532551W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4372024A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10533466W 1 2009-12-11T03:07:48.994642 {"title": "Children's motor responses to precision KR", "created": {"type": "/type/datetime", "value": "2009-12-11T03:07:48.994642"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:07:48.994642"}, "latest_revision": 1, "key": "/works/OL10533466W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4372597A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10533576W 2 2022-09-26T16:22:34.709421 {"title": "The vision of Asia", "key": "/works/OL10533576W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1805300A"}}], "type": {"key": "/type/work"}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T03:07:48.994642"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-26T16:22:34.709421"}}
+/type/work /works/OL10534110W 2 2010-01-17T18:52:43.728366 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:07:48.994642"}, "title": "Design and planning 2", "last_modified": {"type": "/type/datetime", "value": "2010-01-17T18:52:43.728366"}, "latest_revision": 2, "key": "/works/OL10534110W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4372896A"}}], "type": {"key": "/type/work"}, "subjects": ["Computer graphics", "Design"], "revision": 2}
+/type/work /works/OL10534234W 1 2009-12-11T03:07:48.994642 {"title": "Novy e znacheniya stary kh slov", "created": {"type": "/type/datetime", "value": "2009-12-11T03:07:48.994642"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:07:48.994642"}, "latest_revision": 1, "key": "/works/OL10534234W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4372966A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10534388W 1 2009-12-11T03:07:48.994642 {"title": "Hazards in households noted in a Southampton homecheck scheme", "created": {"type": "/type/datetime", "value": "2009-12-11T03:07:48.994642"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:07:48.994642"}, "latest_revision": 1, "key": "/works/OL10534388W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4373012A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10534401W 1 2009-12-11T03:07:48.994642 {"title": "Decisions under uncertainty", "created": {"type": "/type/datetime", "value": "2009-12-11T03:07:48.994642"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:07:48.994642"}, "latest_revision": 1, "key": "/works/OL10534401W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4373018A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10534612W 1 2009-12-11T03:07:53.701778 {"title": "Romantic Kinver and Enville", "created": {"type": "/type/datetime", "value": "2009-12-11T03:07:53.701778"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:07:53.701778"}, "latest_revision": 1, "key": "/works/OL10534612W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4373144A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10535018W 1 2009-12-11T03:07:53.701778 {"title": "The amazing cake", "created": {"type": "/type/datetime", "value": "2009-12-11T03:07:53.701778"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:07:53.701778"}, "latest_revision": 1, "key": "/works/OL10535018W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4373326A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10535115W 1 2009-12-11T03:07:53.701778 {"title": "A trip to Egypt", "created": {"type": "/type/datetime", "value": "2009-12-11T03:07:53.701778"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:07:53.701778"}, "latest_revision": 1, "key": "/works/OL10535115W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4373326A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10535164W 1 2009-12-11T03:07:53.701778 {"title": "Motivation at work", "created": {"type": "/type/datetime", "value": "2009-12-11T03:07:53.701778"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:07:53.701778"}, "latest_revision": 1, "key": "/works/OL10535164W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4373335A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10535298W 2 2010-01-17T18:57:51.767083 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:07:53.701778"}, "title": "Modern office management", "last_modified": {"type": "/type/datetime", "value": "2010-01-17T18:57:51.767083"}, "latest_revision": 2, "key": "/works/OL10535298W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4373389A"}}], "type": {"key": "/type/work"}, "subjects": ["Office management"], "revision": 2}
+/type/work /works/OL10535481W 3 2021-10-04T04:15:02.649248 {"title": "Quiller Balalaika", "key": "/works/OL10535481W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL580637A"}}], "type": {"key": "/type/work"}, "subjects": ["Fiction, thrillers, espionage", "Russia (federation), fiction", "Quiller (fictitious character : hall), fiction"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T03:07:57.844163"}, "last_modified": {"type": "/type/datetime", "value": "2021-10-04T04:15:02.649248"}}
+/type/work /works/OL10535663W 1 2009-12-11T03:07:57.844163 {"title": "Mandingo", "created": {"type": "/type/datetime", "value": "2009-12-11T03:07:57.844163"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:07:57.844163"}, "latest_revision": 1, "key": "/works/OL10535663W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4373495A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10535697W 1 2009-12-11T03:07:57.844163 {"title": "Brer Rabbit and Mr Fox", "created": {"type": "/type/datetime", "value": "2009-12-11T03:07:57.844163"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:07:57.844163"}, "latest_revision": 1, "key": "/works/OL10535697W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4373519A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10535714W 8 2021-10-04T06:55:53.870397 {"title": "\"Ask mamma\", or, The richest commoner in England", "covers": [8543803], "key": "/works/OL10535714W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL322919A"}}], "type": {"key": "/type/work"}, "subjects": ["England, fiction", "Fiction, historical, general"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2009-12-11T03:07:57.844163"}, "last_modified": {"type": "/type/datetime", "value": "2021-10-04T06:55:53.870397"}}
+/type/work /works/OL10535833W 1 2009-12-11T03:07:57.844163 {"title": "The dividing stream", "created": {"type": "/type/datetime", "value": "2009-12-11T03:07:57.844163"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:07:57.844163"}, "latest_revision": 1, "key": "/works/OL10535833W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4373565A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10535993W 2 2011-05-08T17:24:49.403708 {"title": "Some decisive battles of the world, from Marathon to Waterloo", "created": {"type": "/type/datetime", "value": "2009-12-11T03:07:57.844163"}, "last_modified": {"type": "/type/datetime", "value": "2011-05-08T17:24:49.403708"}, "latest_revision": 2, "key": "/works/OL10535993W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL175361A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10536286W 1 2009-12-11T03:07:57.844163 {"title": "Basic design", "created": {"type": "/type/datetime", "value": "2009-12-11T03:07:57.844163"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:07:57.844163"}, "latest_revision": 1, "key": "/works/OL10536286W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4373731A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10537901W 1 2009-12-11T03:08:05.503783 {"title": "Both sides of the case", "created": {"type": "/type/datetime", "value": "2009-12-11T03:08:05.503783"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:08:05.503783"}, "latest_revision": 1, "key": "/works/OL10537901W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4374160A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10538315W 1 2009-12-11T03:08:05.503783 {"title": "Renault Master 1995c.c. F.W.D. and R.W.D. to 1986 owners repair manual", "created": {"type": "/type/datetime", "value": "2009-12-11T03:08:05.503783"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:08:05.503783"}, "latest_revision": 1, "key": "/works/OL10538315W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4374287A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10538796W 2 2010-01-17T18:57:51.767083 {"title": "Victor Hugo a l'oeuvre", "created": {"type": "/type/datetime", "value": "2009-12-11T03:08:10.860682"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-17T18:57:51.767083"}, "latest_revision": 2, "key": "/works/OL10538796W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4374451A"}}], "subject_people": ["Victor Hugo (1802-1885)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10538915W 2 2010-01-17T18:57:51.767083 {"title": "Krankheit, Verbrechen und ku nstlerisches Schaffen bei Thomas Mann", "created": {"type": "/type/datetime", "value": "2009-12-11T03:08:10.860682"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-17T18:57:51.767083"}, "latest_revision": 2, "key": "/works/OL10538915W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4374497A"}}], "subject_people": ["Thomas Mann (1875-1955)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10538931W 4 2011-11-06T03:23:45.983499 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:08:10.860682"}, "subtitle": "e tude litte raire", "key": "/works/OL10538931W", "title": "La poe sie de Ste phane Mallarme", "subject_people": ["St\u00e9phane Mallarm\u00e9 (1842-1898)"], "latest_revision": 4, "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1173756A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2011-11-06T03:23:45.983499"}, "revision": 4}
+/type/work /works/OL10539345W 3 2010-12-03T12:23:40.525905 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T12:23:40.525905"}, "latest_revision": 3, "key": "/works/OL10539345W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4374737A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T03:08:10.860682"}, "title": "Edgar Poe et les premiers symbolistes fran\u00e7ais", "subjects": ["American and French", "Comparative Literature", "Criticism and interpretation", "French and American", "French poetry", "History and criticism", "Literature, Comparative", "Symbolism in literature"], "subject_people": ["Edgar Allan Poe (1809-1849)"], "subject_times": ["19th century"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10539392W 2 2019-10-06T21:10:16.787590 {"title": "Homeric Dictionary", "created": {"type": "/type/datetime", "value": "2009-12-11T03:08:10.860682"}, "last_modified": {"type": "/type/datetime", "value": "2019-10-06T21:10:16.787590"}, "latest_revision": 2, "key": "/works/OL10539392W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5994669A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10539491W 3 2010-12-03T18:30:13.474945 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T18:30:13.474945"}, "title": "Evolution of the shell structure of articulate brachiopods", "created": {"type": "/type/datetime", "value": "2009-12-11T03:08:14.773447"}, "subjects": ["Articulata, Fossil", "Fossil Articulata"], "latest_revision": 3, "key": "/works/OL10539491W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4374801A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10539566W 1 2009-12-11T03:08:14.773447 {"title": "Townscape - a study of south-west Hammersmith", "created": {"type": "/type/datetime", "value": "2009-12-11T03:08:14.773447"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:08:14.773447"}, "latest_revision": 1, "key": "/works/OL10539566W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4374857A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10540537W 2 2011-01-01T20:51:54.883869 {"title": "Thec ase of the midnight chess game", "created": {"type": "/type/datetime", "value": "2009-12-11T03:08:21.247919"}, "last_modified": {"type": "/type/datetime", "value": "2011-01-01T20:51:54.883869"}, "latest_revision": 2, "key": "/works/OL10540537W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1210484A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10540909W 1 2009-12-11T03:08:21.247919 {"title": "Where the wild apples grow", "created": {"type": "/type/datetime", "value": "2009-12-11T03:08:21.247919"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:08:21.247919"}, "latest_revision": 1, "key": "/works/OL10540909W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4375317A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10541020W 5 2022-05-14T13:05:17.405987 {"subtitle": "a constructionist view.", "title": "The three-dimensional organization", "covers": [6275819], "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL26492A"}}], "key": "/works/OL10541020W", "type": {"key": "/type/work"}, "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2009-12-11T03:08:21.247919"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-14T13:05:17.405987"}}
+/type/work /works/OL10541176W 1 2009-12-11T03:08:21.247919 {"title": "Optymalizacja produkcji i handlu zagranicznego w przedsie \u00b7biorstwie i zjednoczeniu", "created": {"type": "/type/datetime", "value": "2009-12-11T03:08:21.247919"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:08:21.247919"}, "latest_revision": 1, "key": "/works/OL10541176W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4375471A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10541272W 1 2009-12-11T03:08:21.247919 {"title": "Uroki vneklassnogo chteniya v 1-3 klassakh natsional'nykh shkol RSFSR", "created": {"type": "/type/datetime", "value": "2009-12-11T03:08:21.247919"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:08:21.247919"}, "latest_revision": 1, "key": "/works/OL10541272W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4375552A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1054132W 4 2020-12-03T10:43:43.223626 {"title": "Bhu\u0304takha\u0304mbaca\u0304 lokalad\u0323ha\u0304", "subject_places": ["India", "Goa (State)"], "key": "/works/OL1054132W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL105318A"}}], "type": {"key": "/type/work"}, "subjects": ["Environmental aspects", "Ecology", "Pollution", "Environmental aspects of Pollution"], "description": {"type": "/type/text", "value": "Account of resistance by environmentalists from a village in Goa, against establishment of a polluting factory by a multinational company."}, "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-09T20:16:39.809461"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-03T10:43:43.223626"}}
+/type/work /works/OL10541337W 2 2010-01-17T19:02:46.342001 {"title": "Captain Owen of the Africa survey", "created": {"type": "/type/datetime", "value": "2009-12-11T03:08:21.247919"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-17T19:02:46.342001"}, "latest_revision": 2, "key": "/works/OL10541337W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4375605A"}}], "subject_people": ["William Fitz William Owen (1774-1857)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10541574W 1 2009-12-11T03:08:27.841406 {"title": "Fiziologiya zhivotnykh", "created": {"type": "/type/datetime", "value": "2009-12-11T03:08:27.841406"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:08:27.841406"}, "latest_revision": 1, "key": "/works/OL10541574W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4375748A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1054198W 1 2009-12-09T19:54:00.172669 {"title": "Nvay\u02bb u\u0304\u02ba mvan\u02bb mui\u02b9 khyac\u02bb thvat\u0323\u02bb tan\u0307\u02bb san\u0303n\u0303\u02bb", "created": {"type": "/type/datetime", "value": "2009-12-09T19:54:00.172669"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:54:00.172669"}, "latest_revision": 1, "key": "/works/OL1054198W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL105341A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10542021W 1 2009-12-11T03:08:27.841406 {"title": "Compendio de la fortuna", "created": {"type": "/type/datetime", "value": "2009-12-11T03:08:27.841406"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:08:27.841406"}, "latest_revision": 1, "key": "/works/OL10542021W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4375993A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10542435W 1 2009-12-11T03:08:27.841406 {"title": "Osnovnye cherty burzhuaznogo grazhdanskogo protsessual'nogo prava", "created": {"type": "/type/datetime", "value": "2009-12-11T03:08:27.841406"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:08:27.841406"}, "latest_revision": 1, "key": "/works/OL10542435W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4376212A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10542633W 3 2010-12-03T17:52:40.732530 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T17:52:40.732530"}, "latest_revision": 3, "key": "/works/OL10542633W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4376340A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T03:08:40.521690"}, "title": "Pervy\u01d0 Sovet proletarsko\u01d0 diktatury", "subject_places": ["Saint Petersburg (Russia)"], "subjects": ["History", "Petrogradski\u012d sovet rabochikh i krasnoarme\u012dskikh deputatov"], "subject_times": ["Revolution, 1917-1921"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10543091W 1 2009-12-11T03:08:40.521690 {"title": "Sochetanie urovnya oplaty truda i obshchestvennykh fondov potrebleniya v kolkhozakh", "created": {"type": "/type/datetime", "value": "2009-12-11T03:08:40.521690"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:08:40.521690"}, "latest_revision": 1, "key": "/works/OL10543091W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4376634A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10543551W 1 2009-12-11T03:08:46.264419 {"title": "U.S. inverstment in Scotland", "created": {"type": "/type/datetime", "value": "2009-12-11T03:08:46.264419"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:08:46.264419"}, "latest_revision": 1, "key": "/works/OL10543551W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4376915A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10543876W 2 2010-01-17T19:07:44.916744 {"title": "William Shakespeare", "created": {"type": "/type/datetime", "value": "2009-12-11T03:08:46.264419"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-17T19:07:44.916744"}, "latest_revision": 2, "key": "/works/OL10543876W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4377064A"}}], "subject_people": ["William Shakespeare (1564-1616)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10543950W 2 2010-01-17T19:07:44.916744 {"title": "An English tribute to the Emperor Francis Joseph", "created": {"type": "/type/datetime", "value": "2009-12-11T03:08:46.264419"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-17T19:07:44.916744"}, "latest_revision": 2, "key": "/works/OL10543950W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4377110A"}}], "subject_people": ["Franz Joseph I Emperor of Austria (1830-1916)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10544443W 1 2009-12-11T03:08:46.264419 {"title": "Classical business cycles for G7 and European countries", "created": {"type": "/type/datetime", "value": "2009-12-11T03:08:46.264419"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:08:46.264419"}, "latest_revision": 1, "key": "/works/OL10544443W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4377378A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10545196W 1 2009-12-11T03:08:51.304767 {"title": "Hammersmith riverside", "created": {"type": "/type/datetime", "value": "2009-12-11T03:08:51.304767"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:08:51.304767"}, "latest_revision": 1, "key": "/works/OL10545196W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4377750A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10545244W 5 2022-10-17T03:59:58.772461 {"subjects": ["Neuroses", "Neurotic Disorders", "Trouble nevrotique", "Klassifikation", "Classification", "Nevroses", "Neurose", "Neuroses, diagnosis"], "key": "/works/OL10545244W", "title": "Classification of neurosis", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4377764A"}}], "type": {"key": "/type/work"}, "covers": [4084472], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2009-12-11T03:08:51.304767"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-17T03:59:58.772461"}}
+/type/work /works/OL10545565W 2 2010-12-06T07:42:16.960014 {"title": "Ronald Firbank", "created": {"type": "/type/datetime", "value": "2009-12-11T03:08:57.758878"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-06T07:42:16.960014"}, "latest_revision": 2, "key": "/works/OL10545565W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4377872A"}}], "subject_people": ["Ronald Firbank (1886-1926)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10545855W 2 2010-01-17T19:07:44.916744 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:08:57.758878"}, "title": "Getting your message across", "subject_places": ["Great Britain"], "last_modified": {"type": "/type/datetime", "value": "2010-01-17T19:07:44.916744"}, "latest_revision": 2, "key": "/works/OL10545855W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4378028A"}}], "type": {"key": "/type/work"}, "subjects": ["Publicity", "Community organization"], "revision": 2}
+/type/work /works/OL10545993W 2 2010-01-17T19:07:44.916744 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:08:57.758878"}, "title": "The role and educational needs of occupational health nurses", "subject_places": ["Great Britain"], "last_modified": {"type": "/type/datetime", "value": "2010-01-17T19:07:44.916744"}, "latest_revision": 2, "key": "/works/OL10545993W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4378069A"}}], "type": {"key": "/type/work"}, "subjects": ["Industrial nursing", "Study and teaching"], "revision": 2}
+/type/work /works/OL10546120W 1 2009-12-11T03:08:57.758878 {"title": "Solar collector performance prediction from solar simulator tests", "created": {"type": "/type/datetime", "value": "2009-12-11T03:08:57.758878"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:08:57.758878"}, "latest_revision": 1, "key": "/works/OL10546120W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4378146A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10546282W 1 2009-12-11T03:08:57.758878 {"title": "Brainstorming in an R & D environment (1969-72)", "created": {"type": "/type/datetime", "value": "2009-12-11T03:08:57.758878"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:08:57.758878"}, "latest_revision": 1, "key": "/works/OL10546282W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4378251A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10546910W 1 2009-12-11T03:09:02.717467 {"title": "40 let GDR", "created": {"type": "/type/datetime", "value": "2009-12-11T03:09:02.717467"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:09:02.717467"}, "latest_revision": 1, "key": "/works/OL10546910W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4378528A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10546958W 1 2009-12-11T03:09:02.717467 {"title": "Classes and class struggle in Africa", "created": {"type": "/type/datetime", "value": "2009-12-11T03:09:02.717467"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:09:02.717467"}, "latest_revision": 1, "key": "/works/OL10546958W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4378538A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10546967W 1 2009-12-11T03:09:02.717467 {"title": "Le de veloppement du capitalisme en Co te d'Ivoire", "created": {"type": "/type/datetime", "value": "2009-12-11T03:09:02.717467"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:09:02.717467"}, "latest_revision": 1, "key": "/works/OL10546967W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4378538A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10547132W 1 2009-12-11T03:09:02.717467 {"title": "Worcestershire roads", "created": {"type": "/type/datetime", "value": "2009-12-11T03:09:02.717467"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:09:02.717467"}, "latest_revision": 1, "key": "/works/OL10547132W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4378574A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10547261W 4 2019-12-03T19:45:08.676720 {"description": {"type": "/type/text", "value": "**The Daily Express: By Neil Clark PUBLISHED: 15:17, Sat, Sep 24, 2016 | UPDATED: 16:02, Sat, Sep 24, 2016**\r\n\r\nThe nation's favourite cartoonist: **A tribute to Ronald 'Carl' Giles.** In its 116-year history, many famous names have written for the Daily Express. But arguably the newspaper\u2019s most popular contributor has not been a writer but a cartoonist. Next week marks the centenary of the birth of Ronald \u201cCarl\u201d Giles, the modest but hugely talented man whose cartoons were a mainstay of the Express Newspaper titles for almost 50 years. \r\n\r\nHis first work for the Daily Express appeared during the Second World War, his last cartoon was published in our sister paper the Sunday Express in 1991 when John Major was prime minister. \r\nGiles\u2019 characters were instantly recognizable and loved by millions, especially his formidable, spiky-haired Grandma. Annuals of his work were first published in 1946 and have featured regularly in the Christmas bestseller lists. \u201cI think Giles is the funniest cartoonist in the world,\u201d wrote comedian Tommy Cooper in his introduction to the 29th Giles collection in 1975."}, "last_modified": {"type": "/type/datetime", "value": "2019-12-03T19:45:08.676720"}, "title": "GILES 'Sunday Express' & 'Daily Express' Cartoons", "created": {"type": "/type/datetime", "value": "2009-12-11T03:09:02.717467"}, "subject_places": ["Paulton", "Bristol", "London"], "subjects": ["GILES Britain", "British", "Satire", "Wit", "Humor", "Cartoons", "Comics", "Comic strips", "Caricatures", "Pictorial", "Import", "Newspapers"], "subject_people": ["British"], "key": "/works/OL10547261W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL7767568A"}}], "latest_revision": 4, "subject_times": ["1946+"], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL10547541W 1 2009-12-11T03:09:10.973575 {"title": "Grade stresses for structural laminated timber", "created": {"type": "/type/datetime", "value": "2009-12-11T03:09:10.973575"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:09:10.973575"}, "latest_revision": 1, "key": "/works/OL10547541W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4378767A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10548143W 1 2009-12-11T03:09:10.973575 {"title": "Economic geography of India", "created": {"type": "/type/datetime", "value": "2009-12-11T03:09:10.973575"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:09:10.973575"}, "latest_revision": 1, "key": "/works/OL10548143W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4379032A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10548152W 1 2009-12-11T03:09:10.973575 {"title": "Concise geography of China", "created": {"type": "/type/datetime", "value": "2009-12-11T03:09:10.973575"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:09:10.973575"}, "latest_revision": 1, "key": "/works/OL10548152W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4379037A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10548777W 1 2009-12-11T03:09:16.525091 {"title": "Higher cognitive questioning", "created": {"type": "/type/datetime", "value": "2009-12-11T03:09:16.525091"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:09:16.525091"}, "latest_revision": 1, "key": "/works/OL10548777W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4379333A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10548786W 1 2009-12-11T03:09:16.525091 {"title": "The right way to tape record", "created": {"type": "/type/datetime", "value": "2009-12-11T03:09:16.525091"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:09:16.525091"}, "latest_revision": 1, "key": "/works/OL10548786W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4379338A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10548979W 1 2009-12-11T03:09:16.525091 {"title": "Church & state", "created": {"type": "/type/datetime", "value": "2009-12-11T03:09:16.525091"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:09:16.525091"}, "latest_revision": 1, "key": "/works/OL10548979W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4379417A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10549223W 2 2010-09-08T21:56:38.429720 {"title": "The pyschological attitude of early Buddhist philosophy, and its systematic representation according to Abhidhamma tradition", "created": {"type": "/type/datetime", "value": "2009-12-11T03:09:16.525091"}, "last_modified": {"type": "/type/datetime", "value": "2010-09-08T21:56:38.429720"}, "latest_revision": 2, "key": "/works/OL10549223W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL3107165A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10549564W 1 2009-12-11T03:09:22.893308 {"title": "Hands up!", "created": {"type": "/type/datetime", "value": "2009-12-11T03:09:22.893308"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:09:22.893308"}, "latest_revision": 1, "key": "/works/OL10549564W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4379676A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10550037W 1 2009-12-11T03:09:22.893308 {"title": "The importance of commercial trade - a review of strategies employed by halls of residences in the response to reduced central funding", "created": {"type": "/type/datetime", "value": "2009-12-11T03:09:22.893308"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:09:22.893308"}, "latest_revision": 1, "key": "/works/OL10550037W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4379911A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10550074W 2 2010-01-17T19:12:43.414562 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:09:22.893308"}, "title": "Draft health buildings evaluation manual", "subject_places": ["Great Britain"], "last_modified": {"type": "/type/datetime", "value": "2010-01-17T19:12:43.414562"}, "latest_revision": 2, "key": "/works/OL10550074W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4379927A"}}], "type": {"key": "/type/work"}, "subjects": ["Design and construction", "Medical centers", "Hospitals"], "revision": 2}
+/type/work /works/OL10550407W 1 2009-12-11T03:09:22.893308 {"title": "How to select and care for serviceware, textiles, cleaning compounds", "created": {"type": "/type/datetime", "value": "2009-12-11T03:09:22.893308"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:09:22.893308"}, "latest_revision": 1, "key": "/works/OL10550407W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4380102A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10550505W 1 2009-12-11T03:09:30.207038 {"title": "Histoire de la pense e ge ographique en France (1872-1969)", "created": {"type": "/type/datetime", "value": "2009-12-11T03:09:30.207038"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:09:30.207038"}, "latest_revision": 1, "key": "/works/OL10550505W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4380172A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10550592W 1 2009-12-11T03:09:30.207038 {"title": "Mathematical foundations of the calculus of probability", "created": {"type": "/type/datetime", "value": "2009-12-11T03:09:30.207038"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:09:30.207038"}, "latest_revision": 1, "key": "/works/OL10550592W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4380220A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10550637W 1 2009-12-11T03:09:30.207038 {"title": "Use of redundant church buildings", "created": {"type": "/type/datetime", "value": "2009-12-11T03:09:30.207038"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:09:30.207038"}, "latest_revision": 1, "key": "/works/OL10550637W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4380243A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10550640W 2 2010-12-03T13:10:18.312574 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:10:18.312574"}, "title": "New developments in scientific documentation", "created": {"type": "/type/datetime", "value": "2009-12-11T03:09:30.207038"}, "subjects": ["Abstracting and indexing", "Documentation", "Information services", "Science"], "latest_revision": 2, "key": "/works/OL10550640W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4380246A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL1055077W 3 2020-12-03T10:46:00.738249 {"title": "Kohomba\u0304 kam-ka\u0304riyen hel\u0323ivana sa\u0306n\u0307gavun\u0323u yat\u0323agiya\u0304va", "subject_places": ["Sri Lanka"], "key": "/works/OL1055077W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL105503A"}}], "type": {"key": "/type/work"}, "subjects": ["Social life and customs", "Folklore"], "description": {"type": "/type/text", "value": "Folk rituals performed in ancient Sri Lanka."}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-09T20:17:04.012898"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-03T10:46:00.738249"}}
+/type/work /works/OL10550927W 1 2009-12-11T03:09:30.207038 {"title": "Personal financial services fees survey", "created": {"type": "/type/datetime", "value": "2009-12-11T03:09:30.207038"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:09:30.207038"}, "latest_revision": 1, "key": "/works/OL10550927W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4380423A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10550966W 1 2009-12-11T03:09:30.207038 {"title": "Rural rights", "created": {"type": "/type/datetime", "value": "2009-12-11T03:09:30.207038"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:09:30.207038"}, "latest_revision": 1, "key": "/works/OL10550966W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4380447A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10551726W 1 2009-12-11T03:09:37.004588 {"title": "Aspects of the theory of risk-bearing", "created": {"type": "/type/datetime", "value": "2009-12-11T03:09:37.004588"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:09:37.004588"}, "latest_revision": 1, "key": "/works/OL10551726W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4380917A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10552277W 2 2010-01-17T19:17:31.201180 {"title": "Brawny Wycherley", "created": {"type": "/type/datetime", "value": "2009-12-11T03:09:37.004588"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-17T19:17:31.201180"}, "latest_revision": 2, "key": "/works/OL10552277W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4381233A"}}], "subject_people": ["William Wycherley (1640?-1716)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10552502W 2 2013-06-03T04:15:07.056779 {"title": "The two bishops", "created": {"type": "/type/datetime", "value": "2009-12-11T03:09:43.273206"}, "last_modified": {"type": "/type/datetime", "value": "2013-06-03T04:15:07.056779"}, "latest_revision": 2, "key": "/works/OL10552502W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1165489A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10553258W 3 2012-11-28T11:20:13.242966 {"title": "Mathematics through experience", "created": {"type": "/type/datetime", "value": "2009-12-11T03:09:43.273206"}, "last_modified": {"type": "/type/datetime", "value": "2012-11-28T11:20:13.242966"}, "latest_revision": 3, "key": "/works/OL10553258W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4381802A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10553432W 1 2009-12-11T03:09:43.273206 {"title": "Student criticism", "created": {"type": "/type/datetime", "value": "2009-12-11T03:09:43.273206"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:09:43.273206"}, "latest_revision": 1, "key": "/works/OL10553432W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4381881A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10553526W 1 2009-12-11T03:09:48.649200 {"title": "The North West", "created": {"type": "/type/datetime", "value": "2009-12-11T03:09:48.649200"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:09:48.649200"}, "latest_revision": 1, "key": "/works/OL10553526W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4381927A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10553561W 1 2009-12-11T03:09:48.649200 {"title": "Preference proximity and anonymous social choice", "created": {"type": "/type/datetime", "value": "2009-12-11T03:09:48.649200"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:09:48.649200"}, "latest_revision": 1, "key": "/works/OL10553561W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4381945A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10553579W 1 2009-12-11T03:09:48.649200 {"title": "Lubricant additives", "created": {"type": "/type/datetime", "value": "2009-12-11T03:09:48.649200"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:09:48.649200"}, "latest_revision": 1, "key": "/works/OL10553579W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4381954A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10554167W 1 2009-12-11T03:09:48.649200 {"title": "Asian languages in Birmingham", "created": {"type": "/type/datetime", "value": "2009-12-11T03:09:48.649200"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:09:48.649200"}, "latest_revision": 1, "key": "/works/OL10554167W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4382257A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10554417W 2 2010-01-17T19:17:31.201180 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:09:48.649200"}, "title": "Churches in fellowship", "subject_places": ["England"], "last_modified": {"type": "/type/datetime", "value": "2010-01-17T19:17:31.201180"}, "latest_revision": 2, "key": "/works/OL10554417W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4382349A"}}], "type": {"key": "/type/work"}, "subjects": ["Local church councils"], "revision": 2}
+/type/work /works/OL10554569W 2 2010-01-17T19:17:31.201180 {"title": "'The tempest'", "created": {"type": "/type/datetime", "value": "2009-12-11T03:09:55.164138"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-17T19:17:31.201180"}, "latest_revision": 2, "key": "/works/OL10554569W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4382404A"}}], "subject_people": ["William Shakespeare (1564-1616)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10554914W 2 2010-01-17T19:22:32.918028 {"title": "Love without wings", "created": {"type": "/type/datetime", "value": "2009-12-11T03:09:55.164138"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-17T19:22:32.918028"}, "latest_revision": 2, "key": "/works/OL10554914W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4382564A"}}], "subject_people": ["George Gordon Byron Byron Baron (1788-1824)", "Elizabeth Bridget Pigot (1783-1866)"], "type": {"key": "/type/work"}, "subjects": ["Relationship with women"], "revision": 2}
+/type/work /works/OL10554950W 1 2009-12-11T03:09:55.164138 {"title": "Capital gains tax", "created": {"type": "/type/datetime", "value": "2009-12-11T03:09:55.164138"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:09:55.164138"}, "latest_revision": 1, "key": "/works/OL10554950W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4382585A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1055502W 4 2020-12-03T10:47:33.806132 {"title": "Best Jain stories", "key": "/works/OL1055502W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL105616A"}}], "type": {"key": "/type/work"}, "subjects": ["Jaina ethics", "Legends, Jaina", "Jaina Legends", "Jaina legends"], "description": {"type": "/type/text", "value": "Jaina ethical stories."}, "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-09T20:17:28.498971"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-03T10:47:33.806132"}}
+/type/work /works/OL10555315W 1 2009-12-11T03:09:55.164138 {"title": "Poems", "created": {"type": "/type/datetime", "value": "2009-12-11T03:09:55.164138"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:09:55.164138"}, "latest_revision": 1, "key": "/works/OL10555315W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4382797A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10555849W 1 2009-12-11T03:10:02.099943 {"title": "Future television systems", "created": {"type": "/type/datetime", "value": "2009-12-11T03:10:02.099943"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:10:02.099943"}, "latest_revision": 1, "key": "/works/OL10555849W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4383179A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10556044W 1 2009-12-11T03:10:02.099943 {"title": "An essay on absenteeism", "created": {"type": "/type/datetime", "value": "2009-12-11T03:10:02.099943"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:10:02.099943"}, "latest_revision": 1, "key": "/works/OL10556044W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4383269A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10556165W 1 2009-12-11T03:10:02.099943 {"title": "Precautionary saving", "created": {"type": "/type/datetime", "value": "2009-12-11T03:10:02.099943"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:10:02.099943"}, "latest_revision": 1, "key": "/works/OL10556165W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4383319A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10556225W 1 2009-12-11T03:10:02.099943 {"title": "Study of the effects of new information technology on the less-favoured regions of the Community", "created": {"type": "/type/datetime", "value": "2009-12-11T03:10:02.099943"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:10:02.099943"}, "latest_revision": 1, "key": "/works/OL10556225W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4383344A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL105562W 2 2010-01-17T19:22:32.918028 {"title": "Derradeira chamada pelo espi\u0301rito do irma\u0303o Thome\u0301", "created": {"type": "/type/datetime", "value": "2009-10-17T20:52:55.384628"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-17T19:22:32.918028"}, "latest_revision": 2, "key": "/works/OL105562W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1212153A"}}], "type": {"key": "/type/work"}, "subjects": ["Spirit writings"], "revision": 2}
+/type/work /works/OL10556606W 1 2009-12-11T03:10:09.034765 {"title": "A cartiometrically orientated geotechnical database for the Birmingham area", "created": {"type": "/type/datetime", "value": "2009-12-11T03:10:09.034765"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:10:09.034765"}, "latest_revision": 1, "key": "/works/OL10556606W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4383564A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10557290W 1 2009-12-11T03:10:09.034765 {"title": "Toughness and abrasion resistance of high alloy cast iron", "created": {"type": "/type/datetime", "value": "2009-12-11T03:10:09.034765"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:10:09.034765"}, "latest_revision": 1, "key": "/works/OL10557290W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4383970A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10557627W 1 2009-12-11T03:10:15.957367 {"title": "Vapour films on liquid metals", "created": {"type": "/type/datetime", "value": "2009-12-11T03:10:15.957367"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:10:15.957367"}, "latest_revision": 1, "key": "/works/OL10557627W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4384202A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1055824W 5 2022-12-31T11:13:09.904650 {"covers": [8286480], "key": "/works/OL1055824W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL105724A"}}], "title": "Methods of project analysis", "subject_places": ["Developing countries"], "subjects": ["Economic development projects", "Evaluation", "Prices", "Prix", "Cout-efficacite", "Projecten", "Kosten-batenanalyse", "Developing countries", "Co\u00fbt-efficacit\u00e9"], "type": {"key": "/type/work"}, "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2009-12-09T20:17:28.498971"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-31T11:13:09.904650"}}
+/type/work /works/OL10558525W 1 2009-12-11T03:10:22.461252 {"title": "Strain energy methods of stress analysis", "created": {"type": "/type/datetime", "value": "2009-12-11T03:10:22.461252"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:10:22.461252"}, "latest_revision": 1, "key": "/works/OL10558525W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4384763A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1055909W 2 2010-01-17T19:22:32.918028 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:17:28.498971"}, "title": "Mix and be merry", "last_modified": {"type": "/type/datetime", "value": "2010-01-17T19:22:32.918028"}, "latest_revision": 2, "key": "/works/OL1055909W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL105727A"}}], "type": {"key": "/type/work"}, "subjects": ["Cocktails", "Beverages"], "revision": 2}
+/type/work /works/OL1055977W 2 2020-12-17T22:12:10.570581 {"title": "Aks\u0323aragal\u0323ondige akkareya ya\u0304na", "key": "/works/OL1055977W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL105746A"}}], "type": {"key": "/type/work"}, "description": {"type": "/type/text", "value": "Miscellaneous articles by a Kannada journalist."}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-09T20:17:28.498971"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-17T22:12:10.570581"}}
+/type/work /works/OL10559902W 2 2012-01-04T00:45:41.748555 {"last_modified": {"type": "/type/datetime", "value": "2012-01-04T00:45:41.748555"}, "title": "Stupeni k semeinomu schast'yu", "created": {"type": "/type/datetime", "value": "2009-12-11T03:10:30.090833"}, "subjects": ["Families"], "latest_revision": 2, "key": "/works/OL10559902W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4385625A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10560126W 1 2009-12-11T03:10:30.090833 {"title": "Ekonomika mineral'nogo syr'ya", "created": {"type": "/type/datetime", "value": "2009-12-11T03:10:30.090833"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:10:30.090833"}, "latest_revision": 1, "key": "/works/OL10560126W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4385740A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10560132W 2 2010-12-03T23:36:42.595352 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T23:36:42.595352"}, "title": "Kazakhskii otdel narodnogo komissariata po delam natsional'nostei RSFSR", "created": {"type": "/type/datetime", "value": "2009-12-11T03:10:30.090833"}, "subjects": ["Russian S.F.S.R.", "Russian S.F.S.R. Komissariat po delam Natsional'nostei"], "latest_revision": 2, "key": "/works/OL10560132W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4385744A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL1056015W 1 2009-12-09T19:54:40.691153 {"title": "Changing Dimensions of the Communal Politics in India", "created": {"type": "/type/datetime", "value": "2009-12-09T19:54:40.691153"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:54:40.691153"}, "latest_revision": 1, "key": "/works/OL1056015W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL105756A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1056085W 2 2010-01-17T19:27:29.301803 {"title": "Saiy\u0307ada Oy\u0307a\u0304li\u0304ulla\u0304hra na\u0304t\u0323aka", "created": {"type": "/type/datetime", "value": "2009-12-09T20:17:28.498971"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-17T19:27:29.301803"}, "latest_revision": 2, "key": "/works/OL1056085W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL105781A"}}], "subject_people": ["Sai\u1e8fada O\u1e8f\u0101l\u012bull\u0101h (1922-1971)"], "type": {"key": "/type/work"}, "subjects": ["Criticism and interpretation"], "revision": 2}
+/type/work /works/OL10561056W 1 2009-12-11T03:10:36.361003 {"title": "Mache ste n akre te s nychtas", "created": {"type": "/type/datetime", "value": "2009-12-11T03:10:36.361003"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:10:36.361003"}, "latest_revision": 1, "key": "/works/OL10561056W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4386263A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1056140W 2 2010-01-17T19:27:29.301803 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:17:28.498971"}, "title": "Religion, nationalism, and the state in modern Sri Lanka", "subject_places": ["Sri Lanka"], "last_modified": {"type": "/type/datetime", "value": "2010-01-17T19:27:29.301803"}, "latest_revision": 2, "key": "/works/OL1056140W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL105802A"}}], "type": {"key": "/type/work"}, "subjects": ["Politics and government", "Religion", "Religion and state"], "revision": 2}
+/type/work /works/OL1056147W 2 2010-01-17T19:27:29.301803 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:17:28.498971"}, "title": "Sri Lanka, ethnic conflict, management and resolution", "subject_places": ["Sri Lanka"], "last_modified": {"type": "/type/datetime", "value": "2010-01-17T19:27:29.301803"}, "latest_revision": 2, "key": "/works/OL1056147W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL105802A"}}], "subject_times": ["1977-"], "type": {"key": "/type/work"}, "subjects": ["Politics and government", "Ethnic relations", "Tamil (Indic people)"], "revision": 2}
+/type/work /works/OL10561622W 2 2020-04-08T20:03:39.630535 {"title": "Ignored by some, denied by others", "created": {"type": "/type/datetime", "value": "2009-12-11T03:10:41.764209"}, "last_modified": {"type": "/type/datetime", "value": "2020-04-08T20:03:39.630535"}, "latest_revision": 2, "key": "/works/OL10561622W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL660377A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL1056165W 3 2020-10-06T11:55:31.746247 {"last_modified": {"type": "/type/datetime", "value": "2020-10-06T11:55:31.746247"}, "title": "Ma\u0304ya\u0304vi\u0304 mukhavat\u0323e", "created": {"type": "/type/datetime", "value": "2009-12-09T20:17:28.498971"}, "subjects": ["Vietnamese Conflict, 1961-1975", "Fiction", "Vietnam War, 1961-1975"], "latest_revision": 3, "key": "/works/OL1056165W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL105807A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10561680W 1 2009-12-11T03:10:41.764209 {"title": "North-South and South-South", "created": {"type": "/type/datetime", "value": "2009-12-11T03:10:41.764209"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:10:41.764209"}, "latest_revision": 1, "key": "/works/OL10561680W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4386609A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10562153W 2 2010-01-17T19:27:29.301803 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:10:41.764209"}, "title": "Canzona on Ruggiero", "last_modified": {"type": "/type/datetime", "value": "2010-01-17T19:27:29.301803"}, "latest_revision": 2, "key": "/works/OL10562153W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4386815A"}}], "subject_times": ["To 1800"], "type": {"key": "/type/work"}, "subjects": ["Canons, fugues, etc. (Organ, recorders (4))"], "revision": 2}
+/type/work /works/OL1056230W 1 2009-12-09T19:54:40.691153 {"title": "Muddukimu\u0304d\u0323e\u0304mul\u0323l\u0323an\u0323t\u0323a", "created": {"type": "/type/datetime", "value": "2009-12-09T19:54:40.691153"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:54:40.691153"}, "latest_revision": 1, "key": "/works/OL1056230W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL105815A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10562440W 2 2010-12-03T17:46:40.142441 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T17:46:40.142441"}, "title": "Christianity best propagated by the good lives of Christians", "created": {"type": "/type/datetime", "value": "2009-12-11T03:10:41.764209"}, "subjects": ["Merchant Taylors' School (London)"], "latest_revision": 2, "key": "/works/OL10562440W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4386942A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10562760W 1 2009-12-11T03:10:46.265765 {"title": "Investigation on ion implantation as a technique suitable to fabricate high-efficiency silicon solar cells", "created": {"type": "/type/datetime", "value": "2009-12-11T03:10:46.265765"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:10:46.265765"}, "latest_revision": 1, "key": "/works/OL10562760W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4387090A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10562810W 2 2010-11-18T14:38:51.727088 {"title": "The human person and social structures", "created": {"type": "/type/datetime", "value": "2009-12-11T03:10:46.265765"}, "last_modified": {"type": "/type/datetime", "value": "2010-11-18T14:38:51.727088"}, "latest_revision": 2, "key": "/works/OL10562810W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL28457A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10562845W 2 2010-12-15T07:25:02.796613 {"title": "Hindu\u0301sta\u0301ni\u0301 primer", "created": {"type": "/type/datetime", "value": "2009-12-11T03:10:46.265765"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-15T07:25:02.796613"}, "latest_revision": 2, "key": "/works/OL10562845W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL3185225A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10562988W 3 2021-07-28T16:40:04.880802 {"title": "Zusammenbruch", "key": "/works/OL10562988W", "authors": [{"author": {"key": "/authors/OL4387186A"}, "type": {"key": "/type/author_role"}}], "subject_people": ["N. Lenau (1802-1850)", "Friedrich Wilhelm Nietzsche (1844-1900)", "Guy de Maupassant (1850-1893)", "Hugo Wolf (1860-1903)"], "type": {"key": "/type/work"}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T03:10:46.265765"}, "last_modified": {"type": "/type/datetime", "value": "2021-07-28T16:40:04.880802"}}
+/type/work /works/OL10563032W 1 2009-12-11T03:10:46.265765 {"title": "De typographia Hebraeo-Ferrariensi", "created": {"type": "/type/datetime", "value": "2009-12-11T03:10:46.265765"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:10:46.265765"}, "latest_revision": 1, "key": "/works/OL10563032W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4387208A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10563430W 1 2009-12-11T03:10:46.265765 {"title": "Cyst eelworms on potato", "created": {"type": "/type/datetime", "value": "2009-12-11T03:10:46.265765"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:10:46.265765"}, "latest_revision": 1, "key": "/works/OL10563430W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4387336A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10563490W 1 2009-12-11T03:10:50.149667 {"title": "Guidelines for applying crop protection chemicals", "created": {"type": "/type/datetime", "value": "2009-12-11T03:10:50.149667"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:10:50.149667"}, "latest_revision": 1, "key": "/works/OL10563490W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4387336A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10563496W 1 2009-12-11T03:10:50.149667 {"title": "Horticultural packing sheds", "created": {"type": "/type/datetime", "value": "2009-12-11T03:10:50.149667"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:10:50.149667"}, "latest_revision": 1, "key": "/works/OL10563496W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4387336A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL105636W 3 2010-12-06T07:01:50.444446 {"last_modified": {"type": "/type/datetime", "value": "2010-12-06T07:01:50.444446"}, "latest_revision": 3, "key": "/works/OL105636W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1212325A"}}], "created": {"type": "/type/datetime", "value": "2009-10-17T20:52:55.384628"}, "title": "The legend and the legacy of P\u00e8re Marquette", "subject_places": ["Chicago (Ill.)"], "subjects": ["Buildings, structures", "Marquette Building (Chicago, Ill.)"], "subject_people": ["Jacques Marquette (1637-1675)"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10563766W 1 2009-12-11T03:10:50.149667 {"title": "Doctor Dicky and other stories", "created": {"type": "/type/datetime", "value": "2009-12-11T03:10:50.149667"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:10:50.149667"}, "latest_revision": 1, "key": "/works/OL10563766W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4387348A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10563809W 1 2009-12-11T03:10:50.149667 {"title": "The dreams of Dania", "created": {"type": "/type/datetime", "value": "2009-12-11T03:10:50.149667"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:10:50.149667"}, "latest_revision": 1, "key": "/works/OL10563809W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4387365A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10563944W 1 2009-12-11T03:10:50.149667 {"title": "The sunny side", "created": {"type": "/type/datetime", "value": "2009-12-11T03:10:50.149667"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:10:50.149667"}, "latest_revision": 1, "key": "/works/OL10563944W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4387413A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10565254W 1 2009-12-11T03:10:58.762966 {"title": "The curious distillatory", "created": {"type": "/type/datetime", "value": "2009-12-11T03:10:58.762966"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:10:58.762966"}, "latest_revision": 1, "key": "/works/OL10565254W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4388246A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10565352W 1 2009-12-11T03:10:58.762966 {"title": "Elemens de geometric", "created": {"type": "/type/datetime", "value": "2009-12-11T03:10:58.762966"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:10:58.762966"}, "latest_revision": 1, "key": "/works/OL10565352W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4388318A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1056577W 4 2010-07-20T12:22:05.336777 {"title": "Guide to schools of Doon", "created": {"type": "/type/datetime", "value": "2009-12-09T20:17:50.618117"}, "covers": [5543891], "subject_places": ["India", "Dehra D\u016bn (District)"], "last_modified": {"type": "/type/datetime", "value": "2010-07-20T12:22:05.336777"}, "latest_revision": 4, "key": "/works/OL1056577W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL105907A"}}], "type": {"key": "/type/work"}, "subjects": ["Handbooks, manuals, etc", "Private schools", "Boarding schools", "Handbooks, manuals"], "revision": 4}
+/type/work /works/OL1056584W 2 2010-01-17T19:32:16.990726 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:17:50.618117"}, "title": "Proceedings of Seminar on Pokhran II and its Implications, 1st September, 1998", "subject_places": ["India"], "last_modified": {"type": "/type/datetime", "value": "2010-01-17T19:32:16.990726"}, "latest_revision": 2, "key": "/works/OL1056584W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL105913A"}}], "type": {"key": "/type/work"}, "subjects": ["Nuclear weapons"], "revision": 2}
+/type/work /works/OL10566614W 2 2014-07-29T08:19:49.360072 {"last_modified": {"type": "/type/datetime", "value": "2014-07-29T08:19:49.360072"}, "title": "The elements of theology", "created": {"type": "/type/datetime", "value": "2009-12-11T03:11:15.904558"}, "subjects": ["Early works to 1800", "Neoplatonism", "Theology"], "latest_revision": 2, "key": "/works/OL10566614W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4389337A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10566817W 1 2009-12-11T03:11:15.904558 {"title": "De' crostacei e degli altri Marini Corpi che si truovano su' monti libri due..", "created": {"type": "/type/datetime", "value": "2009-12-11T03:11:15.904558"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:11:15.904558"}, "latest_revision": 1, "key": "/works/OL10566817W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4389482A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10567854W 1 2009-12-11T03:11:24.391954 {"title": "The development of Tokyo as an international financial centre", "created": {"type": "/type/datetime", "value": "2009-12-11T03:11:24.391954"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:11:24.391954"}, "latest_revision": 1, "key": "/works/OL10567854W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4390264A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10567861W 1 2009-12-11T03:11:24.391954 {"title": "Currency translation and inflation", "created": {"type": "/type/datetime", "value": "2009-12-11T03:11:24.391954"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:11:24.391954"}, "latest_revision": 1, "key": "/works/OL10567861W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4390271A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10568083W 1 2009-12-11T03:11:24.391954 {"title": "The design of rectangular plates of variable thickness", "created": {"type": "/type/datetime", "value": "2009-12-11T03:11:24.391954"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:11:24.391954"}, "latest_revision": 1, "key": "/works/OL10568083W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4390409A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10568256W 1 2009-12-11T03:11:24.391954 {"title": "Injection moulding of thermoplastic polymers", "created": {"type": "/type/datetime", "value": "2009-12-11T03:11:24.391954"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:11:24.391954"}, "latest_revision": 1, "key": "/works/OL10568256W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4390554A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10568261W 1 2009-12-11T03:11:24.391954 {"title": "On-line quality control of needle slot production on circular weft-knitting machines", "created": {"type": "/type/datetime", "value": "2009-12-11T03:11:24.391954"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:11:24.391954"}, "latest_revision": 1, "key": "/works/OL10568261W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4390560A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10568711W 1 2009-12-11T03:11:28.538760 {"title": "When the gallows is high", "created": {"type": "/type/datetime", "value": "2009-12-11T03:11:28.538760"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:11:28.538760"}, "latest_revision": 1, "key": "/works/OL10568711W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4390802A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10569552W 1 2009-12-11T03:11:34.100658 {"title": "Dental health education in Britain", "created": {"type": "/type/datetime", "value": "2009-12-11T03:11:34.100658"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:11:34.100658"}, "latest_revision": 1, "key": "/works/OL10569552W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4391028A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10569987W 1 2009-12-11T03:11:34.100658 {"title": "A small account of my travels through the wilderness", "created": {"type": "/type/datetime", "value": "2009-12-11T03:11:34.100658"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:11:34.100658"}, "latest_revision": 1, "key": "/works/OL10569987W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4391228A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10570003W 1 2009-12-11T03:11:34.100658 {"title": "Grass waterways in soil conservation", "created": {"type": "/type/datetime", "value": "2009-12-11T03:11:34.100658"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:11:34.100658"}, "latest_revision": 1, "key": "/works/OL10570003W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4391242A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10570041W 2 2010-01-17T19:37:35.950433 {"title": "Edward Edwards, 1812-1886", "created": {"type": "/type/datetime", "value": "2009-12-11T03:11:34.100658"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-17T19:37:35.950433"}, "latest_revision": 2, "key": "/works/OL10570041W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4391255A"}}], "subject_people": ["Edward Edwards (1812-1886)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10570192W 1 2009-12-11T03:11:34.100658 {"title": "An introduction to hydrographic surveying", "created": {"type": "/type/datetime", "value": "2009-12-11T03:11:34.100658"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:11:34.100658"}, "latest_revision": 1, "key": "/works/OL10570192W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4391344A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10570510W 2 2010-12-04T00:06:05.374861 {"last_modified": {"type": "/type/datetime", "value": "2010-12-04T00:06:05.374861"}, "latest_revision": 2, "key": "/works/OL10570510W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4391453A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T03:11:42.675836"}, "title": "Mid-Georgian London", "subject_places": ["London (England)"], "subjects": ["History"], "subject_times": ["18th century"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10570586W 1 2009-12-11T03:11:42.675836 {"title": "Sewer design and sewer renovation techniques", "created": {"type": "/type/datetime", "value": "2009-12-11T03:11:42.675836"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:11:42.675836"}, "latest_revision": 1, "key": "/works/OL10570586W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4391512A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10570612W 2 2010-01-17T19:37:35.950433 {"title": "Jedd Garet", "created": {"type": "/type/datetime", "value": "2009-12-11T03:11:42.675836"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-17T19:37:35.950433"}, "latest_revision": 2, "key": "/works/OL10570612W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4391532A"}}], "subject_people": ["Jedd Garet"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10570799W 2 2010-01-17T19:37:35.950433 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:11:42.675836"}, "title": "The rule of reason in antitrust law", "subject_places": ["United States", "Germany (West)", "European Economic Community countries"], "last_modified": {"type": "/type/datetime", "value": "2010-01-17T19:37:35.950433"}, "latest_revision": 2, "key": "/works/OL10570799W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4391619A"}}], "type": {"key": "/type/work"}, "subjects": ["Antitrust law"], "revision": 2}
+/type/work /works/OL10572023W 2 2010-12-03T19:41:22.175096 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:11:49.802231"}, "subject_places": ["United States"], "subjects": ["Socialism", "Socialist Labor Party"], "latest_revision": 2, "key": "/works/OL10572023W", "title": "The Socialist Labor Party, 1890-1903", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4392517A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T19:41:22.175096"}, "revision": 2}
+/type/work /works/OL10572147W 1 2009-12-11T03:11:49.802231 {"title": "Approaches to construction history", "created": {"type": "/type/datetime", "value": "2009-12-11T03:11:49.802231"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:11:49.802231"}, "latest_revision": 1, "key": "/works/OL10572147W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4392604A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10572199W 1 2009-12-11T03:11:49.802231 {"title": "Educational information, advisory and counselling services for adults", "created": {"type": "/type/datetime", "value": "2009-12-11T03:11:49.802231"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:11:49.802231"}, "latest_revision": 1, "key": "/works/OL10572199W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4392631A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10573384W 1 2009-12-11T03:11:56.765983 {"title": "Solid oxide galvanic cell studies of the cobalt-zinc and cobalt-tin systems", "created": {"type": "/type/datetime", "value": "2009-12-11T03:11:56.765983"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:11:56.765983"}, "latest_revision": 1, "key": "/works/OL10573384W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4393280A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10573647W 1 2009-12-11T03:12:05.013096 {"title": "Approaches to crown ether containing polymers", "created": {"type": "/type/datetime", "value": "2009-12-11T03:12:05.013096"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:12:05.013096"}, "latest_revision": 1, "key": "/works/OL10573647W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4393490A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10573654W 1 2009-12-11T03:12:05.013096 {"title": "The behaviour of some palladium-rare earth intermetallic catalysts in the vapour-phase hydrogenation of buta-1, 3-diene", "created": {"type": "/type/datetime", "value": "2009-12-11T03:12:05.013096"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:12:05.013096"}, "latest_revision": 1, "key": "/works/OL10573654W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4393496A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10574062W 1 2009-12-11T03:12:05.013096 {"title": "Fontes de demografia portuguesa 1800-1862", "created": {"type": "/type/datetime", "value": "2009-12-11T03:12:05.013096"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:12:05.013096"}, "latest_revision": 1, "key": "/works/OL10574062W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4393816A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10574216W 2 2010-01-17T19:42:37.536163 {"title": "My first one hundred years", "created": {"type": "/type/datetime", "value": "2009-12-11T03:12:05.013096"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-17T19:42:37.536163"}, "latest_revision": 2, "key": "/works/OL10574216W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4393921A"}}], "subject_people": ["E. Emmet Reid"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10574620W 1 2009-12-11T03:12:12.786967 {"title": "Theory and design of valve oscillators for radio and other frequencies", "created": {"type": "/type/datetime", "value": "2009-12-11T03:12:12.786967"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:12:12.786967"}, "latest_revision": 1, "key": "/works/OL10574620W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4394197A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10574668W 2 2021-02-20T22:54:42.929899 {"title": "European dictatorships", "key": "/works/OL10574668W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL118335A"}}], "type": {"key": "/type/work"}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T03:12:12.786967"}, "last_modified": {"type": "/type/datetime", "value": "2021-02-20T22:54:42.929899"}}
+/type/work /works/OL10574812W 1 2009-12-11T03:12:12.786967 {"title": "Peace or power", "created": {"type": "/type/datetime", "value": "2009-12-11T03:12:12.786967"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:12:12.786967"}, "latest_revision": 1, "key": "/works/OL10574812W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4394322A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10574976W 1 2009-12-11T03:12:12.786967 {"title": "Technical aerodynamics", "created": {"type": "/type/datetime", "value": "2009-12-11T03:12:12.786967"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:12:12.786967"}, "latest_revision": 1, "key": "/works/OL10574976W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4394425A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1057500W 2 2010-01-17T19:42:37.536163 {"title": "Ra\u0304sht\u0323rabha\u0304sha\u0304 Hindi\u0304 aura Ga\u0304ndhi\u0304ji\u0304", "created": {"type": "/type/datetime", "value": "2009-12-09T20:18:21.858701"}, "subject_places": ["India"], "last_modified": {"type": "/type/datetime", "value": "2010-01-17T19:42:37.536163"}, "latest_revision": 2, "key": "/works/OL1057500W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL106117A"}}], "subject_people": ["Gandhi Mahatma (1869-1948)"], "type": {"key": "/type/work"}, "subjects": ["Languages", "Hindi language"], "revision": 2}
+/type/work /works/OL10575048W 1 2009-12-11T03:12:12.786967 {"title": "Memory of snow and dust", "created": {"type": "/type/datetime", "value": "2009-12-11T03:12:12.786967"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:12:12.786967"}, "latest_revision": 1, "key": "/works/OL10575048W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4394479A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10575054W 1 2009-12-11T03:12:12.786967 {"title": "Pressefreiheit und Schu lerzeitungen", "created": {"type": "/type/datetime", "value": "2009-12-11T03:12:12.786967"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:12:12.786967"}, "latest_revision": 1, "key": "/works/OL10575054W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4394482A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1057518W 3 2020-12-03T10:54:45.169682 {"title": "Sa\u0304ma\u0304jika nya\u0304ya, lokatantra aura ja\u0304ti vyavastha\u0304", "subject_places": ["India"], "key": "/works/OL1057518W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL106128A"}}], "type": {"key": "/type/work"}, "subjects": ["Dalits", "Social justice", "Democracy"], "description": {"type": "/type/text", "value": "On social justice, democracy, and untouchables in India."}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-09T20:18:21.858701"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-03T10:54:45.169682"}}
+/type/work /works/OL10575781W 1 2009-12-11T03:12:20.387237 {"title": "Creators of decorative styles", "created": {"type": "/type/datetime", "value": "2009-12-11T03:12:20.387237"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:12:20.387237"}, "latest_revision": 1, "key": "/works/OL10575781W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4394933A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10575863W 1 2009-12-11T03:12:20.387237 {"title": "Art in daily life for young and old", "created": {"type": "/type/datetime", "value": "2009-12-11T03:12:20.387237"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:12:20.387237"}, "latest_revision": 1, "key": "/works/OL10575863W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4394976A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10576019W 1 2009-12-11T03:12:20.387237 {"title": "Teson dell'oreficeria", "created": {"type": "/type/datetime", "value": "2009-12-11T03:12:20.387237"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:12:20.387237"}, "latest_revision": 1, "key": "/works/OL10576019W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4395054A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10576262W 1 2009-12-11T03:12:20.387237 {"title": "Natsiya i sotsial'nyi progress", "created": {"type": "/type/datetime", "value": "2009-12-11T03:12:20.387237"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:12:20.387237"}, "latest_revision": 1, "key": "/works/OL10576262W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4395216A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10576352W 1 2009-12-11T03:12:20.387237 {"title": "Proteolytic activity of dental plaque material", "created": {"type": "/type/datetime", "value": "2009-12-11T03:12:20.387237"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:12:20.387237"}, "latest_revision": 1, "key": "/works/OL10576352W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4395261A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL105764W 5 2020-10-15T16:02:27.308460 {"covers": [9748507], "last_modified": {"type": "/type/datetime", "value": "2020-10-15T16:02:27.308460"}, "latest_revision": 5, "key": "/works/OL105764W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1212752A"}}], "created": {"type": "/type/datetime", "value": "2009-10-17T20:52:55.384628"}, "title": "Your garden week by week", "subject_places": ["England"], "subjects": ["Gardening"], "type": {"key": "/type/work"}, "revision": 5}
+/type/work /works/OL10576502W 1 2009-12-11T03:12:27.923110 {"title": "A treatise on the progress and shedding of the human teeth, to their completion in a permanent state", "created": {"type": "/type/datetime", "value": "2009-12-11T03:12:27.923110"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:12:27.923110"}, "latest_revision": 1, "key": "/works/OL10576502W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4395362A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10576548W 1 2009-12-11T03:12:27.923110 {"title": "Techniques in photomicrography", "created": {"type": "/type/datetime", "value": "2009-12-11T03:12:27.923110"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:12:27.923110"}, "latest_revision": 1, "key": "/works/OL10576548W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4395402A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10576752W 1 2009-12-11T03:12:27.923110 {"title": "Opening address", "created": {"type": "/type/datetime", "value": "2009-12-11T03:12:27.923110"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:12:27.923110"}, "latest_revision": 1, "key": "/works/OL10576752W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4395550A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10576824W 1 2009-12-11T03:12:27.923110 {"title": "Diseases of the ear, nose and throat", "created": {"type": "/type/datetime", "value": "2009-12-11T03:12:27.923110"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:12:27.923110"}, "latest_revision": 1, "key": "/works/OL10576824W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4395592A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10576894W 1 2009-12-11T03:12:27.923110 {"title": "The color atlas of intestinal parasites", "created": {"type": "/type/datetime", "value": "2009-12-11T03:12:27.923110"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:12:27.923110"}, "latest_revision": 1, "key": "/works/OL10576894W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4395636A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10576924W 1 2009-12-11T03:12:27.923110 {"title": "Le chirugien dentiste", "created": {"type": "/type/datetime", "value": "2009-12-11T03:12:27.923110"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:12:27.923110"}, "latest_revision": 1, "key": "/works/OL10576924W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4395663A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10576989W 1 2009-12-11T03:12:27.923110 {"title": "Four essays on Christian social justice", "created": {"type": "/type/datetime", "value": "2009-12-11T03:12:27.923110"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:12:27.923110"}, "latest_revision": 1, "key": "/works/OL10576989W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4395704A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10577444W 1 2009-12-11T03:12:27.923110 {"title": "Contact potential and the occupational structure of the British urban system 1961-1966", "created": {"type": "/type/datetime", "value": "2009-12-11T03:12:27.923110"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:12:27.923110"}, "latest_revision": 1, "key": "/works/OL10577444W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4395984A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10577584W 2 2010-01-17T19:42:37.536163 {"title": "Poe\u0301ziya Valeriya Bryusova", "created": {"type": "/type/datetime", "value": "2009-12-11T03:12:35.110338"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-17T19:42:37.536163"}, "latest_revision": 2, "key": "/works/OL10577584W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4396065A"}}], "subject_people": ["Valeri\u012d Bryusov (1873-1924)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10577781W 1 2009-12-11T03:12:35.110338 {"title": "Vysokoe kachestvo - zabota obshchaya", "created": {"type": "/type/datetime", "value": "2009-12-11T03:12:35.110338"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:12:35.110338"}, "latest_revision": 1, "key": "/works/OL10577781W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4396174A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10577859W 1 2009-12-11T03:12:35.110338 {"title": "Integrated transfer line manufacturing systems", "created": {"type": "/type/datetime", "value": "2009-12-11T03:12:35.110338"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:12:35.110338"}, "latest_revision": 1, "key": "/works/OL10577859W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4396244A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10578008W 1 2009-12-11T03:12:35.110338 {"title": "The systems model of policy-making and the National Health Service", "created": {"type": "/type/datetime", "value": "2009-12-11T03:12:35.110338"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:12:35.110338"}, "latest_revision": 1, "key": "/works/OL10578008W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4396358A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10578747W 1 2009-12-11T03:12:42.323026 {"title": "Diciona rio de sino nimos e anto nimos da li ngua portuguesa", "created": {"type": "/type/datetime", "value": "2009-12-11T03:12:42.323026"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:12:42.323026"}, "latest_revision": 1, "key": "/works/OL10578747W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4396719A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10578779W 2 2020-11-09T16:01:22.882475 {"last_modified": {"type": "/type/datetime", "value": "2020-11-09T16:01:22.882475"}, "title": "Dodumyvat' do kontsa", "created": {"type": "/type/datetime", "value": "2009-12-11T03:12:42.323026"}, "subjects": ["Belarusian literature", "History and criticism", "World War, 1939-1945", "Literature and the war"], "latest_revision": 2, "key": "/works/OL10578779W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4396735A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10578877W 1 2009-12-11T03:12:42.323026 {"title": "E\u0301konomicheskaya nezavisimost' i dva vida pomoshchi stranam Afriki", "created": {"type": "/type/datetime", "value": "2009-12-11T03:12:42.323026"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:12:42.323026"}, "latest_revision": 1, "key": "/works/OL10578877W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4396792A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10578946W 1 2009-12-11T03:12:42.323026 {"title": "Toponimiya Moskvy", "created": {"type": "/type/datetime", "value": "2009-12-11T03:12:42.323026"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:12:42.323026"}, "latest_revision": 1, "key": "/works/OL10578946W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4396830A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10579187W 2 2018-12-01T18:12:30.527951 {"title": "Ocherki o genetike", "created": {"type": "/type/datetime", "value": "2009-12-11T03:12:42.323026"}, "last_modified": {"type": "/type/datetime", "value": "2018-12-01T18:12:30.527951"}, "latest_revision": 2, "key": "/works/OL10579187W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL193885A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10579265W 1 2009-12-11T03:12:42.323026 {"title": "Otdykh i arkhitektura", "created": {"type": "/type/datetime", "value": "2009-12-11T03:12:42.323026"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:12:42.323026"}, "latest_revision": 1, "key": "/works/OL10579265W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4397036A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1057938W 3 2010-04-28T07:13:24.349481 {"title": "Wounded Justice and the Story of Teh Indian Police", "created": {"type": "/type/datetime", "value": "2009-12-09T20:18:21.858701"}, "covers": [5251832], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:13:24.349481"}, "latest_revision": 3, "key": "/works/OL1057938W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL106219A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10579438W 1 2009-12-11T03:12:42.323026 {"title": "O louco do cati", "created": {"type": "/type/datetime", "value": "2009-12-11T03:12:42.323026"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:12:42.323026"}, "latest_revision": 1, "key": "/works/OL10579438W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4397145A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10579929W 1 2009-12-11T03:12:48.736881 {"title": "United States foreign relations law", "created": {"type": "/type/datetime", "value": "2009-12-11T03:12:48.736881"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:12:48.736881"}, "latest_revision": 1, "key": "/works/OL10579929W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4397446A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10579937W 1 2009-12-11T03:12:48.736881 {"title": "Patterns of population change and movement in Herefordshire 1951-71 and their implications for rural planning", "created": {"type": "/type/datetime", "value": "2009-12-11T03:12:48.736881"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:12:48.736881"}, "latest_revision": 1, "key": "/works/OL10579937W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4397450A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10580590W 2 2010-01-17T19:47:31.788125 {"title": "Nouveaux souvenirs intimes sur Guy de Maupassant", "created": {"type": "/type/datetime", "value": "2009-12-11T03:12:52.986040"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-17T19:47:31.788125"}, "latest_revision": 2, "key": "/works/OL10580590W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4397779A"}}], "subject_people": ["Guy de Maupassant (1850-1893)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10580617W 9 2020-08-18T11:26:15.192713 {"description": {"type": "/type/text", "value": "Jean Rhys was one of the twentieth century's foremost writers, a literary artist who made exquisite use of the raw material of her own often turbulent life to create fiction of memorable resonance and poignancy. Here for the first time in one volume are her complete stories."}, "last_modified": {"type": "/type/datetime", "value": "2020-08-18T11:26:15.192713"}, "title": "The Collected Short Stories", "created": {"type": "/type/datetime", "value": "2009-12-11T03:12:52.986040"}, "covers": [8341666, 6696068, 248510], "first_publish_date": "1987", "latest_revision": 9, "key": "/works/OL10580617W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4397788A"}}], "dewey_number": ["823/.912"], "type": {"key": "/type/work"}, "subjects": ["Manners and customs", "Short stories", "Fiction", "Collected works (single author, multi-form)", "Fiction, short stories (single author)", "Fiction, general"], "revision": 9}
+/type/work /works/OL10581267W 1 2009-12-11T03:12:52.986040 {"title": "Mwlsyn yr arwr", "created": {"type": "/type/datetime", "value": "2009-12-11T03:12:52.986040"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:12:52.986040"}, "latest_revision": 1, "key": "/works/OL10581267W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4398045A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1058126W 2 2011-07-30T08:10:14.220898 {"title": "Hatheli\u0304 para ra\u0304kha", "created": {"type": "/type/datetime", "value": "2009-12-09T20:18:21.858701"}, "last_modified": {"type": "/type/datetime", "value": "2011-07-30T08:10:14.220898"}, "latest_revision": 2, "key": "/works/OL1058126W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL106280A"}}, {"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL6962735A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10581481W 2 2010-12-05T07:29:57.167439 {"title": "The Robber pig and the green eggs", "created": {"type": "/type/datetime", "value": "2009-12-11T03:12:52.986040"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-05T07:29:57.167439"}, "latest_revision": 2, "key": "/works/OL10581481W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL31800A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10581675W 2 2020-01-15T17:07:51.171806 {"title": "Crocodile", "created": {"type": "/type/datetime", "value": "2009-12-11T03:12:59.122660"}, "last_modified": {"type": "/type/datetime", "value": "2020-01-15T17:07:51.171806"}, "latest_revision": 2, "key": "/works/OL10581675W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL354924A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10581915W 1 2009-12-11T03:12:59.122660 {"title": "Developing children's writing: case studies in action", "created": {"type": "/type/datetime", "value": "2009-12-11T03:12:59.122660"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:12:59.122660"}, "latest_revision": 1, "key": "/works/OL10581915W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4398270A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10581952W 4 2010-12-16T18:28:54.553379 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:12:59.122660"}, "subjects": ["Readers (Elementary)", "Legends", "Maori (New Zealand people)"], "latest_revision": 4, "key": "/works/OL10581952W", "title": "Hatupatu and the Birdwoman", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4753461A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-16T18:28:54.553379"}, "covers": [6454573], "revision": 4}
+/type/work /works/OL10582020W 4 2010-09-28T17:16:10.391861 {"title": "A short history of Australia", "created": {"type": "/type/datetime", "value": "2009-12-11T03:12:59.122660"}, "last_modified": {"type": "/type/datetime", "value": "2010-09-28T17:16:10.391861"}, "latest_revision": 4, "key": "/works/OL10582020W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL904207A"}}], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL10582079W 1 2009-12-11T03:12:59.122660 {"title": "A study of amine protecting group stability in polymer-supported synthesis", "created": {"type": "/type/datetime", "value": "2009-12-11T03:12:59.122660"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:12:59.122660"}, "latest_revision": 1, "key": "/works/OL10582079W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4398359A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1058274W 2 2010-01-17T19:52:39.744673 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:18:21.858701"}, "title": "Food, ritual, and society", "last_modified": {"type": "/type/datetime", "value": "2010-01-17T19:52:39.744673"}, "latest_revision": 2, "key": "/works/OL1058274W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL106321A"}}], "type": {"key": "/type/work"}, "subjects": ["Newar (Nepalese people)", "Food", "Social life and customs", "Rites and ceremonies"], "revision": 2}
+/type/work /works/OL10583733W 1 2009-12-11T03:13:10.727925 {"title": "The man who understood women", "created": {"type": "/type/datetime", "value": "2009-12-11T03:13:10.727925"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:13:10.727925"}, "latest_revision": 1, "key": "/works/OL10583733W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4399256A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1058445W 1 2009-12-09T19:55:50.082964 {"title": "Putu\u0304rkkarayut\u0323e pura\u0304vr\u0325ttan\u0307n\u0307al\u0323", "created": {"type": "/type/datetime", "value": "2009-12-09T19:55:50.082964"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:55:50.082964"}, "latest_revision": 1, "key": "/works/OL1058445W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL106370A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10584476W 1 2009-12-11T03:13:10.727925 {"title": "GPO", "created": {"type": "/type/datetime", "value": "2009-12-11T03:13:10.727925"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:13:10.727925"}, "latest_revision": 1, "key": "/works/OL10584476W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4399586A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10584738W 1 2009-12-11T03:13:16.843025 {"title": "Adderley Park", "created": {"type": "/type/datetime", "value": "2009-12-11T03:13:16.843025"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:13:16.843025"}, "latest_revision": 1, "key": "/works/OL10584738W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4399725A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10585090W 1 2009-12-11T03:13:16.843025 {"title": "Virus in the cell", "created": {"type": "/type/datetime", "value": "2009-12-11T03:13:16.843025"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:13:16.843025"}, "latest_revision": 1, "key": "/works/OL10585090W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4399928A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10585153W 1 2009-12-11T03:13:16.843025 {"title": "The genealogist's guide to printed pedigrees", "created": {"type": "/type/datetime", "value": "2009-12-11T03:13:16.843025"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:13:16.843025"}, "latest_revision": 1, "key": "/works/OL10585153W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4399947A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1058537W 1 2009-12-09T19:55:50.082964 {"title": "A Day in the Country", "created": {"type": "/type/datetime", "value": "2009-12-09T19:55:50.082964"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:55:50.082964"}, "latest_revision": 1, "key": "/works/OL1058537W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL106398A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10585723W 2 2010-01-17T19:52:39.744673 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:13:23.528683"}, "title": "A history of Russian hand paper-mills and their watermarks", "subject_places": ["Russia"], "last_modified": {"type": "/type/datetime", "value": "2010-01-17T19:52:39.744673"}, "latest_revision": 2, "key": "/works/OL10585723W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4400244A"}}], "type": {"key": "/type/work"}, "subjects": ["Papermaking", "Watermarks", "History"], "revision": 2}
+/type/work /works/OL10586151W 2 2010-10-24T21:56:07.422922 {"title": "Calfurnia", "created": {"type": "/type/datetime", "value": "2009-12-11T03:13:23.528683"}, "last_modified": {"type": "/type/datetime", "value": "2010-10-24T21:56:07.422922"}, "latest_revision": 2, "key": "/works/OL10586151W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL928654A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10586166W 2 2010-01-17T19:52:39.744673 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:13:23.528683"}, "title": "Lyra britannica, book 3d", "last_modified": {"type": "/type/datetime", "value": "2010-01-17T19:52:39.744673"}, "latest_revision": 2, "key": "/works/OL10586166W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4400544A"}}], "type": {"key": "/type/work"}, "subjects": ["Scores", "Vocal duets with instrumental ensemble", "Songs (High voice) with instrumental ensemble"], "revision": 2}
+/type/work /works/OL10586911W 1 2009-12-11T03:13:27.698098 {"title": "The golden rule: or, Stories illustrative of the ten commandments", "created": {"type": "/type/datetime", "value": "2009-12-11T03:13:27.698098"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:13:27.698098"}, "latest_revision": 1, "key": "/works/OL10586911W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4400902A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10587250W 2 2010-08-19T22:19:03.459874 {"title": "Christmas Eve", "created": {"type": "/type/datetime", "value": "2009-12-11T03:13:27.698098"}, "last_modified": {"type": "/type/datetime", "value": "2010-08-19T22:19:03.459874"}, "latest_revision": 2, "key": "/works/OL10587250W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL458948A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10587404W 1 2009-12-11T03:13:27.698098 {"title": "Vyse's new London spelling booh, or the young gentlemen and ladies' guide to the English tongue", "created": {"type": "/type/datetime", "value": "2009-12-11T03:13:27.698098"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:13:27.698098"}, "latest_revision": 1, "key": "/works/OL10587404W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4401019A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10587489W 2 2010-12-03T13:13:54.425205 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:13:54.425205"}, "title": "Daylight robbery", "created": {"type": "/type/datetime", "value": "2009-12-11T03:13:27.698098"}, "subjects": ["Fiction in English"], "latest_revision": 2, "key": "/works/OL10587489W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4401046A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10587715W 2 2013-12-31T21:02:27.616963 {"title": "Na\u030agon fra\u030an det fo\u0308rflutna", "created": {"type": "/type/datetime", "value": "2009-12-11T03:13:34.927681"}, "last_modified": {"type": "/type/datetime", "value": "2013-12-31T21:02:27.616963"}, "latest_revision": 2, "key": "/works/OL10587715W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2139841A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10587814W 2 2010-01-17T19:57:55.256954 {"title": "W.B. Yeats", "created": {"type": "/type/datetime", "value": "2009-12-11T03:13:34.927681"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-17T19:57:55.256954"}, "latest_revision": 2, "key": "/works/OL10587814W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4401210A"}}], "subject_people": ["W. B. Yeats (1865-1939)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10588015W 2 2010-12-03T23:33:20.285183 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T23:33:20.285183"}, "title": "Reforming the United Nations", "created": {"type": "/type/datetime", "value": "2009-12-11T03:13:34.927681"}, "subjects": ["United Nations"], "latest_revision": 2, "key": "/works/OL10588015W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4401374A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10588341W 1 2009-12-11T03:13:34.927681 {"title": "We wish you a Merry Christmas", "created": {"type": "/type/datetime", "value": "2009-12-11T03:13:34.927681"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:13:34.927681"}, "latest_revision": 1, "key": "/works/OL10588341W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4401617A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10588500W 1 2009-12-11T03:13:34.927681 {"title": "Digital displacement measuring system", "created": {"type": "/type/datetime", "value": "2009-12-11T03:13:34.927681"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:13:34.927681"}, "latest_revision": 1, "key": "/works/OL10588500W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4401698A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10588661W 2 2010-01-17T19:57:55.256954 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:13:39.644877"}, "title": "The shadow of the guillotine", "subject_places": ["France"], "last_modified": {"type": "/type/datetime", "value": "2010-01-17T19:57:55.256954"}, "latest_revision": 2, "key": "/works/OL10588661W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4401786A"}}], "subject_times": ["Revolution, 1789-1799"], "type": {"key": "/type/work"}, "subjects": ["Art,British", "French influences", "History"], "revision": 2}
+/type/work /works/OL1058924W 1 2009-12-09T19:55:50.082964 {"title": "Sad\u0323akadekhi sad\u0323akasamma", "created": {"type": "/type/datetime", "value": "2009-12-09T19:55:50.082964"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:55:50.082964"}, "latest_revision": 1, "key": "/works/OL1058924W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL106480A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1058933W 1 2009-12-09T19:55:50.082964 {"title": "Pum\u0310s\u0301cali\u0304", "created": {"type": "/type/datetime", "value": "2009-12-09T19:55:50.082964"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:55:50.082964"}, "latest_revision": 1, "key": "/works/OL1058933W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL106482A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10589353W 5 2022-11-17T17:11:21.675994 {"title": "The first civilizations", "subjects": ["Ancient Civilization", "Antiquities", "Prehistoric Antiquities", "Archaeology", "Civilization, ancient"], "key": "/works/OL10589353W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL138463A"}}], "type": {"key": "/type/work"}, "covers": [11632210], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2009-12-11T03:13:39.644877"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T17:11:21.675994"}}
+/type/work /works/OL10589664W 1 2009-12-11T03:13:47.255494 {"title": "Maori wood sculpture of New Zealand", "created": {"type": "/type/datetime", "value": "2009-12-11T03:13:47.255494"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:13:47.255494"}, "latest_revision": 1, "key": "/works/OL10589664W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4402216A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10589914W 2 2010-01-17T19:57:55.256954 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:13:47.255494"}, "title": "Geisha in the house", "last_modified": {"type": "/type/datetime", "value": "2010-01-17T19:57:55.256954"}, "latest_revision": 2, "key": "/works/OL10589914W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4402366A"}}], "type": {"key": "/type/work"}, "subjects": ["Fiction in English"], "revision": 2}
+/type/work /works/OL10590122W 1 2009-12-11T03:13:47.255494 {"title": "Lyubimtsy publiki", "created": {"type": "/type/datetime", "value": "2009-12-11T03:13:47.255494"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:13:47.255494"}, "latest_revision": 1, "key": "/works/OL10590122W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4402501A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10590590W 2 2010-01-17T20:03:02.171005 {"title": "Miguel de Unamuno a la luz de la psicologi a", "created": {"type": "/type/datetime", "value": "2009-12-11T03:13:52.698452"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-17T20:03:02.171005"}, "latest_revision": 2, "key": "/works/OL10590590W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4402796A"}}], "subject_people": ["Miguel de Unamuno (1864-1936)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL1059077W 3 2020-12-11T15:55:23.310924 {"title": "Tamil\u0332il val\u0332ipa\u0304t\u0323u", "subject_places": ["India", "Tamil Nadu"], "key": "/works/OL1059077W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL106512A"}}], "type": {"key": "/type/work"}, "subjects": ["Hinduism", "Worship (Hinduism)", "Rituals"], "description": {"type": "/type/text", "value": "Study on the Hindu rituals and worship in Tamil Nadu."}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-09T20:18:41.155332"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-11T15:55:23.310924"}}
+/type/work /works/OL105915W 5 2020-07-31T10:52:49.143140 {"created": {"type": "/type/datetime", "value": "2009-10-17T21:25:07.728178"}, "subjects": ["English language", "Idioms", "Dictionaries", "Terms and phrases", "English language, idioms"], "latest_revision": 5, "key": "/works/OL105915W", "title": "NTC's English idioms dictionary", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL20239A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-07-31T10:52:49.143140"}, "covers": [642310], "revision": 5}
+/type/work /works/OL10591791W 2 2021-10-04T14:14:13.373871 {"title": "Gore and Igor", "key": "/works/OL10591791W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4403338A"}}], "type": {"key": "/type/work"}, "subjects": ["Fiction, humorous, general", "Fiction, action & adventure"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T03:13:57.491468"}, "last_modified": {"type": "/type/datetime", "value": "2021-10-04T14:14:13.373871"}}
+/type/work /works/OL10591800W 1 2009-12-11T03:13:57.491468 {"title": "Blind-girl's-bluff", "created": {"type": "/type/datetime", "value": "2009-12-11T03:13:57.491468"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:13:57.491468"}, "latest_revision": 1, "key": "/works/OL10591800W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4403340A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10591940W 1 2009-12-11T03:13:57.491468 {"title": "Middlesex", "created": {"type": "/type/datetime", "value": "2009-12-11T03:13:57.491468"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:13:57.491468"}, "latest_revision": 1, "key": "/works/OL10591940W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4403380A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10592042W 3 2010-12-04T22:30:18.186495 {"last_modified": {"type": "/type/datetime", "value": "2010-12-04T22:30:18.186495"}, "title": "Mystery!", "created": {"type": "/type/datetime", "value": "2009-12-11T03:13:57.491468"}, "subjects": ["Curiosa and miscellany", "History"], "latest_revision": 3, "key": "/works/OL10592042W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL853741A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10592155W 1 2009-12-11T03:13:57.491468 {"title": "Find Debbie!", "created": {"type": "/type/datetime", "value": "2009-12-11T03:13:57.491468"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:13:57.491468"}, "latest_revision": 1, "key": "/works/OL10592155W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4403435A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10592296W 1 2009-12-11T03:13:57.491468 {"title": "Gunstock-finishing and care", "created": {"type": "/type/datetime", "value": "2009-12-11T03:13:57.491468"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:13:57.491468"}, "latest_revision": 1, "key": "/works/OL10592296W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4403507A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10592604W 1 2009-12-11T03:14:03.127951 {"title": "Some trees stand", "created": {"type": "/type/datetime", "value": "2009-12-11T03:14:03.127951"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:14:03.127951"}, "latest_revision": 1, "key": "/works/OL10592604W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4403645A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10592610W 1 2009-12-11T03:14:03.127951 {"title": "Profitable freelance journalism", "created": {"type": "/type/datetime", "value": "2009-12-11T03:14:03.127951"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:14:03.127951"}, "latest_revision": 1, "key": "/works/OL10592610W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4403648A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10592777W 1 2009-12-11T03:14:03.127951 {"title": "L' adultera senza volto", "created": {"type": "/type/datetime", "value": "2009-12-11T03:14:03.127951"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:14:03.127951"}, "latest_revision": 1, "key": "/works/OL10592777W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4403710A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10592830W 4 2011-02-12T00:42:50.623516 {"title": "The Complaint: On Life, Death, and Immortality. To which is Added, a ..", "created": {"type": "/type/datetime", "value": "2009-12-11T03:14:03.127951"}, "covers": [6148037], "last_modified": {"type": "/type/datetime", "value": "2011-02-12T00:42:50.623516"}, "latest_revision": 4, "key": "/works/OL10592830W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL185057A"}}], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL10592964W 2 2010-01-17T20:03:02.171005 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:14:03.127951"}, "title": "Country contentments", "subject_places": ["England"], "last_modified": {"type": "/type/datetime", "value": "2010-01-17T20:03:02.171005"}, "latest_revision": 2, "key": "/works/OL10592964W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4403788A"}}], "type": {"key": "/type/work"}, "subjects": ["Country life"], "revision": 2}
+/type/work /works/OL10593119W 1 2009-12-11T03:14:03.127951 {"title": "The remains of Ancient Rome", "created": {"type": "/type/datetime", "value": "2009-12-11T03:14:03.127951"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:14:03.127951"}, "latest_revision": 1, "key": "/works/OL10593119W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4403888A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10593178W 2 2010-01-17T20:03:02.171005 {"title": "Die Instrumentalmusik Giovanni Gabrielis", "created": {"type": "/type/datetime", "value": "2009-12-11T03:14:03.127951"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-17T20:03:02.171005"}, "latest_revision": 2, "key": "/works/OL10593178W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4403927A"}}], "subject_people": ["Giovanni Gabrieli (ca. 1555-1612)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10593230W 1 2009-12-11T03:14:03.127951 {"title": "Die Aegyptischen Denkmaeler in Miramar", "created": {"type": "/type/datetime", "value": "2009-12-11T03:14:03.127951"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:14:03.127951"}, "latest_revision": 1, "key": "/works/OL10593230W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4403962A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10593907W 1 2009-12-11T03:14:18.536737 {"title": "Avtomatizatsiya v bibliotekakh", "created": {"type": "/type/datetime", "value": "2009-12-11T03:14:18.536737"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:14:18.536737"}, "latest_revision": 1, "key": "/works/OL10593907W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4404368A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10594119W 1 2009-12-11T03:14:18.536737 {"title": "An attempt at a bibliography of Cyprus ...", "created": {"type": "/type/datetime", "value": "2009-12-11T03:14:18.536737"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:14:18.536737"}, "latest_revision": 1, "key": "/works/OL10594119W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4404503A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10594156W 1 2009-12-11T03:14:18.536737 {"title": "Statistical variance investigation decision models", "created": {"type": "/type/datetime", "value": "2009-12-11T03:14:18.536737"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:14:18.536737"}, "latest_revision": 1, "key": "/works/OL10594156W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4404532A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10594166W 2 2011-06-01T13:13:48.053233 {"title": "His Majesties most gracious declaration...11 November 1647...directed to be communicated to the Speaker of the House of Lords pro tempore, and to be communicated unto the Lords and Commons in Parliament..", "created": {"type": "/type/datetime", "value": "2009-12-11T03:14:18.536737"}, "last_modified": {"type": "/type/datetime", "value": "2011-06-01T13:13:48.053233"}, "latest_revision": 2, "key": "/works/OL10594166W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL367851A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10594218W 5 2021-11-02T03:50:35.255509 {"title": "My life on the plains", "key": "/works/OL10594218W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL357472A"}}], "subject_people": ["George A. Custer (1839-1876)"], "type": {"key": "/type/work"}, "subjects": ["Custer, George A. -- 1839-1876.", "Custer, george a. (george armstrong), 1839-1876"], "covers": [9480600], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2009-12-11T03:14:18.536737"}, "last_modified": {"type": "/type/datetime", "value": "2021-11-02T03:50:35.255509"}}
+/type/work /works/OL10594454W 1 2009-12-11T03:14:18.536737 {"title": "La FAPA re volution verte", "created": {"type": "/type/datetime", "value": "2009-12-11T03:14:18.536737"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:14:18.536737"}, "latest_revision": 1, "key": "/works/OL10594454W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4404762A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10594751W 2 2022-11-15T07:37:45.401732 {"title": "Ya prishel dat' vam volyu", "key": "/works/OL10594751W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL91053A"}}], "type": {"key": "/type/work"}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T03:14:25.322628"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-15T07:37:45.401732"}}
+/type/work /works/OL10594879W 1 2009-12-11T03:14:25.322628 {"title": "Morphology of sensory corpuscles in mammals", "created": {"type": "/type/datetime", "value": "2009-12-11T03:14:25.322628"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:14:25.322628"}, "latest_revision": 1, "key": "/works/OL10594879W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4405030A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10594888W 1 2009-12-11T03:14:25.322628 {"title": "Orthopaedics for practitioners", "created": {"type": "/type/datetime", "value": "2009-12-11T03:14:25.322628"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:14:25.322628"}, "latest_revision": 1, "key": "/works/OL10594888W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4405039A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10595545W 1 2009-12-11T03:14:37.786148 {"title": "On the potential for local and indigenous economic development agglomerations, networks and entrepreneurial activity", "created": {"type": "/type/datetime", "value": "2009-12-11T03:14:37.786148"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:14:37.786148"}, "latest_revision": 1, "key": "/works/OL10595545W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4405422A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10595630W 1 2009-12-11T03:14:37.786148 {"title": "Biofilm formation and destruction on simulated heat transfer surfaces", "created": {"type": "/type/datetime", "value": "2009-12-11T03:14:37.786148"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:14:37.786148"}, "latest_revision": 1, "key": "/works/OL10595630W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4405499A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10595667W 3 2020-10-13T15:55:54.802004 {"last_modified": {"type": "/type/datetime", "value": "2020-10-13T15:55:54.802004"}, "title": "Know your body", "created": {"type": "/type/datetime", "value": "2009-12-11T03:14:37.786148"}, "subjects": ["Physiology", "Human body", "Human physiology"], "latest_revision": 3, "key": "/works/OL10595667W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4405532A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10595895W 2 2010-01-17T20:08:01.374060 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:14:37.786148"}, "title": "Historia de Extremadura", "subject_places": ["Estremadura (Spain)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-17T20:08:01.374060"}, "latest_revision": 2, "key": "/works/OL10595895W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4405726A"}}], "type": {"key": "/type/work"}, "subjects": ["History"], "revision": 2}
+/type/work /works/OL10596018W 2 2020-12-08T05:26:27.972341 {"title": "Aventuras no mundo da arte", "key": "/works/OL10596018W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4405802A"}}], "type": {"key": "/type/work"}, "subjects": ["Modern Art", "Motion pictures"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T03:14:37.786148"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-08T05:26:27.972341"}}
+/type/work /works/OL10596100W 1 2009-12-11T03:14:37.786148 {"title": "Istoriografiya istorii SSSR v period zaversheniya sotsialisticheskogo stroitel'stva v SSSR", "created": {"type": "/type/datetime", "value": "2009-12-11T03:14:37.786148"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:14:37.786148"}, "latest_revision": 1, "key": "/works/OL10596100W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4405846A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10596273W 1 2009-12-11T03:14:37.786148 {"title": "Kontraktatsiya i proizvodstvennaya pomoshch' bednote", "created": {"type": "/type/datetime", "value": "2009-12-11T03:14:37.786148"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:14:37.786148"}, "latest_revision": 1, "key": "/works/OL10596273W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4405958A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1059672W 3 2020-11-27T08:56:23.910536 {"description": {"type": "/type/text", "value": "Values in Hindi novels of the 20th century; a study."}, "last_modified": {"type": "/type/datetime", "value": "2020-11-27T08:56:23.910536"}, "latest_revision": 3, "key": "/works/OL1059672W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL106631A"}}], "created": {"type": "/type/datetime", "value": "2009-12-09T20:19:08.218932"}, "title": "Hindi\u0304 ke a\u0304n\u0303calika upanya\u0304som\u0323 mem\u0323 mu\u0304lya-san\u0307kraman\u0323a", "subjects": ["Values in literature", "History and criticism", "Hindi fiction"], "subject_times": ["20th century"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10596924W 2 2010-01-17T20:08:01.374060 {"title": "Wilfred Owen", "created": {"type": "/type/datetime", "value": "2009-12-11T03:14:46.592539"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-17T20:08:01.374060"}, "latest_revision": 2, "key": "/works/OL10596924W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4406457A"}}], "subject_people": ["Wilfred Owen (1893-1918)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10597110W 1 2009-12-11T03:14:46.592539 {"title": "The building and testing of a simple electrodynamometer", "created": {"type": "/type/datetime", "value": "2009-12-11T03:14:46.592539"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:14:46.592539"}, "latest_revision": 1, "key": "/works/OL10597110W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4406634A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10597811W 1 2009-12-11T03:14:53.824168 {"title": "An English country town 500 years ago", "created": {"type": "/type/datetime", "value": "2009-12-11T03:14:53.824168"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:14:53.824168"}, "latest_revision": 1, "key": "/works/OL10597811W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4407106A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10597833W 1 2009-12-11T03:14:53.824168 {"title": "Mineral planning appeals in Great Britain 1981", "created": {"type": "/type/datetime", "value": "2009-12-11T03:14:53.824168"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:14:53.824168"}, "latest_revision": 1, "key": "/works/OL10597833W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4407112A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10597941W 1 2009-12-11T03:14:53.824168 {"title": "Fisheries, resources of the sea and their management", "created": {"type": "/type/datetime", "value": "2009-12-11T03:14:53.824168"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:14:53.824168"}, "latest_revision": 1, "key": "/works/OL10597941W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4407149A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10598117W 1 2009-12-11T03:14:53.824168 {"title": "America and Russia", "created": {"type": "/type/datetime", "value": "2009-12-11T03:14:53.824168"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:14:53.824168"}, "latest_revision": 1, "key": "/works/OL10598117W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4407286A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10598699W 1 2009-12-11T03:15:00.273127 {"title": "Her vote", "created": {"type": "/type/datetime", "value": "2009-12-11T03:15:00.273127"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:15:00.273127"}, "latest_revision": 1, "key": "/works/OL10598699W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4407654A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10598750W 1 2009-12-11T03:15:00.273127 {"title": "Dancing Dervish", "created": {"type": "/type/datetime", "value": "2009-12-11T03:15:00.273127"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:15:00.273127"}, "latest_revision": 1, "key": "/works/OL10598750W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4407689A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10598849W 1 2009-12-11T03:15:00.273127 {"title": "Elementary biochemistry", "created": {"type": "/type/datetime", "value": "2009-12-11T03:15:00.273127"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:15:00.273127"}, "latest_revision": 1, "key": "/works/OL10598849W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4407745A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10599697W 1 2009-12-11T03:15:06.785355 {"title": "Political portraits", "created": {"type": "/type/datetime", "value": "2009-12-11T03:15:06.785355"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:15:06.785355"}, "latest_revision": 1, "key": "/works/OL10599697W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4408208A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10600007W 1 2009-12-11T03:15:06.785355 {"title": "What is a revolution? and what are the signs of its approach", "created": {"type": "/type/datetime", "value": "2009-12-11T03:15:06.785355"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:15:06.785355"}, "latest_revision": 1, "key": "/works/OL10600007W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4408385A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1060000W 2 2020-11-23T02:03:30.260982 {"description": {"type": "/type/text", "value": "Novel based on life in the jail."}, "title": "Pagali\u0304 ghan\u0323t\u0323i\u0304", "created": {"type": "/type/datetime", "value": "2009-12-09T20:19:08.218932"}, "last_modified": {"type": "/type/datetime", "value": "2020-11-23T02:03:30.260982"}, "latest_revision": 2, "key": "/works/OL1060000W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL106724A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10600172W 1 2009-12-11T03:15:06.785355 {"title": "Das angebliche Recht auf Arbeit", "created": {"type": "/type/datetime", "value": "2009-12-11T03:15:06.785355"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:15:06.785355"}, "latest_revision": 1, "key": "/works/OL10600172W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4408486A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1060023W 4 2020-11-30T05:38:19.992191 {"description": {"type": "/type/text", "value": "Study of consumer culture based on advertising of products on television; study with special reference to India."}, "last_modified": {"type": "/type/datetime", "value": "2020-11-30T05:38:19.992191"}, "latest_revision": 4, "key": "/works/OL1060023W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL106731A"}}], "created": {"type": "/type/datetime", "value": "2009-12-09T20:19:08.218932"}, "title": "Breka ke ba\u0304da", "subject_places": ["India"], "subjects": ["Television advertising", "Social aspects", "Advertising", "Social aspects of Advertising"], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL10600599W 1 2009-12-11T03:15:13.919413 {"title": "The ancient burial-mounds of England", "created": {"type": "/type/datetime", "value": "2009-12-11T03:15:13.919413"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:15:13.919413"}, "latest_revision": 1, "key": "/works/OL10600599W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4408717A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10601118W 2 2012-06-27T18:46:36.465097 {"title": "El papel del turismo en la sociedad espa\u00f1ola hoy", "created": {"type": "/type/datetime", "value": "2009-12-11T03:15:13.919413"}, "last_modified": {"type": "/type/datetime", "value": "2012-06-27T18:46:36.465097"}, "latest_revision": 2, "key": "/works/OL10601118W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4409052A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10601333W 1 2009-12-11T03:15:13.919413 {"title": "Minor medical mysteries", "created": {"type": "/type/datetime", "value": "2009-12-11T03:15:13.919413"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:15:13.919413"}, "latest_revision": 1, "key": "/works/OL10601333W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4409214A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10601437W 1 2009-12-11T03:15:13.919413 {"title": "Primera part de la historia de Valencia (Valencia 1538)", "created": {"type": "/type/datetime", "value": "2009-12-11T03:15:13.919413"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:15:13.919413"}, "latest_revision": 1, "key": "/works/OL10601437W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4409270A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10601451W 1 2009-12-11T03:15:13.919413 {"title": "Del Gibraltar ingles", "created": {"type": "/type/datetime", "value": "2009-12-11T03:15:13.919413"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:15:13.919413"}, "latest_revision": 1, "key": "/works/OL10601451W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4409279A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10602405W 1 2009-12-11T03:15:20.586385 {"title": "Marie Corelli", "created": {"type": "/type/datetime", "value": "2009-12-11T03:15:20.586385"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:15:20.586385"}, "latest_revision": 1, "key": "/works/OL10602405W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4409830A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1060282W 3 2021-09-15T12:26:27.883970 {"title": "Albumin as the Major Plasma Protein Transporting Metals", "key": "/works/OL1060282W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL106792A"}}], "type": {"key": "/type/work"}, "subjects": ["Life (biology)"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-09T20:19:08.218932"}, "last_modified": {"type": "/type/datetime", "value": "2021-09-15T12:26:27.883970"}}
+/type/work /works/OL10603047W 1 2009-12-11T03:15:27.212085 {"title": "Energy and nutrient intakes, and food choices of children taking a school meal", "created": {"type": "/type/datetime", "value": "2009-12-11T03:15:27.212085"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:15:27.212085"}, "latest_revision": 1, "key": "/works/OL10603047W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4410132A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10603121W 1 2009-12-11T03:15:27.212085 {"title": "Quality", "created": {"type": "/type/datetime", "value": "2009-12-11T03:15:27.212085"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:15:27.212085"}, "latest_revision": 1, "key": "/works/OL10603121W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4410171A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10603233W 1 2009-12-11T03:15:27.212085 {"title": "A primer of socialism", "created": {"type": "/type/datetime", "value": "2009-12-11T03:15:27.212085"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:15:27.212085"}, "latest_revision": 1, "key": "/works/OL10603233W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4410235A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10603735W 1 2009-12-11T03:15:33.466511 {"title": "The national planning and direction of further education", "created": {"type": "/type/datetime", "value": "2009-12-11T03:15:33.466511"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:15:33.466511"}, "latest_revision": 1, "key": "/works/OL10603735W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4410529A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10603920W 2 2010-01-17T20:35:04.174326 {"title": "Il Duce visto da Mussolini", "created": {"type": "/type/datetime", "value": "2009-12-11T03:15:33.466511"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-17T20:35:04.174326"}, "latest_revision": 2, "key": "/works/OL10603920W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4410650A"}}], "subject_people": ["Benito Mussolini"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL1060435W 2 2010-01-17T20:35:04.174326 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:19:36.185780"}, "title": "Report of Asian Seminar For Law Schools on Delivery of Legal Services for the Rural Poor and Other Disadvantaged Groups, 8-13 April, 1990, Bangalore, India", "subject_places": ["India"], "last_modified": {"type": "/type/datetime", "value": "2010-01-17T20:35:04.174326"}, "latest_revision": 2, "key": "/works/OL1060435W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL106839A"}}], "type": {"key": "/type/work"}, "subjects": ["Congresses", "Legal assistance to rural poor"], "revision": 2}
+/type/work /works/OL106047W 13 2022-11-18T16:45:23.033272 {"subjects": ["Short stories", "Manners and customs", "English Short stories", "Fiction", "New York Times reviewed", "British and irish fiction (fictional works by one author)"], "key": "/works/OL106047W", "title": "The last word and other stories", "authors": [{"author": {"key": "/authors/OL20243A"}, "type": {"key": "/type/author_role"}}], "type": {"key": "/type/work"}, "covers": [4038818], "links": [{"title": "New York Times review", "url": "http://www.nytimes.com/1991/02/06/books/books-of-the-times-short-stories-spanning-graham-greene-s-career.html", "type": {"key": "/type/link"}}], "description": {"type": "/type/text", "value": "The old man was only a little surprised, because he was by now well accustomed to inexplicable events, when he received at the hands of a stranger, a passport in a name which was not his own, a visa and an exit permit for a country which he had never expected or even desired to visit. He was indeed very old, and he was accustomed to the narrow life he had led alone without human contacts: he had even found a kind of happiness in deprivation. He had a single room to live and sleep in, a small kitchen and a bathroom. Once a month there came a small but sufficient pension which arrive from from Somewhere, but he didn't know where. Perhaps it was connected with the accident years before which had robbed him of his memory. All that had remained in his mind of that occasion was a sharp noise, a flash like lightening and then a long darkness full of confusing dreams from which he finally work in the same small room that he lived in now."}, "latest_revision": 13, "revision": 13, "created": {"type": "/type/datetime", "value": "2009-10-17T21:25:07.728178"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-18T16:45:23.033272"}}
+/type/work /works/OL10604911W 1 2009-12-11T03:15:38.622150 {"title": "Homesteading at Glenelg Quadrant, Glasgow", "created": {"type": "/type/datetime", "value": "2009-12-11T03:15:38.622150"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:15:38.622150"}, "latest_revision": 1, "key": "/works/OL10604911W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4411144A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10605393W 1 2009-12-11T03:15:38.622150 {"title": "Construction me tallique", "created": {"type": "/type/datetime", "value": "2009-12-11T03:15:38.622150"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:15:38.622150"}, "latest_revision": 1, "key": "/works/OL10605393W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4411395A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10605445W 1 2009-12-11T03:15:38.622150 {"title": "Terra incognita", "created": {"type": "/type/datetime", "value": "2009-12-11T03:15:38.622150"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:15:38.622150"}, "latest_revision": 1, "key": "/works/OL10605445W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4411440A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10605656W 1 2009-12-11T03:15:44.124845 {"title": "The effects of urban redevelopment and renewal on small manufacturing firms in Birmingham", "created": {"type": "/type/datetime", "value": "2009-12-11T03:15:44.124845"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:15:44.124845"}, "latest_revision": 1, "key": "/works/OL10605656W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4411540A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10605668W 1 2009-12-11T03:15:44.124845 {"title": "Strategies and pressures in the selection process for community service orders", "created": {"type": "/type/datetime", "value": "2009-12-11T03:15:44.124845"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:15:44.124845"}, "latest_revision": 1, "key": "/works/OL10605668W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4411552A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10605752W 4 2022-11-18T00:11:37.209635 {"title": "David's puppy", "key": "/works/OL10605752W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2668583A"}}], "subject_times": ["1950-"], "type": {"key": "/type/work"}, "subjects": ["Readers", "Children's fiction", "Dogs, fiction"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T03:15:44.124845"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-18T00:11:37.209635"}}
+/type/work /works/OL10605928W 2 2020-08-18T14:48:29.135595 {"last_modified": {"type": "/type/datetime", "value": "2020-08-18T14:48:29.135595"}, "title": "Restoration, revolution, reaction", "created": {"type": "/type/datetime", "value": "2009-12-11T03:15:44.124845"}, "subjects": ["Germany, economic conditions", "Germany, politics and government, 1789-1900"], "latest_revision": 2, "key": "/works/OL10605928W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4411659A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL1060607W 3 2020-12-03T11:04:40.988988 {"title": "Galapa adhiaina", "key": "/works/OL1060607W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL106900A"}}], "type": {"key": "/type/work"}, "subjects": ["Panjabi fiction", "History and criticism"], "description": {"type": "/type/text", "value": "Articles on Panjabi fiction."}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-09T20:19:36.185780"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-03T11:04:40.988988"}}
+/type/work /works/OL1060610W 1 2009-12-09T19:56:36.569265 {"title": "Janarala sa\u0304haba", "created": {"type": "/type/datetime", "value": "2009-12-09T19:56:36.569265"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:56:36.569265"}, "latest_revision": 1, "key": "/works/OL1060610W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL106901A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10606579W 1 2009-12-11T03:15:55.797634 {"title": "Possibilities of increasing world food production", "created": {"type": "/type/datetime", "value": "2009-12-11T03:15:55.797634"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:15:55.797634"}, "latest_revision": 1, "key": "/works/OL10606579W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4412015A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10607003W 1 2009-12-11T03:15:55.797634 {"title": "Des causes de la corruption du gout", "created": {"type": "/type/datetime", "value": "2009-12-11T03:15:55.797634"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:15:55.797634"}, "latest_revision": 1, "key": "/works/OL10607003W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4412215A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10607660W 1 2009-12-11T03:16:03.348354 {"title": "Noveloj", "created": {"type": "/type/datetime", "value": "2009-12-11T03:16:03.348354"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:16:03.348354"}, "latest_revision": 1, "key": "/works/OL10607660W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4412656A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10607674W 1 2009-12-11T03:16:03.348354 {"title": "Valitut teokset", "created": {"type": "/type/datetime", "value": "2009-12-11T03:16:03.348354"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:16:03.348354"}, "latest_revision": 1, "key": "/works/OL10607674W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4412664A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10607929W 1 2009-12-11T03:16:03.348354 {"title": "Norsk papirleksikon", "created": {"type": "/type/datetime", "value": "2009-12-11T03:16:03.348354"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:16:03.348354"}, "latest_revision": 1, "key": "/works/OL10607929W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4412812A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10608734W 1 2009-12-11T03:16:11.468104 {"title": "Comparative studies on malic enzyme", "created": {"type": "/type/datetime", "value": "2009-12-11T03:16:11.468104"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:16:11.468104"}, "latest_revision": 1, "key": "/works/OL10608734W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4413410A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10608867W 1 2009-12-11T03:16:11.468104 {"title": "The Gothic Novels of the Radcliffe School", "created": {"type": "/type/datetime", "value": "2009-12-11T03:16:11.468104"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:16:11.468104"}, "latest_revision": 1, "key": "/works/OL10608867W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4413531A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10608889W 1 2009-12-11T03:16:11.468104 {"title": "Simultaneous measurements of electrical conductivity and thermoelectric power of fluid mercury at hightemperatures and pressures", "created": {"type": "/type/datetime", "value": "2009-12-11T03:16:11.468104"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:16:11.468104"}, "latest_revision": 1, "key": "/works/OL10608889W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4413553A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10609124W 2 2010-01-17T21:05:33.052720 {"title": "The autobiography", "created": {"type": "/type/datetime", "value": "2009-12-11T03:16:11.468104"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-17T21:05:33.052720"}, "latest_revision": 2, "key": "/works/OL10609124W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4413771A"}}], "subject_people": ["John Martin-Harvey Sir"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10609461W 1 2009-12-11T03:16:11.468104 {"title": "Ga rden", "created": {"type": "/type/datetime", "value": "2009-12-11T03:16:11.468104"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:16:11.468104"}, "latest_revision": 1, "key": "/works/OL10609461W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4413993A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10609764W 2 2010-12-03T13:02:03.845026 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:02:03.845026"}, "title": "The almoner", "created": {"type": "/type/datetime", "value": "2009-12-11T03:16:16.902596"}, "subjects": ["Almoners", "Medical social work"], "latest_revision": 2, "key": "/works/OL10609764W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4414193A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10609961W 1 2009-12-11T03:16:16.902596 {"title": "Children's bookweek handbook", "created": {"type": "/type/datetime", "value": "2009-12-11T03:16:16.902596"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:16:16.902596"}, "latest_revision": 1, "key": "/works/OL10609961W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4414324A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10610608W 1 2009-12-11T03:16:22.612736 {"title": "The golden land", "created": {"type": "/type/datetime", "value": "2009-12-11T03:16:22.612736"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:16:22.612736"}, "latest_revision": 1, "key": "/works/OL10610608W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4414650A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10611177W 2 2010-01-17T21:34:00.765280 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:16:22.612736"}, "title": "The kingdom and people of Siam", "last_modified": {"type": "/type/datetime", "value": "2010-01-17T21:34:00.765280"}, "latest_revision": 2, "key": "/works/OL10611177W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4414972A"}}], "type": {"key": "/type/work"}, "subjects": ["Thailand", "Description and travel"], "revision": 2}
+/type/work /works/OL10611288W 2 2010-10-24T06:25:55.898726 {"title": "Ateliers", "created": {"type": "/type/datetime", "value": "2009-12-11T03:16:22.612736"}, "last_modified": {"type": "/type/datetime", "value": "2010-10-24T06:25:55.898726"}, "latest_revision": 2, "key": "/works/OL10611288W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL430425A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10611351W 1 2009-12-11T03:16:22.612736 {"title": "The communicative approach to language teaching and its implications for syllabus design in Libya", "created": {"type": "/type/datetime", "value": "2009-12-11T03:16:22.612736"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:16:22.612736"}, "latest_revision": 1, "key": "/works/OL10611351W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4415095A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10611382W 1 2009-12-11T03:16:22.612736 {"title": "The tenth muse", "created": {"type": "/type/datetime", "value": "2009-12-11T03:16:22.612736"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:16:22.612736"}, "latest_revision": 1, "key": "/works/OL10611382W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4415109A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10611660W 3 2014-01-19T00:45:47.075755 {"title": "In conversation", "created": {"type": "/type/datetime", "value": "2009-12-11T03:16:28.831229"}, "last_modified": {"type": "/type/datetime", "value": "2014-01-19T00:45:47.075755"}, "latest_revision": 3, "key": "/works/OL10611660W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL443337A"}}], "subject_people": ["W. V. Quine (1908-)"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10611845W 1 2009-12-11T03:16:28.831229 {"title": "The mass", "created": {"type": "/type/datetime", "value": "2009-12-11T03:16:28.831229"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:16:28.831229"}, "latest_revision": 1, "key": "/works/OL10611845W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4415380A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1061203W 2 2020-11-04T06:40:16.559905 {"description": {"type": "/type/text", "value": "Transcript of lectures on the life and work of Ve\u0304mana, Telugu poet."}, "title": "Ve\u0304mana", "created": {"type": "/type/datetime", "value": "2009-12-09T20:19:36.185780"}, "last_modified": {"type": "/type/datetime", "value": "2020-11-04T06:40:16.559905"}, "latest_revision": 2, "key": "/works/OL1061203W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL107041A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10612040W 5 2020-02-28T04:38:28.775377 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:16:28.831229"}, "subject_people": ["Ingmar Bergman (1918-)"], "key": "/works/OL10612040W", "title": "Ingmar Bergman directs", "latest_revision": 5, "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4415473A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-02-28T04:38:28.775377"}, "covers": [8371621], "revision": 5}
+/type/work /works/OL10612749W 1 2009-12-11T03:16:33.775004 {"title": "Kostu mschnitte und gewandformen", "created": {"type": "/type/datetime", "value": "2009-12-11T03:16:33.775004"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:16:33.775004"}, "latest_revision": 1, "key": "/works/OL10612749W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4415802A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10612922W 1 2009-12-11T03:16:33.775004 {"title": "Essays classical", "created": {"type": "/type/datetime", "value": "2009-12-11T03:16:33.775004"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:16:33.775004"}, "latest_revision": 1, "key": "/works/OL10612922W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4415892A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10613071W 1 2009-12-11T03:16:33.775004 {"title": "Goryachii sneg", "created": {"type": "/type/datetime", "value": "2009-12-11T03:16:33.775004"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:16:33.775004"}, "latest_revision": 1, "key": "/works/OL10613071W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4415965A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10613169W 1 2009-12-11T03:16:33.775004 {"title": "Bibliotheca madrigaliana", "created": {"type": "/type/datetime", "value": "2009-12-11T03:16:33.775004"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:16:33.775004"}, "latest_revision": 1, "key": "/works/OL10613169W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4415987A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1061319W 1 2009-12-09T19:56:36.569265 {"title": "Nirvacana ratnagarbha Ra\u0304ma\u0304yan\u0323amu", "created": {"type": "/type/datetime", "value": "2009-12-09T19:56:36.569265"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:56:36.569265"}, "latest_revision": 1, "key": "/works/OL1061319W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL107078A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10613208W 2 2021-09-09T05:16:32.177201 {"title": "An act of terror", "key": "/works/OL10613208W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4416013A"}}], "type": {"key": "/type/work"}, "subjects": ["South africa, fiction", "Terrorism, fiction", "Fiction, action & adventure"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T03:16:33.775004"}, "last_modified": {"type": "/type/datetime", "value": "2021-09-09T05:16:32.177201"}}
+/type/work /works/OL10613269W 1 2009-12-11T03:16:33.775004 {"title": "Salim ke nam khutur", "created": {"type": "/type/datetime", "value": "2009-12-11T03:16:33.775004"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:16:33.775004"}, "latest_revision": 1, "key": "/works/OL10613269W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4416049A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10613365W 1 2009-12-11T03:16:33.775004 {"title": "Rolf the imprudent", "created": {"type": "/type/datetime", "value": "2009-12-11T03:16:33.775004"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:16:33.775004"}, "latest_revision": 1, "key": "/works/OL10613365W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4416073A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10613570W 1 2009-12-11T03:16:38.229415 {"title": "Frome in the sixteenth century and street names of Frome", "created": {"type": "/type/datetime", "value": "2009-12-11T03:16:38.229415"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:16:38.229415"}, "latest_revision": 1, "key": "/works/OL10613570W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4416204A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10613771W 3 2013-12-11T19:49:28.840677 {"title": "Drawings of Gainsborough", "created": {"type": "/type/datetime", "value": "2009-12-11T03:16:38.229415"}, "last_modified": {"type": "/type/datetime", "value": "2013-12-11T19:49:28.840677"}, "latest_revision": 3, "key": "/works/OL10613771W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1579855A"}}], "subject_people": ["Thomas Gainsborough (1727-1788)"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10613785W 1 2009-12-11T03:16:38.229415 {"title": "Renaissance architecture in England", "created": {"type": "/type/datetime", "value": "2009-12-11T03:16:38.229415"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:16:38.229415"}, "latest_revision": 1, "key": "/works/OL10613785W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4416334A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1061386W 2 2020-12-03T11:20:40.589975 {"title": "Indumati\u0304 parin\u0323ayamu", "key": "/works/OL1061386W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL107099A"}}], "type": {"key": "/type/work"}, "description": {"type": "/type/text", "value": "Based on Raghuvam\u0323s\u0301a by Ka\u0304lida\u0304sa."}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-09T20:19:55.735988"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-03T11:20:40.589975"}}
+/type/work /works/OL10613913W 3 2022-12-03T11:40:33.978100 {"title": "Pugilistica", "key": "/works/OL10613913W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4416394A"}}], "type": {"key": "/type/work"}, "covers": [11255472], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T03:16:38.229415"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-03T11:40:33.978100"}}
+/type/work /works/OL10613951W 1 2009-12-11T03:16:38.229415 {"title": "Bedminster 1861 census RG9 1703-06", "created": {"type": "/type/datetime", "value": "2009-12-11T03:16:38.229415"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:16:38.229415"}, "latest_revision": 1, "key": "/works/OL10613951W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4416419A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1061407W 1 2009-12-09T19:56:57.252514 {"title": "Shera baha\u0304dara Shera Sin\u0307gha", "created": {"type": "/type/datetime", "value": "2009-12-09T19:56:57.252514"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:56:57.252514"}, "latest_revision": 1, "key": "/works/OL1061407W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL107103A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1061425W 2 2010-01-17T21:34:00.765280 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:19:55.735988"}, "title": "Sri\u0304 guru\u0304 pantha praka\u0304sha", "last_modified": {"type": "/type/datetime", "value": "2010-01-17T21:34:00.765280"}, "latest_revision": 2, "key": "/works/OL1061425W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL107105A"}}], "type": {"key": "/type/work"}, "subjects": ["Sikh gurus", "Poetry"], "revision": 2}
+/type/work /works/OL10614320W 3 2010-12-04T04:41:17.289974 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:16:38.229415"}, "subject_places": ["England", "Glastonbury"], "subjects": ["Abbeys", "Glastonbury Abbey", "Guidebooks"], "latest_revision": 3, "key": "/works/OL10614320W", "title": "Guide to Glastonbury Abbey", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4416512A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-04T04:41:17.289974"}, "revision": 3}
+/type/work /works/OL10614424W 1 2009-12-11T03:16:38.229415 {"title": "Pattar te Darya", "created": {"type": "/type/datetime", "value": "2009-12-11T03:16:38.229415"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:16:38.229415"}, "latest_revision": 1, "key": "/works/OL10614424W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4416551A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1061452W 1 2009-12-09T19:56:57.252514 {"title": "Si\u0304tala-baha\u0304ra\u0304m\u0323", "created": {"type": "/type/datetime", "value": "2009-12-09T19:56:57.252514"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:56:57.252514"}, "latest_revision": 1, "key": "/works/OL1061452W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL107106A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10614944W 1 2009-12-11T03:16:42.366766 {"title": "Ashir dashake Bangladesher samaj", "created": {"type": "/type/datetime", "value": "2009-12-11T03:16:42.366766"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:16:42.366766"}, "latest_revision": 1, "key": "/works/OL10614944W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4416736A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10614985W 1 2009-12-11T03:16:42.366766 {"title": "Matrutwa ane baluchher", "created": {"type": "/type/datetime", "value": "2009-12-11T03:16:42.366766"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:16:42.366766"}, "latest_revision": 1, "key": "/works/OL10614985W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4416747A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10615399W 2 2022-03-16T20:06:29.532619 {"title": "Dash din pare", "key": "/works/OL10615399W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL942A"}}], "type": {"key": "/type/work"}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T03:16:42.366766"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-16T20:06:29.532619"}}
+/type/work /works/OL10615883W 1 2009-12-11T03:16:52.999032 {"title": "Sehat bakhsh moqari gazaein", "created": {"type": "/type/datetime", "value": "2009-12-11T03:16:52.999032"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:16:52.999032"}, "latest_revision": 1, "key": "/works/OL10615883W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4417111A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10616493W 1 2009-12-11T03:16:52.999032 {"title": "Nurse Lorna'slove song", "created": {"type": "/type/datetime", "value": "2009-12-11T03:16:52.999032"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:16:52.999032"}, "latest_revision": 1, "key": "/works/OL10616493W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4417357A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10616601W 2 2012-05-27T05:31:36.298941 {"title": "Fool's gold", "created": {"type": "/type/datetime", "value": "2009-12-11T03:17:01.603437"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-27T05:31:36.298941"}, "latest_revision": 2, "key": "/works/OL10616601W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4417387A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10616648W 2 2022-03-24T23:53:56.720107 {"title": "Eyes at the window", "key": "/works/OL10616648W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2187908A"}}], "type": {"key": "/type/work"}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T03:17:01.603437"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-24T23:53:56.720107"}}
+/type/work /works/OL10616754W 1 2009-12-11T03:17:01.603437 {"title": "And China lay sleeping", "created": {"type": "/type/datetime", "value": "2009-12-11T03:17:01.603437"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:17:01.603437"}, "latest_revision": 1, "key": "/works/OL10616754W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4417490A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10616889W 1 2009-12-11T03:17:01.603437 {"title": "Jia mian tian shi", "created": {"type": "/type/datetime", "value": "2009-12-11T03:17:01.603437"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:17:01.603437"}, "latest_revision": 1, "key": "/works/OL10616889W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4417529A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10617234W 2 2017-05-16T11:51:12.530796 {"title": "Cezanne posterbook", "created": {"type": "/type/datetime", "value": "2009-12-11T03:17:01.603437"}, "last_modified": {"type": "/type/datetime", "value": "2017-05-16T11:51:12.530796"}, "latest_revision": 2, "key": "/works/OL10617234W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL61814A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10617235W 3 2017-05-16T11:51:12.530796 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:17:01.603437"}, "subjects": ["Expositions", "Exhibitions"], "subject_people": ["Paul C\u00e9zanne (1839-1906)", "Paul Cezanne (1839-1906)"], "key": "/works/OL10617235W", "title": "C\u00e9zanne", "latest_revision": 3, "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL61814A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2017-05-16T11:51:12.530796"}, "revision": 3}
+/type/work /works/OL10617410W 1 2009-12-11T03:17:01.603437 {"title": "Zhe shuang shou sui ran xiao", "created": {"type": "/type/datetime", "value": "2009-12-11T03:17:01.603437"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:17:01.603437"}, "latest_revision": 1, "key": "/works/OL10617410W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4417668A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10617446W 1 2009-12-11T03:17:01.603437 {"title": "Huo shao xin", "created": {"type": "/type/datetime", "value": "2009-12-11T03:17:01.603437"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:17:01.603437"}, "latest_revision": 1, "key": "/works/OL10617446W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4417678A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10617949W 1 2009-12-11T03:17:07.319445 {"title": "Fazaile sadkat", "created": {"type": "/type/datetime", "value": "2009-12-11T03:17:07.319445"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:17:07.319445"}, "latest_revision": 1, "key": "/works/OL10617949W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4417873A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10618121W 1 2009-12-11T03:17:07.319445 {"title": "Paighambar e insaniyat", "created": {"type": "/type/datetime", "value": "2009-12-11T03:17:07.319445"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:17:07.319445"}, "latest_revision": 1, "key": "/works/OL10618121W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4417986A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10618338W 1 2009-12-11T03:17:07.319445 {"title": "Barud", "created": {"type": "/type/datetime", "value": "2009-12-11T03:17:07.319445"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:17:07.319445"}, "latest_revision": 1, "key": "/works/OL10618338W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4418087A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10618472W 3 2010-04-28T07:13:24.349481 {"title": "Champa Kali", "created": {"type": "/type/datetime", "value": "2009-12-11T03:17:07.319445"}, "covers": [5722047], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:13:24.349481"}, "latest_revision": 3, "key": "/works/OL10618472W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4418123A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10618546W 1 2009-12-11T03:17:11.995453 {"title": "Shaitanon ki basti", "created": {"type": "/type/datetime", "value": "2009-12-11T03:17:11.995453"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:17:11.995453"}, "latest_revision": 1, "key": "/works/OL10618546W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4418140A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10618760W 1 2009-12-11T03:17:11.995453 {"title": "Manus tan", "created": {"type": "/type/datetime", "value": "2009-12-11T03:17:11.995453"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:17:11.995453"}, "latest_revision": 1, "key": "/works/OL10618760W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4418208A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10618920W 1 2009-12-11T03:17:11.995453 {"title": "Sadam aur almia Iraq", "created": {"type": "/type/datetime", "value": "2009-12-11T03:17:11.995453"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:17:11.995453"}, "latest_revision": 1, "key": "/works/OL10618920W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4418305A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10619168W 4 2018-10-09T16:08:43.246973 {"title": "Bran ag an Sorcas", "created": {"type": "/type/datetime", "value": "2009-12-11T03:17:11.995453"}, "covers": [6273337], "last_modified": {"type": "/type/datetime", "value": "2018-10-09T16:08:43.246973"}, "latest_revision": 4, "key": "/works/OL10619168W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL33835A"}}], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL10619342W 1 2009-12-11T03:17:11.995453 {"title": "Si da ming bu-shao nian pian 4", "created": {"type": "/type/datetime", "value": "2009-12-11T03:17:11.995453"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:17:11.995453"}, "latest_revision": 1, "key": "/works/OL10619342W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4418428A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10619445W 1 2009-12-11T03:17:11.995453 {"title": "Saiya bina ghar suna", "created": {"type": "/type/datetime", "value": "2009-12-11T03:17:11.995453"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:17:11.995453"}, "latest_revision": 1, "key": "/works/OL10619445W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4418467A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10619498W 1 2009-12-11T03:17:11.995453 {"title": "Dumplings", "created": {"type": "/type/datetime", "value": "2009-12-11T03:17:11.995453"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:17:11.995453"}, "latest_revision": 1, "key": "/works/OL10619498W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4418479A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1061961W 2 2010-01-17T22:05:07.825958 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:19:55.735988"}, "title": "(Ru\u0304paka-rahasya)", "last_modified": {"type": "/type/datetime", "value": "2010-01-17T22:05:07.825958"}, "latest_revision": 2, "key": "/works/OL1061961W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL107200A"}}], "type": {"key": "/type/work"}, "subjects": ["History and criticism", "Hindi drama"], "revision": 2}
+/type/work /works/OL10620211W 2 2010-01-17T22:05:07.825958 {"title": "Themes of alienation and identity in Jean Rhys' novels", "created": {"type": "/type/datetime", "value": "2009-12-11T03:17:18.659687"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-17T22:05:07.825958"}, "latest_revision": 2, "key": "/works/OL10620211W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4418819A"}}], "subject_people": ["Jean Rhys (1894-1979)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10620296W 1 2009-12-11T03:17:18.659687 {"title": "Who shouted Hosanna?", "created": {"type": "/type/datetime", "value": "2009-12-11T03:17:18.659687"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:17:18.659687"}, "latest_revision": 1, "key": "/works/OL10620296W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4418866A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10620816W 2 2010-04-28T07:13:24.349481 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:17:27.214636"}, "title": "Ata gache tota pakhi", "covers": [6266231], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:13:24.349481"}, "latest_revision": 2, "key": "/works/OL10620816W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4419238A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10621209W 3 2010-12-04T02:39:14.930443 {"last_modified": {"type": "/type/datetime", "value": "2010-12-04T02:39:14.930443"}, "title": "I & II Samuel", "created": {"type": "/type/datetime", "value": "2009-12-11T03:17:27.214636"}, "subjects": ["Bible", "Commentaries"], "latest_revision": 3, "key": "/works/OL10621209W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4419471A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10621355W 1 2009-12-11T03:17:27.214636 {"title": "Paired-reading", "created": {"type": "/type/datetime", "value": "2009-12-11T03:17:27.214636"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:17:27.214636"}, "latest_revision": 1, "key": "/works/OL10621355W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4419595A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10621410W 1 2009-12-11T03:17:27.214636 {"title": "Teachers' perceptions of special educational needs", "created": {"type": "/type/datetime", "value": "2009-12-11T03:17:27.214636"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:17:27.214636"}, "latest_revision": 1, "key": "/works/OL10621410W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4419645A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10621431W 1 2009-12-11T03:17:27.214636 {"title": "Craft, design and technology for children having special educational needs", "created": {"type": "/type/datetime", "value": "2009-12-11T03:17:27.214636"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:17:27.214636"}, "latest_revision": 1, "key": "/works/OL10621431W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4419666A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10621537W 1 2009-12-11T03:17:27.214636 {"title": "Sugar and sugar crystals", "created": {"type": "/type/datetime", "value": "2009-12-11T03:17:27.214636"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:17:27.214636"}, "latest_revision": 1, "key": "/works/OL10621537W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4419756A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10621750W 1 2009-12-11T03:17:36.676462 {"title": "Gelatin", "created": {"type": "/type/datetime", "value": "2009-12-11T03:17:36.676462"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:17:36.676462"}, "latest_revision": 1, "key": "/works/OL10621750W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4419959A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10621891W 1 2009-12-11T03:17:36.676462 {"title": "The nature of yeast and its function in breadmaking", "created": {"type": "/type/datetime", "value": "2009-12-11T03:17:36.676462"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:17:36.676462"}, "latest_revision": 1, "key": "/works/OL10621891W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4420083A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10621964W 2 2010-01-17T22:05:07.825958 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:17:36.676462"}, "title": "The revision of the Psalter", "last_modified": {"type": "/type/datetime", "value": "2010-01-17T22:05:07.825958"}, "latest_revision": 2, "key": "/works/OL10621964W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4420129A"}}], "type": {"key": "/type/work"}, "subjects": ["Psalters"], "revision": 2}
+/type/work /works/OL10622007W 2 2010-12-04T01:26:43.706099 {"title": "A travers les plans, manuscrits et dossiers de Bouvard et P\u00e9cuchet", "created": {"type": "/type/datetime", "value": "2009-12-11T03:17:36.676462"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-04T01:26:43.706099"}, "latest_revision": 2, "key": "/works/OL10622007W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4420148A"}}], "subject_people": ["Gustave Flaubert (1821-1880)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10622303W 1 2009-12-11T03:17:36.676462 {"title": "Die evangelische Studentengemeinde in der Bundesrepublik Deutschland und Berlin (West) am Beispiel der evangelischen Studentengemeinde Germersheim-Landau", "created": {"type": "/type/datetime", "value": "2009-12-11T03:17:36.676462"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:17:36.676462"}, "latest_revision": 1, "key": "/works/OL10622303W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4420346A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10622608W 1 2009-12-11T03:17:44.658783 {"title": "Tudor political drama", "created": {"type": "/type/datetime", "value": "2009-12-11T03:17:44.658783"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:17:44.658783"}, "latest_revision": 1, "key": "/works/OL10622608W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4420636A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10622767W 1 2009-12-11T03:17:44.658783 {"title": "The Lancashire clog dance", "created": {"type": "/type/datetime", "value": "2009-12-11T03:17:44.658783"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:17:44.658783"}, "latest_revision": 1, "key": "/works/OL10622767W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4420756A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10622826W 2 2022-09-22T21:25:35.007962 {"title": "The problem of suffering in the Old Testament", "key": "/works/OL10622826W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1314370A"}}], "type": {"key": "/type/work"}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T03:17:44.658783"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-22T21:25:35.007962"}}
+/type/work /works/OL10622833W 4 2022-03-09T07:13:23.340225 {"title": "Over the wet lawn", "subjects": ["Children's stories", "World War, 1939-1945", "Fiction"], "key": "/works/OL10622833W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4420787A"}}], "type": {"key": "/type/work"}, "covers": [12659245], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T03:17:44.658783"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-09T07:13:23.340225"}}
+/type/work /works/OL10622882W 2 2010-12-04T06:02:02.536984 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:17:44.658783"}, "subjects": ["Society of Friends"], "latest_revision": 2, "key": "/works/OL10622882W", "title": "The discovery of Quakerism", "subject_times": ["History"], "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4420802A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-04T06:02:02.536984"}, "revision": 2}
+/type/work /works/OL10623181W 1 2009-12-11T03:17:44.658783 {"title": "The development of computer assisted learning in teaching production/operations management techniques", "created": {"type": "/type/datetime", "value": "2009-12-11T03:17:44.658783"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:17:44.658783"}, "latest_revision": 1, "key": "/works/OL10623181W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4420976A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10623469W 1 2009-12-11T03:17:44.658783 {"title": "Transport needs-the forgotten factor", "created": {"type": "/type/datetime", "value": "2009-12-11T03:17:44.658783"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:17:44.658783"}, "latest_revision": 1, "key": "/works/OL10623469W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4421226A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10623496W 1 2009-12-11T03:17:44.658783 {"title": "Staromoskovskiye zhiteli", "created": {"type": "/type/datetime", "value": "2009-12-11T03:17:44.658783"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:17:44.658783"}, "latest_revision": 1, "key": "/works/OL10623496W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4421254A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10623925W 2 2010-01-17T22:36:24.108818 {"title": "Ein Dichter der Zeit", "created": {"type": "/type/datetime", "value": "2009-12-11T03:17:52.145550"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-17T22:36:24.108818"}, "latest_revision": 2, "key": "/works/OL10623925W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4421583A"}}], "subject_people": ["Hermann Kesser"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10623950W 1 2009-12-11T03:17:52.145550 {"title": "Carte d'identite", "created": {"type": "/type/datetime", "value": "2009-12-11T03:17:52.145550"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:17:52.145550"}, "latest_revision": 1, "key": "/works/OL10623950W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4421594A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10624274W 1 2009-12-11T03:17:52.145550 {"title": "A conceptual approach to the early learning of algebra using a computer", "created": {"type": "/type/datetime", "value": "2009-12-11T03:17:52.145550"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:17:52.145550"}, "latest_revision": 1, "key": "/works/OL10624274W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4421820A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10624297W 1 2009-12-11T03:17:52.145550 {"title": "Vor Anker", "created": {"type": "/type/datetime", "value": "2009-12-11T03:17:52.145550"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:17:52.145550"}, "latest_revision": 1, "key": "/works/OL10624297W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4421839A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10624624W 1 2009-12-11T03:17:58.771763 {"title": "Pewter spoons and other related material of the 14th-17th centuries", "created": {"type": "/type/datetime", "value": "2009-12-11T03:17:58.771763"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:17:58.771763"}, "latest_revision": 1, "key": "/works/OL10624624W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4422058A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10624719W 3 2010-12-03T18:29:10.186427 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T18:29:10.186427"}, "title": "Implementing embedded training (ET)", "created": {"type": "/type/datetime", "value": "2009-12-11T03:17:58.771763"}, "subjects": ["Aids and devices", "Military Occupational training", "Military education", "Occupational training, Military"], "latest_revision": 3, "key": "/works/OL10624719W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4422123A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10624849W 1 2009-12-11T03:17:58.771763 {"title": "Two little kittens", "created": {"type": "/type/datetime", "value": "2009-12-11T03:17:58.771763"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:17:58.771763"}, "latest_revision": 1, "key": "/works/OL10624849W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4422175A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10625096W 2 2022-10-11T00:32:30.711535 {"title": "The Gulf", "key": "/works/OL10625096W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL32247A"}}], "type": {"key": "/type/work"}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T03:17:58.771763"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-11T00:32:30.711535"}}
+/type/work /works/OL10625121W 1 2009-12-11T03:17:58.771763 {"title": "Budget speech 1986 of George M. Chambers to the House of Representatives of the Republic of Trinidad and Tobago,Tuesday 17th December, 1985", "created": {"type": "/type/datetime", "value": "2009-12-11T03:17:58.771763"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:17:58.771763"}, "latest_revision": 1, "key": "/works/OL10625121W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4422340A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10625255W 1 2009-12-11T03:17:58.771763 {"title": "The institutionalization of industrial conflict", "created": {"type": "/type/datetime", "value": "2009-12-11T03:17:58.771763"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:17:58.771763"}, "latest_revision": 1, "key": "/works/OL10625255W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4422419A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10625747W 1 2009-12-11T03:18:05.248990 {"title": "The geometry of megalithic man", "created": {"type": "/type/datetime", "value": "2009-12-11T03:18:05.248990"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:18:05.248990"}, "latest_revision": 1, "key": "/works/OL10625747W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4422721A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10625888W 1 2009-12-11T03:18:05.248990 {"title": "An exploratory study on the requirements and expectations of corporate buyers utilising hotel conference facilities", "created": {"type": "/type/datetime", "value": "2009-12-11T03:18:05.248990"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:18:05.248990"}, "latest_revision": 1, "key": "/works/OL10625888W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4422811A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1062598W 3 2010-04-28T07:13:24.349481 {"title": "Sheridan's plays now printed as he wrote them", "created": {"type": "/type/datetime", "value": "2009-12-09T20:20:22.842213"}, "covers": [5942734], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:13:24.349481"}, "latest_revision": 3, "key": "/works/OL1062598W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL107388A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10626044W 1 2009-12-11T03:18:05.248990 {"title": "Memo to the press", "created": {"type": "/type/datetime", "value": "2009-12-11T03:18:05.248990"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:18:05.248990"}, "latest_revision": 1, "key": "/works/OL10626044W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4422902A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10626299W 1 2009-12-11T03:18:05.248990 {"title": "A study of the mural vegetation in the Dorset village of Sutton Poyntz", "created": {"type": "/type/datetime", "value": "2009-12-11T03:18:05.248990"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:18:05.248990"}, "latest_revision": 1, "key": "/works/OL10626299W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4423030A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10626716W 2 2010-12-06T07:45:03.300215 {"last_modified": {"type": "/type/datetime", "value": "2010-12-06T07:45:03.300215"}, "title": "Ted Sharman", "created": {"type": "/type/datetime", "value": "2009-12-11T03:18:10.462457"}, "subjects": ["London, Brighton & South Coast Railway"], "latest_revision": 2, "key": "/works/OL10626716W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4423261A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10626892W 3 2010-12-03T21:17:20.392206 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:18:10.462457"}, "subject_places": ["Great Britain"], "subjects": ["Labour Party (Great Britain)", "Public relations", "Symbolism in politics"], "latest_revision": 3, "key": "/works/OL10626892W", "title": "Labour camp", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4423345A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T21:17:20.392206"}, "revision": 3}
+/type/work /works/OL10626911W 2 2010-01-17T23:05:24.530263 {"title": "The ordeal of Stephen Dedalus", "created": {"type": "/type/datetime", "value": "2009-12-11T03:18:10.462457"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-17T23:05:24.530263"}, "latest_revision": 2, "key": "/works/OL10626911W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4423354A"}}], "subject_people": ["James Joyce (1882-1941)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10626993W 1 2009-12-11T03:18:10.462457 {"title": "My diary in America in the midst of war", "created": {"type": "/type/datetime", "value": "2009-12-11T03:18:10.462457"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:18:10.462457"}, "latest_revision": 1, "key": "/works/OL10626993W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4423389A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10626W 3 2010-07-13T18:53:43.491372 {"title": "Eka \u0101ma hariyara, eka \u0101ma p\u012byara", "created": {"type": "/type/datetime", "value": "2009-10-05T19:25:18.889680"}, "subject_places": ["Uttar Pradesh (India)"], "last_modified": {"type": "/type/datetime", "value": "2010-07-13T18:53:43.491372"}, "latest_revision": 3, "key": "/works/OL10626W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL938030A"}}], "type": {"key": "/type/work"}, "subjects": ["History and criticism", "Social life and customs", "Bhojpuri poetry", "Bhojpuri language", "Dictionaries", "Hindi", "Folk poetry, Bhojpuri", "Uttar Pradesh (India)", "Bhojpuri Folk poetry"], "revision": 3}
+/type/work /works/OL10627028W 2 2022-12-21T17:26:02.352190 {"title": "George Sugarman", "key": "/works/OL10627028W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4423416A"}}], "type": {"key": "/type/work"}, "subjects": ["Exhibitions", "American Sculpture"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T03:18:10.462457"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-21T17:26:02.352190"}}
+/type/work /works/OL10627064W 1 2009-12-11T03:18:10.462457 {"title": "The Pekingese handbook", "created": {"type": "/type/datetime", "value": "2009-12-11T03:18:10.462457"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:18:10.462457"}, "latest_revision": 1, "key": "/works/OL10627064W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4423447A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10627581W 3 2021-12-24T23:41:13.149298 {"title": "What's the time, Mr Wolf?", "key": "/works/OL10627581W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4423605A"}}], "type": {"key": "/type/work"}, "subjects": ["Juvenile fiction", "Pictorial works", "Mr Wolf (Fictitious character)", "Time", "Children's fiction", "Toy and movable books", "Animals, fiction"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T03:18:17.488715"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-24T23:41:13.149298"}}
+/type/work /works/OL1062759W 1 2009-12-09T19:57:17.073758 {"title": "Hatia\u0304ra\u0304", "created": {"type": "/type/datetime", "value": "2009-12-09T19:57:17.073758"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:57:17.073758"}, "latest_revision": 1, "key": "/works/OL1062759W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL107425A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10627930W 2 2010-01-17T23:05:24.530263 {"title": "Maiwurno of the Blue Nile", "created": {"type": "/type/datetime", "value": "2009-12-11T03:18:17.488715"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-17T23:05:24.530263"}, "latest_revision": 2, "key": "/works/OL10627930W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4423789A"}}], "subject_people": ["Muhammad Bello Maiwurno"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10627969W 1 2009-12-11T03:18:17.488715 {"title": "Du Tchad au Dahomey en ballon", "created": {"type": "/type/datetime", "value": "2009-12-11T03:18:17.488715"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:18:17.488715"}, "latest_revision": 1, "key": "/works/OL10627969W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4423819A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10628427W 1 2009-12-11T03:18:17.488715 {"title": "Ekonomicheskii kontrol' v sisteme upravleniya", "created": {"type": "/type/datetime", "value": "2009-12-11T03:18:17.488715"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:18:17.488715"}, "latest_revision": 1, "key": "/works/OL10628427W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4424142A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10628731W 1 2009-12-11T03:18:25.759246 {"title": "Obedience to government", "created": {"type": "/type/datetime", "value": "2009-12-11T03:18:25.759246"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:18:25.759246"}, "latest_revision": 1, "key": "/works/OL10628731W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4424350A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10629056W 1 2009-12-11T03:18:25.759246 {"title": "Planirovanie i ispol'zovanie pribyli", "created": {"type": "/type/datetime", "value": "2009-12-11T03:18:25.759246"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:18:25.759246"}, "latest_revision": 1, "key": "/works/OL10629056W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4424617A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10629551W 2 2012-07-05T22:44:44.653469 {"title": "Naissance du Mozambique", "created": {"type": "/type/datetime", "value": "2009-12-11T03:18:25.759246"}, "last_modified": {"type": "/type/datetime", "value": "2012-07-05T22:44:44.653469"}, "latest_revision": 2, "key": "/works/OL10629551W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4534942A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10629999W 1 2009-12-11T03:18:32.414977 {"title": "Social change and local action in an urban area", "created": {"type": "/type/datetime", "value": "2009-12-11T03:18:32.414977"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:18:32.414977"}, "latest_revision": 1, "key": "/works/OL10629999W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4425180A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10630224W 1 2009-12-11T03:18:32.414977 {"title": "Marshall", "created": {"type": "/type/datetime", "value": "2009-12-11T03:18:32.414977"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:18:32.414977"}, "latest_revision": 1, "key": "/works/OL10630224W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4425326A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10630389W 1 2009-12-11T03:18:32.414977 {"title": "The rescue", "created": {"type": "/type/datetime", "value": "2009-12-11T03:18:32.414977"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:18:32.414977"}, "latest_revision": 1, "key": "/works/OL10630389W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4425439A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10630615W 2 2010-01-17T23:05:24.530263 {"title": "Silent running", "created": {"type": "/type/datetime", "value": "2009-12-11T03:18:40.422314"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-17T23:05:24.530263"}, "latest_revision": 2, "key": "/works/OL10630615W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4425584A"}}], "subject_people": ["Stephen Chambers (1960-)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10630648W 1 2009-12-11T03:18:40.422314 {"title": "Machines", "created": {"type": "/type/datetime", "value": "2009-12-11T03:18:40.422314"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:18:40.422314"}, "latest_revision": 1, "key": "/works/OL10630648W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4425603A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10630727W 3 2022-12-26T13:06:04.644521 {"title": "David Tremlett", "key": "/works/OL10630727W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4425656A"}}], "subject_people": ["David Tremlett"], "type": {"key": "/type/work"}, "subjects": ["Wall drawing (Conceptual art)", "Exhibitions"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T03:18:40.422314"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-26T13:06:04.644521"}}
+/type/work /works/OL10630730W 1 2009-12-11T03:18:40.422314 {"title": "On the waterfront", "created": {"type": "/type/datetime", "value": "2009-12-11T03:18:40.422314"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:18:40.422314"}, "latest_revision": 1, "key": "/works/OL10630730W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4425656A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10631523W 1 2009-12-11T03:18:40.422314 {"title": "Bridging the gap", "created": {"type": "/type/datetime", "value": "2009-12-11T03:18:40.422314"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:18:40.422314"}, "latest_revision": 1, "key": "/works/OL10631523W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4426201A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1063174W 1 2009-12-09T19:57:17.073758 {"title": "\u02bbIbrat", "created": {"type": "/type/datetime", "value": "2009-12-09T19:57:17.073758"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:57:17.073758"}, "latest_revision": 1, "key": "/works/OL1063174W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL107534A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10631779W 1 2009-12-11T03:18:47.151452 {"title": "An investigation of the OSI presentation layer", "created": {"type": "/type/datetime", "value": "2009-12-11T03:18:47.151452"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:18:47.151452"}, "latest_revision": 1, "key": "/works/OL10631779W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4426394A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10631998W 2 2010-12-06T07:43:51.959391 {"last_modified": {"type": "/type/datetime", "value": "2010-12-06T07:43:51.959391"}, "title": "Selling a university", "created": {"type": "/type/datetime", "value": "2009-12-11T03:18:47.151452"}, "subjects": ["University of Ulster"], "latest_revision": 2, "key": "/works/OL10631998W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4426560A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL1063218W 1 2009-12-09T19:57:17.073758 {"title": "A\u0304s\u0332a\u0304r-i \u02bbIshq", "created": {"type": "/type/datetime", "value": "2009-12-09T19:57:17.073758"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:57:17.073758"}, "latest_revision": 1, "key": "/works/OL1063218W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL107554A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10632268W 1 2009-12-11T03:18:47.151452 {"title": "' Scramble!", "created": {"type": "/type/datetime", "value": "2009-12-11T03:18:47.151452"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:18:47.151452"}, "latest_revision": 1, "key": "/works/OL10632268W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4426670A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10632321W 2 2010-12-18T01:42:55.345168 {"title": "The modern world", "created": {"type": "/type/datetime", "value": "2009-12-11T03:18:47.151452"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-18T01:42:55.345168"}, "latest_revision": 2, "key": "/works/OL10632321W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL482431A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10632329W 1 2009-12-11T03:18:47.151452 {"title": "The abnormal in obstetrics", "created": {"type": "/type/datetime", "value": "2009-12-11T03:18:47.151452"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:18:47.151452"}, "latest_revision": 1, "key": "/works/OL10632329W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4426710A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10632476W 2 2010-12-03T13:25:43.997286 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:25:43.997286"}, "title": "The book of the B. S. A. Bantam", "created": {"type": "/type/datetime", "value": "2009-12-11T03:18:47.151452"}, "subjects": ["BSA motorcycle"], "latest_revision": 2, "key": "/works/OL10632476W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4426757A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10632865W 1 2009-12-11T03:18:54.157068 {"title": "Life in a French town", "created": {"type": "/type/datetime", "value": "2009-12-11T03:18:54.157068"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:18:54.157068"}, "latest_revision": 1, "key": "/works/OL10632865W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4426877A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10633270W 1 2009-12-11T03:18:54.157068 {"title": "New mathematics", "created": {"type": "/type/datetime", "value": "2009-12-11T03:18:54.157068"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:18:54.157068"}, "latest_revision": 1, "key": "/works/OL10633270W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4426986A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10633486W 1 2009-12-11T03:18:54.157068 {"title": "Soviet armed forces yesterday and today", "created": {"type": "/type/datetime", "value": "2009-12-11T03:18:54.157068"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:18:54.157068"}, "latest_revision": 1, "key": "/works/OL10633486W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4427060A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10633920W 1 2009-12-11T03:19:01.694284 {"title": "Effects of the 1985 Transport Act in West Midlands", "created": {"type": "/type/datetime", "value": "2009-12-11T03:19:01.694284"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:19:01.694284"}, "latest_revision": 1, "key": "/works/OL10633920W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4427310A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1063435W 6 2020-08-13T00:38:12.165170 {"subtitle": "being Napoleon the Little.", "last_modified": {"type": "/type/datetime", "value": "2020-08-13T00:38:12.165170"}, "title": "The destroyer of the second republic", "created": {"type": "/type/datetime", "value": "2009-12-09T20:20:25.168304"}, "covers": [5867707], "subject_places": ["France"], "subjects": ["History"], "subject_people": ["Napoleon III Emperor of the French (1808-1873)"], "key": "/works/OL1063435W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL107571A"}}], "latest_revision": 6, "subject_times": ["Second Republic, 1848-1852"], "type": {"key": "/type/work"}, "revision": 6}
+/type/work /works/OL10634661W 1 2009-12-11T03:19:10.296619 {"title": "An analysis of hand letter and word formations", "created": {"type": "/type/datetime", "value": "2009-12-11T03:19:10.296619"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:19:10.296619"}, "latest_revision": 1, "key": "/works/OL10634661W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4427829A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10634705W 2 2010-01-17T23:34:03.898464 {"title": "David and Terry", "created": {"type": "/type/datetime", "value": "2009-12-11T03:19:10.296619"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-17T23:34:03.898464"}, "latest_revision": 2, "key": "/works/OL10634705W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4427861A"}}], "subject_people": ["David Bowie (1947-)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10634911W 1 2009-12-11T03:19:10.296619 {"title": "' There is much worth fighting for'", "created": {"type": "/type/datetime", "value": "2009-12-11T03:19:10.296619"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:19:10.296619"}, "latest_revision": 1, "key": "/works/OL10634911W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4428009A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10634913W 1 2009-12-11T03:19:10.296619 {"title": "A community-oriented approach to AIDS prevention", "created": {"type": "/type/datetime", "value": "2009-12-11T03:19:10.296619"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:19:10.296619"}, "latest_revision": 1, "key": "/works/OL10634913W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4428011A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10635252W 1 2009-12-11T03:19:10.296619 {"title": "Speciality fibres - rare or unavailable?", "created": {"type": "/type/datetime", "value": "2009-12-11T03:19:10.296619"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:19:10.296619"}, "latest_revision": 1, "key": "/works/OL10635252W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4428307A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10635359W 1 2009-12-11T03:19:10.296619 {"title": "Photography in Mexico", "created": {"type": "/type/datetime", "value": "2009-12-11T03:19:10.296619"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:19:10.296619"}, "latest_revision": 1, "key": "/works/OL10635359W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4428397A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10635443W 1 2009-12-11T03:19:10.296619 {"title": "Co urtin' a collier", "created": {"type": "/type/datetime", "value": "2009-12-11T03:19:10.296619"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:19:10.296619"}, "latest_revision": 1, "key": "/works/OL10635443W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4428452A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10635446W 1 2009-12-11T03:19:10.296619 {"title": "Th icker than water", "created": {"type": "/type/datetime", "value": "2009-12-11T03:19:10.296619"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:19:10.296619"}, "latest_revision": 1, "key": "/works/OL10635446W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4428455A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10635506W 1 2009-12-11T03:19:10.296619 {"title": "The book of receipts", "created": {"type": "/type/datetime", "value": "2009-12-11T03:19:10.296619"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:19:10.296619"}, "latest_revision": 1, "key": "/works/OL10635506W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4428489A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10635597W 1 2009-12-11T03:19:17.859566 {"title": "Meet the Cape food", "created": {"type": "/type/datetime", "value": "2009-12-11T03:19:17.859566"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:19:17.859566"}, "latest_revision": 1, "key": "/works/OL10635597W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4428552A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10635635W 1 2009-12-11T03:19:17.859566 {"title": "Servering", "created": {"type": "/type/datetime", "value": "2009-12-11T03:19:17.859566"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:19:17.859566"}, "latest_revision": 1, "key": "/works/OL10635635W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4428579A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10635704W 1 2009-12-11T03:19:17.859566 {"title": "Cakes and how to make them", "created": {"type": "/type/datetime", "value": "2009-12-11T03:19:17.859566"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:19:17.859566"}, "latest_revision": 1, "key": "/works/OL10635704W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4428633A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10635881W 1 2009-12-11T03:19:17.859566 {"title": "From vineyard to decanter", "created": {"type": "/type/datetime", "value": "2009-12-11T03:19:17.859566"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:19:17.859566"}, "latest_revision": 1, "key": "/works/OL10635881W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4428758A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10635882W 1 2009-12-11T03:19:17.859566 {"title": "A practical treatise on brewing...", "created": {"type": "/type/datetime", "value": "2009-12-11T03:19:17.859566"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:19:17.859566"}, "latest_revision": 1, "key": "/works/OL10635882W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4428759A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10636026W 1 2009-12-11T03:19:17.859566 {"title": "The Devonshire Club - and Crockford's", "created": {"type": "/type/datetime", "value": "2009-12-11T03:19:17.859566"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:19:17.859566"}, "latest_revision": 1, "key": "/works/OL10636026W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4428875A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10636378W 1 2009-12-11T03:19:17.859566 {"title": "The penalty of death, or,the problem of capital punishment", "created": {"type": "/type/datetime", "value": "2009-12-11T03:19:17.859566"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:19:17.859566"}, "latest_revision": 1, "key": "/works/OL10636378W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4429120A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10636394W 3 2011-11-03T21:17:25.215604 {"last_modified": {"type": "/type/datetime", "value": "2011-11-03T21:17:25.215604"}, "title": "Arthritis and folk medicine", "created": {"type": "/type/datetime", "value": "2009-12-11T03:19:17.859566"}, "subjects": ["Arthritis", "Traditional medicine"], "latest_revision": 3, "key": "/works/OL10636394W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4763849A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10636501W 1 2009-12-11T03:19:17.859566 {"title": "Hygiene, or, The principles of health", "created": {"type": "/type/datetime", "value": "2009-12-11T03:19:17.859566"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:19:17.859566"}, "latest_revision": 1, "key": "/works/OL10636501W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4429212A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10636787W 1 2009-12-11T03:19:29.979088 {"title": "Eternal Helen", "created": {"type": "/type/datetime", "value": "2009-12-11T03:19:29.979088"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:19:29.979088"}, "latest_revision": 1, "key": "/works/OL10636787W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4429400A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10636983W 1 2009-12-11T03:19:29.979088 {"title": "The Widnes School Board, 1874-1903", "created": {"type": "/type/datetime", "value": "2009-12-11T03:19:29.979088"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:19:29.979088"}, "latest_revision": 1, "key": "/works/OL10636983W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4429521A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10637072W 2 2014-07-10T01:43:42.601724 {"title": "The excess lands provisions of federal reclamation law", "created": {"type": "/type/datetime", "value": "2009-12-11T03:19:29.979088"}, "last_modified": {"type": "/type/datetime", "value": "2014-07-10T01:43:42.601724"}, "latest_revision": 2, "key": "/works/OL10637072W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4598308A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10637121W 1 2009-12-11T03:19:29.979088 {"title": "UFO diary", "created": {"type": "/type/datetime", "value": "2009-12-11T03:19:29.979088"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:19:29.979088"}, "latest_revision": 1, "key": "/works/OL10637121W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4429611A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10637143W 1 2009-12-11T03:19:29.979088 {"title": "Of hearth and home", "created": {"type": "/type/datetime", "value": "2009-12-11T03:19:29.979088"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:19:29.979088"}, "latest_revision": 1, "key": "/works/OL10637143W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4429626A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10637539W 2 2010-01-18T00:03:30.756244 {"title": "Memoirs of Emma, Lady Hamilton", "created": {"type": "/type/datetime", "value": "2009-12-11T03:19:29.979088"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-18T00:03:30.756244"}, "latest_revision": 2, "key": "/works/OL10637539W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4429879A"}}], "subject_people": ["Emma Hamilton Lady (1761?-1815)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10638187W 3 2011-02-15T20:00:11.654266 {"last_modified": {"type": "/type/datetime", "value": "2011-02-15T20:00:11.654266"}, "title": "Old beliefs and new knowledge", "created": {"type": "/type/datetime", "value": "2009-12-11T03:19:46.766610"}, "subjects": ["Faith", "Belief and doubt"], "latest_revision": 3, "key": "/works/OL10638187W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL6210205A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10638236W 2 2010-01-18T00:03:30.756244 {"title": "A note upon Waller's distich", "created": {"type": "/type/datetime", "value": "2009-12-11T03:19:46.766610"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-18T00:03:30.756244"}, "latest_revision": 2, "key": "/works/OL10638236W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4430270A"}}], "subject_people": ["Edmund Waller (1605-1687)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10638722W 2 2010-01-18T00:03:30.756244 {"title": "Napole on intime", "created": {"type": "/type/datetime", "value": "2009-12-11T03:19:52.554767"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-18T00:03:30.756244"}, "latest_revision": 2, "key": "/works/OL10638722W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4430571A"}}], "subject_people": ["Napol\u00e9on I Emperor of the French (1769-1821)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10638929W 3 2019-07-30T22:00:30.504599 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:19:52.554767"}, "subject_places": ["Great Britain"], "subjects": ["Golf courses", "Golf"], "latest_revision": 3, "key": "/works/OL10638929W", "title": "The good golf course guide", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4430682A"}}, {"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL351720A"}}, {"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1379162A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2019-07-30T22:00:30.504599"}, "revision": 3}
+/type/work /works/OL10638948W 1 2009-12-11T03:19:52.554767 {"title": "Small social groups in England", "created": {"type": "/type/datetime", "value": "2009-12-11T03:19:52.554767"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:19:52.554767"}, "latest_revision": 1, "key": "/works/OL10638948W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4430688A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10638983W 1 2009-12-11T03:19:52.554767 {"title": "Luis Bun uel", "created": {"type": "/type/datetime", "value": "2009-12-11T03:19:52.554767"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:19:52.554767"}, "latest_revision": 1, "key": "/works/OL10638983W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4430713A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10639037W 1 2009-12-11T03:19:52.554767 {"title": "The economic development of remote regions in developed countries", "created": {"type": "/type/datetime", "value": "2009-12-11T03:19:52.554767"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:19:52.554767"}, "latest_revision": 1, "key": "/works/OL10639037W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4430738A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10640307W 1 2009-12-11T03:19:59.890252 {"title": "Me n la sa n truong", "created": {"type": "/type/datetime", "value": "2009-12-11T03:19:59.890252"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:19:59.890252"}, "latest_revision": 1, "key": "/works/OL10640307W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4431355A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10640354W 1 2009-12-11T03:19:59.890252 {"title": "Luo i troi", "created": {"type": "/type/datetime", "value": "2009-12-11T03:19:59.890252"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:19:59.890252"}, "latest_revision": 1, "key": "/works/OL10640354W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4431392A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10640784W 1 2009-12-11T03:20:07.706160 {"title": "Altaic hieroglyphs and Hittite inscriptions", "created": {"type": "/type/datetime", "value": "2009-12-11T03:20:07.706160"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:20:07.706160"}, "latest_revision": 1, "key": "/works/OL10640784W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4431697A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10641149W 2 2022-11-03T20:08:43.046423 {"title": "Range beyond the mountains", "key": "/works/OL10641149W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2111518A"}}], "type": {"key": "/type/work"}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T03:20:07.706160"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-03T20:08:43.046423"}}
+/type/work /works/OL10641692W 1 2009-12-11T03:20:14.760702 {"title": "Guitar solos", "created": {"type": "/type/datetime", "value": "2009-12-11T03:20:14.760702"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:20:14.760702"}, "latest_revision": 1, "key": "/works/OL10641692W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4432261A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1064175W 5 2021-11-05T22:28:32.849575 {"subjects": ["Fathers and daughters", "Juvenile fiction"], "subtitle": "and Consuelo's quest of happiness", "key": "/works/OL1064175W", "title": "Daddy's girl", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL107572A"}}], "type": {"key": "/type/work"}, "covers": [12000285], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2009-12-09T20:20:25.168304"}, "last_modified": {"type": "/type/datetime", "value": "2021-11-05T22:28:32.849575"}}
+/type/work /works/OL10641899W 1 2009-12-11T03:20:14.760702 {"title": "There are no palm trees in London", "created": {"type": "/type/datetime", "value": "2009-12-11T03:20:14.760702"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:20:14.760702"}, "latest_revision": 1, "key": "/works/OL10641899W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4432327A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10642020W 1 2009-12-11T03:20:14.760702 {"title": "Memoirs of a long life", "created": {"type": "/type/datetime", "value": "2009-12-11T03:20:14.760702"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:20:14.760702"}, "latest_revision": 1, "key": "/works/OL10642020W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4432394A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10642408W 1 2009-12-11T03:20:14.760702 {"title": "Lyudi budushchego i geroi meshchanstva", "created": {"type": "/type/datetime", "value": "2009-12-11T03:20:14.760702"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:20:14.760702"}, "latest_revision": 1, "key": "/works/OL10642408W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4432673A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10642534W 1 2009-12-11T03:20:14.760702 {"title": "Shakhtery - gvardiya truda", "created": {"type": "/type/datetime", "value": "2009-12-11T03:20:14.760702"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:20:14.760702"}, "latest_revision": 1, "key": "/works/OL10642534W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4432760A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10643676W 1 2009-12-11T03:20:31.101265 {"title": "Hub and spoke airline networks and scheduling systems, with particular reference to the operations of British Airways", "created": {"type": "/type/datetime", "value": "2009-12-11T03:20:31.101265"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:20:31.101265"}, "latest_revision": 1, "key": "/works/OL10643676W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4433641A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10644471W 2 2010-12-06T07:53:29.734260 {"last_modified": {"type": "/type/datetime", "value": "2010-12-06T07:53:29.734260"}, "title": "A new partnership in work, education and training", "created": {"type": "/type/datetime", "value": "2009-12-11T03:20:31.101265"}, "subjects": ["Great Britain", "Great Britain. Department of Employment"], "latest_revision": 2, "key": "/works/OL10644471W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4434267A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10644696W 2 2010-01-18T01:09:53.485549 {"title": "After thirty years", "created": {"type": "/type/datetime", "value": "2009-12-11T03:20:43.838804"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-18T01:09:53.485549"}, "latest_revision": 2, "key": "/works/OL10644696W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4434409A"}}], "subject_people": ["W. E. Gladstone (1809-1898)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10645090W 2 2010-01-18T01:09:53.485549 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:20:43.838804"}, "title": "Towards a Soviet-American crisis prevention regime", "subject_places": ["United States", "Soviet Union"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T01:09:53.485549"}, "latest_revision": 2, "key": "/works/OL10645090W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4434656A"}}], "subject_times": ["1945-"], "type": {"key": "/type/work"}, "subjects": ["Foreign relations"], "revision": 2}
+/type/work /works/OL10645378W 1 2009-12-11T03:20:43.838804 {"title": "The Newbottle whirlwind of November 30th, 1872", "created": {"type": "/type/datetime", "value": "2009-12-11T03:20:43.838804"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:20:43.838804"}, "latest_revision": 1, "key": "/works/OL10645378W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4434854A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10646122W 3 2012-06-03T00:40:57.533620 {"title": "D\u00fcrer", "created": {"type": "/type/datetime", "value": "2009-12-11T03:20:49.583279"}, "last_modified": {"type": "/type/datetime", "value": "2012-06-03T00:40:57.533620"}, "latest_revision": 3, "key": "/works/OL10646122W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4435218A"}}], "subject_people": ["Albrecht D\u00fcrer (1471-1528)"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10646215W 2 2010-12-06T07:44:41.177476 {"last_modified": {"type": "/type/datetime", "value": "2010-12-06T07:44:41.177476"}, "title": "A history of Eton College, (1440-1884)", "created": {"type": "/type/datetime", "value": "2009-12-11T03:20:49.583279"}, "subjects": ["Eton College"], "latest_revision": 2, "key": "/works/OL10646215W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4435275A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL1064626W 2 2010-01-18T01:09:53.485549 {"title": "Thomas Carlyle on Shakespeare from 'The hero as poet'", "created": {"type": "/type/datetime", "value": "2009-12-09T20:20:39.341793"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-18T01:09:53.485549"}, "latest_revision": 2, "key": "/works/OL1064626W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL107593A"}}], "subject_people": ["William Shakespeare (1564-1616)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10646777W 1 2009-12-11T03:21:00.106040 {"title": "F.C. Morgan's writings", "created": {"type": "/type/datetime", "value": "2009-12-11T03:21:00.106040"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:21:00.106040"}, "latest_revision": 1, "key": "/works/OL10646777W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4435508A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10646988W 1 2009-12-11T03:21:00.106040 {"title": "Bishop's Castle", "created": {"type": "/type/datetime", "value": "2009-12-11T03:21:00.106040"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:21:00.106040"}, "latest_revision": 1, "key": "/works/OL10646988W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4435585A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10647351W 1 2009-12-11T03:21:00.106040 {"title": "Why the mill was stopped; or; Evil overcome with good", "created": {"type": "/type/datetime", "value": "2009-12-11T03:21:00.106040"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:21:00.106040"}, "latest_revision": 1, "key": "/works/OL10647351W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4435803A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10647423W 1 2009-12-11T03:21:00.106040 {"title": "Judith Streeter", "created": {"type": "/type/datetime", "value": "2009-12-11T03:21:00.106040"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:21:00.106040"}, "latest_revision": 1, "key": "/works/OL10647423W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4435851A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10647503W 1 2009-12-11T03:21:00.106040 {"title": "Boxes", "created": {"type": "/type/datetime", "value": "2009-12-11T03:21:00.106040"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:21:00.106040"}, "latest_revision": 1, "key": "/works/OL10647503W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4435909A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10647627W 2 2010-12-06T07:43:51.959391 {"last_modified": {"type": "/type/datetime", "value": "2010-12-06T07:43:51.959391"}, "title": "The excellency of the liturgy, and the faith and moderation of the Church of England, known throughout the world", "created": {"type": "/type/datetime", "value": "2009-12-11T03:21:06.629295"}, "subjects": ["Church of England"], "latest_revision": 2, "key": "/works/OL10647627W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4435996A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10648260W 1 2009-12-11T03:21:06.629295 {"title": "Public participation, style and community size", "created": {"type": "/type/datetime", "value": "2009-12-11T03:21:06.629295"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:21:06.629295"}, "latest_revision": 1, "key": "/works/OL10648260W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4436309A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10648562W 1 2009-12-11T03:21:06.629295 {"title": "Organisational mobility", "created": {"type": "/type/datetime", "value": "2009-12-11T03:21:06.629295"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:21:06.629295"}, "latest_revision": 1, "key": "/works/OL10648562W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4436532A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10648716W 1 2009-12-11T03:21:13.004176 {"title": "A survey into the relevance of C.O.T.A.C. level one", "created": {"type": "/type/datetime", "value": "2009-12-11T03:21:13.004176"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:21:13.004176"}, "latest_revision": 1, "key": "/works/OL10648716W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4436633A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10648858W 1 2009-12-11T03:21:13.004176 {"title": "The agency relationship in health care", "created": {"type": "/type/datetime", "value": "2009-12-11T03:21:13.004176"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:21:13.004176"}, "latest_revision": 1, "key": "/works/OL10648858W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4436723A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10649131W 1 2009-12-11T03:21:13.004176 {"title": "Deutschland 1945 bis 1969", "created": {"type": "/type/datetime", "value": "2009-12-11T03:21:13.004176"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:21:13.004176"}, "latest_revision": 1, "key": "/works/OL10649131W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4436854A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10649149W 2 2010-01-18T01:41:46.317712 {"title": "A visit to Thomas Hardy", "created": {"type": "/type/datetime", "value": "2009-12-11T03:21:13.004176"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-18T01:41:46.317712"}, "latest_revision": 2, "key": "/works/OL10649149W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4436860A"}}], "subject_people": ["Thomas Hardy (1840-1928)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10649739W 1 2009-12-11T03:21:19.184529 {"title": "Call of the Great Master", "created": {"type": "/type/datetime", "value": "2009-12-11T03:21:19.184529"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:21:19.184529"}, "latest_revision": 1, "key": "/works/OL10649739W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4437213A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10649867W 1 2009-12-11T03:21:19.184529 {"title": "Language for the deaf", "created": {"type": "/type/datetime", "value": "2009-12-11T03:21:19.184529"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:21:19.184529"}, "latest_revision": 1, "key": "/works/OL10649867W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4437286A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10649958W 2 2010-01-18T01:41:46.317712 {"title": "Anyone for Glasgow?", "created": {"type": "/type/datetime", "value": "2009-12-11T03:21:19.184529"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-18T01:41:46.317712"}, "latest_revision": 2, "key": "/works/OL10649958W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4437351A"}}], "subject_people": ["Charles Eyre"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10650144W 1 2009-12-11T03:21:19.184529 {"title": "Solution manual to Combinatorial theory: an introduction", "created": {"type": "/type/datetime", "value": "2009-12-11T03:21:19.184529"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:21:19.184529"}, "latest_revision": 1, "key": "/works/OL10650144W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4437466A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10650625W 2 2012-01-18T07:34:34.674491 {"last_modified": {"type": "/type/datetime", "value": "2012-01-18T07:34:34.674491"}, "title": "Stanovlenie i deyatel'nost' sovetskikh organov okhrany pamyatnikov istorii i kul'tury 1917-1920 gg", "created": {"type": "/type/datetime", "value": "2009-12-11T03:21:27.427343"}, "subjects": ["History", "Conservation and restoration", "Historic sites", "Monuments"], "latest_revision": 2, "key": "/works/OL10650625W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4437734A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10650845W 1 2009-12-11T03:21:27.427343 {"title": "A tr uly Irish omnibus", "created": {"type": "/type/datetime", "value": "2009-12-11T03:21:27.427343"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:21:27.427343"}, "latest_revision": 1, "key": "/works/OL10650845W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4437890A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10651251W 1 2009-12-11T03:21:27.427343 {"title": "Genetic and molecular studies of Aspergillus", "created": {"type": "/type/datetime", "value": "2009-12-11T03:21:27.427343"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:21:27.427343"}, "latest_revision": 1, "key": "/works/OL10651251W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4438220A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10651264W 1 2009-12-11T03:21:27.427343 {"title": "The poison apparatus of the ant, Tetramorium caespitum, and the chemical nature of its venom", "created": {"type": "/type/datetime", "value": "2009-12-11T03:21:27.427343"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:21:27.427343"}, "latest_revision": 1, "key": "/works/OL10651264W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4438234A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10651671W 2 2010-01-18T02:12:08.468068 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:21:35.248787"}, "title": "Essais m\u00e9caniques de bois d'Indochine effectu\u00e9s au Service technique des bois coloniaux", "subject_places": ["Indochina"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T02:12:08.468068"}, "latest_revision": 2, "key": "/works/OL10651671W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4438536A"}}], "type": {"key": "/type/work"}, "subjects": ["Research", "Wood", "Forests and forestry"], "revision": 2}
+/type/work /works/OL1065172W 2 2010-01-18T02:12:08.468068 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:20:39.341793"}, "title": "Sandhi", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T02:12:08.468068"}, "latest_revision": 2, "key": "/works/OL1065172W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL107642A"}}], "type": {"key": "/type/work"}, "subjects": ["Phonology", "Telugu language"], "revision": 2}
+/type/work /works/OL10652184W 2 2010-11-20T17:47:37.828109 {"title": "A patent survey on dishwashing detergents and dishwashing machines", "created": {"type": "/type/datetime", "value": "2009-12-11T03:21:35.248787"}, "last_modified": {"type": "/type/datetime", "value": "2010-11-20T17:47:37.828109"}, "latest_revision": 2, "key": "/works/OL10652184W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2177930A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10652211W 1 2009-12-11T03:21:35.248787 {"title": "Philosophy of history and the problem of values", "created": {"type": "/type/datetime", "value": "2009-12-11T03:21:35.248787"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:21:35.248787"}, "latest_revision": 1, "key": "/works/OL10652211W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4438932A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10652221W 2 2010-12-06T07:45:03.300215 {"last_modified": {"type": "/type/datetime", "value": "2010-12-06T07:45:03.300215"}, "title": "Review of the first volume of the speaker's commentary", "created": {"type": "/type/datetime", "value": "2009-12-11T03:21:35.248787"}, "subjects": ["Bible"], "latest_revision": 2, "key": "/works/OL10652221W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4438937A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10653024W 1 2009-12-11T03:21:42.223603 {"title": "Lumen Christi", "created": {"type": "/type/datetime", "value": "2009-12-11T03:21:42.223603"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:21:42.223603"}, "latest_revision": 1, "key": "/works/OL10653024W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4439403A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10653417W 2 2010-01-18T02:12:08.468068 {"title": "\"Honest John\" of Todmorden", "created": {"type": "/type/datetime", "value": "2009-12-11T03:21:42.223603"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-18T02:12:08.468068"}, "latest_revision": 2, "key": "/works/OL10653417W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4439660A"}}], "subject_people": ["John Fielden (1784-1849)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10653776W 4 2010-12-04T00:44:45.650031 {"last_modified": {"type": "/type/datetime", "value": "2010-12-04T00:44:45.650031"}, "title": "A new dawn", "created": {"type": "/type/datetime", "value": "2009-12-11T03:21:51.250797"}, "covers": [5532254], "subject_places": ["Great Britain"], "subjects": ["Elections, 1945", "Great Britain", "Great Britain. Parliament. House of Commons", "Politics and government"], "latest_revision": 4, "key": "/works/OL10653776W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4439979A"}}], "subject_times": ["1945-1964"], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL10654095W 1 2009-12-11T03:21:51.250797 {"title": "Textured soya protein", "created": {"type": "/type/datetime", "value": "2009-12-11T03:21:51.250797"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:21:51.250797"}, "latest_revision": 1, "key": "/works/OL10654095W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4440195A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10654179W 1 2009-12-11T03:21:51.250797 {"title": "Monopoly and market coverage in a vertically differentiated market", "created": {"type": "/type/datetime", "value": "2009-12-11T03:21:51.250797"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:21:51.250797"}, "latest_revision": 1, "key": "/works/OL10654179W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4440254A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10654288W 1 2009-12-11T03:21:51.250797 {"title": "User interface design support for the development of knowledge-based systems", "created": {"type": "/type/datetime", "value": "2009-12-11T03:21:51.250797"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:21:51.250797"}, "latest_revision": 1, "key": "/works/OL10654288W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4440338A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10654358W 1 2009-12-11T03:21:51.250797 {"title": "Extending the range of durable road surfacings that both provide safety and minimise environmental impact", "created": {"type": "/type/datetime", "value": "2009-12-11T03:21:51.250797"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:21:51.250797"}, "latest_revision": 1, "key": "/works/OL10654358W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4440389A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10654701W 1 2009-12-11T03:21:59.882522 {"title": "Predicted coverage of a COFDM single frequency network for UHF digital terrestrial TV broadcasting", "created": {"type": "/type/datetime", "value": "2009-12-11T03:21:59.882522"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:21:59.882522"}, "latest_revision": 1, "key": "/works/OL10654701W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4440665A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10655142W 1 2009-12-11T03:21:59.882522 {"title": "An investigation into the possibility for a family of four, two adults and two children, to eat adequately whilst claiming state benefit, i.e. income support", "created": {"type": "/type/datetime", "value": "2009-12-11T03:21:59.882522"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:21:59.882522"}, "latest_revision": 1, "key": "/works/OL10655142W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4440933A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10655459W 1 2009-12-11T03:21:59.882522 {"title": "The zone system", "created": {"type": "/type/datetime", "value": "2009-12-11T03:21:59.882522"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:21:59.882522"}, "latest_revision": 1, "key": "/works/OL10655459W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4441230A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10655645W 3 2022-12-18T00:32:56.788571 {"title": "Miriam Cahn", "key": "/works/OL10655645W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4441359A"}}], "type": {"key": "/type/work"}, "subjects": ["Exhibitions", "Correspondence", "Written works", "Authorship"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T03:22:05.859166"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-18T00:32:56.788571"}}
+/type/work /works/OL10655776W 1 2009-12-11T03:22:05.859166 {"title": "The development of an integrated approach to arts teaching within the secondary school curriculum with particular reference to contemporary developments in arts practice", "created": {"type": "/type/datetime", "value": "2009-12-11T03:22:05.859166"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:22:05.859166"}, "latest_revision": 1, "key": "/works/OL10655776W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4441430A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10655888W 1 2009-12-11T03:22:05.859166 {"title": "Thro ugh the whole Bible in an hour", "created": {"type": "/type/datetime", "value": "2009-12-11T03:22:05.859166"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:22:05.859166"}, "latest_revision": 1, "key": "/works/OL10655888W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4441446A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10656149W 1 2009-12-11T03:22:05.859166 {"title": "Labour and the state in Zambia", "created": {"type": "/type/datetime", "value": "2009-12-11T03:22:05.859166"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:22:05.859166"}, "latest_revision": 1, "key": "/works/OL10656149W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4441584A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10656657W 2 2021-02-21T19:54:07.125882 {"title": "Approach to archaeology", "key": "/works/OL10656657W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL136224A"}}], "type": {"key": "/type/work"}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T03:22:11.950310"}, "last_modified": {"type": "/type/datetime", "value": "2021-02-21T19:54:07.125882"}}
+/type/work /works/OL10656964W 1 2009-12-11T03:22:11.950310 {"title": "Carteret's voyage round the world", "created": {"type": "/type/datetime", "value": "2009-12-11T03:22:11.950310"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:22:11.950310"}, "latest_revision": 1, "key": "/works/OL10656964W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4442100A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10657179W 1 2009-12-11T03:22:11.950310 {"title": "The dual system of stabilisation", "created": {"type": "/type/datetime", "value": "2009-12-11T03:22:11.950310"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:22:11.950310"}, "latest_revision": 1, "key": "/works/OL10657179W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4442230A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10657241W 1 2009-12-11T03:22:11.950310 {"title": "The American Funeral", "created": {"type": "/type/datetime", "value": "2009-12-11T03:22:11.950310"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:22:11.950310"}, "latest_revision": 1, "key": "/works/OL10657241W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4442266A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10657416W 2 2010-12-06T07:44:16.095328 {"last_modified": {"type": "/type/datetime", "value": "2010-12-06T07:44:16.095328"}, "title": "Les archives, la bibliothe que et le tre sor de l'Ordre de Saint-Jean de Je rusalem a Malte", "created": {"type": "/type/datetime", "value": "2009-12-11T03:22:11.950310"}, "subjects": ["Knights of Malta"], "latest_revision": 2, "key": "/works/OL10657416W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4442367A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10657715W 1 2009-12-11T03:22:18.748028 {"title": "A retrospective exhibition of etchings and water colours by R.T. Cowern R.A., R.E., RWA, 18 January-20 February 1988, Royal West of England Academy, Queen's Road, Clifton, Bristol", "created": {"type": "/type/datetime", "value": "2009-12-11T03:22:18.748028"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:22:18.748028"}, "latest_revision": 1, "key": "/works/OL10657715W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4442559A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10658590W 3 2010-12-03T13:31:04.797697 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:31:04.797697"}, "title": "Gospel courage, or, Christian resolution for God and His truth", "created": {"type": "/type/datetime", "value": "2009-12-11T03:22:18.748028"}, "subjects": ["Bible", "Fast-day sermons", "Sermons"], "latest_revision": 3, "key": "/works/OL10658590W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4443024A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10658880W 2 2010-01-18T03:11:23.415251 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:22:25.100297"}, "title": "Exchange rate realignments with fixed costs", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T03:11:23.415251"}, "latest_revision": 2, "key": "/works/OL10658880W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4443122A"}}], "type": {"key": "/type/work"}, "subjects": ["Foreign exchange"], "revision": 2}
+/type/work /works/OL10658889W 1 2009-12-11T03:22:25.100297 {"title": "Studies on lectins from marine algae with particular reference to Griffithsia flosculosa", "created": {"type": "/type/datetime", "value": "2009-12-11T03:22:25.100297"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:22:25.100297"}, "latest_revision": 1, "key": "/works/OL10658889W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4443129A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10659246W 1 2009-12-11T03:22:25.100297 {"title": "Adolescentes", "created": {"type": "/type/datetime", "value": "2009-12-11T03:22:25.100297"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:22:25.100297"}, "latest_revision": 1, "key": "/works/OL10659246W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4443332A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10659489W 1 2009-12-11T03:22:25.100297 {"title": "The selection and use of disinfectants", "created": {"type": "/type/datetime", "value": "2009-12-11T03:22:25.100297"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:22:25.100297"}, "latest_revision": 1, "key": "/works/OL10659489W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4443469A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1065960W 2 2011-02-23T08:08:22.949194 {"title": "Cher menteur (Dear liar)", "created": {"type": "/type/datetime", "value": "2009-12-09T20:20:56.595714"}, "last_modified": {"type": "/type/datetime", "value": "2011-02-23T08:08:22.949194"}, "latest_revision": 2, "key": "/works/OL1065960W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2742646A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10659630W 2 2017-09-17T12:06:55.853822 {"title": "Nothing happening", "created": {"type": "/type/datetime", "value": "2009-12-11T03:22:31.837105"}, "last_modified": {"type": "/type/datetime", "value": "2017-09-17T12:06:55.853822"}, "latest_revision": 2, "key": "/works/OL10659630W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL261571A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10660943W 1 2009-12-11T03:22:39.439311 {"title": "Formirovanie sovetskoi intelligentsii Sibiri v perekhodnyi ot kapitalizma k sotsializmu period", "created": {"type": "/type/datetime", "value": "2009-12-11T03:22:39.439311"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:22:39.439311"}, "latest_revision": 1, "key": "/works/OL10660943W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4444404A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10662055W 2 2012-06-26T22:19:25.385385 {"title": "\"Proper quadratic cost functions with an application to AT&T\"", "created": {"type": "/type/datetime", "value": "2009-12-11T03:22:46.424430"}, "last_modified": {"type": "/type/datetime", "value": "2012-06-26T22:19:25.385385"}, "latest_revision": 2, "key": "/works/OL10662055W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5801746A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10662116W 2 2010-01-18T03:37:38.794477 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:22:46.424430"}, "title": "Engineering problems manual", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T03:37:38.794477"}, "latest_revision": 2, "key": "/works/OL10662116W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4445121A"}}], "type": {"key": "/type/work"}, "subjects": ["Engineering mathematics"], "revision": 2}
+/type/work /works/OL10662187W 1 2009-12-11T03:22:46.424430 {"title": "Medical manpower in Europe", "created": {"type": "/type/datetime", "value": "2009-12-11T03:22:46.424430"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:22:46.424430"}, "latest_revision": 1, "key": "/works/OL10662187W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4445168A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10662315W 2 2022-03-21T06:47:17.688455 {"title": "Old Pastures", "key": "/works/OL10662315W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL383980A"}}], "type": {"key": "/type/work"}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T03:22:46.424430"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-21T06:47:17.688455"}}
+/type/work /works/OL10662419W 3 2010-12-06T07:46:38.117280 {"last_modified": {"type": "/type/datetime", "value": "2010-12-06T07:46:38.117280"}, "title": "Catecism Eglwys Loegr, a gafodd ei gymmeradwyo gan Gymanfa o'i phrif eglwyswyr, ar ei diwygiadd oddiwrth Babbydiaeth, yn y flwyddyn 1562; a gyhoeddwyd yn 1570, ac amryw weithiau ar ol hyny; ac a orchymynwyd ei ddysgu yn ysgolion y deyrnas: wedi ei gyfieithu i'r Gymraeg gan T. Jones", "created": {"type": "/type/datetime", "value": "2009-12-11T03:22:46.424430"}, "subjects": ["Catechisms", "Catechisms, Welsh", "Church of England", "Welsh Catechisms"], "latest_revision": 3, "key": "/works/OL10662419W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4445300A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10663438W 1 2009-12-11T03:22:51.369570 {"title": "Fodder beet variety leaflet 2001", "created": {"type": "/type/datetime", "value": "2009-12-11T03:22:51.369570"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:22:51.369570"}, "latest_revision": 1, "key": "/works/OL10663438W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4445717A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10663640W 1 2009-12-11T03:22:59.342311 {"title": "Poe\u0301sie et ve\u0301rite\u0301", "created": {"type": "/type/datetime", "value": "2009-12-11T03:22:59.342311"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:22:59.342311"}, "latest_revision": 1, "key": "/works/OL10663640W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4445812A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10663693W 2 2010-01-18T03:37:38.794477 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:22:59.342311"}, "title": "Aerospace structures technology damping design guide", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T03:37:38.794477"}, "latest_revision": 2, "key": "/works/OL10663693W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4445840A"}}], "type": {"key": "/type/work"}, "subjects": ["Damping", "Viscoelastic damping"], "revision": 2}
+/type/work /works/OL10663776W 1 2009-12-11T03:22:59.342311 {"title": "Do sick buildings affect human performance?", "created": {"type": "/type/datetime", "value": "2009-12-11T03:22:59.342311"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:22:59.342311"}, "latest_revision": 1, "key": "/works/OL10663776W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4445894A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10663988W 1 2009-12-11T03:22:59.342311 {"title": "A statistical model for engineering surfaces", "created": {"type": "/type/datetime", "value": "2009-12-11T03:22:59.342311"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:22:59.342311"}, "latest_revision": 1, "key": "/works/OL10663988W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4446029A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10664255W 2 2010-01-18T03:50:22.661386 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:22:59.342311"}, "title": "High intensity Raman interactions", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T03:50:22.661386"}, "latest_revision": 2, "key": "/works/OL10664255W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4446167A"}}], "type": {"key": "/type/work"}, "subjects": ["Raman spectroscopy"], "revision": 2}
+/type/work /works/OL10664652W 5 2017-05-18T06:20:26.613618 {"title": "Letters and treatises of Caspar Schwenckfeld von Ossig", "created": {"type": "/type/datetime", "value": "2009-12-11T03:23:06.206892"}, "last_modified": {"type": "/type/datetime", "value": "2017-05-18T06:20:26.613618"}, "latest_revision": 5, "key": "/works/OL10664652W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1154941A"}}], "subject_people": ["Kaspar Schwenckfeld (1489-1561)"], "type": {"key": "/type/work"}, "revision": 5}
+/type/work /works/OL10664826W 1 2009-12-11T03:23:06.206892 {"title": "Successful Mentoring", "created": {"type": "/type/datetime", "value": "2009-12-11T03:23:06.206892"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:23:06.206892"}, "latest_revision": 1, "key": "/works/OL10664826W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4446594A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10664993W 1 2009-12-11T03:23:06.206892 {"title": "Polynomial matrices associated with linear constant multivariable delay-differential systems", "created": {"type": "/type/datetime", "value": "2009-12-11T03:23:06.206892"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:23:06.206892"}, "latest_revision": 1, "key": "/works/OL10664993W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4446697A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10665164W 1 2009-12-11T03:23:06.206892 {"title": "Library skills", "created": {"type": "/type/datetime", "value": "2009-12-11T03:23:06.206892"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:23:06.206892"}, "latest_revision": 1, "key": "/works/OL10665164W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4446790A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10665512W 1 2009-12-11T03:23:06.206892 {"title": "Schmuck der Indianer Su damerikas", "created": {"type": "/type/datetime", "value": "2009-12-11T03:23:06.206892"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:23:06.206892"}, "latest_revision": 1, "key": "/works/OL10665512W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4447028A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10665570W 1 2009-12-11T03:23:06.206892 {"title": "Ne pal", "created": {"type": "/type/datetime", "value": "2009-12-11T03:23:06.206892"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:23:06.206892"}, "latest_revision": 1, "key": "/works/OL10665570W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4447074A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10666216W 1 2009-12-11T03:23:15.082390 {"title": "Studies on the reversal of the mammalian transformed phenotype", "created": {"type": "/type/datetime", "value": "2009-12-11T03:23:15.082390"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:23:15.082390"}, "latest_revision": 1, "key": "/works/OL10666216W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4447611A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10666364W 3 2010-12-03T13:18:53.645039 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:18:53.645039"}, "latest_revision": 3, "key": "/works/OL10666364W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4447739A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T03:23:15.082390"}, "title": "L' art nouveau en Europe", "subject_places": ["Europe"], "subjects": ["Art", "Art nouveau", "Art, Modern", "Decoration and ornament", "Modern Art"], "subject_times": ["20th century"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10666457W 2 2010-01-18T03:50:22.661386 {"title": "The Marxian economic handbook and glossary", "created": {"type": "/type/datetime", "value": "2009-12-11T03:23:15.082390"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-18T03:50:22.661386"}, "latest_revision": 2, "key": "/works/OL10666457W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4447803A"}}], "subject_people": ["Karl Marx (1818-1883)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10667163W 1 2009-12-11T03:23:23.998789 {"title": "Epi ta ichne", "created": {"type": "/type/datetime", "value": "2009-12-11T03:23:23.998789"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:23:23.998789"}, "latest_revision": 1, "key": "/works/OL10667163W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4448327A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10667333W 1 2009-12-11T03:23:23.998789 {"title": "Digital beamforming in HF ground-wave radar", "created": {"type": "/type/datetime", "value": "2009-12-11T03:23:23.998789"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:23:23.998789"}, "latest_revision": 1, "key": "/works/OL10667333W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4448455A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10667356W 1 2009-12-11T03:23:23.998789 {"title": "Wall boundary layers in cascades of axial flow compressors with and without secondary flow effects", "created": {"type": "/type/datetime", "value": "2009-12-11T03:23:23.998789"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:23:23.998789"}, "latest_revision": 1, "key": "/works/OL10667356W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4448477A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10668351W 1 2009-12-11T03:23:34.248299 {"title": "Numerical methods of demonstrating the relationship of Greek New Testament manuscripts", "created": {"type": "/type/datetime", "value": "2009-12-11T03:23:34.248299"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:23:34.248299"}, "latest_revision": 1, "key": "/works/OL10668351W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4449306A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10668567W 1 2009-12-11T03:23:34.248299 {"title": "A marine geophysical study of the Pacific margins of Colombia and the south east Panama", "created": {"type": "/type/datetime", "value": "2009-12-11T03:23:34.248299"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:23:34.248299"}, "latest_revision": 1, "key": "/works/OL10668567W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4449511A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10668581W 1 2009-12-11T03:23:34.248299 {"title": "Ethnic minority children", "created": {"type": "/type/datetime", "value": "2009-12-11T03:23:34.248299"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:23:34.248299"}, "latest_revision": 1, "key": "/works/OL10668581W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4449526A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10669321W 1 2009-12-11T03:23:42.078521 {"title": "Some studies with benzimidazoles and related heterocycles", "created": {"type": "/type/datetime", "value": "2009-12-11T03:23:42.078521"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:23:42.078521"}, "latest_revision": 1, "key": "/works/OL10669321W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4450059A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10669366W 1 2009-12-11T03:23:42.078521 {"title": "Design of novel cells to simulate high speed electrodeposition", "created": {"type": "/type/datetime", "value": "2009-12-11T03:23:42.078521"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:23:42.078521"}, "latest_revision": 1, "key": "/works/OL10669366W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4450095A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10669825W 2 2010-12-03T15:54:50.920755 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:54:50.920755"}, "title": "Richard of Wallingford", "created": {"type": "/type/datetime", "value": "2009-12-11T03:23:50.350736"}, "subjects": ["Astronomy", "Early works to 1400"], "latest_revision": 2, "key": "/works/OL10669825W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4450439A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10670023W 2 2010-01-18T03:57:17.389870 {"title": "Lui devant l'objectif caricatural", "created": {"type": "/type/datetime", "value": "2009-12-11T03:23:50.350736"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-18T03:57:17.389870"}, "latest_revision": 2, "key": "/works/OL10670023W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4450573A"}}], "subject_people": ["Wilhelm II Emperor of Germany (1859-1941)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10670417W 3 2010-04-28T07:13:24.349481 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:23:50.350736"}, "title": "Benno Besson et Hamlet", "covers": [4070567], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:13:24.349481"}, "latest_revision": 3, "key": "/works/OL10670417W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4450837A"}}], "subject_people": ["Benno Besson", "William Shakespeare (1564-1616)"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10670492W 1 2009-12-11T03:23:50.350736 {"title": "Dynamique, repartition et a ge des glaciers rocheux des Alpes du Sud", "created": {"type": "/type/datetime", "value": "2009-12-11T03:23:50.350736"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:23:50.350736"}, "latest_revision": 1, "key": "/works/OL10670492W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4450883A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10670502W 1 2009-12-11T03:23:50.350736 {"title": "The Giant's Causeway", "created": {"type": "/type/datetime", "value": "2009-12-11T03:23:50.350736"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:23:50.350736"}, "latest_revision": 1, "key": "/works/OL10670502W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4450891A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10671060W 1 2009-12-11T03:23:58.385002 {"title": "Aluminium smelter", "created": {"type": "/type/datetime", "value": "2009-12-11T03:23:58.385002"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:23:58.385002"}, "latest_revision": 1, "key": "/works/OL10671060W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4451243A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10671125W 1 2009-12-11T03:23:58.385002 {"title": "All England law reports", "created": {"type": "/type/datetime", "value": "2009-12-11T03:23:58.385002"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:23:58.385002"}, "latest_revision": 1, "key": "/works/OL10671125W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4451275A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10671130W 1 2009-12-11T03:23:58.385002 {"title": "Balham", "created": {"type": "/type/datetime", "value": "2009-12-11T03:23:58.385002"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:23:58.385002"}, "latest_revision": 1, "key": "/works/OL10671130W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4451276A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10671170W 1 2009-12-11T03:23:58.385002 {"title": "A treatise of algebra", "created": {"type": "/type/datetime", "value": "2009-12-11T03:23:58.385002"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:23:58.385002"}, "latest_revision": 1, "key": "/works/OL10671170W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4451301A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10671621W 1 2009-12-11T03:24:11.740064 {"title": "A parallel computational environment for finite element calculations", "created": {"type": "/type/datetime", "value": "2009-12-11T03:24:11.740064"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:24:11.740064"}, "latest_revision": 1, "key": "/works/OL10671621W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4451662A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10672077W 1 2009-12-11T03:24:11.740064 {"title": "Hysteresis and duration dependence", "created": {"type": "/type/datetime", "value": "2009-12-11T03:24:11.740064"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:24:11.740064"}, "latest_revision": 1, "key": "/works/OL10672077W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4452004A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10672714W 1 2009-12-11T03:24:16.453797 {"title": "Gigs and cutters of the Isles of Scilly", "created": {"type": "/type/datetime", "value": "2009-12-11T03:24:16.453797"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:24:16.453797"}, "latest_revision": 1, "key": "/works/OL10672714W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4452401A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10672823W 1 2009-12-11T03:24:16.453797 {"title": "The Royal Manor & Park of Shotwick in Cheshire", "created": {"type": "/type/datetime", "value": "2009-12-11T03:24:16.453797"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:24:16.453797"}, "latest_revision": 1, "key": "/works/OL10672823W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4452453A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10673W 3 2010-04-28T07:13:24.349481 {"created": {"type": "/type/datetime", "value": "2009-10-05T19:26:52.326544"}, "title": "El hipo\u0301dromo de Alicante y otros cuentos fanta\u0301sticos", "covers": [6279565], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:13:24.349481"}, "latest_revision": 3, "key": "/works/OL10673W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL871824A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10674912W 1 2009-12-11T03:24:35.279754 {"title": "Magnetic properties of Gd-Y and Gd-Sc alloys", "created": {"type": "/type/datetime", "value": "2009-12-11T03:24:35.279754"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:24:35.279754"}, "latest_revision": 1, "key": "/works/OL10674912W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4453487A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10675107W 3 2010-10-30T18:51:55.572955 {"last_modified": {"type": "/type/datetime", "value": "2010-10-30T18:51:55.572955"}, "title": "Nicom\u00e8de", "created": {"type": "/type/datetime", "value": "2009-12-11T03:24:35.279754"}, "subjects": ["Th\u00e9\u00e2tre fran\u00e7ais"], "latest_revision": 3, "key": "/works/OL10675107W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL130779A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10675361W 1 2009-12-11T03:24:35.279754 {"title": "Grieve lecture", "created": {"type": "/type/datetime", "value": "2009-12-11T03:24:35.279754"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:24:35.279754"}, "latest_revision": 1, "key": "/works/OL10675361W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4453832A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10675673W 2 2010-12-03T16:20:29.477706 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T16:20:29.477706"}, "title": "McGimpsey & McGimpsey v Ireland", "created": {"type": "/type/datetime", "value": "2009-12-11T03:24:42.990463"}, "subjects": ["Anglo-Irish Agreement"], "latest_revision": 2, "key": "/works/OL10675673W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4454004A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10676031W 1 2009-12-11T03:24:42.990463 {"title": "The roles of inheritance in software development", "created": {"type": "/type/datetime", "value": "2009-12-11T03:24:42.990463"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:24:42.990463"}, "latest_revision": 1, "key": "/works/OL10676031W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4454231A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10676196W 1 2009-12-11T03:24:42.990463 {"title": "Mexican folk puppets", "created": {"type": "/type/datetime", "value": "2009-12-11T03:24:42.990463"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:24:42.990463"}, "latest_revision": 1, "key": "/works/OL10676196W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4454367A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10676280W 1 2009-12-11T03:24:42.990463 {"title": "United Kingdom voluntary organisations in mental health", "created": {"type": "/type/datetime", "value": "2009-12-11T03:24:42.990463"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:24:42.990463"}, "latest_revision": 1, "key": "/works/OL10676280W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4454426A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10676699W 1 2009-12-11T03:24:49.418371 {"title": "The evaluation of dynamic human-computer interaction", "created": {"type": "/type/datetime", "value": "2009-12-11T03:24:49.418371"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:24:49.418371"}, "latest_revision": 1, "key": "/works/OL10676699W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4454722A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10676842W 1 2009-12-11T03:24:49.418371 {"title": "Chemotaxonomic study of feverfew", "created": {"type": "/type/datetime", "value": "2009-12-11T03:24:49.418371"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:24:49.418371"}, "latest_revision": 1, "key": "/works/OL10676842W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4454847A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10676904W 2 2010-01-18T04:08:13.445253 {"title": "Bacchus festival, or, A new medley being a musical representation at the entertainment of his excellency the Lord General Monck", "created": {"type": "/type/datetime", "value": "2009-12-11T03:24:49.418371"}, "subject_places": ["Great Britain"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T04:08:13.445253"}, "latest_revision": 2, "key": "/works/OL10676904W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4454901A"}}], "subject_people": ["George Monck Albemarle Duke of (1608-1670)"], "subject_times": ["Commonwealth and Protectorate, 1649-1660"], "type": {"key": "/type/work"}, "subjects": ["Early works to 1800", "History"], "revision": 2}
+/type/work /works/OL10677326W 2 2022-11-17T23:24:27.841974 {"title": "Crambo", "key": "/works/OL10677326W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4455063A"}}], "type": {"key": "/type/work"}, "subjects": ["Children's fiction"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T03:24:49.418371"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T23:24:27.841974"}}
+/type/work /works/OL10677608W 1 2009-12-11T03:24:49.418371 {"title": "Histoire et philosophie des Styles (Architecture, Ameublement, De\u0301coration", "created": {"type": "/type/datetime", "value": "2009-12-11T03:24:49.418371"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:24:49.418371"}, "latest_revision": 1, "key": "/works/OL10677608W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4455208A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10678228W 1 2009-12-11T03:24:56.987006 {"title": "An introduction to developmental schedules used to evaluate certain cognitive and affective traits in hearing impaired pupils", "created": {"type": "/type/datetime", "value": "2009-12-11T03:24:56.987006"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:24:56.987006"}, "latest_revision": 1, "key": "/works/OL10678228W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4455630A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10678378W 1 2009-12-11T03:24:56.987006 {"title": "Highway beneath the Ghulkin", "created": {"type": "/type/datetime", "value": "2009-12-11T03:24:56.987006"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:24:56.987006"}, "latest_revision": 1, "key": "/works/OL10678378W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4455704A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10678989W 1 2009-12-11T03:25:04.641308 {"title": "The theory of consumer's demand", "created": {"type": "/type/datetime", "value": "2009-12-11T03:25:04.641308"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:25:04.641308"}, "latest_revision": 1, "key": "/works/OL10678989W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4456088A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10679061W 2 2010-01-18T04:08:13.445253 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:25:04.641308"}, "title": "Principles of commercial history", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T04:08:13.445253"}, "latest_revision": 2, "key": "/works/OL10679061W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4456145A"}}], "type": {"key": "/type/work"}, "subjects": ["History", "Commerce", "Industry"], "revision": 2}
+/type/work /works/OL10679364W 1 2009-12-11T03:25:04.641308 {"title": "A short fiscal and financial history of England, 1815-1918", "created": {"type": "/type/datetime", "value": "2009-12-11T03:25:04.641308"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:25:04.641308"}, "latest_revision": 1, "key": "/works/OL10679364W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4456348A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10679499W 1 2009-12-11T03:25:04.641308 {"title": "The clinical practice of bacteriology", "created": {"type": "/type/datetime", "value": "2009-12-11T03:25:04.641308"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:25:04.641308"}, "latest_revision": 1, "key": "/works/OL10679499W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4456436A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10679791W 1 2009-12-11T03:25:17.201463 {"title": "Archaeology in medieval Southampton", "created": {"type": "/type/datetime", "value": "2009-12-11T03:25:17.201463"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:25:17.201463"}, "latest_revision": 1, "key": "/works/OL10679791W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4456641A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10679927W 1 2009-12-11T03:25:17.201463 {"title": "Maurice Sce ve", "created": {"type": "/type/datetime", "value": "2009-12-11T03:25:17.201463"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:25:17.201463"}, "latest_revision": 1, "key": "/works/OL10679927W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4456725A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10680005W 1 2009-12-11T03:25:17.201463 {"title": "The Indiana third congressional district", "created": {"type": "/type/datetime", "value": "2009-12-11T03:25:17.201463"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:25:17.201463"}, "latest_revision": 1, "key": "/works/OL10680005W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4456766A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10680128W 1 2009-12-11T03:25:17.201463 {"title": "The \"new man\" in Soviet agriculture. Prepared for Midwest Slavic Conference, March 25-26,1966", "created": {"type": "/type/datetime", "value": "2009-12-11T03:25:17.201463"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:25:17.201463"}, "latest_revision": 1, "key": "/works/OL10680128W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4456839A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10680777W 1 2009-12-11T03:25:25.153429 {"title": "Le traite contre les Bogomiles de Cosmas le pre tre", "created": {"type": "/type/datetime", "value": "2009-12-11T03:25:25.153429"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:25:25.153429"}, "latest_revision": 1, "key": "/works/OL10680777W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4457263A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10680905W 2 2010-01-18T04:13:45.355545 {"title": "Das Wiener Volkstheater", "created": {"type": "/type/datetime", "value": "2009-12-11T03:25:25.153429"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-18T04:13:45.355545"}, "latest_revision": 2, "key": "/works/OL10680905W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4457363A"}}], "subject_people": ["Johann Nestroy (1801-1862)", "Ferdinand Raimund"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10680987W 2 2010-01-18T04:13:45.355545 {"title": "Le lettere malate di Svevo", "created": {"type": "/type/datetime", "value": "2009-12-11T03:25:25.153429"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-18T04:13:45.355545"}, "latest_revision": 2, "key": "/works/OL10680987W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4457422A"}}], "subject_people": ["Italo Svevo (1861-1928)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10681021W 1 2009-12-11T03:25:25.153429 {"title": "Food for the diabetic", "created": {"type": "/type/datetime", "value": "2009-12-11T03:25:25.153429"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:25:25.153429"}, "latest_revision": 1, "key": "/works/OL10681021W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4457445A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10681039W 1 2009-12-11T03:25:25.153429 {"title": "The strategists of fear", "created": {"type": "/type/datetime", "value": "2009-12-11T03:25:25.153429"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:25:25.153429"}, "latest_revision": 1, "key": "/works/OL10681039W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4457451A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10681078W 2 2010-12-06T07:47:00.892778 {"last_modified": {"type": "/type/datetime", "value": "2010-12-06T07:47:00.892778"}, "title": "The story of the school of Grace, Lady Manners, Bakewell", "created": {"type": "/type/datetime", "value": "2009-12-11T03:25:25.153429"}, "subjects": ["Lady Manners School"], "latest_revision": 2, "key": "/works/OL10681078W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4457472A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10681276W 1 2009-12-11T03:25:25.153429 {"title": "Vertellen in toga", "created": {"type": "/type/datetime", "value": "2009-12-11T03:25:25.153429"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:25:25.153429"}, "latest_revision": 1, "key": "/works/OL10681276W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4457609A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10681489W 4 2021-04-05T18:32:10.526438 {"subjects": ["Economic aspects", "Economic aspects of Technological innovations", "Technological innovations"], "subject_people": ["Joseph Alois Schumpeter (1883-1950)"], "key": "/works/OL10681489W", "title": "Innovation and growth", "authors": [{"author": {"key": "/authors/OL4457751A"}, "type": {"key": "/type/author_role"}}], "type": {"key": "/type/work"}, "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T03:25:25.153429"}, "last_modified": {"type": "/type/datetime", "value": "2021-04-05T18:32:10.526438"}}
+/type/work /works/OL10681667W 2 2011-04-16T17:57:39.616792 {"title": "Wielki s\u0142ownik polsko-angielski z suplementem", "created": {"type": "/type/datetime", "value": "2009-12-11T03:25:32.292917"}, "last_modified": {"type": "/type/datetime", "value": "2011-04-16T17:57:39.616792"}, "latest_revision": 2, "key": "/works/OL10681667W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL862650A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10681969W 1 2009-12-11T03:25:32.292917 {"title": "The shape and size of the export merchanting section of the cotton industry", "created": {"type": "/type/datetime", "value": "2009-12-11T03:25:32.292917"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:25:32.292917"}, "latest_revision": 1, "key": "/works/OL10681969W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4458084A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10682850W 2 2010-12-22T07:38:16.406944 {"title": "Applied chemistry of wastewater treatment", "created": {"type": "/type/datetime", "value": "2009-12-11T03:25:40.767980"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-22T07:38:16.406944"}, "latest_revision": 2, "key": "/works/OL10682850W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2028912A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10683094W 1 2009-12-11T03:25:40.767980 {"title": "The South of Scotland", "created": {"type": "/type/datetime", "value": "2009-12-11T03:25:40.767980"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:25:40.767980"}, "latest_revision": 1, "key": "/works/OL10683094W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4458876A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10683662W 1 2009-12-11T03:25:47.692621 {"title": "A typological study on the phonetic structure of English words with an instrumental-phonetic excursus on English stress", "created": {"type": "/type/datetime", "value": "2009-12-11T03:25:47.692621"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:25:47.692621"}, "latest_revision": 1, "key": "/works/OL10683662W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4459279A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10684419W 1 2009-12-11T03:25:47.692621 {"title": "Building", "created": {"type": "/type/datetime", "value": "2009-12-11T03:25:47.692621"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:25:47.692621"}, "latest_revision": 1, "key": "/works/OL10684419W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4459792A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10684688W 1 2009-12-11T03:25:55.010905 {"title": "Japanese emigration", "created": {"type": "/type/datetime", "value": "2009-12-11T03:25:55.010905"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:25:55.010905"}, "latest_revision": 1, "key": "/works/OL10684688W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4459972A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10684730W 2 2010-12-06T07:46:38.117280 {"last_modified": {"type": "/type/datetime", "value": "2010-12-06T07:46:38.117280"}, "title": "The music of the Methodist Hymn-book", "created": {"type": "/type/datetime", "value": "2009-12-11T03:25:55.010905"}, "subjects": ["Methodist hymn-book"], "latest_revision": 2, "key": "/works/OL10684730W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4460006A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL1068509W 1 2009-12-09T19:58:33.454461 {"title": "Travaux et jours d'un se\u0301minariste en vacances (Bretagne 1845)", "created": {"type": "/type/datetime", "value": "2009-12-09T19:58:33.454461"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:58:33.454461"}, "latest_revision": 1, "key": "/works/OL1068509W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL108294A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10685897W 4 2022-02-23T18:59:01.652577 {"title": "Nietzsche and George", "key": "/works/OL10685897W", "authors": [{"author": {"key": "/authors/OL4460773A"}, "type": {"key": "/type/author_role"}}], "subject_people": ["Friedrich Wilhelm Nietzsche (1844-1900)", "Stefan Anton George (1868-1933)"], "type": {"key": "/type/work"}, "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T03:26:01.300174"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-23T18:59:01.652577"}}
+/type/work /works/OL10686053W 2 2010-01-18T04:19:08.225899 {"title": "Frederic Chopin", "created": {"type": "/type/datetime", "value": "2009-12-11T03:26:01.300174"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-18T04:19:08.225899"}, "latest_revision": 2, "key": "/works/OL10686053W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4460864A"}}], "subject_people": ["Fr\u00e9d\u00e9ric Chopin (1810-1849)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10686060W 1 2009-12-11T03:26:01.300174 {"title": "Six sovereigns of song", "created": {"type": "/type/datetime", "value": "2009-12-11T03:26:01.300174"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:26:01.300174"}, "latest_revision": 1, "key": "/works/OL10686060W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4460866A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1068615W 3 2020-11-15T04:48:33.131526 {"last_modified": {"type": "/type/datetime", "value": "2020-11-15T04:48:33.131526"}, "title": "al- Fa\u1e63l f\u012b al-milal wa-al-ahw\u0101\u02be wa-al-ni\u1e25al", "created": {"type": "/type/datetime", "value": "2009-12-09T20:21:46.475522"}, "subjects": ["Early works to 1800", "Islam", "Doctrines", "Apologetic works", "Islamic sects", "Religions"], "latest_revision": 3, "key": "/works/OL1068615W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL108297A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10686410W 1 2009-12-11T03:26:01.300174 {"title": "Mathematical modelling of power station plant", "created": {"type": "/type/datetime", "value": "2009-12-11T03:26:01.300174"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:26:01.300174"}, "latest_revision": 1, "key": "/works/OL10686410W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4461086A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10686877W 1 2009-12-11T03:26:08.764845 {"title": "Nuevo estilo y formulario de escribir cartas misivas, y responder a ellas", "created": {"type": "/type/datetime", "value": "2009-12-11T03:26:08.764845"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:26:08.764845"}, "latest_revision": 1, "key": "/works/OL10686877W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4461413A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10687148W 1 2009-12-11T03:26:08.764845 {"title": "A study of the usefulness of selected GAAP basis accounting information", "created": {"type": "/type/datetime", "value": "2009-12-11T03:26:08.764845"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:26:08.764845"}, "latest_revision": 1, "key": "/works/OL10687148W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4461597A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10687316W 1 2009-12-11T03:26:08.764845 {"title": "A treatise on the plague, designed to prove it contagious", "created": {"type": "/type/datetime", "value": "2009-12-11T03:26:08.764845"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:26:08.764845"}, "latest_revision": 1, "key": "/works/OL10687316W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4461729A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10688431W 2 2010-01-18T04:23:52.959666 {"title": "De Aristophane Euripidis censore", "created": {"type": "/type/datetime", "value": "2009-12-11T03:26:15.729655"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-18T04:23:52.959666"}, "latest_revision": 2, "key": "/works/OL10688431W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4462437A"}}], "subject_people": ["Euripides", "Aristophanes"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL106884W 7 2021-08-12T05:48:41.203149 {"description": {"type": "/type/text", "value": "Amelia draws on her artistic talent to earn money for something special that she really wants."}, "covers": [849135], "key": "/works/OL106884W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL20373A"}}], "title": "Amelia works it out", "subjects": ["Artists", "Fiction", "Moneymaking projects", "Juvenile fiction", "Juvenile Wit and humor", "Money-making projects for girls", "Diaries", "Sisters", "Desire", "Shoes", "Money-making projects for children", "Amelia (Fictional character : Moss)"], "type": {"key": "/type/work"}, "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2009-10-17T21:25:07.728178"}, "last_modified": {"type": "/type/datetime", "value": "2021-08-12T05:48:41.203149"}}
+/type/work /works/OL10688549W 1 2009-12-11T03:26:15.729655 {"title": "Geographical variations in the climatic factors influencing solar building design", "created": {"type": "/type/datetime", "value": "2009-12-11T03:26:15.729655"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:26:15.729655"}, "latest_revision": 1, "key": "/works/OL10688549W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4462501A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10688656W 2 2010-01-18T04:23:52.959666 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:26:22.973997"}, "title": "Naamregister van de bekendste en meest in gebruik zynde Nederduitsche boeken", "subject_places": ["Netherlands"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T04:23:52.959666"}, "latest_revision": 2, "key": "/works/OL10688656W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4462577A"}}], "type": {"key": "/type/work"}, "subjects": ["Bibliography", "Dutch literature"], "revision": 2}
+/type/work /works/OL10688680W 1 2009-12-11T03:26:22.973997 {"title": "The wheel turns", "created": {"type": "/type/datetime", "value": "2009-12-11T03:26:22.973997"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:26:22.973997"}, "latest_revision": 1, "key": "/works/OL10688680W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4462595A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10689262W 1 2009-12-11T03:26:22.973997 {"title": "The treatment of nature conservation in the appraisal of trunk roads", "created": {"type": "/type/datetime", "value": "2009-12-11T03:26:22.973997"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:26:22.973997"}, "latest_revision": 1, "key": "/works/OL10689262W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4462978A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10689937W 1 2009-12-11T03:26:29.580317 {"title": "Our problem - their right", "created": {"type": "/type/datetime", "value": "2009-12-11T03:26:29.580317"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:26:29.580317"}, "latest_revision": 1, "key": "/works/OL10689937W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4463396A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10690082W 1 2009-12-11T03:26:29.580317 {"title": "Observations on a thin cambered aerofoil beyond the critical Mach number", "created": {"type": "/type/datetime", "value": "2009-12-11T03:26:29.580317"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:26:29.580317"}, "latest_revision": 1, "key": "/works/OL10690082W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4463507A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10690465W 1 2009-12-11T03:26:29.580317 {"title": "La Guerre des camisards", "created": {"type": "/type/datetime", "value": "2009-12-11T03:26:29.580317"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:26:29.580317"}, "latest_revision": 1, "key": "/works/OL10690465W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4463736A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10690681W 1 2009-12-11T03:26:36.703778 {"title": "Messias Moses redivivus Menschensohn ...", "created": {"type": "/type/datetime", "value": "2009-12-11T03:26:36.703778"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:26:36.703778"}, "latest_revision": 1, "key": "/works/OL10690681W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4463881A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10690802W 2 2010-12-06T07:47:00.892778 {"last_modified": {"type": "/type/datetime", "value": "2010-12-06T07:47:00.892778"}, "title": "Landschap", "created": {"type": "/type/datetime", "value": "2009-12-11T03:26:36.703778"}, "subjects": ["Bible"], "latest_revision": 2, "key": "/works/OL10690802W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4463985A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10691152W 1 2009-12-11T03:26:36.703778 {"title": "Die weltgeschichtliche Mission der deutschen Bildung", "created": {"type": "/type/datetime", "value": "2009-12-11T03:26:36.703778"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:26:36.703778"}, "latest_revision": 1, "key": "/works/OL10691152W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4464250A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10691310W 1 2009-12-11T03:26:36.703778 {"title": "Correspondance des re formateurs dans les pays de langue franc \u02b9aise", "created": {"type": "/type/datetime", "value": "2009-12-11T03:26:36.703778"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:26:36.703778"}, "latest_revision": 1, "key": "/works/OL10691310W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4464354A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10691338W 2 2010-10-17T21:37:32.279269 {"title": "Abbe Rohrbacher's Universalgeschichte der Katholischen Kirche", "created": {"type": "/type/datetime", "value": "2009-12-11T03:26:36.703778"}, "last_modified": {"type": "/type/datetime", "value": "2010-10-17T21:37:32.279269"}, "latest_revision": 2, "key": "/works/OL10691338W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2532205A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10692091W 2 2010-01-18T04:29:00.867406 {"title": "Phe dre (1677), Racine", "created": {"type": "/type/datetime", "value": "2009-12-11T03:26:44.447096"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-18T04:29:00.867406"}, "latest_revision": 2, "key": "/works/OL10692091W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4464860A"}}], "subject_people": ["Jean Racine (1639-1699)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10692541W 1 2009-12-11T03:26:44.447096 {"title": "Russian-English integrated dictionary", "created": {"type": "/type/datetime", "value": "2009-12-11T03:26:44.447096"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:26:44.447096"}, "latest_revision": 1, "key": "/works/OL10692541W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4465179A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10692582W 1 2009-12-11T03:26:44.447096 {"title": "Glas i hus", "created": {"type": "/type/datetime", "value": "2009-12-11T03:26:44.447096"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:26:44.447096"}, "latest_revision": 1, "key": "/works/OL10692582W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4465201A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10693054W 2 2010-01-18T04:29:00.867406 {"title": "Sun Yat-sen and communism", "created": {"type": "/type/datetime", "value": "2009-12-11T03:26:50.851882"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-18T04:29:00.867406"}, "latest_revision": 2, "key": "/works/OL10693054W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4465516A"}}], "subject_people": ["Yat-sen Sun (1866-1925)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10693232W 1 2009-12-11T03:26:50.851882 {"title": "River whose eyes", "created": {"type": "/type/datetime", "value": "2009-12-11T03:26:50.851882"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:26:50.851882"}, "latest_revision": 1, "key": "/works/OL10693232W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4465624A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10693438W 3 2012-06-02T21:55:30.042797 {"title": "Vorlesungen \u00fcber die entwicklung der mathematik im 19. jahrhundert ...", "created": {"type": "/type/datetime", "value": "2009-12-11T03:26:50.851882"}, "last_modified": {"type": "/type/datetime", "value": "2012-06-02T21:55:30.042797"}, "latest_revision": 3, "key": "/works/OL10693438W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL668475A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1069352W 4 2010-12-24T06:03:35.139317 {"title": "Mass Psychology", "created": {"type": "/type/datetime", "value": "2009-12-09T20:22:02.517362"}, "covers": [107784], "last_modified": {"type": "/type/datetime", "value": "2010-12-24T06:03:35.139317"}, "latest_revision": 4, "key": "/works/OL1069352W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL108452A"}}], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL10693588W 1 2009-12-11T03:26:50.851882 {"title": "Radial basis function network training using a fuzzy clustering scheme", "created": {"type": "/type/datetime", "value": "2009-12-11T03:26:50.851882"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:26:50.851882"}, "latest_revision": 1, "key": "/works/OL10693588W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4465821A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10693610W 1 2009-12-11T03:26:50.851882 {"title": "Les portugais en France au XVIe sie cle", "created": {"type": "/type/datetime", "value": "2009-12-11T03:26:50.851882"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:26:50.851882"}, "latest_revision": 1, "key": "/works/OL10693610W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4465837A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10693676W 2 2010-10-18T02:39:01.563263 {"title": "My home in Italy", "created": {"type": "/type/datetime", "value": "2009-12-11T03:26:58.329225"}, "last_modified": {"type": "/type/datetime", "value": "2010-10-18T02:39:01.563263"}, "latest_revision": 2, "key": "/works/OL10693676W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4465879A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10693873W 1 2009-12-11T03:26:58.329225 {"title": "Presidential address to the the Fianna Fail 51st Ard-Fheis [26th February, 1983]", "created": {"type": "/type/datetime", "value": "2009-12-11T03:26:58.329225"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:26:58.329225"}, "latest_revision": 1, "key": "/works/OL10693873W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4466045A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10694251W 4 2012-08-01T21:55:02.515319 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:26:58.329225"}, "subjects": ["Home rule", "Economic conditions", "Irish question"], "latest_revision": 4, "key": "/works/OL10694251W", "title": "Aspects of the Irish question", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4466284A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-08-01T21:55:02.515319"}, "covers": [6025133], "revision": 4}
+/type/work /works/OL10694851W 1 2009-12-11T03:27:07.673436 {"title": "Animal rights, human suffering and a study of protest", "created": {"type": "/type/datetime", "value": "2009-12-11T03:27:07.673436"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:27:07.673436"}, "latest_revision": 1, "key": "/works/OL10694851W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4466731A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10695316W 1 2009-12-11T03:27:07.673436 {"title": "A rational approach for calculation of heat transfer in diesel engines", "created": {"type": "/type/datetime", "value": "2009-12-11T03:27:07.673436"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:27:07.673436"}, "latest_revision": 1, "key": "/works/OL10695316W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4467137A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10695451W 1 2009-12-11T03:27:07.673436 {"title": "NAG mini manual, Mark 6", "created": {"type": "/type/datetime", "value": "2009-12-11T03:27:07.673436"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:27:07.673436"}, "latest_revision": 1, "key": "/works/OL10695451W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4467215A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10695838W 1 2009-12-11T03:27:17.529630 {"title": "End user computing", "created": {"type": "/type/datetime", "value": "2009-12-11T03:27:17.529630"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:27:17.529630"}, "latest_revision": 1, "key": "/works/OL10695838W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4467560A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10696326W 1 2009-12-11T03:27:17.529630 {"title": "The action-training approach to project improvement", "created": {"type": "/type/datetime", "value": "2009-12-11T03:27:17.529630"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:27:17.529630"}, "latest_revision": 1, "key": "/works/OL10696326W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4467982A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10696882W 1 2009-12-11T03:27:25.629138 {"title": "No Title Exists", "created": {"type": "/type/datetime", "value": "2009-12-11T03:27:25.629138"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:27:25.629138"}, "latest_revision": 1, "key": "/works/OL10696882W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4468461A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10697007W 1 2009-12-11T03:27:25.629138 {"title": "Engineering design in plastics", "created": {"type": "/type/datetime", "value": "2009-12-11T03:27:25.629138"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:27:25.629138"}, "latest_revision": 1, "key": "/works/OL10697007W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4468560A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10697476W 1 2009-12-11T03:27:25.629138 {"title": "Playing with fire", "created": {"type": "/type/datetime", "value": "2009-12-11T03:27:25.629138"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:27:25.629138"}, "latest_revision": 1, "key": "/works/OL10697476W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4468915A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10698165W 1 2009-12-11T03:27:32.981394 {"title": "Proving a will", "created": {"type": "/type/datetime", "value": "2009-12-11T03:27:32.981394"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:27:32.981394"}, "latest_revision": 1, "key": "/works/OL10698165W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4469364A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10698408W 1 2009-12-11T03:27:32.981394 {"title": "The British steam rail car, 1847-1948", "created": {"type": "/type/datetime", "value": "2009-12-11T03:27:32.981394"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:27:32.981394"}, "latest_revision": 1, "key": "/works/OL10698408W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4469550A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1069948W 3 2020-12-20T09:17:33.488822 {"title": "Pa\u0304sha", "key": "/works/OL1069948W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL108549A"}}], "subject_people": ["P\u0101sha"], "type": {"key": "/type/work"}, "subjects": ["Criticism and interpretation"], "description": {"type": "/type/text", "value": "On the life and works of Pa\u0304sha, Panjabi poet."}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-09T20:22:02.517362"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-20T09:17:33.488822"}}
+/type/work /works/OL10699604W 1 2009-12-11T03:27:44.609239 {"title": "Attitudes towards education, attitude change and personality", "created": {"type": "/type/datetime", "value": "2009-12-11T03:27:44.609239"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:27:44.609239"}, "latest_revision": 1, "key": "/works/OL10699604W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4470299A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10699694W 1 2009-12-11T03:27:52.128980 {"title": "Life's realities", "created": {"type": "/type/datetime", "value": "2009-12-11T03:27:52.128980"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:27:52.128980"}, "latest_revision": 1, "key": "/works/OL10699694W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4470362A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10699723W 1 2009-12-11T03:27:52.128980 {"title": "Historical information for New Testament students", "created": {"type": "/type/datetime", "value": "2009-12-11T03:27:52.128980"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:27:52.128980"}, "latest_revision": 1, "key": "/works/OL10699723W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4470380A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10699855W 1 2009-12-11T03:27:52.128980 {"title": "The official illustrated guide to the Bristol and Exeter, north and south Devon, Cornwall, and South Wales railways...", "created": {"type": "/type/datetime", "value": "2009-12-11T03:27:52.128980"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:27:52.128980"}, "latest_revision": 1, "key": "/works/OL10699855W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4470449A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10700041W 2 2010-01-18T04:39:08.704334 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:27:52.128980"}, "title": "Jesu my love and my liking [for] SATB", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T04:39:08.704334"}, "latest_revision": 2, "key": "/works/OL10700041W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4470570A"}}], "type": {"key": "/type/work"}, "subjects": ["Choruses, Sacred (Mixed voices, 4 pts.), Unaccompanied"], "revision": 2}
+/type/work /works/OL10700217W 3 2012-07-03T17:10:04.452083 {"title": "Cata logo abreviado de la Coleccio\u0301n Cervantina \"Carlos Prieto\" del Instituto Technolo gico y de Estudios Superiores de Monterrey", "created": {"type": "/type/datetime", "value": "2009-12-11T03:27:52.128980"}, "last_modified": {"type": "/type/datetime", "value": "2012-07-03T17:10:04.452083"}, "latest_revision": 3, "key": "/works/OL10700217W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4470680A"}}], "subject_people": ["Miguel de Cervantes Saavedra (1547-1616)"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10700904W 5 2017-05-16T11:22:21.074068 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:27:59.903595"}, "subjects": ["German literature", "History and criticism"], "latest_revision": 5, "key": "/works/OL10700904W", "title": "Die deutsche Nationallitteratur vom Tode Goethes bis zur Gegenwart", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL164908A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2017-05-16T11:22:21.074068"}, "covers": [5984406], "revision": 5}
+/type/work /works/OL10701103W 1 2009-12-11T03:27:59.903595 {"title": "Studia palaeographica", "created": {"type": "/type/datetime", "value": "2009-12-11T03:27:59.903595"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:27:59.903595"}, "latest_revision": 1, "key": "/works/OL10701103W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4471365A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10701106W 3 2010-04-28T07:15:00.454296 {"title": "\u00dcber die innere Form der Horazischen Oden", "created": {"type": "/type/datetime", "value": "2009-12-11T03:27:59.903595"}, "covers": [5945696], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:15:00.454296"}, "latest_revision": 3, "key": "/works/OL10701106W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4471368A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10701211W 3 2010-04-28T07:15:00.454296 {"title": "Hesperien: zur L\u00f6sung des religi\u00f6s-geschichtlichen Problems der alten Welt", "created": {"type": "/type/datetime", "value": "2009-12-11T03:27:59.903595"}, "covers": [6159008], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:15:00.454296"}, "latest_revision": 3, "key": "/works/OL10701211W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4471450A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1070142W 2 2011-10-23T09:43:29.142796 {"title": "Se\u0307lu\u0307u\u0307n orchlongii\u0306n sii\u0306mkhii\u0306", "created": {"type": "/type/datetime", "value": "2009-12-09T20:22:02.517362"}, "last_modified": {"type": "/type/datetime", "value": "2011-10-23T09:43:29.142796"}, "latest_revision": 2, "key": "/works/OL1070142W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL108594A"}}, {"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4293354A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10701600W 3 2010-04-28T07:15:00.454296 {"title": "Ueber die Nationalit\u00e4t der Kelten", "created": {"type": "/type/datetime", "value": "2009-12-11T03:27:59.903595"}, "covers": [5946192], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:15:00.454296"}, "latest_revision": 3, "key": "/works/OL10701600W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4471782A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10701649W 3 2010-04-28T07:15:00.454296 {"title": "Hat Horaz den pergamenischen Altar gekannt?", "created": {"type": "/type/datetime", "value": "2009-12-11T03:28:13.283743"}, "covers": [5946245], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:15:00.454296"}, "latest_revision": 3, "key": "/works/OL10701649W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4471823A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10702422W 1 2009-12-11T03:28:13.283743 {"title": "Der verewigte Schleiermacher", "created": {"type": "/type/datetime", "value": "2009-12-11T03:28:13.283743"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:28:13.283743"}, "latest_revision": 1, "key": "/works/OL10702422W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4472438A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10702701W 2 2010-01-18T04:52:07.107895 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:28:17.576734"}, "title": "Collec\u00e7a\u00f5 de livros ineditos de historia portugueza", "subject_places": ["Portugal"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T04:52:07.107895"}, "latest_revision": 2, "key": "/works/OL10702701W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4472684A"}}], "subject_times": ["Period of discoveries, 1385-1580", "To 1385"], "type": {"key": "/type/work"}, "subjects": ["History", "Sources", "Kings and rulers"], "revision": 2}
+/type/work /works/OL10702759W 4 2012-08-01T20:16:59.331684 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:28:17.576734"}, "subjects": ["Botany", "Water howellia", "Rare plants"], "latest_revision": 4, "key": "/works/OL10702759W", "title": "Report on the conservation status of Howellia aquatilis, a candidate threatened species", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4472711A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-08-01T20:16:59.331684"}, "covers": [5794423], "revision": 4}
+/type/work /works/OL10703186W 3 2021-08-19T04:51:57.577126 {"title": "Les ren\u00e9gats du 29 octobre", "subject_places": ["Quebec (Province)"], "key": "/works/OL10703186W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1544219A"}}], "subject_people": ["Alexandre Chauveau", "Ernest Racicot (1835-)", "E. J. Flynn (1847-1927)", "Paquet, \u00c9tienne Th\u00e9odore", "Pierre Fortin (1823-1888)"], "subject_times": ["1867-1897"], "type": {"key": "/type/work"}, "subjects": ["Politics and government"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T03:28:17.576734"}, "last_modified": {"type": "/type/datetime", "value": "2021-08-19T04:51:57.577126"}}
+/type/work /works/OL10704102W 3 2010-12-03T22:53:08.049305 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T22:53:08.049305"}, "title": "On the external evidence alleged against the genuineness of St. John XXI. 25", "created": {"type": "/type/datetime", "value": "2009-12-11T03:28:23.366415"}, "subjects": ["Bible", "Criticism, interpretation"], "latest_revision": 3, "key": "/works/OL10704102W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4473599A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10704318W 3 2010-04-28T07:15:00.454296 {"title": "Die Differential- und Integralrechnung, umfassend und mit steter ..", "created": {"type": "/type/datetime", "value": "2009-12-11T03:28:23.366415"}, "covers": [6150375], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:15:00.454296"}, "latest_revision": 3, "key": "/works/OL10704318W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4473713A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10704870W 6 2020-08-13T13:24:58.113864 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:28:29.264290"}, "subjects": ["African Americans", "Bibliography"], "latest_revision": 6, "key": "/works/OL10704870W", "title": "The black community and Champaign-Urbana", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4474063A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-08-13T13:24:58.113864"}, "covers": [5779084], "revision": 6}
+/type/work /works/OL10705014W 4 2011-11-10T20:52:27.258328 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:28:29.264290"}, "subjects": ["Early works to 1800", "Catholic Church", "Primers (Prayer books)"], "subtitle": "in Latin and Englishe, with many godly and deuout prayers, newly set forth by certayne of the cleargye with the assente of the moste reuerende father in god the Lorde Cardinall Pole hys grace: to be only vsed (al other sette a parte) of al the kyng and Quenes maiesties louinge subiectes throughe oute all their realmes and dominions, according to the Quenes hyghnes letters patentes in that behalf geuen", "key": "/works/OL10705014W", "title": "An vniforme and catholyke prymer", "latest_revision": 4, "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL7447A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2011-11-10T20:52:27.258328"}, "revision": 4}
+/type/work /works/OL10705412W 5 2020-08-11T10:58:16.929688 {"title": "Caradoc; or The church in the Sands", "created": {"type": "/type/datetime", "value": "2009-12-11T03:28:29.264290"}, "covers": [5779451], "last_modified": {"type": "/type/datetime", "value": "2020-08-11T10:58:16.929688"}, "latest_revision": 5, "key": "/works/OL10705412W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4474597A"}}], "type": {"key": "/type/work"}, "revision": 5}
+/type/work /works/OL10705451W 2 2010-01-18T05:11:34.845822 {"title": "Flaubert", "created": {"type": "/type/datetime", "value": "2009-12-11T03:28:29.264290"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-18T05:11:34.845822"}, "latest_revision": 2, "key": "/works/OL10705451W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4474631A"}}], "subject_people": ["Gustave Flaubert (1821-1880)"], "type": {"key": "/type/work"}, "subjects": ["Criticism and interpretation"], "revision": 2}
+/type/work /works/OL1070577W 2 2010-01-18T05:11:34.845822 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:22:31.428043"}, "title": "Muslim law in modern India", "subject_places": ["India"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T05:11:34.845822"}, "latest_revision": 2, "key": "/works/OL1070577W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL108700A"}}], "type": {"key": "/type/work"}, "subjects": ["Islamic law"], "revision": 2}
+/type/work /works/OL10705889W 6 2020-07-14T01:12:23.713616 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:28:33.974521"}, "subjects": ["History", "Societies"], "latest_revision": 6, "key": "/works/OL10705889W", "title": "Collections - State Historical Society of Wisconsin", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4474922A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-07-14T01:12:23.713616"}, "covers": [5950969], "revision": 6}
+/type/work /works/OL10705964W 5 2020-08-13T11:13:45.602494 {"title": "Remains", "created": {"type": "/type/datetime", "value": "2009-12-11T03:28:33.974521"}, "covers": [5980944], "last_modified": {"type": "/type/datetime", "value": "2020-08-13T11:13:45.602494"}, "latest_revision": 5, "key": "/works/OL10705964W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4474941A"}}], "type": {"key": "/type/work"}, "revision": 5}
+/type/work /works/OL10705976W 6 2020-08-13T00:47:08.043313 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:28:33.974521"}, "subjects": ["Municipal government by city manager"], "latest_revision": 6, "key": "/works/OL10705976W", "title": "Chicago's way out", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4474951A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-08-13T00:47:08.043313"}, "covers": [5950225], "revision": 6}
+/type/work /works/OL10706201W 3 2010-12-03T19:24:54.781302 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T19:24:54.781302"}, "title": "The old religion", "created": {"type": "/type/datetime", "value": "2009-12-11T03:28:33.974521"}, "subjects": ["Catholic Church", "Catholic authors", "Doctrines"], "latest_revision": 3, "key": "/works/OL10706201W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4475064A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1070669W 2 2010-12-05T10:52:16.457967 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:22:31.428043"}, "subject_places": ["India"], "subjects": ["Bibliography", "Marriage age"], "latest_revision": 2, "key": "/works/OL1070669W", "title": "Annotated bibliography of studies on age at marriage in India", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL108725A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-05T10:52:16.457967"}, "revision": 2}
+/type/work /works/OL10707178W 7 2020-08-13T00:28:21.263663 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:28:39.196645"}, "subjects": ["History. [from old catalog]"], "latest_revision": 7, "key": "/works/OL10707178W", "title": "Contributions of the Old residents' historical association", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4475536A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-08-13T00:28:21.263663"}, "covers": [5951324], "revision": 7}
+/type/work /works/OL10707654W 6 2020-08-13T02:49:31.540679 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:28:44.587884"}, "subject_people": ["Sophocles"], "key": "/works/OL10707654W", "title": "Das Pithanon bei Sophokles", "latest_revision": 6, "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4475784A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-08-13T02:49:31.540679"}, "covers": [5780566, 7185218], "revision": 6}
+/type/work /works/OL10708071W 6 2020-07-14T01:03:31.559419 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:28:44.587884"}, "subjects": ["Municipal government"], "latest_revision": 6, "key": "/works/OL10708071W", "title": "The Des Moines plan of city government", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4476028A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-07-14T01:03:31.559419"}, "covers": [5780780], "revision": 6}
+/type/work /works/OL10708169W 3 2010-04-28T07:15:00.454296 {"title": "Le guide du mineur", "created": {"type": "/type/datetime", "value": "2009-12-11T03:28:44.587884"}, "covers": [6242431], "subject_places": ["Yukon Territory", "Klondike River Valley (Yukon)", "Yukon"], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:15:00.454296"}, "latest_revision": 3, "key": "/works/OL10708169W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4476100A"}}], "subjects": ["Gold discoveries", "Gold mines and mining", "Prospecting", "Description and travel"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10708244W 5 2020-08-11T07:44:47.754042 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:28:44.587884"}, "subjects": ["Dictionaries", "French language", "Walloon", "Walloon dialect", "French"], "latest_revision": 5, "key": "/works/OL10708244W", "title": "Dictionnaire wallon-fran\u00e7ais, dans lequel on trouve la correction de nos idiotismes vicieux, et de nos wallonismes", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4476136A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-08-11T07:44:47.754042"}, "covers": [5952199], "revision": 5}
+/type/work /works/OL10708321W 2 2010-01-18T05:24:24.309134 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:28:44.587884"}, "title": "Formulaire des soci\u00e9t\u00e9s par actions annot\u00e9 de doctrine et de jurisprudence", "subject_places": ["France"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T05:24:24.309134"}, "latest_revision": 2, "key": "/works/OL10708321W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4476173A"}}], "type": {"key": "/type/work"}, "subjects": ["Forms", "Corporation law"], "revision": 2}
+/type/work /works/OL10708355W 5 2020-07-14T00:23:11.127183 {"title": "Die Frauen und der politische Kampf", "created": {"type": "/type/datetime", "value": "2009-12-11T03:28:44.587884"}, "covers": [5952295], "last_modified": {"type": "/type/datetime", "value": "2020-07-14T00:23:11.127183"}, "latest_revision": 5, "key": "/works/OL10708355W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4476201A"}}], "type": {"key": "/type/work"}, "revision": 5}
+/type/work /works/OL10708446W 5 2020-08-13T09:13:47.184626 {"title": "Die Organisation der Welt", "created": {"type": "/type/datetime", "value": "2009-12-11T03:28:44.587884"}, "covers": [5952391], "last_modified": {"type": "/type/datetime", "value": "2020-08-13T09:13:47.184626"}, "latest_revision": 5, "key": "/works/OL10708446W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4476273A"}}], "type": {"key": "/type/work"}, "revision": 5}
+/type/work /works/OL10708978W 5 2020-08-13T13:07:31.829873 {"title": "Dr. Miroslav Tyrs", "created": {"type": "/type/datetime", "value": "2009-12-11T03:28:50.201879"}, "covers": [5781258], "last_modified": {"type": "/type/datetime", "value": "2020-08-13T13:07:31.829873"}, "latest_revision": 5, "key": "/works/OL10708978W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4476542A"}}], "type": {"key": "/type/work"}, "revision": 5}
+/type/work /works/OL10709629W 5 2020-07-13T23:42:19.687508 {"title": "The ethics of co\u00f6peration", "created": {"type": "/type/datetime", "value": "2009-12-11T03:28:50.201879"}, "covers": [5781838], "last_modified": {"type": "/type/datetime", "value": "2020-07-13T23:42:19.687508"}, "latest_revision": 5, "key": "/works/OL10709629W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4476968A"}}], "type": {"key": "/type/work"}, "revision": 5}
+/type/work /works/OL10710111W 5 2020-08-11T08:03:42.096003 {"title": "Flora Lusatica", "created": {"type": "/type/datetime", "value": "2009-12-11T03:28:56.664342"}, "covers": [5954043], "last_modified": {"type": "/type/datetime", "value": "2020-08-11T08:03:42.096003"}, "latest_revision": 5, "key": "/works/OL10710111W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4477275A"}}], "type": {"key": "/type/work"}, "revision": 5}
+/type/work /works/OL10710159W 2 2010-01-18T05:37:09.916716 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:28:56.664342"}, "title": "Audit of the landlord survey, site I, wave 2", "subject_places": ["Wisconsin", "Brown County"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T05:37:09.916716"}, "latest_revision": 2, "key": "/works/OL10710159W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4477319A"}}], "type": {"key": "/type/work"}, "subjects": ["Public opinion", "Landlord and tenant", "Housing subsidies"], "revision": 2}
+/type/work /works/OL10710280W 3 2010-04-28T07:15:00.454296 {"title": "Das h\u00f6here Schulwesen Schwedens und dessen Reform in modernem Sinne", "created": {"type": "/type/datetime", "value": "2009-12-11T03:28:56.664342"}, "covers": [6148670], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:15:00.454296"}, "latest_revision": 3, "key": "/works/OL10710280W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4477382A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10710287W 6 2021-01-06T16:41:11.839513 {"title": "French Jansenists", "covers": [5954293], "key": "/works/OL10710287W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL6654851A"}}], "type": {"key": "/type/work"}, "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2009-12-11T03:28:56.664342"}, "last_modified": {"type": "/type/datetime", "value": "2021-01-06T16:41:11.839513"}}
+/type/work /works/OL10710410W 2 2010-01-18T05:37:09.916716 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:28:56.664342"}, "title": "Project talent", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T05:37:09.916716"}, "latest_revision": 2, "key": "/works/OL10710410W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4477470A"}}], "type": {"key": "/type/work"}, "subjects": ["Gifted children", "Education", "High schools"], "revision": 2}
+/type/work /works/OL10710417W 5 2020-07-14T00:41:09.135897 {"title": "A general history of music", "created": {"type": "/type/datetime", "value": "2009-12-11T03:28:56.664342"}, "covers": [5782500], "last_modified": {"type": "/type/datetime", "value": "2020-07-14T00:41:09.135897"}, "latest_revision": 5, "key": "/works/OL10710417W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4477475A"}}], "type": {"key": "/type/work"}, "revision": 5}
+/type/work /works/OL10710449W 6 2020-08-13T01:11:00.308853 {"last_modified": {"type": "/type/datetime", "value": "2020-08-13T01:11:00.308853"}, "title": "Genius genuine", "created": {"type": "/type/datetime", "value": "2009-12-11T03:28:56.664342"}, "covers": [5954544], "subject_places": ["Great Britain"], "subjects": ["Horse training", "Horse-racing", "Horses", "Training"], "subject_people": ["George IV King of Great Britain (1762-1830)"], "key": "/works/OL10710449W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4477505A"}}], "latest_revision": 6, "type": {"key": "/type/work"}, "revision": 6}
+/type/work /works/OL10710564W 6 2021-08-31T23:47:05.939560 {"title": "Gesammelte aufs\u00e4tze", "covers": [5954603], "key": "/works/OL10710564W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4477558A"}}], "type": {"key": "/type/work"}, "subjects": ["Economics"], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2009-12-11T03:28:56.664342"}, "last_modified": {"type": "/type/datetime", "value": "2021-08-31T23:47:05.939560"}}
+/type/work /works/OL10710594W 3 2010-12-03T23:15:15.506284 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:28:56.664342"}, "subject_places": ["Europe", "Northern Europe"], "subjects": ["Commerce", "Hanseatic League", "History"], "latest_revision": 3, "key": "/works/OL10710594W", "title": "Die blu\u0308tezeit deutschen Hanse", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4477588A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T23:15:15.506284"}, "revision": 3}
+/type/work /works/OL10710756W 5 2020-08-11T07:58:57.600924 {"title": "A grammar of the Arabic language", "created": {"type": "/type/datetime", "value": "2009-12-11T03:29:03.986173"}, "covers": [5782750], "last_modified": {"type": "/type/datetime", "value": "2020-08-11T07:58:57.600924"}, "latest_revision": 5, "key": "/works/OL10710756W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4477756A"}}], "type": {"key": "/type/work"}, "revision": 5}
+/type/work /works/OL10711338W 4 2020-07-14T13:23:58.667315 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:29:03.986173"}, "subjects": ["History"], "latest_revision": 4, "key": "/works/OL10711338W", "title": "Histoire de la ville d'Aumale (Seine-Inf\u00e9rieure)...et de ses institutions depuis les temps ..", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4478135A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-07-14T13:23:58.667315"}, "covers": [6241520], "revision": 4}
+/type/work /works/OL10711534W 5 2020-08-11T08:03:42.986654 {"title": "Historical sketch [of Newburgh, N.Y.]", "created": {"type": "/type/datetime", "value": "2009-12-11T03:29:03.986173"}, "covers": [5955631], "last_modified": {"type": "/type/datetime", "value": "2020-08-11T08:03:42.986654"}, "latest_revision": 5, "key": "/works/OL10711534W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4478349A"}}], "type": {"key": "/type/work"}, "revision": 5}
+/type/work /works/OL10711607W 5 2020-08-11T08:57:07.241174 {"title": "Organization, anniversary addresses, and enrollment", "created": {"type": "/type/datetime", "value": "2009-12-11T03:29:03.986173"}, "covers": [5961219], "last_modified": {"type": "/type/datetime", "value": "2020-08-11T08:57:07.241174"}, "latest_revision": 5, "key": "/works/OL10711607W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4478414A"}}], "type": {"key": "/type/work"}, "revision": 5}
+/type/work /works/OL10711667W 5 2020-08-11T07:30:58.289116 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:29:13.392252"}, "subjects": ["Church history"], "latest_revision": 5, "key": "/works/OL10711667W", "title": "History of the church, from its first establishment to our own times", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4478452A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-08-11T07:30:58.289116"}, "covers": [5955839], "revision": 5}
+/type/work /works/OL10711773W 5 2020-08-13T13:13:14.671137 {"title": "History of Maria Creek Church ..", "created": {"type": "/type/datetime", "value": "2009-12-11T03:29:13.392252"}, "covers": [5956028], "last_modified": {"type": "/type/datetime", "value": "2020-08-13T13:13:14.671137"}, "latest_revision": 5, "key": "/works/OL10711773W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4478544A"}}], "type": {"key": "/type/work"}, "revision": 5}
+/type/work /works/OL10712402W 6 2020-08-13T14:15:14.109904 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:29:13.392252"}, "subjects": ["Sermons", "Bible", "English Sermons"], "latest_revision": 6, "key": "/works/OL10712402W", "title": "A sermon, preached at the Church Congress, Northampton, October, 1902", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4478986A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-08-13T14:15:14.109904"}, "covers": [5964259], "revision": 6}
+/type/work /works/OL1071249W 1 2009-12-09T19:59:17.940406 {"title": "Nopiru\u0304 perum", "created": {"type": "/type/datetime", "value": "2009-12-09T19:59:17.940406"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:59:17.940406"}, "latest_revision": 1, "key": "/works/OL1071249W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL108926A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10712556W 5 2020-07-13T23:55:13.128934 {"covers": [5958217], "last_modified": {"type": "/type/datetime", "value": "2020-07-13T23:55:13.128934"}, "latest_revision": 5, "key": "/works/OL10712556W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4479071A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T03:29:13.392252"}, "title": "Le drame musical", "subjects": ["History and criticism", "Opera", "Music", "Poetry"], "subject_people": ["Richard Wagner (1813-1883)"], "type": {"key": "/type/work"}, "revision": 5}
+/type/work /works/OL10712912W 2 2010-01-18T05:49:46.158931 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:29:19.357383"}, "title": "Kamandakiya Nitisara; Jayama\u1e45galop\u0101dhy\u0101yanirapek\u1e63\u0101bhy\u0101\u1e43 sa\u1e43valitah; S\u0101\u1e45gavedavidy\u0101lay\u012bavidu\u1e63\u0101m\u0101 yogena sa\u1e43\u015bodhya samp\u0101dita\u1e25; Vi. Vi. De\u015bap\u0101\u1e47\u1e0de Mahodayena vistr\u0325tabh\u016bmikay\u0101 bh\u016b\u1e63ita\u1e25", "subject_places": ["India"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T05:49:46.158931"}, "latest_revision": 2, "key": "/works/OL10712912W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4479355A"}}], "subject_times": ["To 997"], "type": {"key": "/type/work"}, "subjects": ["Politics and government", "Political science", "History"], "revision": 2}
+/type/work /works/OL10713740W 5 2020-08-11T11:31:55.806370 {"title": "Le comte Albert de Mun", "created": {"type": "/type/datetime", "value": "2009-12-11T03:29:25.127452"}, "covers": [5958158], "last_modified": {"type": "/type/datetime", "value": "2020-08-11T11:31:55.806370"}, "latest_revision": 5, "key": "/works/OL10713740W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4479828A"}}], "type": {"key": "/type/work"}, "revision": 5}
+/type/work /works/OL10713795W 5 2020-08-11T09:29:05.733427 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:29:25.127452"}, "subject_people": ["Ren\u00e9 Louis Girardin marquis de (1735-1808)", "Jean-Jacques Rousseau (1712-1778)"], "key": "/works/OL10713795W", "title": "Le dernier ami de J.-J. Rousseau", "latest_revision": 5, "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4479871A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-08-11T09:29:05.733427"}, "covers": [5958214], "revision": 5}
+/type/work /works/OL10713873W 5 2020-08-13T10:00:17.525339 {"title": "Le grand ap\u00f4tre de l'Afrique au dix-neuvi\u00e8me si\u00e8cle, ou", "created": {"type": "/type/datetime", "value": "2009-12-11T03:29:25.127452"}, "covers": [5958264], "last_modified": {"type": "/type/datetime", "value": "2020-08-13T10:00:17.525339"}, "latest_revision": 5, "key": "/works/OL10713873W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4479901A"}}], "type": {"key": "/type/work"}, "revision": 5}
+/type/work /works/OL10714303W 5 2020-08-11T06:52:50.009120 {"title": "Les universites d'autrefois", "created": {"type": "/type/datetime", "value": "2009-12-11T03:29:25.127452"}, "covers": [5958551], "last_modified": {"type": "/type/datetime", "value": "2020-08-11T06:52:50.009120"}, "latest_revision": 5, "key": "/works/OL10714303W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4480172A"}}], "type": {"key": "/type/work"}, "revision": 5}
+/type/work /works/OL10714322W 2 2010-01-18T05:56:01.835688 {"title": "Tristano e Isotta", "created": {"type": "/type/datetime", "value": "2009-12-11T03:29:25.127452"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-18T05:56:01.835688"}, "latest_revision": 2, "key": "/works/OL10714322W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4480184A"}}], "subject_people": ["Richard Wagner (1813-1883)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL1071450W 2 2010-01-18T06:02:44.383240 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:23:01.985607"}, "title": "Uccatara Maithili\u0304-vya\u0304karan\u0323a", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T06:02:44.383240"}, "latest_revision": 2, "key": "/works/OL1071450W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL108986A"}}], "type": {"key": "/type/work"}, "subjects": ["Maithili language", "Grammar"], "revision": 2}
+/type/work /works/OL10714566W 5 2020-07-13T23:33:14.935449 {"title": "Limitation of common carriers liability", "created": {"type": "/type/datetime", "value": "2009-12-11T03:29:25.127452"}, "covers": [5785550], "last_modified": {"type": "/type/datetime", "value": "2020-07-13T23:33:14.935449"}, "latest_revision": 5, "key": "/works/OL10714566W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4480385A"}}], "type": {"key": "/type/work"}, "revision": 5}
+/type/work /works/OL10714941W 5 2020-08-13T11:51:45.205445 {"title": "The manuscripts of the Marquis of Ormonde", "created": {"type": "/type/datetime", "value": "2009-12-11T03:29:32.023681"}, "covers": [5785967], "last_modified": {"type": "/type/datetime", "value": "2020-08-13T11:51:45.205445"}, "latest_revision": 5, "key": "/works/OL10714941W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4480619A"}}], "type": {"key": "/type/work"}, "revision": 5}
+/type/work /works/OL10715291W 5 2020-07-13T23:59:50.728859 {"title": "Rumania", "created": {"type": "/type/datetime", "value": "2009-12-11T03:29:32.023681"}, "covers": [5789795], "last_modified": {"type": "/type/datetime", "value": "2020-07-13T23:59:50.728859"}, "latest_revision": 5, "key": "/works/OL10715291W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4480930A"}}], "type": {"key": "/type/work"}, "revision": 5}
+/type/work /works/OL1071545W 1 2009-12-09T19:59:45.828418 {"title": "Warp and woof", "created": {"type": "/type/datetime", "value": "2009-12-09T19:59:45.828418"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:59:45.828418"}, "latest_revision": 1, "key": "/works/OL1071545W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL109004A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10715471W 3 2020-08-11T05:48:29.961035 {"title": "Janus und seine Deuter", "created": {"type": "/type/datetime", "value": "2009-12-11T03:29:32.023681"}, "last_modified": {"type": "/type/datetime", "value": "2020-08-11T05:48:29.961035"}, "latest_revision": 3, "key": "/works/OL10715471W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4481175A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10715488W 3 2020-08-11T05:09:13.484753 {"title": "Mythologie grecque et romaine", "created": {"type": "/type/datetime", "value": "2009-12-11T03:29:32.023681"}, "last_modified": {"type": "/type/datetime", "value": "2020-08-11T05:09:13.484753"}, "latest_revision": 3, "key": "/works/OL10715488W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4481190A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1071550W 1 2009-12-09T19:59:45.828418 {"title": "Ma\u0304nushat\u0323i", "created": {"type": "/type/datetime", "value": "2009-12-09T19:59:45.828418"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:59:45.828418"}, "latest_revision": 1, "key": "/works/OL1071550W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL109004A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10715611W 4 2020-11-30T06:58:13.379902 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:29:32.023681"}, "subjects": ["Biography", "Poets, Sindhi", "Sindhi Poets", "Sindhi poetry", "Criticism and interpretation"], "subject_people": ["Saccal Sarmast (1739-1829)"], "key": "/works/OL10715611W", "title": "A voice from the wilderness", "latest_revision": 4, "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4481251A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-11-30T06:58:13.379902"}, "revision": 4}
+/type/work /works/OL10715804W 1 2009-12-11T03:29:43.596107 {"title": "Nellie's work for Jesus", "created": {"type": "/type/datetime", "value": "2009-12-11T03:29:43.596107"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:29:43.596107"}, "latest_revision": 1, "key": "/works/OL10715804W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4481398A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10715929W 3 2020-08-13T11:57:06.036098 {"title": "Die verleugnung Gottes des Vaters", "created": {"type": "/type/datetime", "value": "2009-12-11T03:29:43.596107"}, "last_modified": {"type": "/type/datetime", "value": "2020-08-13T11:57:06.036098"}, "latest_revision": 3, "key": "/works/OL10715929W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4481485A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10716003W 2 2010-12-04T06:05:15.644525 {"last_modified": {"type": "/type/datetime", "value": "2010-12-04T06:05:15.644525"}, "title": "Das Vater Unser", "created": {"type": "/type/datetime", "value": "2009-12-11T03:29:43.596107"}, "subjects": ["Lord's prayer"], "latest_revision": 2, "key": "/works/OL10716003W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4481526A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10716057W 3 2010-04-28T07:15:43.867005 {"title": "Index codicvm manvscriptorvm graecorvm bibliothecarvm mosqvensivm ..", "created": {"type": "/type/datetime", "value": "2009-12-11T03:29:43.596107"}, "covers": [6158898], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:15:43.867005"}, "latest_revision": 3, "key": "/works/OL10716057W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4481550A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10716391W 4 2022-12-22T22:07:37.783044 {"title": "Words to the winners of souls", "key": "/works/OL10716391W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4481759A"}}], "type": {"key": "/type/work"}, "subjects": ["Clergy"], "covers": [9606607], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T03:29:43.596107"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-22T22:07:37.783044"}}
+/type/work /works/OL10716621W 3 2010-12-03T17:46:02.241951 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T17:46:02.241951"}, "title": "Commentaire sur les \u00c9pitres de Saint Paul a Timoth\u00e9e, a Tite, a Phil\u00e9mon, aux H\u00e1breux", "created": {"type": "/type/datetime", "value": "2009-12-11T03:29:43.596107"}, "subjects": ["Bible", "Commentaries"], "latest_revision": 3, "key": "/works/OL10716621W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4481911A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10717123W 3 2020-08-12T23:54:12.474869 {"title": "Die herrlichkeit der heiligen taufe", "created": {"type": "/type/datetime", "value": "2009-12-11T03:29:51.199384"}, "last_modified": {"type": "/type/datetime", "value": "2020-08-12T23:54:12.474869"}, "latest_revision": 3, "key": "/works/OL10717123W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4482225A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10717889W 2 2010-01-18T06:07:42.460769 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:29:57.535952"}, "title": "The training school of popularity", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T06:07:42.460769"}, "latest_revision": 2, "key": "/works/OL10717889W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4482731A"}}], "type": {"key": "/type/work"}, "subjects": ["Etiquette", "Conduct of life", "Girls"], "revision": 2}
+/type/work /works/OL10717940W 4 2020-08-11T05:53:32.563594 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:29:57.535952"}, "subjects": ["Aphorisms and apothegms", "Religion", "Ethics", "Quotations"], "latest_revision": 4, "key": "/works/OL10717940W", "title": "A cyclopaedia of illustrations of moral and religious truths", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4482768A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-08-11T05:53:32.563594"}, "covers": [7436799], "revision": 4}
+/type/work /works/OL10718265W 2 2010-01-18T06:07:42.460769 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:29:57.535952"}, "title": "Le syllabus", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T06:07:42.460769"}, "latest_revision": 2, "key": "/works/OL10718265W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4482972A"}}], "subject_times": ["20th century"], "type": {"key": "/type/work"}, "subjects": ["Apologetics", "History", "Freedom of religion"], "revision": 2}
+/type/work /works/OL10718329W 3 2020-08-11T11:03:21.889387 {"title": "L' \u00e9glise catholique et les Protestants", "created": {"type": "/type/datetime", "value": "2009-12-11T03:29:57.535952"}, "last_modified": {"type": "/type/datetime", "value": "2020-08-11T11:03:21.889387"}, "latest_revision": 3, "key": "/works/OL10718329W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4483016A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10718337W 3 2020-08-13T00:33:34.132313 {"title": "Directoire Pratique du Jeune Confesseur", "created": {"type": "/type/datetime", "value": "2009-12-11T03:29:57.535952"}, "last_modified": {"type": "/type/datetime", "value": "2020-08-13T00:33:34.132313"}, "latest_revision": 3, "key": "/works/OL10718337W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4483023A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10718430W 3 2010-12-04T05:11:25.219427 {"last_modified": {"type": "/type/datetime", "value": "2010-12-04T05:11:25.219427"}, "title": "The minutes of the annual conferences of the Wesleyan-Methodist Church in Canada, from 1824 to 1845 inclusive", "created": {"type": "/type/datetime", "value": "2009-12-11T03:29:57.535952"}, "subjects": ["Congresses", "Wesleyan Methodist Church in Canada"], "latest_revision": 3, "key": "/works/OL10718430W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4483077A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10718632W 7 2020-07-14T00:45:40.574632 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:29:57.535952"}, "subjects": ["Economic policy", "Prices", "Currency question", "Gold standard"], "latest_revision": 7, "key": "/works/OL10718632W", "title": "Monetary policy", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1745302A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-07-14T00:45:40.574632"}, "covers": [5786560], "revision": 7}
+/type/work /works/OL10719001W 2 2010-01-18T06:14:09.212899 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:30:04.793414"}, "title": "A new-year's discourse, delivered at Salisbury, on Lord's day, January 2d, 1803", "subject_places": ["Salisbury (Conn.)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T06:14:09.212899"}, "latest_revision": 2, "key": "/works/OL10719001W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4483517A"}}], "type": {"key": "/type/work"}, "subjects": ["New Year sermons", "History"], "revision": 2}
+/type/work /works/OL10719011W 5 2020-08-13T01:11:04.802909 {"title": "Hand book of the New York fire insurance exchange", "created": {"type": "/type/datetime", "value": "2009-12-11T03:30:04.793414"}, "covers": [5792652], "last_modified": {"type": "/type/datetime", "value": "2020-08-13T01:11:04.802909"}, "latest_revision": 5, "key": "/works/OL10719011W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4483524A"}}], "type": {"key": "/type/work"}, "revision": 5}
+/type/work /works/OL10719050W 1 2009-12-11T03:30:04.793414 {"title": "H\u00f6lderlins Einkehr", "created": {"type": "/type/datetime", "value": "2009-12-11T03:30:04.793414"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:30:04.793414"}, "latest_revision": 1, "key": "/works/OL10719050W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4483562A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10719128W 4 2010-11-17T08:27:29.766200 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:30:04.793414"}, "subjects": ["Librettos", "Operas"], "subtitle": "po\u00e8me lyrique en un acte", "key": "/works/OL10719128W", "title": "H\u00e9l\u00e8ne", "latest_revision": 4, "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2689638A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-11-17T08:27:29.766200"}, "revision": 4}
+/type/work /works/OL107197W 4 2020-11-02T02:46:05.973122 {"created": {"type": "/type/datetime", "value": "2009-10-17T21:38:03.501896"}, "subject_places": ["India"], "subjects": ["Cookery, Indic", "Housekeeping", "Handbooks, manuals", "Indic Cookery", "Indic Cooking"], "latest_revision": 4, "key": "/works/OL107197W", "title": "The complete Indian housekeeper and cook", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL18113A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-11-02T02:46:05.973122"}, "revision": 4}
+/type/work /works/OL10719936W 2 2010-01-18T06:20:09.562933 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:30:10.076084"}, "title": "The nineteenth century", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T06:20:09.562933"}, "latest_revision": 2, "key": "/works/OL10719936W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4484182A"}}], "type": {"key": "/type/work"}, "subjects": ["Painting", "Painters", "History"], "revision": 2}
+/type/work /works/OL10720083W 6 2020-08-13T12:38:19.209478 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:30:10.076084"}, "subjects": ["Biography", "History"], "latest_revision": 6, "key": "/works/OL10720083W", "title": "Poland centennial, September 11, 1895", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4484302A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-08-13T12:38:19.209478"}, "covers": [5788364], "revision": 6}
+/type/work /works/OL10720118W 2 2021-07-26T07:10:40.709678 {"title": "Ideario de Costa", "key": "/works/OL10720118W", "authors": [{"author": {"key": "/authors/OL4484322A"}, "type": {"key": "/type/author_role"}}], "type": {"key": "/type/work"}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T03:30:10.076084"}, "last_modified": {"type": "/type/datetime", "value": "2021-07-26T07:10:40.709678"}}
+/type/work /works/OL10720268W 3 2012-05-19T11:29:40.221389 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:30:10.076084"}, "subject_places": ["United States", "Cuba"], "subjects": ["Foster home care", "Refugees"], "latest_revision": 3, "key": "/works/OL10720268W", "title": "Cuba's children in exile", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL18005A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-19T11:29:40.221389"}, "revision": 3}
+/type/work /works/OL10721152W 5 2020-08-11T09:47:49.565171 {"title": "Quindecennial volume, Harvard College, Class of 1896", "created": {"type": "/type/datetime", "value": "2009-12-11T03:30:15.811690"}, "covers": [5788876], "last_modified": {"type": "/type/datetime", "value": "2020-08-11T09:47:49.565171"}, "latest_revision": 5, "key": "/works/OL10721152W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4484871A"}}], "type": {"key": "/type/work"}, "revision": 5}
+/type/work /works/OL1072130W 1 2009-12-09T19:59:45.828418 {"title": "Na\u0304taka ja\u0304ri\u0304 hai", "created": {"type": "/type/datetime", "value": "2009-12-09T19:59:45.828418"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:59:45.828418"}, "latest_revision": 1, "key": "/works/OL1072130W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL109214A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10721424W 6 2020-08-11T06:03:52.338198 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:30:15.811690"}, "subjects": ["Public health"], "latest_revision": 6, "key": "/works/OL10721424W", "title": "Reminiscences", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4485084A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-08-11T06:03:52.338198"}, "covers": [5789149], "revision": 6}
+/type/work /works/OL10721447W 6 2020-07-14T00:54:50.167089 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:30:15.811690"}, "subjects": ["Christian Science"], "latest_revision": 6, "key": "/works/OL10721447W", "title": "Reminiscences, sermons and correspondence", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4485109A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-07-14T00:54:50.167089"}, "covers": [5963189], "revision": 6}
+/type/work /works/OL10721650W 5 2020-08-12T23:35:43.467108 {"title": "Representation to the Minister of agriculture, industry and commerce by the Orinoco company limited respecting its property of the so called \"Imataca\" mine", "created": {"type": "/type/datetime", "value": "2009-12-11T03:30:15.811690"}, "covers": [5789246], "last_modified": {"type": "/type/datetime", "value": "2020-08-12T23:35:43.467108"}, "latest_revision": 5, "key": "/works/OL10721650W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4485364A"}}], "type": {"key": "/type/work"}, "revision": 5}
+/type/work /works/OL10721997W 6 2020-08-13T10:30:50.671494 {"title": "Saggio di scherzi comici", "created": {"type": "/type/datetime", "value": "2009-12-11T03:30:22.162364"}, "covers": [5790109, 7216035], "last_modified": {"type": "/type/datetime", "value": "2020-08-13T10:30:50.671494"}, "latest_revision": 6, "key": "/works/OL10721997W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4485604A"}}], "type": {"key": "/type/work"}, "revision": 6}
+/type/work /works/OL10722174W 6 2020-08-13T13:31:34.134417 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:30:22.162364"}, "subjects": ["Second Advent"], "latest_revision": 6, "key": "/works/OL10722174W", "title": "The scriptures searched", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4485721A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-08-13T13:31:34.134417"}, "covers": [5964093], "revision": 6}
+/type/work /works/OL10722247W 6 2020-08-13T08:58:07.703394 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:30:22.162364"}, "subjects": ["History"], "latest_revision": 6, "key": "/works/OL10722247W", "title": "Semi-centennial address of Chas. Davison, poems by W. S. Knowlton and T. N. Lord, etc., Monson, April 22, 1872", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4485768A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-08-13T08:58:07.703394"}, "covers": [5964210], "revision": 6}
+/type/work /works/OL10722312W 3 2020-08-11T06:48:04.217646 {"title": "Sermons of the Rev. Francis A. Baker, priest of the Congregation of St. Paul", "created": {"type": "/type/datetime", "value": "2009-12-11T03:30:22.162364"}, "last_modified": {"type": "/type/datetime", "value": "2020-08-11T06:48:04.217646"}, "latest_revision": 3, "key": "/works/OL10722312W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4485804A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10722438W 2 2014-01-22T12:25:30.215582 {"title": "Undine", "created": {"type": "/type/datetime", "value": "2009-12-11T03:30:22.162364"}, "last_modified": {"type": "/type/datetime", "value": "2014-01-22T12:25:30.215582"}, "latest_revision": 2, "key": "/works/OL10722438W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL18209A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10722653W 5 2020-08-13T14:09:25.489228 {"title": "The song of the rose", "created": {"type": "/type/datetime", "value": "2009-12-11T03:30:22.162364"}, "covers": [5790645], "last_modified": {"type": "/type/datetime", "value": "2020-08-13T14:09:25.489228"}, "latest_revision": 5, "key": "/works/OL10722653W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4486093A"}}], "type": {"key": "/type/work"}, "revision": 5}
+/type/work /works/OL1072266W 1 2009-12-09T19:59:45.828418 {"title": "Finding the Household", "created": {"type": "/type/datetime", "value": "2009-12-09T19:59:45.828418"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T19:59:45.828418"}, "latest_revision": 1, "key": "/works/OL1072266W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL109255A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1072308W 4 2020-10-11T03:28:02.146306 {"last_modified": {"type": "/type/datetime", "value": "2020-10-11T03:28:02.146306"}, "title": "Mul\u0323akinkot\u0323i", "created": {"type": "/type/datetime", "value": "2009-12-09T20:23:01.985607"}, "subjects": ["Poetry, Malayalam", "Malayalam poetry", "Malayalam Poetry"], "latest_revision": 4, "key": "/works/OL1072308W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL109274A"}}], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL10723117W 4 2012-05-02T11:22:14.159385 {"last_modified": {"type": "/type/datetime", "value": "2012-05-02T11:22:14.159385"}, "title": "The information of Francisco de Faria", "created": {"type": "/type/datetime", "value": "2009-12-11T03:30:28.980888"}, "subjects": ["Popish Plot, 1678"], "latest_revision": 4, "key": "/works/OL10723117W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL60867A"}}], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL10723137W 5 2020-08-11T08:51:19.074147 {"title": "Suggested standards of purity for foods and drugs", "created": {"type": "/type/datetime", "value": "2009-12-11T03:30:28.980888"}, "covers": [5791048], "last_modified": {"type": "/type/datetime", "value": "2020-08-11T08:51:19.074147"}, "latest_revision": 5, "key": "/works/OL10723137W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4486418A"}}], "type": {"key": "/type/work"}, "revision": 5}
+/type/work /works/OL10723450W 5 2020-07-14T00:45:42.095072 {"title": "The theatre", "created": {"type": "/type/datetime", "value": "2009-12-11T03:30:28.980888"}, "covers": [5791331], "last_modified": {"type": "/type/datetime", "value": "2020-07-14T00:45:42.095072"}, "latest_revision": 5, "key": "/works/OL10723450W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4486679A"}}], "type": {"key": "/type/work"}, "revision": 5}
+/type/work /works/OL10723883W 3 2013-09-11T16:46:12.653840 {"title": "Notice sur une \"Summa dictaminis\" jadis conserv\u00e9 \u00e0 Beauvais ..", "created": {"type": "/type/datetime", "value": "2009-12-11T03:30:35.032537"}, "last_modified": {"type": "/type/datetime", "value": "2013-09-11T16:46:12.653840"}, "latest_revision": 3, "key": "/works/OL10723883W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1632311A"}}], "subject_people": ["Bernard de Meung"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1072394W 5 2020-11-16T16:24:53.720172 {"covers": [8480173], "last_modified": {"type": "/type/datetime", "value": "2020-11-16T16:24:53.720172"}, "latest_revision": 5, "key": "/works/OL1072394W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL109295A"}}], "created": {"type": "/type/datetime", "value": "2009-12-09T20:23:27.496339"}, "title": "Divine ecstacy, the story of Khajuraho", "subject_places": ["India", "Khajuraho", "Khajuraho (India)"], "subjects": ["Architecture, Tantric", "Erotic sculpture, Indic", "History", "Temples, Hindu", "Rites and ceremonies", "Sculpture, Hindu", "Hindu Sculpture", "Tantric Architecture", "Indic Erotic sculpture", "Hindu Temples", "Hindu sculpture", "Hindu temples", "Tantric architecture"], "type": {"key": "/type/work"}, "revision": 5}
+/type/work /works/OL10724091W 5 2020-08-11T05:39:03.162588 {"title": "Un \u00e9ducateur d'il y a cent ans", "created": {"type": "/type/datetime", "value": "2009-12-11T03:30:35.032537"}, "covers": [5966386], "last_modified": {"type": "/type/datetime", "value": "2020-08-11T05:39:03.162588"}, "latest_revision": 5, "key": "/works/OL10724091W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4487089A"}}], "type": {"key": "/type/work"}, "revision": 5}
+/type/work /works/OL10724108W 2 2010-01-18T06:40:42.407452 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:30:35.032537"}, "title": "Le devoir professionel", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T06:40:42.407452"}, "latest_revision": 2, "key": "/works/OL10724108W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4487091A"}}], "type": {"key": "/type/work"}, "subjects": ["Quebec (Province)", "Christian ethics", "Professional ethics", "Catholic authors"], "revision": 2}
+/type/work /works/OL10724130W 2 2010-12-04T03:55:46.814531 {"last_modified": {"type": "/type/datetime", "value": "2010-12-04T03:55:46.814531"}, "title": "The United Nations at work", "created": {"type": "/type/datetime", "value": "2009-12-11T03:30:35.032537"}, "subjects": ["United Nations"], "latest_revision": 2, "key": "/works/OL10724130W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4487099A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10724202W 5 2020-07-14T01:31:43.655663 {"title": "Uphams corner", "created": {"type": "/type/datetime", "value": "2009-12-11T03:30:35.032537"}, "covers": [5966478], "last_modified": {"type": "/type/datetime", "value": "2020-07-14T01:31:43.655663"}, "latest_revision": 5, "key": "/works/OL10724202W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4487155A"}}], "type": {"key": "/type/work"}, "revision": 5}
+/type/work /works/OL10725501W 5 2020-08-11T09:08:20.198012 {"title": "Fremdw\u00f6rterbuch des siebzehnten Jahrhunderts", "created": {"type": "/type/datetime", "value": "2009-12-11T03:30:41.307678"}, "covers": [5968217], "last_modified": {"type": "/type/datetime", "value": "2020-08-11T09:08:20.198012"}, "latest_revision": 5, "key": "/works/OL10725501W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4488067A"}}], "type": {"key": "/type/work"}, "revision": 5}
+/type/work /works/OL10725915W 4 2011-12-14T20:00:48.685387 {"last_modified": {"type": "/type/datetime", "value": "2011-12-14T20:00:48.685387"}, "title": "Letter from the Comptroller of the Treasury, transmitting a statement of the balances outstanding more than three years prior to July 1, 1857, on the books of the Second, Third, and Fourth Auditors, and the Register of the Treasury", "created": {"type": "/type/datetime", "value": "2009-12-11T03:30:46.351819"}, "subjects": ["Auditing"], "latest_revision": 4, "key": "/works/OL10725915W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL154976A"}}], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL10726308W 5 2020-08-11T09:19:43.774304 {"title": "Pietro Thouar educatore e artista", "created": {"type": "/type/datetime", "value": "2009-12-11T03:30:46.351819"}, "covers": [5969105], "last_modified": {"type": "/type/datetime", "value": "2020-08-11T09:19:43.774304"}, "latest_revision": 5, "key": "/works/OL10726308W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4488402A"}}], "type": {"key": "/type/work"}, "revision": 5}
+/type/work /works/OL10726629W 3 2010-12-04T02:48:56.802782 {"last_modified": {"type": "/type/datetime", "value": "2010-12-04T02:48:56.802782"}, "latest_revision": 3, "key": "/works/OL10726629W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4488600A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T03:30:46.351819"}, "title": "Notre livre intime de famille", "subject_places": ["France"], "subjects": ["Plon (Firm)", "Plon Freres (Firm)", "Printers", "Publishers and publishing"], "subject_people": ["Plon family"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10726985W 2 2010-08-29T09:42:46.357512 {"title": "The meditations of Saint Augustin", "created": {"type": "/type/datetime", "value": "2009-12-11T03:30:50.779127"}, "last_modified": {"type": "/type/datetime", "value": "2010-08-29T09:42:46.357512"}, "latest_revision": 2, "key": "/works/OL10726985W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL22060A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10727046W 2 2010-08-29T09:42:46.357512 {"title": "Six traite\u25a1s anti-maniche\u25a1ens", "created": {"type": "/type/datetime", "value": "2009-12-11T03:30:50.779127"}, "last_modified": {"type": "/type/datetime", "value": "2010-08-29T09:42:46.357512"}, "latest_revision": 2, "key": "/works/OL10727046W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL22060A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10727305W 5 2016-07-08T05:23:33.929193 {"last_modified": {"type": "/type/datetime", "value": "2016-07-08T05:23:33.929193"}, "title": "Regula S. Patris Benedicti", "created": {"type": "/type/datetime", "value": "2009-12-11T03:30:50.779127"}, "subjects": ["Benedictines", "English Benedictine Congregation", "Monasticism and religious orders", "Rules"], "latest_revision": 5, "key": "/works/OL10727305W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL112829A"}}, {"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5483731A"}}], "type": {"key": "/type/work"}, "revision": 5}
+/type/work /works/OL10727540W 2 2010-01-18T06:58:41.020511 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:30:50.779127"}, "title": "Matematika v Peterburgskom - Leningradskom universitete", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T06:58:41.020511"}, "latest_revision": 2, "key": "/works/OL10727540W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4489050A"}}], "type": {"key": "/type/work"}, "subjects": ["Mathematics", "Russia", "History"], "revision": 2}
+/type/work /works/OL10728056W 3 2016-03-31T16:02:13.624993 {"last_modified": {"type": "/type/datetime", "value": "2016-03-31T16:02:13.624993"}, "title": "Racquetball Everyone", "created": {"type": "/type/datetime", "value": "2009-12-11T03:30:55.501299"}, "subjects": ["Racquetball", "Physical fitness"], "latest_revision": 3, "key": "/works/OL10728056W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL391095A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10728123W 2 2010-01-18T07:03:22.076718 {"title": "The two moralities of Spinoza", "created": {"type": "/type/datetime", "value": "2009-12-11T03:30:55.501299"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-18T07:03:22.076718"}, "latest_revision": 2, "key": "/works/OL10728123W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4489338A"}}], "subject_people": ["Benedictus de Spinoza (1632-1677)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10728709W 1 2009-12-11T03:30:58.892777 {"title": "SOME FEATURES OF JAPAN'S DEVELOPMENT ASSISTANCE", "created": {"type": "/type/datetime", "value": "2009-12-11T03:30:58.892777"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:30:58.892777"}, "latest_revision": 1, "key": "/works/OL10728709W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4489515A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10728729W 3 2019-02-21T00:04:27.409762 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:30:58.892777"}, "subjects": ["Ph\u00e9nom\u00e9nologie"], "latest_revision": 3, "key": "/works/OL10728729W", "title": "De la ph\u00e9nomenologie", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4489528A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2019-02-21T00:04:27.409762"}, "covers": [8378210], "revision": 3}
+/type/work /works/OL10728834W 3 2010-12-06T07:48:31.335370 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:30:58.892777"}, "subject_places": ["United States"], "subjects": ["Congresses", "Instruction and study", "Music", "Psychological aspects", "Psychological aspects of Music"], "latest_revision": 3, "key": "/works/OL10728834W", "title": "Documentary report of the Ann Arbor symposium, session III", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4489561A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-06T07:48:31.335370"}, "revision": 3}
+/type/work /works/OL10729167W 1 2009-12-11T03:30:58.892777 {"title": "Finance and profitability in the wool textile industry", "created": {"type": "/type/datetime", "value": "2009-12-11T03:30:58.892777"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:30:58.892777"}, "latest_revision": 1, "key": "/works/OL10729167W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4489676A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10729563W 1 2009-12-11T03:30:58.892777 {"title": "Resistance and Ohm's law", "created": {"type": "/type/datetime", "value": "2009-12-11T03:30:58.892777"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:30:58.892777"}, "latest_revision": 1, "key": "/works/OL10729563W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4489732A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10729566W 1 2009-12-11T03:30:58.892777 {"title": "Welding", "created": {"type": "/type/datetime", "value": "2009-12-11T03:30:58.892777"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:30:58.892777"}, "latest_revision": 1, "key": "/works/OL10729566W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4489732A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1072999W 3 2020-12-03T11:40:55.583165 {"title": "\"Nayane toran\u0323a moti\u0304na\u0304\"", "key": "/works/OL1072999W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL109455A"}}], "subject_people": ["S\u0101garadatta"], "type": {"key": "/type/work"}, "subjects": ["Fiction"], "description": {"type": "/type/text", "value": "On Sa\u0304garadatta, a character in Jaina mythological stories."}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-09T20:23:27.496339"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-03T11:40:55.583165"}}
+/type/work /works/OL1073010W 4 2020-12-17T18:53:12.020895 {"title": "Jn\u0303a\u0304nes\u0301vari\u0304ca\u0304 tr\u0325shn\u0323a\u0304bandha", "key": "/works/OL1073010W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL109459A"}}], "subject_people": ["J\u00f1\u0101nadeva (fl. 1290)"], "type": {"key": "/type/work"}, "subjects": ["Commentaries", "Bhagavadg\u012bt\u0101"], "description": {"type": "/type/text", "value": "On Jn\u0303anes\u0301vari\u0304, commentary on Bhagavadgi\u0304ta\u0304, by Jn\u0303a\u0304nadeva, fl. 1290."}, "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-09T20:23:27.496339"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-17T18:53:12.020895"}}
+/type/work /works/OL10730798W 3 2010-03-12T06:56:29.307877 {"subtitle": "report to the Congress by the Comptroller General of the United States", "created": {"type": "/type/datetime", "value": "2009-12-11T03:31:01.599237"}, "title": "Examination of the Federal Crop Insurance Corporation's financial statements for the year ended September 30, 1984", "last_modified": {"type": "/type/datetime", "value": "2010-03-12T06:56:29.307877"}, "latest_revision": 3, "key": "/works/OL10730798W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4489781A"}}], "type": {"key": "/type/work"}, "subjects": ["Federal Crop Insurance Corporation", "Auditing"], "revision": 3}
+/type/work /works/OL10730809W 3 2010-03-12T06:56:31.138078 {"subtitle": "creating value through world-class financial management : exposure draft", "created": {"type": "/type/datetime", "value": "2009-12-11T03:31:01.599237"}, "title": "Executive guide", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-03-12T06:56:31.138078"}, "latest_revision": 3, "key": "/works/OL10730809W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4489781A"}}], "type": {"key": "/type/work"}, "subjects": ["Accounting", "Case studies", "Public Finance", "Administrative agencies", "Finance"], "revision": 3}
+/type/work /works/OL10731032W 3 2010-03-12T06:57:22.031908 {"subtitle": "report to the Chairman, Committee on Government Operations, House of Representatives", "created": {"type": "/type/datetime", "value": "2009-12-11T03:31:01.599237"}, "title": "Fiscal management of the Combined Federal Campaign", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-03-12T06:57:22.031908"}, "latest_revision": 3, "key": "/works/OL10731032W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4489781A"}}], "type": {"key": "/type/work"}, "subjects": ["Finance", "Officials and employees", "Charitable contributions", "United States", "Social service", "Fund raising", "United States. Combined Federal Campaign"], "revision": 3}
+/type/work /works/OL10731786W 3 2010-03-12T06:59:48.764026 {"subtitle": "report to the Secretary of Transportation", "created": {"type": "/type/datetime", "value": "2009-12-11T03:31:02.605493"}, "title": "Misuse of airport land acquired through Federal assistance", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-03-12T06:59:48.764026"}, "latest_revision": 3, "key": "/works/OL10731786W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4489781A"}}], "type": {"key": "/type/work"}, "subjects": ["Law and legislation", "Airports"], "revision": 3}
+/type/work /works/OL10731868W 3 2010-03-12T07:00:03.468656 {"subtitle": "nonprofit sponsor of Postal Service meetings with suppliers and customers : report to the Chairman, Subcommittee on Government Information, Justice, and Agriculture, Committee on Government Operations, House of Representatives", "created": {"type": "/type/datetime", "value": "2009-12-11T03:31:02.605493"}, "title": "National Postal Forum", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-03-12T07:00:03.468656"}, "latest_revision": 3, "key": "/works/OL10731868W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4489781A"}}], "type": {"key": "/type/work"}, "subjects": ["United States Postal Service", "National Postal Forum (Firm)", "Postal service"], "revision": 3}
+/type/work /works/OL10732277W 3 2010-03-12T07:01:32.332556 {"subtitle": "information on the cash position of the natural gas and telephone industries : report to the Honorable Byron L. Dorgan, House of Representatives", "created": {"type": "/type/datetime", "value": "2009-12-11T03:31:02.605493"}, "title": "Public utilities", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-03-12T07:01:32.332556"}, "latest_revision": 3, "key": "/works/OL10732277W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4489781A"}}], "type": {"key": "/type/work"}, "subjects": ["Gas industry", "Telecommunication", "Public utilities"], "revision": 3}
+/type/work /works/OL10732388W 3 2010-03-12T07:01:53.572875 {"subtitle": "report", "created": {"type": "/type/datetime", "value": "2009-12-11T03:31:02.605493"}, "title": "Review of the Army's decision to disestablish the training center at Fort Dix, New Jersey", "subject_places": ["Fort Dix (N.J.)"], "last_modified": {"type": "/type/datetime", "value": "2010-03-12T07:01:53.572875"}, "latest_revision": 3, "key": "/works/OL10732388W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4489781A"}}], "type": {"key": "/type/work"}, "subjects": ["United States", "Military construction operations", "United States. Army"], "revision": 3}
+/type/work /works/OL10733027W 3 2010-03-12T07:03:47.975935 {"subtitle": "appraisal systems are in place, but basic refinements are needed : report to agency officials", "created": {"type": "/type/datetime", "value": "2009-12-11T03:31:03.772829"}, "title": "Blue-collar workers", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-03-12T07:03:47.975935"}, "latest_revision": 3, "key": "/works/OL10733027W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4489781A"}}], "type": {"key": "/type/work"}, "subjects": ["Rating of", "Civil service", "Blue collar workers", "Officials and employees", "Employees", "Personnel management"], "revision": 3}
+/type/work /works/OL10733311W 3 2010-12-03T13:15:50.233271 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:15:50.233271"}, "title": "Most borrowers of economic opportunity loans have not succeeded in business", "created": {"type": "/type/datetime", "value": "2009-12-11T03:31:03.772829"}, "subjects": ["Finance", "Government lending", "Loans", "Small business", "United States", "United States. Small Business Administration"], "latest_revision": 3, "key": "/works/OL10733311W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4489781A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10733346W 3 2010-12-03T16:40:58.301680 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:31:03.772829"}, "subject_places": ["United States"], "subjects": ["Classified Defense information", "Defense information, Classified", "Export controls", "Foreign Visitors", "Government policy", "Nuclear nonproliferation", "Nuclear weapons industry", "Security measures", "United States", "United States. Dept. of Energy", "Visitors, Foreign"], "latest_revision": 3, "key": "/works/OL10733346W", "title": "Nuclear nonproliferation", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4489781A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T16:40:58.301680"}, "revision": 3}
+/type/work /works/OL10733347W 3 2010-03-12T07:04:26.132051 {"subtitle": "usefulness of information from Shippingport decommissioning for Rancho Seco : report to the Honorable Vic Fazio, House of Representatives", "created": {"type": "/type/datetime", "value": "2009-12-11T03:31:03.772829"}, "title": "Nuclear R & D", "subject_places": ["Pennsylvania", "California"], "last_modified": {"type": "/type/datetime", "value": "2010-03-12T07:04:26.132051"}, "latest_revision": 3, "key": "/works/OL10733347W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4489781A"}}], "type": {"key": "/type/work"}, "subjects": ["Decommissioning", "Rancho Seco (Nuclear power plant : Calif.)", "Shippingport Nuclear Power Station", "Nuclear power plants"], "revision": 3}
+/type/work /works/OL10733356W 3 2010-12-03T13:15:27.775710 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:15:27.775710"}, "title": "Opportunities still exist for the Army to save millions annually through improved retail inventory management", "created": {"type": "/type/datetime", "value": "2009-12-11T03:31:03.772829"}, "subjects": ["Inventory control", "Materials management", "Supplies and stores", "United States", "United States. Army"], "latest_revision": 3, "key": "/works/OL10733356W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4489781A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10733425W 3 2010-03-12T07:04:33.185987 {"subtitle": "based on the standards for audit of Governmental organization, programs, activities and functions", "created": {"type": "/type/datetime", "value": "2009-12-11T03:31:03.772829"}, "title": "Self-evaluation guide for Governmental audit organizations", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-03-12T07:04:33.185987"}, "latest_revision": 3, "key": "/works/OL10733425W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4489781A"}}], "type": {"key": "/type/work"}, "subjects": ["Auditing", "Government business enterprises", "Problems, exercises"], "revision": 3}
+/type/work /works/OL10733606W 3 2010-12-03T12:45:50.633000 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:31:03.772829"}, "subject_places": ["Alaska", "California", "United States"], "subjects": ["Appropriations and expenditures", "Economic aspects", "Economic aspects of Land use", "Economic aspects of Public lands", "Evaluation", "Exchange of Real property", "Indians of North America", "Inholdings", "Land tenure", "Land titles", "Land use", "Licenses", "Management", "Motion pictures", "Public lands", "Real property, Exchange of", "Registration and transfer", "Television commercial films", "United States", "United States. Bureau of Land Management", "Wildlife conservation", "Wildlife refuges"], "latest_revision": 3, "key": "/works/OL10733606W", "title": "Federal land management", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4489781A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T12:45:50.633000"}, "revision": 3}
+/type/work /works/OL10733914W 7 2012-11-28T11:20:18.322309 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:31:07.511979"}, "subject_places": ["United States"], "subjects": ["Appropriations and expenditures", "B-2 bomber", "Bombers", "Costs", "Documentation", "Economic aspects", "Economic aspects of B-2 bomber", "Evaluation", "Procurement", "Stealth aircraft", "Supersonic bombers", "Testing", "United States", "United States. Air Force", "United States. Dept. of Defense"], "latest_revision": 7, "key": "/works/OL10733914W", "title": "B-2 bomber", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4489781A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-11-28T11:20:18.322309"}, "revision": 7}
+/type/work /works/OL10733922W 22 2012-11-28T11:20:18.322309 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:31:07.511979"}, "subject_places": ["United States"], "subjects": ["Accounting", "Administrative agencies", "Airplanes, Military", "American Surplus military property", "Appropriations and expenditures", "Armed Forces", "Auditing", "Auditing, Internal", "Automation", "Ballistic missile defenses", "Bank failures", "Bank of New England", "Civilian employees", "Costs", "Data processing", "Defense Manpower Data Center (U.S.)", "Defense Manpower Data Center (U.S.).", "Defense Manpower Data Center (U.S.). Office of Actuary", "Developmentally disabled", "Disabled veterans", "Drugs", "Equipment", "Equipment and supplies", "Evaluation", "Federal aid to education", "Finance", "Finance, Public", "Financial statements", "Food adulteration and inspection", "Freedom National Bank (New York, N.Y.)", "Fuel", "Fund accounting", "Government property", "Government relations", "Government spending policy", "Health facilities", "Indians of North America", "Information storage and retrieval systems", "Inspection", "Institutional care", "Internal Auditing", "International cooperation", "Inventory control", "Law and legislation", "Licenses", "Maintenance and repair", "Management", "Managerial accounting", "Medicaid fraud", "Mental retardation facilities", "Military Airplanes", "Military pensions", "National Institutes of Health (U.S.)", "National security", "Officers", "Patents and government-developed inventions", "Pay, allowances", "People with mental disabilities", "Planning", "Prevention", "Procurement", "Public Finance", "Public trustees", "Reorganization", "Research", "Rural electrification", "Sea-power", "Standards", "Student loans", "Supplies and stores", "Surplus military property, American", "Survivors' benefits", "Training of", "Tribal trust funds", "Trusts and trustees", "United States", "United States. Air Force", "United States. Army", "United States. Bureau of Indian Affairs", "United States. Congress. Senate", "United States. Defense Finance and Accounting Service", "United States. Defense Logistics Agency", "United States. Dept. of Defense", "United States. Dept. of Education", "United States. Dept. of Health and Human Services", "United States. Dept. of Veterans Affairs", "United States. Federal Housing Administration", "United States. Food and Drug Administration", "United States. National Aeronautics and Space Administration", "United States. Navy", "United States. Office of Surface Mining Reclamation and Enforcement", "United States. Rural Utilities Service", "United States. Small Business Administration"], "latest_revision": 22, "key": "/works/OL10733922W", "title": "Financial management", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4489781A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-11-28T11:20:18.322309"}, "revision": 22}
+/type/work /works/OL10734067W 3 2010-04-28T07:15:43.867005 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:31:07.511979"}, "title": "Recueil sur la mort de Moli\u00e8re, publi\u00e9 avec une notice et des notes", "covers": [5754537], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:15:43.867005"}, "latest_revision": 3, "key": "/works/OL10734067W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4489833A"}}], "subject_people": ["Moli\u00e8re (1622-1673)"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10734073W 3 2010-12-06T07:47:22.448284 {"last_modified": {"type": "/type/datetime", "value": "2010-12-06T07:47:22.448284"}, "title": "Conferences on cellular dynamics", "created": {"type": "/type/datetime", "value": "2009-12-11T03:31:07.511979"}, "subjects": ["Cell division", "Cell physiology", "Cells", "Congresses", "Hormones"], "latest_revision": 3, "key": "/works/OL10734073W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4489837A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10734142W 2 2010-01-18T07:25:41.051699 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:31:07.511979"}, "title": "Psychologie de l'enfant de z\u00e9ro \u00e0 dix ans", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T07:25:41.051699"}, "latest_revision": 2, "key": "/works/OL10734142W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4489861A"}}], "type": {"key": "/type/work"}, "subjects": ["Psychologie", "Enfants"], "revision": 2}
+/type/work /works/OL10734153W 2 2010-01-18T07:25:41.051699 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:31:07.511979"}, "title": "The child", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T07:25:41.051699"}, "latest_revision": 2, "key": "/works/OL10734153W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4489873A"}}], "type": {"key": "/type/work"}, "subjects": ["Child study"], "revision": 2}
+/type/work /works/OL10734392W 2 2010-01-18T07:30:54.902985 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:31:07.511979"}, "title": "The functions of moral philosophy", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T07:30:54.902985"}, "latest_revision": 2, "key": "/works/OL10734392W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4490003A"}}], "type": {"key": "/type/work"}, "subjects": ["Ethics", "Methodology"], "revision": 2}
+/type/work /works/OL10734418W 2 2010-01-18T07:30:54.902985 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:31:07.511979"}, "title": "The fine structure of the zoospore of Olpidiopsis sp. (Lagenidiales)", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T07:30:54.902985"}, "latest_revision": 2, "key": "/works/OL10734418W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4490019A"}}], "type": {"key": "/type/work"}, "subjects": ["Oomycetes", "Reproduction"], "revision": 2}
+/type/work /works/OL10734419W 2 2010-01-18T07:30:54.902985 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:31:07.511979"}, "title": "Strontium isotopic composition and abundances of strontium, REE and other trace elements as indicators of fluid mixing during the crystalization of nonsulfide minerals from the Elmwood Mine, Tennessee", "subject_places": ["Tennessee"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T07:30:54.902985"}, "latest_revision": 2, "key": "/works/OL10734419W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4490020A"}}], "type": {"key": "/type/work"}, "subjects": ["Strontium", "Isotopes", "Geochemistry"], "revision": 2}
+/type/work /works/OL10734462W 2 2010-01-18T07:30:54.902985 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:31:07.511979"}, "title": "al- \u02bbIlal al-mutan\u0101hiyah f\u012b al-a\u1e25\u0101dith al-w\u0101hiyah", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T07:30:54.902985"}, "latest_revision": 2, "key": "/works/OL10734462W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4490050A"}}], "type": {"key": "/type/work"}, "subjects": ["Hadith", "Forgeries"], "revision": 2}
+/type/work /works/OL10734681W 1 2009-12-11T03:31:09.106847 {"title": "Staff development in Scottish Colleges", "created": {"type": "/type/datetime", "value": "2009-12-11T03:31:09.106847"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:31:09.106847"}, "latest_revision": 1, "key": "/works/OL10734681W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4490076A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10735011W 1 2009-12-11T03:31:09.106847 {"title": "Religious education, present and future", "created": {"type": "/type/datetime", "value": "2009-12-11T03:31:09.106847"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:31:09.106847"}, "latest_revision": 1, "key": "/works/OL10735011W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4490078A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1073512W 4 2012-06-26T21:36:27.825311 {"title": "Talks to Teachers on Psychology and to Students on Some of Life's Ideals", "created": {"type": "/type/datetime", "value": "2009-12-09T20:23:46.806100"}, "covers": [313372], "last_modified": {"type": "/type/datetime", "value": "2012-06-26T21:36:27.825311"}, "latest_revision": 4, "key": "/works/OL1073512W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL109602A"}}], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL10735162W 2 2010-08-24T21:25:08.696660 {"subtitle": "Summary of National Trends (Tables 1-9).", "title": "Statistics of schools in England - January 1988", "created": {"type": "/type/datetime", "value": "2009-12-11T03:31:09.106847"}, "last_modified": {"type": "/type/datetime", "value": "2010-08-24T21:25:08.696660"}, "latest_revision": 2, "key": "/works/OL10735162W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4490078A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10735190W 1 2009-12-11T03:31:09.106847 {"title": "Grant-maintained schools", "created": {"type": "/type/datetime", "value": "2009-12-11T03:31:09.106847"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:31:09.106847"}, "latest_revision": 1, "key": "/works/OL10735190W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4490078A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10735211W 2 2010-11-03T23:40:51.116863 {"title": "Leigh National Nature Reserve", "created": {"type": "/type/datetime", "value": "2009-12-11T03:31:09.106847"}, "last_modified": {"type": "/type/datetime", "value": "2010-11-03T23:40:51.116863"}, "latest_revision": 2, "key": "/works/OL10735211W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1712537A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL1073544W 3 2010-04-28T07:15:43.867005 {"title": "Some Problems Of Philosophy", "created": {"type": "/type/datetime", "value": "2009-12-09T20:23:46.806100"}, "covers": [1737369], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:15:43.867005"}, "latest_revision": 3, "key": "/works/OL1073544W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL109602A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10735647W 2 2012-04-03T22:52:45.476245 {"title": "Local government superannuation", "created": {"type": "/type/datetime", "value": "2009-12-11T03:31:09.106847"}, "last_modified": {"type": "/type/datetime", "value": "2012-04-03T22:52:45.476245"}, "latest_revision": 2, "key": "/works/OL10735647W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5352215A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL1073604W 2 2020-11-02T11:04:14.181152 {"description": {"type": "/type/text", "value": "Verse work on the lives of Sufis, Muslim saints, religious leaders, etc."}, "title": "Riya\u0304z\u0324 al-\u02bba\u0304rifi\u0304n", "created": {"type": "/type/datetime", "value": "2009-12-09T20:23:46.806100"}, "last_modified": {"type": "/type/datetime", "value": "2020-11-02T11:04:14.181152"}, "latest_revision": 2, "key": "/works/OL1073604W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL109623A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10736163W 1 2009-12-11T03:31:11.083848 {"title": "Written statements of main terms and conditions of employment", "created": {"type": "/type/datetime", "value": "2009-12-11T03:31:11.083848"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:31:11.083848"}, "latest_revision": 1, "key": "/works/OL10736163W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4490171A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10736968W 1 2009-12-11T03:31:14.925617 {"title": "Responsibility in investigations on human subjects", "created": {"type": "/type/datetime", "value": "2009-12-11T03:31:14.925617"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:31:14.925617"}, "latest_revision": 1, "key": "/works/OL10736968W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4490318A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10737434W 1 2009-12-11T03:31:14.925617 {"title": "Dust and fumes in factory atmospheres, 1968", "created": {"type": "/type/datetime", "value": "2009-12-11T03:31:14.925617"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:31:14.925617"}, "latest_revision": 1, "key": "/works/OL10737434W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4490445A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10737783W 1 2009-12-11T03:31:17.661525 {"title": "Fourth report, session 1984-85", "created": {"type": "/type/datetime", "value": "2009-12-11T03:31:17.661525"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:31:17.661525"}, "latest_revision": 1, "key": "/works/OL10737783W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4490513A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10737956W 3 2010-12-03T23:35:00.185212 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T23:35:00.185212"}, "latest_revision": 3, "key": "/works/OL10737956W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4490523A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T03:31:17.661525"}, "title": "Sculpture since the sixties", "subject_places": ["United States"], "subjects": ["American Sculpture", "Exhibitions", "Installations (Art)", "Modern Sculpture", "Sculpture, American", "Sculpture, Modern"], "subject_times": ["20th century"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1073806W 3 2014-11-06T01:12:47.102571 {"title": "The white revolution", "created": {"type": "/type/datetime", "value": "2009-12-09T20:23:46.806100"}, "last_modified": {"type": "/type/datetime", "value": "2014-11-06T01:12:47.102571"}, "latest_revision": 3, "key": "/works/OL1073806W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2838943A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10738296W 4 2012-06-22T18:50:21.083259 {"title": "ICE design and construct conditions of contract", "created": {"type": "/type/datetime", "value": "2009-12-11T03:31:17.661525"}, "covers": [5067319], "last_modified": {"type": "/type/datetime", "value": "2012-06-22T18:50:21.083259"}, "latest_revision": 4, "key": "/works/OL10738296W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2798138A"}}], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL10738878W 1 2009-12-11T03:31:20.321029 {"title": "Rubber chemicals for footwear", "created": {"type": "/type/datetime", "value": "2009-12-11T03:31:20.321029"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:31:20.321029"}, "latest_revision": 1, "key": "/works/OL10738878W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4490690A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10739145W 1 2009-12-11T03:31:20.321029 {"title": "Acid dyes for wool", "created": {"type": "/type/datetime", "value": "2009-12-11T03:31:20.321029"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:31:20.321029"}, "latest_revision": 1, "key": "/works/OL10739145W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4490709A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10739193W 3 2010-04-28T07:15:43.867005 {"title": "Chelsea's Doom", "created": {"type": "/type/datetime", "value": "2009-11-11T19:41:41.394944"}, "covers": [5160089], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:15:43.867005"}, "latest_revision": 3, "key": "/works/OL10739193W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL3743742A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10739839W 1 2009-12-11T03:31:23.275548 {"title": "Your pensions", "created": {"type": "/type/datetime", "value": "2009-12-11T03:31:23.275548"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:31:23.275548"}, "latest_revision": 1, "key": "/works/OL10739839W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4490818A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10739880W 2 2010-01-18T07:35:49.141269 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:31:23.275548"}, "title": "Why teachers are underpaid", "subject_places": ["Great Britain"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T07:35:49.141269"}, "latest_revision": 2, "key": "/works/OL10739880W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4490818A"}}], "type": {"key": "/type/work"}, "subjects": ["Teachers", "Salaries"], "revision": 2}
+/type/work /works/OL10740057W 1 2009-12-11T03:31:23.275548 {"title": "Report and accounts 1992-93", "created": {"type": "/type/datetime", "value": "2009-12-11T03:31:23.275548"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:31:23.275548"}, "latest_revision": 1, "key": "/works/OL10740057W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4490854A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10740300W 1 2009-12-11T03:31:23.275548 {"title": "Syllabuses 1983", "created": {"type": "/type/datetime", "value": "2009-12-11T03:31:23.275548"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:31:23.275548"}, "latest_revision": 1, "key": "/works/OL10740300W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4490894A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL107406W 3 2010-04-28T07:15:43.867005 {"title": "The life of Hodson of Hodson's horse", "created": {"type": "/type/datetime", "value": "2009-10-17T21:38:03.501896"}, "covers": [5672060], "subject_places": ["India"], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:15:43.867005"}, "latest_revision": 3, "key": "/works/OL107406W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL18132A"}}], "subject_people": ["W. S. R. Hodson (1821-1858)"], "subject_times": ["Sepoy Rebellion, 1857-1858", "British occupation, 1765-1947"], "type": {"key": "/type/work"}, "subjects": ["History", "Sikh War, 1845-1846", "Sikh War, 1848-1849"], "revision": 3}
+/type/work /works/OL10740723W 3 2010-11-13T16:51:49.786690 {"title": "Houses and People", "created": {"type": "/type/datetime", "value": "2009-12-11T03:31:27.493647"}, "last_modified": {"type": "/type/datetime", "value": "2010-11-13T16:51:49.786690"}, "latest_revision": 3, "key": "/works/OL10740723W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4493292A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10741044W 1 2009-12-11T03:31:27.493647 {"title": "Kiln-drying schedules", "created": {"type": "/type/datetime", "value": "2009-12-11T03:31:27.493647"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:31:27.493647"}, "latest_revision": 1, "key": "/works/OL10741044W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4491154A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10741701W 2 2010-01-18T07:35:49.141269 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:31:29.441540"}, "title": "Annual report from trades council federations, 1949", "subject_places": ["Great Britain"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T07:35:49.141269"}, "latest_revision": 2, "key": "/works/OL10741701W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4491346A"}}], "type": {"key": "/type/work"}, "subjects": ["Labor unions"], "revision": 2}
+/type/work /works/OL10741858W 3 2010-12-03T20:26:56.558853 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:31:29.441540"}, "subject_places": ["Great Britain"], "subjects": ["Flexible Hours of labor", "Hours of labor, Flexible"], "latest_revision": 3, "key": "/works/OL10741858W", "title": "Flexible working hours", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4491346A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T20:26:56.558853"}, "revision": 3}
+/type/work /works/OL10741931W 2 2010-01-18T07:35:49.141269 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:31:29.441540"}, "title": "Job security", "subject_places": ["Great Britain"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T07:35:49.141269"}, "latest_revision": 2, "key": "/works/OL10741931W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4491346A"}}], "type": {"key": "/type/work"}, "subjects": ["Job security"], "revision": 2}
+/type/work /works/OL10741951W 1 2009-12-11T03:31:29.441540 {"title": "Logging on to learning", "created": {"type": "/type/datetime", "value": "2009-12-11T03:31:29.441540"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:31:29.441540"}, "latest_revision": 1, "key": "/works/OL10741951W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4491346A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10742078W 1 2009-12-11T03:31:29.441540 {"title": "Racism", "created": {"type": "/type/datetime", "value": "2009-12-11T03:31:29.441540"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:31:29.441540"}, "latest_revision": 1, "key": "/works/OL10742078W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4491346A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10742172W 1 2009-12-11T03:31:29.441540 {"title": "Strengthening the pensions framework", "created": {"type": "/type/datetime", "value": "2009-12-11T03:31:29.441540"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:31:29.441540"}, "latest_revision": 1, "key": "/works/OL10742172W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4491346A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10742580W 1 2009-12-11T03:31:29.441540 {"title": "Challenge to fashion", "created": {"type": "/type/datetime", "value": "2009-12-11T03:31:29.441540"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:31:29.441540"}, "latest_revision": 1, "key": "/works/OL10742580W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4491389A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10742608W 1 2009-12-11T03:31:29.441540 {"title": "Experimental husbandry farms and experimental horticulture stations progress report", "created": {"type": "/type/datetime", "value": "2009-12-11T03:31:29.441540"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:31:29.441540"}, "latest_revision": 1, "key": "/works/OL10742608W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4491400A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10742698W 1 2009-12-11T03:31:31.503669 {"title": "Examination", "created": {"type": "/type/datetime", "value": "2009-12-11T03:31:31.503669"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:31:31.503669"}, "latest_revision": 1, "key": "/works/OL10742698W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4491418A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10743079W 1 2009-12-11T03:31:31.503669 {"title": "Contemporary ceramics, various properties", "created": {"type": "/type/datetime", "value": "2009-12-11T03:31:31.503669"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:31:31.503669"}, "latest_revision": 1, "key": "/works/OL10743079W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4491482A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1074324W 2 2010-01-18T07:40:51.995911 {"title": "From captivity to liberty", "created": {"type": "/type/datetime", "value": "2009-12-09T20:23:46.806100"}, "subject_places": ["India"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T07:40:51.995911"}, "latest_revision": 2, "key": "/works/OL1074324W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL109787A"}}], "subject_people": ["N. A. Rajan (1950-)"], "type": {"key": "/type/work"}, "subjects": ["Evangelists", "Biography"], "revision": 2}
+/type/work /works/OL1074428W 2 2010-01-18T07:40:51.995911 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:24:08.195347"}, "title": "Proceedings, International Symposium, Hydrology of Ungauged Streams in Hilly Regions for Small Hydro Power Development, March 9-10, 1998, New Delhi", "subject_places": ["India"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T07:40:51.995911"}, "latest_revision": 2, "key": "/works/OL1074428W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL109814A"}}], "type": {"key": "/type/work"}, "subjects": ["Congresses", "Streamflow", "Stream measurements", "Water-power"], "revision": 2}
+/type/work /works/OL10744297W 1 2009-12-11T03:31:33.962571 {"title": "Ten points in the book page", "created": {"type": "/type/datetime", "value": "2009-12-11T03:31:33.962571"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:31:33.962571"}, "latest_revision": 1, "key": "/works/OL10744297W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4491587A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10744327W 2 2010-01-18T07:40:51.995911 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:31:33.962571"}, "title": "Beaulieu and Bucklers Hard conservation areas", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T07:40:51.995911"}, "latest_revision": 2, "key": "/works/OL10744327W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4491598A"}}], "type": {"key": "/type/work"}, "subjects": ["Cities and towns", "Planning", "Beaulieu", "Bucklers Hard"], "revision": 2}
+/type/work /works/OL10744369W 1 2009-12-11T03:31:33.962571 {"title": "South West Hampshire beaches survey", "created": {"type": "/type/datetime", "value": "2009-12-11T03:31:33.962571"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:31:33.962571"}, "latest_revision": 1, "key": "/works/OL10744369W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4491598A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1074489W 2 2010-01-18T07:40:51.995911 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:24:08.195347"}, "title": "Petit guide des vins d'Espagne", "subject_places": ["Spain"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T07:40:51.995911"}, "latest_revision": 2, "key": "/works/OL1074489W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL109841A"}}], "type": {"key": "/type/work"}, "subjects": ["Wine and wine making"], "revision": 2}
+/type/work /works/OL10745278W 1 2009-12-11T03:31:36.329259 {"title": "Infant & child health", "created": {"type": "/type/datetime", "value": "2009-12-11T03:31:36.329259"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:31:36.329259"}, "latest_revision": 1, "key": "/works/OL10745278W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4491717A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10745583W 1 2009-12-11T03:31:36.329259 {"title": "Going online", "created": {"type": "/type/datetime", "value": "2009-12-11T03:31:36.329259"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:31:36.329259"}, "latest_revision": 1, "key": "/works/OL10745583W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4491761A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10745796W 2 2010-01-18T07:40:51.995911 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:31:39.800707"}, "title": "Training manual (for) goods vehicle drivers", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T07:40:51.995911"}, "latest_revision": 2, "key": "/works/OL10745796W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4491787A"}}], "type": {"key": "/type/work"}, "subjects": ["Motor-truck driving"], "revision": 2}
+/type/work /works/OL10746469W 2 2010-01-18T07:45:19.992680 {"title": "Sirat al-shaykh Ahmad al-Ahsa'i", "created": {"type": "/type/datetime", "value": "2009-12-11T03:31:39.800707"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-18T07:45:19.992680"}, "latest_revision": 2, "key": "/works/OL10746469W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4491919A"}}], "subject_people": ["A\u1e25mad ibn Zayn al-D\u012bn A\u1e25s\u0101\u02be\u012b (1753-1826)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL1074663W 1 2009-12-09T20:00:55.352802 {"title": "Puffin India Quiz Book 1", "created": {"type": "/type/datetime", "value": "2009-12-09T20:00:55.352802"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T20:00:55.352802"}, "latest_revision": 1, "key": "/works/OL1074663W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL109895A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10746866W 1 2009-12-11T03:31:44.200797 {"title": "City of Bradford official handbook", "created": {"type": "/type/datetime", "value": "2009-12-11T03:31:44.200797"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:31:44.200797"}, "latest_revision": 1, "key": "/works/OL10746866W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4492040A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10748060W 1 2009-12-11T03:31:47.328981 {"title": "Warren Spring Laboratory", "created": {"type": "/type/datetime", "value": "2009-12-11T03:31:47.328981"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:31:47.328981"}, "latest_revision": 1, "key": "/works/OL10748060W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4492436A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10748255W 1 2009-12-11T03:31:47.328981 {"title": "Responsibility of Friends in the present war situation", "created": {"type": "/type/datetime", "value": "2009-12-11T03:31:47.328981"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:31:47.328981"}, "latest_revision": 1, "key": "/works/OL10748255W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4492466A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10748298W 2 2010-01-18T07:49:57.683594 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:31:47.328981"}, "title": "National working rule 2A (time lost through inclement weather), National working rule 2B (termination of employment)", "subject_places": ["Great Britain"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T07:49:57.683594"}, "latest_revision": 2, "key": "/works/OL10748298W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4492499A"}}], "type": {"key": "/type/work"}, "subjects": ["Wages", "Construction workers"], "revision": 2}
+/type/work /works/OL10748342W 5 2020-08-12T22:34:27.680435 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:31:47.328981"}, "subjects": ["Anglo-Norman dialect", "Texts"], "latest_revision": 5, "key": "/works/OL10748342W", "title": "Josaphaz, Set dormanz und Petit plet, Dichtungen in der anglo-normanischen Mundart des 13. Jahrhunderts", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4492504A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-08-12T22:34:27.680435"}, "covers": [5793379], "revision": 5}
+/type/work /works/OL1074891W 2 2020-12-20T11:09:37.837508 {"title": "Mestara C\u0101ralasa \u1e0cocav\u0101s\u0101heba Phr\u0101\u0303s\u012bsa", "key": "/works/OL1074891W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL109946A"}}], "type": {"key": "/type/work"}, "subjects": ["Marathi literature", "History and criticism", "History"], "description": {"type": "/type/text", "value": "On the life and works of Charles D'Ochoa, 1816?-1844?, French orientologist, on Marathi literature and history."}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-09T20:24:08.195347"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-20T11:09:37.837508"}}
+/type/work /works/OL10749496W 1 2009-12-11T03:31:52.734277 {"title": "Emergency Organisation - Rules prepared to conform with the requirements of Regulation 30 of the Fire and Rescue Regulations 1956, No.1768", "created": {"type": "/type/datetime", "value": "2009-12-11T03:31:52.734277"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:31:52.734277"}, "latest_revision": 1, "key": "/works/OL10749496W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4493002A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10750221W 1 2009-12-11T03:31:57.443902 {"title": "Opovidanni\ufe20a\ufe21 z karpats\u02b9kykh polonyn", "created": {"type": "/type/datetime", "value": "2009-12-11T03:31:57.443902"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:31:57.443902"}, "latest_revision": 1, "key": "/works/OL10750221W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4493270A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10750769W 3 2020-10-11T05:08:08.452405 {"last_modified": {"type": "/type/datetime", "value": "2020-10-11T05:08:08.452405"}, "title": "Extracts from the records of the Cutlers' Company", "created": {"type": "/type/datetime", "value": "2009-12-11T03:32:03.165922"}, "subjects": ["Company of Cutlers in Hallamshire", "Sources", "Company of Cutlers (Sheffield, England)", "History"], "latest_revision": 3, "key": "/works/OL10750769W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4493487A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10750880W 1 2009-12-11T03:32:03.165922 {"title": "Aldridge / Brownhills local plan", "created": {"type": "/type/datetime", "value": "2009-12-11T03:32:03.165922"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:32:03.165922"}, "latest_revision": 1, "key": "/works/OL10750880W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4493529A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10751206W 1 2009-12-11T03:32:03.165922 {"title": "[various papers]", "created": {"type": "/type/datetime", "value": "2009-12-11T03:32:03.165922"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:32:03.165922"}, "latest_revision": 1, "key": "/works/OL10751206W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4493692A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10751387W 3 2010-12-06T07:49:20.968320 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:32:03.165922"}, "subject_places": ["California"], "subjects": ["California", "Jesuits", "Oblates of Mary Immaculate"], "latest_revision": 3, "key": "/works/OL10751387W", "title": "Projet de fondation oblate en Californie, 1849-1853", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4493774A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-06T07:49:20.968320"}, "revision": 3}
+/type/work /works/OL10751515W 2 2010-01-18T07:54:51.930763 {"title": "Al- S\u012brah al-Nabaw\u012byah", "created": {"type": "/type/datetime", "value": "2009-12-11T03:32:03.165922"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-18T07:54:51.930763"}, "latest_revision": 2, "key": "/works/OL10751515W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4493807A"}}], "subject_people": ["Mu\u1e25ammad Prophet (d. 632)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL1075159W 3 2020-11-23T03:10:45.359728 {"description": {"type": "/type/text", "value": "Biography of Farooq Abdullah, politician and former chief minister of Jammu and Kashmir."}, "last_modified": {"type": "/type/datetime", "value": "2020-11-23T03:10:45.359728"}, "title": "Farooq Abdullah, Kashmir's prodigal son", "created": {"type": "/type/datetime", "value": "2009-12-09T20:24:08.195347"}, "subject_places": ["Jammu and Kashmir (India)", "Jammu and Kashmir", "India"], "subjects": ["Politics and government", "Politicians", "Biography"], "subject_people": ["Farooq Abdullah"], "key": "/works/OL1075159W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL110001A"}}], "latest_revision": 3, "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10752017W 1 2009-12-11T03:32:08.502412 {"title": "The devil", "created": {"type": "/type/datetime", "value": "2009-12-11T03:32:08.502412"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:32:08.502412"}, "latest_revision": 1, "key": "/works/OL10752017W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4494010A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1075207W 3 2010-04-28T07:15:43.867005 {"title": "History of the Parliament of India", "created": {"type": "/type/datetime", "value": "2009-12-09T20:24:08.195347"}, "covers": [3908809], "subject_places": ["India"], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:15:43.867005"}, "latest_revision": 3, "key": "/works/OL1075207W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL110004A"}}], "subjects": ["Legislative bodies", "History"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10752229W 2 2010-01-18T07:54:51.930763 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:32:08.502412"}, "title": "Informing the public about the English language arts", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T07:54:51.930763"}, "latest_revision": 2, "key": "/works/OL10752229W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4494100A"}}], "type": {"key": "/type/work"}, "subjects": ["Schools", "Public relations", "Study and teaching", "English language"], "revision": 2}
+/type/work /works/OL10752403W 3 2010-12-06T07:49:20.968320 {"last_modified": {"type": "/type/datetime", "value": "2010-12-06T07:49:20.968320"}, "title": "Handbook for teachers", "created": {"type": "/type/datetime", "value": "2009-12-11T03:32:08.502412"}, "subjects": ["Handbooks, manuals", "Niagara Falls Public Schools (Niagara Falls, N.Y.)"], "latest_revision": 3, "key": "/works/OL10752403W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4494199A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1075251W 2 2010-04-20T12:35:28.235849 {"subtitle": "a play in three acts.", "title": "Larins Sahib", "created": {"type": "/type/datetime", "value": "2009-12-09T20:24:08.195347"}, "last_modified": {"type": "/type/datetime", "value": "2010-04-20T12:35:28.235849"}, "latest_revision": 2, "key": "/works/OL1075251W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL110019A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10752927W 1 2009-12-11T03:32:18.524495 {"title": "Training grant scheme 1976-1977", "created": {"type": "/type/datetime", "value": "2009-12-11T03:32:18.524495"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:32:18.524495"}, "latest_revision": 1, "key": "/works/OL10752927W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4494444A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1075386W 3 2010-04-28T07:15:43.867005 {"title": "Colloquial Cantonese: A Complete Language Course", "created": {"type": "/type/datetime", "value": "2009-12-09T20:24:36.107102"}, "covers": [264575], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:15:43.867005"}, "latest_revision": 3, "key": "/works/OL1075386W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL110053A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10753922W 1 2009-12-11T03:32:22.556367 {"title": "The economic impact of tourism", "created": {"type": "/type/datetime", "value": "2009-12-11T03:32:22.556367"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:32:22.556367"}, "latest_revision": 1, "key": "/works/OL10753922W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4494767A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1075428W 2 2010-01-18T07:59:54.360768 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:24:36.107102"}, "title": "Mongolia between China and the USSR", "subject_places": ["Mongolia", "China", "Soviet Union"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T07:59:54.360768"}, "latest_revision": 2, "key": "/works/OL1075428W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL110058A"}}], "type": {"key": "/type/work"}, "subjects": ["Foreign relations"], "revision": 2}
+/type/work /works/OL10754502W 2 2010-12-03T13:11:08.531038 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:11:08.531038"}, "title": "Streamlining the cities - white paper (Cmnd.9063)", "created": {"type": "/type/datetime", "value": "2009-12-11T03:32:22.556367"}, "subjects": ["Streamlining the cities: government proposals for reorganising localgovernment.."], "latest_revision": 2, "key": "/works/OL10754502W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4494934A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10754625W 2 2010-01-18T08:05:05.413799 {"title": "Le Boulangisme et la presse", "created": {"type": "/type/datetime", "value": "2009-12-11T03:32:22.556367"}, "subject_places": ["France"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T08:05:05.413799"}, "latest_revision": 2, "key": "/works/OL10754625W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4495001A"}}], "subject_people": ["Georges-Ernest-Jean-Marie Boulanger (1837-1891)"], "subject_times": ["Third Republic, 1870-1940"], "type": {"key": "/type/work"}, "subjects": ["Press", "History"], "revision": 2}
+/type/work /works/OL10754718W 1 2009-12-11T03:32:26.383477 {"title": "8032 PET and 8080 disc drive user guide", "created": {"type": "/type/datetime", "value": "2009-12-11T03:32:26.383477"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:32:26.383477"}, "latest_revision": 1, "key": "/works/OL10754718W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4495032A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10755817W 2 2010-12-06T07:53:53.859504 {"last_modified": {"type": "/type/datetime", "value": "2010-12-06T07:53:53.859504"}, "title": "Investment trust year book", "created": {"type": "/type/datetime", "value": "2009-12-11T03:32:30.681751"}, "subjects": ["Association ofInvestment Trust Companies"], "latest_revision": 2, "key": "/works/OL10755817W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4495393A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL1075616W 3 2020-12-03T11:50:21.946522 {"title": "Rje S\u0301ar-gdon\u0307 Blo-bzan\u0307-bs\u0301ad-sgrub-rgya-mtsho\u02bci gsun\u0307 \u02bcbum", "key": "/works/OL1075616W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL110120A"}}], "type": {"key": "/type/work"}, "subjects": ["Doctrines", "Buddhism", "Dge-lugs-pa (Sect)"], "description": {"type": "/type/text", "value": "Collected works on Tibetan Buddhist doctrines of Dge-lugs-pa tradition."}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-09T20:24:36.107102"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-03T11:50:21.946522"}}
+/type/work /works/OL10756348W 1 2009-12-11T03:32:30.681751 {"title": "Probation", "created": {"type": "/type/datetime", "value": "2009-12-11T03:32:30.681751"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:32:30.681751"}, "latest_revision": 1, "key": "/works/OL10756348W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4495571A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10756375W 1 2009-12-11T03:32:30.681751 {"title": "Third report [from the] Home Affairs Committee, session 1990-91", "created": {"type": "/type/datetime", "value": "2009-12-11T03:32:30.681751"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:32:30.681751"}, "latest_revision": 1, "key": "/works/OL10756375W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4495571A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10756463W 1 2009-12-11T03:32:30.681751 {"title": "Martock conservation area", "created": {"type": "/type/datetime", "value": "2009-12-11T03:32:30.681751"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:32:30.681751"}, "latest_revision": 1, "key": "/works/OL10756463W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4495589A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10756521W 1 2009-12-11T03:32:30.681751 {"title": "Report of proceedings at the 79th annual Trades Union Congress, held at Southport, September 1st to 5th, 1947", "created": {"type": "/type/datetime", "value": "2009-12-11T03:32:30.681751"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:32:30.681751"}, "latest_revision": 1, "key": "/works/OL10756521W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4495596A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10756598W 2 2012-05-24T01:41:55.607885 {"title": "Le Rhinoce ros", "created": {"type": "/type/datetime", "value": "2009-12-11T03:32:30.681751"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-24T01:41:55.607885"}, "latest_revision": 2, "key": "/works/OL10756598W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL52830A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10756648W 2 2022-11-26T18:20:04.368955 {"title": "ha- Mehager ha-baitah", "key": "/works/OL10756648W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL169312A"}}], "type": {"key": "/type/work"}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T03:32:30.681751"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-26T18:20:04.368955"}}
+/type/work /works/OL10756671W 1 2009-12-11T03:32:30.681751 {"title": "South Hampshire Plan", "created": {"type": "/type/datetime", "value": "2009-12-11T03:32:30.681751"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:32:30.681751"}, "latest_revision": 1, "key": "/works/OL10756671W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4495653A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1075692W 3 2020-12-08T08:06:42.925783 {"title": "Byan\u0307 chub sems pa\u02bci spyod pa la \u02bcjug pa\u02bci rnam bs\u0301ad rgyal sras \u02bcjug n\u0307ogs z\u0301es bya ba bz\u0301ugs so", "key": "/works/OL1075692W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL110142A"}}], "subject_people": ["\u015a\u0101ntideva (7th cent)"], "type": {"key": "/type/work"}, "subjects": ["Texts", "Tibetan language"], "description": {"type": "/type/text", "value": "Commentary on S\u0301a\u0304ntideva's Bodhicarya\u0304vata\u0304ra; includes root text."}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-09T20:24:36.107102"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-08T08:06:42.925783"}}
+/type/work /works/OL10756990W 4 2020-10-12T10:14:19.728281 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:32:35.464324"}, "subjects": ["Labor mobility"], "latest_revision": 4, "key": "/works/OL10756990W", "title": "Mobilite\u0301 du travail et accumulation du capital", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4495802A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-10-12T10:14:19.728281"}, "covers": [4463424], "revision": 4}
+/type/work /works/OL10757022W 2 2010-01-18T08:10:11.735348 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:32:35.464324"}, "title": "Musikalischer Sieg \u00fcber die Krankheit", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T08:10:11.735348"}, "latest_revision": 2, "key": "/works/OL10757022W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4495823A"}}], "type": {"key": "/type/work"}, "subjects": ["Music therapy", "Music", "Philosophy and aesthetics"], "revision": 2}
+/type/work /works/OL10757239W 1 2009-12-11T03:32:35.464324 {"title": "The training director's guide", "created": {"type": "/type/datetime", "value": "2009-12-11T03:32:35.464324"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:32:35.464324"}, "latest_revision": 1, "key": "/works/OL10757239W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4495914A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10757597W 1 2009-12-11T03:32:35.464324 {"title": "In defence of local democracy", "created": {"type": "/type/datetime", "value": "2009-12-11T03:32:35.464324"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:32:35.464324"}, "latest_revision": 1, "key": "/works/OL10757597W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4496039A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10757658W 2 2010-01-18T08:10:11.735348 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:32:35.464324"}, "title": "La poesi?a en Puerto Rico antes de 1843", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T08:10:11.735348"}, "latest_revision": 2, "key": "/works/OL10757658W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4496041A"}}], "type": {"key": "/type/work"}, "subjects": ["Puerto Rican poetry", "History and criticism"], "revision": 2}
+/type/work /works/OL10757673W 1 2009-12-11T03:32:35.464324 {"title": "Report of the Herring Assessment Working Group for the Area South of 62\u2117\u02bbN, 1976", "created": {"type": "/type/datetime", "value": "2009-12-11T03:32:35.464324"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:32:35.464324"}, "latest_revision": 1, "key": "/works/OL10757673W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4496054A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10757739W 1 2009-12-11T03:32:39.483022 {"title": "Nova Scotia and Bay of Fundy pilot", "created": {"type": "/type/datetime", "value": "2009-12-11T03:32:39.483022"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:32:39.483022"}, "latest_revision": 1, "key": "/works/OL10757739W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4496073A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10757783W 2 2010-12-04T01:48:48.681249 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:32:39.483022"}, "subject_places": ["Portugal", "Spain"], "subjects": ["Pilot guides"], "latest_revision": 2, "key": "/works/OL10757783W", "title": "West coasts of Spain and Portugal pilot", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4496073A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-04T01:48:48.681249"}, "revision": 2}
+/type/work /works/OL10757939W 2 2010-01-18T08:10:11.735348 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:32:39.483022"}, "title": "This changing world", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T08:10:11.735348"}, "latest_revision": 2, "key": "/works/OL10757939W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4496162A"}}], "type": {"key": "/type/work"}, "subjects": ["Progress", "Civilization", "Twentieth century", "Forecasts"], "revision": 2}
+/type/work /works/OL10758722W 2 2010-01-18T08:10:11.735348 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:32:44.109074"}, "title": "Evaluating ninth-grade themes", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T08:10:11.735348"}, "latest_revision": 2, "key": "/works/OL10758722W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4496389A"}}], "type": {"key": "/type/work"}, "subjects": ["English language", "Study and teaching (Secondary)", "Composition and exercises"], "revision": 2}
+/type/work /works/OL10758847W 3 2010-12-03T14:06:24.150621 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:06:24.150621"}, "title": "Zapadnoevrope\u01d0skaia vyshivka 13-19 vekov v Ermitazhe", "created": {"type": "/type/datetime", "value": "2009-12-11T03:32:44.109074"}, "subjects": ["Embroidery", "Europe, Western", "Western Europe"], "latest_revision": 3, "key": "/works/OL10758847W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4496406A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10758911W 1 2009-12-11T03:32:44.109074 {"title": "Anciens Ornemanistes et Imagiers du Canada Fran\u00e7ais", "created": {"type": "/type/datetime", "value": "2009-12-11T03:32:44.109074"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:32:44.109074"}, "latest_revision": 1, "key": "/works/OL10758911W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4496435A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10759144W 2 2010-12-06T07:50:40.485920 {"last_modified": {"type": "/type/datetime", "value": "2010-12-06T07:50:40.485920"}, "title": "Rules of the City of Perth Co-operative Society Limited", "created": {"type": "/type/datetime", "value": "2009-12-11T03:32:44.109074"}, "subjects": ["City of Perth Co-operative Society Limited"], "latest_revision": 2, "key": "/works/OL10759144W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4496507A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10759183W 2 2010-01-18T08:15:30.116136 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:32:44.109074"}, "title": "The measurement of student adjustment and achievement", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T08:15:30.116136"}, "latest_revision": 2, "key": "/works/OL10759183W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4496533A"}}], "type": {"key": "/type/work"}, "subjects": ["Congresses", "Educational counseling", "Educational tests and measurements"], "revision": 2}
+/type/work /works/OL10759217W 3 2010-12-03T21:16:49.520024 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:32:44.109074"}, "subject_places": ["Great Britain"], "subjects": ["Employees", "History", "Labor unions", "National Union of Railwaymen", "Railroads"], "latest_revision": 3, "key": "/works/OL10759217W", "title": "The railwaymen", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4496538A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T21:16:49.520024"}, "revision": 3}
+/type/work /works/OL10759537W 1 2009-12-11T03:32:44.109074 {"title": "Design and maintenance guide draft", "created": {"type": "/type/datetime", "value": "2009-12-11T03:32:44.109074"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:32:44.109074"}, "latest_revision": 1, "key": "/works/OL10759537W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4496667A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10759618W 2 2010-01-18T08:15:30.116136 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:32:44.109074"}, "title": "Antologi?a de textos fone?ticos", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T08:15:30.116136"}, "latest_revision": 2, "key": "/works/OL10759618W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4496734A"}}], "type": {"key": "/type/work"}, "subjects": ["Spanish language", "Phonology", "Pronunciation"], "revision": 2}
+/type/work /works/OL10759620W 4 2011-10-14T01:14:05.927578 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:32:44.109074"}, "subtitle": "thesim proponebat Facultati litterarum parisiens", "key": "/works/OL10759620W", "title": "De adagiis d. Erasmi Roterodami", "subject_people": ["Desiderius Erasmus (d. 1536)"], "latest_revision": 4, "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4649211A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2011-10-14T01:14:05.927578"}, "revision": 4}
+/type/work /works/OL10760095W 4 2020-03-17T21:26:06.874094 {"last_modified": {"type": "/type/datetime", "value": "2020-03-17T21:26:06.874094"}, "title": "Narodni pisni v zapysakh Lesi Ukra\u00efnky", "created": {"type": "/type/datetime", "value": "2009-12-11T03:32:49.244854"}, "subjects": ["Folk songs, Ukrainian", "Ukrainian Folk songs"], "latest_revision": 4, "key": "/works/OL10760095W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL185217A"}}], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL10760145W 1 2009-12-11T03:32:49.244854 {"title": "Annual review", "created": {"type": "/type/datetime", "value": "2009-12-11T03:32:49.244854"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:32:49.244854"}, "latest_revision": 1, "key": "/works/OL10760145W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4496979A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10760388W 2 2010-01-18T08:15:30.116136 {"title": "Madame de Stae l et l'Europe", "created": {"type": "/type/datetime", "value": "2009-12-11T03:32:49.244854"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-18T08:15:30.116136"}, "latest_revision": 2, "key": "/works/OL10760388W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4497083A"}}], "subject_people": ["Sta\u00ebl, de Madame (1766-1817)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10760732W 2 2020-10-16T05:34:14.938513 {"title": "Le ru d'Ikou\u00e9", "created": {"type": "/type/datetime", "value": "2009-12-11T03:32:54.084635"}, "covers": [9544956], "last_modified": {"type": "/type/datetime", "value": "2020-10-16T05:34:14.938513"}, "latest_revision": 2, "key": "/works/OL10760732W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4497197A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10760853W 1 2009-12-11T03:32:54.084635 {"title": "The modern spirit in Scottish painting", "created": {"type": "/type/datetime", "value": "2009-12-11T03:32:54.084635"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:32:54.084635"}, "latest_revision": 1, "key": "/works/OL10760853W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4497272A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10760856W 1 2009-12-11T03:32:54.084635 {"title": "Mover firms survey", "created": {"type": "/type/datetime", "value": "2009-12-11T03:32:54.084635"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:32:54.084635"}, "latest_revision": 1, "key": "/works/OL10760856W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4497275A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10761017W 1 2009-12-11T03:32:54.084635 {"title": "A centenary record", "created": {"type": "/type/datetime", "value": "2009-12-11T03:32:54.084635"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:32:54.084635"}, "latest_revision": 1, "key": "/works/OL10761017W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4497336A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10761511W 2 2010-01-18T08:20:21.389541 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:32:54.084635"}, "title": "Vnutrenniaia politika tsarizma", "subject_places": ["Russia"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T08:20:21.389541"}, "latest_revision": 2, "key": "/works/OL10761511W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4497510A"}}], "type": {"key": "/type/work"}, "subjects": ["Politics and government", "History"], "revision": 2}
+/type/work /works/OL10761562W 4 2012-06-23T22:32:15.414336 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:32:54.084635"}, "subjects": ["Spanish fiction", "History and criticism", "Bibliography"], "latest_revision": 4, "key": "/works/OL10761562W", "title": "Introduccio?n a una historia de la novela en Espa\u00f1a en el siglo XIX", "subject_times": ["19th century"], "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4288971A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-06-23T22:32:15.414336"}, "revision": 4}
+/type/work /works/OL10761567W 2 2010-01-18T08:20:21.389541 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:32:54.084635"}, "title": "Degli antichi duchi e consoli o ipati della citt\u00e0 di Gaeta", "subject_places": ["Gaeta (Italy)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T08:20:21.389541"}, "latest_revision": 2, "key": "/works/OL10761567W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4497539A"}}], "type": {"key": "/type/work"}, "subjects": ["Biography", "History"], "revision": 2}
+/type/work /works/OL10761666W 2 2010-01-18T08:20:21.389541 {"title": "Der stil in den lyrischen und didaktischen gedichten Friedrich von Hagedorns", "created": {"type": "/type/datetime", "value": "2009-12-11T03:32:54.084635"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-18T08:20:21.389541"}, "latest_revision": 2, "key": "/works/OL10761666W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4497587A"}}], "subject_people": ["Friedrich von Hagedorn (1708-1754)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10762026W 2 2010-01-18T08:20:21.389541 {"title": "De Gaulle l'impuissant", "created": {"type": "/type/datetime", "value": "2009-12-11T03:32:59.066411"}, "subject_places": ["France"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T08:20:21.389541"}, "latest_revision": 2, "key": "/works/OL10762026W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4497775A"}}], "subject_people": ["Charles de Gaulle (1890-1970)"], "subject_times": ["1958-"], "type": {"key": "/type/work"}, "subjects": ["Politics and government"], "revision": 2}
+/type/work /works/OL10762027W 2 2010-01-18T08:20:21.389541 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:32:59.066411"}, "title": "Faux r\u00e9sistants et vrais coquins", "subject_places": ["France"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T08:20:21.389541"}, "latest_revision": 2, "key": "/works/OL10762027W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4497775A"}}], "subject_times": ["German occupation, 1940-1945"], "type": {"key": "/type/work"}, "subjects": ["Underground movements", "World War, 1939-1945", "History"], "revision": 2}
+/type/work /works/OL10762138W 2 2010-01-18T08:25:31.182397 {"title": "Mohammed and Charlemagne", "created": {"type": "/type/datetime", "value": "2009-12-11T03:32:59.066411"}, "subject_places": ["Europe"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T08:25:31.182397"}, "latest_revision": 2, "key": "/works/OL10762138W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4497828A"}}], "subject_people": ["Henri Pirenne (1862-1935)"], "subject_times": ["476-1492"], "type": {"key": "/type/work"}, "subjects": ["History", "Islamic countries"], "revision": 2}
+/type/work /works/OL10762179W 2 2010-01-18T08:25:31.182397 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:32:59.066411"}, "title": "Towards a blueprint for change", "subject_places": ["Ontario"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T08:25:31.182397"}, "latest_revision": 2, "key": "/works/OL10762179W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4497846A"}}], "type": {"key": "/type/work"}, "subjects": ["Mental health policy", "Mental health planning", "Mental health services"], "revision": 2}
+/type/work /works/OL10762330W 3 2010-12-04T02:23:31.421484 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:32:59.066411"}, "subject_places": ["Brazil"], "subjects": ["Authors, Brazilian", "Biography", "Brazilian Authors"], "latest_revision": 3, "key": "/works/OL10762330W", "title": "Arcos de triumpho", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4497871A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-04T02:23:31.421484"}, "revision": 3}
+/type/work /works/OL10762637W 2 2013-08-29T10:14:33.386479 {"title": "Carnac, po\u00e8me", "created": {"type": "/type/datetime", "value": "2009-12-11T03:32:59.066411"}, "last_modified": {"type": "/type/datetime", "value": "2013-08-29T10:14:33.386479"}, "latest_revision": 2, "key": "/works/OL10762637W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL54568A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10763052W 2 2010-01-18T08:25:31.182397 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:33:04.205303"}, "title": "Sewer maintenance", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T08:25:31.182397"}, "latest_revision": 2, "key": "/works/OL10763052W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4498217A"}}], "type": {"key": "/type/work"}, "subjects": ["Sewerage", "Maintenance and repair", "Cleaning"], "revision": 2}
+/type/work /works/OL10763104W 3 2020-04-17T21:21:40.301127 {"last_modified": {"type": "/type/datetime", "value": "2020-04-17T21:21:40.301127"}, "title": "Problemas da literatura infantil", "created": {"type": "/type/datetime", "value": "2009-12-11T03:33:04.205303"}, "subjects": ["History and criticism", "Children's literature"], "latest_revision": 3, "key": "/works/OL10763104W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL122243A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10763292W 2 2011-05-25T00:39:25.018975 {"title": "Clopotul scufundat", "created": {"type": "/type/datetime", "value": "2009-12-11T03:33:04.205303"}, "last_modified": {"type": "/type/datetime", "value": "2011-05-25T00:39:25.018975"}, "latest_revision": 2, "key": "/works/OL10763292W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL363200A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10763535W 2 2010-01-18T08:30:38.003093 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:33:04.205303"}, "title": "Bu\u1e25\u016bth f\u012b al-i\u02bbl\u0101m al-Isl\u0101m\u012b", "subject_places": ["Islamic countries"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T08:30:38.003093"}, "latest_revision": 2, "key": "/works/OL10763535W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4498432A"}}], "type": {"key": "/type/work"}, "subjects": ["Press", "Sensationalism in newspapers", "Crime and the press", "Journalistic ethics"], "revision": 2}
+/type/work /works/OL10763623W 2 2010-01-18T08:30:38.003093 {"title": "\u012a\u1e0d\u0101\u1e25 al-mas\u0101lik il\u00e1 qaw\u0101\u02bbid al-Im\u0101m Ab\u012b \u02bbAbd All\u0101h M\u0101lik", "created": {"type": "/type/datetime", "value": "2009-12-11T03:33:04.205303"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-18T08:30:38.003093"}, "latest_revision": 2, "key": "/works/OL10763623W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4498452A"}}], "subject_people": ["M\u0101lik ibn Anas (d. 795)"], "type": {"key": "/type/work"}, "subjects": ["Early works to 1800", "Malikites", "Islamic law", "Interpretation and construction"], "revision": 2}
+/type/work /works/OL10763637W 1 2009-12-11T03:33:04.205303 {"title": "FOR ALL-ROUND DEVELOPMENT OF BULGARO-YUGOSLAV RELATIONS", "created": {"type": "/type/datetime", "value": "2009-12-11T03:33:04.205303"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:33:04.205303"}, "latest_revision": 1, "key": "/works/OL10763637W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4498461A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10763769W 1 2009-12-11T03:33:08.349674 {"title": "Emergency", "created": {"type": "/type/datetime", "value": "2009-12-11T03:33:08.349674"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:33:08.349674"}, "latest_revision": 1, "key": "/works/OL10763769W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4498517A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10763892W 2 2010-07-31T02:21:51.271214 {"last_modified": {"type": "/type/datetime", "value": "2010-07-31T02:21:51.271214"}, "title": "Il\u00e1 al-wukal\u0101\u02bc f\u012b al-bil\u0101d", "created": {"type": "/type/datetime", "value": "2009-12-11T03:33:08.349674"}, "subjects": ["Arabic Islamic sermons"], "latest_revision": 2, "key": "/works/OL10763892W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4498574A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10764189W 2 2010-01-18T08:30:38.003093 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:33:08.349674"}, "title": "\u0100r\u0101' wa-maw\u0101qif", "subject_places": ["Lebanon"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T08:30:38.003093"}, "latest_revision": 2, "key": "/works/OL10764189W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4498701A"}}], "type": {"key": "/type/work"}, "subjects": ["Kurds", "History"], "revision": 2}
+/type/work /works/OL10764289W 2 2022-11-01T20:24:50.494247 {"title": "Cuv\u00eentare la Plenara Consiliului Uniunii Na\u021bionale a Cooperativelor Agricole de Produc\u021bie", "key": "/works/OL10764289W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL871265A"}}], "type": {"key": "/type/work"}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T03:33:08.349674"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-01T20:24:50.494247"}}
+/type/work /works/OL10764852W 2 2010-01-18T08:35:32.617017 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:33:12.923995"}, "title": "Schwaben", "subject_places": ["Swabia"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T08:35:32.617017"}, "latest_revision": 2, "key": "/works/OL10764852W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4498928A"}}], "type": {"key": "/type/work"}, "subjects": ["Folk art"], "revision": 2}
+/type/work /works/OL1076510W 4 2020-12-03T11:53:53.272723 {"title": "Bi\u0304svi\u0304n\u0332 s\u0323adi\u0304 men\u0332 Urdu\u0304 g\u0332h\u0332azal, 1914 ta\u0304 1947", "key": "/works/OL1076510W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL110363A"}}], "subject_times": ["20th century"], "type": {"key": "/type/work"}, "subjects": ["History and criticism", "Urdu poetry", "Ghazals, Urdu", "Urdu Ghazals"], "description": {"type": "/type/text", "value": "Study of 20th century Urdu ghazal."}, "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-09T20:24:59.924328"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-03T11:53:53.272723"}}
+/type/work /works/OL10765151W 2 2010-01-18T08:35:32.617017 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:33:12.923995"}, "title": "Khozi\ufe20a\ufe21\u012dstvenny\u012d raschet v promyshlennosti Kazakhstana", "subject_places": ["Kazakhstan"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T08:35:32.617017"}, "latest_revision": 2, "key": "/works/OL10765151W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4499047A"}}], "type": {"key": "/type/work"}, "subjects": ["Industrial management", "Industrial organization"], "revision": 2}
+/type/work /works/OL10765565W 1 2009-12-11T03:33:12.923995 {"title": "Po\u0117ma bez predmeta", "created": {"type": "/type/datetime", "value": "2009-12-11T03:33:12.923995"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:33:12.923995"}, "latest_revision": 1, "key": "/works/OL10765565W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4499192A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10765679W 2 2010-01-18T08:35:32.617017 {"title": "Georgius Agricola", "created": {"type": "/type/datetime", "value": "2009-12-11T03:33:12.923995"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-18T08:35:32.617017"}, "latest_revision": 2, "key": "/works/OL10765679W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4499249A"}}], "subject_people": ["Georg Agricola (1494-1555)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10767008W 2 2010-01-18T08:45:51.814779 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:33:27.471995"}, "title": "Panorama", "subject_places": ["Southern California"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T08:45:51.814779"}, "latest_revision": 2, "key": "/works/OL10767008W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4499763A"}}], "type": {"key": "/type/work"}, "subjects": ["Pictorial works", "History"], "revision": 2}
+/type/work /works/OL10767117W 1 2009-12-11T03:33:27.471995 {"title": "Il muro di casa", "created": {"type": "/type/datetime", "value": "2009-12-11T03:33:27.471995"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:33:27.471995"}, "latest_revision": 1, "key": "/works/OL10767117W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4499811A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10767123W 2 2010-01-18T08:45:51.814779 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:33:27.471995"}, "title": "The city of London and the opposition to government, 1768-1774", "subject_places": ["London (England)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T08:45:51.814779"}, "latest_revision": 2, "key": "/works/OL10767123W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4499815A"}}], "type": {"key": "/type/work"}, "subjects": ["Politics and government"], "revision": 2}
+/type/work /works/OL10767168W 2 2010-01-18T08:45:51.814779 {"title": "\u1e24ay\u0101t-i M\u0101lik", "created": {"type": "/type/datetime", "value": "2009-12-11T03:33:27.471995"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-18T08:45:51.814779"}, "latest_revision": 2, "key": "/works/OL10767168W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4499831A"}}], "subject_people": ["M\u0101ik ibn Anas (d. 795)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10767313W 2 2010-01-18T08:45:51.814779 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:33:27.471995"}, "title": "The architect and the city", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T08:45:51.814779"}, "latest_revision": 2, "key": "/works/OL10767313W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4499895A"}}], "type": {"key": "/type/work"}, "subjects": ["City planning", "Congresses"], "revision": 2}
+/type/work /works/OL10767471W 3 2012-05-29T17:09:36.070603 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:33:27.471995"}, "subject_places": ["United States"], "subjects": ["College athletes", "Athletics", "Educational surveys"], "latest_revision": 3, "key": "/works/OL10767471W", "title": "Methodology of the 1987-1988 national study of intercollegiate athletes", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4499982A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-29T17:09:36.070603"}, "revision": 3}
+/type/work /works/OL10767651W 2 2010-01-18T08:45:51.814779 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:33:27.471995"}, "title": "Statistical mechanics", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T08:45:51.814779"}, "latest_revision": 2, "key": "/works/OL10767651W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4500030A"}}], "type": {"key": "/type/work"}, "subjects": ["Statistical mechanics", "Transport theory"], "revision": 2}
+/type/work /works/OL10767959W 1 2009-12-11T03:33:32.498880 {"title": "Supermarket, food hall and combination store management in retail co-operative societies", "created": {"type": "/type/datetime", "value": "2009-12-11T03:33:32.498880"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:33:32.498880"}, "latest_revision": 1, "key": "/works/OL10767959W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4500204A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10768148W 1 2009-12-11T03:33:32.498880 {"title": "Landscape and the Durham motorway", "created": {"type": "/type/datetime", "value": "2009-12-11T03:33:32.498880"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:33:32.498880"}, "latest_revision": 1, "key": "/works/OL10768148W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4500243A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10768175W 3 2010-04-30T00:46:15.020785 {"subtitle": "guz\u0332ashtah-\u02bei b\u0101st\u0101ni\u0332-i \u012ar\u0101n", "title": "R\u016bzgar\u0101n-i \u012ar\u0101n", "created": {"type": "/type/datetime", "value": "2009-12-11T03:33:32.498880"}, "subject_places": ["Iran"], "last_modified": {"type": "/type/datetime", "value": "2010-04-30T00:46:15.020785"}, "latest_revision": 3, "key": "/works/OL10768175W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4500245A"}}], "type": {"key": "/type/work"}, "subjects": ["History"], "revision": 3}
+/type/work /works/OL10768229W 2 2010-01-18T08:45:51.814779 {"title": "A complete catalogue of compositions by Edmund Rubbra to June 1971", "created": {"type": "/type/datetime", "value": "2009-12-11T03:33:32.498880"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-18T08:45:51.814779"}, "latest_revision": 2, "key": "/works/OL10768229W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4500261A"}}], "subject_people": ["Edmund Rubbra (1901-)"], "type": {"key": "/type/work"}, "subjects": ["Bibliography"], "revision": 2}
+/type/work /works/OL10768310W 2 2010-12-03T17:31:59.773349 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T17:31:59.773349"}, "title": "Glasgow University Chapel", "created": {"type": "/type/datetime", "value": "2009-12-11T03:33:32.498880"}, "subjects": ["University of Glasgow", "University of Glasgow. Chapel"], "latest_revision": 2, "key": "/works/OL10768310W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4500286A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10768395W 1 2009-12-11T03:33:32.498880 {"title": "Compressed air and energy use", "created": {"type": "/type/datetime", "value": "2009-12-11T03:33:32.498880"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:33:32.498880"}, "latest_revision": 1, "key": "/works/OL10768395W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4500289A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10768878W 2 2010-01-18T08:51:13.176550 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:33:37.884268"}, "title": "T\u014dy\u014d Bunko betsuoki Higashi Ajia kankei", "subject_places": ["Japan", "Korea", "China"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T08:51:13.176550"}, "latest_revision": 2, "key": "/works/OL10768878W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4500458A"}}], "type": {"key": "/type/work"}, "subjects": ["Bibliography", "Catalogs"], "revision": 2}
+/type/work /works/OL10768922W 1 2009-12-11T03:33:37.884268 {"title": "Zasedaniya Verkhnogo Soveta RSFSR 8-ogo sozyva 4-aya sessiya, 25-26 dekabrya 1972 g", "created": {"type": "/type/datetime", "value": "2009-12-11T03:33:37.884268"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:33:37.884268"}, "latest_revision": 1, "key": "/works/OL10768922W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4500470A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10768985W 1 2009-12-11T03:33:37.884268 {"title": "Fundamental law of the socialist state of the whole people", "created": {"type": "/type/datetime", "value": "2009-12-11T03:33:37.884268"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:33:37.884268"}, "latest_revision": 1, "key": "/works/OL10768985W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4500509A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10769095W 2 2010-01-18T08:51:13.176550 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:33:37.884268"}, "title": "Accounting", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T08:51:13.176550"}, "latest_revision": 2, "key": "/works/OL10769095W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4500557A"}}], "type": {"key": "/type/work"}, "subjects": ["Accounting", "Cost accounting"], "revision": 2}
+/type/work /works/OL10769374W 1 2009-12-11T03:33:37.884268 {"title": "Meeting the mental health needs of adults with a mild learning disability", "created": {"type": "/type/datetime", "value": "2009-12-11T03:33:37.884268"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:33:37.884268"}, "latest_revision": 1, "key": "/works/OL10769374W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4500688A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10769377W 1 2009-12-11T03:33:37.884268 {"title": "Model consultant job descriptions and recommended norms", "created": {"type": "/type/datetime", "value": "2009-12-11T03:33:37.884268"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:33:37.884268"}, "latest_revision": 1, "key": "/works/OL10769377W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4500688A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10769718W 2 2010-01-18T08:51:13.176550 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:33:43.404493"}, "title": "Q\u0101n\u016bn al-fa\u1e0d\u0101\u02be al-kawn\u012b", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T08:51:13.176550"}, "latest_revision": 2, "key": "/works/OL10769718W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4500849A"}}], "type": {"key": "/type/work"}, "subjects": ["Space law"], "revision": 2}
+/type/work /works/OL10769765W 2 2010-01-18T08:51:13.176550 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:33:43.404493"}, "title": "Setting accounting standards", "subject_places": ["Great Britain"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T08:51:13.176550"}, "latest_revision": 2, "key": "/works/OL10769765W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4500865A"}}], "type": {"key": "/type/work"}, "subjects": ["Accounting", "Standards"], "revision": 2}
+/type/work /works/OL10770057W 1 2009-12-11T03:33:43.404493 {"title": "Strategy and programme for drought control and development in the Sahel", "created": {"type": "/type/datetime", "value": "2009-12-11T03:33:43.404493"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:33:43.404493"}, "latest_revision": 1, "key": "/works/OL10770057W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4500986A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1077019W 3 2020-12-03T11:55:48.761865 {"title": "Icai na\u0304t\u0323t\u0323iya vimarican\u0332am", "subject_places": ["India", "Tamil Nadu"], "key": "/works/OL1077019W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL110504A"}}], "type": {"key": "/type/work"}, "subjects": ["History and criticism", "Music", "Musicians"], "description": {"type": "/type/text", "value": "Critical study on Tamil music and musicians in Tamil Nadu."}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-09T20:24:59.924328"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-03T11:55:48.761865"}}
+/type/work /works/OL10770363W 1 2009-12-11T03:33:43.404493 {"title": "Supplementary planning guidelines. 1978/79", "created": {"type": "/type/datetime", "value": "2009-12-11T03:33:43.404493"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:33:43.404493"}, "latest_revision": 1, "key": "/works/OL10770363W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4501125A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10770524W 3 2022-05-18T06:17:49.464987 {"title": "Kokutai no hongi =", "subject_places": ["Japan"], "key": "/works/OL10770524W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4501216A"}}], "type": {"key": "/type/work"}, "subjects": ["Civilization"], "covers": [12749232], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T03:33:43.404493"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-18T06:17:49.464987"}}
+/type/work /works/OL10770562W 1 2009-12-11T03:33:43.404493 {"title": "Can I insist?", "created": {"type": "/type/datetime", "value": "2009-12-11T03:33:43.404493"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:33:43.404493"}, "latest_revision": 1, "key": "/works/OL10770562W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4501230A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10770711W 1 2009-12-11T03:33:47.857835 {"title": "Hands across the North Sea", "created": {"type": "/type/datetime", "value": "2009-12-11T03:33:47.857835"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:33:47.857835"}, "latest_revision": 1, "key": "/works/OL10770711W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4501312A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10771066W 1 2009-12-11T03:33:47.857835 {"title": "Performance appraisal", "created": {"type": "/type/datetime", "value": "2009-12-11T03:33:47.857835"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:33:47.857835"}, "latest_revision": 1, "key": "/works/OL10771066W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4501382A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10771067W 1 2009-12-11T03:33:47.857835 {"title": "Productivity", "created": {"type": "/type/datetime", "value": "2009-12-11T03:33:47.857835"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:33:47.857835"}, "latest_revision": 1, "key": "/works/OL10771067W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4501382A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10771285W 1 2009-12-11T03:33:47.857835 {"title": "The tories spending cuts", "created": {"type": "/type/datetime", "value": "2009-12-11T03:33:47.857835"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:33:47.857835"}, "latest_revision": 1, "key": "/works/OL10771285W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4501469A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10771364W 2 2010-01-18T08:57:02.986225 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:33:47.857835"}, "title": "La de?portation des travailleurs franc?ais dans le IIIe", "subject_places": ["Germany"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T08:57:02.986225"}, "latest_revision": 2, "key": "/works/OL10771364W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4501505A"}}], "type": {"key": "/type/work"}, "subjects": ["World War, 1939-1945", "Conscript labor", "Deportations from France"], "revision": 2}
+/type/work /works/OL10771424W 2 2010-01-18T08:57:02.986225 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:33:47.857835"}, "title": "Inter-country adoption", "subject_places": ["Great Britain"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T08:57:02.986225"}, "latest_revision": 2, "key": "/works/OL10771424W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4501526A"}}], "type": {"key": "/type/work"}, "subjects": ["Adoption"], "revision": 2}
+/type/work /works/OL10771425W 1 2009-12-11T03:33:47.857835 {"title": "A practice guide to the Children Act 1975", "created": {"type": "/type/datetime", "value": "2009-12-11T03:33:47.857835"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:33:47.857835"}, "latest_revision": 1, "key": "/works/OL10771425W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4501526A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10771801W 1 2009-12-11T03:33:53.163534 {"title": "Engineering insurance", "created": {"type": "/type/datetime", "value": "2009-12-11T03:33:53.163534"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:33:53.163534"}, "latest_revision": 1, "key": "/works/OL10771801W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4501688A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10771923W 1 2009-12-11T03:33:53.163534 {"title": "Water power: British Columbia, Canada", "created": {"type": "/type/datetime", "value": "2009-12-11T03:33:53.163534"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:33:53.163534"}, "latest_revision": 1, "key": "/works/OL10771923W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4501714A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10772709W 1 2009-12-11T03:33:58.666785 {"title": "Elections 1989", "created": {"type": "/type/datetime", "value": "2009-12-11T03:33:58.666785"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:33:58.666785"}, "latest_revision": 1, "key": "/works/OL10772709W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4502038A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10772833W 1 2009-12-11T03:33:58.666785 {"title": "Beyond Beveridge", "created": {"type": "/type/datetime", "value": "2009-12-11T03:33:58.666785"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:33:58.666785"}, "latest_revision": 1, "key": "/works/OL10772833W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4502083A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10772990W 1 2009-12-11T03:33:58.666785 {"title": "Mining international year book, 1988", "created": {"type": "/type/datetime", "value": "2009-12-11T03:33:58.666785"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:33:58.666785"}, "latest_revision": 1, "key": "/works/OL10772990W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4502142A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10773148W 2 2010-01-18T08:57:02.986225 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:33:58.666785"}, "title": "Curriculum guide for reading/language arts, K-8", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T08:57:02.986225"}, "latest_revision": 2, "key": "/works/OL10773148W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4502230A"}}], "type": {"key": "/type/work"}, "subjects": ["Reading", "Language arts"], "revision": 2}
+/type/work /works/OL10774747W 2 2010-01-18T09:02:46.769673 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:34:10.455182"}, "title": "Rules, report and list of members for the year 1900", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T09:02:46.769673"}, "latest_revision": 2, "key": "/works/OL10774747W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4502841A"}}], "type": {"key": "/type/work"}, "subjects": ["Genealogy", "Societies"], "revision": 2}
+/type/work /works/OL1077491W 3 2021-11-01T17:10:44.837865 {"title": "Meeting Sikhism", "key": "/works/OL1077491W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL110617A"}}], "type": {"key": "/type/work"}, "subjects": ["Sikhism", "Juvenile literature"], "covers": [12283531], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-09T20:25:29.441778"}, "last_modified": {"type": "/type/datetime", "value": "2021-11-01T17:10:44.837865"}}
+/type/work /works/OL10775232W 1 2009-12-11T03:34:10.455182 {"title": "Sports Council miscellaneous publications", "created": {"type": "/type/datetime", "value": "2009-12-11T03:34:10.455182"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:34:10.455182"}, "latest_revision": 1, "key": "/works/OL10775232W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4502968A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10775944W 2 2010-12-06T07:53:07.012189 {"last_modified": {"type": "/type/datetime", "value": "2010-12-06T07:53:07.012189"}, "title": "The history and treasures of Westminster Abbey", "created": {"type": "/type/datetime", "value": "2009-12-11T03:34:14.968417"}, "subjects": ["Westminster Abbey"], "latest_revision": 2, "key": "/works/OL10775944W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4503165A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10776629W 1 2009-12-11T03:34:14.968417 {"title": "A journal of the votes of the House of Representatives of His Majestys province of New-Jersey", "created": {"type": "/type/datetime", "value": "2009-12-11T03:34:14.968417"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:34:14.968417"}, "latest_revision": 1, "key": "/works/OL10776629W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4503402A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10776859W 1 2009-12-11T03:34:21.640710 {"title": "Statement to the industry", "created": {"type": "/type/datetime", "value": "2009-12-11T03:34:21.640710"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:34:21.640710"}, "latest_revision": 1, "key": "/works/OL10776859W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4503532A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10777049W 1 2009-12-11T03:34:21.640710 {"title": "The Presbyterian Cookbook", "created": {"type": "/type/datetime", "value": "2009-12-11T03:34:21.640710"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:34:21.640710"}, "latest_revision": 1, "key": "/works/OL10777049W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4503644A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10777178W 1 2009-12-11T03:34:21.640710 {"title": "Seminar at Reed House organized by the School of Advanced Studies, December 1968", "created": {"type": "/type/datetime", "value": "2009-12-11T03:34:21.640710"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:34:21.640710"}, "latest_revision": 1, "key": "/works/OL10777178W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4503724A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10777349W 2 2010-01-18T09:07:54.498855 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:34:21.640710"}, "title": "A kamarilla a reformkorszakban", "subject_places": ["Austria"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T09:07:54.498855"}, "latest_revision": 2, "key": "/works/OL10777349W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4503808A"}}], "subject_times": ["1848-1918"], "type": {"key": "/type/work"}, "subjects": ["Subversive activities", "Politics and government", "Austro-Hungarian Monarchy", "Conspiracies", "Europe"], "revision": 2}
+/type/work /works/OL10777441W 2 2010-01-18T09:07:54.498855 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:34:21.640710"}, "title": "Weaving the short story", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T09:07:54.498855"}, "latest_revision": 2, "key": "/works/OL10777441W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4503855A"}}], "type": {"key": "/type/work"}, "subjects": ["Short story"], "revision": 2}
+/type/work /works/OL10777445W 1 2009-12-11T03:34:21.640710 {"title": "Guide", "created": {"type": "/type/datetime", "value": "2009-12-11T03:34:21.640710"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:34:21.640710"}, "latest_revision": 1, "key": "/works/OL10777445W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4503858A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10777652W 1 2009-12-11T03:34:21.640710 {"title": "Jean Cocteau and the Boeuf sur la Toit", "created": {"type": "/type/datetime", "value": "2009-12-11T03:34:21.640710"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:34:21.640710"}, "latest_revision": 1, "key": "/works/OL10777652W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4503956A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10777722W 3 2010-12-03T23:15:15.506284 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:34:26.407649"}, "subject_places": ["Islamic countries"], "subjects": ["Economics", "Investments", "Islam", "Religious aspects", "Religious aspects of Economics"], "latest_revision": 3, "key": "/works/OL10777722W", "title": "al- M\u0101l wa-\u1e6duruq istithm\u0101rihi f\u012b al-Isl\u0101m", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4503982A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T23:15:15.506284"}, "revision": 3}
+/type/work /works/OL10777871W 2 2010-01-18T09:13:32.342602 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:34:26.407649"}, "title": "Evaluation of land application systems", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T09:13:32.342602"}, "latest_revision": 2, "key": "/works/OL10777871W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4504064A"}}], "type": {"key": "/type/work"}, "subjects": ["Land use", "Water reuse", "Sewage as fertilizer"], "revision": 2}
+/type/work /works/OL10778006W 1 2009-12-11T03:34:26.407649 {"title": "Procedures for assessment and the appointment of external essessors for the award ofthe Diploma in Art and Design", "created": {"type": "/type/datetime", "value": "2009-12-11T03:34:26.407649"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:34:26.407649"}, "latest_revision": 1, "key": "/works/OL10778006W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4504112A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10778055W 1 2009-12-11T03:34:26.407649 {"title": "Religious education", "created": {"type": "/type/datetime", "value": "2009-12-11T03:34:26.407649"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:34:26.407649"}, "latest_revision": 1, "key": "/works/OL10778055W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4504148A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10778125W 1 2009-12-11T03:34:26.407649 {"title": "Culttura Neoclassica c Romantica nella Toscana Granducale", "created": {"type": "/type/datetime", "value": "2009-12-11T03:34:26.407649"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:34:26.407649"}, "latest_revision": 1, "key": "/works/OL10778125W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4504166A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10778903W 2 2010-01-18T09:13:32.342602 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:34:29.721135"}, "title": "Radd muftaray\u0101t al-mubashshir\u012bn \u02bbal\u00e1 al-Isl\u0101m", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T09:13:32.342602"}, "latest_revision": 2, "key": "/works/OL10778903W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4504377A"}}], "type": {"key": "/type/work"}, "subjects": ["Islam", "Relations", "Apologetic works", "Christianity and other religions", "Christianity"], "revision": 2}
+/type/work /works/OL10779159W 3 2010-08-22T20:31:31.030090 {"subtitle": "some issues : a report by HMI.", "title": "Schools in Hackney", "created": {"type": "/type/datetime", "value": "2009-12-11T03:34:29.721135"}, "last_modified": {"type": "/type/datetime", "value": "2010-08-22T20:31:31.030090"}, "latest_revision": 3, "key": "/works/OL10779159W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4490078A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1077927W 11 2020-08-11T08:22:53.295295 {"last_modified": {"type": "/type/datetime", "value": "2020-08-11T08:22:53.295295"}, "title": "History of the Indian Archipelago", "created": {"type": "/type/datetime", "value": "2009-12-09T20:25:29.441778"}, "covers": [5777737], "subject_places": ["Malay Archipelago", "Philippines", "Java", "Sumatra"], "subjects": ["Austronesian languages", "Civilization", "Commerce", "Ethnology", "Malay-Polynesian languages", "Cultural Characteristics"], "latest_revision": 11, "key": "/works/OL1077927W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL110726A"}}], "excerpts": [{"comment": "From the Edinburgh 1820 edition, Vol. I", "excerpt": "[v] ADVERTISEMENT. / The materials of the following work were collected by the writer, during a residence of nine years in the countries of which it professes to give an account. In the year 1808, he was nominated to the Medical Staff of Prince of Wales' Island, and, during a stay of three years at that station, acquired such a knowledge of the language and manners of the native tribes, as induced his distinguished patron, the late Earl of Minto, to employ him on the public service, in the expedition which conquered Java in 1811. During a residence in that island of nearly six years, he had the honour to fill some of the principal civil and political offices of the local government, and thus enjoyed opportunities of acquiring information regarding the country and its inhabitants, [vi] which no British subject is again likely, for a long time, to possess. A political mission to Bali and Celebes, and much intercourse with the tribes and nations frequenting Java for commercial purposes, make up the amount of his personal experience. The sketches of Antiquities were executed chiefly by a Native of Java, and they have at least the merit of being drawn with minute fidelity. The Map was compiled and engraved, with great care, by Mr John Walker of the Admiralty, and the Author hopes he does no more than justice to that gentleman, when he says, that it is the completest yet submitted to the public. In the Appendix to the Third Volume a brief explanation is given of the nature of the materials from which it has been drawn. / Edinburgh, March 1820.", "author": {"key": "/people/marycee"}}], "type": {"key": "/type/work"}, "revision": 11}
+/type/work /works/OL10779606W 1 2009-12-11T03:34:29.721135 {"title": "Agreed syllabus of religious instruction", "created": {"type": "/type/datetime", "value": "2009-12-11T03:34:29.721135"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:34:29.721135"}, "latest_revision": 1, "key": "/works/OL10779606W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4504496A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10780667W 1 2009-12-11T03:34:34.238320 {"title": "Planning for amenity and tourism", "created": {"type": "/type/datetime", "value": "2009-12-11T03:34:34.238320"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:34:34.238320"}, "latest_revision": 1, "key": "/works/OL10780667W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4504865A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10781073W 1 2009-12-11T03:34:39.890971 {"title": "Report on marine science and technology", "created": {"type": "/type/datetime", "value": "2009-12-11T03:34:39.890971"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:34:39.890971"}, "latest_revision": 1, "key": "/works/OL10781073W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4505062A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10781079W 4 2022-06-18T07:09:49.084522 {"subjects": ["Point processes", "Multivariate analysis", "Risk assessment", "Mathematical models", "Waarschijnlijkheidstheorie", "Risk management", "Extreme waarden", "Risicoanalyse", "Extreme value theory", "Mathematics"], "key": "/works/OL10781079W", "title": "High risk scenarios and extremes", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4505065A"}}], "type": {"key": "/type/work"}, "covers": [8658928], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T03:34:39.890971"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-18T07:09:49.084522"}}
+/type/work /works/OL10781457W 1 2009-12-11T03:34:39.890971 {"title": "[Papers presented] at Birmingham, 5-7 April, 1954", "created": {"type": "/type/datetime", "value": "2009-12-11T03:34:39.890971"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:34:39.890971"}, "latest_revision": 1, "key": "/works/OL10781457W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4505191A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10781743W 1 2009-12-11T03:34:45.823877 {"title": "Istorija xx veka", "created": {"type": "/type/datetime", "value": "2009-12-11T03:34:45.823877"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:34:45.823877"}, "latest_revision": 1, "key": "/works/OL10781743W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4505339A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10781777W 2 2022-07-12T01:45:26.566618 {"title": "Insect pathology and microbial control", "key": "/works/OL10781777W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4505350A"}}], "type": {"key": "/type/work"}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T03:34:45.823877"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-12T01:45:26.566618"}}
+/type/work /works/OL10781850W 1 2009-12-11T03:34:45.823877 {"title": "Bhur bpa\u0301iste agus bhur scoil =", "created": {"type": "/type/datetime", "value": "2009-12-11T03:34:45.823877"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:34:45.823877"}, "latest_revision": 1, "key": "/works/OL10781850W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4505387A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10781963W 1 2009-12-11T03:34:45.823877 {"title": "Sonderausgabe, 1973. Panorama", "created": {"type": "/type/datetime", "value": "2009-12-11T03:34:45.823877"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:34:45.823877"}, "latest_revision": 1, "key": "/works/OL10781963W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4505462A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10782045W 1 2009-12-11T03:34:45.823877 {"title": "Advanced aero engine testing", "created": {"type": "/type/datetime", "value": "2009-12-11T03:34:45.823877"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:34:45.823877"}, "latest_revision": 1, "key": "/works/OL10782045W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4505514A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10782326W 1 2009-12-11T03:34:45.823877 {"title": "Computers and automation", "created": {"type": "/type/datetime", "value": "2009-12-11T03:34:45.823877"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:34:45.823877"}, "latest_revision": 1, "key": "/works/OL10782326W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4505651A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10782365W 2 2010-01-18T09:19:05.022869 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:34:45.823877"}, "title": "Control with stochastic stopping time", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T09:19:05.022869"}, "latest_revision": 2, "key": "/works/OL10782365W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4505664A"}}], "type": {"key": "/type/work"}, "subjects": ["Stochastic processes", "Automatic control"], "revision": 2}
+/type/work /works/OL1078241W 5 2020-08-13T11:35:09.066896 {"covers": [5585952], "last_modified": {"type": "/type/datetime", "value": "2020-08-13T11:35:09.066896"}, "latest_revision": 5, "key": "/works/OL1078241W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL110816A"}}], "created": {"type": "/type/datetime", "value": "2009-12-09T20:25:29.441778"}, "title": "German self-taught, with phonetic pronunciation", "subjects": ["German language", "Glossaries, vocabularies", "Grammar", "Conversation and phrase books", "English"], "subject_times": ["1870-"], "type": {"key": "/type/work"}, "revision": 5}
+/type/work /works/OL10782617W 2 2012-06-12T18:52:27.048445 {"title": "Driver characteristics and behaviour studies", "created": {"type": "/type/datetime", "value": "2009-12-11T03:34:45.823877"}, "last_modified": {"type": "/type/datetime", "value": "2012-06-12T18:52:27.048445"}, "latest_revision": 2, "key": "/works/OL10782617W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4505767A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10782622W 1 2009-12-11T03:34:45.823877 {"title": "[ Cryogenic engineering]", "created": {"type": "/type/datetime", "value": "2009-12-11T03:34:45.823877"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:34:45.823877"}, "latest_revision": 1, "key": "/works/OL10782622W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4505781A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10782869W 1 2009-12-11T03:34:52.489388 {"title": "Ultracentrifugal analysis in theory and experiments", "created": {"type": "/type/datetime", "value": "2009-12-11T03:34:52.489388"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:34:52.489388"}, "latest_revision": 1, "key": "/works/OL10782869W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4505942A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10783097W 1 2009-12-11T03:34:52.489388 {"title": "The problems of persistentchemicals", "created": {"type": "/type/datetime", "value": "2009-12-11T03:34:52.489388"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:34:52.489388"}, "latest_revision": 1, "key": "/works/OL10783097W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4506073A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10784005W 3 2021-08-16T04:23:06.075977 {"title": "Yachtsman's camera", "key": "/works/OL10784005W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1802759A"}}], "type": {"key": "/type/work"}, "subjects": ["Photography of ships", "Photography", "Yachting"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T03:34:58.495856"}, "last_modified": {"type": "/type/datetime", "value": "2021-08-16T04:23:06.075977"}}
+/type/work /works/OL10784217W 2 2010-01-18T09:24:09.877206 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:34:58.495856"}, "title": "The seaweeds of South Australia", "subject_places": ["Australia", "South Australia"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T09:24:09.877206"}, "latest_revision": 2, "key": "/works/OL10784217W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4506631A"}}], "type": {"key": "/type/work"}, "subjects": ["Algae"], "revision": 2}
+/type/work /works/OL10784712W 3 2010-12-03T12:55:03.691727 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T12:55:03.691727"}, "title": "Catalogue of Greek coins in the Hunterian collection, University of Glasgow", "created": {"type": "/type/datetime", "value": "2009-12-11T03:35:03.966663"}, "subjects": ["Coins, Greek", "Greek Coins"], "latest_revision": 3, "key": "/works/OL10784712W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4506889A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10785348W 2 2010-01-18T09:24:09.877206 {"title": "Max Blond", "created": {"type": "/type/datetime", "value": "2009-12-11T03:35:03.966663"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-18T09:24:09.877206"}, "latest_revision": 2, "key": "/works/OL10785348W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4507203A"}}], "subject_people": ["Maxwell Blond"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10785375W 1 2009-12-11T03:35:03.966663 {"title": "Ring spinning frame", "created": {"type": "/type/datetime", "value": "2009-12-11T03:35:03.966663"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:35:03.966663"}, "latest_revision": 1, "key": "/works/OL10785375W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4507213A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10785497W 1 2009-12-11T03:35:03.966663 {"title": "Notes on insulating oils for transformers and switchgear", "created": {"type": "/type/datetime", "value": "2009-12-11T03:35:03.966663"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:35:03.966663"}, "latest_revision": 1, "key": "/works/OL10785497W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4507265A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10785511W 2 2010-01-18T09:24:09.877206 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:35:03.966663"}, "title": "Topological semi groups", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T09:24:09.877206"}, "latest_revision": 2, "key": "/works/OL10785511W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4507269A"}}], "type": {"key": "/type/work"}, "subjects": ["Group theory", "Semigroups", "Topological groups", "Topology"], "revision": 2}
+/type/work /works/OL10785555W 1 2009-12-11T03:35:03.966663 {"title": "The register book of christenings, weddings, and burials, within the parish of Prestbury, in the county of Chester, 1560-1636", "created": {"type": "/type/datetime", "value": "2009-12-11T03:35:03.966663"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:35:03.966663"}, "latest_revision": 1, "key": "/works/OL10785555W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4507293A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10785660W 1 2009-12-11T03:35:03.966663 {"title": "Regulations and syllabuses [for CSE examinations]", "created": {"type": "/type/datetime", "value": "2009-12-11T03:35:03.966663"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:35:03.966663"}, "latest_revision": 1, "key": "/works/OL10785660W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4507318A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10785681W 3 2010-12-06T07:54:18.485457 {"last_modified": {"type": "/type/datetime", "value": "2010-12-06T07:54:18.485457"}, "title": "Pesticides, Ecology and Natural Resource Management", "created": {"type": "/type/datetime", "value": "2009-12-11T03:35:03.966663"}, "subjects": ["Congresses", "Environmental aspects", "Environmental aspects of Pesticides", "Management", "Natural resources", "Pesticides"], "latest_revision": 3, "key": "/works/OL10785681W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4507330A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10785760W 1 2009-12-11T03:35:10.099309 {"title": "A productivity survey of the ladies' and childrens' light outerwear sector of the British clothing industry", "created": {"type": "/type/datetime", "value": "2009-12-11T03:35:10.099309"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:35:10.099309"}, "latest_revision": 1, "key": "/works/OL10785760W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4507382A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10785881W 2 2010-01-18T09:24:09.877206 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:35:10.099309"}, "title": "The Rand weather data bank (RAWDAB)", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T09:24:09.877206"}, "latest_revision": 2, "key": "/works/OL10785881W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4507451A"}}], "type": {"key": "/type/work"}, "subjects": ["Military meteorology", "Weather control", "Weather forecasting"], "revision": 2}
+/type/work /works/OL10785955W 1 2009-12-11T03:35:10.099309 {"title": "Palpitations", "created": {"type": "/type/datetime", "value": "2009-12-11T03:35:10.099309"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:35:10.099309"}, "latest_revision": 1, "key": "/works/OL10785955W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4507492A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10786498W 1 2009-12-11T03:35:10.099309 {"title": "The design and preparation of origination for flexography", "created": {"type": "/type/datetime", "value": "2009-12-11T03:35:10.099309"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:35:10.099309"}, "latest_revision": 1, "key": "/works/OL10786498W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4507759A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10786964W 1 2009-12-11T03:35:17.494953 {"title": "The trial of Mary Dugan", "created": {"type": "/type/datetime", "value": "2009-12-11T03:35:17.494953"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:35:17.494953"}, "latest_revision": 1, "key": "/works/OL10786964W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4508029A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10787089W 1 2009-12-11T03:35:17.494953 {"title": "Canterbury Pilgrims' guide", "created": {"type": "/type/datetime", "value": "2009-12-11T03:35:17.494953"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:35:17.494953"}, "latest_revision": 1, "key": "/works/OL10787089W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4508104A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10787106W 1 2009-12-11T03:35:17.494953 {"title": "A compact geography of the Netherlands", "created": {"type": "/type/datetime", "value": "2009-12-11T03:35:17.494953"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:35:17.494953"}, "latest_revision": 1, "key": "/works/OL10787106W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4508120A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10787914W 3 2010-12-06T07:54:18.485457 {"last_modified": {"type": "/type/datetime", "value": "2010-12-06T07:54:18.485457"}, "title": "Zemnaia raduga", "created": {"type": "/type/datetime", "value": "2009-12-11T03:35:22.092226"}, "subjects": ["Russian Short stories", "Short stories, Russian"], "latest_revision": 3, "key": "/works/OL10787914W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4508628A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10787924W 3 2021-04-15T01:40:30.564759 {"title": "Synthesis and structure of macromolecules", "key": "/works/OL10787924W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL6829948A"}}], "type": {"key": "/type/work"}, "subjects": ["Congresses", "Proteins", "Macromolecules"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T03:35:22.092226"}, "last_modified": {"type": "/type/datetime", "value": "2021-04-15T01:40:30.564759"}}
+/type/work /works/OL10788099W 1 2009-12-11T03:35:22.092226 {"title": "A future together", "created": {"type": "/type/datetime", "value": "2009-12-11T03:35:22.092226"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:35:22.092226"}, "latest_revision": 1, "key": "/works/OL10788099W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4508687A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10788146W 1 2009-12-11T03:35:22.092226 {"title": "Strength in Europe", "created": {"type": "/type/datetime", "value": "2009-12-11T03:35:22.092226"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:35:22.092226"}, "latest_revision": 1, "key": "/works/OL10788146W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4508687A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10788833W 3 2010-04-28T07:15:43.867005 {"title": "The Incas and Their Industries ..", "created": {"type": "/type/datetime", "value": "2009-12-11T03:35:26.693258"}, "covers": [6157183], "subject_places": ["Peru"], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:15:43.867005"}, "latest_revision": 3, "key": "/works/OL10788833W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4508904A"}}], "subjects": ["Incas", "Indians of South America"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10788869W 1 2009-12-11T03:35:26.693258 {"title": "Overhand bricklaying", "created": {"type": "/type/datetime", "value": "2009-12-11T03:35:26.693258"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:35:26.693258"}, "latest_revision": 1, "key": "/works/OL10788869W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4508920A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10788947W 1 2009-12-11T03:35:26.693258 {"title": "Regional annual guidelines for the 1978/79 planning activity", "created": {"type": "/type/datetime", "value": "2009-12-11T03:35:26.693258"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:35:26.693258"}, "latest_revision": 1, "key": "/works/OL10788947W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4508939A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10789160W 2 2010-12-03T15:06:08.821093 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:06:08.821093"}, "latest_revision": 2, "key": "/works/OL10789160W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4509046A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T03:35:26.693258"}, "title": "French paintings of the nineteenth century from the collection of Mrs. Mellon Bruce", "subjects": ["Art collections", "Exhibitions", "French Painting"], "subject_people": ["Ailsa Mellon Bruce (d. 1969)"], "subject_times": ["19th century"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10789267W 2 2010-01-18T09:29:36.110360 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:35:26.693258"}, "title": "Fish cookery", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T09:29:36.110360"}, "latest_revision": 2, "key": "/works/OL10789267W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4509063A"}}], "type": {"key": "/type/work"}, "subjects": ["Cookery (Fish)"], "revision": 2}
+/type/work /works/OL1078930W 2 2010-01-18T09:29:36.110360 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:25:56.845887"}, "title": "S\u0301ri\u0304 Lan\u0307ka\u0304ve\u0304 Kristiya\u0304ni a\u0304gama", "subject_places": ["Sri Lanka"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T09:29:36.110360"}, "latest_revision": 2, "key": "/works/OL1078930W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL110993A"}}], "type": {"key": "/type/work"}, "subjects": ["Church history"], "revision": 2}
+/type/work /works/OL10789345W 1 2009-12-11T03:35:26.693258 {"title": "DUP constitutional manifesto", "created": {"type": "/type/datetime", "value": "2009-12-11T03:35:26.693258"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:35:26.693258"}, "latest_revision": 1, "key": "/works/OL10789345W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4509099A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10789375W 1 2009-12-11T03:35:26.693258 {"title": "Castlereagh election special", "created": {"type": "/type/datetime", "value": "2009-12-11T03:35:26.693258"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:35:26.693258"}, "latest_revision": 1, "key": "/works/OL10789375W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4509099A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10789660W 1 2009-12-11T03:35:26.693258 {"title": "Serve your teaching profession", "created": {"type": "/type/datetime", "value": "2009-12-11T03:35:26.693258"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:35:26.693258"}, "latest_revision": 1, "key": "/works/OL10789660W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4509195A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10789789W 3 2010-03-17T20:11:03.897304 {"subtitle": "report submitted by the Executive Council to the 1973 Annual Delegate Meeting.", "created": {"type": "/type/datetime", "value": "2009-12-11T03:35:31.845309"}, "title": "Wages and economic policy", "subject_places": ["Great Britain"], "last_modified": {"type": "/type/datetime", "value": "2010-03-17T20:11:03.897304"}, "latest_revision": 3, "key": "/works/OL10789789W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4509238A"}}], "type": {"key": "/type/work"}, "subjects": ["Economic aspects of Great Britain", "Wages", "Economic aspects", "Retail trade employees"], "revision": 3}
+/type/work /works/OL10789838W 1 2009-12-11T03:35:31.845309 {"title": "Guidelines for higher certificate programmes in animal technology", "created": {"type": "/type/datetime", "value": "2009-12-11T03:35:31.845309"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:35:31.845309"}, "latest_revision": 1, "key": "/works/OL10789838W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4509249A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10789940W 2 2010-01-18T09:35:00.196118 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:35:31.845309"}, "title": "Working in paper and board making", "subject_places": ["Great Britain"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T09:35:00.196118"}, "latest_revision": 2, "key": "/works/OL10789940W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4509276A"}}], "type": {"key": "/type/work"}, "subjects": ["Vocational guidance", "Paper making and trade"], "revision": 2}
+/type/work /works/OL10790036W 2 2010-01-18T09:35:00.196118 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:35:31.845309"}, "title": "Florida's inventory", "subject_places": ["Florida"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T09:35:00.196118"}, "latest_revision": 2, "key": "/works/OL10790036W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4509321A"}}], "type": {"key": "/type/work"}, "subjects": ["Economic conditions", "Population"], "revision": 2}
+/type/work /works/OL10790546W 1 2009-12-11T03:35:31.845309 {"title": "The teaching of higher geometry in schools", "created": {"type": "/type/datetime", "value": "2009-12-11T03:35:31.845309"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:35:31.845309"}, "latest_revision": 1, "key": "/works/OL10790546W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4509585A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10790661W 1 2009-12-11T03:35:31.845309 {"title": "North York Moors National Park plan", "created": {"type": "/type/datetime", "value": "2009-12-11T03:35:31.845309"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:35:31.845309"}, "latest_revision": 1, "key": "/works/OL10790661W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4509632A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1079068W 3 2020-12-16T13:15:24.149866 {"title": "Kr\u0325shn\u0323a janmabhu\u0304mi =", "subject_places": ["Mathur\u0101 (India)"], "key": "/works/OL1079068W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL111045A"}}], "subject_people": ["Mahmud Sultan of Ghazni (971-1030)"], "type": {"key": "/type/work"}, "subjects": ["Fiction"], "description": {"type": "/type/text", "value": "Based on attack of Mahmud, Sultan of Ghazni, 971-1030, on Mathura\u0304, India in 11th century."}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-09T20:25:56.845887"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-16T13:15:24.149866"}}
+/type/work /works/OL10790752W 1 2009-12-11T03:35:37.119086 {"title": "The truth and the courts", "created": {"type": "/type/datetime", "value": "2009-12-11T03:35:37.119086"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:35:37.119086"}, "latest_revision": 1, "key": "/works/OL10790752W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4509653A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10790891W 1 2009-12-11T03:35:37.119086 {"title": "European labor relations in the 70's", "created": {"type": "/type/datetime", "value": "2009-12-11T03:35:37.119086"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:35:37.119086"}, "latest_revision": 1, "key": "/works/OL10790891W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4509736A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10790912W 1 2009-12-11T03:35:37.119086 {"title": "Outline syllabus in objective form for corporate membership examinations", "created": {"type": "/type/datetime", "value": "2009-12-11T03:35:37.119086"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:35:37.119086"}, "latest_revision": 1, "key": "/works/OL10790912W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4509743A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10791018W 1 2009-12-11T03:35:37.119086 {"title": "Plan and investment strategy: 1983-4 and after", "created": {"type": "/type/datetime", "value": "2009-12-11T03:35:37.119086"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:35:37.119086"}, "latest_revision": 1, "key": "/works/OL10791018W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4509783A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10791027W 1 2009-12-11T03:35:37.119086 {"title": "Hotel & catering", "created": {"type": "/type/datetime", "value": "2009-12-11T03:35:37.119086"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:35:37.119086"}, "latest_revision": 1, "key": "/works/OL10791027W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4509790A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10791062W 1 2009-12-11T03:35:37.119086 {"title": "Draft recommendations on the future electoral arrangements for Wyre Forest in Worcestershire", "created": {"type": "/type/datetime", "value": "2009-12-11T03:35:37.119086"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:35:37.119086"}, "latest_revision": 1, "key": "/works/OL10791062W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4509803A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10791244W 2 2010-01-18T09:35:00.196118 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:35:37.119086"}, "title": "Save jobs - sack the Tories!", "subject_places": ["Great Britain"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T09:35:00.196118"}, "latest_revision": 2, "key": "/works/OL10791244W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4509883A"}}], "type": {"key": "/type/work"}, "subjects": ["Political activity", "Construction industry", "Labor unions"], "revision": 2}
+/type/work /works/OL10791732W 1 2009-12-11T03:35:41.422868 {"title": "Yearbook 1969-1970", "created": {"type": "/type/datetime", "value": "2009-12-11T03:35:41.422868"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:35:41.422868"}, "latest_revision": 1, "key": "/works/OL10791732W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4510078A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10791852W 3 2010-12-04T03:50:56.415926 {"last_modified": {"type": "/type/datetime", "value": "2010-12-04T03:50:56.415926"}, "latest_revision": 3, "key": "/works/OL10791852W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4510120A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T03:35:41.422868"}, "title": "All about the Crafts Council", "subject_places": ["Great Britain"], "subjects": ["Arts and crafts movement", "Crafts Council", "Decorative arts", "Exhibitions", "History"], "subject_times": ["20th century"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1079219W 3 2020-11-23T02:05:11.947224 {"description": {"type": "/type/text", "value": "Articles and speeches on various problems of Bangladesh and Sheikh Mujibur Rahman, 1922-1975."}, "last_modified": {"type": "/type/datetime", "value": "2020-11-23T02:05:11.947224"}, "title": "Ban\u0307gabandhu o Ba\u0304m\u0323la\u0304des\u0301a", "created": {"type": "/type/datetime", "value": "2009-12-09T20:25:56.845887"}, "subject_places": ["Bangladesh"], "subjects": ["Politics and government"], "subject_people": ["Mujibur Rahman Sheikh (1922-1975)"], "key": "/works/OL1079219W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL111103A"}}], "latest_revision": 3, "subject_times": ["1971-"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10792535W 1 2009-12-11T03:35:41.422868 {"title": "Visual problems of colour", "created": {"type": "/type/datetime", "value": "2009-12-11T03:35:41.422868"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:35:41.422868"}, "latest_revision": 1, "key": "/works/OL10792535W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4510370A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10793036W 1 2009-12-11T03:35:46.413505 {"title": "Newsletters", "created": {"type": "/type/datetime", "value": "2009-12-11T03:35:46.413505"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:35:46.413505"}, "latest_revision": 1, "key": "/works/OL10793036W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4510535A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10793788W 2 2010-01-18T09:40:29.918173 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:35:49.520110"}, "title": "Study of withdrawals and reservations of public domain lands", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T09:40:29.918173"}, "latest_revision": 2, "key": "/works/OL10793788W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4510837A"}}], "type": {"key": "/type/work"}, "subjects": ["Public domain", "Public lands"], "revision": 2}
+/type/work /works/OL10793911W 1 2009-12-11T03:35:49.520110 {"title": "Report by Department's Inspectors on Ballycastle High School, inspected February/March 1990", "created": {"type": "/type/datetime", "value": "2009-12-11T03:35:49.520110"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:35:49.520110"}, "latest_revision": 1, "key": "/works/OL10793911W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4510885A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10793967W 1 2009-12-11T03:35:49.520110 {"title": "Report by Department's Inspectors on Muckamore House School, Antrim, inspected November 1992", "created": {"type": "/type/datetime", "value": "2009-12-11T03:35:49.520110"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:35:49.520110"}, "latest_revision": 1, "key": "/works/OL10793967W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4510885A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1079471W 2 2010-01-18T09:40:29.918173 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:26:24.810946"}, "title": "Cricket's murky underworld", "subject_places": ["India"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T09:40:29.918173"}, "latest_revision": 2, "key": "/works/OL1079471W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL111171A"}}], "type": {"key": "/type/work"}, "subjects": ["Cricket", "Corrupt practices", "Cricket players", "Betting"], "revision": 2}
+/type/work /works/OL10795010W 1 2009-12-11T03:35:55.803079 {"title": "Consolidated accounts in Europe", "created": {"type": "/type/datetime", "value": "2009-12-11T03:35:55.803079"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:35:55.803079"}, "latest_revision": 1, "key": "/works/OL10795010W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4511144A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10795014W 1 2009-12-11T03:35:55.803079 {"title": "Marketing for economic recovery in Northern Ireland", "created": {"type": "/type/datetime", "value": "2009-12-11T03:35:55.803079"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:35:55.803079"}, "latest_revision": 1, "key": "/works/OL10795014W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4511147A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10795170W 2 2010-01-18T09:40:29.918173 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:35:55.803079"}, "title": "Adaptation of Copepod populations to thermal stress", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T09:40:29.918173"}, "latest_revision": 2, "key": "/works/OL10795170W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4511221A"}}], "type": {"key": "/type/work"}, "subjects": ["Copepoda"], "revision": 2}
+/type/work /works/OL10795352W 1 2009-12-11T03:35:55.803079 {"title": "Parking matters", "created": {"type": "/type/datetime", "value": "2009-12-11T03:35:55.803079"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:35:55.803079"}, "latest_revision": 1, "key": "/works/OL10795352W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4511295A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10795766W 1 2009-12-11T03:36:01.839977 {"title": "Patriyarkhal'nii ustav Domisnoi Ukrains'koi (Rus'koi) Katolits'koi Tserkvi", "created": {"type": "/type/datetime", "value": "2009-12-11T03:36:01.839977"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:36:01.839977"}, "latest_revision": 1, "key": "/works/OL10795766W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4511577A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10795888W 1 2009-12-11T03:36:01.839977 {"title": "Quarterly Reports, 1908-1919", "created": {"type": "/type/datetime", "value": "2009-12-11T03:36:01.839977"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:36:01.839977"}, "latest_revision": 1, "key": "/works/OL10795888W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4511608A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10795975W 2 2010-01-18T09:40:29.918173 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:36:01.839977"}, "title": "Nova hemiptera faunarum Argentinae et Uruguayensis", "subject_places": ["Argentina", "Uruguay"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T09:40:29.918173"}, "latest_revision": 2, "key": "/works/OL10795975W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4511633A"}}], "type": {"key": "/type/work"}, "subjects": ["Hemiptera"], "revision": 2}
+/type/work /works/OL10796207W 1 2009-12-11T03:36:01.839977 {"title": "Report of the Board", "created": {"type": "/type/datetime", "value": "2009-12-11T03:36:01.839977"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:36:01.839977"}, "latest_revision": 1, "key": "/works/OL10796207W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4511767A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10796222W 1 2009-12-11T03:36:01.839977 {"title": "A post-war plan and program for the United States of America", "created": {"type": "/type/datetime", "value": "2009-12-11T03:36:01.839977"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:36:01.839977"}, "latest_revision": 1, "key": "/works/OL10796222W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4511778A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10796357W 2 2010-01-18T09:40:29.918173 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:36:01.839977"}, "title": "7th European Microwave Conference, Microwave 77", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T09:40:29.918173"}, "latest_revision": 2, "key": "/works/OL10796357W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4511858A"}}], "type": {"key": "/type/work"}, "subjects": ["Microwaves", "Microwave devices"], "revision": 2}
+/type/work /works/OL107964W 4 2022-01-03T04:06:53.171689 {"title": "Isaac T. Hopper: a true life", "covers": [5616115], "subject_places": ["United States"], "key": "/works/OL107964W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL7064671A"}}], "subject_people": ["Isaac Tatem Hopper (1771-1852)", "Isaac T. Hopper (1771-1852)"], "type": {"key": "/type/work"}, "subjects": ["Fugitive slaves"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-10-17T22:32:26.738690"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-03T04:06:53.171689"}}
+/type/work /works/OL10796631W 3 2010-12-06T07:53:53.859504 {"last_modified": {"type": "/type/datetime", "value": "2010-12-06T07:53:53.859504"}, "title": "Clothing as a symbolic indicator of the self", "created": {"type": "/type/datetime", "value": "2009-12-11T03:36:01.839977"}, "subjects": ["Clothing and dress", "Psychological aspects", "Psychological aspects of Clothing and dress"], "latest_revision": 3, "key": "/works/OL10796631W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4512019A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1079677W 2 2010-01-18T09:46:55.068075 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:26:24.810946"}, "title": "Political history of Santal Parganas from 1765 to 1872", "subject_places": ["Santh\u0101l Pargana (India)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T09:46:55.068075"}, "latest_revision": 2, "key": "/works/OL1079677W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL111223A"}}], "type": {"key": "/type/work"}, "subjects": ["History"], "revision": 2}
+/type/work /works/OL1079716W 4 2020-11-23T02:03:59.808333 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:26:24.810946"}, "subjects": ["Catalogs", "Painting, Indic", "Pahari painting", "Indic Painting"], "latest_revision": 4, "description": {"type": "/type/text", "value": "Catalog of paintings."}, "key": "/works/OL1079716W", "title": "Paha\u0304r\u0323i\u0304", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL111236A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-11-23T02:03:59.808333"}, "revision": 4}
+/type/work /works/OL10797260W 2 2010-01-18T09:46:55.068075 {"title": "Young Hearn", "created": {"type": "/type/datetime", "value": "2009-12-11T03:36:07.328318"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-18T09:46:55.068075"}, "latest_revision": 2, "key": "/works/OL10797260W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4512335A"}}], "subject_people": ["Lafcadio Hearn (1850-1904,)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10797326W 1 2009-12-11T03:36:07.328318 {"title": "How to handle cheques", "created": {"type": "/type/datetime", "value": "2009-12-11T03:36:07.328318"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:36:07.328318"}, "latest_revision": 1, "key": "/works/OL10797326W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4512381A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10797535W 1 2009-12-11T03:36:07.328318 {"title": "In the matter of the Charity of Rebecca Clifford, for the wives or widows of poor members of the Corporation of Northampton, in the County of Northampton, founded by will dated 19th January 1719, and in the matter of the Charitable Trusts Acts, 1853 to 1894", "created": {"type": "/type/datetime", "value": "2009-12-11T03:36:07.328318"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:36:07.328318"}, "latest_revision": 1, "key": "/works/OL10797535W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4512440A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10797551W 1 2009-12-11T03:36:07.328318 {"title": "Report of the Charity Commissioners for England and Wales for the year 1987", "created": {"type": "/type/datetime", "value": "2009-12-11T03:36:07.328318"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:36:07.328318"}, "latest_revision": 1, "key": "/works/OL10797551W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4512440A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10797721W 1 2009-12-11T03:36:10.418885 {"title": "Arrangements for the conveyance of motor cars, motor cycles, caravans, etc. by G.W.R. cross channel services and through the Severn Tunnel", "created": {"type": "/type/datetime", "value": "2009-12-11T03:36:10.418885"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:36:10.418885"}, "latest_revision": 1, "key": "/works/OL10797721W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4512502A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10798446W 1 2009-12-11T03:36:10.418885 {"title": "French's", "created": {"type": "/type/datetime", "value": "2009-12-11T03:36:10.418885"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:36:10.418885"}, "latest_revision": 1, "key": "/works/OL10798446W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4512661A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10798876W 1 2009-12-11T03:36:16.143490 {"title": "Minute book of the branch committee, July 1944-March 1945", "created": {"type": "/type/datetime", "value": "2009-12-11T03:36:16.143490"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:36:16.143490"}, "latest_revision": 1, "key": "/works/OL10798876W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4512799A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10799057W 1 2009-12-11T03:36:16.143490 {"title": "Corrosion fatigue", "created": {"type": "/type/datetime", "value": "2009-12-11T03:36:16.143490"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:36:16.143490"}, "latest_revision": 1, "key": "/works/OL10799057W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4512885A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10799480W 1 2009-12-11T03:36:16.143490 {"title": "Nauchnye kadry i nauchno-issledovatel'skie uchrezhdeniya SSSR", "created": {"type": "/type/datetime", "value": "2009-12-11T03:36:16.143490"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:36:16.143490"}, "latest_revision": 1, "key": "/works/OL10799480W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4513088A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10799515W 2 2010-01-18T09:46:55.068075 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:36:16.143490"}, "title": "A simple diagnostic model to determine the feasibility of salinity control of Eurasian watermilfoil", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T09:46:55.068075"}, "latest_revision": 2, "key": "/works/OL10799515W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4513103A"}}], "type": {"key": "/type/work"}, "subjects": ["Control", "Aquatic weeds", "Salinity"], "revision": 2}
+/type/work /works/OL10799837W 2 2012-06-07T23:31:31.747522 {"title": "The soils of the Solomon Islands", "created": {"type": "/type/datetime", "value": "2009-12-11T03:36:21.982130"}, "last_modified": {"type": "/type/datetime", "value": "2012-06-07T23:31:31.747522"}, "latest_revision": 2, "key": "/works/OL10799837W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4512197A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10799964W 2 2010-01-18T09:52:37.029111 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:36:21.982130"}, "title": "Handbuch der Pflanzenkrankheiten. 3., vollst\u00e4ndig neubearb. Aufl", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T09:52:37.029111"}, "latest_revision": 2, "key": "/works/OL10799964W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4513290A"}}], "type": {"key": "/type/work"}, "subjects": ["Plant diseases"], "revision": 2}
+/type/work /works/OL10800980W 1 2009-12-11T03:36:27.497586 {"title": "The quota scheme for the employment of disabled people", "created": {"type": "/type/datetime", "value": "2009-12-11T03:36:27.497586"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:36:27.497586"}, "latest_revision": 1, "key": "/works/OL10800980W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4513748A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1080104W 4 2020-12-05T23:26:21.196782 {"title": "Mran\u02bb ma\u0304\u02b9 rui\u02ba ra\u0304 sarodaya bedan\u0307\u02bb pan\u0303n\u0303a\u0304", "key": "/works/OL1080104W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL111346A"}}], "type": {"key": "/type/work"}, "subjects": ["Astrology, Burmese", "Burmese Astrology"], "description": {"type": "/type/text", "value": "On astrology as practiced in Burma."}, "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-09T20:26:24.810946"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-05T23:26:21.196782"}}
+/type/work /works/OL10801109W 1 2009-12-11T03:36:27.497586 {"title": "PDP8/A miniprocessor handbook", "created": {"type": "/type/datetime", "value": "2009-12-11T03:36:27.497586"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:36:27.497586"}, "latest_revision": 1, "key": "/works/OL10801109W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4513804A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10801671W 2 2010-01-18T09:52:37.029111 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:36:27.497586"}, "title": "Networks and decomposed linear programming for scheduling forest production", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T09:52:37.029111"}, "latest_revision": 2, "key": "/works/OL10801671W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4514059A"}}], "type": {"key": "/type/work"}, "subjects": ["Forest thinning", "Lumbering", "Linear programming"], "revision": 2}
+/type/work /works/OL10801951W 1 2009-12-11T03:36:33.262353 {"title": "Calculus", "created": {"type": "/type/datetime", "value": "2009-12-11T03:36:33.262353"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:36:33.262353"}, "latest_revision": 1, "key": "/works/OL10801951W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4514193A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1080218W 3 2020-12-04T22:05:48.911417 {"title": "N\u0307rim\u02bb\u02ba khyam\u02bb\u02ba ve can\u0303n\u0303\u02bb Ma no mre", "subject_places": ["Burma", "Kachin State (Burma)"], "key": "/works/OL1080218W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL111373A"}}], "subject_times": ["1988-"], "type": {"key": "/type/work"}, "subjects": ["Economic policy", "Economic conditions"], "description": {"type": "/type/text", "value": "On the economic development in Kachin State, Burma."}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-09T20:26:24.810946"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-04T22:05:48.911417"}}
+/type/work /works/OL10802406W 1 2009-12-11T03:36:33.262353 {"title": "Syllabuses for 1998 examinations", "created": {"type": "/type/datetime", "value": "2009-12-11T03:36:33.262353"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:36:33.262353"}, "latest_revision": 1, "key": "/works/OL10802406W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4514415A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10802896W 1 2009-12-11T03:36:38.554120 {"title": "The future of technological higher education in Britain", "created": {"type": "/type/datetime", "value": "2009-12-11T03:36:38.554120"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:36:38.554120"}, "latest_revision": 1, "key": "/works/OL10802896W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4514571A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10803229W 2 2010-12-06T07:55:04.783456 {"last_modified": {"type": "/type/datetime", "value": "2010-12-06T07:55:04.783456"}, "title": "Lower Green - Tettenhall Conservation Area", "created": {"type": "/type/datetime", "value": "2009-12-11T03:36:38.554120"}, "subjects": ["Lower Green [Tettenhall] Conservation Area", "Tettenhall Conservation Area"], "latest_revision": 2, "key": "/works/OL10803229W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4514774A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10803316W 2 2010-01-18T09:58:40.413579 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:36:38.554120"}, "title": "City street needs in Seattle, Spokane, and Tacoma", "subject_places": ["Washington (State)", "Seattle", "Spokane", "Tacoma"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T09:58:40.413579"}, "latest_revision": 2, "key": "/works/OL10803316W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4514802A"}}], "type": {"key": "/type/work"}, "subjects": ["Streets", "Roads"], "revision": 2}
+/type/work /works/OL10803318W 1 2009-12-11T03:36:38.554120 {"title": "Capital Region video catalogue", "created": {"type": "/type/datetime", "value": "2009-12-11T03:36:38.554120"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:36:38.554120"}, "latest_revision": 1, "key": "/works/OL10803318W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4514803A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10803674W 1 2009-12-11T03:36:38.554120 {"title": "Careers education and guidance in Northamptonshire", "created": {"type": "/type/datetime", "value": "2009-12-11T03:36:38.554120"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:36:38.554120"}, "latest_revision": 1, "key": "/works/OL10803674W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4514935A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10803824W 2 2010-01-18T09:58:40.413579 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:36:42.499125"}, "title": "Woodpeckers of the Pacific Northwest", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T09:58:40.413579"}, "latest_revision": 2, "key": "/works/OL10803824W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4514963A"}}], "type": {"key": "/type/work"}, "subjects": ["Woodpeckers"], "revision": 2}
+/type/work /works/OL1080392W 3 2020-11-23T02:50:56.194512 {"description": {"type": "/type/text", "value": "History of Jodhpur (Princely State)."}, "last_modified": {"type": "/type/datetime", "value": "2020-11-23T02:50:56.194512"}, "latest_revision": 3, "key": "/works/OL1080392W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL111433A"}}], "created": {"type": "/type/datetime", "value": "2009-12-09T20:26:56.822984"}, "title": "Ma\u0304ravar\u0325a ka\u0304 itiha\u0304sa", "subject_places": ["Jodhpur (Princely State)"], "subjects": ["History"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10804481W 1 2009-12-11T03:36:42.499125 {"title": "Peripherals", "created": {"type": "/type/datetime", "value": "2009-12-11T03:36:42.499125"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:36:42.499125"}, "latest_revision": 1, "key": "/works/OL10804481W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4515153A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10804635W 1 2009-12-11T03:36:42.499125 {"title": "NCVO annual review 1988-89", "created": {"type": "/type/datetime", "value": "2009-12-11T03:36:42.499125"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:36:42.499125"}, "latest_revision": 1, "key": "/works/OL10804635W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4515186A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10805154W 2 2010-01-18T09:58:40.413579 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:36:48.965562"}, "title": "Verification in all its aspects", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T09:58:40.413579"}, "latest_revision": 2, "key": "/works/OL10805154W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4515392A"}}], "type": {"key": "/type/work"}, "subjects": ["Arms control", "Verification"], "revision": 2}
+/type/work /works/OL10805724W 1 2009-12-11T03:36:48.965562 {"title": "Lectures in heterocyclic chemistry", "created": {"type": "/type/datetime", "value": "2009-12-11T03:36:48.965562"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:36:48.965562"}, "latest_revision": 1, "key": "/works/OL10805724W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4515763A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10805734W 1 2009-12-11T03:36:48.965562 {"title": "The european CMOS selection", "created": {"type": "/type/datetime", "value": "2009-12-11T03:36:48.965562"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:36:48.965562"}, "latest_revision": 1, "key": "/works/OL10805734W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4515772A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10805828W 1 2009-12-11T03:36:53.945679 {"title": "Nationwide Annual Report and Accounts 1997", "created": {"type": "/type/datetime", "value": "2009-12-11T03:36:53.945679"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:36:53.945679"}, "latest_revision": 1, "key": "/works/OL10805828W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4515812A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10806064W 2 2010-01-18T09:58:40.413579 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:36:53.945679"}, "title": "Periodical report", "subject_places": ["Northern Ireland"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T09:58:40.413579"}, "latest_revision": 2, "key": "/works/OL10806064W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4515896A"}}], "type": {"key": "/type/work"}, "subjects": ["Boundaries"], "revision": 2}
+/type/work /works/OL10806225W 1 2009-12-11T03:36:53.945679 {"title": "Ordinary mathematics", "created": {"type": "/type/datetime", "value": "2009-12-11T03:36:53.945679"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:36:53.945679"}, "latest_revision": 1, "key": "/works/OL10806225W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4515954A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10806414W 1 2009-12-11T03:36:53.945679 {"title": "Health care", "created": {"type": "/type/datetime", "value": "2009-12-11T03:36:53.945679"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:36:53.945679"}, "latest_revision": 1, "key": "/works/OL10806414W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4516052A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10806626W 2 2011-01-14T00:45:41.672363 {"subtitle": "national report from the Inspectorate, 2000-01.", "title": "Agriculture in further education", "created": {"type": "/type/datetime", "value": "2009-12-11T03:36:53.945679"}, "last_modified": {"type": "/type/datetime", "value": "2011-01-14T00:45:41.672363"}, "latest_revision": 2, "key": "/works/OL10806626W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4516174A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10806850W 3 2012-07-20T23:02:02.869751 {"subtitle": "report January 1997", "title": "Consultation on draft proposals for baseline assessment", "created": {"type": "/type/datetime", "value": "2009-12-11T03:36:57.650159"}, "last_modified": {"type": "/type/datetime", "value": "2012-07-20T23:02:02.869751"}, "latest_revision": 3, "key": "/works/OL10806850W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL3273199A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10807020W 1 2009-12-11T03:36:57.650159 {"title": "Information on school and college performance 1994", "created": {"type": "/type/datetime", "value": "2009-12-11T03:36:57.650159"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:36:57.650159"}, "latest_revision": 1, "key": "/works/OL10807020W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4516188A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10807022W 1 2009-12-11T03:36:57.650159 {"title": "Introduction to the revised National Curriculum", "created": {"type": "/type/datetime", "value": "2009-12-11T03:36:57.650159"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:36:57.650159"}, "latest_revision": 1, "key": "/works/OL10807022W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4516188A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1080703W 1 2009-12-09T20:03:25.173896 {"title": "Pya\u0304si\u0304 nadi\u0304", "created": {"type": "/type/datetime", "value": "2009-12-09T20:03:25.173896"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T20:03:25.173896"}, "latest_revision": 1, "key": "/works/OL1080703W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL111535A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10807130W 1 2009-12-11T03:36:57.650159 {"title": "Summary of archive collections", "created": {"type": "/type/datetime", "value": "2009-12-11T03:36:57.650159"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:36:57.650159"}, "latest_revision": 1, "key": "/works/OL10807130W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4516194A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10807155W 1 2009-12-11T03:36:57.650159 {"title": "Community health services", "created": {"type": "/type/datetime", "value": "2009-12-11T03:36:57.650159"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:36:57.650159"}, "latest_revision": 1, "key": "/works/OL10807155W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4516198A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10807358W 1 2009-12-11T03:36:57.650159 {"title": "Les villes du Nord Pas de Calais", "created": {"type": "/type/datetime", "value": "2009-12-11T03:36:57.650159"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:36:57.650159"}, "latest_revision": 1, "key": "/works/OL10807358W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4516283A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10807624W 1 2009-12-11T03:36:57.650159 {"title": "Preparing teachers for education for international understanding", "created": {"type": "/type/datetime", "value": "2009-12-11T03:36:57.650159"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:36:57.650159"}, "latest_revision": 1, "key": "/works/OL10807624W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4516390A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10807726W 1 2009-12-11T03:36:57.650159 {"title": "Bulletin no. 3", "created": {"type": "/type/datetime", "value": "2009-12-11T03:36:57.650159"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:36:57.650159"}, "latest_revision": 1, "key": "/works/OL10807726W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4516445A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10808038W 1 2009-12-11T03:37:03.134281 {"title": "The agreed syllabus for religious education in Surrey", "created": {"type": "/type/datetime", "value": "2009-12-11T03:37:03.134281"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:37:03.134281"}, "latest_revision": 1, "key": "/works/OL10808038W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4516597A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10808128W 1 2009-12-11T03:37:03.134281 {"title": "GCF designers contract collection", "created": {"type": "/type/datetime", "value": "2009-12-11T03:37:03.134281"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:37:03.134281"}, "latest_revision": 1, "key": "/works/OL10808128W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4516653A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1080826W 3 2020-12-03T12:10:16.513339 {"title": "N\u0101gadama\u1e47a", "key": "/works/OL1080826W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL111579A"}}], "subject_people": ["S\u0101\u1e43y\u0101j\u012b Jh\u016bl\u0101 (1575-1646)", "S\u0101\u1e43y\u0101j\u012b Jhul\u0101 (1575-1646)"], "type": {"key": "/type/work"}, "subjects": ["Krishna (Hindu deity) in literature", "In literature"], "description": {"type": "/type/text", "value": "Study of Na\u0304gadaman\u0323a, Dingal extended narrative poem on Krishna, Hindu deity."}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-09T20:26:56.822984"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-03T12:10:16.513339"}}
+/type/work /works/OL10808371W 1 2009-12-11T03:37:03.134281 {"title": "Central Scotland, the Trossachs, Loch Lomond and the Fife coast", "created": {"type": "/type/datetime", "value": "2009-12-11T03:37:03.134281"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:37:03.134281"}, "latest_revision": 1, "key": "/works/OL10808371W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4516769A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10808730W 1 2009-12-11T03:37:03.134281 {"title": "Conference, Degradability of Polymers and Plastics, (held) 27 and 28November 1973 (at the) Institutution of Electrical Engineers, London", "created": {"type": "/type/datetime", "value": "2009-12-11T03:37:03.134281"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:37:03.134281"}, "latest_revision": 1, "key": "/works/OL10808730W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4516920A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10809324W 3 2010-03-18T23:18:47.593576 {"subtitle": "the powers and duties of trustees", "created": {"type": "/type/datetime", "value": "2009-12-11T03:37:08.873151"}, "title": "Twenty-third report", "last_modified": {"type": "/type/datetime", "value": "2010-03-18T23:18:47.593576"}, "latest_revision": 3, "key": "/works/OL10809324W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4517192A"}}], "type": {"key": "/type/work"}, "subjects": ["Trusts and trustees"], "revision": 3}
+/type/work /works/OL1080968W 1 2009-12-09T20:03:25.173896 {"title": "Pariccheda", "created": {"type": "/type/datetime", "value": "2009-12-09T20:03:25.173896"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T20:03:25.173896"}, "latest_revision": 1, "key": "/works/OL1080968W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL111642A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10809731W 1 2009-12-11T03:37:08.873151 {"title": "Manual of export promotion techniques", "created": {"type": "/type/datetime", "value": "2009-12-11T03:37:08.873151"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:37:08.873151"}, "latest_revision": 1, "key": "/works/OL10809731W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4517394A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10809916W 2 2010-01-18T10:04:27.318399 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:37:14.263647"}, "title": "The Durham book", "subject_places": ["Durham County"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T10:04:27.318399"}, "latest_revision": 2, "key": "/works/OL10809916W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4517483A"}}], "type": {"key": "/type/work"}, "subjects": ["Description and travel", "Views"], "revision": 2}
+/type/work /works/OL10809952W 1 2009-12-11T03:37:14.263647 {"title": "Child abuse procedures", "created": {"type": "/type/datetime", "value": "2009-12-11T03:37:14.263647"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:37:14.263647"}, "latest_revision": 1, "key": "/works/OL10809952W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4517495A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10810140W 1 2009-12-11T03:37:14.263647 {"title": "Skill shortages in the Dudley/Sandwell area", "created": {"type": "/type/datetime", "value": "2009-12-11T03:37:14.263647"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:37:14.263647"}, "latest_revision": 1, "key": "/works/OL10810140W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4517600A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10810318W 1 2009-12-11T03:37:14.263647 {"title": "A Derbyshire approach to Primary Science for 5-11 year olds", "created": {"type": "/type/datetime", "value": "2009-12-11T03:37:14.263647"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:37:14.263647"}, "latest_revision": 1, "key": "/works/OL10810318W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4517695A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10810340W 2 2010-01-18T10:04:27.318399 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:37:14.263647"}, "title": "Slovar' russkogo i \u0141azyka", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T10:04:27.318399"}, "latest_revision": 2, "key": "/works/OL10810340W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4517704A"}}], "type": {"key": "/type/work"}, "subjects": ["Russian language", "Dictionaries"], "revision": 2}
+/type/work /works/OL10810351W 1 2009-12-11T03:37:14.263647 {"title": "Going for health", "created": {"type": "/type/datetime", "value": "2009-12-11T03:37:14.263647"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:37:14.263647"}, "latest_revision": 1, "key": "/works/OL10810351W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4517713A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10810406W 1 2009-12-11T03:37:14.263647 {"title": "The banks and small firms", "created": {"type": "/type/datetime", "value": "2009-12-11T03:37:14.263647"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:37:14.263647"}, "latest_revision": 1, "key": "/works/OL10810406W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4517738A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10810493W 1 2009-12-11T03:37:14.263647 {"title": "Developments in data capture and photo composition", "created": {"type": "/type/datetime", "value": "2009-12-11T03:37:14.263647"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:37:14.263647"}, "latest_revision": 1, "key": "/works/OL10810493W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4517770A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10810561W 1 2009-12-11T03:37:14.263647 {"title": "Government response to the ninth report of The Committee", "created": {"type": "/type/datetime", "value": "2009-12-11T03:37:14.263647"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:37:14.263647"}, "latest_revision": 1, "key": "/works/OL10810561W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4517781A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1081069W 3 2020-12-03T12:11:25.718779 {"title": "Hindi\u0304 upanya\u0304sa", "subject_places": ["Punjab (India)", "Punjab", "India"], "key": "/works/OL1081069W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL111672A"}}], "subject_times": ["20th century"], "type": {"key": "/type/work"}, "subjects": ["Hindi fiction", "History and criticism", "In literature"], "description": {"type": "/type/text", "value": "Depiction of the culture of Punjab, India in the novels of 20th century Hindi authors from Punjab, India; a study."}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-09T20:26:56.822984"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-03T12:11:25.718779"}}
+/type/work /works/OL10810786W 1 2009-12-11T03:37:20.534323 {"title": "Proceedings of the eigth international vacuum congress", "created": {"type": "/type/datetime", "value": "2009-12-11T03:37:20.534323"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:37:20.534323"}, "latest_revision": 1, "key": "/works/OL10810786W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4517870A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10810889W 1 2009-12-11T03:37:20.534323 {"title": "Sandwich courses at Aston ", "created": {"type": "/type/datetime", "value": "2009-12-11T03:37:20.534323"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:37:20.534323"}, "latest_revision": 1, "key": "/works/OL10810889W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4517937A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10810894W 1 2009-12-11T03:37:20.534323 {"title": "AIDS report", "created": {"type": "/type/datetime", "value": "2009-12-11T03:37:20.534323"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:37:20.534323"}, "latest_revision": 1, "key": "/works/OL10810894W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4517941A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10811031W 1 2009-12-11T03:37:20.534323 {"title": "Minutes of proceedings", "created": {"type": "/type/datetime", "value": "2009-12-11T03:37:20.534323"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:37:20.534323"}, "latest_revision": 1, "key": "/works/OL10811031W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4517975A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10811080W 1 2009-12-11T03:37:20.534323 {"title": "Renewable Energy", "created": {"type": "/type/datetime", "value": "2009-12-11T03:37:20.534323"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:37:20.534323"}, "latest_revision": 1, "key": "/works/OL10811080W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4517975A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10811354W 1 2009-12-11T03:37:20.534323 {"title": "Twenty first annual symposium proceedings", "created": {"type": "/type/datetime", "value": "2009-12-11T03:37:20.534323"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:37:20.534323"}, "latest_revision": 1, "key": "/works/OL10811354W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4518112A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10811376W 1 2009-12-11T03:37:20.534323 {"title": "A guide to the design of learning packages", "created": {"type": "/type/datetime", "value": "2009-12-11T03:37:20.534323"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:37:20.534323"}, "latest_revision": 1, "key": "/works/OL10811376W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4518121A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10811386W 1 2009-12-11T03:37:20.534323 {"title": "Progress report for the period 1985-1989", "created": {"type": "/type/datetime", "value": "2009-12-11T03:37:20.534323"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:37:20.534323"}, "latest_revision": 1, "key": "/works/OL10811386W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4518126A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10811513W 2 2010-01-18T10:04:27.318399 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:37:20.534323"}, "title": "Seasonal patterns of apparent photosynthesis in Pseudotsuga menziesii (Mirb.) Franco in relation to environment and silvicultural treatment", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T10:04:27.318399"}, "latest_revision": 2, "key": "/works/OL10811513W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4518180A"}}], "type": {"key": "/type/work"}, "subjects": ["Photosynthesis", "Douglas fir"], "revision": 2}
+/type/work /works/OL10812137W 1 2009-12-11T03:37:26.041932 {"title": "Trynatstsataya sesiya Vyarkhownaha Saveta Belaruskai SSR9-aha sklikannya, 13-14 snezhnya 1979 hoda", "created": {"type": "/type/datetime", "value": "2009-12-11T03:37:26.041932"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:37:26.041932"}, "latest_revision": 1, "key": "/works/OL10812137W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4518537A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10812288W 1 2009-12-11T03:37:26.041932 {"title": "Capolavori d'arte Lombarda", "created": {"type": "/type/datetime", "value": "2009-12-11T03:37:26.041932"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:37:26.041932"}, "latest_revision": 1, "key": "/works/OL10812288W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4518620A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10812928W 1 2009-12-11T03:37:33.604523 {"title": "A certain young widow", "created": {"type": "/type/datetime", "value": "2009-12-11T03:37:33.604523"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:37:33.604523"}, "latest_revision": 1, "key": "/works/OL10812928W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4518894A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10812989W 1 2009-12-11T03:37:33.604523 {"title": "Re gionalisation et de veloppement", "created": {"type": "/type/datetime", "value": "2009-12-11T03:37:33.604523"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:37:33.604523"}, "latest_revision": 1, "key": "/works/OL10812989W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4518929A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10813287W 1 2009-12-11T03:37:33.604523 {"title": "Austin Eight saloon and van series A.S.I. & A.V.I", "created": {"type": "/type/datetime", "value": "2009-12-11T03:37:33.604523"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:37:33.604523"}, "latest_revision": 1, "key": "/works/OL10813287W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4519131A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10813783W 1 2009-12-11T03:37:40.649758 {"title": "Proceedings of the III World Congress on Antisepsis", "created": {"type": "/type/datetime", "value": "2009-12-11T03:37:40.649758"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:37:40.649758"}, "latest_revision": 1, "key": "/works/OL10813783W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4519431A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10813797W 2 2010-01-18T10:10:08.704298 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:37:40.649758"}, "title": "Proceedings, Solar Sea Power Plant Conference and Workshop", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T10:10:08.704298"}, "latest_revision": 2, "key": "/works/OL10813797W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4519441A"}}], "type": {"key": "/type/work"}, "subjects": ["Ocean thermal power plants", "Congresses"], "revision": 2}
+/type/work /works/OL10814239W 1 2009-12-11T03:37:40.649758 {"title": "Function and importance of communal space", "created": {"type": "/type/datetime", "value": "2009-12-11T03:37:40.649758"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:37:40.649758"}, "latest_revision": 1, "key": "/works/OL10814239W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4519715A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10814525W 2 2010-12-03T17:42:31.279550 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T17:42:31.279550"}, "title": "Underground official handbook", "created": {"type": "/type/datetime", "value": "2009-12-11T03:37:40.649758"}, "subjects": ["London Underground Limited"], "latest_revision": 2, "key": "/works/OL10814525W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4519895A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10814557W 2 2010-12-06T07:56:06.123874 {"last_modified": {"type": "/type/datetime", "value": "2010-12-06T07:56:06.123874"}, "title": "P.E.L. architecture 1991", "created": {"type": "/type/datetime", "value": "2009-12-11T03:37:40.649758"}, "subjects": ["Polytechnic of East London", "Polytechnic of East London. Department of Architecture"], "latest_revision": 2, "key": "/works/OL10814557W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4519917A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10815188W 2 2010-01-18T10:10:08.704298 {"title": "Copy of the address left with His Excellency, Gov. Tryon, the 3d of July, 1775, by the Worshipful Whitehead Hicks. Esq; mayor of the city of New-York", "created": {"type": "/type/datetime", "value": "2009-12-11T03:37:47.115718"}, "subject_places": ["Great Britain", "New York (State)", "America"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T10:10:08.704298"}, "latest_revision": 2, "key": "/works/OL10815188W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4520250A"}}], "subject_people": ["William Tryon (1729-1788)"], "subject_times": ["Revolution, 1775-1783"], "type": {"key": "/type/work"}, "subjects": ["Politics and government", "Colonies"], "revision": 2}
+/type/work /works/OL10815280W 2 2010-12-06T07:55:45.634977 {"last_modified": {"type": "/type/datetime", "value": "2010-12-06T07:55:45.634977"}, "title": "Annual report of the Academic Council", "created": {"type": "/type/datetime", "value": "2009-12-11T03:37:47.115718"}, "subjects": ["Thames Polytechnic"], "latest_revision": 2, "key": "/works/OL10815280W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4520310A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10815523W 2 2010-01-18T10:10:08.704298 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:37:47.115718"}, "title": "Table of the reciprocal of the gamma function for complex argument", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T10:10:08.704298"}, "latest_revision": 2, "key": "/works/OL10815523W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4520472A"}}], "type": {"key": "/type/work"}, "subjects": ["Tables", "Gamma functions", "Mathematics"], "revision": 2}
+/type/work /works/OL10815679W 1 2009-12-11T03:37:47.115718 {"title": "A new survey of the BBC experimentalcolour transmissions", "created": {"type": "/type/datetime", "value": "2009-12-11T03:37:47.115718"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:37:47.115718"}, "latest_revision": 1, "key": "/works/OL10815679W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4520581A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10815784W 1 2009-12-11T03:37:53.498556 {"title": "Record of the tenth Intersociety Energy Conversion Engineering Conference, John Clayton Conference Center, University of Delaware, Newark, Delaware, August 18-22, 1975", "created": {"type": "/type/datetime", "value": "2009-12-11T03:37:53.498556"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:37:53.498556"}, "latest_revision": 1, "key": "/works/OL10815784W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4520637A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1081582W 3 2010-04-28T07:15:43.867005 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:27:25.905327"}, "title": "The True conception of the Ahmadiyya movement", "covers": [1666348], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:15:43.867005"}, "latest_revision": 3, "key": "/works/OL1081582W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL111872A"}}], "subject_people": ["Ghulam Ahmad (1839?-1908)"], "type": {"key": "/type/work"}, "subjects": ["Ahmadiyya"], "revision": 3}
+/type/work /works/OL1081584W 3 2010-04-28T07:15:43.867005 {"title": "History and doctrines of the Babi movement", "created": {"type": "/type/datetime", "value": "2009-12-09T20:27:25.905327"}, "covers": [1666350], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:15:43.867005"}, "latest_revision": 3, "key": "/works/OL1081584W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL111872A"}}], "subjects": ["Controversial literature", "Babism", "Bahai Faith"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10816778W 3 2010-12-03T14:39:00.243747 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:37:54.505126"}, "subject_places": ["United States"], "subjects": ["Antitrust law", "Bowl Championship Series", "College sports", "Competition", "Football"], "latest_revision": 3, "key": "/works/OL10816778W", "title": "BCS or bust", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4521082A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:39:00.243747"}, "revision": 3}
+/type/work /works/OL10816875W 2 2010-01-18T10:15:08.096439 {"title": "Communist infiltration in the nuclear test ban movement", "created": {"type": "/type/datetime", "value": "2009-12-11T03:37:54.505126"}, "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T10:15:08.096439"}, "latest_revision": 2, "key": "/works/OL10816875W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4521082A"}}], "subject_people": ["Henry H Abrams"], "subject_times": ["1917-"], "type": {"key": "/type/work"}, "subjects": ["Nuclear disarmament", "Communism"], "revision": 2}
+/type/work /works/OL10816941W 2 2010-01-18T10:15:08.096439 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:37:54.505126"}, "title": "Control of travel from and into the United States", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T10:15:08.096439"}, "latest_revision": 2, "key": "/works/OL10816941W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4521082A"}}], "type": {"key": "/type/work"}, "subjects": ["World War, 1914-1918", "Travel"], "revision": 2}
+/type/work /works/OL10817162W 2 2010-12-06T07:58:38.300155 {"last_modified": {"type": "/type/datetime", "value": "2010-12-06T07:58:38.300155"}, "title": "Granting a federal charter to Italian-American War Veterans of the United States (Inc.)", "created": {"type": "/type/datetime", "value": "2009-12-11T03:37:54.505126"}, "subjects": ["Incorporated Italian American War Veterans of the United States"], "latest_revision": 2, "key": "/works/OL10817162W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4521082A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10817347W 2 2010-01-18T10:20:38.760922 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:37:54.505126"}, "title": "The Local Law Enforcement Enhancement Act of 2001", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T10:20:38.760922"}, "latest_revision": 2, "key": "/works/OL10817347W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4521082A"}}], "type": {"key": "/type/work"}, "subjects": ["Hate crime investigation", "Hate crimes", "Crime prevention"], "revision": 2}
+/type/work /works/OL1081752W 2 2020-11-27T10:01:55.762154 {"description": {"type": "/type/text", "value": "Stories based on Hindu mythology."}, "title": "Paura\u0304n\u0323ika premakatha\u0304", "created": {"type": "/type/datetime", "value": "2009-12-09T20:27:25.905327"}, "last_modified": {"type": "/type/datetime", "value": "2020-11-27T10:01:55.762154"}, "latest_revision": 2, "key": "/works/OL1081752W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL111920A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10817947W 2 2010-01-18T10:20:38.760922 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:37:55.639181"}, "title": "To expedite the construction of public buildings and works outside of the District of Columbia", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T10:20:38.760922"}, "latest_revision": 2, "key": "/works/OL10817947W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4521082A"}}], "type": {"key": "/type/work"}, "subjects": ["Public buildings"], "revision": 2}
+/type/work /works/OL10818056W 2 2010-01-18T10:20:38.760922 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:37:55.639181"}, "title": "Waiver of prosecution by indictment", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T10:20:38.760922"}, "latest_revision": 2, "key": "/works/OL10818056W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4521082A"}}], "type": {"key": "/type/work"}, "subjects": ["Criminal procedure", "Justice, Administration of", "Crime"], "revision": 2}
+/type/work /works/OL10818229W 2 2010-01-18T10:25:34.131926 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:37:55.639181"}, "title": "Women and violence", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T10:25:34.131926"}, "latest_revision": 2, "key": "/works/OL10818229W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4521082A"}}], "type": {"key": "/type/work"}, "subjects": ["Violence", "Crimes against", "Women"], "revision": 2}
+/type/work /works/OL10818248W 2 2010-01-18T10:25:34.131926 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:37:55.639181"}, "title": "Southeast interstate low-level radioactive waste management compact", "subject_places": ["Southeastern States", "Southern States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T10:25:34.131926"}, "latest_revision": 2, "key": "/works/OL10818248W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4521082A"}}], "type": {"key": "/type/work"}, "subjects": ["Radioactive waste disposal", "Interstate agreements"], "revision": 2}
+/type/work /works/OL10818290W 4 2017-12-20T05:50:50.516894 {"subtitle": "Allegheny National Wild and Scenic River, Pennsylvania", "last_modified": {"type": "/type/datetime", "value": "2017-12-20T05:50:50.516894"}, "latest_revision": 4, "key": "/works/OL10818290W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL155234A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T03:37:55.639181"}, "title": "Draft river management plan", "subject_places": ["Pennsylvania", "Allegheny National Forest", "Allegheny River (Pa. and N.Y.)"], "subjects": ["Watershed management", "Wild and scenic rivers"], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL10818500W 5 2020-08-04T11:56:52.676879 {"last_modified": {"type": "/type/datetime", "value": "2020-08-04T11:56:52.676879"}, "title": "Catalog of civilian training programs centrally administered by Headquarters, Department of the Army, Civilian Personnel Center (CIVPERCEN)", "created": {"type": "/type/datetime", "value": "2009-12-11T03:37:55.639181"}, "subjects": ["Officials and employees", "United States", "United States. Army"], "latest_revision": 5, "key": "/works/OL10818500W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2626579A"}}], "type": {"key": "/type/work"}, "revision": 5}
+/type/work /works/OL10819845W 3 2010-11-23T07:15:33.559086 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:37:58.692812"}, "subject_places": ["Washington (State)", "Dungeness National Wildlife Refuge (Wash.)"], "subjects": ["Management", "Washington (State)", "Wildlife conservation", "Wildlife refuges", "Environmental aspects", "Public use", "Environmental conditions", "National parks and reserves"], "latest_revision": 3, "key": "/works/OL10819845W", "title": "Management of public use for Dungeness National Wildlife Refuge", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL157521A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-11-23T07:15:33.559086"}, "revision": 3}
+/type/work /works/OL10819971W 3 2012-05-18T21:55:40.305102 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:37:58.692812"}, "subject_places": ["United States"], "subjects": ["Bus lanes", "Technological innovations", "Local transit", "Buses"], "latest_revision": 3, "key": "/works/OL10819971W", "title": "Bus rapid transit and other bus service innovations", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL47444A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-18T21:55:40.305102"}, "revision": 3}
+/type/work /works/OL10820008W 4 2012-05-18T21:55:40.305102 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:37:58.692812"}, "subject_places": ["United States"], "subjects": ["Banks and banking, International", "Export credit", "Export-Import Bank of the United States", "International Banks and banking"], "latest_revision": 4, "key": "/works/OL10820008W", "title": "Export-Import Bank Act amendments of 1986", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL47444A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-18T21:55:40.305102"}, "revision": 4}
+/type/work /works/OL10820069W 3 2012-05-18T21:55:40.305102 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:37:58.692812"}, "subject_places": ["Iran", "United States"], "subjects": ["Foreign economic relations", "Petroleum engineering", "Oil fields", "Economic sanctions"], "latest_revision": 3, "key": "/works/OL10820069W", "title": "Iran Oil Sanctions Act of 1995", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL47444A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-18T21:55:40.305102"}, "revision": 3}
+/type/work /works/OL10820181W 3 2012-05-18T21:55:40.305102 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:37:58.692812"}, "subject_places": ["United States"], "subjects": ["Monetary policy"], "latest_revision": 3, "key": "/works/OL10820181W", "title": "Second monetary policy report for 1983 from the Committee on Banking, Housing, and Urban Affairs, United States Senate, Ninety-eighth Congress, first session", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL47444A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-18T21:55:40.305102"}, "revision": 3}
+/type/work /works/OL1082027W 1 2009-12-09T20:03:53.310976 {"title": "V\u00e3\u015b\u0101c\u0101 Vy\u0101sa", "created": {"type": "/type/datetime", "value": "2009-12-09T20:03:53.310976"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T20:03:53.310976"}, "latest_revision": 1, "key": "/works/OL1082027W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL112012A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10820354W 4 2012-05-03T17:20:32.609698 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:37:58.692812"}, "subject_places": ["United States"], "subjects": ["Rural electrification", "United States", "United States. Dept. of the Interior", "United States. Rural Electrification Administration"], "latest_revision": 4, "key": "/works/OL10820354W", "title": "Effect of administrative acts and policies of Department of Interior and Rural Electrificaton Administration on rural electric cooperatives, public bodies, and municipal electrics", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL187348A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-03T17:20:32.609698"}, "revision": 4}
+/type/work /works/OL10820727W 2 2010-01-18T10:35:18.290087 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:37:58.692812"}, "title": "U.S. policies in Southeast Asia", "subject_places": ["United States", "Southeast Asia"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T10:35:18.290087"}, "latest_revision": 2, "key": "/works/OL10820727W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4521176A"}}], "type": {"key": "/type/work"}, "subjects": ["Foreign relations"], "revision": 2}
+/type/work /works/OL10820756W 3 2012-05-17T22:43:21.477332 {"last_modified": {"type": "/type/datetime", "value": "2012-05-17T22:43:21.477332"}, "title": "Medical ethics", "created": {"type": "/type/datetime", "value": "2009-12-11T03:38:01.004086"}, "subjects": ["Medical ethics", "Death"], "latest_revision": 3, "key": "/works/OL10820756W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL172900A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10820977W 3 2021-08-28T18:27:19.129053 {"title": "Southeast Asian American food habits", "subject_places": ["United States"], "key": "/works/OL10820977W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4521216A"}}], "type": {"key": "/type/work"}, "subjects": ["Asian Americans", "Food habits", "Food"], "covers": [11841542], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T03:38:01.004086"}, "last_modified": {"type": "/type/datetime", "value": "2021-08-28T18:27:19.129053"}}
+/type/work /works/OL10821075W 4 2012-05-17T17:19:13.379078 {"last_modified": {"type": "/type/datetime", "value": "2012-05-17T17:19:13.379078"}, "title": "NOAA coral reef initiative", "created": {"type": "/type/datetime", "value": "2009-12-11T03:38:01.004086"}, "subjects": ["Coral reef ecology", "Endangered species", "Protection", "United States", "United States. National Oceanic and Atmospheric Administration"], "latest_revision": 4, "key": "/works/OL10821075W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1596769A"}}], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL10821347W 2 2010-01-18T10:41:24.221445 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:01.004086"}, "title": "Hospital occupational health services study", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T10:41:24.221445"}, "latest_revision": 2, "key": "/works/OL10821347W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4521265A"}}], "type": {"key": "/type/work"}, "subjects": ["Hospitals", "Employees", "Health and hygiene", "Industrial hygiene", "Safety measures"], "revision": 2}
+/type/work /works/OL1082157W 1 2009-12-09T20:03:53.310976 {"title": "Prati\u0304ti\u0304", "created": {"type": "/type/datetime", "value": "2009-12-09T20:03:53.310976"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T20:03:53.310976"}, "latest_revision": 1, "key": "/works/OL1082157W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL112073A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10821714W 2 2010-01-18T10:41:24.221445 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:01.004086"}, "title": "Board of local inspectors, Steamboat-Inspection Service, Los Angeles, Cal", "subject_places": ["California"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T10:41:24.221445"}, "latest_revision": 2, "key": "/works/OL10821714W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4521280A"}}], "type": {"key": "/type/work"}, "subjects": ["Ships", "Steamboats"], "revision": 2}
+/type/work /works/OL10821800W 2 2010-01-18T10:41:24.221445 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:02.228252"}, "title": "Bridge across Columbia River at Cathlamet, Wash", "subject_places": ["Columbia River", "Washington (State)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T10:41:24.221445"}, "latest_revision": 2, "key": "/works/OL10821800W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4521280A"}}], "type": {"key": "/type/work"}, "subjects": ["Bridges"], "revision": 2}
+/type/work /works/OL10821951W 2 2010-01-18T10:41:24.221445 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:02.228252"}, "title": "Bridge across Lumber River", "subject_places": ["Marion County (S.C.)", "Lumber River (N.C. and S.C.)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T10:41:24.221445"}, "latest_revision": 2, "key": "/works/OL10821951W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4521280A"}}], "type": {"key": "/type/work"}, "subjects": ["Bridges"], "revision": 2}
+/type/work /works/OL10822117W 2 2010-01-18T10:46:21.076666 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:02.228252"}, "title": "Bridge across Red River near Garland, Ark", "subject_places": ["Arkansas"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T10:46:21.076666"}, "latest_revision": 2, "key": "/works/OL10822117W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4521280A"}}], "type": {"key": "/type/work"}, "subjects": ["Bridges"], "revision": 2}
+/type/work /works/OL10822154W 2 2010-01-18T10:46:21.076666 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:02.228252"}, "title": "Bridge across Saline River, Arkansas", "subject_places": ["Bradley County (Ark.)", "Arkansas"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T10:46:21.076666"}, "latest_revision": 2, "key": "/works/OL10822154W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4521280A"}}], "type": {"key": "/type/work"}, "subjects": ["Bridges"], "revision": 2}
+/type/work /works/OL10822169W 2 2010-01-18T10:46:21.076666 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:02.228252"}, "title": "Bridge across Second Creek, Lauderdale County, Ala", "subject_places": ["Alabama", "Lauderdale County (Ala.)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T10:46:21.076666"}, "latest_revision": 2, "key": "/works/OL10822169W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4521280A"}}], "type": {"key": "/type/work"}, "subjects": ["Bridges"], "revision": 2}
+/type/work /works/OL10822321W 2 2010-01-18T10:46:21.076666 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:02.228252"}, "title": "Bridge across the Connecticut River at Turners Falls. Mass", "subject_places": ["Turners Falls (Mass.)", "Connecticut River"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T10:46:21.076666"}, "latest_revision": 2, "key": "/works/OL10822321W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4521280A"}}], "type": {"key": "/type/work"}, "subjects": ["Bridges"], "revision": 2}
+/type/work /works/OL10822569W 2 2010-01-18T10:46:21.076666 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:02.228252"}, "title": "Bridge across the Tennessee River on the Waverly-Camden Road", "subject_places": ["Tennessee River", "Waverly (Tenn.)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T10:46:21.076666"}, "latest_revision": 2, "key": "/works/OL10822569W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4521280A"}}], "type": {"key": "/type/work"}, "subjects": ["Bridges"], "revision": 2}
+/type/work /works/OL10822766W 2 2010-01-18T10:46:21.076666 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:03.375778"}, "title": "Bridges in the State of Maryland", "subject_places": ["Maryland"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T10:46:21.076666"}, "latest_revision": 2, "key": "/works/OL10822766W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4521280A"}}], "type": {"key": "/type/work"}, "subjects": ["Bridges"], "revision": 2}
+/type/work /works/OL1082297W 3 2010-04-28T07:15:43.867005 {"title": "Mastery of Fate", "created": {"type": "/type/datetime", "value": "2009-12-09T20:27:25.905327"}, "covers": [1447319], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:15:43.867005"}, "latest_revision": 3, "key": "/works/OL1082297W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL112112A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10823546W 2 2010-01-18T10:51:50.060117 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:03.375778"}, "title": "Lights at mouths of Warroad and Rainy Rivers, Minnesota", "subject_places": ["Minnesota", "Warroad (Minn.)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T10:51:50.060117"}, "latest_revision": 2, "key": "/works/OL10823546W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4521280A"}}], "type": {"key": "/type/work"}, "subjects": ["Lighthouses"], "revision": 2}
+/type/work /works/OL10824177W 2 2010-01-18T10:56:51.073678 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:04.657532"}, "title": "To extend time for completion of bridge across the Hudson River, N. Y", "subject_places": ["New York (State)", "Hudson River (N.Y. and N.J.)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T10:56:51.073678"}, "latest_revision": 2, "key": "/works/OL10824177W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4521280A"}}], "type": {"key": "/type/work"}, "subjects": ["Bridges"], "revision": 2}
+/type/work /works/OL10824257W 2 2010-01-18T10:56:51.073678 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:04.657532"}, "title": "Tunnel under Lake Erie and Niagara River, etc", "subject_places": ["Niagara River (N.Y. and Ont.)", "Buffalo (N.Y.)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T10:56:51.073678"}, "latest_revision": 2, "key": "/works/OL10824257W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4521280A"}}], "type": {"key": "/type/work"}, "subjects": ["Tunnels"], "revision": 2}
+/type/work /works/OL10824290W 2 2010-01-18T10:56:51.073678 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:04.657532"}, "title": "Yacht Andrea", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T10:56:51.073678"}, "latest_revision": 2, "key": "/works/OL10824290W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4521280A"}}], "type": {"key": "/type/work"}, "subjects": ["Boats and boating", "Claims"], "revision": 2}
+/type/work /works/OL10824597W 2 2010-01-18T10:56:51.073678 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:04.657532"}, "title": "Recommendations of Trans-Mississippi Commercial Congress. Letter from the Trans-Mississippi Commercial Congress transmitting recommendations to Congress adopted at its eighteenth annual session", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T10:56:51.073678"}, "latest_revision": 2, "key": "/works/OL10824597W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4521280A"}}], "type": {"key": "/type/work"}, "subjects": ["Rivers"], "revision": 2}
+/type/work /works/OL10825187W 3 2012-05-17T17:17:53.334290 {"last_modified": {"type": "/type/datetime", "value": "2012-05-17T17:17:53.334290"}, "title": "Owlie skywarn", "created": {"type": "/type/datetime", "value": "2009-12-11T03:38:06.553621"}, "subjects": ["Posters", "Safety measures", "Lightning"], "latest_revision": 3, "key": "/works/OL10825187W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL199947A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10825189W 3 2012-05-17T17:17:53.334290 {"last_modified": {"type": "/type/datetime", "value": "2012-05-17T17:17:53.334290"}, "title": "Riding out winter storms", "created": {"type": "/type/datetime", "value": "2009-12-11T03:38:06.553621"}, "subjects": ["Winter storms"], "latest_revision": 3, "key": "/works/OL10825189W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL199947A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10825218W 4 2020-10-14T17:54:27.140756 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:06.553621"}, "subject_places": ["United States"], "subjects": ["Layoff systems", "Employment", "Minorities", "Discrimination in employment"], "latest_revision": 4, "key": "/works/OL10825218W", "title": "Last hired, first fired", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL198575A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-10-14T17:54:27.140756"}, "revision": 4}
+/type/work /works/OL10825231W 4 2011-12-21T19:25:21.840784 {"subtitle": "is the ADA accommodating all?", "last_modified": {"type": "/type/datetime", "value": "2011-12-21T19:25:21.840784"}, "latest_revision": 4, "key": "/works/OL10825231W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL198575A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T03:38:06.553621"}, "title": "Sharing the dream", "subject_places": ["United States"], "subjects": ["People with disabilities", "Civil rights", "Law and legislation", "Discrimination against people with disabilities", "Legal status, laws"], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL10825613W 3 2012-05-10T11:46:32.232890 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:06.553621"}, "subject_places": ["United States"], "subjects": ["Persian Gulf War, 1991", "Law and legislation", "Pay, allowances", "Armed Forces"], "latest_revision": 3, "key": "/works/OL10825613W", "title": "Hostile fire and imminent danger pay for members of the armed forces", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL51762A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-10T11:46:32.232890"}, "revision": 3}
+/type/work /works/OL10825725W 3 2012-05-10T11:46:32.232890 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:06.553621"}, "subject_places": ["United States"], "subjects": ["Physicians", "Dentists", "Draft"], "latest_revision": 3, "key": "/works/OL10825725W", "title": "Registration and induction of physicians, dentists and allied specialists", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL51762A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-10T11:46:32.232890"}, "revision": 3}
+/type/work /works/OL1082582W 1 2009-12-09T20:04:19.972604 {"title": "En\u0323u ten\u0323u", "created": {"type": "/type/datetime", "value": "2009-12-09T20:04:19.972604"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T20:04:19.972604"}, "latest_revision": 1, "key": "/works/OL1082582W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL112195A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10826067W 2 2010-01-18T11:07:56.281816 {"title": "Civil service nomination", "created": {"type": "/type/datetime", "value": "2009-12-11T03:38:08.568901"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-18T11:07:56.281816"}, "latest_revision": 2, "key": "/works/OL10826067W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4521415A"}}], "subject_people": ["Robert E. Hampton (1922-)", "John W. Macy (1917-)", "Lud J. Andolsek (1910-)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10826217W 2 2010-01-18T11:07:56.281816 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:08.568901"}, "title": "Alternative education options", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T11:07:56.281816"}, "latest_revision": 2, "key": "/works/OL10826217W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4521449A"}}], "type": {"key": "/type/work"}, "subjects": ["Non-formal education"], "revision": 2}
+/type/work /works/OL10826253W 3 2012-05-17T21:17:47.584629 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:08.568901"}, "subject_places": ["United States"], "subjects": ["Judicial statistics"], "latest_revision": 3, "key": "/works/OL10826253W", "title": "State court caseload statistics", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1746440A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-17T21:17:47.584629"}, "revision": 3}
+/type/work /works/OL10826576W 2 2010-01-18T11:07:56.281816 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:08.568901"}, "title": "Authorizing acceptance of certain decorations from Danish and French Governments", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T11:07:56.281816"}, "latest_revision": 2, "key": "/works/OL10826576W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4521469A"}}], "type": {"key": "/type/work"}, "subjects": ["Bills, Private", "Private bills", "Claims"], "revision": 2}
+/type/work /works/OL10826885W 2 2010-03-18T10:48:56.266068 {"subtitle": "hearings before a subcommittee of the Committee on Foreign Relations, United States Senate, Eighty-first Congress, first session, on the ratification by the United States Government of the International convention for the northwest Atlantic fisheries signed at Washington February 8, 1949 (Executive N) Convention with Mexico for the establishment of an International Commission for the Scientific Investigation of Tuna, signed at Mexico City, January 25, 1949 (Executive K) Convention for the establishment of an Inter-American Tuna Commission, signed at Washington, May 31, 1949 (Executive P) July 14, 1949", "title": "The fisheries conventions", "created": {"type": "/type/datetime", "value": "2009-12-11T03:38:09.573805"}, "last_modified": {"type": "/type/datetime", "value": "2010-03-18T10:48:56.266068"}, "latest_revision": 2, "key": "/works/OL10826885W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4521469A"}}], "type": {"key": "/type/work"}, "subjects": ["International Commission for the Scientific Investigation of Tuna", "Inter-American Tropical Tuna Commission"], "revision": 2}
+/type/work /works/OL10827369W 2 2010-01-18T11:13:17.416657 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:09.573805"}, "title": "Reciprocity with Cuba", "subject_places": ["Cuba"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T11:13:17.416657"}, "latest_revision": 2, "key": "/works/OL10827369W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4521469A"}}], "type": {"key": "/type/work"}, "subjects": ["International relations"], "revision": 2}
+/type/work /works/OL10827439W 3 2010-03-18T10:50:58.593043 {"subtitle": "hearings before the Committee on Foreign Relations, United States Senate, Ninety-sixth Congress, first session, on S. 2012 to amend the Foreign assistance act of 1961 to authorize assistance in support of peaceful and democratic processes of development in Central America ... December 6 and 7, 1979", "created": {"type": "/type/datetime", "value": "2009-12-11T03:38:09.573805"}, "title": "S. 2012", "subject_places": ["Central America", "Caribbean area", "Nicaragua"], "last_modified": {"type": "/type/datetime", "value": "2010-03-18T10:50:58.593043"}, "latest_revision": 3, "key": "/works/OL10827439W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4521469A"}}], "type": {"key": "/type/work"}, "subjects": ["American Economic assistance"], "revision": 3}
+/type/work /works/OL10827750W 2 2010-01-18T11:13:17.416657 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:09.573805"}, "title": "Margaret Diederich", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T11:13:17.416657"}, "latest_revision": 2, "key": "/works/OL10827750W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4521469A"}}], "type": {"key": "/type/work"}, "subjects": ["Bills, Private", "Private bills", "Claims"], "revision": 2}
+/type/work /works/OL10828123W 4 2012-05-17T21:52:32.374766 {"last_modified": {"type": "/type/datetime", "value": "2012-05-17T21:52:32.374766"}, "title": "Correspondence with the FBI", "created": {"type": "/type/datetime", "value": "2009-12-11T03:38:11.369881"}, "subjects": ["Government correspondence", "United States", "United States. Federal Bureau of Investigation"], "latest_revision": 4, "key": "/works/OL10828123W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL63419A"}}], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL10828143W 4 2012-05-17T21:52:32.374766 {"last_modified": {"type": "/type/datetime", "value": "2012-05-17T21:52:32.374766"}, "title": "FBI facts & figures", "created": {"type": "/type/datetime", "value": "2009-12-11T03:38:11.369881"}, "subjects": ["History", "Management", "United States", "United States. Federal Bureau of Investigation"], "latest_revision": 4, "key": "/works/OL10828143W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL63419A"}}], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL10828202W 3 2010-12-03T15:13:24.377829 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:13:24.377829"}, "title": "Alleged combination between certain railroads. Message from the President of the United States, transmitting all facts within the knowledge of the Interstate Commerce Commission as to a combination or arrangement between certain railroads", "created": {"type": "/type/datetime", "value": "2009-12-11T03:38:11.369881"}, "subjects": ["Pennsylvania Railroad", "Railroads", "Transportation"], "latest_revision": 3, "key": "/works/OL10828202W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4521525A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10828501W 2 2010-01-18T11:18:12.270167 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:11.369881"}, "title": "Bridge across Eleven Points River near Alton, Mo", "subject_places": ["Missouri"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T11:18:12.270167"}, "latest_revision": 2, "key": "/works/OL10828501W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4521525A"}}], "type": {"key": "/type/work"}, "subjects": ["Bridges"], "revision": 2}
+/type/work /works/OL10828561W 2 2010-01-18T11:18:12.270167 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:11.369881"}, "title": "Bridge across Kanawha River at Dunbar, W. Va", "subject_places": ["Dunbar (W. Va.)", "Kanawha River (W. Va.)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T11:18:12.270167"}, "latest_revision": 2, "key": "/works/OL10828561W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4521525A"}}], "type": {"key": "/type/work"}, "subjects": ["Bridges"], "revision": 2}
+/type/work /works/OL10828589W 2 2010-01-18T11:18:12.270167 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:11.369881"}, "title": "Bridge across Loggy Bayou, Louisiana", "subject_places": ["Louisiana"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T11:18:12.270167"}, "latest_revision": 2, "key": "/works/OL10828589W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4521525A"}}], "type": {"key": "/type/work"}, "subjects": ["Bridges"], "revision": 2}
+/type/work /works/OL10828606W 2 2010-01-18T11:18:12.270167 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:11.369881"}, "title": "Bridge across Minnesota River in the Counties of Hennepin and Scott, Minn", "subject_places": ["Minnesota River (S.D. and Minn.)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T11:18:12.270167"}, "latest_revision": 2, "key": "/works/OL10828606W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4521525A"}}], "type": {"key": "/type/work"}, "subjects": ["Bridges"], "revision": 2}
+/type/work /works/OL10828732W 2 2010-01-18T11:18:12.270167 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:11.369881"}, "title": "Bridge across Penobscot River", "subject_places": ["Maine", "Penobscot River (Me.)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T11:18:12.270167"}, "latest_revision": 2, "key": "/works/OL10828732W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4521525A"}}], "type": {"key": "/type/work"}, "subjects": ["Bridges"], "revision": 2}
+/type/work /works/OL10828811W 2 2010-01-18T11:18:12.270167 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:12.328665"}, "title": "Bridge across Sandusky Bay, near Bay Ridge, Ohio", "subject_places": ["Ohio", "Sandusky (Ohio)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T11:18:12.270167"}, "latest_revision": 2, "key": "/works/OL10828811W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4521525A"}}], "type": {"key": "/type/work"}, "subjects": ["Bridges"], "revision": 2}
+/type/work /works/OL10829399W 2 2010-01-18T11:23:45.322553 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:12.328665"}, "title": "Bridge over Tennessee River at Clifton, Tenn", "subject_places": ["Clifton (Tenn.)", "Tennessee River"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T11:23:45.322553"}, "latest_revision": 2, "key": "/works/OL10829399W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4521525A"}}], "type": {"key": "/type/work"}, "subjects": ["Bridges"], "revision": 2}
+/type/work /works/OL10829596W 3 2010-12-03T15:19:46.948475 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:19:46.948475"}, "title": "Credit to be allowed Disbursing Clerk of War Risk Insurance Bureau in certain cases", "created": {"type": "/type/datetime", "value": "2009-12-11T03:38:12.328665"}, "subjects": ["Clerks", "Insurance", "United States", "United States. Bureau of War Risk Insurance", "War risks"], "latest_revision": 3, "key": "/works/OL10829596W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4521525A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10829659W 2 2010-01-18T11:23:45.322553 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:12.328665"}, "title": "Dam across the Mississippi River at or near Clearwater, Minn", "subject_places": ["Clearwater (Minn.)", "Mississippi River"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T11:23:45.322553"}, "latest_revision": 2, "key": "/works/OL10829659W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4521525A"}}], "type": {"key": "/type/work"}, "subjects": ["Reservoirs"], "revision": 2}
+/type/work /works/OL10829863W 3 2010-12-03T17:02:18.279717 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:13.422337"}, "subject_places": ["United States"], "subjects": ["Federal Power Act", "Hydroelectric power plants", "Law and legislation"], "latest_revision": 3, "key": "/works/OL10829863W", "title": "Federal Power Act (upstream benefits)", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4521525A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T17:02:18.279717"}, "revision": 3}
+/type/work /works/OL1082997W 1 2009-12-09T20:04:19.972604 {"title": "Mut\u0323t\u0323hi\u0304 bhar lamh\u0323e", "created": {"type": "/type/datetime", "value": "2009-12-09T20:04:19.972604"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T20:04:19.972604"}, "latest_revision": 1, "key": "/works/OL1082997W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL112340A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10830402W 2 2010-01-18T11:28:38.629071 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:13.422337"}, "title": "Safety of employees and travelers upon railroads", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T11:28:38.629071"}, "latest_revision": 2, "key": "/works/OL10830402W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4521525A"}}], "type": {"key": "/type/work"}, "subjects": ["Fines (Penalties)", "Hours of labor"], "revision": 2}
+/type/work /works/OL10830414W 3 2010-12-03T14:04:42.149198 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:13.422337"}, "subject_places": ["United States"], "subjects": ["Insurance, War risk", "Law and legislation", "Merchant mariners", "War risk Insurance"], "latest_revision": 3, "key": "/works/OL10830414W", "title": "Seamen's Insurance (Return of Unused Premiums)", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4521525A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:04:42.149198"}, "revision": 3}
+/type/work /works/OL10830593W 2 2010-01-18T11:28:38.629071 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:13.422337"}, "title": "Transfer of Southern Idaho to the Third Time Zone", "subject_places": ["Idaho"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T11:28:38.629071"}, "latest_revision": 2, "key": "/works/OL10830593W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4521525A"}}], "type": {"key": "/type/work"}, "subjects": ["Systems and standards", "Law and legislation", "Time"], "revision": 2}
+/type/work /works/OL10830840W 2 2010-01-18T11:35:00.101122 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:15.810592"}, "title": "Hearings on Bills Relating to Insecticides and Fungicides", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T11:35:00.101122"}, "latest_revision": 2, "key": "/works/OL10830840W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4521525A"}}], "type": {"key": "/type/work"}, "subjects": ["Pesticides", "Law and legislation", "Labeling", "Products liability"], "revision": 2}
+/type/work /works/OL10830920W 3 2010-12-03T14:58:21.874090 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:15.810592"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10830920W", "title": "Light-house steamer Pansey", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4521525A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:58:21.874090"}, "revision": 3}
+/type/work /works/OL10830926W 2 2010-01-18T11:35:00.101122 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:15.810592"}, "title": "Light-ship off the South Pass of the Mississippi River", "subject_places": ["Mississippi River"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T11:35:00.101122"}, "latest_revision": 2, "key": "/works/OL10830926W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4521525A"}}], "type": {"key": "/type/work"}, "subjects": ["Lightships"], "revision": 2}
+/type/work /works/OL10831488W 2 2010-01-18T11:35:00.101122 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:15.810592"}, "title": "Improving the Federal court library system", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T11:35:00.101122"}, "latest_revision": 2, "key": "/works/OL10831488W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4521599A"}}], "type": {"key": "/type/work"}, "subjects": ["Law libraries"], "revision": 2}
+/type/work /works/OL10831493W 3 2012-05-17T18:46:36.883902 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:15.810592"}, "subject_places": ["United States"], "subjects": ["Youth", "Child labor", "Employment"], "latest_revision": 3, "key": "/works/OL10831493W", "title": "Child labor requirements in nonagricultural occupations under the Fair Labor Standards Act", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1746401A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-17T18:46:36.883902"}, "revision": 3}
+/type/work /works/OL10831506W 4 2012-05-17T18:46:36.883902 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:15.810592"}, "subject_places": ["United States"], "subjects": ["Labor laws and legislation", "Legal status, laws", "Migrant agricultural laborers", "Seasonal labor", "United States"], "latest_revision": 4, "key": "/works/OL10831506W", "title": "Migrant and Seasonal Agricultural Worker Protection Act as amended", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1746401A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-17T18:46:36.883902"}, "revision": 4}
+/type/work /works/OL10831598W 2 2010-01-18T11:35:00.101122 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:15.810592"}, "title": "Research involving those institutionalized as mentally infirm", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T11:35:00.101122"}, "latest_revision": 2, "key": "/works/OL10831598W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4521619A"}}], "type": {"key": "/type/work"}, "subjects": ["Psychiatry", "Mental illness", "Research"], "revision": 2}
+/type/work /works/OL10831869W 3 2017-12-29T21:09:17.887285 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:18.718306"}, "subject_places": ["United States"], "subjects": ["Budget"], "latest_revision": 3, "key": "/works/OL10831869W", "title": "Update to five-year budget projections", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL272651A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2017-12-29T21:09:17.887285"}, "revision": 3}
+/type/work /works/OL10831924W 2 2010-01-18T11:40:22.696410 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:18.718306"}, "title": "Planning for initial attack!", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T11:40:22.696410"}, "latest_revision": 2, "key": "/works/OL10831924W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4521686A"}}], "type": {"key": "/type/work"}, "subjects": ["Forest fires", "Prevention and control"], "revision": 2}
+/type/work /works/OL10832300W 3 2012-07-26T18:43:44.967790 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:18.718306"}, "subject_places": ["United States"], "subjects": ["Urban renewal", "Housing"], "latest_revision": 3, "key": "/works/OL10832300W", "title": "Urban renewal handbook", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4504472A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-07-26T18:43:44.967790"}, "revision": 3}
+/type/work /works/OL1083267W 1 2009-12-09T20:04:19.972604 {"title": "Agro's Dictionary of Horticulture", "created": {"type": "/type/datetime", "value": "2009-12-09T20:04:19.972604"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T20:04:19.972604"}, "latest_revision": 1, "key": "/works/OL1083267W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL112454A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10833395W 2 2010-01-18T11:46:00.922133 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:20.101733"}, "title": "Lease of power sites. Letter from the Secretary of the Interior, transmitting, in answer to the resolution of the Senate of February 5; 1912, information as to the number of power sites which have been leased within and without forest reserves, the quantity of power available in each, the length of time for which leases have been made, the amount of power sold, and the revenue derived therefrom", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T11:46:00.922133"}, "latest_revision": 2, "key": "/works/OL10833395W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4521847A"}}], "type": {"key": "/type/work"}, "subjects": ["Public lands", "Lease and rental services", "Electric power"], "revision": 2}
+/type/work /works/OL10833740W 2 2010-01-18T11:50:58.226344 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:20.101733"}, "title": "Transportation of Wheat", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T11:50:58.226344"}, "latest_revision": 2, "key": "/works/OL10833740W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4521847A"}}], "type": {"key": "/type/work"}, "subjects": ["Wheat trade", "Governmental investigations"], "revision": 2}
+/type/work /works/OL10833743W 2 2010-01-18T11:50:58.226344 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:20.101733"}, "title": "Uniform grading of grain", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T11:50:58.226344"}, "latest_revision": 2, "key": "/works/OL10833743W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4521847A"}}], "type": {"key": "/type/work"}, "subjects": ["Farm produce", "Grain"], "revision": 2}
+/type/work /works/OL10833955W 3 2010-12-03T13:21:00.775944 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:21.164310"}, "subject_places": ["United States"], "subjects": ["Appropriations and expenditures", "Appropriations and expenditures, 1977", "United States", "United States. Dept. of Agriculture", "United States. Food and Drug Administration"], "latest_revision": 3, "key": "/works/OL10833955W", "title": "Agriculture and related agencies appropriations for fiscal year 1977", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4521848A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:21:00.775944"}, "revision": 3}
+/type/work /works/OL10834212W 2 2010-01-18T11:50:58.226344 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:21.164310"}, "title": "Deficiencies in the appropriations for contingent expenses of the Senate and House of Representatives for the fiscal year 1912, and for other purposes", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T11:50:58.226344"}, "latest_revision": 2, "key": "/works/OL10834212W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4521848A"}}], "type": {"key": "/type/work"}, "subjects": ["Appropriations and expenditures", "Budget"], "revision": 2}
+/type/work /works/OL10834761W 2 2010-01-18T11:55:31.451777 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:21.164310"}, "title": "Navy Department and Naval Service appropriation bill, fiscal year 1926", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T11:55:31.451777"}, "latest_revision": 2, "key": "/works/OL10834761W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4521848A"}}], "type": {"key": "/type/work"}, "subjects": ["Appropriations and expenditures", "Budget"], "revision": 2}
+/type/work /works/OL10834824W 2 2010-01-18T11:55:31.451777 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:22.460995"}, "title": "Plans for international standards for testing mineral-oil products. Letter from the Secretary of the Interior, transmitting, in response to a Senate resolution of May 9, 1908, a report as to any plans now in progress for international standards for testing mineral-oil products, and as to what legislation is advisable to secure their adoption", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T11:55:31.451777"}, "latest_revision": 2, "key": "/works/OL10834824W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4521848A"}}], "type": {"key": "/type/work"}, "subjects": ["Mines and mineral resources", "Quality control"], "revision": 2}
+/type/work /works/OL10835243W 2 2010-01-18T11:55:31.451777 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:22.460995"}, "title": "War Emergency Service and Bureau of Labor Statistics, Department of Labor. Letter from the Secretary of the Treasury, transmitting copy of a communication from the Secretary of Labor submitting supplemental estimates of appropriation required by the War Emergency Service and Bureau of Labor Statistics, Department of Labor, for the fiscal year 1919", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T11:55:31.451777"}, "latest_revision": 2, "key": "/works/OL10835243W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4521848A"}}], "type": {"key": "/type/work"}, "subjects": ["Budget"], "revision": 2}
+/type/work /works/OL10835396W 2 2010-01-18T11:55:31.451777 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:22.460995"}, "title": "D.C. Appropriation Bill, 1929", "subject_places": ["Washington (D.C.)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T11:55:31.451777"}, "latest_revision": 2, "key": "/works/OL10835396W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4521848A"}}], "type": {"key": "/type/work"}, "subjects": ["Appropriations and expenditures, 1929"], "revision": 2}
+/type/work /works/OL10835544W 4 2012-05-02T19:44:16.237070 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:22.460995"}, "subject_places": ["United States"], "subjects": ["States", "Public lands", "Federal-state controversies", "Limitation of actions"], "latest_revision": 4, "key": "/works/OL10835544W", "title": "Amending the Quiet Title Act", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL43204A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-02T19:44:16.237070"}, "revision": 4}
+/type/work /works/OL10835610W 5 2023-01-07T17:04:06.417527 {"key": "/works/OL10835610W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL43204A"}}], "title": "Beaufort, South Carolina Study Act of 2003", "subject_places": ["South Carolina", "Beaufort", "United States", "Beaufort (S.C.)"], "subjects": ["National parks and reserves", "Law and legislation", "Historic sites", "Reconstruction", "History", "Reconstruction (U.S. history, 1865-1877)"], "subject_times": ["19th century"], "type": {"key": "/type/work"}, "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2009-12-11T03:38:22.460995"}, "last_modified": {"type": "/type/datetime", "value": "2023-01-07T17:04:06.417527"}}
+/type/work /works/OL10835755W 5 2012-05-02T19:44:16.237070 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:22.460995"}, "subject_places": ["Dandini Research Park (Reno, Nev.)", "Nev.) Dandini Research Park (Reno", "Nevada", "Washoe County"], "subjects": ["Land titles", "Registration and transfer"], "latest_revision": 5, "key": "/works/OL10835755W", "title": "Dandini Research Park Conveyance Act", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL43204A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-02T19:44:16.237070"}, "revision": 5}
+/type/work /works/OL10835910W 4 2012-05-02T19:44:16.237070 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:23.589524"}, "subject_places": ["United States"], "subjects": ["Avalanches", "Safety regulations", "Public lands", "Recreational use", "Control"], "latest_revision": 4, "key": "/works/OL10835910W", "title": "Federal Land Recreational Visitor Protection Act of 2005", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL43204A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-02T19:44:16.237070"}, "revision": 4}
+/type/work /works/OL10835982W 4 2012-05-02T19:44:16.237070 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:23.589524"}, "subject_places": ["New Jersey", "Great Egg Harbor River (N.J.)"], "subjects": ["Wild and scenic rivers", "Law and legislation"], "latest_revision": 4, "key": "/works/OL10835982W", "title": "Great Egg Harbor River, New Jersey", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL43204A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-02T19:44:16.237070"}, "revision": 4}
+/type/work /works/OL10836148W 5 2012-05-02T19:44:16.237070 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:23.589524"}, "subject_places": ["New Mexico", "Tennessee", "United States", "Washington (State)"], "subjects": ["Atomic bomb", "Historic sites", "History", "Law and legislation", "Manhattan Project (U.S.)"], "latest_revision": 5, "key": "/works/OL10836148W", "title": "Manhattan Project National Historical Park Study Act", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL43204A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-02T19:44:16.237070"}, "revision": 5}
+/type/work /works/OL10836361W 4 2012-05-02T19:44:16.237070 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:23.589524"}, "subject_places": ["Massachusetts", "Salem Maritime National Historic Site (Mass.)"], "subjects": ["Law and legislation", "National parks and reserves", "Historic sites"], "latest_revision": 4, "key": "/works/OL10836361W", "title": "Providing for a visitor center at Salem Maritime National Historic Site in the Commonwealth of Massachusetts", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL43204A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-02T19:44:16.237070"}, "revision": 4}
+/type/work /works/OL10836682W 4 2012-05-02T19:44:16.237070 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:23.589524"}, "subject_places": ["Big Horn County", "Wyoming"], "subjects": ["Public lands", "Law and legislation", "Mining law", "Bentonite"], "latest_revision": 4, "key": "/works/OL10836682W", "title": "Big Horn Bentonite Act", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL43204A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-02T19:44:16.237070"}, "revision": 4}
+/type/work /works/OL10837381W 3 2012-05-04T14:38:31.180202 {"last_modified": {"type": "/type/datetime", "value": "2012-05-04T14:38:31.180202"}, "title": "Safety code for brakes and brake testing", "created": {"type": "/type/datetime", "value": "2009-12-11T03:38:27.420329"}, "subjects": ["Brakes"], "latest_revision": 3, "key": "/works/OL10837381W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1288650A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10837392W 3 2012-05-04T14:38:31.180202 {"last_modified": {"type": "/type/datetime", "value": "2012-05-04T14:38:31.180202"}, "title": "Standard industrial classification (SIC) codes", "created": {"type": "/type/datetime", "value": "2009-12-11T03:38:27.420329"}, "subjects": ["Industries", "Code numbers"], "latest_revision": 3, "key": "/works/OL10837392W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1288650A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10837882W 3 2012-05-09T23:24:46.555630 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:28.894314"}, "subject_places": ["United States"], "subjects": ["Statistics", "Consumers", "Cost and standard of living", "Family"], "latest_revision": 3, "key": "/works/OL10837882W", "title": "Consumer expenditure survey series, interview survey, 1972-73", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL171521A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-09T23:24:46.555630"}, "revision": 3}
+/type/work /works/OL10837962W 2 2010-01-18T12:08:16.118728 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:28.894314"}, "title": "Adjustment and settlement of claims of the attorney of record involving certain Indian allotments", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T12:08:16.118728"}, "latest_revision": 2, "key": "/works/OL10837962W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4522189A"}}], "type": {"key": "/type/work"}, "subjects": ["Bills, Private", "Private bills", "Claims"], "revision": 2}
+/type/work /works/OL10838870W 2 2010-01-18T12:12:25.636213 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:29.966022"}, "title": "Marysville School District No. 325 Snohomish County, Wash", "subject_places": ["Snohomish County (Wash.)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T12:12:25.636213"}, "latest_revision": 2, "key": "/works/OL10838870W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4522189A"}}], "type": {"key": "/type/work"}, "subjects": ["Schools", "Education", "Indians of North America"], "revision": 2}
+/type/work /works/OL10838948W 3 2010-03-16T19:32:16.453410 {"subtitle": "hearings before the United States Senate Committee on Indian Affairs, Seventieth Congress, first session, on Feb. 17, 1928", "created": {"type": "/type/datetime", "value": "2009-12-11T03:38:29.966022"}, "title": "Middle Rio Grande Conservancy District", "subject_places": ["New Mexico"], "last_modified": {"type": "/type/datetime", "value": "2010-03-16T19:32:16.453410"}, "latest_revision": 3, "key": "/works/OL10838948W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4522189A"}}], "type": {"key": "/type/work"}, "subjects": ["Law and legislation", "Irrigation", "Pueblo Indians", "Flood control"], "revision": 3}
+/type/work /works/OL10839034W 2 2010-01-18T12:12:25.636213 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:29.966022"}, "title": "Payment of interest on certain funds held in trust by the United States for Indian Tribes", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T12:12:25.636213"}, "latest_revision": 2, "key": "/works/OL10839034W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4522189A"}}], "type": {"key": "/type/work"}, "subjects": ["Tribal trust funds", "Expenditures, Public", "Trusts and trustees"], "revision": 2}
+/type/work /works/OL10839338W 2 2010-01-18T12:12:25.636213 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:29.966022"}, "title": "Sale of certain lands to Dwight Mission School", "subject_places": ["Oklahoma"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T12:12:25.636213"}, "latest_revision": 2, "key": "/works/OL10839338W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4522189A"}}], "type": {"key": "/type/work"}, "subjects": ["Public land sales", "School facilities"], "revision": 2}
+/type/work /works/OL10839484W 2 2010-01-18T12:12:25.636213 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:29.966022"}, "title": "To amend the act providing for the final disposition of the affairs of the Eastern Band of Cherokee Indians in North Carolina", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T12:12:25.636213"}, "latest_revision": 2, "key": "/works/OL10839484W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4522189A"}}], "type": {"key": "/type/work"}, "subjects": ["Cherokee Indians", "Indians of North America"], "revision": 2}
+/type/work /works/OL10839491W 2 2010-01-18T12:12:25.636213 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:29.966022"}, "title": "To authorize an appropriation for the construction of a road on the Lummi Indian Reservation, Wash", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T12:12:25.636213"}, "latest_revision": 2, "key": "/works/OL10839491W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4522189A"}}], "type": {"key": "/type/work"}, "subjects": ["Indian reservations", "Streets", "Budget"], "revision": 2}
+/type/work /works/OL10840052W 3 2012-05-02T14:41:18.539039 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:32.484617"}, "subject_places": ["Sub-Saharan Africa", "United States"], "subjects": ["Foreign relations", "Politics and government", "Mineral industries"], "latest_revision": 3, "key": "/works/OL10840052W", "title": "Sub-Sahara Africa, its role in critical mineral needs of the Western World", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1224356A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-02T14:41:18.539039"}, "revision": 3}
+/type/work /works/OL10840458W 4 2011-11-15T22:18:00.890754 {"subtitle": "the life story of Raisuli", "last_modified": {"type": "/type/datetime", "value": "2011-11-15T22:18:00.890754"}, "title": "The sultan of the mountains", "created": {"type": "/type/datetime", "value": "2009-12-11T03:38:32.484617"}, "subject_places": ["Morocco"], "subjects": ["History"], "subject_people": ["A\u1e25mad Rays\u016bn\u012b"], "key": "/works/OL10840458W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2238380A"}}], "latest_revision": 4, "subject_times": ["20th century"], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL10841061W 2 2010-01-18T12:22:32.628567 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:33.579090"}, "title": "International Petroleum Exposition, Tulsa, Okla., May 16-23, 1936", "subject_places": ["Tulsa (Okla.)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T12:22:32.628567"}, "latest_revision": 2, "key": "/works/OL10841061W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4522330A"}}], "type": {"key": "/type/work"}, "subjects": ["Petroleum", "Exhibitions"], "revision": 2}
+/type/work /works/OL10841666W 3 2010-12-03T14:40:21.369803 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:33.579090"}, "subject_places": ["United States"], "subjects": ["Defense industries", "Insurance, Unemployment", "Unemployment Insurance"], "latest_revision": 3, "key": "/works/OL10841666W", "title": "Emergency Unemployment Compensation", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4522330A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:40:21.369803"}, "revision": 3}
+/type/work /works/OL10842821W 5 2012-05-02T13:17:10.526960 {"last_modified": {"type": "/type/datetime", "value": "2012-05-02T13:17:10.526960"}, "title": "Nominations--Department of Commerce, Corporation for Public Broadcasting", "created": {"type": "/type/datetime", "value": "2009-12-11T03:38:40.048550"}, "subjects": ["Appointments, promotions, salaries", "Corporation for Public Broadcasting", "United States", "United States. Dept. of Commerce"], "latest_revision": 5, "key": "/works/OL10842821W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL51624A"}}], "type": {"key": "/type/work"}, "revision": 5}
+/type/work /works/OL10843178W 3 2010-07-09T21:20:25.716009 {"subtitle": "coal-tar-pitch and asphalt", "title": "Health hazards of roofing materials", "created": {"type": "/type/datetime", "value": "2009-12-11T03:38:40.048550"}, "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-07-09T21:20:25.716009"}, "latest_revision": 3, "key": "/works/OL10843178W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4522557A"}}], "type": {"key": "/type/work"}, "subjects": ["Toxicology", "Industrial hygiene", "Bituminous Roofing"], "revision": 3}
+/type/work /works/OL10843388W 3 2010-12-03T13:58:15.559674 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:40.048550"}, "subject_places": ["Alaska", "Tongass National Forest", "Tongass National Forest (Alaska)"], "subjects": ["Environmental aspects", "Environmental aspects of Logging", "Forest management", "Forest reserves", "Logging"], "latest_revision": 3, "key": "/works/OL10843388W", "title": "Port Houghton/Cape Fanshaw timber sale project", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4522599A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:58:15.559674"}, "revision": 3}
+/type/work /works/OL10843671W 2 2010-01-18T12:37:23.547090 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:40.048550"}, "title": "Economic analysis of proposed revised effluent guidelines and standards for the ink manufacturing industry", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T12:37:23.547090"}, "latest_revision": 2, "key": "/works/OL10843671W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4522732A"}}], "type": {"key": "/type/work"}, "subjects": ["Water", "Ink", "Factory and trade waste", "Purification"], "revision": 2}
+/type/work /works/OL10844103W 2 2010-01-18T12:37:23.547090 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:42.931117"}, "title": "Electric energy network", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T12:37:23.547090"}, "latest_revision": 2, "key": "/works/OL10844103W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4522811A"}}], "type": {"key": "/type/work"}, "subjects": ["Electric networks"], "revision": 2}
+/type/work /works/OL10844210W 3 2012-05-19T11:04:16.090533 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:42.931117"}, "subject_places": ["United States"], "subjects": ["Minimum wage"], "latest_revision": 3, "key": "/works/OL10844210W", "title": "Analysis of coverage and wage rates of state minimum wage laws and orders, August 1, 1965", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL171580A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-19T11:04:16.090533"}, "revision": 3}
+/type/work /works/OL10844501W 2 2010-01-18T12:37:23.547090 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:42.931117"}, "title": "Education and broadcasting in Japan", "subject_places": ["Japan"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T12:37:23.547090"}, "latest_revision": 2, "key": "/works/OL10844501W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4522922A"}}], "type": {"key": "/type/work"}, "subjects": ["Television in education", "Education", "Radio in education"], "revision": 2}
+/type/work /works/OL108446W 4 2011-03-29T07:06:16.568818 {"subtitle": "being the rise and fall of Robert Carr of Ferniehurst, earl of Somerset, viscount Rochester, baron Winwick, baron Brancepeth, knight of the most noble Order of the Garter, a member of His Majesty's most honorable Privy council, &c., &c., &c.", "last_modified": {"type": "/type/datetime", "value": "2011-03-29T07:06:16.568818"}, "latest_revision": 4, "key": "/works/OL108446W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2687190A"}}], "created": {"type": "/type/datetime", "value": "2009-10-17T22:32:26.738690"}, "title": "The king's minion", "subjects": ["Fiction"], "subject_people": ["Frances Howard Carr Somerset Countess of (1593-1632)", "Robert Carr Somerset Earl of (d. 1645)"], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL10844890W 3 2012-05-18T19:41:33.427467 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:44.322022"}, "subject_places": ["United States"], "subjects": ["Nurses", "Medical care", "Outpatient services", "Hospitals", "Veterans", "Pensions", "Salaries"], "latest_revision": 3, "key": "/works/OL10844890W", "title": "Veterans' Administration Health-Care Programs Improvement and Extension Act of 1982", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL51918A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-18T19:41:33.427467"}, "revision": 3}
+/type/work /works/OL10845258W 2 2010-01-18T12:42:32.279082 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:44.322022"}, "title": "Appropriation for Bureau of the Mint. Letter from the Secretary of the Treasury, transmitting supplemental estimate of appropriation required by the Bureau of the Mint for additional expenses in operating the mint at Philadelphia during the remainder of the fiscal year 1920", "subject_places": ["United States", "Pennsylvania", "Philadelphia (Pa.)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T12:42:32.279082"}, "latest_revision": 2, "key": "/works/OL10845258W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4522961A"}}], "type": {"key": "/type/work"}, "subjects": ["Budget"], "revision": 2}
+/type/work /works/OL10845978W 3 2010-12-03T15:21:36.459384 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:21:36.459384"}, "title": "Claims adjusted by the Secretary of the Navy which require an appropriation. Communication from the President of the United States, transmitting a communication from the Secretary of the Navy, submitting an estimate of appropriation in the sum of $40,149.04 to pay claims which he has adjusted and which require an appropriation for their payment", "created": {"type": "/type/datetime", "value": "2009-12-11T03:38:45.337979"}, "subjects": ["Appropriations and expenditures", "Armed Forces", "Claims", "United States", "United States. Navy Dept"], "latest_revision": 3, "key": "/works/OL10845978W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4522961A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10846508W 3 2010-12-03T15:04:05.682474 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:45.337979"}, "subject_places": ["United States"], "subjects": ["Budget", "Telegraph", "United States", "United States. Post Office Dept"], "latest_revision": 3, "key": "/works/OL10846508W", "title": "Deficiency for telegraphing, Post-Office Department. Letter from the Secretary of the Treasury, transmitting a copy of a letter from the Postmaster-General submitting estimates of deficiencies", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4522961A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:04:05.682474"}, "revision": 3}
+/type/work /works/OL10846822W 2 2010-01-18T12:55:19.160489 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:46.658101"}, "title": "Estimate for completing repairs on Post-Office Building at San Jose, Cal. Letter from the Acting Secretary of the Treasury, submitting an estimate of appropriation for completing repairs to the San Jose, Cal., Post-Office", "subject_places": ["United States", "California"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T12:55:19.160489"}, "latest_revision": 2, "key": "/works/OL10846822W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4522961A"}}], "type": {"key": "/type/work"}, "subjects": ["Budget", "Earthquakes"], "revision": 2}
+/type/work /works/OL10846982W 3 2010-12-03T14:47:21.987471 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:46.658101"}, "subject_places": ["United States"], "subjects": ["Accounting", "Budget", "Expenditures, Public", "Public Expenditures"], "latest_revision": 3, "key": "/works/OL10846982W", "title": "Estimates of deficiencies. Letter from the Secretary of the Treasury, transmitting estimates of appropriations required by the various departments to complete the service of the current and prior years", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4522961A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:47:21.987471"}, "revision": 3}
+/type/work /works/OL1084768W 3 2020-10-08T05:24:26.728361 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:28:24.693285"}, "subject_places": ["American Samoa"], "subjects": ["Botany", "Samoans", "Ethnobotany", "Social life and customs", "Plants"], "latest_revision": 3, "key": "/works/OL1084768W", "title": "American Samoa", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL112754A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-10-08T05:24:26.728361"}, "revision": 3}
+/type/work /works/OL10848192W 2 2010-01-18T13:02:02.580433 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:47.780814"}, "title": "National road from the Aqueduct Bridge to Mount Vernon, Va. Letter from the Secretary of War, transmitting with a letter from the Chief of Engineers a report of a survey for a national road from the Aqueduct Bridge to Mount Vernon, Va", "subject_places": ["Mount Vernon (Va.)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T13:02:02.580433"}, "latest_revision": 2, "key": "/works/OL10848192W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4522961A"}}], "type": {"key": "/type/work"}, "subjects": ["Roads", "Topographical surveying"], "revision": 2}
+/type/work /works/OL1084830W 1 2009-12-09T20:04:51.462278 {"title": "Arhundredernes legende", "created": {"type": "/type/datetime", "value": "2009-12-09T20:04:51.462278"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T20:04:51.462278"}, "latest_revision": 1, "key": "/works/OL1084830W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL112761A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10848446W 3 2010-12-03T15:22:34.234468 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:47.780814"}, "subject_places": ["United States"], "subjects": ["Budget", "United States", "United States. Post Office Dept"], "latest_revision": 3, "key": "/works/OL10848446W", "title": "Post Office Department. Communication from the President of the United States transmitting deficiency estimate of appropriation for the Post Office Department for the fiscal year 1925, $42.54; supplemental estimates for the fiscal year 1930, $2,735,000; and supplemental estimates for the fiscal year 1931, $43,220; in all, $2,778,262.54; also a draft of proposed legislation affecting an existing appropriation", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4522961A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:22:34.234468"}, "revision": 3}
+/type/work /works/OL10848507W 3 2010-12-03T14:56:36.655729 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:47.780814"}, "subject_places": ["United States"], "subjects": ["Budget", "Government publications", "United States", "United States. Dept. of the Interior"], "latest_revision": 3, "key": "/works/OL10848507W", "title": "Printing, engraving, and binding for the Eleventh Census. Letter from the Secretary of the Treasury, transmitting a communication from the Secretary of the Interior submitting an estimate of appropriation for printing, engraving, and binding for the Eleventh Census during the half of the fiscal year ending June 30, 1891", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4522961A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:56:36.655729"}, "revision": 3}
+/type/work /works/OL10848815W 3 2010-12-03T15:21:06.979260 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:48.765738"}, "subject_places": ["United States"], "subjects": ["Budget", "Expenditures, Public", "Public Expenditures", "United States", "United States. Dept. of State"], "latest_revision": 3, "key": "/works/OL10848815W", "title": "Remission of Chinese indemnity communication from the President of the United States transmitting supplemental estimate of appropriation for the Department of State for the fiscal year ending June 30, 1926, amounting to", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4522961A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:21:06.979260"}, "revision": 3}
+/type/work /works/OL10848961W 2 2010-01-18T13:08:12.609742 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:48.765738"}, "title": "Resurvey of boundary between Colorado, New Mexico, and Oklahoma, etc. Letter from the Secretary of the Interior, transmitting a letter from the Assistant Commissioner of the Land Office requesting that the appropriation for a resurvey of the boundary between Colorado, New Mexico, and Oklahoma be made available for the year ending June 30, 1904", "subject_places": ["Colorado"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T13:08:12.609742"}, "latest_revision": 2, "key": "/works/OL10848961W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4522961A"}}], "type": {"key": "/type/work"}, "subjects": ["Boundaries", "Topographical surveying"], "revision": 2}
+/type/work /works/OL10849015W 3 2010-12-03T15:16:04.618097 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:48.765738"}, "subject_places": ["United States"], "subjects": ["Budget", "Officials and employees", "Salaries", "United States", "United States. Dept. of Justice"], "latest_revision": 3, "key": "/works/OL10849015W", "title": "Salaries, Department of Justice. Letter from the Secretary of the Treasury, transmitting copy of communication from the Attorney General, of December 16, 1911, submitting certain modifications and increases in the estimates of appropriations for salaries, Department of Justice, for the fiscal year ending June 30, 1913", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4522961A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:16:04.618097"}, "revision": 3}
+/type/work /works/OL10849189W 2 2010-01-18T13:08:12.609742 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:48.765738"}, "title": "Signal service. Joint resolutions of the Legislature of New Jersey, recommending an additional appropriation to the signal service", "subject_places": ["United States", "New Jersey"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T13:08:12.609742"}, "latest_revision": 2, "key": "/works/OL10849189W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4522961A"}}], "type": {"key": "/type/work"}, "subjects": ["Signals and signaling", "Budget"], "revision": 2}
+/type/work /works/OL1084918W 1 2009-12-09T20:04:51.462278 {"title": "P\u00e5 storhove", "created": {"type": "/type/datetime", "value": "2009-12-09T20:04:51.462278"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T20:04:51.462278"}, "latest_revision": 1, "key": "/works/OL1084918W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL112761A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10849366W 3 2010-12-03T17:45:25.358094 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:48.765738"}, "subject_places": ["United States"], "subjects": ["Budget", "District of Columbia", "District of Columbia. Supreme Court"], "latest_revision": 3, "key": "/works/OL10849366W", "title": "Supplemental estimate for Supreme Court, District of Columbia. Communication from the President of the United States transmitting a supplemental estimate of appropriation for the District of Columbia for the fiscal year ending June 30, 1925, for fees and expenses of witnesses, Supreme Court, District of Columbia, $15,000", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4522961A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T17:45:25.358094"}, "revision": 3}
+/type/work /works/OL10849409W 2 2010-01-18T13:14:54.826435 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:48.765738"}, "title": "Supplemental estimate -- relocation of military roads between Aqueduct Bridge and Fort Myer, Va. Letter from the Acting Secretary of the Treasury, transmitting copy of communication from the Secretary of War, submitting a supplemental estimate of appropriation, required by the War Department for relocation of military roads between Aqueduct Bridge and Fort Myer, Va., fiscal year 1921", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T13:14:54.826435"}, "latest_revision": 2, "key": "/works/OL10849409W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4522961A"}}], "type": {"key": "/type/work"}, "subjects": ["Bridges", "Streets", "Military bases"], "revision": 2}
+/type/work /works/OL10849422W 3 2010-12-03T15:19:46.948475 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:48.765738"}, "subject_places": ["United States"], "subjects": ["Budget", "Expenditures, Public", "Public Expenditures", "United States", "United States. Dept. of Justice"], "latest_revision": 3, "key": "/works/OL10849422W", "title": "Supplemental estimates for the Department of Justice, fiscal year 1923. Communication from the President of the United States, transmitting, with a letter from the Director of the Bureau of the Budget, supplemental and deficiency estimate of appropriations for the Department of Justice for the fiscal year ending June 30, 1923, and prior fiscal years, amounting to $2,756,571.23", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4522961A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:19:46.948475"}, "revision": 3}
+/type/work /works/OL10849577W 2 2010-01-18T13:14:54.826435 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:48.765738"}, "title": "Third supplemental appropriation bill, 1961", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T13:14:54.826435"}, "latest_revision": 2, "key": "/works/OL10849577W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4522961A"}}], "type": {"key": "/type/work"}, "subjects": ["Appropriations and expenditures, 1961"], "revision": 2}
+/type/work /works/OL10849879W 2 2010-01-18T13:14:54.826435 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:50.532328"}, "title": "Watervliet Arsenal grounds. Letter from the Secretary of the Treasury, transmitting an estimate from the Secretary of War of appropriation for paying roadway through the Watervliet Arsenal grounds, West Troy, N. Y", "subject_places": ["United States", "Watervliet Arsenal (N.Y.)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T13:14:54.826435"}, "latest_revision": 2, "key": "/works/OL10849879W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4522961A"}}], "type": {"key": "/type/work"}, "subjects": ["Roads", "Budget"], "revision": 2}
+/type/work /works/OL10849896W 3 2010-12-03T15:06:08.821093 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:50.532328"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10849896W", "title": "William M. Bird and others. Letter from the Acting Secretary of the Treasury, submitting an estimate of appropriation to pay the expense of investigating the claim of William M. Bird, James F. Redding, Henry F. Welch, and others", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4522961A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:06:08.821093"}, "revision": 3}
+/type/work /works/OL10850533W 3 2010-12-06T07:59:36.974987 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:50.532328"}, "subject_places": ["United States"], "subjects": ["Domestic Economic assistance", "Economic assistance, Domestic", "Law and legislation"], "latest_revision": 3, "key": "/works/OL10850533W", "title": "Federal Assistance Improvement Act of 1981", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4523023A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-06T07:59:36.974987"}, "revision": 3}
+/type/work /works/OL10850696W 3 2010-12-03T14:18:20.061361 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:50.532328"}, "subject_places": ["United States"], "subjects": ["Appropriations and expenditures", "United States", "United States. Office of Federal Procurement Policy"], "latest_revision": 3, "key": "/works/OL10850696W", "title": "Reauthorization of the Office of Federal Procurement Policy Act of 1988", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4523023A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:18:20.061361"}, "revision": 3}
+/type/work /works/OL10851001W 2 2010-01-18T13:21:36.951356 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:54.153463"}, "title": "Wild and scenic, Santa Monica Mountains, Friendship Hill National Historic Site", "subject_places": ["United States", "Pennsylvania", "California"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T13:21:36.951356"}, "latest_revision": 2, "key": "/works/OL10851001W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4523104A"}}], "type": {"key": "/type/work"}, "subjects": ["Wild and scenic rivers", "National parks and reserves", "Law and legislation", "Historic sites"], "revision": 2}
+/type/work /works/OL10851046W 2 2010-01-18T13:21:36.951356 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:54.153463"}, "title": "Outdoor recreation preferences", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T13:21:36.951356"}, "latest_revision": 2, "key": "/works/OL10851046W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4523114A"}}], "type": {"key": "/type/work"}, "subjects": ["Outdoor recreation"], "revision": 2}
+/type/work /works/OL10851375W 3 2010-07-16T02:27:18.809615 {"subtitle": "hearings before the United States House Committee on the Judiciary, Sixty-Sixth Congress, second session, on Dec. 9, 1919, Feb. 18, 1920", "title": "Additional Judges in Arizona, California, and Michigan", "created": {"type": "/type/datetime", "value": "2009-12-11T03:38:54.153463"}, "subject_places": ["Michigan", "Arizona", "California"], "last_modified": {"type": "/type/datetime", "value": "2010-07-16T02:27:18.809615"}, "latest_revision": 3, "key": "/works/OL10851375W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4523254A"}}], "type": {"key": "/type/work"}, "subjects": ["Selection and appointment", "Officials and employees", "Judges", "District courts"], "revision": 3}
+/type/work /works/OL10851522W 2 2010-01-18T13:28:36.514547 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:54.153463"}, "title": "Amending the act to divide Texas into four judicial districts", "subject_places": ["Texas"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T13:28:36.514547"}, "latest_revision": 2, "key": "/works/OL10851522W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4523254A"}}], "type": {"key": "/type/work"}, "subjects": ["Courts"], "revision": 2}
+/type/work /works/OL10851641W 3 2010-12-03T14:46:11.587224 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:54.153463"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10851641W", "title": "Ann Gregory", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4523254A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:46:11.587224"}, "revision": 3}
+/type/work /works/OL10851862W 3 2010-12-03T15:02:56.384094 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:02:56.384094"}, "title": "Certain claimants against the United States", "created": {"type": "/type/datetime", "value": "2009-12-11T03:38:55.340842"}, "subjects": ["Administration of Justice", "Courts", "Justice, Administration of", "Public officers"], "latest_revision": 3, "key": "/works/OL10851862W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4523254A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10851919W 3 2010-12-03T15:21:06.979260 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:55.340842"}, "subject_places": ["Illinois"], "subjects": ["Resolutions", "United States", "United States. Congress. House"], "latest_revision": 3, "key": "/works/OL10851919W", "title": "Charges against two members of Congress. Letter from the Attorney General, transmitting letter in response to House Resolution No. 211, directing him to transmit to the house the names of the two members of Congress mentioned in the report of the grand jury of the District Court of the United States for the Northern District of Illinois, and the nature of the charges made against such members of Congress", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4523254A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:21:06.979260"}, "revision": 3}
+/type/work /works/OL10852241W 2 2010-01-18T13:28:36.514547 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:55.340842"}, "title": "Defining trusts", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T13:28:36.514547"}, "latest_revision": 2, "key": "/works/OL10852241W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4523254A"}}], "type": {"key": "/type/work"}, "subjects": ["Monopolies", "Antitrust law"], "revision": 2}
+/type/work /works/OL10852368W 3 2010-12-03T14:57:48.946148 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:55.340842"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10852368W", "title": "Elizabeth T. Boyd and Joel S. Hankins", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4523254A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:57:48.946148"}, "revision": 3}
+/type/work /works/OL1085275W 2 2010-08-03T11:25:25.347714 {"subtitle": "a comedy", "title": "The magnetick lady, or, Humors reconcil'd", "created": {"type": "/type/datetime", "value": "2009-12-09T20:28:24.693285"}, "last_modified": {"type": "/type/datetime", "value": "2010-08-03T11:25:25.347714"}, "latest_revision": 2, "key": "/works/OL1085275W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL112771A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10853263W 2 2010-01-18T13:35:13.534897 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:58.747728"}, "title": "Oherokee Indian Lands. Joint Resolution of the Legislature of Kansas, praying for such legislation as may enable persons entitled thereto to purchase certain lands under the seventeenth article of the Treaty of July 19, 1866, between the United States and the Cherokee Indians", "subject_places": ["Kansas"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T13:35:13.534897"}, "latest_revision": 2, "key": "/works/OL10853263W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4523254A"}}], "type": {"key": "/type/work"}, "subjects": ["Cherokee Indians"], "revision": 2}
+/type/work /works/OL1085330W 2 2010-08-03T11:25:52.540184 {"subtitle": "a comedie", "title": "The widdow", "created": {"type": "/type/datetime", "value": "2009-12-09T20:28:29.097186"}, "last_modified": {"type": "/type/datetime", "value": "2010-08-03T11:25:52.540184"}, "latest_revision": 2, "key": "/works/OL1085330W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL112771A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL1085339W 1 2009-12-09T20:04:55.595083 {"title": "Ben Jonson's Dramen in Neudruck", "created": {"type": "/type/datetime", "value": "2009-12-09T20:04:55.595083"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T20:04:55.595083"}, "latest_revision": 1, "key": "/works/OL1085339W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL112771A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10853570W 2 2010-01-18T13:41:44.599270 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:38:58.747728"}, "title": "Regulation of commerce", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T13:41:44.599270"}, "latest_revision": 2, "key": "/works/OL10853570W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4523254A"}}], "type": {"key": "/type/work"}, "subjects": ["Liquors", "Law and legislation", "International economic relations", "Interstate commerce"], "revision": 2}
+/type/work /works/OL10853894W 3 2010-07-16T02:39:41.368385 {"subtitle": "report (to accompany H.R. 3138)", "title": "Surip Karmowiredjo", "created": {"type": "/type/datetime", "value": "2009-12-11T03:39:00.635820"}, "last_modified": {"type": "/type/datetime", "value": "2010-07-16T02:39:41.368385"}, "latest_revision": 3, "key": "/works/OL10853894W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4523254A"}}], "subject_people": ["Surip Karmowiredjo (1958-)"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10854051W 2 2010-01-18T13:41:44.599270 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:39:00.635820"}, "title": "Time and place for holding terms of court in New Mexico", "subject_places": ["New Mexico"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T13:41:44.599270"}, "latest_revision": 2, "key": "/works/OL10854051W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4523254A"}}], "type": {"key": "/type/work"}, "subjects": ["Courts"], "revision": 2}
+/type/work /works/OL10854331W 2 2010-01-18T13:48:19.152968 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:39:00.635820"}, "title": "Transferring Early County from the northern to the southern judicial district of Georgia", "subject_places": ["Georgia", "Early County (Ga.)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T13:48:19.152968"}, "latest_revision": 2, "key": "/works/OL10854331W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4523254A"}}], "type": {"key": "/type/work"}, "subjects": ["Courts"], "revision": 2}
+/type/work /works/OL10854398W 2 2010-01-18T13:48:19.152968 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:39:00.635820"}, "title": "United States courts at Mississippi City, Miss", "subject_places": ["Mississippi"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T13:48:19.152968"}, "latest_revision": 2, "key": "/works/OL10854398W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4523254A"}}], "type": {"key": "/type/work"}, "subjects": ["Courts"], "revision": 2}
+/type/work /works/OL10854559W 3 2010-07-16T02:42:41.725723 {"subtitle": "hearings before the United States House Committee on the Judiciary, Sixty-Eighth Congress, first session, on Apr. 17, 1924", "title": "Additional Judges, U.S. Court of Claims", "created": {"type": "/type/datetime", "value": "2009-12-11T03:39:00.635820"}, "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-07-16T02:42:41.725723"}, "latest_revision": 3, "key": "/works/OL10854559W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4523254A"}}], "type": {"key": "/type/work"}, "subjects": ["Selection and appointment", "United States", "Officials and employees", "Judges", "United States. Court of Claims"], "revision": 3}
+/type/work /works/OL10855045W 1 2009-12-11T03:39:12.893401 {"title": "Vortra ge gehalten auf der 28. Rencontre Assyriologique Internationale in Wien, 6.-10. Juli 1981", "created": {"type": "/type/datetime", "value": "2009-12-11T03:39:12.893401"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:39:12.893401"}, "latest_revision": 1, "key": "/works/OL10855045W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4523323A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10855141W 2 2010-01-18T13:48:19.152968 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:39:12.893401"}, "title": "Between-animal variation in the amount of energy required for the maintenance of cows", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T13:48:19.152968"}, "latest_revision": 2, "key": "/works/OL10855141W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4523391A"}}], "type": {"key": "/type/work"}, "subjects": ["Feeding and feeds", "Dairy cattle"], "revision": 2}
+/type/work /works/OL1085560W 1 2009-12-09T20:04:55.595083 {"title": "Essays on subjects connected with the literature, popular suparstitions, and history of England in the Middle Ages", "created": {"type": "/type/datetime", "value": "2009-12-09T20:04:55.595083"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T20:04:55.595083"}, "latest_revision": 1, "key": "/works/OL1085560W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL112775A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10855951W 1 2009-12-11T03:39:19.621107 {"title": "Multiracial books for under 7s", "created": {"type": "/type/datetime", "value": "2009-12-11T03:39:19.621107"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:39:19.621107"}, "latest_revision": 1, "key": "/works/OL10855951W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4523836A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10855998W 1 2009-12-11T03:39:19.621107 {"title": "The unveiling of the Stock Exchange War memorial by the Earl of Balfour, K.G., O.M., 27th October, 1922", "created": {"type": "/type/datetime", "value": "2009-12-11T03:39:19.621107"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:39:19.621107"}, "latest_revision": 1, "key": "/works/OL10855998W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4523848A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10856022W 1 2009-12-11T03:39:19.621107 {"title": "Success against the odds", "created": {"type": "/type/datetime", "value": "2009-12-11T03:39:19.621107"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:39:19.621107"}, "latest_revision": 1, "key": "/works/OL10856022W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4523854A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10856372W 1 2009-12-11T03:39:19.621107 {"title": "Buyer's guide to members products and services", "created": {"type": "/type/datetime", "value": "2009-12-11T03:39:19.621107"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:39:19.621107"}, "latest_revision": 1, "key": "/works/OL10856372W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4524037A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10856443W 1 2009-12-11T03:39:19.621107 {"title": "Walsall's economic regeneration strategy", "created": {"type": "/type/datetime", "value": "2009-12-11T03:39:19.621107"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:39:19.621107"}, "latest_revision": 1, "key": "/works/OL10856443W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4524073A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1085646W 1 2009-12-09T20:04:55.595083 {"title": "Jack de Newbury, Thomas de Reading", "created": {"type": "/type/datetime", "value": "2009-12-09T20:04:55.595083"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T20:04:55.595083"}, "latest_revision": 1, "key": "/works/OL1085646W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL112776A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10856561W 1 2009-12-11T03:39:19.621107 {"title": "PSA - PSOE", "created": {"type": "/type/datetime", "value": "2009-12-11T03:39:19.621107"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:39:19.621107"}, "latest_revision": 1, "key": "/works/OL10856561W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4524132A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL108568W 5 2022-05-13T07:35:16.186587 {"subjects": ["Realism", "R\u00e9alisme", "PHILOSOPHY", "Movements", "Realisme (filosofie)"], "key": "/works/OL108568W", "title": "Realism & Antirealism", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL32532A"}}], "type": {"key": "/type/work"}, "covers": [565276], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2009-10-17T22:32:26.738690"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-13T07:35:16.186587"}}
+/type/work /works/OL10856953W 1 2009-12-11T03:39:21.509824 {"title": "Analysis of Transmission Electron Diffraction Patterns by Computer", "created": {"type": "/type/datetime", "value": "2009-12-11T03:39:21.509824"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:39:21.509824"}, "latest_revision": 1, "key": "/works/OL10856953W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4524330A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10857084W 1 2009-12-11T03:39:21.509824 {"title": "Candu Fuel Quality and How it is Achieved", "created": {"type": "/type/datetime", "value": "2009-12-11T03:39:21.509824"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:39:21.509824"}, "latest_revision": 1, "key": "/works/OL10857084W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4524330A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10857182W 1 2009-12-11T03:39:21.509824 {"title": "Control Analysis of Organic-Cooled Nuclear Power Stations, Part 3", "created": {"type": "/type/datetime", "value": "2009-12-11T03:39:21.509824"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:39:21.509824"}, "latest_revision": 1, "key": "/works/OL10857182W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4524330A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10857593W 1 2009-12-11T03:39:21.509824 {"title": "Getrans", "created": {"type": "/type/datetime", "value": "2009-12-11T03:39:21.509824"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:39:21.509824"}, "latest_revision": 1, "key": "/works/OL10857593W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4524330A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10857672W 1 2009-12-11T03:39:21.509824 {"title": "Hydrologic and Hydrogeologic Parameters For Post-Closure Biosphere Assessment of Nuclear Fuel Waste Disposal", "created": {"type": "/type/datetime", "value": "2009-12-11T03:39:21.509824"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:39:21.509824"}, "latest_revision": 1, "key": "/works/OL10857672W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4524330A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10857801W 1 2009-12-11T03:39:23.385506 {"title": "Long-Term Oxidation of zr-2.5 wt% nb Alloy", "created": {"type": "/type/datetime", "value": "2009-12-11T03:39:23.385506"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:39:23.385506"}, "latest_revision": 1, "key": "/works/OL10857801W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4524330A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10857969W 1 2009-12-11T03:39:23.385506 {"title": "Optimization of the Analysis of Chlorine-36 in Urine", "created": {"type": "/type/datetime", "value": "2009-12-11T03:39:23.385506"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:39:23.385506"}, "latest_revision": 1, "key": "/works/OL10857969W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4524330A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10858175W 1 2009-12-11T03:39:23.385506 {"title": "Rednet", "created": {"type": "/type/datetime", "value": "2009-12-11T03:39:23.385506"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:39:23.385506"}, "latest_revision": 1, "key": "/works/OL10858175W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4524330A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10858209W 1 2009-12-11T03:39:23.385506 {"title": "Responses of Platinum, Vanadium and Cobalt Self-Powered Flux Detectors Near Simulated Booster Rods in A Zed-2 Mockup of A Bruce Reactor Core", "created": {"type": "/type/datetime", "value": "2009-12-11T03:39:23.385506"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:39:23.385506"}, "latest_revision": 1, "key": "/works/OL10858209W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4524330A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10858579W 1 2009-12-11T03:39:23.385506 {"title": "Wear of 304 ss Versus Waukesha-88 in Water Design Equations and Graeco-Latin Square Analysis", "created": {"type": "/type/datetime", "value": "2009-12-11T03:39:23.385506"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:39:23.385506"}, "latest_revision": 1, "key": "/works/OL10858579W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4524330A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10858932W 1 2009-12-11T03:39:29.968191 {"title": "Auditing Symposium VI", "created": {"type": "/type/datetime", "value": "2009-12-11T03:39:29.968191"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:39:29.968191"}, "latest_revision": 1, "key": "/works/OL10858932W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4524512A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10858938W 1 2009-12-11T03:39:29.968191 {"title": "Improving farm management teaching in Asia", "created": {"type": "/type/datetime", "value": "2009-12-11T03:39:29.968191"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:39:29.968191"}, "latest_revision": 1, "key": "/works/OL10858938W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4524516A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10859175W 2 2010-01-18T13:55:07.556271 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:39:29.968191"}, "title": "[Photochemical reactions]", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T13:55:07.556271"}, "latest_revision": 2, "key": "/works/OL10859175W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4524652A"}}], "type": {"key": "/type/work"}, "subjects": ["Congresses", "Photochemistry", "Photosynthesis"], "revision": 2}
+/type/work /works/OL10859436W 1 2009-12-11T03:39:29.968191 {"title": "(Annual) volume of the Walpole Society, (1-3, 1911-1914", "created": {"type": "/type/datetime", "value": "2009-12-11T03:39:29.968191"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:39:29.968191"}, "latest_revision": 1, "key": "/works/OL10859436W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4524802A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL108602W 8 2021-11-02T03:48:35.458683 {"covers": [472598], "key": "/works/OL108602W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL32540A"}}], "title": "MacDougal Street Ghosts", "subject_places": ["N.Y.) Greenwich Village (New York", "California", "Greenwich Village (New York, N.Y.)"], "subjects": ["Fiction", "Self-realization", "Divorced women", "Divorced mothers", "Fiction, family life", "Fiction, psychological", "California, fiction", "New york (n.y.), fiction", "Divorced people, fiction", "Single women, fiction", "Fiction, family life, general"], "type": {"key": "/type/work"}, "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2009-10-17T22:32:26.738690"}, "last_modified": {"type": "/type/datetime", "value": "2021-11-02T03:48:35.458683"}}
+/type/work /works/OL10860542W 1 2009-12-11T03:39:36.969404 {"title": "Specification for transmission of two-channel digital sound with terrestrial televisionsystems B, G, H and I", "created": {"type": "/type/datetime", "value": "2009-12-11T03:39:36.969404"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:39:36.969404"}, "latest_revision": 1, "key": "/works/OL10860542W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4525412A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10860672W 3 2010-12-06T07:56:06.123874 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:39:36.969404"}, "subject_places": ["United States", "Western Front"], "subjects": ["100th Division", "399th Infantry", "Campaigns", "Regimental histories", "United States", "United States. Army. Division, 100th", "World War, 1939-1945"], "latest_revision": 3, "key": "/works/OL10860672W", "title": "399th in action with the 100th Infantry Division", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4525496A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-06T07:56:06.123874"}, "revision": 3}
+/type/work /works/OL1086073W 3 2010-04-28T07:15:43.867005 {"title": "St. Brandan", "created": {"type": "/type/datetime", "value": "2009-12-09T20:28:29.097186"}, "covers": [5802993], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:15:43.867005"}, "latest_revision": 3, "key": "/works/OL1086073W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL112787A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10861891W 1 2009-12-11T03:39:50.634734 {"title": "Night photography simplified", "created": {"type": "/type/datetime", "value": "2009-12-11T03:39:50.634734"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:39:50.634734"}, "latest_revision": 1, "key": "/works/OL10861891W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4526298A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10862062W 2 2010-01-18T14:05:53.201801 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:39:50.634734"}, "title": "Population productivity and food habits of harbor seals in the Prince William Sound - Copper River Delta Area, Alaska", "subject_places": ["Alaska"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T14:05:53.201801"}, "latest_revision": 2, "key": "/works/OL10862062W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4526353A"}}], "type": {"key": "/type/work"}, "subjects": ["Harbor seal", "Seals (Animals)", "Behavior"], "revision": 2}
+/type/work /works/OL10862153W 2 2010-01-18T14:05:53.201801 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:39:50.634734"}, "title": "Expectations in economic theory / by S.A. Oz ga", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T14:05:53.201801"}, "latest_revision": 2, "key": "/works/OL10862153W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4526404A"}}], "type": {"key": "/type/work"}, "subjects": ["Economic forecasting"], "revision": 2}
+/type/work /works/OL10862889W 4 2010-12-06T07:56:50.305237 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:39:55.244751"}, "subject_places": ["Pacific Northwest"], "subjects": ["Economic aspects", "Economic aspects of Forests and forestry", "Economic aspects of Land use", "Forest reserves", "Forests and forestry", "Land use", "Multiple use", "Watershed management"], "latest_revision": 4, "key": "/works/OL10862889W", "title": "An economic analysis of nontimber uses of forestland in the Pacific Northwest", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4526828A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-06T07:56:50.305237"}, "revision": 4}
+/type/work /works/OL10862993W 2 2010-01-18T14:05:53.201801 {"title": "Plenarnye doklady, Baku, 21-25 sentyabrya 1981g", "created": {"type": "/type/datetime", "value": "2009-12-11T03:39:55.244751"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-18T14:05:53.201801"}, "latest_revision": 2, "key": "/works/OL10862993W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4526902A"}}], "subject_people": ["D. I. Mendeleev"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10863091W 3 2010-12-03T18:34:45.195534 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:39:55.244751"}, "subject_places": ["United States"], "subjects": ["Forest policy", "History", "Timber", "United States", "United States. Forest Service", "Valuation"], "latest_revision": 3, "key": "/works/OL10863091W", "title": "The Forest Service timber appraisal system", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4526919A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T18:34:45.195534"}, "revision": 3}
+/type/work /works/OL10863444W 1 2009-12-11T03:39:55.244751 {"title": "A review of progress", "created": {"type": "/type/datetime", "value": "2009-12-11T03:39:55.244751"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:39:55.244751"}, "latest_revision": 1, "key": "/works/OL10863444W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4527105A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10863861W 2 2010-01-18T14:10:44.478362 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:39:56.712041"}, "title": "Abolition of internal taxes. Letter from the Commissioner of Internal Revenue in answer to a resolution of the House, of March 11, in relation to the expediency and advantage or disadvantage to the government of abolishing the internal taxes, &c", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T14:10:44.478362"}, "latest_revision": 2, "key": "/works/OL10863861W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4527173A"}}], "type": {"key": "/type/work"}, "subjects": ["Taxation"], "revision": 2}
+/type/work /works/OL10865084W 2 2010-01-18T14:15:35.642468 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:39:58.600684"}, "title": "Tariff on works of foreign artists. Message from the President of the United States, transmitting a report from the Secretary of State relative to tariff discrimination against works of foreign artists", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T14:15:35.642468"}, "latest_revision": 2, "key": "/works/OL10865084W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4527173A"}}], "type": {"key": "/type/work"}, "subjects": ["Art", "Tariff", "International trade"], "revision": 2}
+/type/work /works/OL10865087W 3 2010-08-09T20:59:06.166791 {"subtitle": "prepared statements of Administration witnesses, appearing February 2 and 3, 1977", "last_modified": {"type": "/type/datetime", "value": "2010-08-09T20:59:06.166791"}, "latest_revision": 3, "key": "/works/OL10865087W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4527173A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T03:39:58.600684"}, "title": "Tax aspects of the President's economic stimulus program hearings", "subject_places": ["United States"], "subjects": ["Economic policy", "Taxation"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10865279W 3 2010-08-09T21:03:35.573766 {"subtitle": "hearings before the United States House Committee on Ways and Means, Sixtieth Congress, first session, on Mar. 14, 17, 1908", "last_modified": {"type": "/type/datetime", "value": "2010-08-09T21:03:35.573766"}, "latest_revision": 3, "key": "/works/OL10865279W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4527173A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T03:39:58.600684"}, "title": "Whisky Bottled in Bond -- Fruit Brandy", "subject_places": ["United States"], "subjects": ["Taxation", "Wine and wine making"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10865819W 2 2010-01-18T14:20:52.090769 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:02.584711"}, "title": "Dynamic feedback in finite- and infinite-dimensional linear systems", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T14:20:52.090769"}, "latest_revision": 2, "key": "/works/OL10865819W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4527281A"}}], "type": {"key": "/type/work"}, "subjects": ["System analysis", "Control theory"], "revision": 2}
+/type/work /works/OL1086587W 5 2020-08-11T07:35:39.227432 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:28:34.427744"}, "subjects": ["Popes", "Ecclesiastical Privileges and immunities", "Church history", "Excommunication", "Temporal power", "Slavery and the church"], "latest_revision": 5, "key": "/works/OL1086587W", "title": "Studies in church history", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL112822A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-08-11T07:35:39.227432"}, "covers": [2865394], "revision": 5}
+/type/work /works/OL10866043W 3 2012-05-08T21:09:42.751209 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:02.584711"}, "subject_places": ["United States", "Iowa", "Arkansas", "Minnesota"], "subjects": ["Fish hatcheries", "Registration and transfer", "Land titles"], "latest_revision": 3, "key": "/works/OL10866043W", "title": "Conveyance of certain national fish hatcheries", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL48172A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-08T21:09:42.751209"}, "revision": 3}
+/type/work /works/OL10866081W 3 2012-05-08T21:09:42.751209 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:02.584711"}, "subject_places": ["United States"], "subjects": ["Law and legislation", "Wetlands", "Conservation", "Birds", "Wildlife refuges"], "latest_revision": 3, "key": "/works/OL10866081W", "title": "Emergency Wetlands Resources Act of 1986", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL48172A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-08T21:09:42.751209"}, "revision": 3}
+/type/work /works/OL10866272W 3 2012-05-08T21:09:42.751209 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:02.584711"}, "subject_places": ["United States"], "subjects": ["Federal aid to water resources development", "Law and legislation", "Water resources development"], "latest_revision": 3, "key": "/works/OL10866272W", "title": "Water Resources Research Act Amendments of 1996", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL48172A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-08T21:09:42.751209"}, "revision": 3}
+/type/work /works/OL10866426W 2 2012-05-18T21:50:44.880498 {"title": "Race and employment", "created": {"type": "/type/datetime", "value": "2009-12-11T03:40:02.584711"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-18T21:50:44.880498"}, "latest_revision": 2, "key": "/works/OL10866426W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4527321A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10866967W 2 2010-01-18T14:26:09.327867 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:11.526105"}, "title": "Free location of secondary logging roads", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T14:26:09.327867"}, "latest_revision": 2, "key": "/works/OL10866967W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4527559A"}}], "type": {"key": "/type/work"}, "subjects": ["S.", "Forest roads", "Design and construction"], "revision": 2}
+/type/work /works/OL10867131W 2 2010-01-18T14:26:09.327867 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:11.526105"}, "title": "Organic chemicals in drinking water", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T14:26:09.327867"}, "latest_revision": 2, "key": "/works/OL10867131W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4527608A"}}], "type": {"key": "/type/work"}, "subjects": ["Drinking water", "Organic water pollutants"], "revision": 2}
+/type/work /works/OL10867196W 3 2013-08-12T19:04:20.753997 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:11.526105"}, "subjects": ["Fiction", "Italy", "Translations into English"], "subject_people": ["Cesare Pavese"], "key": "/works/OL10867196W", "title": "The house on the hill", "latest_revision": 3, "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4326210A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2013-08-12T19:04:20.753997"}, "revision": 3}
+/type/work /works/OL10867468W 2 2010-01-18T14:31:32.053404 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:11.526105"}, "title": "Kratki\u012d slovar\u02b9 sudebno-medit\ufe20s\ufe21inskikh terminov", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T14:31:32.053404"}, "latest_revision": 2, "key": "/works/OL10867468W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4527719A"}}], "type": {"key": "/type/work"}, "subjects": ["Russian", "Medical jurisprudence", "Dictionaries"], "revision": 2}
+/type/work /works/OL10867577W 1 2009-12-11T03:40:11.526105 {"title": "Blaby, Leicestershire", "created": {"type": "/type/datetime", "value": "2009-12-11T03:40:11.526105"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:40:11.526105"}, "latest_revision": 1, "key": "/works/OL10867577W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4527757A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1086773W 2 2010-01-18T14:31:32.053404 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:28:34.427744"}, "title": "Faiths and folklore", "subject_places": ["Great Britain"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T14:31:32.053404"}, "latest_revision": 2, "key": "/works/OL1086773W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL112831A"}}], "type": {"key": "/type/work"}, "subjects": ["Dictionaries", "Social life and customs", "Folklore", "Legends", "Fasts and feasts", "Superstition"], "revision": 2}
+/type/work /works/OL10867855W 2 2010-01-18T14:31:32.053404 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:16.560743"}, "title": "Desert dangers", "subject_places": ["New Southwest"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T14:31:32.053404"}, "latest_revision": 2, "key": "/works/OL10867855W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4527879A"}}], "type": {"key": "/type/work"}, "subjects": ["Desert survival", "Outdoor life"], "revision": 2}
+/type/work /works/OL10868194W 4 2020-12-07T14:59:36.782305 {"subject_places": ["Germany", "M\u00fcnsterland", "M\u00fcnsterland (Germany)"], "subjects": ["German Personal narratives", "History", "Personal narratives, German", "World War, 1939-1945", "Biography"], "key": "/works/OL10868194W", "title": "Das Bild hinter den B\u00fcchern", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4528030A"}}], "type": {"key": "/type/work"}, "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T03:40:16.560743"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-07T14:59:36.782305"}}
+/type/work /works/OL10868554W 2 2010-01-18T14:36:58.617208 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:16.560743"}, "title": "Fiscal year 1991 priorities for research, extension, and higher education", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T14:36:58.617208"}, "latest_revision": 2, "key": "/works/OL10868554W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4528151A"}}], "type": {"key": "/type/work"}, "subjects": ["Agricultural education", "Agricultural extension work", "Agriculture", "Research"], "revision": 2}
+/type/work /works/OL10868826W 2 2010-01-18T14:36:58.617208 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:17.563865"}, "title": "The Barrundia case. Message from the President of the United States, transmitting, in response to a resolution of the House of Representatives, a report of the Secretary of State and accompanying correspondence in relation to the killing of General J. Martin Barrundia", "subject_places": ["Guatemala"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T14:36:58.617208"}, "latest_revision": 2, "key": "/works/OL10868826W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4528217A"}}], "type": {"key": "/type/work"}, "subjects": ["Homicide", "Officers", "Armed Forces"], "revision": 2}
+/type/work /works/OL10869254W 2 2010-01-18T14:36:58.617208 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:17.563865"}, "title": "Henry Leonard to accept decoration from Emperor and Empress Dowager of China. Letter from the Acting Secretary of State asking that permission be granted to Capt. Henry Leonard, U. S. Marine Corps, to accept a decoration from the Emperor and Empress Dowager of China", "subject_places": ["China"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T14:36:58.617208"}, "latest_revision": 2, "key": "/works/OL10869254W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4528217A"}}], "type": {"key": "/type/work"}, "subjects": ["Military decorations"], "revision": 2}
+/type/work /works/OL10869666W 2 2010-01-18T14:42:08.742411 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:17.563865"}, "title": "Reciprocal commercial relations with Canada", "subject_places": ["Canada"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T14:42:08.742411"}, "latest_revision": 2, "key": "/works/OL10869666W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4528217A"}}], "type": {"key": "/type/work"}, "subjects": ["International economic relations", "International relations"], "revision": 2}
+/type/work /works/OL1086975W 1 2009-12-09T20:05:01.044196 {"title": "Grundfragen der Soziologie", "created": {"type": "/type/datetime", "value": "2009-12-09T20:05:01.044196"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T20:05:01.044196"}, "latest_revision": 1, "key": "/works/OL1086975W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL112837A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10869944W 2 2010-01-18T14:42:08.742411 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:21.440780"}, "title": "Treaties with German States. Message from the President of the United States, in answer to a resolution of the 9th ultimo relative to correspondence and negotiation relating to the rights of naturalized citizens in the German States", "subject_places": ["Germany"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T14:42:08.742411"}, "latest_revision": 2, "key": "/works/OL10869944W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4528217A"}}], "type": {"key": "/type/work"}, "subjects": ["Citizenship"], "revision": 2}
+/type/work /works/OL10870078W 2 2010-01-18T14:42:08.742411 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:21.440780"}, "title": "The Jewish national home in Palestine", "subject_places": ["Palestine"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T14:42:08.742411"}, "latest_revision": 2, "key": "/works/OL10870078W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4528217A"}}], "subject_times": ["1917-1948"], "type": {"key": "/type/work"}, "subjects": ["Zionism", "Mandates", "Jews", "Palestinian Arabs", "History", "Jewish-Arab relations"], "revision": 2}
+/type/work /works/OL10870621W 2 2010-01-18T14:47:17.346065 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:21.440780"}, "title": "First-year response of Douglas-fir after release from snowbrush ceanothus", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T14:47:17.346065"}, "latest_revision": 2, "key": "/works/OL10870621W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4528436A"}}], "type": {"key": "/type/work"}, "subjects": ["Douglas fir"], "revision": 2}
+/type/work /works/OL10870941W 2 2010-01-18T14:47:17.346065 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:26.235438"}, "title": "Kenneth G. Ward Border Station", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T14:47:17.346065"}, "latest_revision": 2, "key": "/works/OL10870941W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4528557A"}}], "type": {"key": "/type/work"}, "subjects": ["Kenneth G. Ward Border Station (Lynden, Wash.)"], "revision": 2}
+/type/work /works/OL10871051W 2 2010-01-18T14:47:17.346065 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:26.235438"}, "title": "al- Shar\u012b\u02bbah al-Isl\u0101m\u012byah wa-al-\u02bbalm\u0101n\u012byah al-gharb\u012byah", "subject_places": ["Islamic countries"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T14:47:17.346065"}, "latest_revision": 2, "key": "/works/OL10871051W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4528560A"}}], "subject_times": ["21st century"], "type": {"key": "/type/work"}, "subjects": ["Islam and secularism", "Civilization", "Western influences", "Islam"], "revision": 2}
+/type/work /works/OL10871275W 2 2010-01-18T14:47:17.346065 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:26.235438"}, "title": "Demand feeding in a recirculating fish culture system and 1983 summer observations", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T14:47:17.346065"}, "latest_revision": 2, "key": "/works/OL10871275W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4528646A"}}], "type": {"key": "/type/work"}, "subjects": ["Fishes", "Feeding and feeds", "Technique", "Fish-culture"], "revision": 2}
+/type/work /works/OL10872002W 4 2012-05-10T12:19:17.419014 {"last_modified": {"type": "/type/datetime", "value": "2012-05-10T12:19:17.419014"}, "title": "Full committee discussion of program for 2d session, 84th Congress", "created": {"type": "/type/datetime", "value": "2009-12-11T03:40:27.483918"}, "subjects": ["United States", "United States. Congress. House. Committee on Armed Services"], "latest_revision": 4, "key": "/works/OL10872002W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL51762A"}}], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL10872053W 4 2012-05-10T12:19:17.419014 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:27.483918"}, "subject_places": ["United States"], "subjects": ["Armed Forces", "Promotions", "Appropriations and expenditures"], "latest_revision": 4, "key": "/works/OL10872053W", "title": "Full committee hearings on H. R. 2332, to require an annual review of military personnel requirements", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL51762A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-10T12:19:17.419014"}, "revision": 4}
+/type/work /works/OL10872152W 5 2012-05-10T12:19:17.419014 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:27.483918"}, "subject_places": ["United States"], "subjects": ["Executive advisory bodies", "Officials and employees", "United States", "United States. Dept. of Defense", "United States. Joint Chiefs of Staff"], "latest_revision": 5, "key": "/works/OL10872152W", "title": "Joint Chiefs of Staff Reorganization Act of 1982", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL51762A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-10T12:19:17.419014"}, "revision": 5}
+/type/work /works/OL10872609W 4 2012-05-02T14:37:21.177114 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:27.483918"}, "subject_places": ["South Carolina"], "subjects": ["Law and legislation", "Historic sites"], "latest_revision": 4, "key": "/works/OL10872609W", "title": "Authorizing the establishment of the Charles Pinckney National Historic Site in the state of South Carolina, and for other purposes", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL64335A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-02T14:37:21.177114"}, "revision": 4}
+/type/work /works/OL10872787W 4 2012-05-02T14:37:21.177114 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:27.483918"}, "subject_places": ["Alaska", "Admiralty Island (Alaska)"], "subjects": ["Law and legislation", "Natural monuments", "Wilderness areas"], "latest_revision": 4, "key": "/works/OL10872787W", "title": "Improving federal management of lands on Admiralty Island, Alaska", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL64335A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-02T14:37:21.177114"}, "revision": 4}
+/type/work /works/OL10872874W 4 2012-05-02T14:37:21.177114 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:28.659388"}, "subject_places": ["United States", "Caribbean Area"], "subjects": ["Deforestation", "Control", "Forest conservation", "Rain forests", "Forest management"], "latest_revision": 4, "key": "/works/OL10872874W", "title": "Providing for studies and planning activities for improvement of tropical forest management, including forest management of insular areas and jurisdictions and public lands of the United States, and for other purposes", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL64335A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-02T14:37:21.177114"}, "revision": 4}
+/type/work /works/OL10872933W 4 2012-05-02T14:37:21.177114 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:28.659388"}, "subject_places": ["United States", "North America"], "subjects": ["Indian children", "Child welfare", "Law and legislation", "Child abuse", "Legal status, laws"], "latest_revision": 4, "key": "/works/OL10872933W", "title": "Regulating Indian child protection and prevent child abuse on Indian reservations", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL64335A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-02T14:37:21.177114"}, "revision": 4}
+/type/work /works/OL10873008W 4 2012-05-02T14:37:21.177114 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:28.659388"}, "subject_places": ["Colorado"], "subjects": ["Indians of North America", "Water rights", "Claims", "Ute Indians", "Legal status, laws"], "latest_revision": 4, "key": "/works/OL10873008W", "title": "Animas-La Plata water rights settlement", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL64335A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-02T14:37:21.177114"}, "revision": 4}
+/type/work /works/OL10873035W 1 2009-12-11T03:40:28.659388 {"title": "Mem\u00f3rias de um doido", "created": {"type": "/type/datetime", "value": "2009-12-11T03:40:28.659388"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:40:28.659388"}, "latest_revision": 1, "key": "/works/OL10873035W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4528901A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10873047W 2 2010-01-18T14:58:40.456686 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:28.659388"}, "title": "Concurrent resolution on the budget--fiscal year 1989", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T14:58:40.456686"}, "latest_revision": 2, "key": "/works/OL10873047W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4528902A"}}], "type": {"key": "/type/work"}, "subjects": ["Appropriations and expenditures, 1990-1991", "Budget", "Appropriations and expenditures, 1989"], "revision": 2}
+/type/work /works/OL10873167W 4 2012-05-10T20:10:20.026646 {"last_modified": {"type": "/type/datetime", "value": "2012-05-10T20:10:20.026646"}, "title": "Amending the rules of the House of Representatives to establish an Office for the Bicentennial of the House of Representatives", "created": {"type": "/type/datetime", "value": "2009-12-11T03:40:28.659388"}, "subjects": ["United States", "United States. Congress. House. Office for the Bicentennial of the House of Representatives"], "latest_revision": 4, "key": "/works/OL10873167W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL47374A"}}], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL10873692W 4 2012-05-10T20:10:20.026646 {"last_modified": {"type": "/type/datetime", "value": "2012-05-10T20:10:20.026646"}, "title": "Educational bills", "created": {"type": "/type/datetime", "value": "2009-12-11T03:40:28.659388"}, "subjects": ["Education"], "latest_revision": 4, "key": "/works/OL10873692W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL47374A"}}], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL10873722W 4 2012-05-10T20:10:20.026646 {"last_modified": {"type": "/type/datetime", "value": "2012-05-10T20:10:20.026646"}, "title": "Expenses of a preparatory commission to consider questions of reduction and limitation of armaments", "created": {"type": "/type/datetime", "value": "2009-12-11T03:40:28.659388"}, "subjects": ["Disarmament", "Meetings", "Executive advisory bodies"], "latest_revision": 4, "key": "/works/OL10873722W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL47374A"}}], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL10875103W 4 2011-11-04T00:10:48.535989 {"subtitle": "Hearing before the Committee on Agriculture, House of Representatives, Eighty-seventh Congress, second session, on H.R. 10010", "last_modified": {"type": "/type/datetime", "value": "2011-11-04T00:10:48.535989"}, "latest_revision": 4, "key": "/works/OL10875103W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4528915A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T03:40:30.840976"}, "title": "Food and agriculture act of 1962", "subject_places": ["United States"], "subjects": ["Agriculture", "Agriculture and state", "Economic aspects", "Economic aspects of Agriculture"], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL10875113W 3 2011-11-04T00:10:51.648414 {"subtitle": "report together with minority and additional views (to accompany H.R. 1135) (including cost estimate of the Congressional Budget Office)", "last_modified": {"type": "/type/datetime", "value": "2011-11-04T00:10:51.648414"}, "latest_revision": 3, "key": "/works/OL10875113W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4528915A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T03:40:30.840976"}, "title": "Food Stamp Reform and Commodity Distribution Act", "subject_places": ["United States"], "subjects": ["Food stamps", "Law and legislation"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10875215W 3 2011-11-04T00:11:40.967737 {"subtitle": "report (to accompany H.R. 701) (including cost estimate of the Congressional Budget Office)", "last_modified": {"type": "/type/datetime", "value": "2011-11-04T00:11:40.967737"}, "latest_revision": 3, "key": "/works/OL10875215W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4528915A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T03:40:30.840976"}, "title": "Land conveyance, Rolla Ranger District, Mark Twain National Forest MO", "subject_places": ["Mark Twain National Forest (Mo.)", "Mark Twain National Forest", "Missouri"], "subjects": ["Registration and transfer", "Land titles"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10875337W 3 2010-12-03T15:18:44.806194 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:18:44.806194"}, "title": "Proceeds of public lands. Letter from the Secretary of the Interior, transmitting report of the disbursements for the fiscal year ending June 30, 1916, under provisions of acts to endow Colleges of Agriculture and Mechanic Arts", "created": {"type": "/type/datetime", "value": "2009-12-11T03:40:30.840976"}, "subjects": ["Education, Higher", "Federal aid to education", "Higher Education", "Vocational education"], "latest_revision": 3, "key": "/works/OL10875337W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4528915A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10875712W 2 2010-01-18T15:14:00.601413 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:30.840976"}, "title": "Slack-Filled Packages", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T15:14:00.601413"}, "latest_revision": 2, "key": "/works/OL10875712W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4528915A"}}], "type": {"key": "/type/work"}, "subjects": ["Packaging", "Law and legislation"], "revision": 2}
+/type/work /works/OL10876058W 3 2010-12-03T14:56:36.655729 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:56:36.655729"}, "title": "Advertising of lotteries in the District of Columbia", "created": {"type": "/type/datetime", "value": "2009-12-11T03:40:32.650483"}, "subjects": ["Advertising", "District of Columbia", "Lotteries"], "latest_revision": 3, "key": "/works/OL10876058W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4528955A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10876229W 3 2010-12-03T15:23:41.562339 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:23:41.562339"}, "title": "Bathing pools", "created": {"type": "/type/datetime", "value": "2009-12-11T03:40:32.650483"}, "subjects": ["District of Columbia", "Swimming pools"], "latest_revision": 3, "key": "/works/OL10876229W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4528955A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1087648W 2 2011-11-11T22:55:43.144334 {"title": "The dry ground", "created": {"type": "/type/datetime", "value": "2009-12-09T20:28:39.629398"}, "last_modified": {"type": "/type/datetime", "value": "2011-11-11T22:55:43.144334"}, "latest_revision": 2, "key": "/works/OL1087648W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4367088A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10876915W 3 2010-12-03T15:20:13.026335 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:20:13.026335"}, "title": "Payment of claims for material and labor furnished for the District of Columbia", "created": {"type": "/type/datetime", "value": "2009-12-11T03:40:33.768690"}, "subjects": ["Building laws", "Claims", "Insurance, Surety and fidelity", "Surety and fidelity Insurance"], "latest_revision": 3, "key": "/works/OL10876915W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4528955A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10876955W 3 2010-12-03T14:57:13.182580 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:57:13.182580"}, "title": "Prevention of fraudulent transactions on the part of commission merchants in the District of Columbia", "created": {"type": "/type/datetime", "value": "2009-12-11T03:40:33.768690"}, "subjects": ["District of Columbia", "Fees, Professional", "Fraud", "Professional Fees"], "latest_revision": 3, "key": "/works/OL10876955W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4528955A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1087732W 3 2010-04-28T07:17:47.985892 {"title": "Criminology And Penology V2", "created": {"type": "/type/datetime", "value": "2009-12-09T20:28:39.629398"}, "covers": [2485405], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:17:47.985892"}, "latest_revision": 3, "key": "/works/OL1087732W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL112880A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10877379W 3 2010-12-03T14:54:35.092091 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:54:35.092091"}, "title": "To regulate sale of tickets on street railroads in the District of Columbia", "created": {"type": "/type/datetime", "value": "2009-12-11T03:40:33.768690"}, "subjects": ["District of Columbia", "Railroad tickets", "Street-railroads"], "latest_revision": 3, "key": "/works/OL10877379W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4528955A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10877395W 3 2010-12-03T15:15:17.033432 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:15:17.033432"}, "title": "Transactions in real property by corporations of District of Columbia. Letter from the President of the Board of Commissioners of the District of Columbia transmitting a draft of a bill relating to transactions in real property by corporations", "created": {"type": "/type/datetime", "value": "2009-12-11T03:40:33.768690"}, "subjects": ["District of Columbia", "Real estate business"], "latest_revision": 3, "key": "/works/OL10877395W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4528955A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10877684W 3 2010-12-03T14:39:50.412418 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:33.768690"}, "subject_places": ["United States"], "subjects": ["Older people", "United States", "United States. Administration on Aging"], "latest_revision": 3, "key": "/works/OL10877684W", "title": "Administration of aging", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4528969A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:39:50.412418"}, "revision": 3}
+/type/work /works/OL1087786W 2 2010-01-18T15:24:22.769070 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:28:39.629398"}, "title": "The liberal view", "subject_places": ["Great Britain"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T15:24:22.769070"}, "latest_revision": 2, "key": "/works/OL1087786W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL112884A"}}], "type": {"key": "/type/work"}, "subjects": ["Tariff", "Social policy", "Protectionism"], "revision": 2}
+/type/work /works/OL10877874W 2 2010-01-18T15:24:22.769070 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:38.023009"}, "title": "Odler Workers Benefit Protection Act", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T15:24:22.769070"}, "latest_revision": 2, "key": "/works/OL10877874W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4528969A"}}], "type": {"key": "/type/work"}, "subjects": ["Age and employment", "Law and legislation", "Discrimination in employment"], "revision": 2}
+/type/work /works/OL10879174W 3 2010-12-06T07:57:56.030310 {"last_modified": {"type": "/type/datetime", "value": "2010-12-06T07:57:56.030310"}, "title": "Symposium on Energy and Human Health", "created": {"type": "/type/datetime", "value": "2009-12-11T03:40:42.978003"}, "subjects": ["Congresses", "Electric power production", "Health aspects", "Health aspects of Electric power production", "Power resources"], "latest_revision": 3, "key": "/works/OL10879174W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529370A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10879372W 3 2010-12-03T14:56:36.655729 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:42.978003"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10879372W", "title": "Abraham Lisner", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:56:36.655729"}, "revision": 3}
+/type/work /works/OL10879413W 3 2010-12-03T15:13:24.377829 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:42.978003"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10879413W", "title": "Abram Sours", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:13:24.377829"}, "revision": 3}
+/type/work /works/OL10879432W 3 2010-12-03T15:11:03.767616 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:42.978003"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10879432W", "title": "Absalom Sivley", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:11:03.767616"}, "revision": 3}
+/type/work /works/OL10879595W 2 2010-01-18T15:30:09.869794 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:42.978003"}, "title": "Additional entries under Enlarged Homestead Act", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T15:30:09.869794"}, "latest_revision": 2, "key": "/works/OL10879595W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "subjects": ["Public lands", "Homestead law"], "revision": 2}
+/type/work /works/OL10879650W 3 2010-12-03T15:19:18.331274 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:19:18.331274"}, "title": "Additional policemen for Capitol", "created": {"type": "/type/datetime", "value": "2009-12-11T03:40:42.978003"}, "subjects": ["District of Columbia", "Public buildings", "Public lands"], "latest_revision": 3, "key": "/works/OL10879650W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10880287W 3 2010-12-03T14:55:13.632230 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:43.968296"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10880287W", "title": "Allen Feathers", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:55:13.632230"}, "revision": 3}
+/type/work /works/OL10880569W 2 2010-01-18T15:36:15.859866 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:43.968296"}, "title": "Amending an act granting railroads right of way through public lands", "subject_places": ["Mississippi River"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T15:36:15.859866"}, "latest_revision": 2, "key": "/works/OL10880569W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "subjects": ["Reservoirs"], "revision": 2}
+/type/work /works/OL10880716W 2 2010-01-18T15:42:13.805345 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:43.968296"}, "title": "Amend Tariff Act of 1930: reciprocal trade agreements", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T15:42:13.805345"}, "latest_revision": 2, "key": "/works/OL10880716W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "subjects": ["Commercial treaties", "Tariff", "International trade"], "revision": 2}
+/type/work /works/OL10880734W 3 2010-12-03T15:20:37.059169 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:20:37.059169"}, "title": "Amend the insurance laws of the District of Columbia", "created": {"type": "/type/datetime", "value": "2009-12-11T03:40:43.968296"}, "subjects": ["District of Columbia", "Insurance companies", "Insurance law"], "latest_revision": 3, "key": "/works/OL10880734W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1088096W 2 2010-01-18T15:42:13.805345 {"title": "The place in legal history of Sir William Shareshull", "created": {"type": "/type/datetime", "value": "2009-12-09T20:28:39.629398"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-18T15:42:13.805345"}, "latest_revision": 2, "key": "/works/OL1088096W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL112902A"}}], "subject_people": ["Shareshull Sir William (1289?-1370)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10881465W 2 2010-01-18T15:42:13.805345 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:45.191638"}, "title": "Army appropriation bill, fiscal year 1922", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T15:42:13.805345"}, "latest_revision": 2, "key": "/works/OL10881465W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "subjects": ["Armies", "Appropriations and expenditures", "Armed Forces"], "revision": 2}
+/type/work /works/OL10881498W 3 2010-12-03T15:22:05.290879 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:45.191638"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10881498W", "title": "Arthur H. Bagshaw", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:22:05.290879"}, "revision": 3}
+/type/work /works/OL1088149W 6 2020-12-01T19:53:57.935953 {"last_modified": {"type": "/type/datetime", "value": "2020-12-01T19:53:57.935953"}, "title": "The Roman empire", "created": {"type": "/type/datetime", "value": "2009-12-09T20:28:39.629398"}, "covers": [1949531], "subject_places": ["Byzantine Empire", "Rome"], "subjects": ["History", "Constitutional history"], "latest_revision": 6, "key": "/works/OL1088149W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL112906A"}}], "subject_times": ["Empire, 30 B.C.-476 A.D."], "type": {"key": "/type/work"}, "revision": 6}
+/type/work /works/OL1088155W 4 2021-12-25T13:14:21.186562 {"title": "The story of old Japan", "covers": [7415002], "subject_places": ["Japan"], "subjects": ["History", "Japan, history"], "key": "/works/OL1088155W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL112907A"}}], "subject_times": ["To 1868"], "type": {"key": "/type/work"}, "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-09T20:28:39.629398"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-25T13:14:21.186562"}}
+/type/work /works/OL10881669W 3 2010-12-03T15:04:44.644951 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:45.191638"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10881669W", "title": "Augustus L. Kidder", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:04:44.644951"}, "revision": 3}
+/type/work /works/OL10882419W 2 2010-01-18T15:47:29.318853 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:46.149053"}, "title": "A Bill Directing the Terms on Which Lands Sold at Public Sale, and That Revert for Failure in Payment, Shall Again Be Sold", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T15:47:29.318853"}, "latest_revision": 2, "key": "/works/OL10882419W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "subjects": ["Public lands", "Public land sales"], "revision": 2}
+/type/work /works/OL10882584W 2 2010-03-14T20:43:35.824925 {"title": "A Bill Incorporating the Columbian Manufacturing Company of Alexandria in the District of Columbia", "created": {"type": "/type/datetime", "value": "2009-12-11T03:40:46.149053"}, "last_modified": {"type": "/type/datetime", "value": "2010-03-14T20:43:35.824925"}, "latest_revision": 2, "key": "/works/OL10882584W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "subjects": ["Columbian Manufacturing Company"], "revision": 2}
+/type/work /works/OL10882685W 2 2010-01-18T15:53:31.566943 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:46.149053"}, "title": "A Bill Making Provision for Three Additional Military Academies", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T15:53:31.566943"}, "latest_revision": 2, "key": "/works/OL10882685W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "subjects": ["Military education"], "revision": 2}
+/type/work /works/OL10882749W 3 2010-12-03T13:41:49.313907 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:41:49.313907"}, "title": "A Bill Respecting the Compensation of Public Ministers", "created": {"type": "/type/datetime", "value": "2009-12-11T03:40:46.149053"}, "subjects": ["American Diplomatic and consular service", "Diplomatic and consular service, American", "Selection and appointment", "United States", "United States. Minister Plenipotentiary (France)", "United States. Minister Plenipotentiary (Great Britain)", "United States. Minister Plenipotentiary (Russia)"], "latest_revision": 3, "key": "/works/OL10882749W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1088293W 3 2010-04-28T07:17:47.985892 {"title": "Bert rand Russell--Dictionary of mind, matter & morals", "created": {"type": "/type/datetime", "value": "2009-12-09T20:28:39.629398"}, "covers": [4696951], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:17:47.985892"}, "latest_revision": 3, "key": "/works/OL1088293W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL112912A"}}], "subjects": ["Philosophy", "Dictionaries"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10883125W 2 2010-01-18T15:53:31.566943 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:47.324897"}, "title": "Boise and Arrowrock Railroad", "subject_places": ["Idaho"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T15:53:31.566943"}, "latest_revision": 2, "key": "/works/OL10883125W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "subjects": ["Railroads"], "revision": 2}
+/type/work /works/OL10883453W 2 2010-01-18T15:53:31.566943 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:47.324897"}, "title": "Capital losses", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T15:53:31.566943"}, "latest_revision": 2, "key": "/works/OL10883453W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "subjects": ["Taxation", "Capital investments"], "revision": 2}
+/type/work /works/OL1088368W 4 2020-08-18T06:42:32.296079 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:28:43.478794"}, "subjects": ["Philosophy, british"], "latest_revision": 4, "key": "/works/OL1088368W", "title": "La Conquista De La Felicidad / the Conquest of Happiness (Ensayo-Filosofia / Essay-Philosophy)", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL112912A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-08-18T06:42:32.296079"}, "covers": [4918611], "revision": 4}
+/type/work /works/OL10883727W 3 2010-12-03T15:05:26.671428 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:47.324897"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10883727W", "title": "Catharine T. R. Mathews", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:05:26.671428"}, "revision": 3}
+/type/work /works/OL10883847W 2 2010-01-18T15:59:15.476780 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:48.372873"}, "title": "Centennial of the Louisiana Purchase", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T15:59:15.476780"}, "latest_revision": 2, "key": "/works/OL10883847W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "subjects": ["Anniversaries", "Louisiana Purchase", "History"], "revision": 2}
+/type/work /works/OL10883877W 3 2010-12-03T14:57:48.946148 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:57:48.946148"}, "title": "Certain employes of the record force in the Government Printing Office", "created": {"type": "/type/datetime", "value": "2009-12-11T03:40:48.372873"}, "subjects": ["Officials and employees", "United States", "United States. Congress", "Wages"], "latest_revision": 3, "key": "/works/OL10883877W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10884926W 3 2010-12-03T14:55:48.919821 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:49.421661"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10884926W", "title": "Clark Stewart", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:55:48.919821"}, "revision": 3}
+/type/work /works/OL10885237W 2 2010-01-18T16:04:48.074210 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:49.421661"}, "title": "Condemned cannon to City of Robinson, Ill", "subject_places": ["Robinson (Ill.)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T16:04:48.074210"}, "latest_revision": 2, "key": "/works/OL10885237W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "subjects": ["Artillery", "Surplus government property"], "revision": 2}
+/type/work /works/OL10885261W 3 2010-12-03T15:01:05.050261 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:49.421661"}, "subject_places": ["Montezuma (Iowa)"], "subjects": ["Artillery", "Grand Army of the Republic"], "latest_revision": 3, "key": "/works/OL10885261W", "title": "Condemned cannon to Wisner Post, G. A. R., Montezuma, Iowa", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:01:05.050261"}, "revision": 3}
+/type/work /works/OL10885558W 2 2010-01-18T16:10:44.374967 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:49.421661"}, "title": "Creation of organized rural communities to demonstrate the benefits of planned settlement and supervised rural development", "subject_places": ["Southern States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T16:10:44.374967"}, "latest_revision": 2, "key": "/works/OL10885558W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "subjects": ["Rural conditions"], "revision": 2}
+/type/work /works/OL10885586W 3 2010-12-03T15:05:26.671428 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:49.421661"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10885586W", "title": "Cuba Submarine Telegraph Company", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:05:26.671428"}, "revision": 3}
+/type/work /works/OL10886062W 3 2010-12-03T14:50:27.623981 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:50.606845"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10886062W", "title": "David Ryan", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:50:27.623981"}, "revision": 3}
+/type/work /works/OL10886143W 2 2010-01-18T16:10:44.374967 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:50.606845"}, "title": "Declining Battell gift of land for national park", "subject_places": ["Vermont"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T16:10:44.374967"}, "latest_revision": 2, "key": "/works/OL10886143W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "subjects": ["Gifts", "National parks and reserves"], "revision": 2}
+/type/work /works/OL108862W 6 2020-08-01T05:08:17.156231 {"covers": [354430], "last_modified": {"type": "/type/datetime", "value": "2020-08-01T05:08:17.156231"}, "latest_revision": 6, "key": "/works/OL108862W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL32553A"}}], "created": {"type": "/type/datetime", "value": "2009-10-17T22:32:26.738690"}, "title": "The Classical Plot and the Invention of Western Narrative", "subjects": ["Ancient Rhetoric", "Classical literature", "History", "History and criticism", "Narration (Rhetoric)", "Rhetoric, Ancient", "Stories, plots", "Stories, plots, etc", "Theory", "Theory, etc", "Classical literature, history and criticism", "Narration (rhetoric)", "Rhetoric, ancient"], "subject_times": ["To 1500"], "type": {"key": "/type/work"}, "revision": 6}
+/type/work /works/OL10886390W 2 2010-01-18T16:10:44.374967 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:50.606845"}, "title": "District judge for the Western Judicial District of South Carolina", "subject_places": ["South Carolina"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T16:10:44.374967"}, "latest_revision": 2, "key": "/works/OL10886390W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "subjects": ["Judges", "Marshals"], "revision": 2}
+/type/work /works/OL10886430W 3 2010-12-03T15:11:51.691868 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:50.606845"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10886430W", "title": "Dominick Garvey", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:11:51.691868"}, "revision": 3}
+/type/work /works/OL10886527W 3 2010-12-03T14:51:11.459210 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:50.606845"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10886527W", "title": "Dr. Samuel Davis", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:51:11.459210"}, "revision": 3}
+/type/work /works/OL10886720W 3 2010-12-03T15:02:25.452944 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:50.606845"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10886720W", "title": "Edson Sullivan", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:02:25.452944"}, "revision": 3}
+/type/work /works/OL10886732W 3 2010-12-03T15:25:25.812137 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:50.606845"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10886732W", "title": "Edward Bodeck", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:25:25.812137"}, "revision": 3}
+/type/work /works/OL10886821W 3 2010-12-03T15:08:35.527058 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:50.606845"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10886821W", "title": "Edward J. Palmer", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:08:35.527058"}, "revision": 3}
+/type/work /works/OL10886858W 3 2010-12-03T15:03:36.362748 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:51.562983"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10886858W", "title": "Edward N. Oldmixon", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:03:36.362748"}, "revision": 3}
+/type/work /works/OL10887078W 2 2010-01-18T16:16:17.194515 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:51.562983"}, "title": "Eleventh Census", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T16:16:17.194515"}, "latest_revision": 2, "key": "/works/OL10887078W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "subjects": ["Census"], "revision": 2}
+/type/work /works/OL10887250W 3 2010-12-03T15:06:57.588363 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:51.562983"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10887250W", "title": "Elizabeth Banks", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:06:57.588363"}, "revision": 3}
+/type/work /works/OL10887331W 3 2010-12-03T14:47:21.987471 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:51.562983"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10887331W", "title": "Elizabeth H. Lawler", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:47:21.987471"}, "revision": 3}
+/type/work /works/OL10887780W 3 2010-12-03T15:08:35.527058 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:51.562983"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10887780W", "title": "Emily E. Cram", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:08:35.527058"}, "revision": 3}
+/type/work /works/OL10887865W 3 2010-12-03T15:11:03.767616 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:52.692771"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10887865W", "title": "Emma L. Patterson", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:11:03.767616"}, "revision": 3}
+/type/work /works/OL10887881W 3 2010-12-03T14:55:13.632230 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:52.692771"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10887881W", "title": "Emma S. Cameron", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:55:13.632230"}, "revision": 3}
+/type/work /works/OL10888133W 3 2010-12-03T14:59:25.652702 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:59:25.652702"}, "title": "Estate of B. B. Neville, deceased, and others", "created": {"type": "/type/datetime", "value": "2009-12-11T03:40:52.692771"}, "subjects": ["Claims", "United States", "United States. Court of Claims"], "latest_revision": 3, "key": "/works/OL10888133W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10888244W 3 2010-12-03T15:07:50.393512 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:52.692771"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10888244W", "title": "Estate of Mary P. Gilmore", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:07:50.393512"}, "revision": 3}
+/type/work /works/OL1088841W 7 2022-10-11T22:04:58.427777 {"title": "The origins of religion, and other essays", "key": "/works/OL1088841W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL3152608A"}}], "type": {"key": "/type/work"}, "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2009-12-09T20:28:43.478794"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-11T22:04:58.427777"}}
+/type/work /works/OL10888525W 3 2010-12-03T14:54:35.092091 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:52.692771"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10888525W", "title": "Executors of John G. Holloway v. United States", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:54:35.092091"}, "revision": 3}
+/type/work /works/OL10888561W 3 2010-12-03T15:26:26.019895 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:26:26.019895"}, "title": "Expenses of Sac and Fox Business Committee", "created": {"type": "/type/datetime", "value": "2009-12-11T03:40:52.692771"}, "subjects": ["Expenditures, Public", "Fox Indians", "Public Expenditures", "Sauk Indians"], "latest_revision": 3, "key": "/works/OL10888561W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10888609W 2 2010-01-18T16:28:33.643922 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:52.692771"}, "title": "Extending time for final entry of mineral claims within Shoshone or Wind River Reservation, Wyo", "subject_places": ["Wind River Indian Reservation (Wyo.)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T16:28:33.643922"}, "latest_revision": 2, "key": "/works/OL10888609W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "subjects": ["Claims", "Mines and mineral resources"], "revision": 2}
+/type/work /works/OL10888793W 3 2010-12-03T15:21:06.979260 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:21:06.979260"}, "title": "Federal tort claims bill", "created": {"type": "/type/datetime", "value": "2009-12-11T03:40:52.692771"}, "subjects": ["Claims", "Expenditures, Public", "Public Expenditures"], "latest_revision": 3, "key": "/works/OL10888793W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10888824W 3 2010-12-03T15:12:42.316080 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:52.692771"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10888824W", "title": "Ferdinand Pahl", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:12:42.316080"}, "revision": 3}
+/type/work /works/OL10888954W 3 2010-12-03T14:49:41.257782 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:53.708964"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10888954W", "title": "Florence Murray", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:49:41.257782"}, "revision": 3}
+/type/work /works/OL10889006W 2 2010-01-18T16:28:33.643922 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:53.708964"}, "title": "For relief of depositors in closed banks", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T16:28:33.643922"}, "latest_revision": 2, "key": "/works/OL10889006W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "subjects": ["Banks and banking", "Business", "Bankruptcy"], "revision": 2}
+/type/work /works/OL10889169W 3 2010-12-03T15:08:35.527058 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:53.708964"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10889169W", "title": "Francis A. Tabor", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:08:35.527058"}, "revision": 3}
+/type/work /works/OL10889703W 3 2010-12-03T15:17:04.575442 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:53.708964"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10889703W", "title": "F. W. Mueller", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:17:04.575442"}, "revision": 3}
+/type/work /works/OL10889870W 3 2010-12-03T15:07:50.393512 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:54.892423"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10889870W", "title": "George Coffee", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:07:50.393512"}, "revision": 3}
+/type/work /works/OL10890468W 3 2010-12-03T15:11:51.691868 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:54.892423"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10890468W", "title": "George W. Robins", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:11:51.691868"}, "revision": 3}
+/type/work /works/OL10891294W 3 2010-12-03T15:16:33.229241 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:55.869801"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10891294W", "title": "Heirs of George L. Summey", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:16:33.229241"}, "revision": 3}
+/type/work /works/OL10891771W 3 2010-12-03T14:58:21.874090 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:55.869801"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10891771W", "title": "Henry Isenburgh", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:58:21.874090"}, "revision": 3}
+/type/work /works/OL1089185W 5 2020-08-13T09:08:59.881276 {"covers": [5870299], "last_modified": {"type": "/type/datetime", "value": "2020-08-13T09:08:59.881276"}, "latest_revision": 5, "key": "/works/OL1089185W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL112934A"}}], "created": {"type": "/type/datetime", "value": "2009-12-09T20:28:43.478794"}, "title": "A memoir on the Indian surveys", "subject_places": ["India"], "subjects": ["Surveys", "Description and travel"], "type": {"key": "/type/work"}, "revision": 5}
+/type/work /works/OL10891915W 3 2010-12-03T15:10:12.151334 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:56.849354"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10891915W", "title": "Henry S. Olney", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:10:12.151334"}, "revision": 3}
+/type/work /works/OL10892127W 3 2010-12-03T15:05:26.671428 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:56.849354"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10892127W", "title": "Hiram S. Leffingwell", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:05:26.671428"}, "revision": 3}
+/type/work /works/OL10892315W 2 2010-01-18T16:51:35.583335 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:56.849354"}, "title": "Hudson Reservoir and Canal Company", "subject_places": ["Arizona"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T16:51:35.583335"}, "latest_revision": 2, "key": "/works/OL10892315W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "subjects": ["Dams", "Canals"], "revision": 2}
+/type/work /works/OL10892441W 2 2010-01-18T16:51:35.583335 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:56.849354"}, "title": "Improvement of San Joaquin River, California", "subject_places": ["United States", "San Joaquin River (Calif.)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T16:51:35.583335"}, "latest_revision": 2, "key": "/works/OL10892441W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "subjects": ["Public works", "Budget"], "revision": 2}
+/type/work /works/OL10892473W 2 2010-01-18T16:51:35.583335 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:56.849354"}, "title": "Increase efficiency of Military Establishment", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T16:51:35.583335"}, "latest_revision": 2, "key": "/works/OL10892473W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "subjects": ["Ordnance", "Officers", "Armed Forces"], "revision": 2}
+/type/work /works/OL10892850W 3 2010-12-03T15:04:05.682474 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:58.064002"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10892850W", "title": "Isabella H. Irish", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:04:05.682474"}, "revision": 3}
+/type/work /works/OL10893099W 3 2010-12-03T14:54:35.092091 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:58.064002"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10893099W", "title": "Jacob Theby", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:54:35.092091"}, "revision": 3}
+/type/work /works/OL10893334W 3 2010-12-03T14:50:27.623981 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:58.064002"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10893334W", "title": "James D. Wood", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:50:27.623981"}, "revision": 3}
+/type/work /works/OL10893426W 3 2010-12-03T14:56:36.655729 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:58.064002"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10893426W", "title": "James Garret Sadler", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:56:36.655729"}, "revision": 3}
+/type/work /works/OL10893570W 3 2010-12-03T15:05:26.671428 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:58.064002"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10893570W", "title": "James H. Watts", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:05:26.671428"}, "revision": 3}
+/type/work /works/OL10893623W 3 2010-12-03T15:13:24.377829 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:58.064002"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10893623W", "title": "James L. Barney", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:13:24.377829"}, "revision": 3}
+/type/work /works/OL10893963W 3 2010-12-03T15:12:42.316080 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:59.064636"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10893963W", "title": "James S. Whitlock", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:12:42.316080"}, "revision": 3}
+/type/work /works/OL1089416W 4 2012-08-14T08:56:35.392676 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:28:47.837340"}, "subjects": ["Bible", "Christian life", "Sermons", "Church of England"], "latest_revision": 4, "key": "/works/OL1089416W", "title": "The vitality of Christian faith", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL112943A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-08-14T08:56:35.392676"}, "covers": [5969790], "revision": 4}
+/type/work /works/OL10894445W 3 2010-12-03T14:55:13.632230 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:59.064636"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10894445W", "title": "J. H. Stovall and William Hughes", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:55:13.632230"}, "revision": 3}
+/type/work /works/OL10894576W 3 2010-12-03T15:09:21.789624 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:59.064636"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10894576W", "title": "John A. Conley", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:09:21.789624"}, "revision": 3}
+/type/work /works/OL10894755W 3 2010-12-03T14:49:41.257782 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:59.064636"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10894755W", "title": "John B. Wolf", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:49:41.257782"}, "revision": 3}
+/type/work /works/OL10894777W 3 2010-12-03T15:01:05.050261 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:59.064636"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10894777W", "title": "John C. Coleman", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:01:05.050261"}, "revision": 3}
+/type/work /works/OL10894805W 3 2010-12-03T15:08:35.527058 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:40:59.064636"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10894805W", "title": "John C. Lynch", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:08:35.527058"}, "revision": 3}
+/type/work /works/OL1089484W 1 2009-12-09T20:05:16.957161 {"title": "Capitol City Safari", "created": {"type": "/type/datetime", "value": "2009-12-09T20:05:16.957161"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T20:05:16.957161"}, "latest_revision": 1, "key": "/works/OL1089484W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL112946A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL108951W 9 2020-02-28T17:25:38.432340 {"subtitle": "How to Have a Dialogue with God and Your Guardian Angels", "covers": [840893], "last_modified": {"type": "/type/datetime", "value": "2020-02-28T17:25:38.432340"}, "latest_revision": 9, "key": "/works/OL108951W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL29542A"}}], "created": {"type": "/type/datetime", "value": "2009-10-17T23:16:23.155408"}, "title": "Divine Guidance", "subjects": ["Miscellanea", "Angels", "Spiritual life"], "type": {"key": "/type/work"}, "revision": 9}
+/type/work /works/OL10895536W 3 2010-12-03T15:14:06.198088 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:41:00.211046"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10895536W", "title": "John M. McDowell", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:14:06.198088"}, "revision": 3}
+/type/work /works/OL10896335W 3 2010-12-03T15:07:50.393512 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:41:01.182408"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10896335W", "title": "Joseph H. Huie", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:07:50.393512"}, "revision": 3}
+/type/work /works/OL1089642W 3 2010-04-28T07:17:47.985892 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:28:47.837340"}, "title": "Three years' sport in Mozambique", "covers": [5743194], "subject_places": ["Mozambique"], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:17:47.985892"}, "latest_revision": 3, "key": "/works/OL1089642W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL112956A"}}], "subject_people": ["Guillaume Vasse"], "type": {"key": "/type/work"}, "subjects": ["Natural history", "Description and travel", "Hunting"], "revision": 3}
+/type/work /works/OL10896741W 3 2010-12-03T15:26:26.019895 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:41:01.182408"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10896741W", "title": "Julia A. Reid", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:26:26.019895"}, "revision": 3}
+/type/work /works/OL10896833W 3 2010-12-03T15:25:55.953253 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:25:55.953253"}, "title": "Jurisdiction of the district courts of the United States over suits relating to orders of state administrative boards", "created": {"type": "/type/datetime", "value": "2009-12-11T03:41:01.182408"}, "subjects": ["Administration of Justice", "Business", "Constitutional law", "Justice, Administration of"], "latest_revision": 3, "key": "/works/OL10896833W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10896941W 3 2010-12-03T14:55:48.919821 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:41:02.242802"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10896941W", "title": "Katherine W. Howell", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:55:48.919821"}, "revision": 3}
+/type/work /works/OL10896968W 3 2010-12-03T14:55:13.632230 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:41:02.242802"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10896968W", "title": "Keziah Randall", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:55:13.632230"}, "revision": 3}
+/type/work /works/OL10897145W 3 2010-12-03T15:23:41.562339 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:41:02.242802"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10897145W", "title": "Laura Roush", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:23:41.562339"}, "revision": 3}
+/type/work /works/OL10897405W 3 2010-12-03T15:11:51.691868 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:41:02.242802"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10897405W", "title": "Levi Chapman", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:11:51.691868"}, "revision": 3}
+/type/work /works/OL10897865W 3 2010-12-03T14:47:21.987471 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:41:03.372135"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10897865W", "title": "Louisa Earle", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:47:21.987471"}, "revision": 3}
+/type/work /works/OL10898042W 3 2010-12-03T14:55:13.632230 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:41:03.372135"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10898042W", "title": "Lucy A. Coffield", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:55:13.632230"}, "revision": 3}
+/type/work /works/OL10898098W 3 2010-12-03T15:25:25.812137 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:41:03.372135"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10898098W", "title": "Lula A. Densmore", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:25:25.812137"}, "revision": 3}
+/type/work /works/OL10898149W 3 2010-12-03T15:09:21.789624 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:41:03.372135"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10898149W", "title": "Lydia B. Bevan", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:09:21.789624"}, "revision": 3}
+/type/work /works/OL10898204W 2 2010-01-18T17:22:10.590922 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:41:03.372135"}, "title": "Macadamized road", "subject_places": ["Chalmette (La.)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T17:22:10.590922"}, "latest_revision": 2, "key": "/works/OL10898204W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "subjects": ["Roads", "National cemeteries"], "revision": 2}
+/type/work /works/OL10898458W 3 2010-12-03T15:07:50.393512 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:41:03.372135"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10898458W", "title": "Margaret L. Hance", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:07:50.393512"}, "revision": 3}
+/type/work /works/OL10898625W 3 2010-12-03T15:25:25.812137 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:41:03.372135"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10898625W", "title": "Marion F. Blackwell", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:25:25.812137"}, "revision": 3}
+/type/work /works/OL10898817W 3 2010-12-03T15:08:35.527058 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:41:03.372135"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10898817W", "title": "Martha W. Cushing", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:08:35.527058"}, "revision": 3}
+/type/work /works/OL10899101W 3 2010-12-03T15:11:03.767616 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:41:04.374581"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10899101W", "title": "Mary C. Kirkland", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:11:03.767616"}, "revision": 3}
+/type/work /works/OL1089921W 3 2022-03-26T01:10:16.226480 {"title": "A west country sketch book", "subject_places": ["Cornwall (England : County)", "Devon (England)"], "key": "/works/OL1089921W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL112970A"}}], "type": {"key": "/type/work"}, "subjects": ["Description and travel"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-09T20:28:47.837340"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-26T01:10:16.226480"}}
+/type/work /works/OL10899374W 3 2010-12-03T15:01:50.303688 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:41:04.374581"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10899374W", "title": "Mary J. Graham and others", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:01:50.303688"}, "revision": 3}
+/type/work /works/OL10899467W 3 2010-12-03T14:46:47.029407 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:41:04.374581"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10899467W", "title": "Mary L. Whiteford", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:46:47.029407"}, "revision": 3}
+/type/work /works/OL10899696W 3 2010-12-03T14:51:11.459210 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:41:04.374581"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10899696W", "title": "Matthew E. Jackson", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:51:11.459210"}, "revision": 3}
+/type/work /works/OL10900413W 3 2010-12-03T14:51:47.672068 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:41:05.745392"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10900413W", "title": "Mrs. Catherine Sattler", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:51:47.672068"}, "revision": 3}
+/type/work /works/OL10900459W 3 2010-12-03T14:56:36.655729 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:41:05.745392"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10900459W", "title": "Mrs. Ellen P. Malloy", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:56:36.655729"}, "revision": 3}
+/type/work /works/OL10900570W 3 2010-12-03T14:51:11.459210 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:41:05.745392"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10900570W", "title": "Mrs. Maria C. McPherson", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:51:11.459210"}, "revision": 3}
+/type/work /works/OL10900699W 3 2010-12-03T14:49:05.811000 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:41:05.745392"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10900699W", "title": "A. M. Wilson", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:49:05.811000"}, "revision": 3}
+/type/work /works/OL10900777W 3 2010-12-03T15:04:05.682474 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:41:05.745392"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10900777W", "title": "Nancy M. Williams", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:04:05.682474"}, "revision": 3}
+/type/work /works/OL10900888W 3 2010-12-03T15:06:57.588363 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:41:06.706190"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10900888W", "title": "Nathan P. Bowman", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:06:57.588363"}, "revision": 3}
+/type/work /works/OL10901136W 3 2010-12-03T15:25:55.953253 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:25:55.953253"}, "title": "Ninth Pan American Sanitary Conference", "created": {"type": "/type/datetime", "value": "2009-12-11T03:41:06.706190"}, "subjects": ["Expenditures, Public", "Meetings", "Public Expenditures", "Sewage"], "latest_revision": 3, "key": "/works/OL10901136W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10901201W 2 2010-01-18T17:37:46.712450 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:41:06.706190"}, "title": "Notification of illness of soldiers", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T17:37:46.712450"}, "latest_revision": 2, "key": "/works/OL10901201W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "subjects": ["Soldiers"], "revision": 2}
+/type/work /works/OL10901380W 3 2010-12-03T15:13:24.377829 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:41:06.706190"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10901380W", "title": "Oren D. Haskell", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:13:24.377829"}, "revision": 3}
+/type/work /works/OL10901643W 3 2010-12-03T15:11:03.767616 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:41:06.706190"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10901643W", "title": "Patrick Fitzgerald", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:11:03.767616"}, "revision": 3}
+/type/work /works/OL10901722W 3 2010-12-03T15:22:34.234468 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:41:06.706190"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10901722W", "title": "Paul R. Sutherland", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:22:34.234468"}, "revision": 3}
+/type/work /works/OL10902070W 3 2010-12-03T15:05:26.671428 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:41:07.970880"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10902070W", "title": "Philip Caslow", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:05:26.671428"}, "revision": 3}
+/type/work /works/OL1090219W 2 2011-10-17T18:30:39.703049 {"subtitle": "wrytten by him in the Englysh tonge.", "title": "The workes of Sir Thomas More..", "created": {"type": "/type/datetime", "value": "2009-12-09T20:28:47.837340"}, "last_modified": {"type": "/type/datetime", "value": "2011-10-17T18:30:39.703049"}, "latest_revision": 2, "key": "/works/OL1090219W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL112972A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10902288W 2 2010-01-18T17:42:38.924963 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:41:07.970880"}, "title": "Preparation, printing, and distribution of pamphlets containing the Declaration of Independence", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T17:42:38.924963"}, "latest_revision": 2, "key": "/works/OL10902288W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "subjects": ["Government publications"], "revision": 2}
+/type/work /works/OL10902578W 2 2010-01-18T17:47:13.109491 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:41:07.970880"}, "title": "Public building at Henderson, N. C", "subject_places": ["Henderson (N.C.)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T17:47:13.109491"}, "latest_revision": 2, "key": "/works/OL10902578W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "subjects": ["Public buildings"], "revision": 2}
+/type/work /works/OL10902763W 2 2010-01-18T17:47:13.109491 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:41:07.970880"}, "title": "Public building in New Berne, N. C", "subject_places": ["New Bern (N.C.)", "North Carolina"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T17:47:13.109491"}, "latest_revision": 2, "key": "/works/OL10902763W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "subjects": ["Public buildings"], "revision": 2}
+/type/work /works/OL10902993W 3 2010-12-03T15:18:11.695215 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:18:11.695215"}, "title": "Radio equipment for seagoing vessels of the Department of Commerce", "created": {"type": "/type/datetime", "value": "2009-12-11T03:41:09.109637"}, "subjects": ["Radio", "Ships", "United States", "United States. Dept. of Commerce and Labor"], "latest_revision": 3, "key": "/works/OL10902993W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10903063W 3 2010-12-03T15:25:55.953253 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:41:09.109637"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10903063W", "title": "Ray W. Firth", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:25:55.953253"}, "revision": 3}
+/type/work /works/OL10903536W 3 2010-12-03T15:19:46.948475 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:19:46.948475"}, "title": "Repayment of certain commissions, etc., under public-land laws", "created": {"type": "/type/datetime", "value": "2009-12-11T03:41:09.109637"}, "subjects": ["Expenditures, Public", "Fees, Professional", "Professional Fees", "Public Expenditures", "Public lands"], "latest_revision": 3, "key": "/works/OL10903536W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10903711W 3 2010-12-03T15:06:57.588363 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:41:09.109637"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10903711W", "title": "Reuben A. Finnell", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:06:57.588363"}, "revision": 3}
+/type/work /works/OL10904190W 3 2010-12-03T14:58:21.874090 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:41:10.145241"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10904190W", "title": "Robert Moore", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:58:21.874090"}, "revision": 3}
+/type/work /works/OL1090436W 13 2020-08-15T20:26:25.593604 {"last_modified": {"type": "/type/datetime", "value": "2020-08-15T20:26:25.593604"}, "title": "Canada and the Canadian question", "created": {"type": "/type/datetime", "value": "2009-12-09T20:28:53.803136"}, "covers": [4521018], "subject_places": ["Canada", "United States"], "subjects": ["Politics and government", "Canada", "Relations", "Annexation to the United States", "Annexation", "Economic policy", "Nationalism", "History", "Canada, politics and government"], "latest_revision": 13, "key": "/works/OL1090436W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL112985A"}}], "subject_times": ["1867-", "1867-1914", "Confederation, 1867"], "type": {"key": "/type/work"}, "revision": 13}
+/type/work /works/OL10904731W 3 2010-12-03T15:09:21.789624 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:41:10.145241"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10904731W", "title": "Samuel E. Johnson", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:09:21.789624"}, "revision": 3}
+/type/work /works/OL10904954W 3 2010-12-03T15:22:05.290879 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:41:11.329364"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10904954W", "title": "Samuel Wemmer", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:22:05.290879"}, "revision": 3}
+/type/work /works/OL10904980W 3 2010-12-03T14:56:36.655729 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:41:11.329364"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10904980W", "title": "Sanford Kirkpatrick", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:56:36.655729"}, "revision": 3}
+/type/work /works/OL10905806W 2 2010-01-18T18:01:57.308236 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:41:11.329364"}, "title": "Standard of value, etc", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T18:01:57.308236"}, "latest_revision": 2, "key": "/works/OL10905806W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "subjects": ["Money", "Coinage"], "revision": 2}
+/type/work /works/OL10905839W 2 2010-01-18T18:01:57.308236 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:41:11.329364"}, "title": "Statistics of exports, immigration, and emigration", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T18:01:57.308236"}, "latest_revision": 2, "key": "/works/OL10905839W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "subjects": ["Emigration and immigration", "Statistical services", "International trade"], "revision": 2}
+/type/work /works/OL10906076W 3 2010-12-03T14:58:21.874090 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:58:21.874090"}, "title": "Supreme Court reports", "created": {"type": "/type/datetime", "value": "2009-12-11T03:41:12.282308"}, "subjects": ["Government publications", "United States", "United States. Supreme Court"], "latest_revision": 3, "key": "/works/OL10906076W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10906314W 3 2010-12-03T15:11:51.691868 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:41:12.282308"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10906314W", "title": "Temperance Davis", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:11:51.691868"}, "revision": 3}
+/type/work /works/OL109068W 8 2022-09-17T02:33:04.844854 {"title": "The Knight, the Princess and the Dragon (Susie & Alfred)", "covers": [1387153], "key": "/works/OL109068W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL29571A"}}], "type": {"key": "/type/work"}, "subjects": ["Children's stories, English", "Pigs", "Fiction", "Friendship", "Children's fiction", "Dragons, fiction", "Princesses, fiction", "Knights and knighthood, fiction"], "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2009-10-17T23:16:23.155408"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-17T02:33:04.844854"}}
+/type/work /works/OL10907631W 2 2010-01-18T18:11:28.592615 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:41:13.272178"}, "title": "Tungsten ores in the United States", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T18:11:28.592615"}, "latest_revision": 2, "key": "/works/OL10907631W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "subjects": ["Mineral industries", "Metal trade", "Manufactures"], "revision": 2}
+/type/work /works/OL10908316W 3 2010-12-03T15:23:05.205535 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:41:14.430968"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10908316W", "title": "William Befuhs, alias Charles Cameron", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:23:05.205535"}, "revision": 3}
+/type/work /works/OL1090892W 5 2022-12-11T06:53:24.761327 {"subjects": ["English Political poetry", "Political ballads and songs"], "key": "/works/OL1090892W", "title": "Political verse", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL113017A"}}], "type": {"key": "/type/work"}, "covers": [5697844], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2009-12-09T20:28:53.803136"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-11T06:53:24.761327"}}
+/type/work /works/OL10909160W 3 2010-12-03T15:01:05.050261 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:41:15.390016"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10909160W", "title": "William M. Lindsay", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:01:05.050261"}, "revision": 3}
+/type/work /works/OL10909458W 3 2010-12-03T15:09:21.789624 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:41:15.390016"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10909458W", "title": "William T. Wiley", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:09:21.789624"}, "revision": 3}
+/type/work /works/OL10909548W 3 2010-12-03T15:21:36.459384 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:41:15.390016"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10909548W", "title": "William W. Woodruf", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:21:36.459384"}, "revision": 3}
+/type/work /works/OL10909638W 3 2010-12-03T14:55:13.632230 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:41:15.390016"}, "subject_places": ["Mass.) Springfield Armory National Historic Site (Springfield", "Springfield Armory National Historic Site (Springfield, Mass.)"], "subjects": ["Arsenals", "Public buildings"], "latest_revision": 3, "key": "/works/OL10909638W", "title": "Workshop National Armory, Springfield, Mass", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:55:13.632230"}, "revision": 3}
+/type/work /works/OL10909708W 3 2010-12-03T14:49:05.811000 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:41:15.390016"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10909708W", "title": "Yost Harbaugh", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:49:05.811000"}, "revision": 3}
+/type/work /works/OL10909897W 3 2010-12-03T15:00:30.772664 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:41:16.503114"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10909897W", "title": "Anson W. Gillett", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:00:30.772664"}, "revision": 3}
+/type/work /works/OL10910064W 3 2010-12-03T14:43:46.684416 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:41:16.503114"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10910064W", "title": "Catharine Hagan", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:43:46.684416"}, "revision": 3}
+/type/work /works/OL10910573W 3 2010-12-03T15:06:57.588363 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:41:16.503114"}, "subject_places": ["Manila Bay (Philippines)"], "subjects": ["Claims", "Warren (Ship)"], "latest_revision": 3, "key": "/works/OL10910573W", "title": "Gallatly, Hankey & Co", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:06:57.588363"}, "revision": 3}
+/type/work /works/OL10910681W 3 2010-12-03T15:20:37.059169 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:41:16.503114"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10910681W", "title": "Harry Caden", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:20:37.059169"}, "revision": 3}
+/type/work /works/OL10910725W 3 2010-12-03T15:01:50.303688 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:41:16.503114"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10910725W", "title": "Henry Farmer", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:01:50.303688"}, "revision": 3}
+/type/work /works/OL10910753W 3 2010-12-03T15:11:03.767616 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:41:16.503114"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10910753W", "title": "Hezekiah Davis", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:11:03.767616"}, "revision": 3}
+/type/work /works/OL10910992W 3 2010-12-03T14:46:47.029407 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:41:17.500465"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10910992W", "title": "John Boyle", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:46:47.029407"}, "revision": 3}
+/type/work /works/OL10911038W 3 2010-12-03T15:09:21.789624 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:41:17.500465"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10911038W", "title": "John Hudgins", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:09:21.789624"}, "revision": 3}
+/type/work /works/OL10911307W 2 2010-01-18T18:32:36.326230 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:41:17.500465"}, "title": "Light-house and fog-signal at or near mouth of Coquille River, Oregon", "subject_places": ["Coquille River (Or.)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T18:32:36.326230"}, "latest_revision": 2, "key": "/works/OL10911307W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "subjects": ["Lighthouses", "Fog-signals"], "revision": 2}
+/type/work /works/OL10911381W 3 2010-12-03T15:25:25.812137 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:41:17.500465"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10911381W", "title": "Macon, Dublin & Savannah Railroad Co", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:25:25.812137"}, "revision": 3}
+/type/work /works/OL10911882W 3 2010-12-03T15:20:13.026335 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:41:18.771465"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10911882W", "title": "Relief of O. W. Lindsley", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:20:13.026335"}, "revision": 3}
+/type/work /works/OL10912385W 3 2010-12-03T14:55:48.919821 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:41:18.771465"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10912385W", "title": "William Large", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:55:48.919821"}, "revision": 3}
+/type/work /works/OL10912704W 3 2010-12-03T14:57:48.946148 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:41:18.771465"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL10912704W", "title": "Samuel McKee", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529419A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:57:48.946148"}, "revision": 3}
+/type/work /works/OL1091287W 5 2022-07-17T10:22:37.780437 {"subject_places": ["England", "London"], "subjects": ["Catalogs", "Majolica, Italian", "Majolica", "Victor and Albert Museum", "Italian Majolica", "Victoria and Albert Museum", "Victoria and albert museum", "Art, italian", "Art, british", "Art, catalogs"], "key": "/works/OL1091287W", "title": "Catalogue of Italian Maiolica", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL113048A"}}], "type": {"key": "/type/work"}, "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2009-12-09T20:28:53.803136"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T10:22:37.780437"}}
+/type/work /works/OL10912956W 4 2012-05-02T17:50:07.303344 {"subtitle": "hearing before the Subcommittee on Taxation and Debt Management of the Committee on Finance, United States Senate, Ninety-seventh Congress, first session, on S. 169, S. 532, S. 721, S. 791, S. 979, and S. 1382, June 26, 1981", "last_modified": {"type": "/type/datetime", "value": "2012-05-02T17:50:07.303344"}, "latest_revision": 4, "key": "/works/OL10912956W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL815155A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T03:41:24.001583"}, "title": "1981-82 miscellaneous tax bills, VII", "subject_places": ["United States"], "subjects": ["Law and legislation", "Income tax", "Taxation", "Tax exemption"], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL10913073W 4 2014-07-23T19:02:06.611686 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:41:24.001583"}, "subjects": ["Birds"], "latest_revision": 4, "key": "/works/OL10913073W", "title": "Die V\u00f6gel Madagascars und der benachbarten Inselgruppen: Ein Beitrag zur Zoologie der ..", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4529491A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2014-07-23T19:02:06.611686"}, "covers": [6153004], "revision": 4}
+/type/work /works/OL10913102W 1 2009-12-11T03:41:24.001583 {"title": "Code of procedure for single stage selective tendering 1977", "created": {"type": "/type/datetime", "value": "2009-12-11T03:41:24.001583"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:41:24.001583"}, "latest_revision": 1, "key": "/works/OL10913102W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4529501A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10913114W 2 2010-01-18T18:41:58.616469 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:41:24.001583"}, "title": "La guerre de S\u00e9cession", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T18:41:58.616469"}, "latest_revision": 2, "key": "/works/OL10913114W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4529507A"}}], "subject_times": ["1861-1865, Guerre civile"], "type": {"key": "/type/work"}, "subjects": ["\u00c9tats-Unis", "Histoire"], "revision": 2}
+/type/work /works/OL10913451W 1 2009-12-11T03:41:24.001583 {"title": "A businessman's guide to Saudi Arabia", "created": {"type": "/type/datetime", "value": "2009-12-11T03:41:24.001583"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:41:24.001583"}, "latest_revision": 1, "key": "/works/OL10913451W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4529658A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10913487W 3 2012-06-22T18:46:43.660348 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:41:24.001583"}, "subject_places": ["United States", "Canada"], "subjects": ["Foreign economic relations"], "latest_revision": 3, "key": "/works/OL10913487W", "title": "U.S. economic relations with Canada", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1170599A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-06-22T18:46:43.660348"}, "revision": 3}
+/type/work /works/OL1091357W 5 2020-08-13T02:04:34.946013 {"covers": [5592410], "last_modified": {"type": "/type/datetime", "value": "2020-08-13T02:04:34.946013"}, "latest_revision": 5, "key": "/works/OL1091357W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL113056A"}}], "created": {"type": "/type/datetime", "value": "2009-12-09T20:29:03.421680"}, "title": "Friedrich Heinrich Jacobi", "subjects": ["Faith"], "subject_people": ["Friedrich Heinrich Jacobi (1743-1819)"], "type": {"key": "/type/work"}, "revision": 5}
+/type/work /works/OL10913626W 1 2009-12-11T03:41:24.001583 {"title": "Fertiliser review", "created": {"type": "/type/datetime", "value": "2009-12-11T03:41:24.001583"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:41:24.001583"}, "latest_revision": 1, "key": "/works/OL10913626W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4529758A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10913770W 4 2012-05-17T21:11:00.453111 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:41:24.001583"}, "subject_places": ["United States"], "subjects": ["Appropriations and expenditures", "Petroleum law and legislation", "United States", "United States. Dept. of Energy"], "latest_revision": 4, "key": "/works/OL10913770W", "title": "Hearing on H.R. 2576 (H.R. 3354) ... before the Investigations Subcommittee of the Committee on Armed Services, House of Representatives, Ninety-sixth Congress, first session, March 16, 1979", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL556537A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-17T21:11:00.453111"}, "revision": 4}
+/type/work /works/OL1091389W 1 2009-12-09T20:29:03.421680 {"title": "Notes on northern industries", "created": {"type": "/type/datetime", "value": "2009-12-09T20:29:03.421680"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T20:29:03.421680"}, "latest_revision": 1, "key": "/works/OL1091389W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL113062A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10914414W 6 2020-12-16T17:09:57.423343 {"subject_places": ["United States"], "subjects": ["Emergency management", "Planning", "Emergency service", "Hospitals", "Disaster medicine", "Emergency services"], "key": "/works/OL10914414W", "title": "Hospital disaster preparedness", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL465443A"}}], "type": {"key": "/type/work"}, "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2009-12-11T03:41:28.602641"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-16T17:09:57.423343"}}
+/type/work /works/OL10914699W 1 2009-12-11T03:41:28.602641 {"title": "Annual report for the counselling and welfare service", "created": {"type": "/type/datetime", "value": "2009-12-11T03:41:28.602641"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:41:28.602641"}, "latest_revision": 1, "key": "/works/OL10914699W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4530138A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10915010W 1 2009-12-11T03:41:33.324232 {"title": "Annual Report & Accounts", "created": {"type": "/type/datetime", "value": "2009-12-11T03:41:33.324232"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:41:33.324232"}, "latest_revision": 1, "key": "/works/OL10915010W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4530274A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10915321W 2 2010-01-18T18:52:32.355452 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:41:33.324232"}, "title": "Acoustic diffraction from a semi-infinite elastic plate under arbitrary fluid loading with application to scattering from arctic ice leads", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T18:52:32.355452"}, "latest_revision": 2, "key": "/works/OL10915321W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4530419A"}}], "type": {"key": "/type/work"}, "subjects": ["Scattering (Physics)", "Underwater acoustics"], "revision": 2}
+/type/work /works/OL10915462W 1 2009-12-11T03:41:33.324232 {"title": "Third report [from the] Social Services Committee session 1987-88", "created": {"type": "/type/datetime", "value": "2009-12-11T03:41:33.324232"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:41:33.324232"}, "latest_revision": 1, "key": "/works/OL10915462W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4530458A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10915477W 1 2009-12-11T03:41:33.324232 {"title": "Medical education with special reference to the number of doctors and the career structure in hospitals", "created": {"type": "/type/datetime", "value": "2009-12-11T03:41:33.324232"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:41:33.324232"}, "latest_revision": 1, "key": "/works/OL10915477W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4530458A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10915776W 2 2010-01-18T18:52:32.355452 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:41:33.324232"}, "title": "Report on the Second FAO/SIDA Training Course on Marine Pollution in Relation to Protection of Living Resources", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T18:52:32.355452"}, "latest_revision": 2, "key": "/works/OL10915776W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4530563A"}}], "type": {"key": "/type/work"}, "subjects": ["Marine pollution", "Congresses"], "revision": 2}
+/type/work /works/OL10915957W 1 2009-12-11T03:41:37.660776 {"title": "The national vocational qualification framework", "created": {"type": "/type/datetime", "value": "2009-12-11T03:41:37.660776"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:41:37.660776"}, "latest_revision": 1, "key": "/works/OL10915957W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4530639A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10916890W 2 2010-01-18T18:57:26.089472 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:41:41.029367"}, "title": "Junk Fax Prevention Act of 2004", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T18:57:26.089472"}, "latest_revision": 2, "key": "/works/OL10916890W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4530965A"}}], "type": {"key": "/type/work"}, "subjects": ["Facsimile transmission", "Law and legislation"], "revision": 2}
+/type/work /works/OL10917303W 5 2016-03-22T16:07:38.188131 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:41:41.029367"}, "subject_places": ["Middle East", "United States"], "subjects": ["American Military assistance", "Defenses", "Military assistance, American", "Military policy", "Peace"], "latest_revision": 5, "key": "/works/OL10917303W", "title": "Building peace through strength", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL219349A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2016-03-22T16:07:38.188131"}, "revision": 5}
+/type/work /works/OL10917511W 4 2016-03-22T16:07:38.188131 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:41:41.029367"}, "subject_places": ["United States"], "subjects": ["Presidents", "Messages"], "latest_revision": 4, "key": "/works/OL10917511W", "title": "State of the Union message", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL219349A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2016-03-22T16:07:38.188131"}, "revision": 4}
+/type/work /works/OL10917598W 1 2009-12-11T03:41:41.029367 {"title": "Second National Symposium on Engineering Information", "created": {"type": "/type/datetime", "value": "2009-12-11T03:41:41.029367"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:41:41.029367"}, "latest_revision": 1, "key": "/works/OL10917598W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4531065A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1091780W 2 2010-01-18T19:02:54.645421 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:29:03.421680"}, "title": "Keweenawan olivine diabases of the Canadian Shield", "subject_places": ["Canada"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T19:02:54.645421"}, "latest_revision": 2, "key": "/works/OL1091780W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL113093A"}}], "type": {"key": "/type/work"}, "subjects": ["Petrology", "Diabase"], "revision": 2}
+/type/work /works/OL10918220W 1 2009-12-11T03:41:45.761816 {"title": "Putting parents in the picture", "created": {"type": "/type/datetime", "value": "2009-12-11T03:41:45.761816"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:41:45.761816"}, "latest_revision": 1, "key": "/works/OL10918220W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4531325A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10918535W 2 2010-01-18T19:02:54.645421 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:41:45.761816"}, "title": "al- U\u1e63\u016bl al-t\u0101r\u012bkh\u012byah lil-w\u0101qi\u02bb\u012byah al-ishtir\u0101k\u012byah f\u012b al-adab al-jaz\u0101\u02beir\u012b", "subject_places": ["Algeria"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T19:02:54.645421"}, "latest_revision": 2, "key": "/works/OL10918535W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4531393A"}}], "subject_times": ["1945-1962", "1962-1990"], "type": {"key": "/type/work"}, "subjects": ["History"], "revision": 2}
+/type/work /works/OL10918582W 2 2010-03-17T11:57:53.989356 {"subtitle": "commercial, industrial, military.", "title": "CMOS logic ICs CD4000B series", "created": {"type": "/type/datetime", "value": "2009-12-11T03:41:45.761816"}, "last_modified": {"type": "/type/datetime", "value": "2010-03-17T11:57:53.989356"}, "latest_revision": 2, "key": "/works/OL10918582W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4531396A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL1091860W 3 2010-04-29T00:47:18.281624 {"subtitle": "a study of the physiology and the pathology of water absorption by the living organism", "title": "\u00bfdema", "created": {"type": "/type/datetime", "value": "2009-12-09T20:29:03.421680"}, "last_modified": {"type": "/type/datetime", "value": "2010-04-29T00:47:18.281624"}, "latest_revision": 3, "key": "/works/OL1091860W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL113099A"}}], "type": {"key": "/type/work"}, "subjects": ["Edema"], "revision": 3}
+/type/work /works/OL10918616W 3 2010-11-04T22:25:57.651877 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:41:45.761816"}, "subject_places": ["Salzburg (Austria : Land)", "Salzkammergut (Austria)"], "subjects": ["Guidebooks"], "latest_revision": 3, "key": "/works/OL10918616W", "title": "Salzburg und das Salzkammergut", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2245089A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-11-04T22:25:57.651877"}, "revision": 3}
+/type/work /works/OL10919052W 1 2009-12-11T03:41:51.807728 {"title": "Hitachi CMOS logic HD74AC/HC/UH series data book", "created": {"type": "/type/datetime", "value": "2009-12-11T03:41:51.807728"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:41:51.807728"}, "latest_revision": 1, "key": "/works/OL10919052W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4531605A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1091961W 4 2012-11-28T11:03:48.710644 {"last_modified": {"type": "/type/datetime", "value": "2012-11-28T11:03:48.710644"}, "title": "The English Parnassus", "created": {"type": "/type/datetime", "value": "2009-12-09T20:29:03.421680"}, "subjects": ["English poetry", "Collections", "English poetry (Collections)"], "latest_revision": 4, "key": "/works/OL1091961W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL113110A"}}], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL10919918W 3 2010-12-03T18:33:09.195952 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T18:33:09.195952"}, "title": "Solar Thermal Test Facilities Users Association", "created": {"type": "/type/datetime", "value": "2009-12-11T03:41:58.349365"}, "subjects": ["Research", "Solar Thermal Test Facilities Users Association", "Solar energy"], "latest_revision": 3, "key": "/works/OL10919918W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4532092A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10919972W 2 2010-01-18T19:08:16.600819 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:41:58.349365"}, "title": "Recherches anatomiques sur le groupe des urticine es", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T19:08:16.600819"}, "latest_revision": 2, "key": "/works/OL10919972W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4532127A"}}], "type": {"key": "/type/work"}, "subjects": ["Urticaceae", "Botany", "Anatomy"], "revision": 2}
+/type/work /works/OL10920142W 2 2010-01-18T19:08:16.600819 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:41:58.349365"}, "title": "Proceedings of the 38th Southern Pasture and Forage Crop Improvement Conference", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T19:08:16.600819"}, "latest_revision": 2, "key": "/works/OL10920142W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4532217A"}}], "type": {"key": "/type/work"}, "subjects": ["Forage plants", "Congresses", "Breeding", "Pastures"], "revision": 2}
+/type/work /works/OL10920594W 2 2010-01-18T19:13:26.296409 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:41:58.349365"}, "title": "Ancient Leros", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T19:13:26.296409"}, "latest_revision": 2, "key": "/works/OL10920594W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4532449A"}}], "type": {"key": "/type/work"}, "subjects": ["Leros, Greece (Island)", "Antiquities"], "revision": 2}
+/type/work /works/OL1092112W 5 2020-08-11T04:45:20.572894 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:29:03.421680"}, "subjects": ["Ethics"], "latest_revision": 5, "key": "/works/OL1092112W", "title": "The better way ", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL113123A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-08-11T04:45:20.572894"}, "covers": [6126577], "revision": 5}
+/type/work /works/OL10921538W 2 2010-01-18T19:13:26.296409 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:42:04.311603"}, "title": "Seasonal movements and home ranges of mule deer at Lava Beds National Monument", "subject_places": ["Lava Beds National Monument (Calif.)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T19:13:26.296409"}, "latest_revision": 2, "key": "/works/OL10921538W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4532883A"}}], "type": {"key": "/type/work"}, "subjects": ["Mule deer"], "revision": 2}
+/type/work /works/OL10921561W 1 2009-12-11T03:42:04.311603 {"title": "Vybrane", "created": {"type": "/type/datetime", "value": "2009-12-11T03:42:04.311603"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:42:04.311603"}, "latest_revision": 1, "key": "/works/OL10921561W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4532896A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10921960W 3 2013-08-31T16:47:28.912406 {"last_modified": {"type": "/type/datetime", "value": "2013-08-31T16:47:28.912406"}, "title": "Special study: emergency landing techniques in small fixed-wing aircraft", "created": {"type": "/type/datetime", "value": "2009-12-11T03:42:10.699925"}, "subjects": ["Airplanes", "Landing"], "latest_revision": 3, "key": "/works/OL10921960W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL200763A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1092198W 3 2010-04-28T07:17:47.985892 {"title": "Holiday and other poems", "created": {"type": "/type/datetime", "value": "2009-12-09T20:29:03.421680"}, "covers": [5561631], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:17:47.985892"}, "latest_revision": 3, "key": "/works/OL1092198W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL113126A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10922095W 2 2010-01-18T19:18:31.661375 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:42:10.699925"}, "title": "Fisheries", "subject_places": ["United States", "Italy"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T19:18:31.661375"}, "latest_revision": 2, "key": "/works/OL10922095W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4533108A"}}], "type": {"key": "/type/work"}, "subjects": ["Fishery law and legislation"], "revision": 2}
+/type/work /works/OL10922568W 1 2009-12-11T03:42:10.699925 {"title": "Subtypes of muscarinic receptors", "created": {"type": "/type/datetime", "value": "2009-12-11T03:42:10.699925"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:42:10.699925"}, "latest_revision": 1, "key": "/works/OL10922568W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4533356A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1092296W 2 2010-12-04T08:47:23.078615 {"last_modified": {"type": "/type/datetime", "value": "2010-12-04T08:47:23.078615"}, "title": "Exhibits at the Franco-British exhibition, London, 1908", "created": {"type": "/type/datetime", "value": "2009-12-09T20:29:03.421680"}, "subjects": ["Franco-British Exhibition (1908 : London, England)"], "latest_revision": 2, "key": "/works/OL1092296W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL113140A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10923064W 4 2012-05-09T11:16:53.447896 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:42:17.889332"}, "subject_places": ["United States"], "subjects": ["Law and legislation", "Law enforcement", "United States", "United States. Dept. of the Interior. Office of the Secretary", "Water resources development"], "latest_revision": 4, "key": "/works/OL10923064W", "title": "Providing for cooperative agreements between the Secretary of the Interior and state and local governments for law enforcement within federal water resource projects", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL64335A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-09T11:16:53.447896"}, "revision": 4}
+/type/work /works/OL10923100W 2 2010-01-18T19:24:02.808339 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:42:17.889332"}, "title": "Satellite structure in the gas-phase X-ray photoelectron spectra of planar unsaturated molecules", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T19:24:02.808339"}, "latest_revision": 2, "key": "/works/OL10923100W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4533755A"}}], "type": {"key": "/type/work"}, "subjects": ["Molecular spectra"], "revision": 2}
+/type/work /works/OL10923487W 2 2010-01-18T19:24:02.808339 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:42:17.889332"}, "title": "Aquaculture potential in Coos Bay, Oregon", "subject_places": ["Oregon"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T19:24:02.808339"}, "latest_revision": 2, "key": "/works/OL10923487W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4534009A"}}], "type": {"key": "/type/work"}, "subjects": ["Aquaculture"], "revision": 2}
+/type/work /works/OL10923580W 2 2010-01-18T19:24:02.808339 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:42:17.889332"}, "title": "Reglamento para el servicio y ceremonial de la Corte", "subject_places": ["Mexico"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T19:24:02.808339"}, "latest_revision": 2, "key": "/works/OL10923580W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4534047A"}}], "type": {"key": "/type/work"}, "subjects": ["Administrative courts", "Administrative law"], "revision": 2}
+/type/work /works/OL10923758W 2 2010-01-18T19:24:02.808339 {"title": "Histoire de Mussolini", "created": {"type": "/type/datetime", "value": "2009-12-11T03:42:17.889332"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-18T19:24:02.808339"}, "latest_revision": 2, "key": "/works/OL10923758W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4534155A"}}], "subject_people": ["Benito Mussolini (1883-1945)"], "type": {"key": "/type/work"}, "subjects": ["Fascism", "Italy"], "revision": 2}
+/type/work /works/OL10923876W 3 2012-05-18T22:38:25.828329 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:42:25.364705"}, "subject_places": ["United States"], "subjects": ["Government purchasing", "Law and legislation", "Small business"], "latest_revision": 3, "key": "/works/OL10923876W", "title": "Amending section 8(e) of the Small Business Act (provisions relating to the notice of federal procurement actions)", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL43160A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-18T22:38:25.828329"}, "revision": 3}
+/type/work /works/OL1092418W 4 2010-08-03T09:47:21.736313 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:29:08.754147"}, "subtitle": "written at the request of a friend : to be spoken at Drury Lane Theatre.", "key": "/works/OL1092418W", "title": "Monody on the death of the Right Honourable R. B. Sheridan", "subject_people": ["Richard Brinsley Sheridan (1751-1816)"], "latest_revision": 4, "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL113143A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-08-03T09:47:21.736313"}, "revision": 4}
+/type/work /works/OL10924279W 4 2016-03-22T16:07:38.188131 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:42:25.364705"}, "subject_places": ["United States"], "subjects": ["Budget", "Appropriations and expenditures, 1982"], "latest_revision": 4, "key": "/works/OL10924279W", "title": "Amendments for appropriations for fiscal year 1982 and reduction for fiscal year 1984 appropriations", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL219349A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2016-03-22T16:07:38.188131"}, "revision": 4}
+/type/work /works/OL10924319W 5 2016-03-22T16:07:38.188131 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:42:25.364705"}, "subject_places": ["Soviet Union", "United States"], "subjects": ["Fishery law and legislation", "Fishery management, International", "International Fishery management"], "latest_revision": 5, "key": "/works/OL10924319W", "title": "Governing international fishery agreement with Soviet Union", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL219349A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2016-03-22T16:07:38.188131"}, "revision": 5}
+/type/work /works/OL10924562W 2 2010-01-18T19:29:26.405193 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:42:25.364705"}, "title": "Fort Point Channel, Boston bridge", "subject_places": ["United States", "Boston", "Massachusetts"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T19:29:26.405193"}, "latest_revision": 2, "key": "/works/OL10924562W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4534601A"}}], "type": {"key": "/type/work"}, "subjects": ["Bridges", "Law and legislation"], "revision": 2}
+/type/work /works/OL10924889W 2 2010-01-18T19:29:26.405193 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:42:32.259593"}, "title": "Wind tunnel simulation and field measurements of flow over a coastal headland", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T19:29:26.405193"}, "latest_revision": 2, "key": "/works/OL10924889W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4534837A"}}], "type": {"key": "/type/work"}, "subjects": ["Ground simulators", "Wind tunnels"], "revision": 2}
+/type/work /works/OL10924985W 1 2009-12-11T03:42:32.259593 {"title": "Bristol area Land Use Transportation Study", "created": {"type": "/type/datetime", "value": "2009-12-11T03:42:32.259593"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:42:32.259593"}, "latest_revision": 1, "key": "/works/OL10924985W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4534894A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10925845W 3 2022-11-15T02:26:39.217851 {"title": "Istoricheskie silu\u0117ty", "subject_places": ["Russia"], "key": "/works/OL10925845W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL260096A"}}], "type": {"key": "/type/work"}, "subjects": ["History"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T03:42:32.259593"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-15T02:26:39.217851"}}
+/type/work /works/OL10925884W 2 2010-01-18T19:35:10.154359 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:42:39.380390"}, "title": "Breakwaters, jetties and groins", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T19:35:10.154359"}, "latest_revision": 2, "key": "/works/OL10925884W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4535412A"}}], "type": {"key": "/type/work"}, "subjects": ["Design and construction", "Shore protection", "Jetties", "Breakwaters", "Groins (Shore protection)"], "revision": 2}
+/type/work /works/OL10925923W 3 2010-12-03T20:09:39.702595 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:42:39.380390"}, "subjects": ["Literature, Modern", "Modern Literature", "Russian literature"], "latest_revision": 3, "key": "/works/OL10925923W", "title": "Literaturnaia kritika", "subject_times": ["19th century", "20th century"], "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4535434A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T20:09:39.702595"}, "revision": 3}
+/type/work /works/OL10926058W 1 2009-12-11T03:42:39.380390 {"title": "The register of Bruera Church, formerly in the parish of St. Oswald, co. Chester", "created": {"type": "/type/datetime", "value": "2009-12-11T03:42:39.380390"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:42:39.380390"}, "latest_revision": 1, "key": "/works/OL10926058W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4535520A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10926418W 2 2010-01-18T19:35:10.154359 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:42:39.380390"}, "title": "Non-reservation Indian boarding schools, 1879-1969", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T19:35:10.154359"}, "latest_revision": 2, "key": "/works/OL10926418W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4535707A"}}], "type": {"key": "/type/work"}, "subjects": ["Education", "Indians of North America"], "revision": 2}
+/type/work /works/OL10926547W 2 2010-01-18T19:35:10.154359 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:42:39.380390"}, "title": "Les \u00e9coles de Chartres au Moyen-Age (du 5e au 16e si\u00e8cle) Par A. Clerval", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T19:35:10.154359"}, "latest_revision": 2, "key": "/works/OL10926547W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4535800A"}}], "type": {"key": "/type/work"}, "subjects": ["Chartres", "Education", "France"], "revision": 2}
+/type/work /works/OL10926585W 1 2009-12-11T03:42:39.380390 {"title": "The principles of chemistry", "created": {"type": "/type/datetime", "value": "2009-12-11T03:42:39.380390"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:42:39.380390"}, "latest_revision": 1, "key": "/works/OL10926585W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4535817A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10926903W 2 2010-01-18T19:35:10.154359 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:42:45.934286"}, "title": "Dynamik des fluges", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T19:35:10.154359"}, "latest_revision": 2, "key": "/works/OL10926903W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4536028A"}}], "type": {"key": "/type/work"}, "subjects": ["Stability of airplanes"], "revision": 2}
+/type/work /works/OL10927527W 3 2010-12-04T01:59:50.333050 {"last_modified": {"type": "/type/datetime", "value": "2010-12-04T01:59:50.333050"}, "title": "Karn\u0101takadalli citrakale", "created": {"type": "/type/datetime", "value": "2009-12-11T03:42:45.934286"}, "subjects": ["Indic Mural painting and decoration", "Indic Painting", "Mural painting and decoration, Indic", "Painting, Indic"], "latest_revision": 3, "key": "/works/OL10927527W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4536355A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10927780W 1 2009-12-11T03:42:45.934286 {"title": "Draft [education] development plan", "created": {"type": "/type/datetime", "value": "2009-12-11T03:42:45.934286"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:42:45.934286"}, "latest_revision": 1, "key": "/works/OL10927780W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4536472A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1092783W 3 2010-04-28T07:17:47.985892 {"title": "Normandy, Its Gothic Architecture and History: As Illustrated by Twenty-five ..", "created": {"type": "/type/datetime", "value": "2009-12-09T20:29:08.754147"}, "covers": [6164300], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:17:47.985892"}, "latest_revision": 3, "key": "/works/OL1092783W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL113156A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10928194W 2 2010-01-18T19:40:45.025372 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:42:52.439043"}, "title": "Yeast extractives in the nutrition of San Francisco sourdough bacteria (Lactobacillus sanfrancisco)", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T19:40:45.025372"}, "latest_revision": 2, "key": "/works/OL10928194W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4536745A"}}], "type": {"key": "/type/work"}, "subjects": ["Bacteria"], "revision": 2}
+/type/work /works/OL10928233W 2 2010-01-18T19:40:45.025372 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:42:52.439043"}, "title": "Forty-four years with the Northern Crees", "subject_places": ["Canada"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T19:40:45.025372"}, "latest_revision": 2, "key": "/works/OL10928233W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4536771A"}}], "type": {"key": "/type/work"}, "subjects": ["Home missions", "Methodist", "Cree Indians", "Indians of North America", "Missions"], "revision": 2}
+/type/work /works/OL10928373W 1 2009-12-11T03:42:52.439043 {"title": "Risk management in the NHS", "created": {"type": "/type/datetime", "value": "2009-12-11T03:42:52.439043"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:42:52.439043"}, "latest_revision": 1, "key": "/works/OL10928373W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4536811A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10928379W 1 2009-12-11T03:42:52.439043 {"title": "Primary care", "created": {"type": "/type/datetime", "value": "2009-12-11T03:42:52.439043"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:42:52.439043"}, "latest_revision": 1, "key": "/works/OL10928379W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4536811A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10928576W 4 2020-12-08T19:54:54.889857 {"title": "al- Yaz\u012bd\u012byah", "subjects": ["Yezidis", "Doctrines", "History"], "key": "/works/OL10928576W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4536912A"}}], "type": {"key": "/type/work"}, "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T03:42:52.439043"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-08T19:54:54.889857"}}
+/type/work /works/OL10928985W 1 2009-12-11T03:42:58.936675 {"title": "Contemporary fine art", "created": {"type": "/type/datetime", "value": "2009-12-11T03:42:58.936675"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:42:58.936675"}, "latest_revision": 1, "key": "/works/OL10928985W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4537162A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10929228W 2 2010-01-18T19:46:07.099372 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:42:58.936675"}, "title": "Genomic comparisons of seed-transmissible and non-seed-transmissible strains of cucumber mosaic virus", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T19:46:07.099372"}, "latest_revision": 2, "key": "/works/OL10929228W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4537324A"}}], "type": {"key": "/type/work"}, "subjects": ["Cucumber mosaic virus"], "revision": 2}
+/type/work /works/OL10929841W 2 2010-01-18T19:46:07.099372 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:42:58.936675"}, "title": "Diffusion coefficients of binary gas systems: carbon tetrachloride - air, carbon tetrachloride - nitrogen, methyl sulfide - nitrogen, methyl disulfide - nitrogen", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T19:46:07.099372"}, "latest_revision": 2, "key": "/works/OL10929841W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4537631A"}}], "type": {"key": "/type/work"}, "subjects": ["Diffusion"], "revision": 2}
+/type/work /works/OL10929997W 3 2010-12-06T08:00:15.396601 {"last_modified": {"type": "/type/datetime", "value": "2010-12-06T08:00:15.396601"}, "title": "The design, development and testing of an experimental individualized learning system", "created": {"type": "/type/datetime", "value": "2009-12-11T03:43:06.476224"}, "subjects": ["Learning, Psychology of", "Psychology of Learning"], "latest_revision": 3, "key": "/works/OL10929997W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4537720A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10930876W 1 2009-12-11T03:43:11.824922 {"title": "Programme of action for the enforcement of social standards embodied in conventions not yet ratified or accepted", "created": {"type": "/type/datetime", "value": "2009-12-11T03:43:11.824922"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:43:11.824922"}, "latest_revision": 1, "key": "/works/OL10930876W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4538307A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10931290W 3 2017-11-25T03:29:40.916455 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:43:11.824922"}, "subject_places": ["Ukraine"], "subjects": ["Ukrainians", "Antiquities"], "latest_revision": 3, "key": "/works/OL10931290W", "title": "Vaz\ufe20h\ufe21lyvi problemy etnohenezy ukra\u00efns\u02b9koho narodu v svitli arkheolohichnykh doslidz\ufe20h\ufe21en\u02b9", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4538484A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2017-11-25T03:29:40.916455"}, "revision": 3}
+/type/work /works/OL10931355W 2 2010-01-18T19:51:12.655268 {"title": "Kul\u02b9turne z\ufe20h\ufe21ytti\ufe20a\ufe21 Ukra\u00efny za het\u02b9mana Danyla Apostola", "created": {"type": "/type/datetime", "value": "2009-12-11T03:43:11.824922"}, "subject_places": ["Ukraine"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T19:51:12.655268"}, "latest_revision": 2, "key": "/works/OL10931355W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4538502A"}}], "subject_people": ["Danylo Apostol Hetman of the Cossacks (1654-1734)"], "type": {"key": "/type/work"}, "subjects": ["Intellectual life"], "revision": 2}
+/type/work /works/OL1093150W 3 2010-04-28T07:17:47.985892 {"title": "Dryden's Palamon and Arcite", "created": {"type": "/type/datetime", "value": "2009-12-09T20:29:08.754147"}, "covers": [5766991], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:17:47.985892"}, "latest_revision": 3, "key": "/works/OL1093150W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL113177A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10931680W 2 2010-01-18T19:56:18.113684 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:43:11.824922"}, "title": "Selective control of volunteer wheat (Triticum aestivum (L.) em. Thell.) in new seedlings of alfalfa (Medicago sativa L.) with fluazifop-butyl and sethoxydim", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T19:56:18.113684"}, "latest_revision": 2, "key": "/works/OL10931680W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4538696A"}}], "type": {"key": "/type/work"}, "subjects": ["Alfalfa", "Wheat"], "revision": 2}
+/type/work /works/OL10931783W 4 2022-06-07T06:45:51.417178 {"subject_places": ["Poltavs\u02b9ka oblast\u02b9", "Ukraine"], "subjects": ["Geographical Names", "Names, Geographical", "Rivers", "Slavic"], "key": "/works/OL10931783W", "title": "Nazvy richok Poltavshchyny", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL669260A"}}], "type": {"key": "/type/work"}, "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T03:43:11.824922"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-07T06:45:51.417178"}}
+/type/work /works/OL1093178W 1 2009-12-09T20:29:08.754147 {"title": "The wild gallant", "created": {"type": "/type/datetime", "value": "2009-12-09T20:29:08.754147"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T20:29:08.754147"}, "latest_revision": 1, "key": "/works/OL1093178W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL113177A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10931865W 3 2022-12-31T09:56:05.973734 {"title": "Discovery of the famous temple and enclosure of Serapis at Alexandria", "subject_places": ["Egypt", "Alexandria", "Alexandria (Egypt)"], "key": "/works/OL10931865W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4538764A"}}], "type": {"key": "/type/work"}, "subjects": ["Inscriptions"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T03:43:11.824922"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-31T09:56:05.973734"}}
+/type/work /works/OL10931978W 1 2009-12-11T03:43:17.659429 {"title": "Statement by", "created": {"type": "/type/datetime", "value": "2009-12-11T03:43:17.659429"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:43:17.659429"}, "latest_revision": 1, "key": "/works/OL10931978W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4538825A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10932107W 2 2010-01-18T19:56:18.113684 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:43:17.659429"}, "title": "Po snezhnym prostoram", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T19:56:18.113684"}, "latest_revision": 2, "key": "/works/OL10932107W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4538900A"}}], "type": {"key": "/type/work"}, "subjects": ["Skis and skiing", "Russia"], "revision": 2}
+/type/work /works/OL10932165W 2 2010-01-18T19:56:18.113684 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:43:17.659429"}, "title": "Handbook for Washington school directors", "subject_places": ["Washington (State)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T19:56:18.113684"}, "latest_revision": 2, "key": "/works/OL10932165W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4538927A"}}], "type": {"key": "/type/work"}, "subjects": ["School boards"], "revision": 2}
+/type/work /works/OL10932199W 1 2009-12-11T03:43:17.659429 {"title": "Le tra\u00eetre", "created": {"type": "/type/datetime", "value": "2009-12-11T03:43:17.659429"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:43:17.659429"}, "latest_revision": 1, "key": "/works/OL10932199W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4538941A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10932359W 1 2009-12-11T03:43:17.659429 {"title": "Annual report and year book", "created": {"type": "/type/datetime", "value": "2009-12-11T03:43:17.659429"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:43:17.659429"}, "latest_revision": 1, "key": "/works/OL10932359W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4539039A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10932448W 2 2010-01-18T19:56:18.113684 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:43:17.659429"}, "title": "F\u012b al-tarbiyah wa-al-siy\u0101sah", "subject_places": ["Arab countries"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T19:56:18.113684"}, "latest_revision": 2, "key": "/works/OL10932448W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4539084A"}}], "type": {"key": "/type/work"}, "subjects": ["Politics and government"], "revision": 2}
+/type/work /works/OL10933762W 2 2010-01-18T20:01:57.606109 {"title": "Hist\u00f3ria da cultura em Portugal", "created": {"type": "/type/datetime", "value": "2009-12-11T03:43:22.770859"}, "subject_places": ["Portugal"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T20:01:57.606109"}, "latest_revision": 2, "key": "/works/OL10933762W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4539633A"}}], "subject_people": ["Gil Vicente (ca. 1470-ca. 1536)"], "type": {"key": "/type/work"}, "subjects": ["Intellectual life", "Civilization", "Criticism and interpretation", "History"], "revision": 2}
+/type/work /works/OL10934319W 2 2010-01-18T20:01:57.606109 {"title": "Les \u00e9crits d'un biblioth\u00e9caire auteur, bibliophile, bibliographe et historien de 1967 \u00e0 1988", "created": {"type": "/type/datetime", "value": "2009-12-11T03:43:29.251156"}, "subject_places": ["Lanaudi\u00e8re Region (Quebec)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T20:01:57.606109"}, "latest_revision": 2, "key": "/works/OL10934319W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4539977A"}}], "subject_people": ["R\u00e9jean Olivier (1938-)"], "type": {"key": "/type/work"}, "subjects": ["Bibliography"], "revision": 2}
+/type/work /works/OL10934533W 3 2010-10-30T13:43:04.968786 {"last_modified": {"type": "/type/datetime", "value": "2010-10-30T13:43:04.968786"}, "title": "Vom Hirtenzelt zur Hohen Pforte", "created": {"type": "/type/datetime", "value": "2009-12-11T03:43:29.251156"}, "subjects": ["Turks"], "latest_revision": 3, "key": "/works/OL10934533W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4540092A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10934658W 1 2009-12-11T03:43:29.251156 {"title": "Progress in partnership", "created": {"type": "/type/datetime", "value": "2009-12-11T03:43:29.251156"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:43:29.251156"}, "latest_revision": 1, "key": "/works/OL10934658W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4540137A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10934772W 4 2010-12-03T10:59:17.843843 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:43:29.251156"}, "subject_places": ["Turkey"], "subjects": ["History"], "latest_revision": 4, "key": "/works/OL10934772W", "title": "T\u00fcrkiye tarihi", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4540203A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T10:59:17.843843"}, "revision": 4}
+/type/work /works/OL10935000W 2 2010-01-18T20:07:51.129245 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:43:35.464696"}, "title": "\u1e24arb Ukt\u016bbir wa-al-muf\u0101ja\u02beah al-istir\u0101t\u012bj\u012byah", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T20:07:51.129245"}, "latest_revision": 2, "key": "/works/OL10935000W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4540334A"}}], "type": {"key": "/type/work"}, "subjects": ["Israel-Arab War, 1967"], "revision": 2}
+/type/work /works/OL10935640W 2 2010-01-18T20:07:51.129245 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:43:35.464696"}, "title": "R\u00e9pertoire des mariages de la paroisse de Sainte-Justine de Newton, comt\u00e9 de Vaudreuil, 1865-1981", "subject_places": ["Quebec (Province)", "Sainte-Justine-de-Newton (Quebec)", "Sainte-Justine-de-Newton"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T20:07:51.129245"}, "latest_revision": 2, "key": "/works/OL10935640W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4540645A"}}], "type": {"key": "/type/work"}, "subjects": ["Marriage records", "Genealogy"], "revision": 2}
+/type/work /works/OL10935775W 1 2009-12-11T03:43:35.464696 {"title": "The Coronation, 1937", "created": {"type": "/type/datetime", "value": "2009-12-11T03:43:35.464696"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:43:35.464696"}, "latest_revision": 1, "key": "/works/OL10935775W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4540712A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10935992W 2 2010-01-18T20:13:24.585038 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:43:41.269609"}, "title": "Address of the Honourable Dr. Rolph delivered before the faculty and students of medicine of the University of Victoria College, Toronto, 1854-5", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T20:13:24.585038"}, "latest_revision": 2, "key": "/works/OL10935992W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4540842A"}}], "type": {"key": "/type/work"}, "subjects": ["Medicine", "Philosophy"], "revision": 2}
+/type/work /works/OL10936185W 2 2010-01-18T20:13:24.585038 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:43:41.269609"}, "title": "Adab al-siy\u0101sah f\u012b al-\u02bba\u1e63r al-Umaw\u012b", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T20:13:24.585038"}, "latest_revision": 2, "key": "/works/OL10936185W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4540932A"}}], "subject_times": ["622-750"], "type": {"key": "/type/work"}, "subjects": ["History and criticism", "Arabic literature", "Politics in literature"], "revision": 2}
+/type/work /works/OL10936373W 1 2009-12-11T03:43:41.269609 {"title": "Het grote verdriet", "created": {"type": "/type/datetime", "value": "2009-12-11T03:43:41.269609"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:43:41.269609"}, "latest_revision": 1, "key": "/works/OL10936373W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4541034A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10936626W 2 2010-01-18T20:13:24.585038 {"title": "Mendele Moykher Sforim", "created": {"type": "/type/datetime", "value": "2009-12-11T03:43:41.269609"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-18T20:13:24.585038"}, "latest_revision": 2, "key": "/works/OL10936626W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4541182A"}}], "subject_people": ["Mendele Mokher Sefarim (1835-1917)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10936636W 2 2010-01-18T20:13:24.585038 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:43:41.269609"}, "title": "The design and performance of a wideband electronic correlator", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T20:13:24.585038"}, "latest_revision": 2, "key": "/works/OL10936636W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4541193A"}}], "type": {"key": "/type/work"}, "subjects": ["Electronic instruments", "Statistical communication theory"], "revision": 2}
+/type/work /works/OL10937040W 4 2010-12-03T10:59:17.843843 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T10:59:17.843843"}, "latest_revision": 4, "key": "/works/OL10937040W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4541368A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T03:43:48.022397"}, "title": "Reference aids : Western European history, 1789 to the present", "subject_places": ["Europe"], "subjects": ["Bibliography", "Catalogs", "History"], "subject_times": ["1789-1900", "20th century"], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL10937067W 3 2010-12-03T22:11:39.774619 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T22:11:39.774619"}, "latest_revision": 3, "key": "/works/OL10937067W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4541377A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T03:43:48.022397"}, "title": "Regards sur Andr\u00e9 Malraux", "subjects": ["Authors, French", "Biography", "French Authors"], "subject_people": ["Andr\u00e9 Malraux (1901-1976)"], "subject_times": ["20th century"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10937140W 1 2009-12-11T03:43:48.022397 {"title": "1941 Northwest Conference of the National Association of Practical Refrigeration Engineers Northwest Association of Ice Industries [and] Washington Refrigerated Lockers Association, Inc", "created": {"type": "/type/datetime", "value": "2009-12-11T03:43:48.022397"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:43:48.022397"}, "latest_revision": 1, "key": "/works/OL10937140W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4541417A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10937144W 2 2010-01-18T20:18:41.954232 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:43:48.022397"}, "title": "An economic study of locker plants", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T20:18:41.954232"}, "latest_revision": 2, "key": "/works/OL10937144W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4541420A"}}], "type": {"key": "/type/work"}, "subjects": ["Cold-storage lockers", "Frozen foods"], "revision": 2}
+/type/work /works/OL10937191W 2 2012-05-26T00:55:13.255245 {"title": "Irradiation of foodstuffs", "created": {"type": "/type/datetime", "value": "2009-12-11T03:43:48.022397"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-26T00:55:13.255245"}, "latest_revision": 2, "key": "/works/OL10937191W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4541300A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10937211W 1 2009-12-11T03:43:48.022397 {"title": "The dry cleaners' handbook", "created": {"type": "/type/datetime", "value": "2009-12-11T03:43:48.022397"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:43:48.022397"}, "latest_revision": 1, "key": "/works/OL10937211W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4541451A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10937292W 2 2010-01-18T20:18:41.954232 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:43:48.022397"}, "title": "Calcium requirement and adaptation in adult men", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T20:18:41.954232"}, "latest_revision": 2, "key": "/works/OL10937292W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4541493A"}}], "type": {"key": "/type/work"}, "subjects": ["Nutritional Requirements", "Metabolism", "Calcium"], "revision": 2}
+/type/work /works/OL10937379W 2 2010-01-18T20:18:41.954232 {"title": "Nuri as-Said", "created": {"type": "/type/datetime", "value": "2009-12-11T03:43:48.022397"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-18T20:18:41.954232"}, "latest_revision": 2, "key": "/works/OL10937379W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4541542A"}}], "subject_people": ["N\u016br\u012b al-Sa'\u012bd (1888-1958)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10937810W 2 2010-01-18T20:18:41.954232 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:43:48.022397"}, "title": "al- Ta\u1e0bl\u012bl al-ishtir\u0101k\u012b", "subject_places": ["Arab countries"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T20:18:41.954232"}, "latest_revision": 2, "key": "/works/OL10937810W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4541814A"}}], "type": {"key": "/type/work"}, "subjects": ["Socialism"], "revision": 2}
+/type/work /works/OL10937958W 3 2010-12-03T10:31:32.887047 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T10:31:32.887047"}, "title": "Estimation of general and specific combining abilities from a diallel cross of three inbred lines of Suffolk sheep", "created": {"type": "/type/datetime", "value": "2009-12-11T03:43:55.960505"}, "subjects": ["Genetics", "Research", "Suffolk sheep"], "latest_revision": 3, "key": "/works/OL10937958W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4541894A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10938142W 1 2009-12-11T03:43:55.960505 {"title": "Guidelines to the design of quieter hydraulic fluid power systems", "created": {"type": "/type/datetime", "value": "2009-12-11T03:43:55.960505"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:43:55.960505"}, "latest_revision": 1, "key": "/works/OL10938142W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4542001A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1093835W 4 2011-12-19T06:39:47.006246 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:29:17.718749"}, "subjects": ["Official Pharmacopoeias"], "latest_revision": 4, "key": "/works/OL1093835W", "title": "Pharmacopoeia of India", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL113219A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2011-12-19T06:39:47.006246"}, "covers": [5654404], "revision": 4}
+/type/work /works/OL10938423W 1 2009-12-11T03:43:55.960505 {"title": "Girlington community survey 1993", "created": {"type": "/type/datetime", "value": "2009-12-11T03:43:55.960505"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:43:55.960505"}, "latest_revision": 1, "key": "/works/OL10938423W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4542160A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10938526W 3 2010-12-04T05:34:36.321573 {"last_modified": {"type": "/type/datetime", "value": "2010-12-04T05:34:36.321573"}, "title": "The Canadian Mathematics Olympiads, 1969-1975", "created": {"type": "/type/datetime", "value": "2009-12-11T03:43:55.960505"}, "subjects": ["Mathematics", "Problems, exercises", "Problems, exercises, etc"], "latest_revision": 3, "key": "/works/OL10938526W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4542243A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10938611W 2 2010-01-18T20:24:28.392472 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:43:55.960505"}, "title": "Personality correlates of undergraduates selecting home economics as an area of specialization in college", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T20:24:28.392472"}, "latest_revision": 2, "key": "/works/OL10938611W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4542295A"}}], "type": {"key": "/type/work"}, "subjects": ["Home economics", "Study and teaching"], "revision": 2}
+/type/work /works/OL10938963W 2 2010-01-18T20:24:28.392472 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:44:04.861651"}, "title": "Community experiences in home economics student teaching programs in six teacher education institutions in New York State", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T20:24:28.392472"}, "latest_revision": 2, "key": "/works/OL10938963W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4542523A"}}], "type": {"key": "/type/work"}, "subjects": ["Home economics", "Study and teaching", "Community and college"], "revision": 2}
+/type/work /works/OL10939038W 3 2010-12-03T10:31:32.887047 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T10:31:32.887047"}, "title": "On the joint estimation of the spectra", "created": {"type": "/type/datetime", "value": "2009-12-11T03:44:04.861651"}, "subjects": ["Probabilities", "Spectrum analysis", "Statistics"], "latest_revision": 3, "key": "/works/OL10939038W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4542557A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10939244W 2 2010-01-18T20:24:28.392472 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:44:04.861651"}, "title": "A method of improving power system transient stability using controllable parameters", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T20:24:28.392472"}, "latest_revision": 2, "key": "/works/OL10939244W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4542682A"}}], "type": {"key": "/type/work"}, "subjects": ["Electric waves", "Damping", "Power-plants", "Power transmission"], "revision": 2}
+/type/work /works/OL10939282W 2 2010-01-18T20:24:28.392472 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:44:04.861651"}, "title": "Das t\u00e2r\u00eekh-i Zend\u00eeje, des Ibn 'Abd el-Ker\u00eem 'Al\u00ee Riz\u0324\u00e2 von \u0160\u00eer\u00e2z", "subject_places": ["Iran"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T20:24:28.392472"}, "latest_revision": 2, "key": "/works/OL10939282W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4542711A"}}], "subject_times": ["16th-18th centuries"], "type": {"key": "/type/work"}, "subjects": ["History"], "revision": 2}
+/type/work /works/OL10939414W 3 2010-12-03T10:31:58.879810 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T10:31:58.879810"}, "title": "Teachers Southeast Asia packet", "created": {"type": "/type/datetime", "value": "2009-12-11T03:44:04.861651"}, "subjects": ["Asia, Southeastern", "Description and travel", "Southeastern Asia"], "latest_revision": 3, "key": "/works/OL10939414W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4542783A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10939544W 4 2010-12-03T10:59:09.985973 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:44:04.861651"}, "subject_places": ["Iraq"], "subjects": ["Academic Dissertations", "Bibliography", "Dissertations, Academic", "J\u0101mi\u02bbat Baghd\u0101d", "J\u0101mi\u02bbat Baghd\u0101d. al-Maktabah al-Markaz\u012byah"], "latest_revision": 4, "key": "/works/OL10939544W", "title": "U\u1e6dr\u016b\u1e25\u0101t al-\u02bbIr\u0101qiy\u012bn al-m\u016bda\u02bbah lad\u00e1 al-Maktabah al-Markaz\u012byah li-J\u0101mi\u02bbat Baghd\u0101d", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4542846A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T10:59:09.985973"}, "revision": 4}
+/type/work /works/OL10939548W 2 2010-01-18T20:24:28.392472 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:44:04.861651"}, "title": "Kit\u0101b al- iftikh\u0101r", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T20:24:28.392472"}, "latest_revision": 2, "key": "/works/OL10939548W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4542849A"}}], "subject_times": ["Early works to 1800"], "type": {"key": "/type/work"}, "subjects": ["Ismailites", "Islamic theology"], "revision": 2}
+/type/work /works/OL1093956W 3 2010-04-28T07:17:47.985892 {"title": "Basset", "created": {"type": "/type/datetime", "value": "2009-12-09T20:29:17.718749"}, "covers": [5978893], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:17:47.985892"}, "latest_revision": 3, "key": "/works/OL1093956W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL113234A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10939700W 3 2010-12-03T11:29:47.966392 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T11:29:47.966392"}, "title": "Indiis'ka kul'tura i Zakhid", "created": {"type": "/type/datetime", "value": "2009-12-11T03:44:04.861651"}, "subjects": ["Civilization, Hindu", "East and West", "Hindu Civilization"], "latest_revision": 3, "key": "/works/OL10939700W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4542964A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10939722W 2 2019-01-22T15:51:18.458796 {"title": "LEKSIKON ARAHIM KATSAR SHEL YAHADUT BERIT HA-MOATSOT BA-SHANIM 1917-1980", "created": {"type": "/type/datetime", "value": "2009-12-11T03:44:04.861651"}, "last_modified": {"type": "/type/datetime", "value": "2019-01-22T15:51:18.458796"}, "latest_revision": 2, "key": "/works/OL10939722W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL6686449A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL1093996W 2 2010-01-18T20:29:50.526257 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:29:17.718749"}, "title": "The American modern practice, or, A simple method of prevention and cure of diseases", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T20:29:50.526257"}, "latest_revision": 2, "key": "/works/OL1093996W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL113241A"}}], "subject_times": ["19th century"], "type": {"key": "/type/work"}, "subjects": ["Medicine", "Practice", "Medical colleges", "Therapeutics", "Popular works"], "revision": 2}
+/type/work /works/OL10940472W 3 2010-04-29T18:23:57.334883 {"subtitle": "ba\u1e25th f\u012b siy\u0101sat al-mustaqbal", "title": "al-\u02bb Arab wa-al-d\u012bmuqr\u0101\u1e6d\u012byah", "created": {"type": "/type/datetime", "value": "2009-12-11T03:44:13.156890"}, "subject_places": ["Arab countries"], "last_modified": {"type": "/type/datetime", "value": "2010-04-29T18:23:57.334883"}, "latest_revision": 3, "key": "/works/OL10940472W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4543346A"}}], "subject_times": ["1945-"], "type": {"key": "/type/work"}, "subjects": ["Politics and government", "Democracy"], "revision": 3}
+/type/work /works/OL10940478W 2 2010-01-18T20:29:50.526257 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:44:13.156890"}, "title": "Ba\u02bb\u1e0d ma\u02bb\u0101lim al-\u1e63ir\u0101\u02bb al-\u02bbArab\u012b wa-al-dawl\u012b", "subject_places": ["Middle East"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T20:29:50.526257"}, "latest_revision": 2, "key": "/works/OL10940478W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4543346A"}}], "subject_times": ["1945-"], "type": {"key": "/type/work"}, "subjects": ["Politics and government"], "revision": 2}
+/type/work /works/OL109405W 9 2020-07-31T07:32:21.029478 {"description": {"type": "/type/text", "value": "A horse in nineteenth-century England recounts his experiences with both good and bad masters."}, "covers": [9223669], "last_modified": {"type": "/type/datetime", "value": "2020-07-31T07:32:21.029478"}, "latest_revision": 9, "key": "/works/OL109405W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL29622A"}}, {"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL25123A"}}], "created": {"type": "/type/datetime", "value": "2009-10-17T23:16:23.155408"}, "title": "Black Beauty", "subjects": ["Horses", "Juvenile fiction", "Fiction", "Children's fiction", "England, fiction", "Horses, fiction"], "type": {"key": "/type/work"}, "revision": 9}
+/type/work /works/OL10940828W 1 2009-12-11T03:44:13.156890 {"title": "Wu\u1e25\u016bsh al-gh\u0101bah :qi\u1e63a\u1e63", "created": {"type": "/type/datetime", "value": "2009-12-11T03:44:13.156890"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:44:13.156890"}, "latest_revision": 1, "key": "/works/OL10940828W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4543510A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1094122W 4 2021-11-28T12:29:36.432446 {"title": "Life and battles of john Paul Jones", "covers": [5614868], "key": "/works/OL1094122W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL113254A"}}], "type": {"key": "/type/work"}, "subjects": ["History", "Naval operations", "Russo-Turkish War, 1787-1792", "Naval Military operations"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-09T20:29:17.718749"}, "last_modified": {"type": "/type/datetime", "value": "2021-11-28T12:29:36.432446"}}
+/type/work /works/OL10941349W 1 2009-12-11T03:44:16.875146 {"title": "Ballymoney town centre local plan 1991-2002", "created": {"type": "/type/datetime", "value": "2009-12-11T03:44:16.875146"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:44:16.875146"}, "latest_revision": 1, "key": "/works/OL10941349W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4543718A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10941774W 2 2010-01-18T20:35:26.229010 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:44:16.875146"}, "title": "al- Khil\u0101fah al-Isl\u0101m\u012byah", "subject_places": ["Islamic Empire"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T20:35:26.229010"}, "latest_revision": 2, "key": "/works/OL10941774W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4543826A"}}], "type": {"key": "/type/work"}, "subjects": ["History", "Politics and government", "Caliphate", "Political science"], "revision": 2}
+/type/work /works/OL10942930W 1 2009-12-11T03:44:26.269733 {"title": "al- Sayf wa-al-saf\u012bnah", "created": {"type": "/type/datetime", "value": "2009-12-11T03:44:26.269733"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:44:26.269733"}, "latest_revision": 1, "key": "/works/OL10942930W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4544203A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10943072W 1 2009-12-11T03:44:26.269733 {"title": "Nachrichten u\u0308ber die Witterung und Krankheiten in Su\u0308dcarolina", "created": {"type": "/type/datetime", "value": "2009-12-11T03:44:26.269733"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:44:26.269733"}, "latest_revision": 1, "key": "/works/OL10943072W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4544264A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10943643W 1 2009-12-11T03:44:26.269733 {"title": "Joseph Stalin", "created": {"type": "/type/datetime", "value": "2009-12-11T03:44:26.269733"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:44:26.269733"}, "latest_revision": 1, "key": "/works/OL10943643W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4544514A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10944320W 1 2009-12-11T03:44:32.270022 {"title": "Amber Valley tourism & leisure guide 1991", "created": {"type": "/type/datetime", "value": "2009-12-11T03:44:32.270022"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:44:32.270022"}, "latest_revision": 1, "key": "/works/OL10944320W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4544908A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10944336W 1 2009-12-11T03:44:32.270022 {"title": "The longest way round", "created": {"type": "/type/datetime", "value": "2009-12-11T03:44:32.270022"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:44:32.270022"}, "latest_revision": 1, "key": "/works/OL10944336W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4544920A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10944503W 1 2009-12-11T03:44:32.270022 {"title": "The ethics of research and the rights of the patient", "created": {"type": "/type/datetime", "value": "2009-12-11T03:44:32.270022"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:44:32.270022"}, "latest_revision": 1, "key": "/works/OL10944503W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4545017A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10944657W 2 2022-12-21T11:45:32.934423 {"title": "Die Panzerwelse des K.K. Hof-Naturalien-Cabinetes zu Wien", "key": "/works/OL10944657W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4545052A"}}], "type": {"key": "/type/work"}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T03:44:32.270022"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-21T11:45:32.934423"}}
+/type/work /works/OL10944894W 1 2009-12-11T03:44:37.291480 {"title": "Core skills and a conceptual framework for practice", "created": {"type": "/type/datetime", "value": "2009-12-11T03:44:37.291480"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:44:37.291480"}, "latest_revision": 1, "key": "/works/OL10944894W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4545170A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10945076W 1 2009-12-11T03:44:37.291480 {"title": "F\u012b al-\u1e63arf al-\u02bbArab\u012b", "created": {"type": "/type/datetime", "value": "2009-12-11T03:44:37.291480"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:44:37.291480"}, "latest_revision": 1, "key": "/works/OL10945076W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4545225A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10945485W 1 2009-12-11T03:44:37.291480 {"title": "Two sunshine house sonnets", "created": {"type": "/type/datetime", "value": "2009-12-11T03:44:37.291480"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:44:37.291480"}, "latest_revision": 1, "key": "/works/OL10945485W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4545399A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1094551W 2 2010-01-18T20:46:44.075336 {"title": "Mr. Edvvard Hydes speech at a conference betweene both Houses on Tewsday the 6th of July 1641", "created": {"type": "/type/datetime", "value": "2009-12-09T20:29:25.412564"}, "subject_places": ["Great Britain"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T20:46:44.075336"}, "latest_revision": 2, "key": "/works/OL1094551W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL113312A"}}], "subject_people": ["Humphrey Davenport Sir (1566-1645)", "Richard Weston Sir (1579?-1652)", "Thomas Trevor Sir (1586-1656)"], "subject_times": ["Charles I, 1625-1649"], "type": {"key": "/type/work"}, "subjects": ["History"], "revision": 2}
+/type/work /works/OL1094608W 7 2019-07-22T08:58:37.540167 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:29:25.412564"}, "subject_people": ["Harry Hamilton Johnston Sir (1858-1927)"], "key": "/works/OL1094608W", "title": "The story of my life", "latest_revision": 7, "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL113314A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2019-07-22T08:58:37.540167"}, "covers": [8403169], "revision": 7}
+/type/work /works/OL10946963W 1 2009-12-11T03:44:49.924897 {"title": "Parish register of Kensworth, 1604-1812", "created": {"type": "/type/datetime", "value": "2009-12-11T03:44:49.924897"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:44:49.924897"}, "latest_revision": 1, "key": "/works/OL10946963W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4546125A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10947342W 2 2010-01-18T20:57:55.455526 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:44:49.924897"}, "title": "La Constituci\u00f3n espa\u00f1ola de 1869 [i.e. mil ochocientos sesenta y nueve]", "subject_places": ["Spain"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T20:57:55.455526"}, "latest_revision": 2, "key": "/works/OL10947342W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4546360A"}}], "type": {"key": "/type/work"}, "subjects": ["Constitutional history"], "revision": 2}
+/type/work /works/OL10947519W 1 2009-12-11T03:44:49.924897 {"title": "Briton door controls", "created": {"type": "/type/datetime", "value": "2009-12-11T03:44:49.924897"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:44:49.924897"}, "latest_revision": 1, "key": "/works/OL10947519W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4546467A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1094757W 6 2020-09-07T03:32:12.936342 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:29:25.412564"}, "subjects": ["Unitarian Universalist churches", "Sermons", "American Sermons", "Unitarian churches"], "latest_revision": 6, "key": "/works/OL1094757W", "title": "The transient and permanent in Christianity", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL113323A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-09-07T03:32:12.936342"}, "covers": [6720029], "revision": 6}
+/type/work /works/OL10947829W 3 2010-12-03T14:57:48.946148 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:44:49.924897"}, "subject_places": ["Oregon", "South Umpqua River Valley"], "subjects": ["Clearcutting", "Forest management"], "latest_revision": 3, "key": "/works/OL10947829W", "title": "Proposed harvesting guides based upon an environmental classification in the South Umpqua basin of Oregon", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4546660A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:57:48.946148"}, "revision": 3}
+/type/work /works/OL10947915W 4 2012-05-19T13:13:52.466713 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:44:56.117926"}, "subject_places": ["United States"], "subjects": ["Small Business Development Center (U.S.)", "Small business"], "latest_revision": 4, "key": "/works/OL10947915W", "title": "Small Business Development Center program", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1058832A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-19T13:13:52.466713"}, "revision": 4}
+/type/work /works/OL10948065W 1 2009-12-11T03:44:56.117926 {"title": "Annual review", "created": {"type": "/type/datetime", "value": "2009-12-11T03:44:56.117926"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:44:56.117926"}, "latest_revision": 1, "key": "/works/OL10948065W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4546773A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10948092W 2 2010-01-18T20:57:55.455526 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:44:56.117926"}, "title": "The effects of fire on forests", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T20:57:55.455526"}, "latest_revision": 2, "key": "/works/OL10948092W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4546791A"}}], "type": {"key": "/type/work"}, "subjects": ["Fire ecology"], "revision": 2}
+/type/work /works/OL10948357W 2 2010-01-18T21:03:05.382146 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:44:56.117926"}, "title": "An order for the burial of the dead", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T21:03:05.382146"}, "latest_revision": 2, "key": "/works/OL10948357W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4546969A"}}], "type": {"key": "/type/work"}, "subjects": ["Funeral service", "United Church of Canada"], "revision": 2}
+/type/work /works/OL10948405W 3 2010-12-03T11:30:14.266943 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:44:56.117926"}, "subject_places": ["United States"], "subjects": ["Hazardous waste sites", "Safety measures", "United States", "United States. Occupational Safety and Health Administration"], "latest_revision": 3, "key": "/works/OL10948405W", "title": "OSHA oversight--worker protection at Superfund sites", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4546992A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T11:30:14.266943"}, "revision": 3}
+/type/work /works/OL10948451W 3 2010-12-03T11:30:14.266943 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T11:30:14.266943"}, "title": "Demythologizing the rhetoric of war and establishing a theological rhetoric of peace in the thought and life of a local church", "created": {"type": "/type/datetime", "value": "2009-12-11T03:44:56.117926"}, "subjects": ["Christianity", "Language and languages", "Peace", "Religious aspects", "Religious aspects of Language and languages", "Religious aspects of Peace", "Religious aspects of War", "War"], "latest_revision": 3, "key": "/works/OL10948451W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4547005A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1094870W 2 2010-01-18T21:03:05.382146 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:29:25.412564"}, "title": "New studies on the folding of the visual cortex and the significance of the occipital sulci in the human brain", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T21:03:05.382146"}, "latest_revision": 2, "key": "/works/OL1094870W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL113327A"}}], "type": {"key": "/type/work"}, "subjects": ["Visual cortex", "Cerebral sulci"], "revision": 2}
+/type/work /works/OL10949257W 1 2009-12-11T03:45:02.257359 {"title": "Agency procedures", "created": {"type": "/type/datetime", "value": "2009-12-11T03:45:02.257359"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:45:02.257359"}, "latest_revision": 1, "key": "/works/OL10949257W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4547361A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10949547W 1 2009-12-11T03:45:02.257359 {"title": "Rating review actual income and expenditure 1984-85", "created": {"type": "/type/datetime", "value": "2009-12-11T03:45:02.257359"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:45:02.257359"}, "latest_revision": 1, "key": "/works/OL10949547W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4547481A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10950275W 2 2010-01-18T21:08:04.969568 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:45:09.192815"}, "title": "Michigan Wilderness Act of 1986, Georgia Wilderness Act of 1986, and the Texas Wilderness Act Amendments of 1986", "subject_places": ["United States", "Michigan", "Georgia", "Texas"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T21:08:04.969568"}, "latest_revision": 2, "key": "/works/OL10950275W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4547890A"}}], "type": {"key": "/type/work"}, "subjects": ["Law and legislation", "Wilderness areas", "Forest reserves"], "revision": 2}
+/type/work /works/OL10950436W 2 2010-01-18T21:08:04.969568 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:45:09.192815"}, "title": "Cytokinin oxidase activity from Phaseolus vulgaris L. cv. Great Northern callus tissues", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T21:08:04.969568"}, "latest_revision": 2, "key": "/works/OL10950436W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4547991A"}}], "type": {"key": "/type/work"}, "subjects": ["Cytokinins", "Kidney bean"], "revision": 2}
+/type/work /works/OL10950559W 3 2012-05-18T22:39:04.668870 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:45:09.192815"}, "subject_places": ["United States"], "subjects": ["Law and legislation", "Fires and fire prevention", "Bars (Drinking establishments)", "Taverns (Inns)", "Motels", "Fire sprinklers", "Hotels"], "latest_revision": 3, "key": "/works/OL10950559W", "title": "Hotel and Motel Fire Safety Act of 1989", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL480208A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-18T22:39:04.668870"}, "revision": 3}
+/type/work /works/OL10950791W 2 2010-01-18T21:08:04.969568 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:45:09.192815"}, "title": "Review of the Anti-Drug Abuse Act of 1986", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T21:08:04.969568"}, "latest_revision": 2, "key": "/works/OL10950791W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4548171A"}}], "type": {"key": "/type/work"}, "subjects": ["Drug control", "International cooperation", "Drug abuse", "Prevention"], "revision": 2}
+/type/work /works/OL10950947W 1 2009-12-11T03:45:15.954561 {"title": "Materialy Vneocherednogo Plenuma Tsentral'nogo Komiteta KPSS, 13 fevralya 1984 goda", "created": {"type": "/type/datetime", "value": "2009-12-11T03:45:15.954561"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:45:15.954561"}, "latest_revision": 1, "key": "/works/OL10950947W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4548278A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10951285W 3 2010-12-03T21:25:27.873349 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:45:15.954561"}, "subject_places": ["Ger Iphofen", "Ger M\u00fcnnerstadt"], "subjects": ["Exhibitions", "German Glass painting and staining", "Glass painting and staining", "Glass painting and staining, German", "Glass painting and staining, Gothic", "Gothic Glass painting and staining", "Sankt Veitkirche (Iphofen, Germany)", "Stadtpfarrkirche St. Maria Magdalena (M\u00fcnnerstadt, Germany)"], "latest_revision": 3, "key": "/works/OL10951285W", "title": "Mainfra\u0308nkische Glasmalerei um 1420", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4548489A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T21:25:27.873349"}, "revision": 3}
+/type/work /works/OL10951294W 3 2010-12-03T11:44:09.477794 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T11:44:09.477794"}, "title": "Die Wandmalerei in der Moldau", "created": {"type": "/type/datetime", "value": "2009-12-11T03:45:15.954561"}, "subjects": ["Moldavian Mural painting and decoration", "Mural painting and decoration", "Mural painting and decoration, Moldavian"], "latest_revision": 3, "key": "/works/OL10951294W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4548493A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10951304W 3 2010-11-23T07:19:43.999130 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:45:15.954561"}, "subject_places": ["Alaska", "Innoko National Wildlife Refuge", "Innoko National Wildlife Refuge (Alaska)"], "subjects": ["Land use", "Conservation of natural resources", "Wildlife refuges"], "latest_revision": 3, "key": "/works/OL10951304W", "title": "Innoko National Wildlife Refuge", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1110026A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-11-23T07:19:43.999130"}, "revision": 3}
+/type/work /works/OL10951678W 3 2010-12-03T13:21:26.862255 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:45:15.954561"}, "subject_places": ["United States"], "subjects": ["Collective bargaining unit", "Labor unions", "Private security services", "Service Employees International Union", "Service industries workers"], "latest_revision": 3, "key": "/works/OL10951678W", "title": "Hearing on H.R. 3560, and the impact of the expanding application of section 9(b)(3) on the rights of workers", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4548728A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:21:26.862255"}, "revision": 3}
+/type/work /works/OL10951747W 1 2009-12-11T03:45:15.954561 {"title": "Kombinirovannye sledi\ufe20a\ufe21shchie sistemy", "created": {"type": "/type/datetime", "value": "2009-12-11T03:45:15.954561"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:45:15.954561"}, "latest_revision": 1, "key": "/works/OL10951747W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4548770A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10951759W 3 2010-12-03T13:28:22.293752 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:45:15.954561"}, "subject_places": ["United States"], "subjects": ["Auditing", "Credit unions", "Examiners (Administrative procedure)", "Handbooks, manuals", "Officials and employees", "United States", "United States. National Credit Union Administration"], "latest_revision": 3, "key": "/works/OL10951759W", "title": "NCUA examiner's guide", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4548773A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:28:22.293752"}, "revision": 3}
+/type/work /works/OL10952061W 4 2021-01-22T20:11:45.827997 {"subjects": ["Stadtbibliothek N\u00fcrnberg"], "subject_people": ["Ludwig Feuerbach (1804-1872)"], "key": "/works/OL10952061W", "title": "Ludwig Feuerbach", "authors": [{"author": {"key": "/authors/OL4548947A"}, "type": {"key": "/type/author_role"}}], "type": {"key": "/type/work"}, "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T03:45:23.237803"}, "last_modified": {"type": "/type/datetime", "value": "2021-01-22T20:11:45.827997"}}
+/type/work /works/OL10952097W 2 2010-01-18T21:13:05.947232 {"title": "Les Dialogues de Platon", "created": {"type": "/type/datetime", "value": "2009-12-11T03:45:23.237803"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-18T21:13:05.947232"}, "latest_revision": 2, "key": "/works/OL10952097W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4548967A"}}], "subject_people": ["Plato"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10952699W 2 2010-01-18T21:18:01.747340 {"title": "Skyways to a jungle laboratory", "created": {"type": "/type/datetime", "value": "2009-12-11T03:45:23.237803"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-18T21:18:01.747340"}, "latest_revision": 2, "key": "/works/OL10952699W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4549292A"}}], "subject_people": ["George Washington Crile (1864-1943)"], "type": {"key": "/type/work"}, "subjects": ["Expeditions"], "revision": 2}
+/type/work /works/OL10952776W 1 2009-12-11T03:45:23.237803 {"title": "K Pliot\ufe20s\ufe21enovo\u012d istorii molli\ufe20u\ufe21skovykh faun Paratetisa", "created": {"type": "/type/datetime", "value": "2009-12-11T03:45:23.237803"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:45:23.237803"}, "latest_revision": 1, "key": "/works/OL10952776W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4549341A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10952935W 1 2009-12-11T03:45:30.218303 {"title": "Poluprovodnikovye materialy, struktury, izmeritel\u02b9nye i upravli\ufe20a\ufe21i\ufe20u\ufe21shchie ustro\u012dstva", "created": {"type": "/type/datetime", "value": "2009-12-11T03:45:30.218303"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:45:30.218303"}, "latest_revision": 1, "key": "/works/OL10952935W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4549449A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10953053W 2 2010-01-18T21:18:01.747340 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:45:30.218303"}, "title": "Toxicity of selected herbicides to four species of freshwater fish", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T21:18:01.747340"}, "latest_revision": 2, "key": "/works/OL10953053W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4549546A"}}], "type": {"key": "/type/work"}, "subjects": ["Herbicides", "Toxicology", "Water", "Freshwater fishes", "Pollution"], "revision": 2}
+/type/work /works/OL10953374W 2 2010-01-18T21:18:01.747340 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:45:30.218303"}, "title": "Laboratories in human relations training", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T21:18:01.747340"}, "latest_revision": 2, "key": "/works/OL10953374W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4549756A"}}], "type": {"key": "/type/work"}, "subjects": ["Interpersonal relations", "Leadership", "Small groups"], "revision": 2}
+/type/work /works/OL10953692W 1 2009-12-11T03:45:30.218303 {"title": "U.S. lodging industry 1989", "created": {"type": "/type/datetime", "value": "2009-12-11T03:45:30.218303"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:45:30.218303"}, "latest_revision": 1, "key": "/works/OL10953692W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4549900A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10953723W 3 2010-12-03T21:38:07.639596 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:45:30.218303"}, "subject_places": ["Scotland"], "subjects": ["Access control", "Great Britain", "Housing authorities", "Records"], "latest_revision": 3, "key": "/works/OL10953723W", "title": "Access to Personal Files (Housing) (Scotland) Regulations 1991", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4549910A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T21:38:07.639596"}, "revision": 3}
+/type/work /works/OL10953903W 1 2009-12-11T03:45:35.226928 {"title": "Racconti Chassidici dei nostri tempi", "created": {"type": "/type/datetime", "value": "2009-12-11T03:45:35.226928"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:45:35.226928"}, "latest_revision": 1, "key": "/works/OL10953903W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4550027A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1095397W 11 2021-10-04T13:25:12.648705 {"title": "Shirley", "covers": [6240644, 6167113, 8246218, 2756649, 7673214, 7889036, 9309705, 8823836, 9176300], "key": "/works/OL1095397W", "authors": [{"author": {"key": "/authors/OL4326635A"}, "type": {"key": "/type/author_role"}}], "type": {"key": "/type/work"}, "description": "Set in the industrializing England of the Napoleonic wars and Luddite revolts of 1811-12, Shirley (1849) is the story of two contrasting heroines. One is the shy Caroline Helstone, who is trapped in the oppressive atmosphere of a Yorkshire rectory and whose bare life symbolizes the plight of single women in the nineteenth century. The other is the vivacious Shirley Keeldar, who inherits a local estate and whose wealth liberates her from convention.", "subject_places": ["Yorkshire (England)", "England", "Belgium", "Brussels (Belgium)", "Brussels", "Yorkshire"], "subjects": ["Social life and customs", "Fiction", "Teachers", "Social conditions", "Textile industry", "Napoleonic Wars, 1800-1815", "Women", "Napoleonic Wars (1800-1815)", "History", "Large type books", "Manners and customs", "British and irish fiction (fictional works by one author)", "Fiction, historical", "Napoleonic wars, 1800-1815, fiction", "England, fiction", "Fiction, historical, general", "Teachers, fiction", "Belgium, fiction"], "subject_times": ["Early 19th century", "ca. 1811 (pub. 1849)"], "latest_revision": 11, "revision": 11, "created": {"type": "/type/datetime", "value": "2009-12-09T20:29:32.027051"}, "last_modified": {"type": "/type/datetime", "value": "2021-10-04T13:25:12.648705"}}
+/type/work /works/OL10954238W 3 2010-12-03T13:14:19.036117 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:45:35.226928"}, "subject_places": ["United States"], "subjects": ["Environmental aspects", "Environmental aspects of Technology and state", "Technology and state"], "latest_revision": 3, "key": "/works/OL10954238W", "title": "Environmental data for energy technology policy analysis", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4550133A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:14:19.036117"}, "revision": 3}
+/type/work /works/OL10954447W 1 2009-12-11T03:45:35.226928 {"title": "Al\u1e6d-nay Lider", "created": {"type": "/type/datetime", "value": "2009-12-11T03:45:35.226928"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:45:35.226928"}, "latest_revision": 1, "key": "/works/OL10954447W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4550239A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10954787W 1 2009-12-11T03:45:35.226928 {"title": "Local government review: implications for the education service", "created": {"type": "/type/datetime", "value": "2009-12-11T03:45:35.226928"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:45:35.226928"}, "latest_revision": 1, "key": "/works/OL10954787W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4550396A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10954862W 2 2010-01-18T21:23:30.682408 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:45:35.226928"}, "title": "Khaybar", "subject_places": ["Saudi Arabia", "Khaybar (Saudi Arabia)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T21:23:30.682408"}, "latest_revision": 2, "key": "/works/OL10954862W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4550437A"}}], "type": {"key": "/type/work"}, "subjects": ["Cities and towns"], "revision": 2}
+/type/work /works/OL10955401W 2 2010-12-03T11:43:43.735873 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T11:43:43.735873"}, "title": "List of the archives of New College, London& the Coward Trust", "created": {"type": "/type/datetime", "value": "2009-12-11T03:45:41.290183"}, "subjects": ["Coward Trust", "New College (London)"], "latest_revision": 2, "key": "/works/OL10955401W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4550759A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL1095660W 5 2020-08-12T23:26:53.444196 {"title": "Die Stadtverwaltung der City von London...: Vortrag, gehalten im Berliner Handwerkerverein am 17 ..", "created": {"type": "/type/datetime", "value": "2009-12-09T20:29:32.027051"}, "covers": [6151309], "last_modified": {"type": "/type/datetime", "value": "2020-08-12T23:26:53.444196"}, "latest_revision": 5, "key": "/works/OL1095660W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL113385A"}}], "type": {"key": "/type/work"}, "revision": 5}
+/type/work /works/OL10957209W 2 2020-11-27T11:52:31.134175 {"description": {"type": "/type/text", "value": "Prose and poetry by a woman author."}, "title": "Ras\u0101\u02bcil al-\u1e25an\u012bn il\u00e1 al-y\u0101sam\u012bn", "created": {"type": "/type/datetime", "value": "2009-12-11T03:45:54.750179"}, "last_modified": {"type": "/type/datetime", "value": "2020-11-27T11:52:31.134175"}, "latest_revision": 2, "key": "/works/OL10957209W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4551851A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10957314W 2 2010-01-18T21:29:24.058430 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:45:54.750179"}, "title": "Obshchai\ufe20a\ufe21 teorii\ufe20a\ufe21 gomologi\u012d", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T21:29:24.058430"}, "latest_revision": 2, "key": "/works/OL10957314W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4551901A"}}], "type": {"key": "/type/work"}, "subjects": ["Homology theory"], "revision": 2}
+/type/work /works/OL109573W 25 2020-12-08T13:00:24.628476 {"description": {"type": "/type/text", "value": "Vince Luca is just like any other high school guy. His best friend, Alex, is trying to score vicariously through him; his brother is a giant pain; and his father keeps bugging him to get motivated. There is just one thing that really sets him apart for other kids: his father happens to be the head of a powerful crime organization. Needless to say, while Vince's family's connections can be handy for certain things-like when teachers are afraid to give him a bad grade as they can put a serious crimp in his dating life. How is he supposed to explain to a girl what his father does for a living? But when Vince finally meets one who seems to be worth the trouble, her family turns out to be the biggest problem of all. Because her father is an FBI agent-the one who wants to put his father away for good."}, "title": "Son of the mob", "covers": [4291444, 1472522], "subject_places": ["Santa Monica (Calif.)", "Juvenile fiction"], "subjects": ["Organized crime", "Juvenile fiction", "High schools", "Fiction", "Universities and colleges in fiction", "Organized crime in fiction", "Universities and colleges", "Man-woman relationships", "Teenagers", "Man-woman relationship", "Reading Level-Grade 7", "Reading Level-Grade 6", "Reading Level-Grade 9", "Reading Level-Grade 8", "Reading Level-Grade 11", "Reading Level-Grade 10", "Reading Level-Grade 12", "Children's fiction", "Crime, fiction", "Realistic Fiction", "Colleges and universities", "College stories", "California, fiction", "Large type books"], "key": "/works/OL109573W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL29658A"}}], "type": {"key": "/type/work"}, "latest_revision": 25, "revision": 25, "created": {"type": "/type/datetime", "value": "2009-10-17T23:16:23.155408"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-08T13:00:24.628476"}}
+/type/work /works/OL10957402W 2 2010-01-18T21:29:24.058430 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:45:54.750179"}, "title": "Multiling\u00fcismo y defensa idiom\u00e1tica", "subject_places": ["Peru"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T21:29:24.058430"}, "latest_revision": 2, "key": "/works/OL10957402W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4551935A"}}], "type": {"key": "/type/work"}, "subjects": ["Languages", "Linguistic minorities", "Multilingualism", "Sociolinguistics"], "revision": 2}
+/type/work /works/OL10957673W 1 2009-12-11T03:45:54.750179 {"title": "Sa-ahibaka mad\u012bnah ukhr\u00e1", "created": {"type": "/type/datetime", "value": "2009-12-11T03:45:54.750179"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:45:54.750179"}, "latest_revision": 1, "key": "/works/OL10957673W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4552094A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10957746W 3 2010-12-03T11:44:09.477794 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T11:44:09.477794"}, "title": "The effect of formation variables on the properties of wood particle moldings", "created": {"type": "/type/datetime", "value": "2009-12-11T03:45:54.750179"}, "subjects": ["Compressed Wood", "Forest products industry", "Wood, Compressed"], "latest_revision": 3, "key": "/works/OL10957746W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4552133A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10958209W 8 2022-11-17T13:13:03.022586 {"covers": [9298335], "key": "/works/OL10958209W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4552380A"}}], "title": "Painting in Italy", "subject_places": ["Italy"], "subjects": ["Renaissance Painting", "Italian Painting", "Mannerism (Art)", "Painting, Italian", "Painting, Renaissance", "Peinture", "Peinture italienne", "Peinture de la Renaissance", "Mani\u00e9risme (Art)", "Schilderkunst", "Malerei", "Painting, italian"], "type": {"key": "/type/work"}, "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2009-12-11T03:46:00.673400"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T13:13:03.022586"}}
+/type/work /works/OL10958960W 2 2010-01-18T21:34:47.609936 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:46:06.474933"}, "title": "Acetyl chloride as a reagent for the determination of hydroxyl groups", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T21:34:47.609936"}, "latest_revision": 2, "key": "/works/OL10958960W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4552761A"}}], "type": {"key": "/type/work"}, "subjects": ["Acetylation", "Organic compounds", "Analysis"], "revision": 2}
+/type/work /works/OL10958972W 1 2009-12-11T03:46:06.474933 {"title": "Ranjuku jidai", "created": {"type": "/type/datetime", "value": "2009-12-11T03:46:06.474933"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:46:06.474933"}, "latest_revision": 1, "key": "/works/OL10958972W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4552769A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10959076W 1 2009-12-11T03:46:06.474933 {"title": "The Habitat 16mm film collection", "created": {"type": "/type/datetime", "value": "2009-12-11T03:46:06.474933"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:46:06.474933"}, "latest_revision": 1, "key": "/works/OL10959076W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4552821A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10959343W 2 2010-01-18T21:34:47.609936 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:46:06.474933"}, "title": "Radio-frequency blanching of vegetables", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T21:34:47.609936"}, "latest_revision": 2, "key": "/works/OL10959343W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4552933A"}}], "type": {"key": "/type/work"}, "subjects": ["Canning and preserving", "Frozen vegetables"], "revision": 2}
+/type/work /works/OL10959347W 2 2010-01-18T21:34:47.609936 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:46:06.474933"}, "title": "Chemical and biochemical studies of the Lactobacillus bulgaricus factor", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T21:34:47.609936"}, "latest_revision": 2, "key": "/works/OL10959347W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4552937A"}}], "type": {"key": "/type/work"}, "subjects": ["Organic compounds", "Lactobacillus bulgaricus", "Synthesis"], "revision": 2}
+/type/work /works/OL10959348W 2 2010-01-18T21:34:47.609936 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:46:06.474933"}, "title": "Synthesis and biological activity of pantetheine analogs and derivatives", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T21:34:47.609936"}, "latest_revision": 2, "key": "/works/OL10959348W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4552937A"}}], "type": {"key": "/type/work"}, "subjects": ["Nicotinamide"], "revision": 2}
+/type/work /works/OL10959362W 1 2009-12-11T03:46:06.474933 {"title": "Os capit\u00e3es de aventura", "created": {"type": "/type/datetime", "value": "2009-12-11T03:46:06.474933"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:46:06.474933"}, "latest_revision": 1, "key": "/works/OL10959362W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4552950A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10959426W 1 2009-12-11T03:46:06.474933 {"title": "3 [i.e. tres] poemas del recuerdo", "created": {"type": "/type/datetime", "value": "2009-12-11T03:46:06.474933"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:46:06.474933"}, "latest_revision": 1, "key": "/works/OL10959426W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4552995A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10959597W 2 2010-01-18T21:34:47.609936 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:46:06.474933"}, "title": "Training programs for rehabilitation counselors in the United States", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T21:34:47.609936"}, "latest_revision": 2, "key": "/works/OL10959597W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4553075A"}}], "type": {"key": "/type/work"}, "subjects": ["Counseling", "Study and teaching"], "revision": 2}
+/type/work /works/OL1096044W 2 2010-01-18T21:40:06.069755 {"title": "H\u00e4ndel", "created": {"type": "/type/datetime", "value": "2009-12-09T20:29:32.027051"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-18T21:40:06.069755"}, "latest_revision": 2, "key": "/works/OL1096044W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL113411A"}}], "subject_people": ["George Frideric Handel (1685-1759)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10960756W 3 2010-12-03T22:24:56.257032 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:46:12.243745"}, "subject_places": ["Cuba"], "subjects": ["Canadian Foreign opinion", "Canadian students", "Description and travel", "Foreign opinion, Canadian"], "latest_revision": 3, "key": "/works/OL10960756W", "title": "Canadian students in Cuba", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4553631A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T22:24:56.257032"}, "revision": 3}
+/type/work /works/OL10961002W 3 2010-07-30T19:17:52.989824 {"subtitle": "\u1e25ay\u0101t\u012b f\u012b al-qa\u1e63\u012bdah", "last_modified": {"type": "/type/datetime", "value": "2010-07-30T19:17:52.989824"}, "title": "al- Mawqid wa-al-lahab", "created": {"type": "/type/datetime", "value": "2009-12-11T03:46:18.204974"}, "subjects": ["Arab Authors", "Interviews", "History and criticism", "Arabic poetry", "Biography"], "subject_people": ["Mu\u1e25ammad Qays\u012b"], "key": "/works/OL10961002W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4553766A"}}], "latest_revision": 3, "subject_times": ["20th century"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10961116W 2 2010-01-18T21:40:06.069755 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:46:18.204974"}, "title": "Self-diffusion of calcium ions in calcium bentonite gels", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T21:40:06.069755"}, "latest_revision": 2, "key": "/works/OL10961116W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4553824A"}}], "type": {"key": "/type/work"}, "subjects": ["Diffusion", "Analysis", "Clay"], "revision": 2}
+/type/work /works/OL10961947W 1 2009-12-11T03:46:23.912151 {"title": "O doce nunca amargou: alguns motivos ornamentais de do\u00e7aria portuguesa", "created": {"type": "/type/datetime", "value": "2009-12-11T03:46:23.912151"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:46:23.912151"}, "latest_revision": 1, "key": "/works/OL10961947W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4554249A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1096199W 7 2020-08-11T04:59:54.900278 {"subtitle": "a survey of events. With an introd. and the text of the articles of Union.", "covers": [5699464], "last_modified": {"type": "/type/datetime", "value": "2020-08-11T04:59:54.900278"}, "latest_revision": 7, "key": "/works/OL1096199W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL113418A"}}], "created": {"type": "/type/datetime", "value": "2009-12-09T20:29:32.027051"}, "title": "The Union of 1707", "subjects": ["History"], "type": {"key": "/type/work"}, "revision": 7}
+/type/work /works/OL10962111W 2 2010-01-18T21:45:30.587549 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:46:23.912151"}, "title": "Meiji Taish\u014d f\u016bzoku goten", "subject_places": ["Japan"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T21:45:30.587549"}, "latest_revision": 2, "key": "/works/OL10962111W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4554335A"}}], "subject_times": ["1912-1945", "1868-1912", "1868-"], "type": {"key": "/type/work"}, "subjects": ["Social life and customs", "Manners and customs in literature", "History and criticism", "Japanese literature"], "revision": 2}
+/type/work /works/OL10962266W 1 2009-12-11T03:46:23.912151 {"title": "Teinen ench\u014dto kore kara no chingin seido", "created": {"type": "/type/datetime", "value": "2009-12-11T03:46:23.912151"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:46:23.912151"}, "latest_revision": 1, "key": "/works/OL10962266W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4554401A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10962267W 1 2009-12-11T03:46:23.912151 {"title": "Annual Review 1996-97", "created": {"type": "/type/datetime", "value": "2009-12-11T03:46:23.912151"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:46:23.912151"}, "latest_revision": 1, "key": "/works/OL10962267W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4554402A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10962403W 2 2010-01-18T21:45:30.587549 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:46:23.912151"}, "title": "Variations from pulse to pulse in weather radar return signals", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T21:45:30.587549"}, "latest_revision": 2, "key": "/works/OL10962403W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4554493A"}}], "type": {"key": "/type/work"}, "subjects": ["Radar meteorology"], "revision": 2}
+/type/work /works/OL10962886W 2 2017-12-30T00:30:48.080846 {"title": "Report on HM Prison and Detention Centre Glenochil", "created": {"type": "/type/datetime", "value": "2009-12-11T03:46:23.912151"}, "last_modified": {"type": "/type/datetime", "value": "2017-12-30T00:30:48.080846"}, "latest_revision": 2, "key": "/works/OL10962886W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4554032A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10962922W 3 2010-12-03T11:44:09.477794 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:46:35.472417"}, "subject_places": ["Canada"], "subjects": ["Historiography", "History", "Local History", "Research"], "latest_revision": 3, "key": "/works/OL10962922W", "title": "Manual for compiling Tweedsmuir histories", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4554733A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T11:44:09.477794"}, "revision": 3}
+/type/work /works/OL10963022W 2 2010-01-18T21:45:30.587549 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:46:35.472417"}, "title": "The south Umpqua ranger district", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T21:45:30.587549"}, "latest_revision": 2, "key": "/works/OL10963022W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4554799A"}}], "type": {"key": "/type/work"}, "subjects": ["Land use"], "revision": 2}
+/type/work /works/OL10963085W 3 2010-12-03T13:19:13.819410 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:19:13.819410"}, "latest_revision": 3, "key": "/works/OL10963085W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4554830A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T03:46:35.472417"}, "title": "\u02bbAn al-mustaqbal", "subject_places": ["Arab countries"], "subjects": ["Arab Civilization", "Civilization, Arab", "Islam", "Politics and government", "Social conditions"], "subject_times": ["1945-", "20th century"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10963159W 2 2010-01-18T21:45:30.587549 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:46:35.472417"}, "title": "Pirke 'ilyun li-nevokhe zemanenu", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T21:45:30.587549"}, "latest_revision": 2, "key": "/works/OL10963159W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4554847A"}}], "type": {"key": "/type/work"}, "subjects": ["Judaism"], "revision": 2}
+/type/work /works/OL10963165W 2 2010-12-03T11:44:59.794091 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T11:44:59.794091"}, "title": "The history of Lothian Road United Free Church Congregation", "created": {"type": "/type/datetime", "value": "2009-12-11T03:46:35.472417"}, "subjects": ["Lothian Road United Free Church Congregation (Edinburgh, Scotland)"], "latest_revision": 2, "key": "/works/OL10963165W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4554852A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL1096341W 4 2022-12-08T08:04:06.281525 {"title": "Investigation into the cost of passenger traffic on American railroads, with special reference to cost of mail service and its compensation", "subjects": ["Railroads", "Cost of operating", "Railraods", "Passenger traffic", "Railway mail service", "Cost of operation", "Postal service"], "key": "/works/OL1096341W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL113428A"}}], "type": {"key": "/type/work"}, "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-09T20:29:38.129473"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-08T08:04:06.281525"}}
+/type/work /works/OL10963480W 2 2010-12-03T11:44:09.477794 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T11:44:09.477794"}, "title": "College Choir of the Moody Bible Institute, Chicago", "created": {"type": "/type/datetime", "value": "2009-12-11T03:46:35.472417"}, "subjects": ["Moody Chorale"], "latest_revision": 2, "key": "/works/OL10963480W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4555006A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10963704W 1 2009-12-11T03:46:35.472417 {"title": "A defesa das gl\u00f3rias nacionais no estrangeiro", "created": {"type": "/type/datetime", "value": "2009-12-11T03:46:35.472417"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:46:35.472417"}, "latest_revision": 1, "key": "/works/OL10963704W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4555107A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10963748W 3 2010-12-03T11:44:09.477794 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:46:35.472417"}, "subject_places": ["Corvallis", "Oregon"], "subjects": ["Oregon State College", "Religion", "Student activities"], "latest_revision": 3, "key": "/works/OL10963748W", "title": "An analysis of religious activities at Oregon State College", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4555147A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T11:44:09.477794"}, "revision": 3}
+/type/work /works/OL10963813W 1 2009-12-11T03:46:35.472417 {"title": "\u02bbErev \u02bbim Su", "created": {"type": "/type/datetime", "value": "2009-12-11T03:46:35.472417"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:46:35.472417"}, "latest_revision": 1, "key": "/works/OL10963813W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4555199A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1096448W 3 2010-07-16T01:02:13.786522 {"subtitle": "ouvrage illustr\u00e9 ... d'apr\u00e8s les monuments de l'art de l'\u00e9poque.", "title": "XVIIme [i.e. dix-septi\u00e8me] si\u00e8cle: institutions, usages et costumes, France 1590-1700", "created": {"type": "/type/datetime", "value": "2009-12-09T20:29:38.129473"}, "subject_places": ["France"], "last_modified": {"type": "/type/datetime", "value": "2010-07-16T01:02:13.786522"}, "latest_revision": 3, "key": "/works/OL1096448W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL113430A"}}], "type": {"key": "/type/work"}, "subjects": ["Social life and customs", "Manners and customs"], "revision": 3}
+/type/work /works/OL10964569W 2 2010-01-18T21:51:00.128502 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:46:41.416901"}, "title": "The prophet and his problems", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T21:51:00.128502"}, "latest_revision": 2, "key": "/works/OL10964569W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4555643A"}}], "type": {"key": "/type/work"}, "subjects": ["Prophets"], "revision": 2}
+/type/work /works/OL10964658W 2 2010-01-18T21:51:00.128502 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:46:41.416901"}, "title": "Mushkilat al-faqr wa-kayf\u0101 \u02bb\u0101lajah\u0101 al-Isl\u0101m", "subject_places": ["Islamic countries"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T21:51:00.128502"}, "latest_revision": 2, "key": "/works/OL10964658W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4555660A"}}], "type": {"key": "/type/work"}, "subjects": ["Poor", "Charity laws and legislation"], "revision": 2}
+/type/work /works/OL10965078W 2 2010-01-18T21:51:00.128502 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:46:48.230239"}, "title": "A microdetermination of hydroxyl and acetate contents of sugars and glycosides", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T21:51:00.128502"}, "latest_revision": 2, "key": "/works/OL10965078W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4555906A"}}], "type": {"key": "/type/work"}, "subjects": ["Analysis", "Sugars", "Glucosides"], "revision": 2}
+/type/work /works/OL10965338W 2 2010-01-18T21:51:00.128502 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:46:48.230239"}, "title": "Cyclical changes in the balance of merchandise trade of countries exporting chiefly primary products", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T21:51:00.128502"}, "latest_revision": 2, "key": "/works/OL10965338W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4556115A"}}], "type": {"key": "/type/work"}, "subjects": ["Balance of trade", "Business cycles"], "revision": 2}
+/type/work /works/OL10965394W 2 2010-01-18T21:51:00.128502 {"title": "The story of Jean and Pierre Lafitte, the pirate-patriots", "created": {"type": "/type/datetime", "value": "2009-12-11T03:46:48.230239"}, "subject_places": ["Louisiana"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T21:51:00.128502"}, "latest_revision": 2, "key": "/works/OL10965394W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4556144A"}}], "subject_people": ["Jean Lafitte (1780?-1826?)", "Pierre Lafitte"], "type": {"key": "/type/work"}, "subjects": ["History"], "revision": 2}
+/type/work /works/OL10965482W 1 2009-12-11T03:46:48.230239 {"title": "Geography and society in a global context", "created": {"type": "/type/datetime", "value": "2009-12-11T03:46:48.230239"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:46:48.230239"}, "latest_revision": 1, "key": "/works/OL10965482W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4556190A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10965701W 2 2010-01-18T21:56:01.323419 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:46:48.230239"}, "title": "Desarrollo econ\u00f3mico y comportamiento pol\u00edtico", "subject_places": ["Chile"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T21:56:01.323419"}, "latest_revision": 2, "key": "/works/OL10965701W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4556338A"}}], "subject_times": ["1918-"], "type": {"key": "/type/work"}, "subjects": ["Economic conditions", "Political participation", "Chile"], "revision": 2}
+/type/work /works/OL10965788W 1 2009-12-11T03:46:48.230239 {"title": "Qi\u1e63\u1e63at al-tafs\u012br", "created": {"type": "/type/datetime", "value": "2009-12-11T03:46:48.230239"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:46:48.230239"}, "latest_revision": 1, "key": "/works/OL10965788W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4556357A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10965814W 2 2010-01-18T21:56:01.323419 {"title": "F\u012b al-tadhawwuq al-jam\u0101l\u012b li-s\u012bn\u012byat al-Bu\u1e25tur\u012b \"\u1e62untu nafs\u012b \u02bbamma yudannisu nafs\u012b -- jibsi\"", "created": {"type": "/type/datetime", "value": "2009-12-11T03:46:48.230239"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-18T21:56:01.323419"}, "latest_revision": 2, "key": "/works/OL10965814W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4556358A"}}], "subject_people": ["Bu\u1e25tur\u012b, al-Wal\u012bd ibn \u02bbUbayd (ca. 821-897 or 8)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10966077W 1 2009-12-11T03:46:54.273694 {"title": "Gorod u reki", "created": {"type": "/type/datetime", "value": "2009-12-11T03:46:54.273694"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:46:54.273694"}, "latest_revision": 1, "key": "/works/OL10966077W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4556502A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10966116W 1 2009-12-11T03:46:54.273694 {"title": "Kays [mail order catalogue]", "created": {"type": "/type/datetime", "value": "2009-12-11T03:46:54.273694"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:46:54.273694"}, "latest_revision": 1, "key": "/works/OL10966116W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4556527A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10966341W 1 2009-12-11T03:46:54.273694 {"title": "al- Mu\u1e25a\u1e0dar\u0101t al-Maghrib\u012byah", "created": {"type": "/type/datetime", "value": "2009-12-11T03:46:54.273694"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:46:54.273694"}, "latest_revision": 1, "key": "/works/OL10966341W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4556664A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10966493W 1 2009-12-11T03:46:54.273694 {"title": "Chroniques argentines", "created": {"type": "/type/datetime", "value": "2009-12-11T03:46:54.273694"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:46:54.273694"}, "latest_revision": 1, "key": "/works/OL10966493W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4556737A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10966637W 3 2013-03-13T21:54:10.460799 {"last_modified": {"type": "/type/datetime", "value": "2013-03-13T21:54:10.460799"}, "latest_revision": 3, "key": "/works/OL10966637W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1645764A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T03:46:54.273694"}, "title": "Three nations: Canada, Great Britain, The United States of America in the twentieth century", "subject_places": ["Canada", "United States", "Great Britain"], "subjects": ["History"], "subject_times": ["20th century"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10966765W 2 2010-01-18T21:56:01.323419 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:46:54.273694"}, "title": "Doctrinal errors in a pamphlet by G.W. Olver, B.A., principal of Southland College, Battersea, tested and condemned by Scripture and Wesleyan Methodism", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T21:56:01.323419"}, "latest_revision": 2, "key": "/works/OL10966765W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4556863A"}}], "type": {"key": "/type/work"}, "subjects": ["Future punishment", "Methodist Church", "Doctrinal and controversial works"], "revision": 2}
+/type/work /works/OL10966929W 3 2019-07-31T08:32:28.812582 {"last_modified": {"type": "/type/datetime", "value": "2019-07-31T08:32:28.812582"}, "title": "Harwell", "created": {"type": "/type/datetime", "value": "2009-12-11T03:46:59.960486"}, "subjects": ["Atomic Energy Research Establishment", "Engineering measurement & calibration"], "latest_revision": 3, "key": "/works/OL10966929W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4556943A"}}, {"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL3566623A"}}, {"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2646041A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10966949W 3 2010-12-03T20:35:11.538300 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:46:59.960486"}, "subjects": ["Arab Medicine", "Family", "Health", "Imams (Shiites)", "Islam", "Medicine, Arab", "Religious aspects", "Religious aspects of Health"], "subject_people": ["Mu\u1e25ammad Prophet (d. 632)", "\u02bbAl\u012b al-Ri\u1e0d\u0101 ibn M\u016bs\u00e1 (d. 818 or 19)"], "key": "/works/OL10966949W", "title": "al- Im\u0101m \u02bbAl\u012b al-Ri\u1e0d\u0101 wa-ris\u0101latuhu f\u012b al-\u1e6dibb al-Nabaw\u012b", "latest_revision": 3, "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4556955A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T20:35:11.538300"}, "revision": 3}
+/type/work /works/OL10967121W 1 2009-12-11T03:46:59.960486 {"title": "Meah Shearim centennial souvenir booklet", "created": {"type": "/type/datetime", "value": "2009-12-11T03:46:59.960486"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:46:59.960486"}, "latest_revision": 1, "key": "/works/OL10967121W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4557011A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10967317W 1 2009-12-11T03:46:59.960486 {"title": "Yo y algunas caminatas", "created": {"type": "/type/datetime", "value": "2009-12-11T03:46:59.960486"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:46:59.960486"}, "latest_revision": 1, "key": "/works/OL10967317W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4557124A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1096734W 5 2012-08-07T17:38:21.018740 {"subtitle": "or, The revolt of Ghent", "last_modified": {"type": "/type/datetime", "value": "2012-08-07T17:38:21.018740"}, "title": "Mary of Burgundy", "created": {"type": "/type/datetime", "value": "2009-12-09T20:29:38.129473"}, "covers": [7205018], "subject_places": ["Ghent (Belgium)"], "subjects": ["Fiction", "Marie, in fiction", "History"], "subject_people": ["Marie Duchess of Burgundy (1457-1482)"], "key": "/works/OL1096734W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL113447A"}}], "latest_revision": 5, "type": {"key": "/type/work"}, "revision": 5}
+/type/work /works/OL1096758W 4 2010-08-12T22:09:30.756388 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:29:38.129473"}, "subtitle": "or, The tenants of the heart", "key": "/works/OL1096758W", "title": "Morley Ernstein", "latest_revision": 4, "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL113447A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-08-12T22:09:30.756388"}, "covers": [6069521], "revision": 4}
+/type/work /works/OL10967794W 1 2009-12-11T03:46:59.960486 {"title": "Chile en el panorama internacional", "created": {"type": "/type/datetime", "value": "2009-12-11T03:46:59.960486"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:46:59.960486"}, "latest_revision": 1, "key": "/works/OL10967794W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4557424A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10968280W 1 2009-12-11T03:47:06.875599 {"title": "Vybranae", "created": {"type": "/type/datetime", "value": "2009-12-11T03:47:06.875599"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:47:06.875599"}, "latest_revision": 1, "key": "/works/OL10968280W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4557688A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10968388W 1 2009-12-11T03:47:06.875599 {"title": "Sedmi kongres na SKM", "created": {"type": "/type/datetime", "value": "2009-12-11T03:47:06.875599"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:47:06.875599"}, "latest_revision": 1, "key": "/works/OL10968388W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4557779A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10968539W 1 2009-12-11T03:47:06.875599 {"title": "Havra\u02beah", "created": {"type": "/type/datetime", "value": "2009-12-11T03:47:06.875599"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:47:06.875599"}, "latest_revision": 1, "key": "/works/OL10968539W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4557869A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1096883W 3 2012-08-02T00:41:55.798142 {"covers": [7172981], "last_modified": {"type": "/type/datetime", "value": "2012-08-02T00:41:55.798142"}, "latest_revision": 3, "key": "/works/OL1096883W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL113456A"}}], "created": {"type": "/type/datetime", "value": "2009-12-09T20:29:38.129473"}, "title": "Bath and Wells", "subject_places": ["Wells (England)", "Bath (England)"], "subjects": ["Description and travel", "Description"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10968902W 2 2010-04-29T16:59:51.164667 {"subtitle": "shi\u02bbr", "created": {"type": "/type/datetime", "value": "2009-12-11T03:47:06.875599"}, "title": "\u02bbAl\u0101 sh\u0101\u1e6di\u02be al-wijd\u0101n", "last_modified": {"type": "/type/datetime", "value": "2010-04-29T16:59:51.164667"}, "latest_revision": 2, "key": "/works/OL10968902W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4558078A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10969106W 2 2010-12-03T15:31:52.987932 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:31:52.987932"}, "title": "Greater Manchester Museum of Science and Industry - souvenir guide to the working museum housed in the oldest railway buildings in the world", "created": {"type": "/type/datetime", "value": "2009-12-11T03:47:13.359632"}, "subjects": ["Greater Manchester Museum of Science and Industry"], "latest_revision": 2, "key": "/works/OL10969106W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4558139A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10969135W 1 2009-12-11T03:47:13.359632 {"title": "Shirei sta\u1e7f", "created": {"type": "/type/datetime", "value": "2009-12-11T03:47:13.359632"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:47:13.359632"}, "latest_revision": 1, "key": "/works/OL10969135W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4558161A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10969272W 1 2009-12-11T03:47:13.359632 {"title": "Historia de Nuestra Se\u00f1ora del Valle", "created": {"type": "/type/datetime", "value": "2009-12-11T03:47:13.359632"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:47:13.359632"}, "latest_revision": 1, "key": "/works/OL10969272W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4558224A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1096928W 3 2010-04-28T07:17:47.985892 {"title": "Internationalism and Fascism", "created": {"type": "/type/datetime", "value": "2009-12-09T20:29:38.129473"}, "covers": [2828192], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:17:47.985892"}, "latest_revision": 3, "key": "/works/OL1096928W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL113461A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10969563W 2 2010-01-18T22:01:04.212745 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:47:13.359632"}, "title": "Nos animaux chez nous", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T22:01:04.212745"}, "latest_revision": 2, "key": "/works/OL10969563W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4558418A"}}], "type": {"key": "/type/work"}, "subjects": ["Animaux"], "revision": 2}
+/type/work /works/OL10969830W 3 2010-12-03T12:23:40.525905 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:47:13.359632"}, "subjects": ["Clarkson, Ont", "History", "Ont Clarkson"], "subject_people": ["Warren Clarkson (1793-1882)"], "key": "/works/OL10969830W", "title": "A relic of old decency", "latest_revision": 3, "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4558579A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T12:23:40.525905"}, "revision": 3}
+/type/work /works/OL1096984W 4 2017-03-15T04:39:45.891438 {"last_modified": {"type": "/type/datetime", "value": "2017-03-15T04:39:45.891438"}, "title": "Catlin's Indians", "created": {"type": "/type/datetime", "value": "2009-12-09T20:29:38.129473"}, "covers": [7905355], "subject_places": ["United States", "West (U.S.)", "North America"], "subjects": ["Indians of North America", "Description and travel", "Social life and customs", "Exhibitions", "Ethnology", "Pictorial works", "Albrecht Art Museum", "Indiens d'Am\u00e9rique", "Moeurs et coutumes", "Descriptions et voyages", "Travel"], "subject_people": ["George Catlin (1796-1872)"], "key": "/works/OL1096984W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL113461A"}}], "latest_revision": 4, "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL10969857W 1 2009-12-11T03:47:13.359632 {"title": "Les dix-neuf europes", "created": {"type": "/type/datetime", "value": "2009-12-11T03:47:13.359632"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:47:13.359632"}, "latest_revision": 1, "key": "/works/OL10969857W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4558592A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10969872W 3 2010-12-03T21:49:26.104121 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:47:13.359632"}, "subjects": ["Biography", "Bishops", "Ukra\u00efns\u02b9ka hreko-katolyt\ufe20s\ufe21\u02b9ka t\ufe20s\ufe21erkva v Zakhidni\u012d Evropi"], "subject_people": ["Andri\u012d Sheptyt\ufe20s\ufe21\u02b9ky\u012d graf (1865-1944)", "Andri\u012d Sheptyt\ufe20s\ufe21\u02b9ky\u012d hraf (1865-1944)"], "key": "/works/OL10969872W", "title": "M\u00e9tropolite Andr\u00e9 Szeptyckyj", "latest_revision": 3, "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4558603A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T21:49:26.104121"}, "revision": 3}
+/type/work /works/OL10969876W 1 2009-12-11T03:47:13.359632 {"title": "Kazusa monogatari", "created": {"type": "/type/datetime", "value": "2009-12-11T03:47:13.359632"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:47:13.359632"}, "latest_revision": 1, "key": "/works/OL10969876W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4558606A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10969884W 1 2009-12-11T03:47:13.359632 {"title": "Architecture & austerity, Birmingham 1940-1950", "created": {"type": "/type/datetime", "value": "2009-12-11T03:47:13.359632"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:47:13.359632"}, "latest_revision": 1, "key": "/works/OL10969884W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4558614A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10969911W 4 2014-07-27T00:59:08.971089 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:47:13.359632"}, "subject_places": ["England"], "subjects": ["Anglican Monasticism and religious orders", "Catholic converts", "Monasticism and religious orders, Anglican", "Monks", "Monachisme et ordres religieux anglicans", "Convertis catholiques", "Anglican monasticism and religious orders", "Moines"], "latest_revision": 4, "key": "/works/OL10969911W", "title": "La conversion des moines anglicans de Caldey", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4558631A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2014-07-27T00:59:08.971089"}, "revision": 4}
+/type/work /works/OL10970200W 1 2009-12-11T03:47:24.959040 {"title": "Resolutions of the first Asian Socialist conference", "created": {"type": "/type/datetime", "value": "2009-12-11T03:47:24.959040"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:47:24.959040"}, "latest_revision": 1, "key": "/works/OL10970200W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4558814A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10970462W 2 2010-01-18T22:06:18.994023 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:47:24.959040"}, "title": "Al- Isl\u0101m f\u012b qafas al-ittih\u0101m", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T22:06:18.994023"}, "latest_revision": 2, "key": "/works/OL10970462W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4558960A"}}], "type": {"key": "/type/work"}, "subjects": ["Apologetic works", "Islam"], "revision": 2}
+/type/work /works/OL10970549W 1 2009-12-11T03:47:24.959040 {"title": "Mouldmaking '89 Symposium", "created": {"type": "/type/datetime", "value": "2009-12-11T03:47:24.959040"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:47:24.959040"}, "latest_revision": 1, "key": "/works/OL10970549W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4559003A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10970643W 1 2009-12-11T03:47:24.959040 {"title": "Juden im deutschen Sport", "created": {"type": "/type/datetime", "value": "2009-12-11T03:47:24.959040"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:47:24.959040"}, "latest_revision": 1, "key": "/works/OL10970643W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4559068A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10970977W 2 2010-01-18T22:06:18.994023 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:47:31.604537"}, "title": "Relation of fresh fruit quality factors to the canning quality of the Italian prune", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T22:06:18.994023"}, "latest_revision": 2, "key": "/works/OL10970977W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4559277A"}}], "type": {"key": "/type/work"}, "subjects": ["Canning and preserving", "Prune", "Preservation"], "revision": 2}
+/type/work /works/OL10971072W 1 2009-12-11T03:47:31.604537 {"title": "Sukhr\u012byat al-J\u0101\u1e25i\u1e93 min bukhal\u0101\u02beih", "created": {"type": "/type/datetime", "value": "2009-12-11T03:47:31.604537"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:47:31.604537"}, "latest_revision": 1, "key": "/works/OL10971072W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4559319A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10971132W 3 2010-04-28T07:17:47.985892 {"title": "Mi-yeshimon le-erets noshevet", "created": {"type": "/type/datetime", "value": "2009-12-11T03:47:31.604537"}, "covers": [5513498], "subject_places": ["Palestine", "Israel", "Negev", "Negev (Israel)"], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:17:47.985892"}, "latest_revision": 3, "key": "/works/OL10971132W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4559342A"}}], "subject_times": ["20th century"], "subjects": ["History", "Zionism", "Land settlement"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10971355W 1 2009-12-11T03:47:31.604537 {"title": "The procedure for transfer from primary to secondary education 1987", "created": {"type": "/type/datetime", "value": "2009-12-11T03:47:31.604537"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:47:31.604537"}, "latest_revision": 1, "key": "/works/OL10971355W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4559444A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10971929W 2 2010-01-18T22:06:18.994023 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:47:38.445595"}, "title": "A survey of industrial arts in the larger senior high schools of Missouri", "subject_places": ["Missouri"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T22:06:18.994023"}, "latest_revision": 2, "key": "/works/OL10971929W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4559771A"}}], "type": {"key": "/type/work"}, "subjects": ["Industrial arts", "Study and teaching"], "revision": 2}
+/type/work /works/OL10972508W 2 2010-01-18T22:11:28.995936 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:47:38.445595"}, "title": "A study of 100 college students' past experiences and present attitudes relative to money management", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T22:11:28.995936"}, "latest_revision": 2, "key": "/works/OL10972508W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4560145A"}}], "type": {"key": "/type/work"}, "subjects": ["Home economics", "Child rearing", "Accounting"], "revision": 2}
+/type/work /works/OL1097257W 3 2010-04-28T07:17:47.985892 {"title": "Heathen Slaves and Christian Rulers", "created": {"type": "/type/datetime", "value": "2009-12-09T20:29:38.129473"}, "covers": [2841230], "subject_places": ["China", "Hong Kong"], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:17:47.985892"}, "latest_revision": 3, "key": "/works/OL1097257W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL113488A"}}], "subjects": ["Prostitution"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10972970W 2 2010-01-18T22:11:28.995936 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:47:45.382585"}, "title": "Hind\u012b upany\u0101sa", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T22:11:28.995936"}, "latest_revision": 2, "key": "/works/OL10972970W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4560422A"}}], "type": {"key": "/type/work"}, "subjects": ["History and criticism", "Hindi fiction"], "revision": 2}
+/type/work /works/OL10972993W 1 2009-12-11T03:47:45.382585 {"title": "Chernoe mori\ufe20a\ufe21: mezhdunarodno-pravovye voprosy", "created": {"type": "/type/datetime", "value": "2009-12-11T03:47:45.382585"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:47:45.382585"}, "latest_revision": 1, "key": "/works/OL10972993W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4560435A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10973040W 1 2009-12-11T03:47:45.382585 {"title": "Survey of compounds which have been tested for carcinogenic activity", "created": {"type": "/type/datetime", "value": "2009-12-11T03:47:45.382585"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:47:45.382585"}, "latest_revision": 1, "key": "/works/OL10973040W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4560469A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10973130W 1 2009-12-11T03:47:45.382585 {"title": "Health care workers infected with HIV: briefing paper", "created": {"type": "/type/datetime", "value": "2009-12-11T03:47:45.382585"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:47:45.382585"}, "latest_revision": 1, "key": "/works/OL10973130W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4560513A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10974110W 2 2010-01-18T22:16:48.547355 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:47:51.899374"}, "title": "Education for a changing world of work", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T22:16:48.547355"}, "latest_revision": 2, "key": "/works/OL10974110W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4561137A"}}], "type": {"key": "/type/work"}, "subjects": ["Vocational education"], "revision": 2}
+/type/work /works/OL10974213W 3 2010-12-03T12:03:42.666730 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T12:03:42.666730"}, "title": "\u010ceskoslovensk\u00fd vojensk\u00fd atlas", "created": {"type": "/type/datetime", "value": "2009-12-11T03:47:51.899374"}, "subjects": ["Atlases, Czech", "Czech Atlases", "Maps", "Military History"], "latest_revision": 3, "key": "/works/OL10974213W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4561198A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10974252W 2 2010-01-18T22:16:48.547355 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:47:51.899374"}, "title": "Great cities of the world", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T22:16:48.547355"}, "latest_revision": 2, "key": "/works/OL10974252W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4561218A"}}], "type": {"key": "/type/work"}, "subjects": ["Cities and towns"], "revision": 2}
+/type/work /works/OL1097428W 3 2010-04-28T07:17:47.985892 {"title": "Roger Bacon's Life And Work", "created": {"type": "/type/datetime", "value": "2009-12-09T20:29:45.322119"}, "covers": [1804121], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:17:47.985892"}, "latest_revision": 3, "key": "/works/OL1097428W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL113503A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10974745W 2 2010-01-18T22:16:48.547355 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:47:51.899374"}, "title": "Marketing purebred livestock", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T22:16:48.547355"}, "latest_revision": 2, "key": "/works/OL10974745W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4561462A"}}], "type": {"key": "/type/work"}, "subjects": ["Animal industry"], "revision": 2}
+/type/work /works/OL1097536W 6 2020-08-11T08:03:51.521546 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:29:45.322119"}, "subjects": ["Morris dances (Piano)", "Morris dances"], "latest_revision": 6, "key": "/works/OL1097536W", "title": "Morris dance tunes", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2561733A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-08-11T08:03:51.521546"}, "covers": [5925612], "revision": 6}
+/type/work /works/OL10975424W 1 2009-12-11T03:47:58.267650 {"title": "Dvizhenie i dvo\u012dstvennost\u02b9 v reli\ufe20a\ufe21tivistsko\u012d \u0117lektrodinamike", "created": {"type": "/type/datetime", "value": "2009-12-11T03:47:58.267650"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:47:58.267650"}, "latest_revision": 1, "key": "/works/OL10975424W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4561895A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10975428W 1 2009-12-11T03:47:58.267650 {"title": "Uzhe ne deti, eshche ne vzroslye", "created": {"type": "/type/datetime", "value": "2009-12-11T03:47:58.267650"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:47:58.267650"}, "latest_revision": 1, "key": "/works/OL10975428W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4561896A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10975508W 1 2009-12-11T03:47:58.267650 {"title": "La participation dans l'industrie p\u00e9troli\u00e8re", "created": {"type": "/type/datetime", "value": "2009-12-11T03:47:58.267650"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:47:58.267650"}, "latest_revision": 1, "key": "/works/OL10975508W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4561950A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10975978W 1 2009-12-11T03:48:04.865810 {"title": "The practice of journalistic photography with the 35mm camera, with special reference to the operating principles and their practical effects", "created": {"type": "/type/datetime", "value": "2009-12-11T03:48:04.865810"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:48:04.865810"}, "latest_revision": 1, "key": "/works/OL10975978W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4562116A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10976287W 2 2012-05-10T18:36:05.768510 {"title": "BA Graphics thesis 1989", "created": {"type": "/type/datetime", "value": "2009-12-11T03:48:04.865810"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-10T18:36:05.768510"}, "latest_revision": 2, "key": "/works/OL10976287W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4562116A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10976524W 3 2010-12-03T11:45:29.100648 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:48:04.865810"}, "subjects": ["Art in Ruins"], "subject_people": ["Glyn Banks", "Hannah Vowles"], "key": "/works/OL10976524W", "title": "[ ANC] catalogue May 91", "latest_revision": 3, "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4562439A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T11:45:29.100648"}, "revision": 3}
+/type/work /works/OL10976762W 1 2009-12-11T03:48:04.865810 {"title": "La tierra maldita", "created": {"type": "/type/datetime", "value": "2009-12-11T03:48:04.865810"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:48:04.865810"}, "latest_revision": 1, "key": "/works/OL10976762W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4562617A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10976797W 1 2009-12-11T03:48:04.865810 {"title": "Torchnet user guide", "created": {"type": "/type/datetime", "value": "2009-12-11T03:48:04.865810"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:48:04.865810"}, "latest_revision": 1, "key": "/works/OL10976797W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4562639A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1097706W 3 2010-04-28T07:17:47.985892 {"title": "Emanuel Swedenborg", "created": {"type": "/type/datetime", "value": "2009-12-09T20:29:45.322119"}, "covers": [5673953], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:17:47.985892"}, "latest_revision": 3, "key": "/works/OL1097706W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL113529A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL10977200W 1 2009-12-11T03:48:10.592980 {"title": "Filosofia della religione", "created": {"type": "/type/datetime", "value": "2009-12-11T03:48:10.592980"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:48:10.592980"}, "latest_revision": 1, "key": "/works/OL10977200W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4562890A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10977291W 2 2010-01-18T22:22:32.011416 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:48:10.592980"}, "title": "Establishment of subterranean clover (Trifolium subterraneum L.) on medusahead, (Taeniatherum asperum (sim.) Nevski) infested ranges in western Oregon", "subject_places": ["Oregon"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T22:22:32.011416"}, "latest_revision": 2, "key": "/works/OL10977291W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4562963A"}}], "type": {"key": "/type/work"}, "subjects": ["Forage plants", "Subterranean clover"], "revision": 2}
+/type/work /works/OL10977348W 2 2010-01-18T22:22:32.011416 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:48:10.592980"}, "title": "An histochemical study of the changing patterns of glycogen distribution in the uterus of the early pregnant and lactating golden hamster (Mesocricetus auratus Waterhouse)", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T22:22:32.011416"}, "latest_revision": 2, "key": "/works/OL10977348W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4562980A"}}], "type": {"key": "/type/work"}, "subjects": ["Hamsters"], "revision": 2}
+/type/work /works/OL10977804W 1 2009-12-11T03:48:10.592980 {"title": "Na fronteira do corpo", "created": {"type": "/type/datetime", "value": "2009-12-11T03:48:10.592980"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:48:10.592980"}, "latest_revision": 1, "key": "/works/OL10977804W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4563172A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10977821W 1 2009-12-11T03:48:10.592980 {"title": "Tekhnika lyzhnika-gonshchika", "created": {"type": "/type/datetime", "value": "2009-12-11T03:48:10.592980"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:48:10.592980"}, "latest_revision": 1, "key": "/works/OL10977821W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4563189A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10977864W 1 2009-12-11T03:48:10.592980 {"title": "Annual report and accounts", "created": {"type": "/type/datetime", "value": "2009-12-11T03:48:10.592980"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:48:10.592980"}, "latest_revision": 1, "key": "/works/OL10977864W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4563210A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10978447W 1 2009-12-11T03:48:16.648413 {"title": "Minutes of the Committee of Council on Education", "created": {"type": "/type/datetime", "value": "2009-12-11T03:48:16.648413"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:48:16.648413"}, "latest_revision": 1, "key": "/works/OL10978447W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4563492A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10978732W 2 2010-11-04T22:25:57.651877 {"title": "Berlin", "created": {"type": "/type/datetime", "value": "2009-12-11T03:48:16.648413"}, "last_modified": {"type": "/type/datetime", "value": "2010-11-04T22:25:57.651877"}, "latest_revision": 2, "key": "/works/OL10978732W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2245089A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10978812W 1 2009-12-11T03:48:16.648413 {"title": "Quero dizer \u00e0 tristeza", "created": {"type": "/type/datetime", "value": "2009-12-11T03:48:16.648413"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:48:16.648413"}, "latest_revision": 1, "key": "/works/OL10978812W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4563687A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10979057W 1 2009-12-11T03:48:23.116434 {"title": "Convention ACP-EEC of Lome", "created": {"type": "/type/datetime", "value": "2009-12-11T03:48:23.116434"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:48:23.116434"}, "latest_revision": 1, "key": "/works/OL10979057W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4563827A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10979111W 2 2010-01-18T22:27:50.795962 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:48:23.116434"}, "title": "Techniques for measuring body composition", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T22:27:50.795962"}, "latest_revision": 2, "key": "/works/OL10979111W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4563859A"}}], "type": {"key": "/type/work"}, "subjects": ["Anthropometry", "Congresses"], "revision": 2}
+/type/work /works/OL1097914W 1 2009-12-09T20:29:45.322119 {"title": "Requiem", "created": {"type": "/type/datetime", "value": "2009-12-09T20:29:45.322119"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T20:29:45.322119"}, "latest_revision": 1, "key": "/works/OL1097914W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL113547A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10979234W 1 2009-12-11T03:48:23.116434 {"title": "Stability and control", "created": {"type": "/type/datetime", "value": "2009-12-11T03:48:23.116434"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:48:23.116434"}, "latest_revision": 1, "key": "/works/OL10979234W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4563951A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1097930W 1 2009-12-09T20:29:45.322119 {"title": "Three orchestral pieces from the damnation of Faust", "created": {"type": "/type/datetime", "value": "2009-12-09T20:29:45.322119"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T20:29:45.322119"}, "latest_revision": 1, "key": "/works/OL1097930W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL113547A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10979413W 1 2009-12-11T03:48:23.116434 {"title": "Digital video and digital signal processing", "created": {"type": "/type/datetime", "value": "2009-12-11T03:48:23.116434"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:48:23.116434"}, "latest_revision": 1, "key": "/works/OL10979413W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4564047A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1097954W 1 2009-12-09T20:29:45.322119 {"title": "Preface and explanatory remarks to volumes I-XX of the original edition", "created": {"type": "/type/datetime", "value": "2009-12-09T20:29:45.322119"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T20:29:45.322119"}, "latest_revision": 1, "key": "/works/OL1097954W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL113547A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10979671W 1 2009-12-11T03:48:23.116434 {"title": "Open spaces", "created": {"type": "/type/datetime", "value": "2009-12-11T03:48:23.116434"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:48:23.116434"}, "latest_revision": 1, "key": "/works/OL10979671W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4564191A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10980458W 2 2010-01-18T22:27:50.795962 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:48:30.939098"}, "title": "Metropolitan Kano: report on the twenty year development plan 1963-1983", "subject_places": ["Kano (Nigeria)", "Nigeria", "Kano (City)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T22:27:50.795962"}, "latest_revision": 2, "key": "/works/OL10980458W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4564686A"}}], "type": {"key": "/type/work"}, "subjects": ["City planning", "Economic conditions"], "revision": 2}
+/type/work /works/OL10981286W 1 2009-12-11T03:48:37.669286 {"title": "V\u00f6r\u00f6smarty Mih\u00e1ly \u00f6sszes k\u00f6lt\u00f6i m\u00fcvei", "created": {"type": "/type/datetime", "value": "2009-12-11T03:48:37.669286"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:48:37.669286"}, "latest_revision": 1, "key": "/works/OL10981286W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4565240A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10981435W 1 2009-12-11T03:48:37.669286 {"title": "Niezwyk\u0142e dzieje pi\u0119knej Anny", "created": {"type": "/type/datetime", "value": "2009-12-11T03:48:37.669286"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:48:37.669286"}, "latest_revision": 1, "key": "/works/OL10981435W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4565339A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10981636W 1 2009-12-11T03:48:37.669286 {"title": "Les vacances des franc\u0327ais en 1973", "created": {"type": "/type/datetime", "value": "2009-12-11T03:48:37.669286"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:48:37.669286"}, "latest_revision": 1, "key": "/works/OL10981636W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4565470A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10982740W 1 2009-12-11T03:48:44.671592 {"title": "Vh\u0101yarasa", "created": {"type": "/type/datetime", "value": "2009-12-11T03:48:44.671592"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:48:44.671592"}, "latest_revision": 1, "key": "/works/OL10982740W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4566178A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10982763W 2 2010-01-18T22:37:53.952196 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:48:44.671592"}, "title": "Christian initiation", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T22:37:53.952196"}, "latest_revision": 2, "key": "/works/OL10982763W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4566192A"}}], "type": {"key": "/type/work"}, "subjects": ["Baptism", "United Church of Canada"], "revision": 2}
+/type/work /works/OL10982827W 2 2010-01-18T22:37:53.952196 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:48:44.671592"}, "title": "Height-diameter equations for sixteen tree species in the central western Willamette Valley of Oregon", "subject_places": ["Oregon"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T22:37:53.952196"}, "latest_revision": 2, "key": "/works/OL10982827W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4566222A"}}], "type": {"key": "/type/work"}, "subjects": ["Trees", "Measurement"], "revision": 2}
+/type/work /works/OL10983051W 4 2010-12-03T18:00:40.903904 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T18:00:40.903904"}, "latest_revision": 4, "key": "/works/OL10983051W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1155493A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T03:48:50.885039"}, "title": "Die Drei B\u00fcnde in der zweiten H\u00e4lfte des 17. Jahrhunderts in politischer, kirchengeschichtlicher und volkskundlicher Schau", "subject_places": ["Switzerland"], "subjects": ["History", "Rhaeto-Romance/Romansh history and culture"], "subject_times": ["1648-1789"], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL10983828W 1 2009-12-11T03:48:50.885039 {"title": "Erwerbungen 1990-1991", "created": {"type": "/type/datetime", "value": "2009-12-11T03:48:50.885039"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:48:50.885039"}, "latest_revision": 1, "key": "/works/OL10983828W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4566798A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10984129W 1 2009-12-11T03:48:58.252232 {"title": "Ga. Tryam. M\u0101\u1e0dakholakara", "created": {"type": "/type/datetime", "value": "2009-12-11T03:48:58.252232"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:48:58.252232"}, "latest_revision": 1, "key": "/works/OL10984129W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4567003A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10984485W 2 2010-01-18T22:37:53.952196 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:48:58.252232"}, "title": "Certain correlations between leaf area and the fruit production of red raspberries", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T22:37:53.952196"}, "latest_revision": 2, "key": "/works/OL10984485W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4567259A"}}], "type": {"key": "/type/work"}, "subjects": ["Raspberries"], "revision": 2}
+/type/work /works/OL10984525W 1 2009-12-11T03:48:58.252232 {"title": "Actes du XIIe Congres international des e tudes byzantines", "created": {"type": "/type/datetime", "value": "2009-12-11T03:48:58.252232"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:48:58.252232"}, "latest_revision": 1, "key": "/works/OL10984525W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4567290A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10984861W 1 2009-12-11T03:48:58.252232 {"title": "Proceedings of the Xth Congress of the International Comparative Literature Association =", "created": {"type": "/type/datetime", "value": "2009-12-11T03:48:58.252232"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:48:58.252232"}, "latest_revision": 1, "key": "/works/OL10984861W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4567534A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10985756W 2 2012-05-18T13:43:04.502260 {"title": "Mathematics 5-14", "created": {"type": "/type/datetime", "value": "2009-12-11T03:49:11.363260"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-18T13:43:04.502260"}, "latest_revision": 2, "key": "/works/OL10985756W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5012129A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10986333W 3 2017-12-30T00:56:12.850486 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:49:18.448378"}, "subject_places": ["Eastern Europe"], "subjects": ["Economic assistance"], "latest_revision": 3, "key": "/works/OL10986333W", "title": "Economic integration and industrial specialization among the member countries of the Council for Mutual Economic Assistance", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL266232A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2017-12-30T00:56:12.850486"}, "revision": 3}
+/type/work /works/OL10986427W 2 2010-01-18T22:43:15.179989 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:49:18.448378"}, "title": "Ancient European musical instruments", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T22:43:15.179989"}, "latest_revision": 2, "key": "/works/OL10986427W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4568569A"}}], "type": {"key": "/type/work"}, "subjects": ["Musical instruments", "Catalogs and collections"], "revision": 2}
+/type/work /works/OL10986553W 2 2010-01-18T22:43:15.179989 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:49:18.448378"}, "title": "Narodnoe khozia\u01d0stvo Checheno-Ingushsko\u01d0 ASSR", "subject_places": ["Chechen-Ingush A.S.S.R."], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T22:43:15.179989"}, "latest_revision": 2, "key": "/works/OL10986553W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4568649A"}}], "type": {"key": "/type/work"}, "subjects": ["Statistics"], "revision": 2}
+/type/work /works/OL10986803W 1 2009-12-11T03:49:18.448378 {"title": "Caminhos cingidos", "created": {"type": "/type/datetime", "value": "2009-12-11T03:49:18.448378"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:49:18.448378"}, "latest_revision": 1, "key": "/works/OL10986803W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4568847A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10986896W 1 2009-12-11T03:49:18.448378 {"title": "The role of sediments in the chemistry of aquatic systems", "created": {"type": "/type/datetime", "value": "2009-12-11T03:49:18.448378"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:49:18.448378"}, "latest_revision": 1, "key": "/works/OL10986896W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4568919A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10986948W 2 2010-01-18T22:48:42.704763 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:49:25.217488"}, "title": "Khrestomatii\ufe20a\ufe21 po politichesko\u01d0 \u0117konomii", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T22:48:42.704763"}, "latest_revision": 2, "key": "/works/OL10986948W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4568949A"}}], "type": {"key": "/type/work"}, "subjects": ["Economics", "Collections"], "revision": 2}
+/type/work /works/OL10987352W 1 2009-12-11T03:49:25.217488 {"title": "O massacre de manguinhos", "created": {"type": "/type/datetime", "value": "2009-12-11T03:49:25.217488"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:49:25.217488"}, "latest_revision": 1, "key": "/works/OL10987352W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4569205A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10987464W 4 2011-10-27T07:46:32.109494 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:49:25.217488"}, "subjects": ["\u00c9conomie politique", "Economics"], "subtitle": "contrainte \u00e9change, don.", "key": "/works/OL10987464W", "title": "\u00c9conomie et soci\u00e9t\u00e9", "latest_revision": 4, "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4569253A"}}, {"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL7025426A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2011-10-27T07:46:32.109494"}, "revision": 4}
+/type/work /works/OL10987560W 1 2009-12-11T03:49:25.217488 {"title": "\u015ar\u012b \u015a\u0101h\u016b Chatrapat\u012b\u00f1ce arthak\u0101ra\u1e47a", "created": {"type": "/type/datetime", "value": "2009-12-11T03:49:25.217488"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:49:25.217488"}, "latest_revision": 1, "key": "/works/OL10987560W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4569329A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10988128W 1 2009-12-11T03:49:32.456139 {"title": "Fernando Quesada: un trozo de historia libertaria", "created": {"type": "/type/datetime", "value": "2009-12-11T03:49:32.456139"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:49:32.456139"}, "latest_revision": 1, "key": "/works/OL10988128W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4569663A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10988322W 1 2009-12-11T03:49:32.456139 {"title": "Ten challenges of the nineteen-eighties", "created": {"type": "/type/datetime", "value": "2009-12-11T03:49:32.456139"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:49:32.456139"}, "latest_revision": 1, "key": "/works/OL10988322W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4569788A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10988324W 1 2009-12-11T03:49:32.456139 {"title": "Les nouvelles institutions de la Belgique", "created": {"type": "/type/datetime", "value": "2009-12-11T03:49:32.456139"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:49:32.456139"}, "latest_revision": 1, "key": "/works/OL10988324W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4569790A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10988901W 2 2010-01-18T22:48:42.704763 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:49:32.456139"}, "title": "Trusteeship of American endowments", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T22:48:42.704763"}, "latest_revision": 2, "key": "/works/OL10988901W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4570139A"}}], "type": {"key": "/type/work"}, "subjects": ["Finance", "Endowments", "Trusts and trustees", "Charities", "Universities and colleges", "Investments"], "revision": 2}
+/type/work /works/OL10989070W 2 2010-01-18T22:53:18.273363 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:49:38.764320"}, "title": "The economic process", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T22:53:18.273363"}, "latest_revision": 2, "key": "/works/OL10989070W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4570196A"}}], "type": {"key": "/type/work"}, "subjects": ["Economics"], "revision": 2}
+/type/work /works/OL10989751W 1 2009-12-11T03:49:38.764320 {"title": "La leggenda di Sant' Albano", "created": {"type": "/type/datetime", "value": "2009-12-11T03:49:38.764320"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:49:38.764320"}, "latest_revision": 1, "key": "/works/OL10989751W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4570610A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10989773W 1 2009-12-11T03:49:38.764320 {"title": "Monogusa Tar\u014d no k\u016bs\u014dryoku", "created": {"type": "/type/datetime", "value": "2009-12-11T03:49:38.764320"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:49:38.764320"}, "latest_revision": 1, "key": "/works/OL10989773W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4570620A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10989986W 2 2010-01-18T22:53:18.273363 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:49:44.435404"}, "title": "The community education service in Orkney", "subject_places": ["Scotland", "Orkney"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T22:53:18.273363"}, "latest_revision": 2, "key": "/works/OL10989986W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4570705A"}}], "type": {"key": "/type/work"}, "subjects": ["Community schools", "Adult education"], "revision": 2}
+/type/work /works/OL10990551W 1 2009-12-11T03:49:44.435404 {"title": "Labour market assessment", "created": {"type": "/type/datetime", "value": "2009-12-11T03:49:44.435404"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:49:44.435404"}, "latest_revision": 1, "key": "/works/OL10990551W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4570958A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10990566W 2 2010-01-18T22:53:18.273363 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:49:44.435404"}, "title": "al- Kuwayt wa-al-mustaqbal", "subject_places": ["Kuwait"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T22:53:18.273363"}, "latest_revision": 2, "key": "/works/OL10990566W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4570966A"}}], "type": {"key": "/type/work"}, "subjects": ["Education"], "revision": 2}
+/type/work /works/OL10990704W 1 2009-12-11T03:49:44.435404 {"title": "Diszharm\u00f3nia, reg\u00e9ny", "created": {"type": "/type/datetime", "value": "2009-12-11T03:49:44.435404"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:49:44.435404"}, "latest_revision": 1, "key": "/works/OL10990704W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4571017A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10991600W 2 2010-01-18T22:58:29.613335 {"title": "Taqr\u012bb al-u\u1e63\u016bl li-tash\u012bl al-wu\u1e63\u016bl li-ma\u02bbrifat All\u0101h wa-al-Ras\u016bl", "created": {"type": "/type/datetime", "value": "2009-12-11T03:49:49.540069"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-18T22:58:29.613335"}, "latest_revision": 2, "key": "/works/OL10991600W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4571430A"}}], "subject_people": ["Mu\u1e25ammad Prophet (d. 632)"], "type": {"key": "/type/work"}, "subjects": ["God (Islam)"], "revision": 2}
+/type/work /works/OL10991824W 1 2009-12-11T03:49:49.540069 {"title": "Fi\u00e9is portugueses: judeus na pen\u00ednsula ib\u00e9rica", "created": {"type": "/type/datetime", "value": "2009-12-11T03:49:49.540069"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:49:49.540069"}, "latest_revision": 1, "key": "/works/OL10991824W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4571535A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10992050W 1 2009-12-11T03:49:56.813637 {"title": "al- Qal\u02bbah", "created": {"type": "/type/datetime", "value": "2009-12-11T03:49:56.813637"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:49:56.813637"}, "latest_revision": 1, "key": "/works/OL10992050W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4571669A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10992055W 1 2009-12-11T03:49:56.813637 {"title": "\u02bbAbd al-N\u0101\u1e63ir wa-al-yas\u0101r al-Mi\u1e63r\u012b", "created": {"type": "/type/datetime", "value": "2009-12-11T03:49:56.813637"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:49:56.813637"}, "latest_revision": 1, "key": "/works/OL10992055W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4571673A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10992622W 1 2009-12-11T03:49:56.813637 {"title": "The house", "created": {"type": "/type/datetime", "value": "2009-12-11T03:49:56.813637"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:49:56.813637"}, "latest_revision": 1, "key": "/works/OL10992622W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4572064A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10992634W 2 2010-01-18T22:58:29.613335 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:49:56.813637"}, "title": "Available phosphate tests on certain Oregon soil types", "subject_places": ["Oregon"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T22:58:29.613335"}, "latest_revision": 2, "key": "/works/OL10992634W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4572072A"}}], "type": {"key": "/type/work"}, "subjects": ["Soils", "Analysis", "Fertilizers"], "revision": 2}
+/type/work /works/OL10993148W 1 2009-12-11T03:50:03.843060 {"title": "Equal opportunities", "created": {"type": "/type/datetime", "value": "2009-12-11T03:50:03.843060"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:50:03.843060"}, "latest_revision": 1, "key": "/works/OL10993148W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4572389A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10993242W 1 2009-12-11T03:50:03.843060 {"title": "Introductory pack on library systems for schools", "created": {"type": "/type/datetime", "value": "2009-12-11T03:50:03.843060"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:50:03.843060"}, "latest_revision": 1, "key": "/works/OL10993242W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4572465A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10993353W 2 2010-01-18T23:03:11.888189 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:50:03.843060"}, "title": "Field bean cutter", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T23:03:11.888189"}, "latest_revision": 2, "key": "/works/OL10993353W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4572513A"}}], "type": {"key": "/type/work"}, "subjects": ["Harvesting", "Beans", "Machinery", "Design and construction"], "revision": 2}
+/type/work /works/OL10993371W 1 2009-12-11T03:50:03.843060 {"title": "Italian film production of 1969", "created": {"type": "/type/datetime", "value": "2009-12-11T03:50:03.843060"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:50:03.843060"}, "latest_revision": 1, "key": "/works/OL10993371W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4572523A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10993458W 2 2010-01-18T23:03:11.888189 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:50:03.843060"}, "title": "War on want", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T23:03:11.888189"}, "latest_revision": 2, "key": "/works/OL10993458W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4572567A"}}], "type": {"key": "/type/work"}, "subjects": ["Economic policy", "Industrialization"], "revision": 2}
+/type/work /works/OL10993804W 3 2010-08-10T23:32:53.789367 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:50:03.843060"}, "subject_places": ["Great Britain"], "subjects": ["Law", "Popular works"], "latest_revision": 3, "key": "/works/OL10993804W", "title": "Justice at work", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1559665A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-08-10T23:32:53.789367"}, "revision": 3}
+/type/work /works/OL10994848W 1 2009-12-11T03:50:10.274452 {"title": "Report on the Second Conference on ICAO North Atlantic Ocean Stations, London, 20 April-12 May 1949", "created": {"type": "/type/datetime", "value": "2009-12-11T03:50:10.274452"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:50:10.274452"}, "latest_revision": 1, "key": "/works/OL10994848W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4573399A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10994971W 3 2010-12-03T12:07:52.075692 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T12:07:52.075692"}, "title": "The induction motor", "created": {"type": "/type/datetime", "value": "2009-12-11T03:50:21.968794"}, "subjects": ["Electric motors, Induction", "Induction Electric motors"], "latest_revision": 3, "key": "/works/OL10994971W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4573479A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL109952W 2 2010-07-21T08:32:45.296388 {"description": {"type": "/type/text", "value": "Uit rancune over eigen mislukking en uit een sterk gevoel van minderwaardigheid verzet een uit Indonesi\u00eb gerepatrieerd soldaat zich tegen de kleinburgerlijke mentaliteit in Nederland."}, "created": {"type": "/type/datetime", "value": "2009-10-17T23:46:20.827189"}, "title": "Ik heb altijd gelijk", "last_modified": {"type": "/type/datetime", "value": "2010-07-21T08:32:45.296388"}, "latest_revision": 2, "key": "/works/OL109952W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1213378A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL10995365W 1 2009-12-11T03:50:21.968794 {"title": "Review of salaries - educational psychologists and youth and community service officers", "created": {"type": "/type/datetime", "value": "2009-12-11T03:50:21.968794"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:50:21.968794"}, "latest_revision": 1, "key": "/works/OL10995365W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4573729A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10995415W 2 2010-01-18T23:08:13.135697 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:50:21.968794"}, "title": "Report by the Council for Art and Industry", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T23:08:13.135697"}, "latest_revision": 2, "key": "/works/OL10995415W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4573761A"}}], "type": {"key": "/type/work"}, "subjects": ["Textile design", "Decorative arts", "Design"], "revision": 2}
+/type/work /works/OL10996342W 3 2010-12-03T12:07:19.935705 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:50:28.157430"}, "subject_places": ["England", "Great Britain"], "subjects": ["Antiquities, Roman", "Roads, Roman", "Roman Antiquities", "Roman Roads"], "latest_revision": 3, "key": "/works/OL10996342W", "title": "Roman roads in the South-East Midlands", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4574281A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T12:07:19.935705"}, "revision": 3}
+/type/work /works/OL10996502W 3 2010-12-03T21:20:24.668861 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:50:28.157430"}, "subjects": ["Authors, Serbian", "Biography", "Serbian Authors"], "subject_people": ["Peter II Prince-Bishop of Montenegro (1813-1851)"], "key": "/works/OL10996502W", "title": "Petar II Petrovi\u0107-Njgo\u0161, 1813-1851", "latest_revision": 3, "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4574373A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T21:20:24.668861"}, "revision": 3}
+/type/work /works/OL10996778W 1 2009-12-11T03:50:28.157430 {"title": "Shaz\u0101y\u0101 wa-ram\u0101d", "created": {"type": "/type/datetime", "value": "2009-12-11T03:50:28.157430"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:50:28.157430"}, "latest_revision": 1, "key": "/works/OL10996778W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4574505A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10997038W 1 2009-12-11T03:50:34.976575 {"title": "Building with balsa wood", "created": {"type": "/type/datetime", "value": "2009-12-11T03:50:34.976575"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:50:34.976575"}, "latest_revision": 1, "key": "/works/OL10997038W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4574647A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10997083W 1 2009-12-11T03:50:34.976575 {"title": "Merghor", "created": {"type": "/type/datetime", "value": "2009-12-11T03:50:34.976575"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:50:34.976575"}, "latest_revision": 1, "key": "/works/OL10997083W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4574670A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1099708W 4 2010-04-28T07:17:47.985892 {"subtitle": "The 16th and 17th Centuries", "title": "Seekers and Traders", "created": {"type": "/type/datetime", "value": "2009-12-09T20:29:52.903279"}, "covers": [5195077], "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL113611A"}}], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:17:47.985892"}, "latest_revision": 4, "key": "/works/OL1099708W", "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL10997156W 2 2010-01-18T23:08:13.135697 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:50:34.976575"}, "title": "Modern American period furniture", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T23:08:13.135697"}, "latest_revision": 2, "key": "/works/OL10997156W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4574687A"}}], "type": {"key": "/type/work"}, "subjects": ["Furniture"], "revision": 2}
+/type/work /works/OL10997267W 2 2010-01-18T23:08:13.135697 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:50:34.976575"}, "title": "A history of American furniture", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T23:08:13.135697"}, "latest_revision": 2, "key": "/works/OL10997267W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4574729A"}}], "type": {"key": "/type/work"}, "subjects": ["Furniture", "History"], "revision": 2}
+/type/work /works/OL10997794W 1 2009-12-11T03:50:34.976575 {"title": "Cat\u00e1logo da Exposi\u00e7\u00e3o de Cer\u00e2mica Ulissiponense", "created": {"type": "/type/datetime", "value": "2009-12-11T03:50:34.976575"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:50:34.976575"}, "latest_revision": 1, "key": "/works/OL10997794W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4575073A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10997872W 2 2022-09-07T19:39:47.551633 {"title": "Travaux et confe rences de la Faculte de Droit de l'Universite Libre de Bruxelles", "key": "/works/OL10997872W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4575096A"}}], "type": {"key": "/type/work"}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T03:50:34.976575"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-07T19:39:47.551633"}}
+/type/work /works/OL10998194W 2 2010-01-18T23:13:06.920603 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:50:41.779698"}, "title": "A treatise on finance, under which, the general interests of the British empire are illustrated", "subject_places": ["Great Britain"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T23:13:06.920603"}, "latest_revision": 2, "key": "/works/OL10998194W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4575348A"}}], "type": {"key": "/type/work"}, "subjects": ["Economic policy", "Economic conditions", "Finance"], "revision": 2}
+/type/work /works/OL10998246W 4 2021-03-28T03:56:12.966318 {"subject_places": ["Latin America"], "subjects": ["Art", "Conference on Studies in Latin American Art, Museum of Modern Art (1945 : New York)", "Conference on Studies in Latin American Art, Museum of Modern Art, New Youk, 1945"], "key": "/works/OL10998246W", "title": "Studies in Latin American art", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4575375A"}}], "type": {"key": "/type/work"}, "covers": [10810615], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T03:50:41.779698"}, "last_modified": {"type": "/type/datetime", "value": "2021-03-28T03:56:12.966318"}}
+/type/work /works/OL10999067W 1 2009-12-11T03:50:48.094750 {"title": "Dharat\u012b de r\u0101\u1e47e", "created": {"type": "/type/datetime", "value": "2009-12-11T03:50:48.094750"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:50:48.094750"}, "latest_revision": 1, "key": "/works/OL10999067W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4575817A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10999224W 2 2010-01-18T23:13:06.920603 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:50:48.094750"}, "title": "Buddhism", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T23:13:06.920603"}, "latest_revision": 2, "key": "/works/OL10999224W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4575930A"}}], "type": {"key": "/type/work"}, "subjects": ["Buddhism", "History"], "revision": 2}
+/type/work /works/OL10999485W 1 2009-12-11T03:50:48.094750 {"title": "Observations of the Prison Commissioners on the recommendations of the Departmental Committeeon prisons appointed on the 6th June 1894", "created": {"type": "/type/datetime", "value": "2009-12-11T03:50:48.094750"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:50:48.094750"}, "latest_revision": 1, "key": "/works/OL10999485W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4576036A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10999489W 1 2009-12-11T03:50:48.094750 {"title": "Siraja\u1e47\u0101 ate sam\u012bkhi\u0101", "created": {"type": "/type/datetime", "value": "2009-12-11T03:50:48.094750"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:50:48.094750"}, "latest_revision": 1, "key": "/works/OL10999489W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4576040A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL10999670W 2 2010-01-18T23:18:03.454700 {"title": "Wam\u1e0d\u0101t f\u012b diw\u0101n al-\u02bbAww\u0101d", "created": {"type": "/type/datetime", "value": "2009-12-11T03:50:48.094750"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-18T23:18:03.454700"}, "latest_revision": 2, "key": "/works/OL10999670W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4576133A"}}], "subject_people": ["Mu\u1e25ammad \u1e24asan \u02bbAww\u0101d (d. 1980)"], "type": {"key": "/type/work"}, "subjects": ["Criticism and interpretation"], "revision": 2}
+/type/work /works/OL10999767W 1 2009-12-11T03:50:48.094750 {"title": "Mab\u0101\u1e25ith f\u012b al-adab al-\u02bbArab\u012b al-mu\u02bb\u0101\u1e63ir", "created": {"type": "/type/datetime", "value": "2009-12-11T03:50:48.094750"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:50:48.094750"}, "latest_revision": 1, "key": "/works/OL10999767W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4576196A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11000135W 2 2010-01-18T23:18:03.454700 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:50:54.893002"}, "title": "Balans norodnogo khozi\ufe20a\ufe21\u01d0stva i metody ego postroenii\ufe20a\ufe21", "subject_places": ["Russia"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T23:18:03.454700"}, "latest_revision": 2, "key": "/works/OL11000135W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4576408A"}}], "subject_times": ["1955-"], "type": {"key": "/type/work"}, "subjects": ["Gross national product", "Economic conditions"], "revision": 2}
+/type/work /works/OL11000296W 2 2010-01-18T23:18:03.454700 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:50:54.893002"}, "title": "\u0116konomika Moldavsko\u01d0 SSR", "subject_places": ["Moldova"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T23:18:03.454700"}, "latest_revision": 2, "key": "/works/OL11000296W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4576510A"}}], "type": {"key": "/type/work"}, "subjects": ["Economic conditions"], "revision": 2}
+/type/work /works/OL11000433W 2 2010-01-18T23:18:03.454700 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:50:54.893002"}, "title": "M\u0101dh\u0101 Jar\u00e1 li-Misr", "subject_places": ["Egypt"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T23:18:03.454700"}, "latest_revision": 2, "key": "/works/OL11000433W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4576586A"}}], "type": {"key": "/type/work"}, "subjects": ["History", "Copts", "Muslims"], "revision": 2}
+/type/work /works/OL11000919W 2 2010-01-18T23:18:03.454700 {"title": "al- \u1e24arakah al-fikr\u012byah f\u012b al-Mahd\u012byah", "created": {"type": "/type/datetime", "value": "2009-12-11T03:50:54.893002"}, "subject_places": ["Sudan"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T23:18:03.454700"}, "latest_revision": 2, "key": "/works/OL11000919W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4576896A"}}], "subject_people": ["Mu\u1e25ammad A\u1e25mad Mahd\u012b (1848-1885)"], "subject_times": ["1862-1899", "1821-1881", "1881-1899"], "type": {"key": "/type/work"}, "subjects": ["History", "Mahdism"], "revision": 2}
+/type/work /works/OL11001343W 1 2009-12-11T03:51:00.350319 {"title": "Serm\u00e3o s\u00f4bre o mysterio da incarna\u00e7\u00e3o de N.S. Jesus Christo", "created": {"type": "/type/datetime", "value": "2009-12-11T03:51:00.350319"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:51:00.350319"}, "latest_revision": 1, "key": "/works/OL11001343W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4577107A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11001651W 3 2010-07-31T06:57:47.171170 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:51:00.350319"}, "subjects": ["Hadith", "Authorities", "Criticism, interpretation"], "subtitle": "dir\u0101sah maw\u1e0d\u016b\u02bbah manhaj\u012byah li-a\u1e25\u0101d\u012bth arba\u02bb\u012bn \u1e63a\u1e25\u0101b\u012byan \u02bbal\u0101\u1e0daw\u02be al-Kit\u0101b, al-Sunnah, al-\u02bbaql, ittif\u0101q al-ummah wa-al-t\u0101r\u012bkh", "key": "/works/OL11001651W", "title": "al- \u1e24ad\u012bth al-Nabaw\u012b bayna al-riw\u0101yah wa-al-dir\u0101yah", "latest_revision": 3, "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4577265A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-07-31T06:57:47.171170"}, "revision": 3}
+/type/work /works/OL11001748W 1 2009-12-11T03:51:00.350319 {"title": "al- Thawrah al-ishtir\u0101k\u012byah al-\u02bb\u0101lam\u012byah", "created": {"type": "/type/datetime", "value": "2009-12-11T03:51:00.350319"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:51:00.350319"}, "latest_revision": 1, "key": "/works/OL11001748W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4577276A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11003017W 1 2009-12-11T03:51:14.369525 {"title": "Pru fung von stahl und stahlguss", "created": {"type": "/type/datetime", "value": "2009-12-11T03:51:14.369525"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:51:14.369525"}, "latest_revision": 1, "key": "/works/OL11003017W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4577932A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11003285W 2 2019-04-03T21:48:43.413697 {"last_modified": {"type": "/type/datetime", "value": "2019-04-03T21:48:43.413697"}, "title": "Stunde namens Hoffung :Almanach tschechischer Literatur 1968-1978", "created": {"type": "/type/datetime", "value": "2009-12-11T03:51:14.369525"}, "subjects": ["German literature", "Translations into German", "Translations from Czech", "Czech literature"], "latest_revision": 2, "key": "/works/OL11003285W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4578104A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11003508W 1 2009-12-11T03:51:14.369525 {"title": "A Beira e o infante D. Henrique", "created": {"type": "/type/datetime", "value": "2009-12-11T03:51:14.369525"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:51:14.369525"}, "latest_revision": 1, "key": "/works/OL11003508W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4578248A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11004155W 2 2010-01-18T23:27:45.832218 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:51:21.674083"}, "title": "The function of management", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T23:27:45.832218"}, "latest_revision": 2, "key": "/works/OL11004155W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4578642A"}}], "type": {"key": "/type/work"}, "subjects": ["Industrial management"], "revision": 2}
+/type/work /works/OL11004420W 2 2010-01-18T23:27:45.832218 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:51:21.674083"}, "title": "Control of pests in stored agricultural products with special reference to grain", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T23:27:45.832218"}, "latest_revision": 2, "key": "/works/OL11004420W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4578814A"}}], "type": {"key": "/type/work"}, "subjects": ["Grain", "Diseases and pests", "Storage", "Disinfection"], "revision": 2}
+/type/work /works/OL11004850W 1 2009-12-11T03:51:21.674083 {"title": "Familien paa Hapakoski", "created": {"type": "/type/datetime", "value": "2009-12-11T03:51:21.674083"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:51:21.674083"}, "latest_revision": 1, "key": "/works/OL11004850W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4579089A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11004988W 1 2009-12-11T03:51:28.906118 {"title": "Final report on design of an environmental evaluation system to Bureau of Reclamation, U.S. Department of the Interior", "created": {"type": "/type/datetime", "value": "2009-12-11T03:51:28.906118"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:51:28.906118"}, "latest_revision": 1, "key": "/works/OL11004988W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4579179A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11005024W 3 2022-12-22T22:32:12.557185 {"title": "Drachmentage", "key": "/works/OL11005024W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL271800A"}}], "type": {"key": "/type/work"}, "subjects": ["18.09 German literature"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T03:51:28.906118"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-22T22:32:12.557185"}}
+/type/work /works/OL11005413W 1 2009-12-11T03:51:28.906118 {"title": "Advances in X-Ray analysis", "created": {"type": "/type/datetime", "value": "2009-12-11T03:51:28.906118"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:51:28.906118"}, "latest_revision": 1, "key": "/works/OL11005413W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4579472A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11005426W 2 2010-01-18T23:27:45.832218 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:51:28.906118"}, "title": "Plant and stocks in the production of goods in seasonal demand", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T23:27:45.832218"}, "latest_revision": 2, "key": "/works/OL11005426W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4579484A"}}], "type": {"key": "/type/work"}, "subjects": ["Seasonal industries", "Production control"], "revision": 2}
+/type/work /works/OL1100554W 2 2010-01-18T23:32:46.498012 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:30:01.775439"}, "title": "Irrigation", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T23:32:46.498012"}, "latest_revision": 2, "key": "/works/OL1100554W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL113649A"}}], "type": {"key": "/type/work"}, "subjects": ["Irrigation"], "revision": 2}
+/type/work /works/OL11005697W 2 2010-01-18T23:32:46.498012 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:51:28.906118"}, "title": "Two-dimensional tests of wave transmission and reflection characteristics of laboratory breakwaters", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T23:32:46.498012"}, "latest_revision": 2, "key": "/works/OL11005697W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4579627A"}}], "type": {"key": "/type/work"}, "subjects": ["Water waves", "Breakwaters"], "revision": 2}
+/type/work /works/OL11006029W 2 2010-01-18T23:32:46.498012 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:51:35.950633"}, "title": "Occurrence, abundance, and size of fish at the Roaring River Slough Intake, Suisun Marsh, California during the 1980-81 and the 1981-82 diversion seasons", "subject_places": ["California", "Roaring River Slough", "Suisun Marsh (Calif.)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T23:32:46.498012"}, "latest_revision": 2, "key": "/works/OL11006029W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4579842A"}}], "type": {"key": "/type/work"}, "subjects": ["Fish populations", "Fish screens"], "revision": 2}
+/type/work /works/OL11006062W 1 2009-12-11T03:51:35.950633 {"title": "Volkswirtschaftspolitik und weltwirtschaftliche Stellung Norwegens", "created": {"type": "/type/datetime", "value": "2009-12-11T03:51:35.950633"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:51:35.950633"}, "latest_revision": 1, "key": "/works/OL11006062W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4579869A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11006163W 1 2009-12-11T03:51:35.950633 {"title": "S\u0101hitya\u015b\u0113\u1e63a\u1e43", "created": {"type": "/type/datetime", "value": "2009-12-11T03:51:35.950633"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:51:35.950633"}, "latest_revision": 1, "key": "/works/OL11006163W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4579932A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11006244W 2 2022-12-10T16:22:41.209112 {"title": "Sa\u02bb\u012bd Taq\u012b al-D\u012bn", "key": "/works/OL11006244W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4579986A"}}], "type": {"key": "/type/work"}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T03:51:35.950633"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T16:22:41.209112"}}
+/type/work /works/OL11006502W 2 2010-01-18T23:32:46.498012 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:51:35.950633"}, "title": "Proceedings..", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T23:32:46.498012"}, "latest_revision": 2, "key": "/works/OL11006502W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4580123A"}}], "type": {"key": "/type/work"}, "subjects": ["Soil conservation", "Reclamation of land"], "revision": 2}
+/type/work /works/OL11006669W 2 2010-01-18T23:32:46.498012 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:51:35.950633"}, "title": "Greivance principles and problems", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T23:32:46.498012"}, "latest_revision": 2, "key": "/works/OL11006669W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4580246A"}}], "type": {"key": "/type/work"}, "subjects": ["Grievance procedures", "Industrial relations"], "revision": 2}
+/type/work /works/OL11007030W 2 2010-01-18T23:32:46.498012 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:51:43.695841"}, "title": "Regulations no. 2 relating to non-industrial use of distilled spirits and wine under the provisions of the Federal Alcohol Administration Act, approved August 29, 1935", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T23:32:46.498012"}, "latest_revision": 2, "key": "/works/OL11007030W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4580516A"}}], "type": {"key": "/type/work"}, "subjects": ["Liquor industry", "Wine"], "revision": 2}
+/type/work /works/OL11007221W 1 2009-12-11T03:51:43.695841 {"title": "Publications mathe matiques", "created": {"type": "/type/datetime", "value": "2009-12-11T03:51:43.695841"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:51:43.695841"}, "latest_revision": 1, "key": "/works/OL11007221W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4580632A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11007658W 1 2009-12-11T03:51:43.695841 {"title": "Qir\u0101\u02beah f\u012b hadhihi al-ta\u1e25awwul\u0101t", "created": {"type": "/type/datetime", "value": "2009-12-11T03:51:43.695841"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:51:43.695841"}, "latest_revision": 1, "key": "/works/OL11007658W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4580939A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11007792W 1 2009-12-11T03:51:43.695841 {"title": "Nye Runeforskninger", "created": {"type": "/type/datetime", "value": "2009-12-11T03:51:43.695841"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:51:43.695841"}, "latest_revision": 1, "key": "/works/OL11007792W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4581021A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11007880W 2 2010-01-18T23:37:36.787600 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:51:43.695841"}, "title": "South East Edinburgh local plan", "subject_places": ["Edinburgh", "Scotland", "Edinburgh (Scotland)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T23:37:36.787600"}, "latest_revision": 2, "key": "/works/OL11007880W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4581073A"}}], "type": {"key": "/type/work"}, "subjects": ["City planning", "Description and travel"], "revision": 2}
+/type/work /works/OL11008329W 1 2009-12-11T03:51:49.774768 {"title": "Mem\u00f3rias e explora\u00e7\u00f5es arqueologicas", "created": {"type": "/type/datetime", "value": "2009-12-11T03:51:49.774768"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:51:49.774768"}, "latest_revision": 1, "key": "/works/OL11008329W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4581346A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11008372W 3 2010-12-04T04:55:31.748241 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:51:49.774768"}, "subject_places": ["Portugal"], "subjects": ["British Broadcasting Corporation", "British Broadcasting Corporation. European Service", "Radio in politics"], "latest_revision": 3, "key": "/works/OL11008372W", "title": "BBC versus Portugal", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4581369A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-04T04:55:31.748241"}, "revision": 3}
+/type/work /works/OL11008900W 1 2009-12-11T03:51:49.774768 {"title": "A profile of health care and disease in Sheffield", "created": {"type": "/type/datetime", "value": "2009-12-11T03:51:49.774768"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:51:49.774768"}, "latest_revision": 1, "key": "/works/OL11008900W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4581626A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11008928W 3 2019-02-25T01:43:28.841111 {"title": "Linus Fleck", "created": {"type": "/type/datetime", "value": "2009-12-11T03:51:49.774768"}, "covers": [8391683], "last_modified": {"type": "/type/datetime", "value": "2019-02-25T01:43:28.841111"}, "latest_revision": 3, "key": "/works/OL11008928W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL137679A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11009211W 2 2010-01-18T23:42:17.482647 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:51:56.162999"}, "title": "\u1e24av\u0101\u02beic-i \u1e33\u0101n\u016bn\u012byemiz", "subject_places": ["Turkey"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T23:42:17.482647"}, "latest_revision": 2, "key": "/works/OL11009211W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4581792A"}}], "type": {"key": "/type/work"}, "subjects": ["Law", "History and criticism"], "revision": 2}
+/type/work /works/OL11009682W 3 2010-12-03T18:48:00.994495 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T18:48:00.994495"}, "title": "D. H. Lawrence in Taos", "created": {"type": "/type/datetime", "value": "2009-12-11T03:51:56.162999"}, "subject_places": ["New Mexico", "Taos", "Taos (N.M.)"], "subjects": ["Authors, English", "Biography", "English Authors", "Homes and haunts"], "subject_people": ["D. H. Lawrence (1885-1930)"], "key": "/works/OL11009682W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4582077A"}}], "latest_revision": 3, "subject_times": ["20th century"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11009932W 1 2009-12-11T03:51:56.162999 {"title": "O M.F.A. no banco dos r\u00e9us", "created": {"type": "/type/datetime", "value": "2009-12-11T03:51:56.162999"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:51:56.162999"}, "latest_revision": 1, "key": "/works/OL11009932W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4582209A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11009990W 1 2009-12-11T03:52:02.338899 {"title": "Report on education in Barbados for the period 1st September 1978 - 31st August 1982", "created": {"type": "/type/datetime", "value": "2009-12-11T03:52:02.338899"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:52:02.338899"}, "latest_revision": 1, "key": "/works/OL11009990W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4582247A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11010173W 3 2010-12-03T17:51:00.879424 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:52:02.338899"}, "subject_places": ["Portugal"], "subjects": ["Freemasons", "History"], "latest_revision": 3, "key": "/works/OL11010173W", "title": "Hist\u00f3ria da ma\u00e7onaria em Portugal", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4582340A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T17:51:00.879424"}, "revision": 3}
+/type/work /works/OL11011617W 4 2020-02-29T05:32:18.646153 {"covers": [9284574], "last_modified": {"type": "/type/datetime", "value": "2020-02-29T05:32:18.646153"}, "latest_revision": 4, "key": "/works/OL11011617W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4583101A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T03:52:08.664935"}, "title": "John Gerson", "subjects": ["Mystiek"], "subject_people": ["Jean Gerson (1363-1429)"], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL11011963W 2 2010-01-18T23:47:22.803567 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:52:08.664935"}, "title": "\"The horse in war\" and famous Canadian war horses", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T23:47:22.803567"}, "latest_revision": 2, "key": "/works/OL11011963W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4583280A"}}], "type": {"key": "/type/work"}, "subjects": ["Horses", "World War, 1914-1918", "Animals", "War use"], "revision": 2}
+/type/work /works/OL11012548W 2 2010-01-18T23:52:34.933138 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:52:15.915499"}, "title": "A brief on manpower and employment", "subject_places": ["Canada"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T23:52:34.933138"}, "latest_revision": 2, "key": "/works/OL11012548W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4583644A"}}], "type": {"key": "/type/work"}, "subjects": ["Unemployed", "Labor supply"], "revision": 2}
+/type/work /works/OL11012787W 2 2010-01-18T23:52:34.933138 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:52:15.915499"}, "title": "Half-yearly reports of the Inspectors ofFactories, with appendices, 1857-60", "subject_places": ["Gt. Brit"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T23:52:34.933138"}, "latest_revision": 2, "key": "/works/OL11012787W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4583771A"}}], "type": {"key": "/type/work"}, "subjects": ["Factory inspection", "Factories", "Safety measures"], "revision": 2}
+/type/work /works/OL11012816W 3 2010-12-03T21:18:20.880020 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T21:18:20.880020"}, "latest_revision": 3, "key": "/works/OL11012816W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4583777A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T03:52:15.915499"}, "title": "A monograph of the works of McKim, Mead &White, 1879-1915", "subject_places": ["United States"], "subjects": ["Architecture, Modern", "McKim, Mead & White", "Modern Architecture"], "subject_times": ["19thcentury", "20th century"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11013298W 3 2010-12-03T18:14:49.476126 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:52:22.843302"}, "subject_places": ["Athens", "Greece", "Swansea", "Wales"], "subjects": ["Athens Campus Wales", "Educational evaluation", "University College of Swansea"], "latest_revision": 3, "key": "/works/OL11013298W", "title": "University of Wales, Swansea and Athens Campus Wales, Greece", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4584098A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T18:14:49.476126"}, "revision": 3}
+/type/work /works/OL11013484W 1 2009-12-11T03:52:22.843302 {"title": "Yearbook =", "created": {"type": "/type/datetime", "value": "2009-12-11T03:52:22.843302"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:52:22.843302"}, "latest_revision": 1, "key": "/works/OL11013484W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4584215A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11013807W 1 2009-12-11T03:52:22.843302 {"title": "The other economic summit 6-10 June 84", "created": {"type": "/type/datetime", "value": "2009-12-11T03:52:22.843302"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:52:22.843302"}, "latest_revision": 1, "key": "/works/OL11013807W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4584398A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1101386W 3 2010-04-28T07:17:47.985892 {"title": "Catalogue des \u00e9toiles doubles et multiples, en mouvement relatif certain: comprenant toutes les ..", "created": {"type": "/type/datetime", "value": "2009-12-09T20:30:10.724335"}, "covers": [6237802], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:17:47.985892"}, "latest_revision": 3, "key": "/works/OL1101386W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL113708A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11014067W 1 2009-12-11T03:52:29.547989 {"title": "Pensions appeal tribunals", "created": {"type": "/type/datetime", "value": "2009-12-11T03:52:29.547989"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:52:29.547989"}, "latest_revision": 1, "key": "/works/OL11014067W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4584598A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11014585W 1 2009-12-11T03:52:29.547989 {"title": "IMI in profile", "created": {"type": "/type/datetime", "value": "2009-12-11T03:52:29.547989"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:52:29.547989"}, "latest_revision": 1, "key": "/works/OL11014585W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4584835A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11015049W 1 2009-12-11T03:52:34.556446 {"title": "Reporters' rules and abbreviations", "created": {"type": "/type/datetime", "value": "2009-12-11T03:52:34.556446"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:52:34.556446"}, "latest_revision": 1, "key": "/works/OL11015049W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4585136A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11015077W 1 2009-12-11T03:52:34.556446 {"title": "One hundred and seventy five manuscripts & books", "created": {"type": "/type/datetime", "value": "2009-12-11T03:52:34.556446"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:52:34.556446"}, "latest_revision": 1, "key": "/works/OL11015077W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4585163A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1101534W 1 2009-12-09T20:30:10.724335 {"title": "La Mistica", "created": {"type": "/type/datetime", "value": "2009-12-09T20:30:10.724335"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T20:30:10.724335"}, "latest_revision": 1, "key": "/works/OL1101534W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL113713A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1101541W 3 2010-04-28T07:17:47.985892 {"title": "Lila The Play Of God", "created": {"type": "/type/datetime", "value": "2009-12-09T20:30:10.724335"}, "covers": [2863949], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:17:47.985892"}, "latest_revision": 3, "key": "/works/OL1101541W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL113713A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11015658W 4 2020-07-27T17:29:18.587718 {"last_modified": {"type": "/type/datetime", "value": "2020-07-27T17:29:18.587718"}, "title": "The spirit level", "created": {"type": "/type/datetime", "value": "2009-12-11T03:52:34.556446"}, "subjects": ["English poetry", "Irish authors", "Poetry", "Irish poetry", "Male authors"], "latest_revision": 4, "key": "/works/OL11015658W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL217115A"}}], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL11016440W 2 2010-01-18T23:57:19.378848 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:52:41.229605"}, "title": "Experimental diabetes in white rats by use of anti-pancreatic serum", "last_modified": {"type": "/type/datetime", "value": "2010-01-18T23:57:19.378848"}, "latest_revision": 2, "key": "/works/OL11016440W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4585828A"}}], "type": {"key": "/type/work"}, "subjects": ["Pancreas", "Diabetes"], "revision": 2}
+/type/work /works/OL11016902W 2 2010-01-18T23:57:19.378848 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:52:41.229605"}, "title": "The herb layer along a gap age gradient within a mature beech-maple forest", "subject_places": ["Ohio", "Preble County"], "last_modified": {"type": "/type/datetime", "value": "2010-01-18T23:57:19.378848"}, "latest_revision": 2, "key": "/works/OL11016902W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4586104A"}}], "type": {"key": "/type/work"}, "subjects": ["Forest ecology", "Plant succession", "Windfall (Forestry)"], "revision": 2}
+/type/work /works/OL11017054W 2 2010-01-19T00:02:37.944271 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:52:48.684921"}, "title": "Civil service laws of Ohio", "subject_places": ["Ohio"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T00:02:37.944271"}, "latest_revision": 2, "key": "/works/OL11017054W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4586149A"}}], "type": {"key": "/type/work"}, "subjects": ["Civil service"], "revision": 2}
+/type/work /works/OL1101708W 3 2010-04-28T07:17:47.985892 {"title": "... Rutland", "created": {"type": "/type/datetime", "value": "2009-12-09T20:30:10.724335"}, "covers": [5641847], "subject_places": ["Rutland (England)"], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:17:47.985892"}, "latest_revision": 3, "key": "/works/OL1101708W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL113729A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11017110W 2 2010-01-19T00:02:37.944271 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:52:48.684921"}, "title": "Lower Willamette River wildlife habitat inventory", "subject_places": ["Willamette River", "Oregon"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T00:02:37.944271"}, "latest_revision": 2, "key": "/works/OL11017110W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4586184A"}}], "type": {"key": "/type/work"}, "subjects": ["Wildlife conservation", "Habitat (Ecology)", "Wildlife refuges"], "revision": 2}
+/type/work /works/OL11017335W 1 2009-12-11T03:52:48.684921 {"title": "Buyers guide to manufacturers", "created": {"type": "/type/datetime", "value": "2009-12-11T03:52:48.684921"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:52:48.684921"}, "latest_revision": 1, "key": "/works/OL11017335W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4586340A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11017622W 2 2010-01-19T00:02:37.944271 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:52:48.684921"}, "title": "An inhibitor of dopa autoxidation in embryonic chick limbs", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T00:02:37.944271"}, "latest_revision": 2, "key": "/works/OL11017622W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4586585A"}}], "type": {"key": "/type/work"}, "subjects": ["Biochemistry", "Embryology", "Birds"], "revision": 2}
+/type/work /works/OL11017678W 2 2010-01-19T00:02:37.944271 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:52:48.684921"}, "title": "Metabolic differences between strains of Escherichia coli resistant and susceptible to bacteriophage", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T00:02:37.944271"}, "latest_revision": 2, "key": "/works/OL11017678W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4586629A"}}], "type": {"key": "/type/work"}, "subjects": ["Escherichia coli", "Immunity"], "revision": 2}
+/type/work /works/OL11017823W 3 2010-12-04T00:11:25.017707 {"last_modified": {"type": "/type/datetime", "value": "2010-12-04T00:11:25.017707"}, "title": "Garp menba'lar\u0131na g\u00f6re garp medeniyetinin menba\u0131 olan \u0130sl\u00e2m medeniyeti", "created": {"type": "/type/datetime", "value": "2009-12-11T03:52:48.684921"}, "subjects": ["Apologetic works", "Civilization, Islamic", "Islam", "Islamic Civilization"], "latest_revision": 3, "key": "/works/OL11017823W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4586755A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11017845W 2 2010-01-19T00:02:37.944271 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:52:48.684921"}, "title": "Indian legends", "subject_places": ["North America"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T00:02:37.944271"}, "latest_revision": 2, "key": "/works/OL11017845W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4586768A"}}], "type": {"key": "/type/work"}, "subjects": ["Folklore", "Indians of North America"], "revision": 2}
+/type/work /works/OL11018208W 2 2010-01-19T00:02:37.944271 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:52:55.438767"}, "title": "Industrial incentives", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T00:02:37.944271"}, "latest_revision": 2, "key": "/works/OL11018208W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4586957A"}}], "type": {"key": "/type/work"}, "subjects": ["States", "Industrial promotion"], "revision": 2}
+/type/work /works/OL1101840W 2 2010-01-19T00:07:42.587703 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:30:10.724335"}, "title": "Remarks on steam navigation and its protection, regulation, and encouragement", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T00:07:42.587703"}, "latest_revision": 2, "key": "/works/OL1101840W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL113740A"}}], "type": {"key": "/type/work"}, "subjects": ["Steam-navigation", "Steamboats"], "revision": 2}
+/type/work /works/OL11018620W 9 2020-11-30T10:10:29.084723 {"description": {"type": "/type/text", "value": "COWBOYS TO THE RESCUE\r\n\r\nA WESTERN WEDDING?\r\n\r\nHis smile was worth millions, and he looked really good in tight jeans. Travis Eden, rodeo champion and once the kindest boy Becca Larson had known, was someone special. But nowadays the pretty barrel racer also knew better than to count on a cowboy for anything.\r\n\r\nStill, when Becca needed rescuing, Travis was there\u0097with just one catch. Marriage-shy Travis needed Becca to help dodge an ex-girlfriend. But when Travis swung her into his arms, Becca forgot it was only pretend and began to dream of being more than just friends\u0085."}, "covers": [6784790], "last_modified": {"type": "/type/datetime", "value": "2020-11-30T10:10:29.084723"}, "latest_revision": 9, "key": "/works/OL11018620W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL19276A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T03:52:55.438767"}, "title": "THE MILLION-DOLLAR COWBOY", "subjects": ["Fiction, romance, regional", "Large type books"], "type": {"key": "/type/work"}, "revision": 9}
+/type/work /works/OL11019123W 1 2009-12-11T03:53:02.281138 {"title": "Manual of microbiological methods", "created": {"type": "/type/datetime", "value": "2009-12-11T03:53:02.281138"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:53:02.281138"}, "latest_revision": 1, "key": "/works/OL11019123W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4587495A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11019779W 2 2010-01-19T00:12:35.363654 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:53:02.281138"}, "title": "Music and technology", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T00:12:35.363654"}, "latest_revision": 2, "key": "/works/OL11019779W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4587905A"}}], "type": {"key": "/type/work"}, "subjects": ["Instruction and study", "Congresses", "School music", "Computer music"], "revision": 2}
+/type/work /works/OL11019855W 1 2009-12-11T03:53:02.281138 {"title": "Rezolyutsii konferentsii", "created": {"type": "/type/datetime", "value": "2009-12-11T03:53:02.281138"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:53:02.281138"}, "latest_revision": 1, "key": "/works/OL11019855W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4587961A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11019989W 2 2010-01-19T00:12:35.363654 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:53:08.537633"}, "title": "Community organization", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T00:12:35.363654"}, "latest_revision": 2, "key": "/works/OL11019989W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4588031A"}}], "type": {"key": "/type/work"}, "subjects": ["Community organization"], "revision": 2}
+/type/work /works/OL11020109W 2 2010-01-19T00:12:35.363654 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:53:08.537633"}, "title": "Handbook in diagnostic-prescriptive teaching in the elementary schools", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T00:12:35.363654"}, "latest_revision": 2, "key": "/works/OL11020109W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4588100A"}}], "type": {"key": "/type/work"}, "subjects": ["Handbooks, manuals", "Remedial teaching", "Language arts (Elementary)"], "revision": 2}
+/type/work /works/OL11020196W 2 2010-01-19T00:12:35.363654 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:53:08.537633"}, "title": "Japan, old and new", "subject_places": ["Japan"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T00:12:35.363654"}, "latest_revision": 2, "key": "/works/OL11020196W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4588157A"}}], "type": {"key": "/type/work"}, "subjects": ["Social life and customs", "Foreign relations"], "revision": 2}
+/type/work /works/OL11020306W 2 2010-01-19T00:12:35.363654 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:53:08.537633"}, "title": "La chute du Second Empire et la naissance de la Troisi\u00e8me R\u00e9publique en France", "subject_places": ["France"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T00:12:35.363654"}, "latest_revision": 2, "key": "/works/OL11020306W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4588214A"}}], "subject_times": ["Third Republic, 1870-1940", "Second Empire, 1852-1870"], "type": {"key": "/type/work"}, "subjects": ["History"], "revision": 2}
+/type/work /works/OL11020696W 2 2010-01-19T00:12:35.363654 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:53:08.537633"}, "title": "Oral lesions", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T00:12:35.363654"}, "latest_revision": 2, "key": "/works/OL11020696W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4588432A"}}], "type": {"key": "/type/work"}, "subjects": ["Diagnosis", "Mouth", "Diseases", "Handbooks, manuals"], "revision": 2}
+/type/work /works/OL1102126W 3 2011-11-02T17:41:25.835584 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:30:10.724335"}, "subjects": ["Birds", "Folklore"], "subtitle": "essays and fantasies about birds.", "key": "/works/OL1102126W", "title": "Out of a clear sky", "latest_revision": 3, "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL113754A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2011-11-02T17:41:25.835584"}, "revision": 3}
+/type/work /works/OL11021394W 3 2010-12-03T12:19:50.698583 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T12:19:50.698583"}, "latest_revision": 3, "key": "/works/OL11021394W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4588785A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T03:53:14.635116"}, "title": "The last wave", "subject_places": ["United States"], "subjects": ["Economic aspects", "Economic aspects of War", "Economic conditions", "Economic history", "Finance, Personal", "Personal Finance", "War"], "subject_times": ["1981-2001"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11021679W 2 2010-01-19T00:17:57.495553 {"title": "Disputatio historico critica de Imperatoris Domitiani", "created": {"type": "/type/datetime", "value": "2009-12-11T03:53:14.635116"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-19T00:17:57.495553"}, "latest_revision": 2, "key": "/works/OL11021679W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4588949A"}}], "subject_people": ["Domitian Emperor of Rome (51-96)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11021933W 2 2010-01-19T00:17:57.495553 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:53:14.635116"}, "title": "Plumbing specialty code", "subject_places": ["United States", "Oregon"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T00:17:57.495553"}, "latest_revision": 2, "key": "/works/OL11021933W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4589099A"}}], "type": {"key": "/type/work"}, "subjects": ["Plumbing", "Law and legislation", "Specifications"], "revision": 2}
+/type/work /works/OL11022438W 4 2020-03-28T13:23:01.523153 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:53:21.164389"}, "subject_places": ["Russia"], "subjects": ["Anarchism and anarchists"], "latest_revision": 4, "key": "/works/OL11022438W", "title": "History of anarchism in Russia", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL119157A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-03-28T13:23:01.523153"}, "revision": 4}
+/type/work /works/OL11022563W 2 2010-01-19T00:23:09.201900 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:53:21.164389"}, "title": "VAN-DE VAN-HOA VIET (TAP MOT)", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T00:23:09.201900"}, "latest_revision": 2, "key": "/works/OL11022563W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4589458A"}}], "type": {"key": "/type/work"}, "subjects": ["Vietnamese language books"], "revision": 2}
+/type/work /works/OL11022958W 4 2010-12-03T14:28:42.271749 {"covers": [5309864], "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:28:42.271749"}, "latest_revision": 4, "key": "/works/OL11022958W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4589680A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T03:53:21.164389"}, "title": "VA financial management", "subject_places": ["United States"], "subjects": ["Finance", "Government contractors", "Management", "Medical care", "United States", "United States. Dept. of Veterans Affairs", "Veterans"], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL11023017W 1 2009-12-11T03:53:27.043491 {"title": "Tinh Hoa Su Viet", "created": {"type": "/type/datetime", "value": "2009-12-11T03:53:27.043491"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:53:27.043491"}, "latest_revision": 1, "key": "/works/OL11023017W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4589706A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1102341W 3 2010-04-28T07:17:47.985892 {"title": "The Duc De Lauzin And The Court Of Marie Antoinette", "created": {"type": "/type/datetime", "value": "2009-12-09T20:30:16.999664"}, "covers": [2499434], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:17:47.985892"}, "latest_revision": 3, "key": "/works/OL1102341W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL113775A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11023950W 4 2012-08-06T23:20:01.965651 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:53:27.043491"}, "subjects": ["Children's stories, Spanish", "Spanish language books"], "latest_revision": 4, "key": "/works/OL11023950W", "title": "Una historia sin nombre", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5841774A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-08-06T23:20:01.965651"}, "covers": [5291328], "revision": 4}
+/type/work /works/OL11024124W 3 2010-12-03T12:21:40.782990 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:53:33.686262"}, "subject_places": ["Ohio", "Oxford"], "subjects": ["College students", "Miami University (Oxford, Ohio)", "Students"], "latest_revision": 3, "key": "/works/OL11024124W", "title": "A fact book on the characteristics of Miami undergraduates", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4590226A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T12:21:40.782990"}, "revision": 3}
+/type/work /works/OL11024213W 2 2010-01-19T00:28:23.283806 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:53:33.686262"}, "title": "Planting for climate", "subject_places": ["Ohio", "Dayton"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T00:28:23.283806"}, "latest_revision": 2, "key": "/works/OL11024213W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4590275A"}}], "type": {"key": "/type/work"}, "subjects": ["Trees in cities", "Landscape architecture"], "revision": 2}
+/type/work /works/OL11024253W 3 2010-12-03T14:22:45.582048 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:22:45.582048"}, "title": "Environmental technologies", "created": {"type": "/type/datetime", "value": "2009-12-11T03:53:33.686262"}, "subjects": ["Directories", "Environmental engineering", "Environmental protection", "Los Alamos National Laboratory"], "latest_revision": 3, "key": "/works/OL11024253W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4590304A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11024556W 2 2010-01-19T00:28:23.283806 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:53:33.686262"}, "title": "The New York State economy", "subject_places": ["New York (State)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T00:28:23.283806"}, "latest_revision": 2, "key": "/works/OL11024556W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4590446A"}}], "type": {"key": "/type/work"}, "subjects": ["Economic conditions", "Economic forecasting"], "revision": 2}
+/type/work /works/OL11024718W 2 2012-04-14T19:53:06.126484 {"title": "THE SWORD OF WINTER", "created": {"type": "/type/datetime", "value": "2009-12-11T03:53:33.686262"}, "last_modified": {"type": "/type/datetime", "value": "2012-04-14T19:53:06.126484"}, "latest_revision": 2, "key": "/works/OL11024718W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1072689A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11024742W 2 2021-07-06T15:29:25.040708 {"title": "DRAGON OF AUTUMN TWILIGHT", "key": "/works/OL11024742W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL448253A"}}], "type": {"key": "/type/work"}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T03:53:33.686262"}, "last_modified": {"type": "/type/datetime", "value": "2021-07-06T15:29:25.040708"}}
+/type/work /works/OL11024863W 1 2009-12-11T03:53:33.686262 {"title": "Dionusiou Longinou Peri hupsous, ka\u00ec t\u00e1lla eurisk\u00f3mena", "created": {"type": "/type/datetime", "value": "2009-12-11T03:53:33.686262"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:53:33.686262"}, "latest_revision": 1, "key": "/works/OL11024863W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4590662A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11024913W 2 2010-01-19T00:28:23.283806 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:53:33.686262"}, "title": "Internship with the National Park Service Cape Cod National Seashore", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T00:28:23.283806"}, "latest_revision": 2, "key": "/works/OL11024913W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4590709A"}}], "type": {"key": "/type/work"}, "subjects": ["Environmental education"], "revision": 2}
+/type/work /works/OL11024988W 3 2010-12-03T13:24:15.093086 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:53:39.977908"}, "subject_places": ["Wyoming"], "subjects": ["Environmental aspects", "Environmental aspects of Oil fields", "Land use", "McMurray Oil Company", "Oil fields"], "latest_revision": 3, "key": "/works/OL11024988W", "title": "McMurray Oil Company, Jonah Prospect Field natural gas development environmental assessment", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4590757A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:24:15.093086"}, "revision": 3}
+/type/work /works/OL11026096W 2 2010-01-19T00:33:35.955839 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:53:47.341366"}, "title": "Realistic politics", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T00:33:35.955839"}, "latest_revision": 2, "key": "/works/OL11026096W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4591357A"}}], "type": {"key": "/type/work"}, "subjects": ["Political science"], "revision": 2}
+/type/work /works/OL11026169W 2 2010-10-17T07:55:51.789980 {"title": "CHAPTER 37 - PLANT NUTRITION [BI 213]", "created": {"type": "/type/datetime", "value": "2009-12-11T03:53:47.341366"}, "last_modified": {"type": "/type/datetime", "value": "2010-10-17T07:55:51.789980"}, "latest_revision": 2, "key": "/works/OL11026169W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4591010A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11026192W 1 2009-12-11T03:53:47.341366 {"title": "MARK S OF VALOR", "created": {"type": "/type/datetime", "value": "2009-12-11T03:53:47.341366"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:53:47.341366"}, "latest_revision": 1, "key": "/works/OL11026192W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4591439A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11026287W 1 2009-12-11T03:53:47.341366 {"title": "AN EYE FOR GOLD", "created": {"type": "/type/datetime", "value": "2009-12-11T03:53:47.341366"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:53:47.341366"}, "latest_revision": 1, "key": "/works/OL11026287W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4591518A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11026521W 1 2009-12-11T03:53:47.341366 {"title": "EJS ENHANCED VERSION", "created": {"type": "/type/datetime", "value": "2009-12-11T03:53:47.341366"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:53:47.341366"}, "latest_revision": 1, "key": "/works/OL11026521W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4591655A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11026666W 3 2010-12-03T14:31:09.053347 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:53:47.341366"}, "subjects": ["Anniversaries", "Exhibitions", "Houghton Library"], "subject_people": ["Johann Sebastian Bach (1685-1750)"], "key": "/works/OL11026666W", "title": "Johann Sebastian Bach (1685-1750)", "latest_revision": 3, "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4591766A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:31:09.053347"}, "revision": 3}
+/type/work /works/OL11026715W 1 2009-12-11T03:53:47.341366 {"title": "Primary guidelines for gifted & more able children", "created": {"type": "/type/datetime", "value": "2009-12-11T03:53:47.341366"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:53:47.341366"}, "latest_revision": 1, "key": "/works/OL11026715W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4591801A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11026837W 4 2010-12-03T14:41:14.384686 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:41:14.384686"}, "title": "Durfee's submarine gun. Letter from the Secretary of the Navy, in answer to resolution of the House of 9th instant in relation to the propriety of an appropriation for testing Durfee's submarine gun", "created": {"type": "/type/datetime", "value": "2009-12-11T03:53:47.341366"}, "subjects": ["Appropriations and expenditures", "Armed Forces", "Naval Ordnance", "Ordnance, Naval"], "latest_revision": 4, "key": "/works/OL11026837W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL159308A"}}], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL11027076W 2 2010-01-19T00:38:24.141186 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:53:52.187531"}, "title": "Hatch Act facts--about PACs", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T00:38:24.141186"}, "latest_revision": 2, "key": "/works/OL11027076W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4591980A"}}], "type": {"key": "/type/work"}, "subjects": ["Political activity", "Civil service", "Political participation", "Officials and employees"], "revision": 2}
+/type/work /works/OL11027118W 1 2009-12-11T03:53:52.187531 {"title": "Catalogue and price list of metal and wooden bedsteads, 1922-1936", "created": {"type": "/type/datetime", "value": "2009-12-11T03:53:52.187531"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:53:52.187531"}, "latest_revision": 1, "key": "/works/OL11027118W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4592010A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11027133W 4 2012-05-08T18:23:02.599783 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:53:52.187531"}, "subject_places": ["United States"], "subjects": ["Executive advisory bodies"], "latest_revision": 4, "key": "/works/OL11027133W", "title": "Annual report on federal advisory committees", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL191105A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-08T18:23:02.599783"}, "revision": 4}
+/type/work /works/OL11027888W 2 2010-11-20T17:50:55.470803 {"title": "CHAPTER 9 LECTURE - PART 2 [CH 221]", "created": {"type": "/type/datetime", "value": "2009-12-11T03:53:52.187531"}, "last_modified": {"type": "/type/datetime", "value": "2010-11-20T17:50:55.470803"}, "latest_revision": 2, "key": "/works/OL11027888W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4591386A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11027982W 2 2010-01-19T00:42:46.964014 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:53:56.248608"}, "title": "Le conte", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T00:42:46.964014"}, "latest_revision": 2, "key": "/works/OL11027982W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4592279A"}}], "type": {"key": "/type/work"}, "subjects": ["Fairy tales", "History and criticism"], "revision": 2}
+/type/work /works/OL11028648W 2 2010-01-19T00:42:46.964014 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:53:56.248608"}, "title": "Carbon steel wire rod from Brazil, Belgium, France, and Venezuela", "subject_places": ["Europe", "South America"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T00:42:46.964014"}, "latest_revision": 2, "key": "/works/OL11028648W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4592464A"}}], "type": {"key": "/type/work"}, "subjects": ["Steel industry and trade", "Steel wire"], "revision": 2}
+/type/work /works/OL1102874W 3 2010-12-03T21:23:57.232785 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T21:23:57.232785"}, "title": "On the zoological relations of man with the lower animals", "created": {"type": "/type/datetime", "value": "2009-12-09T20:30:16.999664"}, "subjects": ["Anatomy, Comparative", "Brain", "Comparative Anatomy"], "latest_revision": 3, "key": "/works/OL1102874W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL113810A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11028858W 1 2009-12-11T03:53:56.248608 {"title": "Hanayome kech\u014d", "created": {"type": "/type/datetime", "value": "2009-12-11T03:53:56.248608"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:53:56.248608"}, "latest_revision": 1, "key": "/works/OL11028858W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4592494A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11028947W 2 2011-03-17T21:24:19.674998 {"subtitle": "GUIDANCE AND DISCIPLINE", "title": "LEARNING ENVIRONMENT", "created": {"type": "/type/datetime", "value": "2009-12-11T03:53:56.248608"}, "last_modified": {"type": "/type/datetime", "value": "2011-03-17T21:24:19.674998"}, "latest_revision": 2, "key": "/works/OL11028947W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4592546A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11029160W 2 2010-01-19T00:47:49.375740 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:54:05.900993"}, "title": "The June 9, 1989, Conference on Issues in Corrections", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T00:47:49.375740"}, "latest_revision": 2, "key": "/works/OL11029160W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4592692A"}}], "type": {"key": "/type/work"}, "subjects": ["Congresses", "Corrections", "Correctional institutions"], "revision": 2}
+/type/work /works/OL1102979W 5 2020-08-12T23:54:16.905979 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:30:16.999664"}, "subjects": ["Economics", "Wealth"], "latest_revision": 5, "key": "/works/OL1102979W", "title": "Wealth", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL113811A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-08-12T23:54:16.905979"}, "covers": [5683996], "revision": 5}
+/type/work /works/OL11030250W 2 2010-01-19T00:47:49.375740 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:54:09.033221"}, "title": "Certain Agua Caliente or Palm Springs Reservation, Calif., lands for airport purposes", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T00:47:49.375740"}, "latest_revision": 2, "key": "/works/OL11030250W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4593265A"}}], "type": {"key": "/type/work"}, "subjects": ["Public lands", "Lease and rental services", "Airports"], "revision": 2}
+/type/work /works/OL11030280W 2 2010-01-19T00:47:49.375740 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:54:09.033221"}, "title": "Cherokee neutral lands. Argument of W. R. Laughlin", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T00:47:49.375740"}, "latest_revision": 2, "key": "/works/OL11030280W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4593265A"}}], "type": {"key": "/type/work"}, "subjects": ["Treaties", "Cherokee Indians", "Land tenure"], "revision": 2}
+/type/work /works/OL11030703W 2 2010-01-19T00:52:22.808209 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:54:09.033221"}, "title": "Improvements on certain lands in Wind River Reservation. Letter from the Acting Secretary of the Interior, transmitting, with accompanying papers, a report on the character and value of certain improvements on lands which have become a part of the Wind River or Shoshone Reservation, in Wyoming", "subject_places": ["Indian Territory", "Wind River Indian Reservation (Wyo.)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T00:52:22.808209"}, "latest_revision": 2, "key": "/works/OL11030703W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4593265A"}}], "type": {"key": "/type/work"}, "subjects": ["Shoshoni Indians"], "revision": 2}
+/type/work /works/OL11031711W 2 2010-01-19T00:57:50.402753 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:54:11.713492"}, "title": "Accounts of the Superintendent of Indian Affairs for the southern superintendency. Letter from the Secretary of the Interior, transmitting the accounts of the Superintendent of Indian affairs for the southern superintendency, as directed by act of Congress of July 5, 1862", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T00:57:50.402753"}, "latest_revision": 2, "key": "/works/OL11031711W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4593265A"}}], "type": {"key": "/type/work"}, "subjects": ["Indian agents", "Accounting", "Civil service"], "revision": 2}
+/type/work /works/OL11031816W 2 2010-01-19T00:57:50.402753 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:54:11.713492"}, "title": "Stockbridge and Munsee Indians", "subject_places": ["Wisconsin"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T00:57:50.402753"}, "latest_revision": 2, "key": "/works/OL11031816W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4593265A"}}], "type": {"key": "/type/work"}, "subjects": ["Munsee Indians", "Claims", "Stockbridge Indians"], "revision": 2}
+/type/work /works/OL11031851W 1 2009-12-11T03:54:11.713492 {"title": "Training for instructing doctors", "created": {"type": "/type/datetime", "value": "2009-12-11T03:54:11.713492"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:54:11.713492"}, "latest_revision": 1, "key": "/works/OL11031851W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4593267A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11032022W 4 2012-05-10T11:56:08.247535 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:54:20.687792"}, "subject_places": ["United States"], "subjects": ["Administration of Criminal justice", "Criminal justice, Administration of", "Judicial discretion", "Sentences (Criminal procedure)"], "latest_revision": 4, "key": "/works/OL11032022W", "title": "Public hearing, the United States Sentencing Commission", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL675482A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-10T11:56:08.247535"}, "revision": 4}
+/type/work /works/OL11032037W 1 2009-12-11T03:54:20.687792 {"title": "Parmenides, a text with translation, commentary and critical essays", "created": {"type": "/type/datetime", "value": "2009-12-11T03:54:20.687792"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:54:20.687792"}, "latest_revision": 1, "key": "/works/OL11032037W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4593417A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11032415W 2 2010-01-19T00:57:50.402753 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:54:20.687792"}, "title": "Alternatives for future library catalogs", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T00:57:50.402753"}, "latest_revision": 2, "key": "/works/OL11032415W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4593718A"}}], "type": {"key": "/type/work"}, "subjects": ["Costs", "Data processing", "Cataloging", "Library catalogs"], "revision": 2}
+/type/work /works/OL11032593W 3 2010-04-28T07:17:47.985892 {"title": "The study of political adaptation", "created": {"type": "/type/datetime", "value": "2009-12-11T03:54:20.687792"}, "covers": [5291575], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:17:47.985892"}, "latest_revision": 3, "key": "/works/OL11032593W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4593869A"}}], "subjects": ["International relations"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11032658W 3 2015-02-26T04:56:13.054887 {"covers": [7331681], "last_modified": {"type": "/type/datetime", "value": "2015-02-26T04:56:13.054887"}, "latest_revision": 3, "key": "/works/OL11032658W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4593930A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T03:54:20.687792"}, "title": "Proceedings--Symposium on the Management of Lodgepole Pine to Minimize Losses to the Mountain Pine Beetle, Kalispell, MT, July 12-14, 1988", "subject_places": ["Canada", "West (U.S.)"], "subjects": ["Congresses", "Control", "Lodgepole pine", "Mountain pine beetle", "Diseases and pests"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11032926W 5 2012-05-09T11:53:22.785688 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:54:20.687792"}, "subject_places": ["Macedonia"], "subjects": ["Armed Forces", "Foreign service", "United Nations", "United States", "United States. Army"], "latest_revision": 5, "key": "/works/OL11032926W", "title": "Further reporting on U.S. forces in the Republic of Macedonia", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL191105A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-09T11:53:22.785688"}, "revision": 5}
+/type/work /works/OL11033141W 1 2009-12-11T03:54:27.868070 {"title": "Energy and our future environment", "created": {"type": "/type/datetime", "value": "2009-12-11T03:54:27.868070"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:54:27.868070"}, "latest_revision": 1, "key": "/works/OL11033141W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4594262A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11033185W 2 2011-05-24T00:37:13.611253 {"title": "Poesi as", "created": {"type": "/type/datetime", "value": "2009-12-11T03:54:27.868070"}, "last_modified": {"type": "/type/datetime", "value": "2011-05-24T00:37:13.611253"}, "latest_revision": 2, "key": "/works/OL11033185W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL6041483A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11033472W 1 2009-12-11T03:54:27.868070 {"title": "Atlas of environmental quality in Tianjin", "created": {"type": "/type/datetime", "value": "2009-12-11T03:54:27.868070"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:54:27.868070"}, "latest_revision": 1, "key": "/works/OL11033472W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4594377A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11033651W 2 2010-01-19T01:02:48.050766 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:54:27.868070"}, "title": "Pathways to excellence", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T01:02:48.050766"}, "latest_revision": 2, "key": "/works/OL11033651W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4594510A"}}], "type": {"key": "/type/work"}, "subjects": ["Study and teaching", "Science", "Engineering", "Technology", "Mathematics"], "revision": 2}
+/type/work /works/OL11033678W 2 2010-01-19T01:02:48.050766 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:54:27.868070"}, "title": "Workshop on countering space adaptation with exercise--current issues", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T01:02:48.050766"}, "latest_revision": 2, "key": "/works/OL11033678W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4594534A"}}], "type": {"key": "/type/work"}, "subjects": ["Physiological effect", "Space flight", "Human physiology"], "revision": 2}
+/type/work /works/OL11034393W 3 2010-04-28T07:17:47.985892 {"title": "The weather almanac", "created": {"type": "/type/datetime", "value": "2009-12-11T03:54:31.767054"}, "covers": [5291720], "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:17:47.985892"}, "latest_revision": 3, "key": "/works/OL11034393W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4595003A"}}], "subjects": ["Handbooks, manuals", "Climate", "Climatology", "Air quality"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1103471W 4 2010-07-15T20:01:42.965679 {"subtitle": "from his works, letters, and conversations", "created": {"type": "/type/datetime", "value": "2009-12-09T20:30:22.907780"}, "title": "Heinrich Heine's memoirs", "covers": [5626448], "last_modified": {"type": "/type/datetime", "value": "2010-07-15T20:01:42.965679"}, "latest_revision": 4, "key": "/works/OL1103471W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL113829A"}}], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL11035163W 2 2010-01-19T01:12:18.888632 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:54:33.039096"}, "title": "Oil Region National Heritage Area Act", "subject_places": ["Pennsylvania", "Oil Region National Heritage Area (Pa.)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T01:12:18.888632"}, "latest_revision": 2, "key": "/works/OL11035163W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4595060A"}}], "type": {"key": "/type/work"}, "subjects": ["Law and legislation", "Protection", "Cultural property", "Historic sites"], "revision": 2}
+/type/work /works/OL11035183W 1 2009-12-11T03:54:33.039096 {"title": "Omanut Es\u1e33imo\u02beit ve-Indi\u02beanit ba-muzi\u02beon ha-yami ha-le\u02beumi \u1e24aifah", "created": {"type": "/type/datetime", "value": "2009-12-11T03:54:33.039096"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:54:33.039096"}, "latest_revision": 1, "key": "/works/OL11035183W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4595067A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11035378W 4 2012-05-02T19:14:14.935071 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:54:33.039096"}, "subject_places": ["Tennessee River", "Knoxville (Tenn.)"], "subjects": ["Bridges"], "latest_revision": 4, "key": "/works/OL11035378W", "title": "Bridge across the Tennessee River at Knoxville, Tenn", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4521280A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-02T19:14:14.935071"}, "revision": 4}
+/type/work /works/OL11035996W 5 2012-05-02T19:14:14.935071 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:54:36.147028"}, "subject_places": ["Hell Gate (New York, N.Y.)", "N.Y.) Hell Gate (New York"], "subjects": ["Dredging", "Harbors"], "latest_revision": 5, "key": "/works/OL11035996W", "title": "Obstructions at Hell Gate. Resolution relative to the removal of obstructions at Hell Gate", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4521280A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-02T19:14:14.935071"}, "revision": 5}
+/type/work /works/OL11036092W 4 2012-05-02T19:14:14.935071 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:54:36.147028"}, "subject_places": ["Red River of the North"], "subjects": ["Bridges", "Railroads"], "latest_revision": 4, "key": "/works/OL11036092W", "title": "Railroad bridge across the Red River of the North", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4521280A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-02T19:14:14.935071"}, "revision": 4}
+/type/work /works/OL1103623W 3 2020-04-25T22:52:29.258544 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:30:22.907780"}, "subjects": ["Sea poetry"], "latest_revision": 3, "key": "/works/OL1103623W", "title": "The sea poems", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL113831A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-04-25T22:52:29.258544"}, "covers": [9347441], "revision": 3}
+/type/work /works/OL11036260W 3 2012-05-02T23:32:09.571026 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:54:36.147028"}, "subject_places": ["Nebraska", "Missouri River"], "subjects": ["Topographical surveying"], "latest_revision": 3, "key": "/works/OL11036260W", "title": "Survey of Missouri River at Plattsmouth and Brownville, Nebraska. Letter from the Secretary of War, transmitting reports upon the survey of the Missouri River at Platismouth and Brownville, Nebr", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4521280A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-02T23:32:09.571026"}, "revision": 3}
+/type/work /works/OL11036343W 3 2012-05-02T23:29:03.065339 {"last_modified": {"type": "/type/datetime", "value": "2012-05-02T23:29:03.065339"}, "title": "Vessels in Revenue Service. Letter from the Secretary of the Treasury, relative to the number of vessels in the Revenue Service, and the further requirement of the service", "created": {"type": "/type/datetime", "value": "2009-12-11T03:54:36.147028"}, "subjects": ["Government vessels", "Revenue cutters"], "latest_revision": 3, "key": "/works/OL11036343W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4521280A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11036716W 2 2010-01-19T01:18:37.602401 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:54:36.147028"}, "title": "Le Gouvernement des suisses ou l'histoire en contrepoint", "subject_places": ["Switzerland"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T01:18:37.602401"}, "latest_revision": 2, "key": "/works/OL11036716W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4595119A"}}], "type": {"key": "/type/work"}, "subjects": ["Politics and government", "History"], "revision": 2}
+/type/work /works/OL11036740W 3 2010-12-03T12:23:07.780338 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T12:23:07.780338"}, "title": "Soldiers and statesmen", "created": {"type": "/type/datetime", "value": "2009-12-11T03:54:36.147028"}, "subjects": ["Congresses", "Military history, Modern", "Modern Military history"], "latest_revision": 3, "key": "/works/OL11036740W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4595136A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11036974W 2 2010-01-19T01:18:37.602401 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:54:36.147028"}, "title": "World list of aquatic sciences and fisheries serial titles", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T01:18:37.602401"}, "latest_revision": 2, "key": "/works/OL11036974W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4595286A"}}], "type": {"key": "/type/work"}, "subjects": ["Periodicals", "Bibliography", "Fisheries", "Aquatic biology"], "revision": 2}
+/type/work /works/OL11037086W 2 2010-01-19T01:18:37.602401 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:54:40.962620"}, "title": "Earthquake research at Parkfield--1993 and beyond", "subject_places": ["California", "Parkfield"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T01:18:37.602401"}, "latest_revision": 2, "key": "/works/OL11037086W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4595356A"}}], "type": {"key": "/type/work"}, "subjects": ["Earthquake prediction"], "revision": 2}
+/type/work /works/OL11037185W 3 2010-12-03T12:22:39.436260 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:54:40.962620"}, "subject_places": ["Medford Region", "Oregon"], "subjects": ["Conservation of natural resources", "Environmental aspects", "Environmental aspects of Land use", "Forest management", "Land use"], "latest_revision": 3, "key": "/works/OL11037185W", "title": "Medford District proposed resource management plan and final environmental impact statement", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4595424A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T12:22:39.436260"}, "revision": 3}
+/type/work /works/OL11037243W 3 2010-12-03T12:27:45.948391 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:54:40.962620"}, "subject_places": ["United States"], "subjects": ["Appropriations and expenditures", "Federal aid to water resources development", "Finance", "Law and legislation", "United States", "United States. Environmental Protection Agency", "Water resources development"], "latest_revision": 3, "key": "/works/OL11037243W", "title": "Alternative Water Sources Act of 2000", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4595462A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T12:27:45.948391"}, "revision": 3}
+/type/work /works/OL11037410W 2 2010-01-19T01:23:16.323015 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:54:40.962620"}, "title": "Safe Kids Buckle Up Car Seat Safety Check", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T01:23:16.323015"}, "latest_revision": 2, "key": "/works/OL11037410W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4595462A"}}], "type": {"key": "/type/work"}, "subjects": ["Automobiles", "Safety measures", "Seat belts", "Child restraint systems in automobiles", "Children's accidents", "Prevention"], "revision": 2}
+/type/work /works/OL11037523W 3 2012-05-09T11:25:12.020412 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:54:40.962620"}, "subject_places": ["Alaska", "Greens Creek", "Admiralty Island National Monument Wilderness (Alaska)"], "subjects": ["Public lands", "Registration and transfer", "Mining law", "Mining claims", "Land titles"], "latest_revision": 3, "key": "/works/OL11037523W", "title": "Greens Creek Land Exchange Act of 1995", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4595060A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-09T11:25:12.020412"}, "revision": 3}
+/type/work /works/OL11037671W 2 2010-01-19T01:23:16.323015 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:54:40.962620"}, "title": "Reauthorization of the Steel and Aluminum Energy Conservation and Technology Competitiveness Act of 1988", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T01:23:16.323015"}, "latest_revision": 2, "key": "/works/OL11037671W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4595517A"}}], "type": {"key": "/type/work"}, "subjects": ["Law and legislation", "Industries", "Energy conservation", "Aluminum industry and trade", "Steel industry and trade"], "revision": 2}
+/type/work /works/OL11037729W 3 2010-12-03T12:23:07.780338 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:54:40.962620"}, "subject_places": ["Montana"], "subjects": ["Environmental aspects", "Environmental aspects of Land use", "Land use", "Management", "Mines and mineral resources", "Planning", "United States", "United States. Bureau of Land Management. Valley Resource Area"], "latest_revision": 3, "key": "/works/OL11037729W", "title": "Approved Valley Resource Area resource management plan", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4595538A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T12:23:07.780338"}, "revision": 3}
+/type/work /works/OL11037916W 2 2010-01-19T01:23:16.323015 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:54:40.962620"}, "title": "A list of named glaciological features in Canada", "subject_places": ["Canada"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T01:23:16.323015"}, "latest_revision": 2, "key": "/works/OL11037916W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4595631A"}}], "type": {"key": "/type/work"}, "subjects": ["Glaciers", "Ice"], "revision": 2}
+/type/work /works/OL11038076W 1 2009-12-11T03:54:48.054581 {"title": "Sociological perspectives on socialization into a profession", "created": {"type": "/type/datetime", "value": "2009-12-11T03:54:48.054581"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:54:48.054581"}, "latest_revision": 1, "key": "/works/OL11038076W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4595698A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11038474W 3 2011-02-24T20:06:36.822744 {"subtitle": "nebst Wahlordnung, Ausf\u00fchrungsverordnungen und Erg\u00e4nzungsgesetzen (Betriebsbilanzgesetz, Aufsichtsratsgesetz und Wahlordnung)", "last_modified": {"type": "/type/datetime", "value": "2011-02-24T20:06:36.822744"}, "latest_revision": 3, "key": "/works/OL11038474W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4595930A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T03:54:48.054581"}, "title": "Betriebsr\u00e4tegesetz vom 4. Februar 1920", "subject_places": ["Germany", "Employee participation"], "subjects": ["Works councils", "Management"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11038946W 4 2012-07-28T16:21:08.664778 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:54:48.054581"}, "subject_places": ["Ohio"], "subjects": ["Aims and objectives", "Education, Higher", "Educational planning", "Higher Education", "Planning"], "latest_revision": 4, "key": "/works/OL11038946W", "title": "The challenge is change", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL413824A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-07-28T16:21:08.664778"}, "revision": 4}
+/type/work /works/OL11039289W 2 2010-01-19T01:28:36.774980 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:54:55.003246"}, "title": "Winning speeches in the contests of the Northern oratorical league", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T01:28:36.774980"}, "latest_revision": 2, "key": "/works/OL11039289W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4596409A"}}], "type": {"key": "/type/work"}, "subjects": ["Speeches, addresses"], "revision": 2}
+/type/work /works/OL11039940W 1 2009-12-11T03:54:55.003246 {"title": "Swanhild", "created": {"type": "/type/datetime", "value": "2009-12-11T03:54:55.003246"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:54:55.003246"}, "latest_revision": 1, "key": "/works/OL11039940W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4596823A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11040204W 2 2010-12-03T13:09:51.433401 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:09:51.433401"}, "title": "An old English hospital, S. Mary's, Chichester", "created": {"type": "/type/datetime", "value": "2009-12-11T03:55:02.225374"}, "subjects": ["S. Mary's Hospital, Chichester"], "latest_revision": 2, "key": "/works/OL11040204W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4597010A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11041982W 1 2009-12-11T03:55:14.600495 {"title": "Some experiments with giving a computer program the ability to learn to play a simple game by asking advice of ahuman teacher", "created": {"type": "/type/datetime", "value": "2009-12-11T03:55:14.600495"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:55:14.600495"}, "latest_revision": 1, "key": "/works/OL11041982W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4598191A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11042123W 3 2010-12-03T12:24:10.778325 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T12:24:10.778325"}, "title": "User fees for municipal services", "created": {"type": "/type/datetime", "value": "2009-12-11T03:55:18.901150"}, "subjects": ["Administrative Fees", "Bibliography", "Fees, Administrative", "Municipal services", "Rates"], "latest_revision": 3, "key": "/works/OL11042123W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4598299A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11042805W 3 2012-08-03T23:18:52.528913 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:55:18.901150"}, "subject_places": ["Ohio"], "subjects": ["Civil defense", "Emergency communication systems"], "latest_revision": 3, "key": "/works/OL11042805W", "title": "Communications services", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2123830A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-08-03T23:18:52.528913"}, "revision": 3}
+/type/work /works/OL11042861W 1 2009-12-11T03:55:18.901150 {"title": "Jar closures for the old and disabled", "created": {"type": "/type/datetime", "value": "2009-12-11T03:55:18.901150"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:55:18.901150"}, "latest_revision": 1, "key": "/works/OL11042861W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4598510A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11043255W 3 2010-03-16T22:09:11.157547 {"subtitle": "final report", "created": {"type": "/type/datetime", "value": "2009-12-11T03:55:25.539096"}, "title": "Review of the 1978 Drilling Program in the Beaufort Sea", "subject_places": ["Beaufort Sea"], "last_modified": {"type": "/type/datetime", "value": "2010-03-16T22:09:11.157547"}, "latest_revision": 3, "key": "/works/OL11043255W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4598697A"}}], "type": {"key": "/type/work"}, "subjects": ["Petroleum in submerged lands", "Offshore oil well drilling"], "revision": 3}
+/type/work /works/OL11043653W 2 2010-01-19T01:39:49.111749 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:55:25.539096"}, "title": "Proceedings of the Essex County Anti-slavery Convention, held at Danvers, October 24, 1838", "subject_places": ["United States", "Essex County (Mass.)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T01:39:49.111749"}, "latest_revision": 2, "key": "/works/OL11043653W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4598843A"}}], "subject_times": ["1838"], "type": {"key": "/type/work"}, "subjects": ["Controversial literature", "Politics and government", "Slavery"], "revision": 2}
+/type/work /works/OL11043799W 1 2009-12-11T03:55:25.539096 {"title": "Design constraints", "created": {"type": "/type/datetime", "value": "2009-12-11T03:55:25.539096"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:55:25.539096"}, "latest_revision": 1, "key": "/works/OL11043799W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4598959A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11043828W 2 2010-01-19T01:39:49.111749 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:55:25.539096"}, "title": "Disability parking system in Washington State", "subject_places": ["United States", "Washington (State)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T01:39:49.111749"}, "latest_revision": 2, "key": "/works/OL11043828W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4598974A"}}], "type": {"key": "/type/work"}, "subjects": ["States", "People with disabilities", "Transportation", "Automobile parking", "Law and legislation", "Government policy"], "revision": 2}
+/type/work /works/OL11043862W 3 2010-12-03T21:27:32.269198 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:55:25.539096"}, "subject_places": ["Canada"], "subjects": ["Canada", "Canada. Dept. of Finance", "Corporations", "Income tax", "Sales tax", "Taxation", "White paper, tax reform 1987"], "latest_revision": 3, "key": "/works/OL11043862W", "title": "Tax reform '87 : report", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4598985A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T21:27:32.269198"}, "revision": 3}
+/type/work /works/OL11043906W 2 2010-01-19T01:44:49.067029 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:55:25.539096"}, "title": "The war against women", "subject_places": ["Canada"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T01:44:49.067029"}, "latest_revision": 2, "key": "/works/OL11043906W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4599008A"}}], "type": {"key": "/type/work"}, "subjects": ["Sex discrimination against women", "Abused women", "Services for", "Women", "Crimes against", "Wife abuse"], "revision": 2}
+/type/work /works/OL11044125W 1 2009-12-11T03:55:33.234278 {"title": "Papers on the conference held in 1983 at Cincinnati", "created": {"type": "/type/datetime", "value": "2009-12-11T03:55:33.234278"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:55:33.234278"}, "latest_revision": 1, "key": "/works/OL11044125W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4599165A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11044867W 3 2010-12-03T12:24:41.752478 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T12:24:41.752478"}, "title": "Peace and security thesaurus", "created": {"type": "/type/datetime", "value": "2009-12-11T03:55:33.234278"}, "subjects": ["International Security", "Peace", "Security, International", "Subject headings"], "latest_revision": 3, "key": "/works/OL11044867W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4599605A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1104503W 9 2020-08-11T05:34:08.496730 {"last_modified": {"type": "/type/datetime", "value": "2020-08-11T05:34:08.496730"}, "title": "Patriarchal Palestine", "created": {"type": "/type/datetime", "value": "2009-12-09T20:30:30.848479"}, "covers": [1815746], "subject_places": ["Palestine"], "subjects": ["History", "Jews", "11.42 history of Old Testament times", "Biblical history"], "latest_revision": 9, "key": "/works/OL1104503W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL3234611A"}}], "subject_times": ["To B.C. 953", "To 953 B.C."], "type": {"key": "/type/work"}, "revision": 9}
+/type/work /works/OL11045040W 2 2010-01-19T01:44:49.067029 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:55:40.167843"}, "title": "Forest resources and industries in eastern Canada", "subject_places": ["Eastern Canada", "Nova Scotia"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T01:44:49.067029"}, "latest_revision": 2, "key": "/works/OL11045040W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4599695A"}}], "type": {"key": "/type/work"}, "subjects": ["Forests and forestry"], "revision": 2}
+/type/work /works/OL11045221W 2 2010-01-19T01:44:49.067029 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:55:40.167843"}, "title": "Absenteeism", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T01:44:49.067029"}, "latest_revision": 2, "key": "/works/OL11045221W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4599818A"}}], "type": {"key": "/type/work"}, "subjects": ["Absenteeism (Labor)"], "revision": 2}
+/type/work /works/OL11045272W 2 2010-01-19T01:44:49.067029 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:55:40.167843"}, "title": "Requirements for the entry of United States tourists into the OAS member states", "subject_places": ["Latin America"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T01:44:49.067029"}, "latest_revision": 2, "key": "/works/OL11045272W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4599832A"}}], "type": {"key": "/type/work"}, "subjects": ["Admission of nonimmigrants", "International travel regulations"], "revision": 2}
+/type/work /works/OL1104570W 9 2021-10-04T00:52:50.214767 {"covers": [310984], "key": "/works/OL1104570W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL113881A"}}], "title": "Lavengro", "subject_places": ["England"], "subjects": ["Fiction", "Romanies", "Tobacco", "Gypsies", "Fiction, historical, general", "England, fiction", "Fiction, biographical"], "type": {"key": "/type/work"}, "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2009-12-09T20:30:30.848479"}, "last_modified": {"type": "/type/datetime", "value": "2021-10-04T00:52:50.214767"}}
+/type/work /works/OL11045897W 1 2009-12-11T03:55:40.167843 {"title": "White and Tudor's leading cases in equity", "created": {"type": "/type/datetime", "value": "2009-12-11T03:55:40.167843"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:55:40.167843"}, "latest_revision": 1, "key": "/works/OL11045897W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4600196A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11046079W 2 2010-01-19T01:50:20.290720 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:55:46.942782"}, "title": "IBM symposium on introducing the computer into the humanities", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T01:50:20.290720"}, "latest_revision": 2, "key": "/works/OL11046079W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4600333A"}}], "type": {"key": "/type/work"}, "subjects": ["Congresses", "Data processing", "Education", "Humanities"], "revision": 2}
+/type/work /works/OL1104621W 2 2010-01-19T01:50:20.290720 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:30:30.848479"}, "title": "Personal recollections of the T'ai-p'ing rebellion, 1861-63", "subject_places": ["China"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T01:50:20.290720"}, "latest_revision": 2, "key": "/works/OL1104621W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL113885A"}}], "subject_times": ["Taiping Rebellion, 1850-1864"], "type": {"key": "/type/work"}, "subjects": ["History"], "revision": 2}
+/type/work /works/OL11046423W 2 2011-01-14T01:21:34.989795 {"subtitle": "A Follow-on Report of the Task Force on Program Review. Nielsen Report.", "title": "Environmental Quality Strategic Review", "created": {"type": "/type/datetime", "value": "2009-12-11T03:55:46.942782"}, "last_modified": {"type": "/type/datetime", "value": "2011-01-14T01:21:34.989795"}, "latest_revision": 2, "key": "/works/OL11046423W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4600539A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11046446W 6 2011-01-14T01:21:56.499267 {"subtitle": "a study team report to the Task Force on Program Review.", "last_modified": {"type": "/type/datetime", "value": "2011-01-14T01:21:56.499267"}, "title": "Real property", "created": {"type": "/type/datetime", "value": "2009-12-11T03:55:46.942782"}, "covers": [5439410], "subject_places": ["Canada"], "subjects": ["Administrative agencies", "Canada", "Canada. Dept. of National Defence", "Canada. Environment Canada", "Canada. Public Works Canada", "Canada. Transport Canada", "Executive departments", "Government property", "Grants-in-aid", "Management", "National Museum of Canada", "Sunset reviews of government programs"], "latest_revision": 6, "key": "/works/OL11046446W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4600539A"}}], "type": {"key": "/type/work"}, "revision": 6}
+/type/work /works/OL11046954W 1 2009-12-11T03:55:46.942782 {"title": "Nasima in school dressing-up game", "created": {"type": "/type/datetime", "value": "2009-12-11T03:55:46.942782"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:55:46.942782"}, "latest_revision": 1, "key": "/works/OL11046954W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4600848A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11047124W 1 2009-12-11T03:55:53.365449 {"title": "New facts on mental disorders", "created": {"type": "/type/datetime", "value": "2009-12-11T03:55:53.365449"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:55:53.365449"}, "latest_revision": 1, "key": "/works/OL11047124W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4600932A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11047607W 2 2010-01-19T01:55:43.731844 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:55:53.365449"}, "title": "Thank you for shaking my hand", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T01:55:43.731844"}, "latest_revision": 2, "key": "/works/OL11047607W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4601151A"}}], "type": {"key": "/type/work"}, "subjects": ["Older people", "Psychology", "Volunteer workers in long-term care facilities"], "revision": 2}
+/type/work /works/OL11047697W 4 2010-12-03T17:33:23.451740 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T17:33:23.451740"}, "title": "Historia Ethiopica de Heliodoro", "created": {"type": "/type/datetime", "value": "2009-12-11T03:55:53.365449"}, "subjects": ["Latin American literature", "Latin literature, Medieval and modern", "Medieval and modern Latin literature"], "latest_revision": 4, "key": "/works/OL11047697W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL229047A"}}], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL11048097W 2 2010-01-19T01:55:43.731844 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:56:00.895698"}, "title": "Allen's guide book and map to the gold fields of Kansas & Nebraska and Great Salt Lake City", "subject_places": ["West (U.S.)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T01:55:43.731844"}, "latest_revision": 2, "key": "/works/OL11048097W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4601505A"}}], "type": {"key": "/type/work"}, "subjects": ["Guidebooks"], "revision": 2}
+/type/work /works/OL11048102W 1 2009-12-11T03:56:00.895698 {"title": "Report of the design Committee", "created": {"type": "/type/datetime", "value": "2009-12-11T03:56:00.895698"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:56:00.895698"}, "latest_revision": 1, "key": "/works/OL11048102W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4601510A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1104847W 2 2010-01-19T01:55:43.731844 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:30:30.848479"}, "title": "H.M. Stanley", "subject_places": ["Congo (Brazzaville)", "Sub-Saharan Africa", "Central Africa", "Congo (Democratic Republic)", "Congo"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T01:55:43.731844"}, "latest_revision": 2, "key": "/works/OL1104847W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL113909A"}}], "type": {"key": "/type/work"}, "subjects": ["Description and travel", "Correspondence", "Explorers", "History"], "revision": 2}
+/type/work /works/OL110492W 4 2022-07-11T12:19:53.360046 {"subtitle": "the English social scene in the 17th century.", "key": "/works/OL110492W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1215110A"}}], "title": "The age of candlelight", "subject_places": ["Great Britain"], "subjects": ["Social life and customs", "Manners and customs"], "type": {"key": "/type/work"}, "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-10-17T23:46:20.827189"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-11T12:19:53.360046"}}
+/type/work /works/OL11049301W 3 2021-06-02T08:03:51.697264 {"title": "Agreement between the United States and Greece on social security", "subject_places": ["United States", "Greece"], "key": "/works/OL11049301W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL114762A"}}], "type": {"key": "/type/work"}, "subjects": ["Social security", "Law and legislation"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T03:56:08.783240"}, "last_modified": {"type": "/type/datetime", "value": "2021-06-02T08:03:51.697264"}}
+/type/work /works/OL11049331W 3 2010-12-03T13:25:14.367322 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:56:08.783240"}, "subject_places": ["United States"], "subjects": ["Asylums", "Psychiatric hospitals", "States", "United States", "United States. Health Care Financing Administration"], "latest_revision": 3, "key": "/works/OL11049331W", "title": "[State operated psychiatric hospitals]", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4602282A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:25:14.367322"}, "revision": 3}
+/type/work /works/OL11049360W 3 2010-12-03T14:12:36.195370 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:56:08.783240"}, "subject_places": ["United States"], "subjects": ["Birth control clinics", "Federal aid to birth control", "Finance", "International Planned Parenthood Federation", "Planned Parenthood Federation of America"], "latest_revision": 3, "key": "/works/OL11049360W", "title": "Federal funds for planned parenthood", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4602282A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:12:36.195370"}, "revision": 3}
+/type/work /works/OL11049372W 3 2010-12-03T14:00:49.181961 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:56:08.783240"}, "subject_places": ["United States"], "subjects": ["Finance", "Insurance, Pension trust guaranty", "Investments", "Pension Benefit Guaranty Corporation", "Pension trust guaranty Insurance", "Pension trusts"], "latest_revision": 3, "key": "/works/OL11049372W", "title": "Improving financial condition of the Pension Benefit Guaranty Corporation and insured pension plans", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4602282A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:00:49.181961"}, "revision": 3}
+/type/work /works/OL1105197W 1 2009-12-09T20:30:30.848479 {"title": "Dobsons Drie Bobbes", "created": {"type": "/type/datetime", "value": "2009-12-09T20:30:30.848479"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T20:30:30.848479"}, "latest_revision": 1, "key": "/works/OL1105197W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL113927A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1105220W 3 2010-08-14T14:22:54.664548 {"subtitle": "a fairy-tale of ancient Greece, retold after Apuleius", "last_modified": {"type": "/type/datetime", "value": "2010-08-14T14:22:54.664548"}, "latest_revision": 3, "key": "/works/OL1105220W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL113928A"}}], "created": {"type": "/type/datetime", "value": "2009-12-09T20:30:30.848479"}, "title": "Eros and Psyche", "subjects": ["Adaptations"], "subject_people": ["Apuleius"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11053630W 2 2010-01-19T03:13:20.691389 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:56:51.280818"}, "title": "The Persian Gulf", "subject_places": ["United States", "Persian Gulf Region"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T03:13:20.691389"}, "latest_revision": 2, "key": "/works/OL11053630W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4606319A"}}], "type": {"key": "/type/work"}, "subjects": ["Congresses", "Foreign relations", "Peace"], "revision": 2}
+/type/work /works/OL1105473W 3 2013-11-15T01:09:28.086032 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:30:41.797040"}, "subjects": ["Vedanta"], "subject_people": ["Vivekananda Swami (1863-1902)"], "key": "/works/OL1105473W", "title": "Swamiji and his message", "latest_revision": 3, "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL14603A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2013-11-15T01:09:28.086032"}, "revision": 3}
+/type/work /works/OL1105681W 3 2010-04-28T07:18:51.218399 {"title": "Exhibition of silver, embroidered, and curious bookbinding", "created": {"type": "/type/datetime", "value": "2009-12-09T20:30:41.797040"}, "covers": [5594085], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:18:51.218399"}, "latest_revision": 3, "key": "/works/OL1105681W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL113955A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11057770W 2 2010-01-19T05:28:16.358416 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:57:29.392479"}, "title": "Mr. Bayard, from the committee to whom was referred the bill ... entitled An Act for the Admission of Louisiana ... reported the same with the following amendments", "subject_places": ["Louisiana"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T05:28:16.358416"}, "latest_revision": 2, "key": "/works/OL11057770W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4610079A"}}], "type": {"key": "/type/work"}, "subjects": ["District courts", "Public prosecutors"], "revision": 2}
+/type/work /works/OL1105896W 6 2020-04-09T04:57:05.962299 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:30:41.797040"}, "subjects": ["American poetry"], "latest_revision": 6, "key": "/works/OL1105896W", "title": "The Vision of Sir Launfal and Other Poems", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL113959A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-04-09T04:57:05.962299"}, "covers": [2806086], "revision": 6}
+/type/work /works/OL110596W 4 2012-11-27T03:49:41.850196 {"last_modified": {"type": "/type/datetime", "value": "2012-11-27T03:49:41.850196"}, "title": "George Eliot in Derbyshire", "created": {"type": "/type/datetime", "value": "2009-10-17T23:46:20.827189"}, "subject_places": ["Derbyshire (England)", "England", "Derbyshire"], "subjects": ["Derbyshire (England)", "In literature", "Knowledge", "Women and literature", "History"], "subject_people": ["George Eliot (1819-1880)"], "key": "/works/OL110596W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1215485A"}}], "latest_revision": 4, "subject_times": ["19th century"], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL11059711W 4 2012-05-23T03:41:56.016493 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:57:48.254119"}, "subject_places": ["United States"], "subjects": ["Accounting", "Finance, Public", "Government travel", "Law and legislation", "Public Finance", "Standards"], "latest_revision": 4, "key": "/works/OL11059711W", "title": "Travel system requirements", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL63369A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-23T03:41:56.016493"}, "revision": 4}
+/type/work /works/OL1105992W 3 2010-04-28T07:18:51.218399 {"title": "De la famille linguistique pano", "created": {"type": "/type/datetime", "value": "2009-12-09T20:30:41.797040"}, "covers": [6149064], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:18:51.218399"}, "latest_revision": 3, "key": "/works/OL1105992W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL113964A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11061208W 1 2009-12-11T03:58:06.391229 {"title": "The poetical works of Gilbert Frankau, 1901-1920", "created": {"type": "/type/datetime", "value": "2009-12-11T03:58:06.391229"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:58:06.391229"}, "latest_revision": 1, "key": "/works/OL11061208W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4613089A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11061460W 1 2009-12-11T03:58:06.391229 {"title": "An analysis of social services costs in Hillingdon", "created": {"type": "/type/datetime", "value": "2009-12-11T03:58:06.391229"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:58:06.391229"}, "latest_revision": 1, "key": "/works/OL11061460W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4613252A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11062015W 1 2009-12-11T03:58:12.806674 {"title": "Timmakkana padaga\u1e37u", "created": {"type": "/type/datetime", "value": "2009-12-11T03:58:12.806674"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:58:12.806674"}, "latest_revision": 1, "key": "/works/OL11062015W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4613475A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11062750W 1 2009-12-11T03:58:12.806674 {"title": "Philosophy without metaphysics", "created": {"type": "/type/datetime", "value": "2009-12-11T03:58:12.806674"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:58:12.806674"}, "latest_revision": 1, "key": "/works/OL11062750W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4613895A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11063370W 2 2010-01-19T07:43:25.306001 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:58:18.737052"}, "title": "Your drivers exam & road test", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T07:43:25.306001"}, "latest_revision": 2, "key": "/works/OL11063370W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4614214A"}}], "type": {"key": "/type/work"}, "subjects": ["Automobiles", "Automobile drivers' tests", "Law and legislation", "Traffic regulations"], "revision": 2}
+/type/work /works/OL11063656W 2 2010-01-19T07:43:25.306001 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:58:18.737052"}, "title": "To Regulate Solicitation of Funds for Educational, Charitable, and Philanthropic Purposes, and for War Aid and War Charity", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T07:43:25.306001"}, "latest_revision": 2, "key": "/works/OL11063656W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4614329A"}}], "type": {"key": "/type/work"}, "subjects": ["Charity laws and legislation"], "revision": 2}
+/type/work /works/OL11064096W 3 2017-12-20T08:16:59.272594 {"last_modified": {"type": "/type/datetime", "value": "2017-12-20T08:16:59.272594"}, "title": "A Canadian study of smoking and health", "created": {"type": "/type/datetime", "value": "2009-12-11T03:58:24.494799"}, "subjects": ["Physiological effect", "Smoking", "Tobacco"], "latest_revision": 3, "key": "/works/OL11064096W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL866486A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11064579W 2 2010-01-19T07:43:25.306001 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:58:24.494799"}, "title": "Proceedings", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T07:43:25.306001"}, "latest_revision": 2, "key": "/works/OL11064579W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4614806A"}}], "type": {"key": "/type/work"}, "subjects": ["Botany", "Congresses"], "revision": 2}
+/type/work /works/OL11064759W 2 2010-01-19T08:12:52.048203 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:58:24.494799"}, "title": "Variability and inter-regional diversity in stream flow as a factor in Europe's hydroelectric resources", "subject_places": ["Europe"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T08:12:52.048203"}, "latest_revision": 2, "key": "/works/OL11064759W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4614862A"}}], "type": {"key": "/type/work"}, "subjects": ["Electricity", "Europe", "Power resources", "Water-power"], "revision": 2}
+/type/work /works/OL11064834W 2 2010-01-19T08:12:52.048203 {"title": "Johann Gottlieb Fichte", "created": {"type": "/type/datetime", "value": "2009-12-11T03:58:24.494799"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-19T08:12:52.048203"}, "latest_revision": 2, "key": "/works/OL11064834W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4614905A"}}], "subject_people": ["Johann Gottlieb Fichte (1762-1814)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11064902W 3 2012-05-29T21:46:01.970487 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:58:24.494799"}, "subject_places": ["United States"], "subjects": ["Law and legislation", "Veterans", "Medical care", "Employment", "Military pensions"], "latest_revision": 3, "key": "/works/OL11064902W", "title": "H.R. 241, H.R. 533, H.R. 761, H.R. 850, H.R. 966, and H.R. 1048", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL52262A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-29T21:46:01.970487"}, "revision": 3}
+/type/work /works/OL11065448W 2 2010-12-03T12:27:13.815226 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T12:27:13.815226"}, "title": "Regent Park (north) housing project", "created": {"type": "/type/datetime", "value": "2009-12-11T03:58:30.357339"}, "subjects": ["Toronto Regent Park Housing Project"], "latest_revision": 2, "key": "/works/OL11065448W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4615204A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11065559W 2 2010-01-19T08:12:52.048203 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:58:30.357339"}, "title": "English architecture through the ages", "subject_places": ["England"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T08:12:52.048203"}, "latest_revision": 2, "key": "/works/OL11065559W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4615260A"}}], "type": {"key": "/type/work"}, "subjects": ["Architecture", "Details"], "revision": 2}
+/type/work /works/OL11065740W 2 2010-01-19T08:12:52.048203 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:58:30.357339"}, "title": "Interactions between white spruce and shrubby alders at three boreal forest sites in Alaska", "subject_places": ["Alaska"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T08:12:52.048203"}, "latest_revision": 2, "key": "/works/OL11065740W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4615381A"}}], "type": {"key": "/type/work"}, "subjects": ["Soils", "Ecology", "White spruce", "Alder", "Nitrogen content", "Taiga ecology"], "revision": 2}
+/type/work /works/OL11066677W 1 2009-12-11T03:58:36.175167 {"title": "The Artificial engineer", "created": {"type": "/type/datetime", "value": "2009-12-11T03:58:36.175167"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:58:36.175167"}, "latest_revision": 1, "key": "/works/OL11066677W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4615827A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11066700W 1 2009-12-11T03:58:36.175167 {"title": "Higher state of consciousness and literary creativity", "created": {"type": "/type/datetime", "value": "2009-12-11T03:58:36.175167"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:58:36.175167"}, "latest_revision": 1, "key": "/works/OL11066700W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4615850A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11066725W 2 2010-01-19T08:43:08.111352 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:58:36.175167"}, "title": "Acceptance and implementation of instructional material center services", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T08:43:08.111352"}, "latest_revision": 2, "key": "/works/OL11066725W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4615870A"}}], "type": {"key": "/type/work"}, "subjects": ["Instructional materials centers", "Media programs (Education)", "Audio-visual education"], "revision": 2}
+/type/work /works/OL1106702W 5 2012-04-13T08:31:54.842652 {"last_modified": {"type": "/type/datetime", "value": "2012-04-13T08:31:54.842652"}, "latest_revision": 5, "key": "/works/OL1106702W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL114007A"}}], "created": {"type": "/type/datetime", "value": "2009-12-09T20:30:49.122481"}, "title": "The Jane Addams papers, 1860-1960", "subject_places": ["United States"], "subjects": ["Archives", "History", "Hull House Association", "Social Work", "Sources", "Women social reformers", "Social service"], "subject_people": ["Jane Addams (1860-1935)"], "type": {"key": "/type/work"}, "revision": 5}
+/type/work /works/OL1106776W 5 2010-08-17T16:12:03.403405 {"subtitle": "by Isaac Taylor Headland ...", "last_modified": {"type": "/type/datetime", "value": "2010-08-17T16:12:03.403405"}, "title": "Our little Chinese cousin", "created": {"type": "/type/datetime", "value": "2009-12-09T20:30:49.122481"}, "covers": [6263180], "subject_places": ["China"], "subjects": ["Children"], "latest_revision": 5, "key": "/works/OL1106776W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL114014A"}}], "type": {"key": "/type/work"}, "revision": 5}
+/type/work /works/OL11068033W 2 2010-01-19T09:14:58.948035 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:58:49.614473"}, "title": "Political anti-Semitism in England, 1918-1939", "subject_places": ["Great Britain"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T09:14:58.948035"}, "latest_revision": 2, "key": "/works/OL11068033W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4616622A"}}], "type": {"key": "/type/work"}, "subjects": ["Politics and government", "Antisemitism", "Jews"], "revision": 2}
+/type/work /works/OL11068297W 2 2010-01-19T09:14:58.948035 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:58:49.614473"}, "title": "Adventures in Americana, 1492-1897", "subject_places": ["United States", "America"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T09:14:58.948035"}, "latest_revision": 2, "key": "/works/OL11068297W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4616765A"}}], "type": {"key": "/type/work"}, "subjects": ["Bibliography", "Discovery and exploration", "Rare books", "Description and travel", "Frontier and pioneer life"], "revision": 2}
+/type/work /works/OL1106836W 2 2010-01-19T09:14:58.948035 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:30:49.122481"}, "title": "United States postage stamps, 1847-1869", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T09:14:58.948035"}, "latest_revision": 2, "key": "/works/OL1106836W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL114018A"}}], "type": {"key": "/type/work"}, "subjects": ["Postage-stamps"], "revision": 2}
+/type/work /works/OL11069058W 1 2009-12-11T03:58:55.520804 {"title": "Verleibt in Rio", "created": {"type": "/type/datetime", "value": "2009-12-11T03:58:55.520804"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:58:55.520804"}, "latest_revision": 1, "key": "/works/OL11069058W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4617062A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11069136W 2 2010-08-12T19:07:14.483262 {"title": "Cliffs of fall", "created": {"type": "/type/datetime", "value": "2009-12-11T03:58:55.520804"}, "last_modified": {"type": "/type/datetime", "value": "2010-08-12T19:07:14.483262"}, "latest_revision": 2, "key": "/works/OL11069136W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL24134A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11069815W 3 2010-12-04T02:19:59.228930 {"last_modified": {"type": "/type/datetime", "value": "2010-12-04T02:19:59.228930"}, "title": "Catalogue of Canadian keyboard music available on loan from the library of the Canadian Music Centre", "created": {"type": "/type/datetime", "value": "2009-12-11T03:58:55.520804"}, "subjects": ["Bibliography", "Canadian Music", "Catalogs", "Music, Canadian", "Organ music", "Piano music"], "latest_revision": 3, "key": "/works/OL11069815W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4617466A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11069953W 2 2022-01-24T06:12:59.265339 {"title": "A history of Spanish literature", "key": "/works/OL11069953W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL136074A"}}], "type": {"key": "/type/work"}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T03:58:55.520804"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-24T06:12:59.265339"}}
+/type/work /works/OL1107012W 1 2009-12-09T20:30:49.122481 {"title": "A little more nonsense", "created": {"type": "/type/datetime", "value": "2009-12-09T20:30:49.122481"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T20:30:49.122481"}, "latest_revision": 1, "key": "/works/OL1107012W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL114033A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11070160W 1 2009-12-11T03:59:03.051856 {"title": "Conscription and the conscience clause", "created": {"type": "/type/datetime", "value": "2009-12-11T03:59:03.051856"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:59:03.051856"}, "latest_revision": 1, "key": "/works/OL11070160W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4617623A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11070173W 1 2009-12-11T03:59:03.051856 {"title": "Polycon '82", "created": {"type": "/type/datetime", "value": "2009-12-11T03:59:03.051856"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:59:03.051856"}, "latest_revision": 1, "key": "/works/OL11070173W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4617632A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11070386W 2 2010-01-19T09:43:54.487144 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:59:03.051856"}, "title": "A landscape evaluation of the Coos Bay estuarine area, Oregon", "subject_places": ["Coos Bay", "Oregon"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T09:43:54.487144"}, "latest_revision": 2, "key": "/works/OL11070386W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4617770A"}}], "type": {"key": "/type/work"}, "subjects": ["Estuaries", "Estuarine area conservation", "Estuarine ecology"], "revision": 2}
+/type/work /works/OL11070483W 2 2010-01-19T09:43:54.487144 {"title": "Edward Douglas White, chief justice of the United States", "created": {"type": "/type/datetime", "value": "2009-12-11T03:59:03.051856"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-19T09:43:54.487144"}, "latest_revision": 2, "key": "/works/OL11070483W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4617819A"}}], "subject_people": ["Edward Douglass White (1845-1921)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11070573W 2 2010-01-19T09:43:54.487144 {"title": "Who is Jesus Christ for us today?", "created": {"type": "/type/datetime", "value": "2009-12-11T03:59:03.051856"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-19T09:43:54.487144"}, "latest_revision": 2, "key": "/works/OL11070573W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4617851A"}}], "subject_people": ["Jesus Christ"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11071247W 1 2009-12-11T03:59:16.994204 {"title": "The Pelican history of Greek literature", "created": {"type": "/type/datetime", "value": "2009-12-11T03:59:16.994204"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:59:16.994204"}, "latest_revision": 1, "key": "/works/OL11071247W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4618269A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1107130W 1 2009-12-09T20:30:49.122481 {"title": "Le moulin et l'hospice", "created": {"type": "/type/datetime", "value": "2009-12-09T20:30:49.122481"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T20:30:49.122481"}, "latest_revision": 1, "key": "/works/OL1107130W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL114035A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11071628W 1 2009-12-11T03:59:16.994204 {"title": "Dawson's score and other school stories", "created": {"type": "/type/datetime", "value": "2009-12-11T03:59:16.994204"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:59:16.994204"}, "latest_revision": 1, "key": "/works/OL11071628W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4618507A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11071726W 1 2009-12-11T03:59:16.994204 {"title": "Friends membership", "created": {"type": "/type/datetime", "value": "2009-12-11T03:59:16.994204"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:59:16.994204"}, "latest_revision": 1, "key": "/works/OL11071726W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4618554A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1107182W 12 2021-10-04T01:29:39.863861 {"subjects": ["Biblical Greek language", "Grammar", "Grec biblique", "Syntax", "Greek language, biblical, grammar"], "key": "/works/OL1107182W", "title": "A short syntax of New Testament Greek", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL114036A"}}], "type": {"key": "/type/work"}, "covers": [4657199], "latest_revision": 12, "revision": 12, "created": {"type": "/type/datetime", "value": "2009-12-09T20:30:49.122481"}, "last_modified": {"type": "/type/datetime", "value": "2021-10-04T01:29:39.863861"}}
+/type/work /works/OL11072073W 3 2010-12-03T17:29:16.522109 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T17:29:16.522109"}, "title": "Elastic arch bridges", "created": {"type": "/type/datetime", "value": "2009-12-11T03:59:24.781333"}, "subjects": ["Arched Bridges", "Bridges", "Bridges, Arched", "Design and construction"], "latest_revision": 3, "key": "/works/OL11072073W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4618793A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11072216W 1 2009-12-11T03:59:24.781333 {"title": "8088 microprocessor hardware and software development", "created": {"type": "/type/datetime", "value": "2009-12-11T03:59:24.781333"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:59:24.781333"}, "latest_revision": 1, "key": "/works/OL11072216W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4618903A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1107281W 2 2010-01-19T09:59:45.303046 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:30:49.122481"}, "title": "Prelecc\u0327o\u0303es filoso\u0301ficas", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T09:59:45.303046"}, "latest_revision": 2, "key": "/works/OL1107281W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL114044A"}}], "type": {"key": "/type/work"}, "subjects": ["Philosophy"], "revision": 2}
+/type/work /works/OL1107390W 3 2010-04-28T07:18:51.218399 {"title": "Along the way", "created": {"type": "/type/datetime", "value": "2009-12-09T20:30:53.964245"}, "covers": [5851796], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:18:51.218399"}, "latest_revision": 3, "key": "/works/OL1107390W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL114055A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11073913W 5 2020-12-16T17:30:13.525634 {"subject_places": ["United States"], "subjects": ["Automotive computers", "Automobile repair shops", "Access control", "Automobiles", "Maintenance and repair", "Information services", "Automobile industry and trade", "FTC Witnesses"], "key": "/works/OL11073913W", "title": "Right to repair", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4619737A"}}], "type": {"key": "/type/work"}, "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2009-12-11T03:59:29.673932"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-16T17:30:13.525634"}}
+/type/work /works/OL11074373W 5 2020-02-28T10:59:32.166568 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:59:33.692618"}, "subject_places": ["United States"], "subjects": ["Depression, Mental", "Diseases", "Mental illness", "Mental Depression", "Brain"], "latest_revision": 5, "key": "/works/OL11074373W", "title": "Mental illness and brain disease", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4619846A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-02-28T10:59:32.166568"}, "revision": 5}
+/type/work /works/OL11074391W 3 2010-12-03T14:33:06.492103 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:59:33.692618"}, "subject_places": ["United States"], "subjects": ["Health Insurance", "Health care reform", "Insurance, Health", "Medicaid", "Medically uninsured persons", "State Children's Health Insurance Program (U.S.)"], "latest_revision": 3, "key": "/works/OL11074391W", "title": "The uninsured and affordable health care coverage", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4619846A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:33:06.492103"}, "revision": 3}
+/type/work /works/OL11074411W 2 2010-01-19T10:05:42.666458 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:59:33.692618"}, "title": "H.R. 4528; H. Con. Res. 328; H. Con. Res. 257; S. Con. Res. 81; and H. Con. Res. 348", "subject_places": ["Burma", "China", "Iran"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T10:05:42.666458"}, "latest_revision": 2, "key": "/works/OL11074411W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4619850A"}}], "type": {"key": "/type/work"}, "subjects": ["Human rights", "Child soldiers", "Foreign study", "Bahais", "Finance"], "revision": 2}
+/type/work /works/OL11074862W 2 2011-10-19T15:44:59.646076 {"last_modified": {"type": "/type/datetime", "value": "2011-10-19T15:44:59.646076"}, "title": "Corpus agrimensorum romanorum", "created": {"type": "/type/datetime", "value": "2009-12-11T03:59:33.692618"}, "subjects": ["Latin prose", "Collections"], "latest_revision": 2, "key": "/works/OL11074862W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4619993A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11074899W 2 2010-01-19T10:05:42.666458 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:59:33.692618"}, "title": "Report of engineering and biological literature of the aquatic environment", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T10:05:42.666458"}, "latest_revision": 2, "key": "/works/OL11074899W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4620017A"}}], "type": {"key": "/type/work"}, "subjects": ["Pacific salmon", "Spawning", "Bibliography", "Effect of water quality on"], "revision": 2}
+/type/work /works/OL11074960W 3 2010-12-03T12:30:37.050514 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T12:30:37.050514"}, "title": "A nutrition status survey of non-institutionalized elderly", "created": {"type": "/type/datetime", "value": "2009-12-11T03:59:33.692618"}, "subjects": ["Aging", "Nutrition", "Nutritional aspects", "Nutritional aspects of Aging", "Older people"], "latest_revision": 3, "key": "/works/OL11074960W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4620057A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11075134W 2 2010-01-19T10:05:42.666458 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:59:36.584519"}, "title": "1974 evaluations of some pesticide residues in food", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T10:05:42.666458"}, "latest_revision": 2, "key": "/works/OL11075134W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4620102A"}}], "type": {"key": "/type/work"}, "subjects": ["Congresses", "Food contamination", "Pesticide residues in food"], "revision": 2}
+/type/work /works/OL11075236W 4 2012-05-09T14:14:45.089383 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:59:36.584519"}, "subject_places": ["United States"], "subjects": ["Community health services", "National Health Service Corps (U.S.)", "Rural health services"], "latest_revision": 4, "key": "/works/OL11075236W", "title": "Community health center/National Health Service Corps", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL43207A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-09T14:14:45.089383"}, "revision": 4}
+/type/work /works/OL11075281W 4 2020-02-28T08:34:33.373474 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:59:36.584519"}, "subject_places": ["United States"], "subjects": ["Mine safety", "Law and legislation", "Health and hygiene", "Miners"], "latest_revision": 4, "key": "/works/OL11075281W", "title": "Mine safety and health", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4620149A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-02-28T08:34:33.373474"}, "revision": 4}
+/type/work /works/OL11075462W 2 2010-01-19T10:11:58.664696 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:59:36.584519"}, "title": "Chemical and biological defense", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T10:11:58.664696"}, "latest_revision": 2, "key": "/works/OL11075462W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4620162A"}}], "type": {"key": "/type/work"}, "subjects": ["Safety measures", "Armed Forces", "Medical care", "Biological warfare", "Chemical warfare"], "revision": 2}
+/type/work /works/OL11075983W 2 2010-01-19T10:11:58.664696 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:59:36.584519"}, "title": "An overview, Columbia River Gorge National Scenic Area Management Plan", "subject_places": ["Columbia River Gorge National Scenic Area (Or. and Wash.)", "Columbia River Gorge (Or. and Wash.)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T10:11:58.664696"}, "latest_revision": 2, "key": "/works/OL11075983W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4620222A"}}], "type": {"key": "/type/work"}, "subjects": ["Land use", "Planning", "Conservation of natural resources"], "revision": 2}
+/type/work /works/OL11076227W 1 2009-12-11T03:59:42.624239 {"title": "Sadia automatic electric water heaters", "created": {"type": "/type/datetime", "value": "2009-12-11T03:59:42.624239"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:59:42.624239"}, "latest_revision": 1, "key": "/works/OL11076227W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4620352A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11076388W 4 2012-05-19T11:24:40.424988 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:59:42.624239"}, "subject_places": ["United States"], "subjects": ["Armed Forces", "Evaluation", "Procurement", "SPS (Computer file)", "United States", "United States. Dept. of Defense"], "latest_revision": 4, "key": "/works/OL11076388W", "title": "The Standard Procurement System (SPS)", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4620162A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-19T11:24:40.424988"}, "revision": 4}
+/type/work /works/OL11076799W 2 2010-01-19T10:17:41.039354 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:59:42.624239"}, "title": "Correspondencia que ha mediado entre la Legacion extraordinaria de Mexico y el Departamento de estado de los Estados-Unidos", "subject_places": ["United States", "Mexico", "Texas"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T10:17:41.039354"}, "latest_revision": 2, "key": "/works/OL11076799W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4620650A"}}], "subject_times": ["Revolution, 1835-1836"], "type": {"key": "/type/work"}, "subjects": ["Foreign relations", "History"], "revision": 2}
+/type/work /works/OL11076873W 2 2010-01-19T10:17:41.039354 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:59:42.624239"}, "title": "Framing the choice to sue", "subject_places": ["Great Britain"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T10:17:41.039354"}, "latest_revision": 2, "key": "/works/OL11076873W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4620687A"}}], "type": {"key": "/type/work"}, "subjects": ["Psychology", "Asbestos", "Law and legislation", "Actions and defenses", "Asbestos industry", "Decision making", "Victims of crimes", "Products liability"], "revision": 2}
+/type/work /works/OL11076970W 7 2022-12-15T08:19:44.654470 {"title": "Magnolias without moonlight", "subjects": ["Politics and government", "Su\u0098dstaaten", "Soziale Situation", "Social conditions", "Social psychology", "History", "S\u00fcdstaaten", "Confederate states of america, politics and government", "Southern states, social conditions", "Southern states, history", "Southern states, politics and government", "Psychologie sociale", "Conditions sociales", "Histoire", "Politique et gouvernement"], "key": "/works/OL11076970W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4620743A"}}], "type": {"key": "/type/work"}, "covers": [9700649], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2009-12-11T03:59:42.624239"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-15T08:19:44.654470"}}
+/type/work /works/OL11077114W 2 2010-01-19T10:17:41.039354 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:59:49.455996"}, "title": "Mochizuki Bukky\u014d Daijiten", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T10:17:41.039354"}, "latest_revision": 2, "key": "/works/OL11077114W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4620819A"}}], "type": {"key": "/type/work"}, "subjects": ["Buddhism", "Dictionaries and encyclopedias"], "revision": 2}
+/type/work /works/OL11077375W 3 2010-12-04T07:28:36.948957 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:59:49.455996"}, "subjects": ["Catalogs", "Gemini G.E.L. (Firm)"], "subject_people": ["Richard Serra"], "key": "/works/OL11077375W", "title": "Richard Serra at Gemini, 1993-1996", "latest_revision": 3, "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4620986A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-04T07:28:36.948957"}, "revision": 3}
+/type/work /works/OL1107740W 2 2010-01-19T10:17:41.039354 {"title": "Lettere a Vittorio Enzo Alfieri (1925-1952)", "created": {"type": "/type/datetime", "value": "2009-12-09T20:30:53.964245"}, "subject_places": ["Italy"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T10:17:41.039354"}, "latest_revision": 2, "key": "/works/OL1107740W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL114089A"}}], "subject_people": ["Benedetto Croce (1866-1952)", "Vittorio Enzo Alfieri (1906-)"], "type": {"key": "/type/work"}, "subjects": ["Correspondence", "Philosophers"], "revision": 2}
+/type/work /works/OL1107747W 3 2010-08-13T02:58:57.510501 {"subtitle": "pagine sulla guerra.", "last_modified": {"type": "/type/datetime", "value": "2010-08-13T02:58:57.510501"}, "title": "L' Italia del 1914 al 1918", "created": {"type": "/type/datetime", "value": "2009-12-09T20:30:53.964245"}, "subject_places": ["Italy"], "subjects": ["World War, 1914-1918", "History"], "latest_revision": 3, "key": "/works/OL1107747W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL114089A"}}], "subject_times": ["1914-1945"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11077633W 3 2010-12-03T16:09:43.291183 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:59:49.455996"}, "subject_places": ["United States"], "subjects": ["Industrial promotion", "Industries", "Regional planning", "Social aspects", "Social aspects of Industries"], "latest_revision": 3, "key": "/works/OL11077633W", "title": "The community context of economic conversion", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4621127A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T16:09:43.291183"}, "revision": 3}
+/type/work /works/OL11078082W 1 2009-12-11T03:59:55.817679 {"title": "Auditing final: questions and answer guide", "created": {"type": "/type/datetime", "value": "2009-12-11T03:59:55.817679"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:59:55.817679"}, "latest_revision": 1, "key": "/works/OL11078082W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4621348A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11078226W 1 2009-12-11T03:59:55.817679 {"title": "Katalognoegle", "created": {"type": "/type/datetime", "value": "2009-12-11T03:59:55.817679"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T03:59:55.817679"}, "latest_revision": 1, "key": "/works/OL11078226W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4621428A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11078373W 2 2010-01-19T10:23:00.298158 {"created": {"type": "/type/datetime", "value": "2009-12-11T03:59:55.817679"}, "title": "Allgemeine Markttheorie", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T10:23:00.298158"}, "latest_revision": 2, "key": "/works/OL11078373W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4621488A"}}], "type": {"key": "/type/work"}, "subjects": ["Marketing"], "revision": 2}
+/type/work /works/OL11078864W 3 2010-04-28T07:18:51.218399 {"title": "Actes del quart Col\u00b7loqui Internacional de Llengua i Literatura Catalanes, Basilea, 22-27 de mar\u00e7 de 1976", "created": {"type": "/type/datetime", "value": "2009-12-11T03:59:55.817679"}, "covers": [5292219], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:18:51.218399"}, "latest_revision": 3, "key": "/works/OL11078864W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4621760A"}}], "subjects": ["Congresses", "Catalan philology"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11079097W 1 2009-12-11T04:00:02.989583 {"title": "Di\u00f3s va con ellos", "created": {"type": "/type/datetime", "value": "2009-12-11T04:00:02.989583"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:00:02.989583"}, "latest_revision": 1, "key": "/works/OL11079097W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4621893A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11079221W 2 2010-01-19T10:28:19.436706 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:00:02.989583"}, "title": "Belgian textiles", "subject_places": ["Belgium"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T10:28:19.436706"}, "latest_revision": 2, "key": "/works/OL11079221W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4621963A"}}], "type": {"key": "/type/work"}, "subjects": ["Textile industry"], "revision": 2}
+/type/work /works/OL11079308W 3 2022-03-04T08:23:05.560684 {"title": "Rights of way", "subjects": ["English law: energy & natural resources law", "Law for the lay person", "Walking, hiking, trekking", "Right of way"], "key": "/works/OL11079308W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4622021A"}}, {"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2797265A"}}, {"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL725575A"}}], "type": {"key": "/type/work"}, "covers": [12652114], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T04:00:02.989583"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-04T08:23:05.560684"}}
+/type/work /works/OL11080145W 2 2022-03-01T11:03:37.943166 {"title": "A primer of experimental psychology", "key": "/works/OL11080145W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4622497A"}}], "type": {"key": "/type/work"}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T04:00:09.176511"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-01T11:03:37.943166"}}
+/type/work /works/OL11080308W 5 2021-12-29T02:49:51.470457 {"subjects": ["Child rearing", "Children", "Health and hygiene", "Child psychology", "Child development"], "key": "/works/OL11080308W", "title": "Child care and training", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4622563A"}}], "type": {"key": "/type/work"}, "covers": [5518661], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2009-12-11T04:00:09.176511"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-29T02:49:51.470457"}}
+/type/work /works/OL11080601W 1 2009-12-11T04:00:09.176511 {"title": "Religion and theology", "created": {"type": "/type/datetime", "value": "2009-12-11T04:00:09.176511"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:00:09.176511"}, "latest_revision": 1, "key": "/works/OL11080601W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4622710A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11080711W 1 2009-12-11T04:00:09.176511 {"title": "Stalking the wild pendulum", "created": {"type": "/type/datetime", "value": "2009-12-11T04:00:09.176511"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:00:09.176511"}, "latest_revision": 1, "key": "/works/OL11080711W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4622782A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11081671W 2 2010-01-19T10:33:27.501955 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:00:15.747392"}, "title": "Oxford, a 19th century view", "subject_places": ["Oxford (Ohio)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T10:33:27.501955"}, "latest_revision": 2, "key": "/works/OL11081671W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4623338A"}}], "type": {"key": "/type/work"}, "subjects": ["Exhibitions", "Photography", "Painting", "Description and travel", "Pictorial works", "History"], "revision": 2}
+/type/work /works/OL11082572W 2 2010-01-19T10:39:05.597367 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:00:23.030810"}, "title": "Sharing our diversity", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T10:39:05.597367"}, "latest_revision": 2, "key": "/works/OL11082572W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4623871A"}}], "type": {"key": "/type/work"}, "subjects": ["Study and teaching (Elementary)", "Chinese Americans", "Minorities", "Study and teaching", "Social sciences"], "revision": 2}
+/type/work /works/OL11082725W 2 2010-01-19T10:39:05.597367 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:00:23.030810"}, "title": "It's up to you", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T10:39:05.597367"}, "latest_revision": 2, "key": "/works/OL11082725W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4623978A"}}], "type": {"key": "/type/work"}, "subjects": ["Urban transportation"], "revision": 2}
+/type/work /works/OL1108282W 3 2019-05-14T02:10:59.093979 {"last_modified": {"type": "/type/datetime", "value": "2019-05-14T02:10:59.093979"}, "title": "Tacitus' Germania", "created": {"type": "/type/datetime", "value": "2009-12-09T20:30:53.964245"}, "subjects": ["Latin language materials"], "latest_revision": 3, "key": "/works/OL1108282W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4274775A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11083416W 3 2011-06-10T01:01:01.009647 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:00:27.469479"}, "subject_places": ["United States"], "subjects": ["Clerks", "Armies", "Officials and employees"], "latest_revision": 3, "key": "/works/OL11083416W", "title": "Additional clerks for War Department. Letter from the Secretary of War, transmitting recommendations relative to clerical force of the War Department", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL184870A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2011-06-10T01:01:01.009647"}, "revision": 3}
+/type/work /works/OL11083535W 4 2011-06-10T01:01:01.009647 {"last_modified": {"type": "/type/datetime", "value": "2011-06-10T01:01:01.009647"}, "title": "Amending section 4833, Revised Statutes", "created": {"type": "/type/datetime", "value": "2009-12-11T04:00:27.469479"}, "subjects": ["National Home for Disabled Volunteer Soldiers", "People with disabilities", "Statutes"], "latest_revision": 4, "key": "/works/OL11083535W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL184870A"}}], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL11083789W 3 2011-11-10T18:59:54.330386 {"last_modified": {"type": "/type/datetime", "value": "2011-11-10T18:59:54.330386"}, "title": "Badge of the Regular Army and Navy Union", "created": {"type": "/type/datetime", "value": "2009-12-11T04:00:27.469479"}, "subjects": ["Armies", "Uniforms", "Officers", "Navies"], "latest_revision": 3, "key": "/works/OL11083789W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL184870A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11084025W 4 2011-11-10T19:43:56.783082 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:00:27.469479"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 4, "key": "/works/OL11084025W", "title": "Charles A. Coulson", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL184870A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2011-11-10T19:43:56.783082"}, "revision": 4}
+/type/work /works/OL11084263W 4 2011-06-10T01:01:01.009647 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:00:28.558717"}, "subject_places": ["Canal Zone"], "subjects": ["Airports", "United States", "United States. Army. Air Corps"], "latest_revision": 4, "key": "/works/OL11084263W", "title": "Construction or purchase of one heavy seagoing Air Corps retriever for War Department", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL184870A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2011-06-10T01:01:01.009647"}, "revision": 4}
+/type/work /works/OL11084491W 4 2011-11-10T00:32:50.665074 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:00:28.558717"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 4, "key": "/works/OL11084491W", "title": "Edward S. Farrow", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL184870A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2011-11-10T00:32:50.665074"}, "revision": 4}
+/type/work /works/OL11085578W 4 2011-11-10T06:17:40.541957 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:00:29.553954"}, "subject_places": ["Virginia"], "subjects": ["Governmental investigations", "National Home for Disabled Volunteer Soldiers"], "latest_revision": 4, "key": "/works/OL11085578W", "title": "Joseph S. Smith", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL184870A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2011-11-10T06:17:40.541957"}, "revision": 4}
+/type/work /works/OL11086374W 3 2011-11-10T19:51:13.129427 {"last_modified": {"type": "/type/datetime", "value": "2011-11-10T19:51:13.129427"}, "title": "Proof of loyalty for bounty", "created": {"type": "/type/datetime", "value": "2009-12-11T04:00:30.648533"}, "subjects": ["Military pensions"], "latest_revision": 3, "key": "/works/OL11086374W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL184870A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11087130W 3 2011-11-10T18:56:48.845567 {"last_modified": {"type": "/type/datetime", "value": "2011-11-10T18:56:48.845567"}, "title": "To authorize credit in disbursing officers' accounts covering shipment of privately owned automobiles from October 12, 1927, to October 10, 1929", "created": {"type": "/type/datetime", "value": "2009-12-11T04:00:31.747235"}, "subjects": ["Soldiers", "Automobile industry and trade", "Freight and freightage"], "latest_revision": 3, "key": "/works/OL11087130W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL184870A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11087282W 4 2011-11-10T20:08:26.951133 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:00:31.747235"}, "subject_places": ["United States"], "subjects": ["Budget", "United States Military Academy"], "latest_revision": 4, "key": "/works/OL11087282W", "title": "United States Military Academy, West Point. Letter from the Secretary of War, transmitting estimates, from the Superintendent of the United States Military Academy, of appropriations for the support of the Academy for the fiscal year ending June 30, 1887", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL184870A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2011-11-10T20:08:26.951133"}, "revision": 4}
+/type/work /works/OL1108756W 2 2010-01-19T11:06:38.449198 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:31:01.087910"}, "title": "Gentium salutis reparator", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T11:06:38.449198"}, "latest_revision": 2, "key": "/works/OL1108756W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL114133A"}}], "type": {"key": "/type/work"}, "subjects": ["Pansophy", "Peace"], "revision": 2}
+/type/work /works/OL11087649W 4 2011-11-10T19:54:23.995197 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:00:31.747235"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 4, "key": "/works/OL11087649W", "title": "George A. Miller", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL184870A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2011-11-10T19:54:23.995197"}, "revision": 4}
+/type/work /works/OL11087749W 4 2011-06-10T01:01:01.009647 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:00:31.747235"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 4, "key": "/works/OL11087749W", "title": "Jonas A. Champney and others", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL184870A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2011-06-10T01:01:01.009647"}, "revision": 4}
+/type/work /works/OL1108778W 3 2010-08-13T12:13:18.728736 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:31:01.087910"}, "subjects": ["Natural history", "Juvenile literature", "Latin language", "Picture books for children", "Readers"], "subtitle": "Joh. Amos Comenius's Visible world, or, A nomenclature, and pictures of all the chief things that are in the world, and of men's employments therein ...", "key": "/works/OL1108778W", "title": "Joh. Amos Comenii Orbis sensualium pictus, hoc est, Omnium principalium in mundo rerum, et in vita actionum, pictura & nomenclatura", "latest_revision": 3, "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL114133A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-08-13T12:13:18.728736"}, "revision": 3}
+/type/work /works/OL11087894W 3 2011-06-10T01:01:01.009647 {"last_modified": {"type": "/type/datetime", "value": "2011-06-10T01:01:01.009647"}, "title": "To grant rights-of-way", "created": {"type": "/type/datetime", "value": "2009-12-11T04:00:31.747235"}, "subjects": ["Right of way", "Military bases", "Railroads"], "latest_revision": 3, "key": "/works/OL11087894W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL184870A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11087959W 4 2011-11-10T19:03:15.857371 {"last_modified": {"type": "/type/datetime", "value": "2011-11-10T19:03:15.857371"}, "title": "Army Appropriation Bill, 1920", "created": {"type": "/type/datetime", "value": "2009-12-11T04:00:31.747235"}, "subjects": ["Appropriations and expenditures, 1920", "United States", "United States. Army"], "latest_revision": 4, "key": "/works/OL11087959W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL184870A"}}], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL11088115W 2 2010-01-19T11:06:38.449198 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:00:39.203560"}, "title": "Seiiki Bunka Kenky\u016b", "subject_places": ["Central Asia"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T11:06:38.449198"}, "latest_revision": 2, "key": "/works/OL11088115W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4624513A"}}], "type": {"key": "/type/work"}, "subjects": ["Civilization"], "revision": 2}
+/type/work /works/OL11088503W 2 2010-01-19T11:11:50.279792 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:00:39.203560"}, "title": "Incontri con i contemporanei", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T11:11:50.279792"}, "latest_revision": 2, "key": "/works/OL11088503W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4624775A"}}], "subject_times": ["20th century"], "type": {"key": "/type/work"}, "subjects": ["Italian literature", "Bio-bibliography"], "revision": 2}
+/type/work /works/OL11088530W 2 2010-01-19T11:11:50.279792 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:00:39.203560"}, "title": "Mars sample handling protocol workshop series", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T11:11:50.279792"}, "latest_revision": 2, "key": "/works/OL11088530W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4624781A"}}], "type": {"key": "/type/work"}, "subjects": ["Congresses", "Mars surface samples", "Mars sample return missions", "Planetary protection", "Conferences", "Testing", "Biomarkers", "Contamination", "Microbial contamination", "Decontamination", "Sampling", "Planetary quarantine"], "revision": 2}
+/type/work /works/OL1108865W 3 2020-08-13T17:26:21.065844 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:31:01.087910"}, "subjects": ["Education", "Teaching", "Learning and scholarship", "Early works to 1800"], "latest_revision": 3, "key": "/works/OL1108865W", "title": "The great didactic of John Amos Comenius", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL114133A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-08-13T17:26:21.065844"}, "covers": [6334050], "revision": 3}
+/type/work /works/OL11088839W 2 2010-01-19T11:11:50.279792 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:00:39.203560"}, "title": "Anatomy and allied sciences for lawyers", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T11:11:50.279792"}, "latest_revision": 2, "key": "/works/OL11088839W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4625001A"}}], "type": {"key": "/type/work"}, "subjects": ["Medical jurisprudence", "Human anatomy"], "revision": 2}
+/type/work /works/OL11089068W 3 2010-12-03T14:40:48.203288 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:40:48.203288"}, "title": "The Board of Veterans' Appeals and Appeals Management Center", "created": {"type": "/type/datetime", "value": "2009-12-11T04:00:45.048365"}, "subjects": ["Management", "United States", "United States. Board of Veterans Appeals"], "latest_revision": 3, "key": "/works/OL11089068W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4625119A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11089118W 1 2009-12-11T04:00:45.048365 {"title": "Gleanings", "created": {"type": "/type/datetime", "value": "2009-12-11T04:00:45.048365"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:00:45.048365"}, "latest_revision": 1, "key": "/works/OL11089118W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4625134A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11089325W 5 2020-02-28T09:27:18.038091 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:00:45.048365"}, "subject_places": ["United States"], "subjects": ["Hurricane protection", "Government policy", "Risk assessment", "Natural disasters", "Flood damage prevention", "Evaluation", "Flood control"], "latest_revision": 5, "key": "/works/OL11089325W", "title": "Reducing hurricane and flood risk in the nation", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4620218A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-02-28T09:27:18.038091"}, "revision": 5}
+/type/work /works/OL11089458W 2 2010-01-19T11:11:50.279792 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:00:45.048365"}, "title": "Assessment of deaf-blind children", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T11:11:50.279792"}, "latest_revision": 2, "key": "/works/OL11089458W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4625358A"}}], "type": {"key": "/type/work"}, "subjects": ["Deafblind people", "Psychological testing", "Ability testing", "Children with disabilities"], "revision": 2}
+/type/work /works/OL11089561W 5 2020-12-20T13:59:25.301960 {"subject_places": ["United States"], "subjects": ["Cost control", "Cost of Medical care", "Federal Employees Health Benefits Program (U.S.)", "Insurance, Government employees' health", "Medical care, Cost of", "Premiums", "Government employees' health insurance premiums"], "key": "/works/OL11089561W", "title": "Up, up, and away!", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4624032A"}}], "type": {"key": "/type/work"}, "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2009-12-11T04:00:45.048365"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-20T13:59:25.301960"}}
+/type/work /works/OL11090050W 1 2009-12-11T04:00:50.639744 {"title": "Government of modern Britain", "created": {"type": "/type/datetime", "value": "2009-12-11T04:00:50.639744"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:00:50.639744"}, "latest_revision": 1, "key": "/works/OL11090050W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4625590A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11090335W 3 2012-05-17T17:08:08.925771 {"last_modified": {"type": "/type/datetime", "value": "2012-05-17T17:08:08.925771"}, "title": "Report prepared by Gen. George W. Davis on the general staff bill. Letter from the Secretary of War, to the Committee on Military Affairs transmitting a copy of a report prepared by Gen. George W. Davis on subjects covered by the bill now before said committee \"To increase the efficiency of the Army\" and frequently referred to as \"the general staff bill.\"", "created": {"type": "/type/datetime", "value": "2009-12-11T04:00:50.639744"}, "subjects": ["Soldiers", "Armed Forces", "Officers", "Armies"], "latest_revision": 3, "key": "/works/OL11090335W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL18435A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11090524W 2 2010-01-19T11:17:12.975067 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:00:50.639744"}, "title": "Climatology of the United States", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T11:17:12.975067"}, "latest_revision": 2, "key": "/works/OL11090524W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4625724A"}}], "type": {"key": "/type/work"}, "subjects": ["Climate", "Meteorology"], "revision": 2}
+/type/work /works/OL11090561W 1 2009-12-11T04:00:50.639744 {"title": "Sociology in medicine", "created": {"type": "/type/datetime", "value": "2009-12-11T04:00:50.639744"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:00:50.639744"}, "latest_revision": 1, "key": "/works/OL11090561W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4625758A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL110908W 4 2020-11-06T13:21:16.286060 {"created": {"type": "/type/datetime", "value": "2009-10-17T23:46:20.827189"}, "subjects": ["Japanese Poets", "Biography", "Japanese Authors"], "subtitle": "Sakka no kyogai (Jinbun sosho)", "key": "/works/OL110908W", "title": "Hori Tatsuo", "latest_revision": 4, "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1216398A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-11-06T13:21:16.286060"}, "revision": 4}
+/type/work /works/OL11091042W 1 2009-12-11T04:00:55.854887 {"title": "Royal Commission on Local Government", "created": {"type": "/type/datetime", "value": "2009-12-11T04:00:55.854887"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:00:55.854887"}, "latest_revision": 1, "key": "/works/OL11091042W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4626042A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11091083W 3 2010-12-03T12:34:25.849088 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T12:34:25.849088"}, "title": "Implementing competency-based assessment of prior learning", "created": {"type": "/type/datetime", "value": "2009-12-11T04:00:55.854887"}, "subjects": ["Education, Higher", "Educational innovations", "Experimental methods", "Higher Education"], "latest_revision": 3, "key": "/works/OL11091083W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4626074A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1109130W 5 2010-10-13T23:56:38.245240 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:31:01.087910"}, "subtitle": "A poem", "key": "/works/OL1109130W", "title": "As it was in the beginning", "latest_revision": 5, "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2852525A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-10-13T23:56:38.245240"}, "covers": [5638508], "revision": 5}
+/type/work /works/OL11091663W 2 2010-01-19T11:23:15.973598 {"title": "A funeral address, at the interment of Atherton Thayer, Esq. delivered at Braintree, July 4, 1798", "created": {"type": "/type/datetime", "value": "2009-12-11T04:00:55.854887"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-19T11:23:15.973598"}, "latest_revision": 2, "key": "/works/OL11091663W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4626266A"}}], "subject_people": ["Atherton Thayer (d. 1798)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11091906W 3 2010-12-03T12:38:49.603113 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:00:55.854887"}, "subject_places": ["Pennsylvania"], "subjects": ["Finance, Public", "Public Finance"], "latest_revision": 3, "key": "/works/OL11091906W", "title": "(Appendix.) Report of the Register-General of the state of the finances of Pennsylvania, for the year M,DCC,XCVII", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4626359A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T12:38:49.603113"}, "revision": 3}
+/type/work /works/OL11091910W 3 2010-12-03T12:39:13.381439 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:00:55.854887"}, "subject_places": ["Pennsylvania"], "subjects": ["Finance, Public", "Public Finance"], "latest_revision": 3, "key": "/works/OL11091910W", "title": "Report of the register-general of the state of the finances of Pennsylvania, for the year M,DCC,XCV", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4626359A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T12:39:13.381439"}, "revision": 3}
+/type/work /works/OL11092103W 2 2020-12-23T13:23:55.321670 {"title": "Critical budget issues affecting the 2010 census, part 2", "key": "/works/OL11092103W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4626437A"}}], "type": {"key": "/type/work"}, "subjects": ["Census, 2010", "Costs", "Planning"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T04:01:01.621352"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-23T13:23:55.321670"}}
+/type/work /works/OL11092403W 2 2010-01-19T11:23:15.973598 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:01:01.621352"}, "title": "The medium and the telephone", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T11:23:15.973598"}, "latest_revision": 2, "key": "/works/OL11092403W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4626558A"}}], "type": {"key": "/type/work"}, "subjects": ["Telecommunication"], "revision": 2}
+/type/work /works/OL11092487W 1 2009-12-11T04:01:01.621352 {"title": "Decentralization and self-government in Russia, 1830-1870", "created": {"type": "/type/datetime", "value": "2009-12-11T04:01:01.621352"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:01:01.621352"}, "latest_revision": 1, "key": "/works/OL11092487W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4626613A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11092638W 1 2009-12-11T04:01:01.621352 {"title": "The American almanac. For the year of Christian account 1760", "created": {"type": "/type/datetime", "value": "2009-12-11T04:01:01.621352"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:01:01.621352"}, "latest_revision": 1, "key": "/works/OL11092638W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4626690A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11093043W 2 2010-08-11T03:07:08.461770 {"subtitle": "hearing before the Subcommittee on Domestic Policy of the Committee on Oversight and Government Reform, House of Representatives, One Hundred Tenth Congress, second session, March 13, 2008.", "last_modified": {"type": "/type/datetime", "value": "2010-08-11T03:07:08.461770"}, "latest_revision": 2, "key": "/works/OL11093043W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4626905A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T04:01:06.994965"}, "title": "Is USDA accounting for costs to farmers caused by contamination from genetically engineered plants?", "subject_places": ["United States"], "subjects": ["Seed adulteration and inspection", "Biotechnology", "Transgenic plants", "Seed crops", "Government policy"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11093355W 3 2010-12-03T12:34:52.619043 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T12:34:52.619043"}, "title": "An address to the brethren of the Morning Star Lodge", "created": {"type": "/type/datetime", "value": "2009-12-11T04:01:06.994965"}, "subjects": ["Addresses, essays, lectures", "Freemasons"], "latest_revision": 3, "key": "/works/OL11093355W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4627056A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11093467W 3 2010-12-03T13:33:26.493472 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:01:06.994965"}, "subjects": ["English Sermons", "Funeral sermons", "Sermons, English"], "latest_revision": 3, "key": "/works/OL11093467W", "title": "The mourners companion, or, Funeral discourses on several texts", "subject_times": ["17th century"], "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4627083A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:33:26.493472"}, "revision": 3}
+/type/work /works/OL11093695W 2 2010-01-19T11:28:43.916469 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:01:06.994965"}, "title": "Catalogue of books to be sold by Thomas, Son & Thomas, at their bookstore, in Worcester, Massachusetts", "subject_places": ["Massachusetts", "Worcester"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T11:28:43.916469"}, "latest_revision": 2, "key": "/works/OL11093695W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4627157A"}}], "type": {"key": "/type/work"}, "subjects": ["Booksellers and bookselling"], "revision": 2}
+/type/work /works/OL11094336W 2 2010-01-19T11:35:17.242153 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:01:12.516837"}, "title": "To our fellow citizens of the United States of North America and others whom it may concern", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T11:35:17.242153"}, "latest_revision": 2, "key": "/works/OL11094336W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4627441A"}}], "subject_times": ["1799"], "type": {"key": "/type/work"}, "subjects": ["Controversial literature", "Antislavery movements", "Slavery"], "revision": 2}
+/type/work /works/OL11094443W 1 2009-12-11T04:01:12.516837 {"title": "Some eminent men and women of Marylebone", "created": {"type": "/type/datetime", "value": "2009-12-11T04:01:12.516837"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:01:12.516837"}, "latest_revision": 1, "key": "/works/OL11094443W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4627502A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11094537W 2 2010-01-19T11:35:17.242153 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:01:12.516837"}, "title": "[A renewal of the covenants, national and solemn league; a confession of sins, and engagement of duties; and a testimony", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T11:35:17.242153"}, "latest_revision": 2, "key": "/works/OL11094537W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4627550A"}}], "type": {"key": "/type/work"}, "subjects": ["Church renewal", "Presbyterianism"], "revision": 2}
+/type/work /works/OL11094770W 2 2010-01-19T11:35:17.242153 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:01:12.516837"}, "title": "Peter Jarvis, at the commencement of a new year, salutes his friends with wishing them health, wealth, & happiness, hoping for a repetition of their former favours", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T11:35:17.242153"}, "latest_revision": 2, "key": "/works/OL11094770W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4627678A"}}], "type": {"key": "/type/work"}, "subjects": ["New Year in literature"], "revision": 2}
+/type/work /works/OL11095141W 2 2010-01-19T11:35:17.242153 {"title": "Elegy on the death of His Excellency Sir Timothy Dexter", "created": {"type": "/type/datetime", "value": "2009-12-11T04:01:18.621165"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-19T11:35:17.242153"}, "latest_revision": 2, "key": "/works/OL11095141W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4627832A"}}], "subject_people": ["Timothy Dexter (1747-1806)"], "type": {"key": "/type/work"}, "subjects": ["Elegiac poetry"], "revision": 2}
+/type/work /works/OL11095194W 2 2010-01-19T11:40:32.095358 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:01:18.621165"}, "title": "In Committee of Inspection, Observation, and Correspondence. Lancaster, May 24th, 1776", "subject_places": ["Pennsylvania"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T11:40:32.095358"}, "latest_revision": 2, "key": "/works/OL11095194W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4627854A"}}], "subject_times": ["Revolution, 1775-1783"], "type": {"key": "/type/work"}, "subjects": ["History"], "revision": 2}
+/type/work /works/OL11095439W 1 2009-12-11T04:01:18.621165 {"title": "Christ the mighty helper of poor helpless man", "created": {"type": "/type/datetime", "value": "2009-12-11T04:01:18.621165"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:01:18.621165"}, "latest_revision": 1, "key": "/works/OL11095439W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4627961A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11095647W 3 2010-12-03T13:39:53.255853 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:01:18.621165"}, "subjects": ["American Sermons", "Funeral sermons", "Sermons, American"], "subject_people": ["Beriah Bishop (1778?-1805)"], "key": "/works/OL11095647W", "title": "A funeral discourse, occasioned by the death of Beriah Bishop, M.B., who died August 17th, 1805, in the 27th year of his age", "latest_revision": 3, "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4628072A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:39:53.255853"}, "revision": 3}
+/type/work /works/OL11095845W 2 2010-01-19T11:40:32.095358 {"title": "The death of the righteous consider'd, in its sad aspect upon the living, and blessed advantages to themselves", "created": {"type": "/type/datetime", "value": "2009-12-11T04:01:18.621165"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-19T11:40:32.095358"}, "latest_revision": 2, "key": "/works/OL11095845W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4628186A"}}], "subject_people": ["Samuel Couch (1669?-1739)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11095861W 3 2022-12-16T04:37:57.570268 {"title": "The duty of singing, considered as a necessary and useful part of Christian worship", "key": "/works/OL11095861W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4628194A"}}], "type": {"key": "/type/work"}, "subjects": ["Music in churches", "Singing", "Sermons", "Early works to 1800", "English Sermons"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T04:01:18.621165"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-16T04:37:57.570268"}}
+/type/work /works/OL11095875W 2 2010-01-19T11:40:32.095358 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:01:18.621165"}, "title": "Minutes of the Danbury Baptist Association", "subject_places": ["Connecticut"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T11:40:32.095358"}, "latest_revision": 2, "key": "/works/OL11095875W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4628198A"}}], "type": {"key": "/type/work"}, "subjects": ["Baptist associations", "Baptists"], "revision": 2}
+/type/work /works/OL11096105W 3 2010-12-03T12:33:57.170342 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T12:33:57.170342"}, "latest_revision": 3, "key": "/works/OL11096105W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4628318A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T04:01:25.310559"}, "title": "Philadelphia, 20th, March, 1798", "subject_places": ["United States"], "subjects": ["History", "United States War with France, 1798-1800"], "subject_times": ["1797-1801", "War with France, 1798-1800"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11096611W 1 2009-12-11T04:01:25.310559 {"title": "Rural roots and the branch economy", "created": {"type": "/type/datetime", "value": "2009-12-11T04:01:25.310559"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:01:25.310559"}, "latest_revision": 1, "key": "/works/OL11096611W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4628594A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11096862W 2 2010-01-19T11:46:00.931578 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:01:25.310559"}, "title": "By His Excellency William Burnet, Esq; captain general and governour in chief of the provinces of New-York, New-Jersey ..", "subject_places": ["Dutchess County", "New York (State)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T11:46:00.931578"}, "latest_revision": 2, "key": "/works/OL11096862W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4628750A"}}], "type": {"key": "/type/work"}, "subjects": ["Courts"], "revision": 2}
+/type/work /works/OL11097182W 2 2010-01-19T11:46:00.931578 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:01:31.145976"}, "title": "Diccionario universal de escritores", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T11:46:00.931578"}, "latest_revision": 2, "key": "/works/OL11097182W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4628943A"}}], "type": {"key": "/type/work"}, "subjects": ["Literature", "Dictionaries", "Bio-bibliography", "Spanish"], "revision": 2}
+/type/work /works/OL11097498W 1 2009-12-11T04:01:31.145976 {"title": "A sermon, delivered at New-London, North-Parish, upon the anniversary Thanksgiving, December 11, 1783", "created": {"type": "/type/datetime", "value": "2009-12-11T04:01:31.145976"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:01:31.145976"}, "latest_revision": 1, "key": "/works/OL11097498W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4629093A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11097695W 1 2009-12-11T04:01:31.145976 {"title": "Evolution of the axial rifting zone in northern Iceland and the Tjornes fracture zone", "created": {"type": "/type/datetime", "value": "2009-12-11T04:01:31.145976"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:01:31.145976"}, "latest_revision": 1, "key": "/works/OL11097695W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4629187A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11097859W 3 2010-12-03T15:53:47.189669 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:53:47.189669"}, "title": "The effects of US corporate foreign investment, 1970-1973", "created": {"type": "/type/datetime", "value": "2009-12-11T04:01:31.145976"}, "subjects": ["American Investments", "Investments, American"], "latest_revision": 3, "key": "/works/OL11097859W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4629279A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11098014W 1 2009-12-11T04:01:31.145976 {"title": "Catharina von Georgien", "created": {"type": "/type/datetime", "value": "2009-12-11T04:01:31.145976"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:01:31.145976"}, "latest_revision": 1, "key": "/works/OL11098014W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4629357A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11098066W 3 2018-01-10T08:28:54.241672 {"title": "L' expression litt\u00e9raire dans l'oeuvre de Mallarm\u00e9", "created": {"type": "/type/datetime", "value": "2009-12-11T04:01:36.256887"}, "last_modified": {"type": "/type/datetime", "value": "2018-01-10T08:28:54.241672"}, "latest_revision": 3, "key": "/works/OL11098066W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL127599A"}}], "subject_people": ["St\u00e9phane Mallarm\u00e9 (1842-1898)"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11098208W 1 2009-12-11T04:01:36.256887 {"title": "K\u0101mar\u016bpa-ratnam\u0101l\u0101", "created": {"type": "/type/datetime", "value": "2009-12-11T04:01:36.256887"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:01:36.256887"}, "latest_revision": 1, "key": "/works/OL11098208W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4629456A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11098234W 1 2009-12-11T04:01:36.256887 {"title": "Sv\u0101dh\u012bnat\u0101-sa\u1e43gr\u0101me Bari\u015b\u0101la.--", "created": {"type": "/type/datetime", "value": "2009-12-11T04:01:36.256887"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:01:36.256887"}, "latest_revision": 1, "key": "/works/OL11098234W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4629474A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11098316W 1 2009-12-11T04:01:36.256887 {"title": "Shay\u02be yakhu\u1e63\u1e63 al-r\u016b\u1e25", "created": {"type": "/type/datetime", "value": "2009-12-11T04:01:36.256887"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:01:36.256887"}, "latest_revision": 1, "key": "/works/OL11098316W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4629517A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11098392W 1 2009-12-11T04:01:36.256887 {"title": "Anton Popper und andere Erza hlungen", "created": {"type": "/type/datetime", "value": "2009-12-11T04:01:36.256887"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:01:36.256887"}, "latest_revision": 1, "key": "/works/OL11098392W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4629541A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11098548W 3 2010-12-03T14:17:53.389605 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:17:53.389605"}, "title": "MDCLXXX, an almanack of c\u0153lestial motions for the year of the Christian \u00e6pocha, 1680", "created": {"type": "/type/datetime", "value": "2009-12-11T04:01:36.256887"}, "subjects": ["Almanacs, American", "American Almanacs", "Ephemerides"], "latest_revision": 3, "key": "/works/OL11098548W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4629592A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11098644W 2 2010-01-19T11:52:38.145059 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:01:36.256887"}, "title": "Measuring the costs of unemployment", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T11:52:38.145059"}, "latest_revision": 2, "key": "/works/OL11098644W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4629621A"}}], "type": {"key": "/type/work"}, "subjects": ["Econometric models", "Business cycles", "Equilibrium (Economics)", "Employment (Economic theory)", "Unemployment"], "revision": 2}
+/type/work /works/OL1109888W 4 2012-08-02T15:48:31.994763 {"covers": [6249582], "last_modified": {"type": "/type/datetime", "value": "2012-08-02T15:48:31.994763"}, "latest_revision": 4, "key": "/works/OL1109888W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL114214A"}}], "created": {"type": "/type/datetime", "value": "2009-12-09T20:31:09.288587"}, "title": "Church history, mediaeval and modern", "subjects": ["Church history", "Middle Ages"], "subject_times": ["Modern period, 1500-", "Middle Ages, 600-1500"], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL11098988W 4 2020-12-04T13:19:15.793164 {"title": "Mujtama\u02bb Alf laylah wa-laylah", "subjects": ["<>", "Arabian nights", "Arabic literature", "History and criticism", "Social life and customs", "Literature and society"], "key": "/works/OL11098988W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4629726A"}}], "type": {"key": "/type/work"}, "description": {"type": "/type/text", "value": "Arabian nights; sociological aspects."}, "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T04:01:36.256887"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-04T13:19:15.793164"}}
+/type/work /works/OL11099007W 3 2014-07-27T08:44:31.957769 {"last_modified": {"type": "/type/datetime", "value": "2014-07-27T08:44:31.957769"}, "latest_revision": 3, "key": "/works/OL11099007W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4629731A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T04:01:36.256887"}, "title": "Memorial and protest of the commission of the synod of the Presbyterian Church of Canada, in connexion with the Church of Scotland, respecting the Clergy Reserve Act, &c", "subject_places": ["Canada"], "subjects": ["Land settlement", "Clergy reserves (Canada)", "Church history", "Colonisation int\u00e9rieure", "R\u00e9serves du clerg\u00e9 (Canada)", "Histoire religieuse"], "subject_times": ["1763-1867"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11099235W 2 2010-01-19T11:52:38.145059 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:01:42.083669"}, "title": "Canada's wheat problem", "subject_places": ["Canada"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T11:52:38.145059"}, "latest_revision": 2, "key": "/works/OL11099235W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4629794A"}}], "type": {"key": "/type/work"}, "subjects": ["Wheat", "Wheat trade"], "revision": 2}
+/type/work /works/OL11099467W 1 2009-12-11T04:01:42.083669 {"title": "An almanack, for the year of our Lord 1795 ..", "created": {"type": "/type/datetime", "value": "2009-12-11T04:01:42.083669"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:01:42.083669"}, "latest_revision": 1, "key": "/works/OL11099467W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4629891A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11099599W 2 2010-01-19T11:58:37.617081 {"title": "The life, and dying speech of Arthur, a Negro man", "created": {"type": "/type/datetime", "value": "2009-12-11T04:01:42.083669"}, "subject_places": ["Massachusetts", "Worcester"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T11:58:37.617081"}, "latest_revision": 2, "key": "/works/OL11099599W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4629955A"}}], "subject_people": ["Deborah Metcalfe"], "type": {"key": "/type/work"}, "subjects": ["Crime", "African American criminals", "Rape", "Executions and executioners"], "revision": 2}
+/type/work /works/OL1109967W 3 2011-02-12T15:07:22.326257 {"last_modified": {"type": "/type/datetime", "value": "2011-02-12T15:07:22.326257"}, "latest_revision": 3, "key": "/works/OL1109967W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2871487A"}}], "created": {"type": "/type/datetime", "value": "2009-12-09T20:31:09.288587"}, "title": "Greek acting in the fifth century", "subject_places": ["Greece"], "subjects": ["Acting", "History", "Greek drama", "History and criticism", "Theater"], "subject_times": ["To 500", "To 1500"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1110044W 2 2010-01-19T11:58:37.617081 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:31:09.288587"}, "title": "Public confidence must be restored", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T11:58:37.617081"}, "latest_revision": 2, "key": "/works/OL1110044W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL114224A"}}], "type": {"key": "/type/work"}, "subjects": ["Economic policy", "Liberty"], "revision": 2}
+/type/work /works/OL11100501W 3 2010-12-04T02:12:21.888219 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:01:48.585145"}, "subject_places": ["Bassin du Mississippi", "Mississippi River"], "subjects": ["Bassin du Mississippi", "Histoire", "Mississippi, Bassin du"], "latest_revision": 3, "key": "/works/OL11100501W", "title": "Le Mississipi", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4630433A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-04T02:12:21.888219"}, "revision": 3}
+/type/work /works/OL1110050W 3 2022-12-19T21:05:31.387559 {"title": "The responsibility of youth", "key": "/works/OL1110050W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL114224A"}}], "type": {"key": "/type/work"}, "subjects": ["Representative government and representation", "Baccalaureate addresses", "Western Civilization", "Democracy"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-09T20:31:09.288587"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-19T21:05:31.387559"}}
+/type/work /works/OL11100824W 2 2010-01-19T11:58:37.617081 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:01:48.585145"}, "title": "World trade in aluminum, 1954-57", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T11:58:37.617081"}, "latest_revision": 2, "key": "/works/OL11100824W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4630620A"}}], "type": {"key": "/type/work"}, "subjects": ["Statistics", "Aluminum industry and trade"], "revision": 2}
+/type/work /works/OL1110099W 5 2020-08-13T02:30:31.539747 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:31:09.288587"}, "subjects": ["Mental healing", "Mind and body"], "latest_revision": 5, "key": "/works/OL1110099W", "title": "Mind Cures", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL114225A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-08-13T02:30:31.539747"}, "covers": [5809559], "revision": 5}
+/type/work /works/OL11101427W 2 2010-12-03T12:37:34.598397 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T12:37:34.598397"}, "title": "Portrait in oil, how the Ohio Oil Company grew to become Marathon", "created": {"type": "/type/datetime", "value": "2009-12-11T04:01:54.384259"}, "subjects": ["Marathon Oil Company"], "latest_revision": 2, "key": "/works/OL11101427W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4630912A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11101958W 2 2010-01-19T12:03:30.843442 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:01:54.384259"}, "title": "Representation ... by Stanley Nesbitt Conder ... before the Select Committee on Drugs, Province of Ontario, Parliament Buildings ... October 24, 1960", "subject_places": ["Canada"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T12:03:30.843442"}, "latest_revision": 2, "key": "/works/OL11101958W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4631206A"}}], "type": {"key": "/type/work"}, "subjects": ["Pharmaceutical industry"], "revision": 2}
+/type/work /works/OL11101980W 2 2010-01-19T12:03:30.843442 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:01:54.384259"}, "title": "Die Einf\u00fchrung der Reformation in Rostock", "subject_places": ["Rostock", "Germany"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T12:03:30.843442"}, "latest_revision": 2, "key": "/works/OL11101980W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4631217A"}}], "type": {"key": "/type/work"}, "subjects": ["Reformation", "Church history"], "revision": 2}
+/type/work /works/OL11102239W 3 2018-02-05T04:47:23.508105 {"covers": [8131482], "last_modified": {"type": "/type/datetime", "value": "2018-02-05T04:47:23.508105"}, "latest_revision": 3, "key": "/works/OL11102239W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4631385A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T04:02:00.725321"}, "title": "The magical world of Kenya", "subject_places": ["Kenya"], "subjects": ["History", "Travel", "Description and travel"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1110229W 2 2010-01-19T12:03:30.843442 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:31:09.288587"}, "title": "The ideal aim of physical science", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T12:03:30.843442"}, "latest_revision": 2, "key": "/works/OL1110229W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL114236A"}}], "type": {"key": "/type/work"}, "subjects": ["Physics"], "revision": 2}
+/type/work /works/OL11102363W 2 2012-05-20T01:20:38.693505 {"title": "Report of the Committee of Revisal and Unfinished Business, on bills, reports, and other matters of business depending and undetermined upon at the second session of the Fourth Congress, and at the last session", "created": {"type": "/type/datetime", "value": "2009-12-11T04:02:00.725321"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-20T01:20:38.693505"}, "latest_revision": 2, "key": "/works/OL11102363W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL254646A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11102841W 2 2010-01-19T12:08:36.357283 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:02:00.725321"}, "title": "Mainstream special education", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T12:08:36.357283"}, "latest_revision": 2, "key": "/works/OL11102841W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4631696A"}}], "type": {"key": "/type/work"}, "subjects": ["Teachers of children with mental disabilities", "Training of", "Education", "Children with mental disabilities"], "revision": 2}
+/type/work /works/OL11103353W 1 2009-12-11T04:02:06.555971 {"title": "\u02bbAl sheloshah e\u1e33alip\u1e6dusim", "created": {"type": "/type/datetime", "value": "2009-12-11T04:02:06.555971"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:02:06.555971"}, "latest_revision": 1, "key": "/works/OL11103353W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4631967A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11103462W 1 2009-12-11T04:02:06.555971 {"title": "L' armurier de Boudry", "created": {"type": "/type/datetime", "value": "2009-12-11T04:02:06.555971"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:02:06.555971"}, "latest_revision": 1, "key": "/works/OL11103462W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4632044A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11103666W 2 2010-01-19T12:08:36.357283 {"title": "An impossible parson", "created": {"type": "/type/datetime", "value": "2009-12-11T04:02:06.555971"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-19T12:08:36.357283"}, "latest_revision": 2, "key": "/works/OL11103666W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4632172A"}}], "subject_people": ["Basil Martin"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11103923W 2 2010-01-19T12:08:36.357283 {"title": "Christian churches formed and furnish'd by Christ", "created": {"type": "/type/datetime", "value": "2009-12-11T04:02:06.555971"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-19T12:08:36.357283"}, "latest_revision": 2, "key": "/works/OL11103923W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4632287A"}}], "subject_people": ["Timothy Walker (1705-1782)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11103985W 3 2010-12-03T12:34:52.619043 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:02:06.555971"}, "subject_places": ["United States"], "subjects": ["Governors", "Mass media", "Political aspects", "Political aspects of Mass media"], "latest_revision": 3, "key": "/works/OL11103985W", "title": "\"Meet the Governors\"", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4632326A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T12:34:52.619043"}, "revision": 3}
+/type/work /works/OL11104035W 3 2010-11-23T08:09:13.805772 {"last_modified": {"type": "/type/datetime", "value": "2010-11-23T08:09:13.805772"}, "title": "Symposium on fundametals of forced convection heat transfer", "created": {"type": "/type/datetime", "value": "2009-12-11T04:02:06.555971"}, "subjects": ["Heat", "Congresses", "Transmission", "Convection"], "latest_revision": 3, "key": "/works/OL11104035W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL611851A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11104178W 1 2009-12-11T04:02:12.404464 {"title": "L' eresia meridinale", "created": {"type": "/type/datetime", "value": "2009-12-11T04:02:12.404464"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:02:12.404464"}, "latest_revision": 1, "key": "/works/OL11104178W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4632393A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11104186W 1 2009-12-11T04:02:12.404464 {"title": "L' \u00e9toile et la clef", "created": {"type": "/type/datetime", "value": "2009-12-11T04:02:12.404464"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:02:12.404464"}, "latest_revision": 1, "key": "/works/OL11104186W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4632395A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1110428W 3 2010-04-28T07:18:51.218399 {"title": "The Book Of Purifying Fire", "created": {"type": "/type/datetime", "value": "2009-12-09T20:31:11.231126"}, "covers": [2864268], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:18:51.218399"}, "latest_revision": 3, "key": "/works/OL1110428W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL114249A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11104576W 1 2009-12-11T04:02:12.404464 {"title": "An astronomical diary, or almanac, for the year of Christian aera, 1798", "created": {"type": "/type/datetime", "value": "2009-12-11T04:02:12.404464"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:02:12.404464"}, "latest_revision": 1, "key": "/works/OL11104576W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4632580A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1110499W 3 2010-04-28T07:18:51.218399 {"title": "The Date And Doctrine Of The Book Of Formation - Pamphlet", "created": {"type": "/type/datetime", "value": "2009-12-09T20:31:11.231126"}, "covers": [2864340], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:18:51.218399"}, "latest_revision": 3, "key": "/works/OL1110499W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL114249A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11105172W 1 2009-12-11T04:02:18.952639 {"title": "D\u0113mu\u1e0du j\u012bvini campi m\u014dk\u1e63amist\u0101\u1e0d\u0101?", "created": {"type": "/type/datetime", "value": "2009-12-11T04:02:18.952639"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:02:18.952639"}, "latest_revision": 1, "key": "/works/OL11105172W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4632885A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11105426W 1 2009-12-11T04:02:18.952639 {"title": "\u0100ndhravi\u1e63\u1e47uvu", "created": {"type": "/type/datetime", "value": "2009-12-11T04:02:18.952639"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:02:18.952639"}, "latest_revision": 1, "key": "/works/OL11105426W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4633036A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11106101W 1 2009-12-11T04:02:25.493631 {"title": "Adhy\u0101tma R\u0101m\u0101ya\u1e47a: eka vivecan\u0101tmaka adhyayana", "created": {"type": "/type/datetime", "value": "2009-12-11T04:02:25.493631"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:02:25.493631"}, "latest_revision": 1, "key": "/works/OL11106101W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4633414A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11106194W 1 2009-12-11T04:02:25.493631 {"title": "Rate-dependent behavior of rock joints", "created": {"type": "/type/datetime", "value": "2009-12-11T04:02:25.493631"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:02:25.493631"}, "latest_revision": 1, "key": "/works/OL11106194W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4633455A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11106222W 3 2010-12-03T18:40:29.343099 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T18:40:29.343099"}, "title": "Head quarters, York, August 23, 1777", "created": {"type": "/type/datetime", "value": "2009-12-11T04:02:25.493631"}, "subjects": ["Broadsides", "Pennsylvania", "Pennsylvania. Militia", "Supplies and stores"], "latest_revision": 3, "key": "/works/OL11106222W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4633473A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11106233W 4 2012-05-29T18:09:19.585552 {"last_modified": {"type": "/type/datetime", "value": "2012-05-29T18:09:19.585552"}, "latest_revision": 4, "key": "/works/OL11106233W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4632788A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T04:02:25.493631"}, "title": "A state of the accounts of Archibald Thompson, Esquire, late a sub-lieutenant of Philadelphia County", "subject_places": ["Pennsylvania"], "subjects": ["History", "History, Military", "Military History"], "subject_times": ["Revolution, 1775-1783"], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL1110631W 3 2010-04-28T07:18:51.218399 {"title": "The Grand Qabalistic Table Of The 72 Genie", "created": {"type": "/type/datetime", "value": "2009-12-09T20:31:11.231126"}, "covers": [2824121], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:18:51.218399"}, "latest_revision": 3, "key": "/works/OL1110631W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL114249A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11106442W 4 2019-08-24T18:22:00.316534 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:02:25.493631"}, "subject_places": ["Italy"], "subjects": ["Federal government", "Regionalism", "State, The", "The State"], "latest_revision": 4, "key": "/works/OL11106442W", "title": "Contro lo statalismo", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL48063A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2019-08-24T18:22:00.316534"}, "revision": 4}
+/type/work /works/OL11106721W 2 2010-01-19T12:18:23.967006 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:02:25.493631"}, "title": "Vision of Isaac Child", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T12:18:23.967006"}, "latest_revision": 2, "key": "/works/OL11106721W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4633750A"}}], "type": {"key": "/type/work"}, "subjects": ["Visions", "Controversial literature", "Society of Friends", "Doctrinal and controversial works"], "revision": 2}
+/type/work /works/OL11106854W 3 2021-09-29T02:16:21.370190 {"title": "Art glass nouveau", "key": "/works/OL11106854W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4633818A"}}], "subject_times": ["19th century"], "type": {"key": "/type/work"}, "subjects": ["Glassware", "Art nouveau", "Collectors and collecting", "History"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T04:02:25.493631"}, "last_modified": {"type": "/type/datetime", "value": "2021-09-29T02:16:21.370190"}}
+/type/work /works/OL11107311W 1 2009-12-11T04:02:31.268238 {"title": "De Haas-van Alphen studies of dislocation scattering", "created": {"type": "/type/datetime", "value": "2009-12-11T04:02:31.268238"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:02:31.268238"}, "latest_revision": 1, "key": "/works/OL11107311W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4634091A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1110745W 3 2010-04-28T07:18:51.218399 {"title": "The Kabalah And Legend Of The Deluge - Pamphlet", "created": {"type": "/type/datetime", "value": "2009-12-09T20:31:11.231126"}, "covers": [2864374], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:18:51.218399"}, "latest_revision": 3, "key": "/works/OL1110745W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL114249A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11107474W 2 2010-01-19T12:23:16.281152 {"title": "R\u0101mad\u0101su", "created": {"type": "/type/datetime", "value": "2009-12-11T04:02:31.268238"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-19T12:23:16.281152"}, "latest_revision": 2, "key": "/works/OL11107474W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4634157A"}}], "subject_people": ["Varadar\u0101mad\u0101su"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11107615W 3 2010-12-03T12:37:09.240700 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T12:37:09.240700"}, "latest_revision": 3, "key": "/works/OL11107615W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4634235A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T04:02:31.268238"}, "title": "To all gentlemen volunteers, who prefer liberty to slavery, and are hearty friends to the grand American cause ..", "subject_places": ["Massachusetts", "United States"], "subjects": ["American forces", "Bounties, Military", "History", "History, Military", "Military Bounties", "Military History", "Recruiting and enlistment"], "subject_times": ["Revolution, 1775-1783"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11107765W 2 2010-01-19T12:23:16.281152 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:02:31.268238"}, "title": "In the Court of Appeal for Ontario : in the matter of an application before the Ontario Railway and Municipal Board :between the Corporation of the City of Toronto (applicants), appellants and the Toronto Railway Company (respondents)... : appeal book : Mr. W.C. Chisholm, solicitor for appellants : Messrs. McCarthy, Osler, Hoskin & Harcourt, solicitors for respondents", "subject_places": ["Toronto", "Ontario"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T12:23:16.281152"}, "latest_revision": 2, "key": "/works/OL11107765W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4634322A"}}], "type": {"key": "/type/work"}, "subjects": ["Snow removal", "Electric railroads"], "revision": 2}
+/type/work /works/OL11108151W 3 2010-12-03T12:40:42.161742 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T12:40:42.161742"}, "latest_revision": 3, "key": "/works/OL11108151W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4634425A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T04:02:37.152979"}, "title": "Rhode-Island and Providence Plantations united to the great American family", "subject_places": ["Rhode Island"], "subjects": ["Broadsides", "Politics and government", "United States"], "subject_times": ["1775-1865"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11108875W 2 2010-01-19T12:23:16.281152 {"title": "al- Fiqh al-siy\u0101s\u012b \u02bbinda al-Im\u0101m al-Shah\u012bd \u1e24asan al-Bann\u0101", "created": {"type": "/type/datetime", "value": "2009-12-11T04:02:37.152979"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-19T12:23:16.281152"}, "latest_revision": 2, "key": "/works/OL11108875W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4634796A"}}], "subject_people": ["Bann\u0101, \u1e24asan (1906-1949)"], "type": {"key": "/type/work"}, "subjects": ["Islam and state", "Views on Islam and state"], "revision": 2}
+/type/work /works/OL11109071W 1 2009-12-11T04:02:43.693442 {"title": "Maba\u1e6d mi-tokh ha-afelah", "created": {"type": "/type/datetime", "value": "2009-12-11T04:02:43.693442"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:02:43.693442"}, "latest_revision": 1, "key": "/works/OL11109071W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4634849A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11109653W 1 2009-12-11T04:02:43.693442 {"title": "Cloning and sequencing pea early browning virus RNA-1 and studies on the 30K gene", "created": {"type": "/type/datetime", "value": "2009-12-11T04:02:43.693442"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:02:43.693442"}, "latest_revision": 1, "key": "/works/OL11109653W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4635179A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11109671W 2 2010-01-19T12:28:21.630713 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:02:43.693442"}, "title": "Sbornik zadach po statistike sovetsko\u01d0 torgovli", "subject_places": ["Russia"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T12:28:21.630713"}, "latest_revision": 2, "key": "/works/OL11109671W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4635186A"}}], "type": {"key": "/type/work"}, "subjects": ["Commerce", "Commercial statistics"], "revision": 2}
+/type/work /works/OL11110240W 2 2010-01-19T12:28:21.630713 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:02:48.607091"}, "title": "Factors which control the distribution of ferromanganese nodules and proposed research vessel's track, North Pacific", "subject_places": ["North Pacific Ocean"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T12:28:21.630713"}, "latest_revision": 2, "key": "/works/OL11110240W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4635438A"}}], "type": {"key": "/type/work"}, "subjects": ["Ferromanganese", "Manganese nodules"], "revision": 2}
+/type/work /works/OL11110807W 3 2010-04-29T20:27:48.801963 {"subtitle": "wa\u1e63f al-mashhad al-thaq\u0101f\u012b li-bil\u0101d al-Sh\u0101m f\u012b al-\u02bbahd al-\u02bbUthm\u0101n\u012b, 1516-1918", "title": "\u02bbA\u1e63r al-tak\u0101y\u0101 wa-al-ra\u02bb\u0101y\u0101", "created": {"type": "/type/datetime", "value": "2009-12-11T04:02:48.607091"}, "subject_places": ["Syria"], "last_modified": {"type": "/type/datetime", "value": "2010-04-29T20:27:48.801963"}, "latest_revision": 3, "key": "/works/OL11110807W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4635638A"}}], "subject_times": ["1516-1918"], "type": {"key": "/type/work"}, "subjects": ["Intellectual life", "History", "Syria"], "revision": 3}
+/type/work /works/OL11110829W 5 2022-05-25T01:23:26.190803 {"subjects": ["History", "Petroleum industry and trade", "Ultramar PLC", "International business enterprises", "Ultramar (Firm)", "Great britain, history"], "key": "/works/OL11110829W", "title": "A golden adventure", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4635652A"}}], "type": {"key": "/type/work"}, "covers": [10272813], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2009-12-11T04:02:48.607091"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T01:23:26.190803"}}
+/type/work /works/OL11110978W 1 2009-12-11T04:02:48.607091 {"title": "High Gothic art", "created": {"type": "/type/datetime", "value": "2009-12-11T04:02:48.607091"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:02:48.607091"}, "latest_revision": 1, "key": "/works/OL11110978W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4635711A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11111441W 3 2010-12-03T12:37:59.451933 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:02:55.341803"}, "subjects": ["Baptists", "Controversial literature", "Doctrinal and controversial works", "Episcopal Church"], "subject_people": ["Ashbel Gillet"], "key": "/works/OL11111441W", "title": "An answer to Mr. Ashbel Gillet's letter", "latest_revision": 3, "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4636005A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T12:37:59.451933"}, "revision": 3}
+/type/work /works/OL11111448W 1 2009-12-11T04:02:55.341803 {"title": "Autres temps: Nicolas Bergasse. Deux enclaves de l'ancienne France, Orange et Avignon", "created": {"type": "/type/datetime", "value": "2009-12-11T04:02:55.341803"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:02:55.341803"}, "latest_revision": 1, "key": "/works/OL11111448W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4636008A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11111492W 2 2010-01-19T12:33:19.117241 {"title": "Aqw\u0101l al-R\u0101hibah Hind\u012byah \u02bbUjaym\u012b al-\u1e24alab\u012byah wa-tarjamat \u1e25ay\u0101tih\u0101 : naqlan \u02bban makh\u1e6d\u016b\u1e6d qad\u012bm ma\u1e25f\u016b\u1e93 f\u012b Maktabat al-Ruhb\u0101n al-Maw\u0101rinah bi-Dayr M\u0101r An\u1e6d\u016bny\u016bs bi-R\u016bm\u0101 /bi-qalam al-\u0100b\u0101t\u012b Bu\u1e6drus Fahd", "created": {"type": "/type/datetime", "value": "2009-12-11T04:02:55.341803"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-19T12:33:19.117241"}, "latest_revision": 2, "key": "/works/OL11111492W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4636036A"}}], "subject_people": ["Hind\u012byah Shukr All\u0101h \u02bbUjaym\u012b (1720-1798)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11111667W 1 2009-12-11T04:02:55.341803 {"title": "The Atlantic community", "created": {"type": "/type/datetime", "value": "2009-12-11T04:02:55.341803"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:02:55.341803"}, "latest_revision": 1, "key": "/works/OL11111667W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4636117A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1111174W 3 2010-04-28T07:18:51.218399 {"title": "Thomas Norton", "created": {"type": "/type/datetime", "value": "2009-12-09T20:31:11.231126"}, "covers": [2864172], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:18:51.218399"}, "latest_revision": 3, "key": "/works/OL1111174W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL114249A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11112037W 1 2009-12-11T04:02:55.341803 {"title": "R\u0101jasth\u0101n\u012b kah\u0101vata ko\u015ba", "created": {"type": "/type/datetime", "value": "2009-12-11T04:02:55.341803"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:02:55.341803"}, "latest_revision": 1, "key": "/works/OL11112037W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4636282A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11112059W 4 2010-12-03T12:39:13.381439 {"covers": [6138708], "last_modified": {"type": "/type/datetime", "value": "2010-12-03T12:39:13.381439"}, "latest_revision": 4, "key": "/works/OL11112059W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4636294A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T04:03:01.420037"}, "title": "The conscription act vindicated", "subjects": ["Draft", "Recruiting, enlistment", "United States", "United States. Army"], "subject_times": ["Civil War, 1861-1865"], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL11112116W 2 2010-01-19T12:38:15.683745 {"title": "Zur kosmologischen Arithmetik des Boethius", "created": {"type": "/type/datetime", "value": "2009-12-11T04:03:01.420037"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-19T12:38:15.683745"}, "latest_revision": 2, "key": "/works/OL11112116W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4636335A"}}], "subject_people": ["Joachim Otto Fleckenstein (1914-)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11112200W 2 2010-01-19T12:38:15.683745 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:03:01.420037"}, "title": "The constitution of the Hartford Library Company", "subject_places": ["Connecticut", "Hartford", "Hartford (Conn.)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T12:38:15.683745"}, "latest_revision": 2, "key": "/works/OL11112200W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4636383A"}}], "type": {"key": "/type/work"}, "subjects": ["Proprietary libraries", "Library resources"], "revision": 2}
+/type/work /works/OL11112351W 1 2009-12-11T04:03:01.420037 {"title": "Caranad\u0101sa cora", "created": {"type": "/type/datetime", "value": "2009-12-11T04:03:01.420037"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:03:01.420037"}, "latest_revision": 1, "key": "/works/OL11112351W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4636455A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11112424W 2 2010-01-19T12:38:15.683745 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:03:01.420037"}, "title": "El nacimiento de la rep\u00fablica federal mexicana", "subject_places": ["Mexico"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T12:38:15.683745"}, "latest_revision": 2, "key": "/works/OL11112424W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4636500A"}}], "type": {"key": "/type/work"}, "subjects": ["Constitutional history", "Federal government"], "revision": 2}
+/type/work /works/OL11112459W 1 2009-12-11T04:03:01.420037 {"title": "The child that toileth not", "created": {"type": "/type/datetime", "value": "2009-12-11T04:03:01.420037"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:03:01.420037"}, "latest_revision": 1, "key": "/works/OL11112459W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4636508A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11113458W 4 2020-02-28T05:13:32.589279 {"title": "North American Indians", "created": {"type": "/type/datetime", "value": "2009-12-11T04:03:07.910236"}, "last_modified": {"type": "/type/datetime", "value": "2020-02-28T05:13:32.589279"}, "latest_revision": 4, "key": "/works/OL11113458W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL408259A"}}], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL11113716W 1 2009-12-11T04:03:07.910236 {"title": "P\u0101l\u0101te p\u0101ri n\u0101", "created": {"type": "/type/datetime", "value": "2009-12-11T04:03:07.910236"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:03:07.910236"}, "latest_revision": 1, "key": "/works/OL11113716W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4637215A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11114316W 1 2009-12-11T04:03:16.584269 {"title": "Ja\u1e0do\u1e43 k\u012b \u0101khir\u012b paka\u1e5ba taka", "created": {"type": "/type/datetime", "value": "2009-12-11T04:03:16.584269"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:03:16.584269"}, "latest_revision": 1, "key": "/works/OL11114316W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4637474A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11114938W 2 2010-01-19T12:43:38.599715 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:03:16.584269"}, "title": "Guidance for implementation of 10 CFR 72.48, changes, tests, and experiments", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T12:43:38.599715"}, "latest_revision": 2, "key": "/works/OL11114938W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4637876A"}}], "type": {"key": "/type/work"}, "subjects": ["Design and construction", "Nuclear power plants", "Law and legislation", "Standards"], "revision": 2}
+/type/work /works/OL11115161W 3 2010-12-03T12:38:49.603113 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T12:38:49.603113"}, "title": "Go, crysten soul", "created": {"type": "/type/datetime", "value": "2009-12-11T04:03:25.175906"}, "subjects": ["Ars moriendi", "Death"], "latest_revision": 3, "key": "/works/OL11115161W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4638022A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11115196W 2 2010-01-19T12:49:15.111195 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:03:25.175906"}, "title": "Atlas of Guernsey County, Ohio", "subject_places": ["Ohio", "Guernsey County", "Guernsey County (Ohio)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T12:49:15.111195"}, "latest_revision": 2, "key": "/works/OL11115196W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4638045A"}}], "type": {"key": "/type/work"}, "subjects": ["Maps", "Real property"], "revision": 2}
+/type/work /works/OL11115251W 2 2010-01-19T12:49:15.111195 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:03:25.175906"}, "title": "Argentina de P\u00e9ron a Lanusse, 1943-1973", "subject_places": ["Argentina"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T12:49:15.111195"}, "latest_revision": 2, "key": "/works/OL11115251W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4638090A"}}], "subject_times": ["1943-", "1955-", "1943-1955"], "type": {"key": "/type/work"}, "subjects": ["Politics and government", "History"], "revision": 2}
+/type/work /works/OL11115287W 2 2010-01-19T12:49:15.111195 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:03:25.175906"}, "title": "Two studies in supervision", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T12:49:15.111195"}, "latest_revision": 2, "key": "/works/OL11115287W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4638110A"}}], "type": {"key": "/type/work"}, "subjects": ["Factory management", "Supervision of employees"], "revision": 2}
+/type/work /works/OL11115322W 1 2009-12-11T04:03:25.175906 {"title": "Ika\u1e5bi, mika\u1e5bi", "created": {"type": "/type/datetime", "value": "2009-12-11T04:03:25.175906"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:03:25.175906"}, "latest_revision": 1, "key": "/works/OL11115322W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4638134A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11115349W 2 2010-01-19T12:49:15.111195 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:03:25.175906"}, "title": "The Vakrokti-j\u012bvita of Kuntaka", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T12:49:15.111195"}, "latest_revision": 2, "key": "/works/OL11115349W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4638148A"}}], "type": {"key": "/type/work"}, "subjects": ["Poetics", "Sanskrit poetry", "History and criticism"], "revision": 2}
+/type/work /works/OL11115531W 2 2010-01-19T12:49:15.111195 {"title": "M\u0101o Se-tu\u1e43, eka\u1e6di n\u0101ma", "created": {"type": "/type/datetime", "value": "2009-12-11T04:03:25.175906"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-19T12:49:15.111195"}, "latest_revision": 2, "key": "/works/OL11115531W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4638258A"}}], "subject_people": ["Mao Zedong (1893-1976)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11115596W 5 2022-12-11T08:34:29.740941 {"subjects": ["English literature", "English philology", "Legends", "Robin Hood (Legendary character)"], "subject_people": ["Arthur King"], "key": "/works/OL11115596W", "title": "By-ways of literature", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4638302A"}}], "type": {"key": "/type/work"}, "covers": [9972316], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2009-12-11T04:03:25.175906"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-11T08:34:29.740941"}}
+/type/work /works/OL1111603W 2 2010-04-29T01:45:39.286171 {"subtitle": "studies with pen and pencil in the Vaudois valley of Piedmont.", "created": {"type": "/type/datetime", "value": "2009-12-09T20:31:18.866684"}, "title": "The valley of light", "last_modified": {"type": "/type/datetime", "value": "2010-04-29T01:45:39.286171"}, "latest_revision": 2, "key": "/works/OL1111603W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL114281A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL1111604W 2 2010-04-29T01:45:39.573874 {"subtitle": "an endeavour to trace the influence of the War as a reforming agency, with special reference to matters primarily affecting the wage-earning classes", "created": {"type": "/type/datetime", "value": "2009-12-09T20:31:18.866684"}, "title": "The War and social reform", "last_modified": {"type": "/type/datetime", "value": "2010-04-29T01:45:39.573874"}, "latest_revision": 2, "key": "/works/OL1111604W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL114281A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11116113W 1 2009-12-11T04:03:32.468640 {"title": "Recent research in jewellery studies", "created": {"type": "/type/datetime", "value": "2009-12-11T04:03:32.468640"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:03:32.468640"}, "latest_revision": 1, "key": "/works/OL11116113W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4638683A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11117534W 2 2010-01-19T12:54:37.705301 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:03:40.019091"}, "title": "Atlas of Marion County, Ohio", "subject_places": ["Ohio", "United States", "Marion County (Ohio)", "Marion County"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T12:54:37.705301"}, "latest_revision": 2, "key": "/works/OL11117534W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4639444A"}}], "type": {"key": "/type/work"}, "subjects": ["Maps", "Real property"], "revision": 2}
+/type/work /works/OL11117662W 5 2021-09-19T23:12:56.548321 {"subjects": ["Philosophy", "History", "History, philosophy"], "key": "/works/OL11117662W", "title": "Historical consciousness", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4639524A"}}], "type": {"key": "/type/work"}, "covers": [3946715], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2009-12-11T04:03:40.019091"}, "last_modified": {"type": "/type/datetime", "value": "2021-09-19T23:12:56.548321"}}
+/type/work /works/OL11118206W 1 2009-12-11T04:03:47.400755 {"title": "Re partition et re glement de la dette publique autrichienne et hongroise d'avant-guerre", "created": {"type": "/type/datetime", "value": "2009-12-11T04:03:47.400755"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:03:47.400755"}, "latest_revision": 1, "key": "/works/OL11118206W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4639877A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11118300W 1 2009-12-11T04:03:47.400755 {"title": "Regulations for the order and discipline of the troops of the United States", "created": {"type": "/type/datetime", "value": "2009-12-11T04:03:47.400755"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:03:47.400755"}, "latest_revision": 1, "key": "/works/OL11118300W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4639932A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11118309W 3 2010-12-03T12:40:14.799076 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:03:47.400755"}, "subjects": ["French Proverbs", "Proverbs, French"], "latest_revision": 3, "key": "/works/OL11118309W", "title": "Proverbes fran\u00e7ais ant\u00e9rieurs au XVe si\u00e8cle", "subject_times": ["To 1500"], "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4639940A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T12:40:14.799076"}, "revision": 3}
+/type/work /works/OL11118747W 2 2010-01-19T13:00:37.660146 {"title": "Aus Rankes Fru hzeit", "created": {"type": "/type/datetime", "value": "2009-12-11T04:03:47.400755"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-19T13:00:37.660146"}, "latest_revision": 2, "key": "/works/OL11118747W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4640202A"}}], "subject_people": ["Leopold von Ranke (1795-1886)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL1111875W 3 2012-11-23T11:17:46.542211 {"title": "The chances", "created": {"type": "/type/datetime", "value": "2009-12-09T20:31:18.866684"}, "last_modified": {"type": "/type/datetime", "value": "2012-11-23T11:17:46.542211"}, "latest_revision": 3, "key": "/works/OL1111875W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL114291A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11118982W 2 2010-01-19T13:00:37.660146 {"title": "Richelieu and his age", "created": {"type": "/type/datetime", "value": "2009-12-11T04:03:47.400755"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-19T13:00:37.660146"}, "latest_revision": 2, "key": "/works/OL11118982W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4640314A"}}], "subject_people": ["Armand du Plessis Richelieu duc de (1585-1642)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11119097W 3 2010-12-03T12:40:14.799076 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T12:40:14.799076"}, "latest_revision": 3, "key": "/works/OL11119097W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4640374A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T04:03:51.407911"}, "title": "An impartial address, to the citizens of the city and county of Albany: or, The 35 anti-federal objections refuted", "subject_places": ["New York (State)", "United States"], "subjects": ["Observations on the proposed constitution for the United States", "Politics and government", "United States"], "subject_times": ["1775-1865", "1783-1789"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11119124W 1 2009-12-11T04:03:51.407911 {"title": "Geschichte der Handelskrisen", "created": {"type": "/type/datetime", "value": "2009-12-11T04:03:51.407911"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:03:51.407911"}, "latest_revision": 1, "key": "/works/OL11119124W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4640388A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11119226W 3 2022-09-23T05:00:14.765703 {"title": "The drug scene", "key": "/works/OL11119226W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4640444A"}}], "type": {"key": "/type/work"}, "subjects": ["Drug addiction"], "covers": [12911943], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T04:03:51.407911"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-23T05:00:14.765703"}}
+/type/work /works/OL11119447W 2 2022-10-06T16:13:21.818961 {"title": "Sth\u0101na k\u0101la p\u0101tra", "key": "/works/OL11119447W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL821A"}}], "type": {"key": "/type/work"}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T04:03:51.407911"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-06T16:13:21.818961"}}
+/type/work /works/OL11119673W 2 2010-01-19T13:00:37.660146 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:03:51.407911"}, "title": "Discounts and Loans by Federal Land Banks for Farming Purposes", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T13:00:37.660146"}, "latest_revision": 2, "key": "/works/OL11119673W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4640637A"}}], "type": {"key": "/type/work"}, "subjects": ["Land banks", "Agricultural credit"], "revision": 2}
+/type/work /works/OL11119850W 2 2010-01-19T13:00:37.660146 {"title": "Nomination of William McChesney Martin, Jr", "created": {"type": "/type/datetime", "value": "2009-12-11T04:03:51.407911"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-19T13:00:37.660146"}, "latest_revision": 2, "key": "/works/OL11119850W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4640637A"}}], "subject_people": ["William McChesney, Jr Martin"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11119851W 2 2010-01-19T13:00:37.660146 {"title": "Nomination of W. Stuart Symington", "created": {"type": "/type/datetime", "value": "2009-12-11T04:03:51.407911"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-19T13:00:37.660146"}, "latest_revision": 2, "key": "/works/OL11119851W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4640637A"}}], "subject_people": ["Stuart Symington (1901-)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11120174W 2 2010-01-19T13:06:06.982934 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:03:58.041317"}, "title": "An oration delivered at East Guilford, in Connecticut the Fourth of July, 1801", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T13:06:06.982934"}, "latest_revision": 2, "key": "/works/OL11120174W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4640709A"}}], "type": {"key": "/type/work"}, "subjects": ["Fourth of July orations"], "revision": 2}
+/type/work /works/OL11120243W 1 2009-12-11T04:03:58.041317 {"title": "Meteorological essays", "created": {"type": "/type/datetime", "value": "2009-12-11T04:03:58.041317"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:03:58.041317"}, "latest_revision": 1, "key": "/works/OL11120243W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4640742A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11120283W 1 2009-12-11T04:03:58.041317 {"title": "Sam\u0101\u02be jan\u016bb\u012byah", "created": {"type": "/type/datetime", "value": "2009-12-11T04:03:58.041317"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:03:58.041317"}, "latest_revision": 1, "key": "/works/OL11120283W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4640768A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11120487W 1 2009-12-11T04:03:58.041317 {"title": "Une croissance", "created": {"type": "/type/datetime", "value": "2009-12-11T04:03:58.041317"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:03:58.041317"}, "latest_revision": 1, "key": "/works/OL11120487W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4640868A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11120623W 2 2010-01-19T13:06:06.982934 {"title": "Ba\u1e45kimacandra, j\u012bbana o s\u0101hitya", "created": {"type": "/type/datetime", "value": "2009-12-11T04:03:58.041317"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-19T13:06:06.982934"}, "latest_revision": 2, "key": "/works/OL11120623W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4640950A"}}], "subject_people": ["Bankim Chandra Chatterji (1838-1894)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11120629W 3 2010-12-03T19:19:45.650719 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T19:19:45.650719"}, "latest_revision": 3, "key": "/works/OL11120629W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4640950A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T04:03:58.041317"}, "title": "Rab\u012bndran\u0101thera Sphuli\u1e45ga", "subjects": ["Authors, Bengali", "Autographs", "Bengali Authors"], "subject_people": ["Rabindranath Tagore (1861-1941)"], "subject_times": ["20th century"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11121338W 1 2009-12-11T04:04:04.981034 {"title": "The formative period of the federal reserve system (during the world crisis)", "created": {"type": "/type/datetime", "value": "2009-12-11T04:04:04.981034"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:04:04.981034"}, "latest_revision": 1, "key": "/works/OL11121338W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4641362A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11121363W 2 2010-12-04T00:55:45.622018 {"last_modified": {"type": "/type/datetime", "value": "2010-12-04T00:55:45.622018"}, "title": "The Federal Trade Commission", "created": {"type": "/type/datetime", "value": "2009-12-11T04:04:04.981034"}, "subjects": ["Federal Trade Commission"], "latest_revision": 2, "key": "/works/OL11121363W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4641380A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL1112145W 2 2010-01-19T13:12:17.834301 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:31:18.866684"}, "title": "August 1914, the coming of the war", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T13:12:17.834301"}, "latest_revision": 2, "key": "/works/OL1112145W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL114319A"}}], "type": {"key": "/type/work"}, "subjects": ["World War, 1914-1918"], "revision": 2}
+/type/work /works/OL11121597W 1 2009-12-11T04:04:04.981034 {"title": "Dharat\u012b de h\u0101\u1e5be", "created": {"type": "/type/datetime", "value": "2009-12-11T04:04:04.981034"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:04:04.981034"}, "latest_revision": 1, "key": "/works/OL11121597W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4641478A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11121770W 2 2010-01-19T13:12:17.834301 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:04:04.981034"}, "title": "A few neglected Scriptures recollected and believed by the Baptist Church of Jesus Christ in Amenia Town, under the particular watch and diligent care of Obed Hervey, Silvanus Holly, and John Winchell, elders. Or, principles in which we differ from many of the churches of our acquaintance, and in which, we think, they differ from the Gospel Rule and pattern shewn unto us", "subject_places": ["New York (State)", "Amenia"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T13:12:17.834301"}, "latest_revision": 2, "key": "/works/OL11121770W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4641559A"}}], "type": {"key": "/type/work"}, "subjects": ["Baptists", "Controversial literature"], "revision": 2}
+/type/work /works/OL11121819W 2 2010-12-04T01:02:34.773505 {"last_modified": {"type": "/type/datetime", "value": "2010-12-04T01:02:34.773505"}, "title": "The Baltic Exchange", "created": {"type": "/type/datetime", "value": "2009-12-11T04:04:04.981034"}, "subjects": ["Baltic Mercantile and Shipping Exchange"], "latest_revision": 2, "key": "/works/OL11121819W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4641594A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11121822W 1 2009-12-11T04:04:04.981034 {"title": "Sources for a history of the English Austin friars", "created": {"type": "/type/datetime", "value": "2009-12-11T04:04:04.981034"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:04:04.981034"}, "latest_revision": 1, "key": "/works/OL11121822W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4641597A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11122215W 2 2010-01-19T13:12:17.834301 {"title": "Kawitr\u012b Ammrit\u0101 Pr\u012btama : Sunehu\u1e5be, wishesha adhiaina", "created": {"type": "/type/datetime", "value": "2009-12-11T04:04:17.118601"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-19T13:12:17.834301"}, "latest_revision": 2, "key": "/works/OL11122215W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4641784A"}}], "subject_people": ["Amrita Pritam (1919-2005)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11122256W 1 2009-12-11T04:04:17.118601 {"title": "Assalto ao caf\u00e9", "created": {"type": "/type/datetime", "value": "2009-12-11T04:04:17.118601"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:04:17.118601"}, "latest_revision": 1, "key": "/works/OL11122256W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4641812A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11122383W 2 2010-01-19T13:12:17.834301 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:04:17.118601"}, "title": "Development plan maps", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T13:12:17.834301"}, "latest_revision": 2, "key": "/works/OL11122383W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4641856A"}}], "type": {"key": "/type/work"}, "subjects": ["Color in cartography", "Map printing"], "revision": 2}
+/type/work /works/OL11122386W 3 2010-12-03T12:41:07.204273 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:04:17.118601"}, "subject_places": ["Sub-Saharan Africa"], "subjects": ["Games", "Games, Primitive", "Primitive Games"], "latest_revision": 3, "key": "/works/OL11122386W", "title": "Recherche des \u00e9l\u00e9ments d'une sociologie des peuples africains \u00e0 partir de leur jeux", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4641858A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T12:41:07.204273"}, "revision": 3}
+/type/work /works/OL1112254W 5 2020-07-14T00:59:23.392434 {"last_modified": {"type": "/type/datetime", "value": "2020-07-14T00:59:23.392434"}, "title": "Roger Williams", "created": {"type": "/type/datetime", "value": "2009-12-09T20:31:18.866684"}, "covers": [1281252], "subject_places": ["Rhode Island"], "subjects": ["History"], "subject_people": ["Roger Williams (1604?-1683)"], "key": "/works/OL1112254W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL114322A"}}], "latest_revision": 5, "subject_times": ["Colonial period, ca. 1600-1775"], "type": {"key": "/type/work"}, "revision": 5}
+/type/work /works/OL11122556W 3 2022-05-27T17:15:54.173005 {"title": "OR 69", "key": "/works/OL11122556W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4641948A"}}], "type": {"key": "/type/work"}, "subjects": ["Congresses", "Operations research"], "covers": [12753897], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T04:04:17.118601"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-27T17:15:54.173005"}}
+/type/work /works/OL11122832W 1 2009-12-11T04:04:17.118601 {"title": "Pamyatnye vstrechi", "created": {"type": "/type/datetime", "value": "2009-12-11T04:04:17.118601"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:04:17.118601"}, "latest_revision": 1, "key": "/works/OL11122832W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4642081A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11122851W 3 2010-12-03T12:40:42.161742 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:04:17.118601"}, "subject_places": ["Windham (Conn.)"], "subjects": ["Church history", "Great Awakening", "Separate Church (Scotland, Conn.)", "Separatists", "Third Church (Windham, Conn.)"], "latest_revision": 3, "key": "/works/OL11122851W", "title": "An answer of the pastor and brethren of the Third Church in Windham, to twelve articles, exhibited by several of its separating members, as reasons of their separation", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4642096A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T12:40:42.161742"}, "revision": 3}
+/type/work /works/OL11123086W 1 2009-12-11T04:04:23.844364 {"title": "Listovki pervykh let sovetskoi vlasti 1917-1925", "created": {"type": "/type/datetime", "value": "2009-12-11T04:04:23.844364"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:04:23.844364"}, "latest_revision": 1, "key": "/works/OL11123086W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4642214A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11123200W 2 2010-01-19T13:18:28.838683 {"title": "La politique de St. Pie V en France 1566-1572", "created": {"type": "/type/datetime", "value": "2009-12-11T04:04:23.844364"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-19T13:18:28.838683"}, "latest_revision": 2, "key": "/works/OL11123200W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4642285A"}}], "subject_people": ["Pius V Saint"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11123307W 2 2010-01-19T13:18:28.838683 {"title": "De Gaulle's foreign policy, 1944-1946", "created": {"type": "/type/datetime", "value": "2009-12-11T04:04:23.844364"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-19T13:18:28.838683"}, "latest_revision": 2, "key": "/works/OL11123307W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4642354A"}}], "subject_people": ["Charles de Gaulle (1890-1970)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11123404W 1 2009-12-11T04:04:23.844364 {"title": "La socie te seigneuriale franc \u00b7aise, 1050-1270", "created": {"type": "/type/datetime", "value": "2009-12-11T04:04:23.844364"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:04:23.844364"}, "latest_revision": 1, "key": "/works/OL11123404W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4642408A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11123567W 1 2009-12-11T04:04:23.844364 {"title": "Manuelz\u00e3o e Miguilim (\"Corpo de baile -)", "created": {"type": "/type/datetime", "value": "2009-12-11T04:04:23.844364"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:04:23.844364"}, "latest_revision": 1, "key": "/works/OL11123567W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4642494A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11123650W 2 2022-10-24T01:46:04.145943 {"title": "The Black Death in the fourteenth century", "key": "/works/OL11123650W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL113809A"}}], "type": {"key": "/type/work"}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T04:04:23.844364"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-24T01:46:04.145943"}}
+/type/work /works/OL11124130W 3 2017-03-27T21:39:32.332010 {"title": "The life of Sir Thomas Smith", "created": {"type": "/type/datetime", "value": "2009-12-11T04:04:29.980040"}, "last_modified": {"type": "/type/datetime", "value": "2017-03-27T21:39:32.332010"}, "latest_revision": 3, "key": "/works/OL11124130W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1873331A"}}], "subject_people": ["Thomas Smith Sir (1513-1577)"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11124314W 3 2011-03-30T03:19:32.828631 {"subtitle": "by Herbert Branston Gray.", "last_modified": {"type": "/type/datetime", "value": "2011-03-30T03:19:32.828631"}, "latest_revision": 3, "key": "/works/OL11124314W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4642910A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T04:04:29.980040"}, "title": "The public schools and the empire", "subject_places": ["Great Britain"], "subjects": ["Education"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11124443W 3 2010-12-03T14:19:18.713351 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:04:29.980040"}, "subject_places": ["Hudson Bay"], "subjects": ["Hudson's Bay Company"], "latest_revision": 3, "key": "/works/OL11124443W", "title": "James Isham's observations on Hudsons Bay, 1743", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4642979A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:19:18.713351"}, "revision": 3}
+/type/work /works/OL11124981W 3 2010-12-04T05:16:47.032424 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:04:29.980040"}, "subject_places": ["United States"], "subjects": ["Agricultural societies", "Agriculture", "Economic aspects", "Economic aspects of Agriculture"], "latest_revision": 3, "key": "/works/OL11124981W", "title": "Social responsibility in farm leadership", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4643290A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-04T05:16:47.032424"}, "revision": 3}
+/type/work /works/OL11125083W 2 2010-01-19T13:29:39.733534 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:04:37.162036"}, "title": "Taxation of regulated investment companies", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T13:29:39.733534"}, "latest_revision": 2, "key": "/works/OL11125083W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4643306A"}}], "type": {"key": "/type/work"}, "subjects": ["Taxation", "Securities", "Mutual funds"], "revision": 2}
+/type/work /works/OL11125124W 3 2019-07-19T12:27:05.776076 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:04:37.162036"}, "subjects": ["Balance of payments", "International economic relations"], "latest_revision": 3, "key": "/works/OL11125124W", "title": "The problem of international economic equilibrium", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4643329A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2019-07-19T12:27:05.776076"}, "covers": [8744671], "revision": 3}
+/type/work /works/OL11125156W 3 2010-12-03T12:39:43.378960 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T12:39:43.378960"}, "title": "Generative CAI in analytic geometry", "created": {"type": "/type/datetime", "value": "2009-12-11T04:04:37.162036"}, "subjects": ["Analytic Geometry", "Computer-assisted instruction", "Geometry, Analytic"], "latest_revision": 3, "key": "/works/OL11125156W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4643348A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1112531W 3 2010-07-20T13:34:40.761153 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:31:25.981403"}, "title": "The conditions of industrial peace", "last_modified": {"type": "/type/datetime", "value": "2010-07-20T13:34:40.761153"}, "latest_revision": 3, "key": "/works/OL1112531W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL114334A"}}], "type": {"key": "/type/work"}, "subjects": ["Industrial policy", "Arbitration, Industrial", "Wages", "Industrial organization", "Industrial Arbitration"], "revision": 3}
+/type/work /works/OL11126109W 3 2020-04-06T19:19:34.543907 {"last_modified": {"type": "/type/datetime", "value": "2020-04-06T19:19:34.543907"}, "title": "Sat\u014d cello school", "created": {"type": "/type/datetime", "value": "2009-12-11T04:04:44.003292"}, "subjects": ["Violoncello", "Methods"], "latest_revision": 3, "key": "/works/OL11126109W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2761107A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11126235W 2 2010-01-19T14:16:55.897205 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:04:44.003292"}, "title": "Effects of training on the oxygen consumption of three types of muscular contraction.", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T14:16:55.897205"}, "latest_revision": 2, "key": "/works/OL11126235W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4644027A"}}], "type": {"key": "/type/work"}, "subjects": ["Respiration"], "revision": 2}
+/type/work /works/OL1112645W 9 2020-08-13T03:33:04.419286 {"covers": [5775071], "last_modified": {"type": "/type/datetime", "value": "2020-08-13T03:33:04.419286"}, "latest_revision": 9, "key": "/works/OL1112645W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL114341A"}}], "created": {"type": "/type/datetime", "value": "2009-12-09T20:31:25.981403"}, "title": "Ocean to ocean on horseback", "subject_places": ["Rochester (N.Y.)", "United States"], "subjects": ["Description and travel", "Horses"], "type": {"key": "/type/work"}, "revision": 9}
+/type/work /works/OL11126535W 2 2010-01-19T14:16:55.897205 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:04:44.003292"}, "title": "Systematic status of a South American frog", "subject_places": ["South America"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T14:16:55.897205"}, "latest_revision": 2, "key": "/works/OL11126535W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4644197A"}}], "type": {"key": "/type/work"}, "subjects": ["Frogs", "Allophryne ruthveni"], "revision": 2}
+/type/work /works/OL11127108W 2 2010-01-19T14:16:55.897205 {"title": "Introduccio n a Donoso Corte s", "created": {"type": "/type/datetime", "value": "2009-12-11T04:04:50.491262"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-19T14:16:55.897205"}, "latest_revision": 2, "key": "/works/OL11127108W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4644497A"}}], "subject_people": ["Juan Donoso Cortes"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11127226W 1 2009-12-11T04:04:50.491262 {"title": "Les gue rillas pe ruviennes de 1965", "created": {"type": "/type/datetime", "value": "2009-12-11T04:04:50.491262"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:04:50.491262"}, "latest_revision": 1, "key": "/works/OL11127226W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4644577A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11127651W 1 2009-12-11T04:04:50.491262 {"title": "Etapas de acumulacio n y alianzas de clases en la Argentina 1930-1970", "created": {"type": "/type/datetime", "value": "2009-12-11T04:04:50.491262"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:04:50.491262"}, "latest_revision": 1, "key": "/works/OL11127651W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4644776A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11127720W 2 2010-01-19T14:23:55.367186 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:04:50.491262"}, "title": "Storia ed arte nella provincia ed antica Diocesi de Como", "subject_places": ["Italy", "Como (Italy : Province)", "Como (Province)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T14:23:55.367186"}, "latest_revision": 2, "key": "/works/OL11127720W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4644828A"}}], "type": {"key": "/type/work"}, "subjects": ["Art", "History"], "revision": 2}
+/type/work /works/OL11127851W 2 2010-01-19T14:23:55.367186 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:04:50.491262"}, "title": "Federal legislation on Indian education 1819-1970", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T14:23:55.367186"}, "latest_revision": 2, "key": "/works/OL11127851W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4644915A"}}], "type": {"key": "/type/work"}, "subjects": ["Education", "Indians of North America"], "revision": 2}
+/type/work /works/OL11128651W 2 2010-01-19T14:23:55.367186 {"title": "Ludwig Tieck", "created": {"type": "/type/datetime", "value": "2009-12-11T04:04:56.758990"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-19T14:23:55.367186"}, "latest_revision": 2, "key": "/works/OL11128651W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4645257A"}}], "subject_people": ["Ludwig Tieck (1773-1853)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL1112881W 7 2020-09-10T10:19:01.319322 {"last_modified": {"type": "/type/datetime", "value": "2020-09-10T10:19:01.319322"}, "title": "Shakespeare's London", "created": {"type": "/type/datetime", "value": "2009-12-09T20:31:25.981403"}, "covers": [10065663], "subject_places": ["England", "England) Westminster (London", "London", "London (England)", "Westminster (London, England)"], "subjects": ["Description", "Description and travel", "Homes and haunts", "Contemporary England", "Biography"], "subject_people": ["William Shakespeare (1564-1616)"], "key": "/works/OL1112881W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL114370A"}}], "latest_revision": 7, "type": {"key": "/type/work"}, "revision": 7}
+/type/work /works/OL11129115W 3 2010-12-03T12:42:00.088097 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:05:05.239348"}, "subject_places": ["United States"], "subjects": ["Labor unions", "Moral and ethical aspects", "Moral and ethical aspects of Labor unions"], "latest_revision": 3, "key": "/works/OL11129115W", "title": "The morality of a union-free environment", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4645519A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T12:42:00.088097"}, "revision": 3}
+/type/work /works/OL11129313W 2 2010-01-19T14:30:30.392116 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:05:05.239348"}, "title": "Among the trees", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T14:30:30.392116"}, "latest_revision": 2, "key": "/works/OL11129313W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4645664A"}}], "type": {"key": "/type/work"}, "subjects": ["Botany", "Juvenile literature"], "revision": 2}
+/type/work /works/OL11129365W 3 2010-12-03T12:42:00.088097 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T12:42:00.088097"}, "title": "The effects of relatively intense physical activity on the body composition of prepubertal females", "created": {"type": "/type/datetime", "value": "2009-12-11T04:05:05.239348"}, "subjects": ["Body composition", "Exercise", "Physiological aspects", "Physiological aspects of Exercise"], "latest_revision": 3, "key": "/works/OL11129365W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4645710A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11129631W 2 2010-01-19T14:30:30.392116 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:05:05.239348"}, "title": "Utilization of fluorocarbon polymers and immobilized enzymes for liquid chromatography", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T14:30:30.392116"}, "latest_revision": 2, "key": "/works/OL11129631W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4645897A"}}], "type": {"key": "/type/work"}, "subjects": ["Liquid chromatography"], "revision": 2}
+/type/work /works/OL1113001W 3 2010-04-28T07:18:51.218399 {"title": "Earth of Cualann", "created": {"type": "/type/datetime", "value": "2009-12-09T20:31:25.981403"}, "covers": [5952896], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:18:51.218399"}, "latest_revision": 3, "key": "/works/OL1113001W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL114386A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11130951W 2 2010-01-19T14:36:49.775113 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:05:12.703591"}, "title": "Social accounting approaches to water resource use in economic development", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T14:36:49.775113"}, "latest_revision": 2, "key": "/works/OL11130951W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4646626A"}}], "type": {"key": "/type/work"}, "subjects": ["Water", "Water quality management", "Economic aspects", "Costs", "Pollution"], "revision": 2}
+/type/work /works/OL11131087W 3 2010-12-03T13:03:30.127748 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:03:30.127748"}, "title": "The Scots musical museum in six volumes", "created": {"type": "/type/datetime", "value": "2009-12-11T04:05:20.169067"}, "subjects": ["Ballads, Scots", "Folk songs, Scots", "Scots Ballads", "Scots Folk songs", "Scottish Songs", "Songs, Scottish"], "latest_revision": 3, "key": "/works/OL11131087W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4646700A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11131121W 3 2012-05-20T13:18:52.023130 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:05:20.169067"}, "subject_places": ["Massachusetts"], "subjects": ["Militia"], "latest_revision": 3, "key": "/works/OL11131121W", "title": "The committee appointed by an order of the House of Representatives ... to inquire into the state of the militia ... ask leave to report in part ..", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL159491A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-20T13:18:52.023130"}, "revision": 3}
+/type/work /works/OL11131728W 2 2010-01-19T17:30:29.930923 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:05:20.169067"}, "title": "Krest\u02b9i\ufe20a\ufe21nstvo i nat\ufe20s\ufe21ionaly v revoli\ufe20o\ufe21 t\ufe20s\ufe21ionnom dvizhenii razinshchina", "subject_places": ["Soviet Union"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T17:30:29.930923"}, "latest_revision": 2, "key": "/works/OL11131728W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4647113A"}}], "subject_times": ["Revolution, 1917-1921"], "type": {"key": "/type/work"}, "subjects": ["History", "Peasantry"], "revision": 2}
+/type/work /works/OL11131797W 3 2010-12-04T00:39:20.654293 {"last_modified": {"type": "/type/datetime", "value": "2010-12-04T00:39:20.654293"}, "title": "Treasures", "created": {"type": "/type/datetime", "value": "2009-12-11T04:05:20.169067"}, "subjects": ["American Craft Museum (New York, N.Y.)", "Exhibitions", "Jewelry", "Metal-work"], "latest_revision": 3, "key": "/works/OL11131797W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4647163A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11132339W 2 2010-01-19T17:30:29.930923 {"title": "Les Pens\u00e9es de Pascal en France, de 1842 \u00e0 1942", "created": {"type": "/type/datetime", "value": "2009-12-11T04:05:26.965210"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-19T17:30:29.930923"}, "latest_revision": 2, "key": "/works/OL11132339W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4647449A"}}], "subject_people": ["Blaise Pascal (1623-1662)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11132350W 3 2010-12-03T14:05:57.553081 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:05:57.553081"}, "latest_revision": 3, "key": "/works/OL11132350W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4647451A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T04:05:26.965210"}, "title": "Op 'n' pop", "subject_places": ["Ohio", "Oxford"], "subjects": ["Art, Modern", "Exhibitions", "Miami University (Oxford, Ohio)", "Miami University (Oxford, Ohio). Art Museum", "Modern Art", "Optical art", "Pop art"], "subject_times": ["20th century"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11132535W 2 2010-01-19T17:34:47.467766 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:05:26.965210"}, "title": "The emigrant's note book and guide", "subject_places": ["Canada"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T17:34:47.467766"}, "latest_revision": 2, "key": "/works/OL11132535W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4647589A"}}], "type": {"key": "/type/work"}, "subjects": ["Description and travel"], "revision": 2}
+/type/work /works/OL11132712W 2 2010-01-19T17:34:47.467766 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:05:26.965210"}, "title": "Quadriceps/hamstrings strength ratios and hip flexibility as predictors of hamstring injuries", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T17:34:47.467766"}, "latest_revision": 2, "key": "/works/OL11132712W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4647742A"}}], "type": {"key": "/type/work"}, "subjects": ["Muscles", "Muscle strength", "Leg", "Wounds and injuries"], "revision": 2}
+/type/work /works/OL11133073W 3 2010-12-03T12:45:19.336961 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:05:26.965210"}, "subjects": ["Sun (New York, N.Y.)"], "subject_people": ["Charles A. Dana (1819-1897)"], "key": "/works/OL11133073W", "title": "The biter bit", "latest_revision": 3, "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4647884A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T12:45:19.336961"}, "revision": 3}
+/type/work /works/OL11133138W 4 2012-05-27T19:22:54.389833 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:05:33.638729"}, "subject_places": ["Pennsylvania"], "subjects": ["Missionaries", "Missions", "Presbyterian Church in the U.S.A.", "Presbyterian Church in the U.S.A. General Assembly. Standing Committee of Missions"], "latest_revision": 4, "key": "/works/OL11133138W", "title": "The General Assembly of the Presbyterian Church in the United States of America, at their session in May, A.D. 1802, appointed a Standing Committee of Missions ..", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL283869A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-27T19:22:54.389833"}, "revision": 4}
+/type/work /works/OL1113353W 1 2009-12-09T20:31:33.058665 {"title": "Is Christianity a supernatural revelation?", "created": {"type": "/type/datetime", "value": "2009-12-09T20:31:33.058665"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T20:31:33.058665"}, "latest_revision": 1, "key": "/works/OL1113353W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL114403A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11133756W 1 2009-12-11T04:05:33.638729 {"title": "Chou Tso-jen wen hs\u00fcan", "created": {"type": "/type/datetime", "value": "2009-12-11T04:05:33.638729"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:05:33.638729"}, "latest_revision": 1, "key": "/works/OL11133756W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4648322A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11133871W 1 2009-12-11T04:05:33.638729 {"title": "The spoils", "created": {"type": "/type/datetime", "value": "2009-12-11T04:05:33.638729"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:05:33.638729"}, "latest_revision": 1, "key": "/works/OL11133871W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4648381A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11134226W 2 2010-01-19T17:39:23.251969 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:05:38.511599"}, "title": "Mineral resources of northern Mexico", "subject_places": ["Mexico"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T17:39:23.251969"}, "latest_revision": 2, "key": "/works/OL11134226W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4648599A"}}], "type": {"key": "/type/work"}, "subjects": ["Mines and mineral resources", "Description and travel"], "revision": 2}
+/type/work /works/OL11134546W 3 2014-06-23T12:54:30.190585 {"description": {"type": "/type/text", "value": "This is a 20th century guidebook; a team effort sponsored by the Work Projects Administration in the 1930s. It contains a description of the state as well as numerous brief histories of towns and locales. This description is from the book\u2019s Preface:\r\n\r\n\u201cThe book is divided into three parts. The first of these is a series of essays, most of them historical in nature, intended to paint in large strokes the State\u2019s development and to furnish a background against which the detailed information that follows may become more intelligible. The second section describes the State\u2019s nine largest cities. Here the histories of the cities are briefly sketched and their points of interest described for the traveller who wishes to look about him. The third section is a series of selected tours covering the main highways.\u201d"}, "links": [{"url": "http://www.envisionthepast.com/wisconsin-explorers-travelers/", "type": {"key": "/type/link"}, "title": "Wisconsin History: Explorers & Travelers"}], "title": "Wisconsin", "created": {"type": "/type/datetime", "value": "2009-12-11T04:05:38.511599"}, "last_modified": {"type": "/type/datetime", "value": "2014-06-23T12:54:30.190585"}, "subject_places": ["Wisconsin"], "subjects": ["Guidebooks", "Description and travel"], "latest_revision": 3, "key": "/works/OL11134546W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4648791A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11135057W 3 2010-12-03T15:00:30.772664 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:05:38.511599"}, "subject_places": ["South Carolina"], "subjects": ["Pay, allowances", "United States", "United States. Dept. of the Navy", "United States. Navy"], "latest_revision": 3, "key": "/works/OL11135057W", "title": "Employes in the Navy Department from South Carolina", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4648820A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:00:30.772664"}, "revision": 3}
+/type/work /works/OL11135385W 3 2010-12-03T14:46:11.587224 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:05:39.762912"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL11135385W", "title": "J. D. Graham", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4648820A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:46:11.587224"}, "revision": 3}
+/type/work /works/OL11135877W 2 2010-01-19T17:49:34.369845 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:05:39.762912"}, "title": "Sale of land in Wallabout Bay to the City of Brooklyn", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T17:49:34.369845"}, "latest_revision": 2, "key": "/works/OL11135877W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4648820A"}}], "type": {"key": "/type/work"}, "subjects": ["Public lands", "Land tenure", "Rivers"], "revision": 2}
+/type/work /works/OL11136028W 2 2010-01-19T17:49:34.369845 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:05:39.762912"}, "title": "Statement of Hon. Victor H. Metcalf, Secretary of the Navy", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T17:49:34.369845"}, "latest_revision": 2, "key": "/works/OL11136028W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4648820A"}}], "type": {"key": "/type/work"}, "subjects": ["Shipbuilding"], "revision": 2}
+/type/work /works/OL11136215W 3 2010-12-03T15:20:37.059169 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:05:40.731482"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL11136215W", "title": "To advance Maj. Ralph S. Keyser on the lineal list of Officers of the United States Marine Corps so that he will take rank next after Maj. John R. Henley", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4648820A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:20:37.059169"}, "revision": 3}
+/type/work /works/OL11136343W 3 2010-12-03T14:02:51.667312 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:02:51.667312"}, "title": "Wearing of Uniforms by Honorably Discharged Soldiers, Sailors, and Marines", "created": {"type": "/type/datetime", "value": "2009-12-11T04:05:40.731482"}, "subjects": ["Appointments and retirements", "Law and legislation", "Military uniforms", "United States", "United States. Navy"], "latest_revision": 3, "key": "/works/OL11136343W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4648820A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11136585W 3 2010-12-03T14:04:20.705067 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:05:40.731482"}, "subjects": ["Promotions", "United States", "United States. Navy. Civil Engineer Corps"], "subject_people": ["Robert L McLellan"], "key": "/works/OL11136585W", "title": "Hearing on (H.R. 2583) for the Relief of Lieut. Robert L. McLellan, Civil Engineer Corps, U.S. Navy", "latest_revision": 3, "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4648820A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:04:20.705067"}, "revision": 3}
+/type/work /works/OL11136776W 3 2010-12-03T14:04:20.705067 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:04:20.705067"}, "latest_revision": 3, "key": "/works/OL11136776W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4648820A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T04:05:40.731482"}, "title": "Hearing on H.R. 851, for the Relief of Richard Kirchhoff", "subject_places": ["United States"], "subjects": ["Law and legislation", "Military deserters", "Military discharge", "Pay, allowances", "United States", "United States. Navy"], "subject_people": ["Richard Kirchhoff"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11137337W 6 2012-11-28T11:20:27.672194 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:05:45.874654"}, "subject_places": ["Dominican Republic"], "subjects": ["Admission", "American Military assistance", "Appropriations and expenditures", "Armed Forces", "Military assistance, American", "Navies", "Navy-yards and naval stations", "Officers", "Ordnance and ordnance stores", "United States", "United States Naval Academy", "United States. Navy"], "latest_revision": 6, "key": "/works/OL11137337W", "title": "Naval appropriation bill", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4648820A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-11-28T11:20:27.672194"}, "revision": 6}
+/type/work /works/OL11137381W 2 2010-01-19T17:54:25.581197 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:05:45.874654"}, "title": "Soviet money and finance", "subject_places": ["Soviet Union"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T17:54:25.581197"}, "latest_revision": 2, "key": "/works/OL11137381W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4648840A"}}], "type": {"key": "/type/work"}, "subjects": ["Money", "Finance"], "revision": 2}
+/type/work /works/OL11137389W 2 2010-01-19T17:54:25.581197 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:05:45.874654"}, "title": "Baseball is their business", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T17:54:25.581197"}, "latest_revision": 2, "key": "/works/OL11137389W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4648848A"}}], "type": {"key": "/type/work"}, "subjects": ["Baseball"], "revision": 2}
+/type/work /works/OL11137773W 2 2021-11-02T05:34:29.488487 {"title": "Raghuva\u1e43\u015ba mah\u0101k\u0101vya", "key": "/works/OL11137773W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL528A"}}], "type": {"key": "/type/work"}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T04:05:45.874654"}, "last_modified": {"type": "/type/datetime", "value": "2021-11-02T05:34:29.488487"}}
+/type/work /works/OL11137775W 3 2021-11-02T05:34:29.488487 {"title": "The Raghuvan\u015ba", "key": "/works/OL11137775W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL528A"}}], "type": {"key": "/type/work"}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T04:05:45.874654"}, "last_modified": {"type": "/type/datetime", "value": "2021-11-02T05:34:29.488487"}}
+/type/work /works/OL11137893W 3 2010-12-03T12:43:43.923189 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:05:45.874654"}, "subject_places": ["Pullman", "Washington (State)"], "subjects": ["Athletics", "Attitudes", "Evaluation", "Intramural sports", "Students", "Washington State University"], "latest_revision": 3, "key": "/works/OL11137893W", "title": "Evaluation of the Washington State University intramural sports program", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4649133A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T12:43:43.923189"}, "revision": 3}
+/type/work /works/OL11137912W 2 2010-01-19T18:00:07.120313 {"title": "Lope de Vega", "created": {"type": "/type/datetime", "value": "2009-12-11T04:05:45.874654"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-19T18:00:07.120313"}, "latest_revision": 2, "key": "/works/OL11137912W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4649144A"}}], "subject_people": ["Lope de Vega (1562-1635)"], "type": {"key": "/type/work"}, "subjects": ["Criticism and interpretation"], "revision": 2}
+/type/work /works/OL11138096W 2 2010-03-10T07:24:00.670262 {"subtitle": "Romanik und Gotik an der Weser", "title": "Weserbaukunst im Mittelalter", "created": {"type": "/type/datetime", "value": "2009-11-11T19:59:26.452236"}, "last_modified": {"type": "/type/datetime", "value": "2010-03-10T07:24:00.670262"}, "latest_revision": 2, "key": "/works/OL11138096W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4145534A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11138118W 1 2009-12-11T04:05:50.931940 {"title": "Liu ko m\u00eang / Ch\u02bben Ch\u00ea", "created": {"type": "/type/datetime", "value": "2009-12-11T04:05:50.931940"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:05:50.931940"}, "latest_revision": 1, "key": "/works/OL11138118W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4649222A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11138265W 5 2021-05-08T23:24:17.963196 {"title": "Movement patterns and motor education", "subjects": ["Physical education and training", "Locomotion", "Movement", "Physical Education and Training", "Child", "Infant", "Bewegingsleer", "Motoriek", "Bewegungserziehung"], "key": "/works/OL11138265W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4649311A"}}], "type": {"key": "/type/work"}, "covers": [11001401], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2009-12-11T04:05:50.931940"}, "last_modified": {"type": "/type/datetime", "value": "2021-05-08T23:24:17.963196"}}
+/type/work /works/OL11138278W 2 2010-01-19T18:00:07.120313 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:05:50.931940"}, "title": "The Romans and their world", "subject_places": ["Rome"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T18:00:07.120313"}, "latest_revision": 2, "key": "/works/OL11138278W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4649323A"}}], "subject_times": ["Empire, 30 B.C.-476 A.D"], "type": {"key": "/type/work"}, "subjects": ["Civilization", "History"], "revision": 2}
+/type/work /works/OL11138310W 2 2013-08-30T20:01:51.355907 {"title": "Id\u00e9ias de J\u00e9ca Tat\u00fa", "created": {"type": "/type/datetime", "value": "2009-12-11T04:05:50.931940"}, "last_modified": {"type": "/type/datetime", "value": "2013-08-30T20:01:51.355907"}, "latest_revision": 2, "key": "/works/OL11138310W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL93227A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11138397W 2 2010-01-19T18:00:07.120313 {"title": "Tao chiao t\u02bbu ti shih j\u00ean Li Pai chi ch\u02bbi t\u02bbung k\u02bbu", "created": {"type": "/type/datetime", "value": "2009-12-11T04:05:50.931940"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-19T18:00:07.120313"}, "latest_revision": 2, "key": "/works/OL11138397W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4649381A"}}], "subject_people": ["Po Li (701-762)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11138507W 2 2010-01-19T18:00:07.120313 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:05:50.931940"}, "title": "Reclamaciones de indemnizacion por depredaciones de los Indios", "subject_places": ["United States", "New Southwest", "Mexican-American Border Region", "Mexico"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T18:00:07.120313"}, "latest_revision": 2, "key": "/works/OL11138507W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4649446A"}}], "type": {"key": "/type/work"}, "subjects": ["Claims vs. Mexico", "History", "Indians of North America", "Claims vs. United States"], "revision": 2}
+/type/work /works/OL11138641W 1 2009-12-11T04:05:50.931940 {"title": "The dentist in Africa", "created": {"type": "/type/datetime", "value": "2009-12-11T04:05:50.931940"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:05:50.931940"}, "latest_revision": 1, "key": "/works/OL11138641W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4649473A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11138986W 2 2010-01-19T18:04:48.667916 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:05:50.931940"}, "title": "Man\u0101sik wa-ad\u02bb\u012byah al-\u1e24ajj", "subject_places": ["Mecca", "Saudi Arabia"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T18:04:48.667916"}, "latest_revision": 2, "key": "/works/OL11138986W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4649565A"}}], "type": {"key": "/type/work"}, "subjects": ["Muslim pilgrims and pilgrimages", "Customs and practices", "Islam"], "revision": 2}
+/type/work /works/OL11139264W 1 2009-12-11T04:05:56.908183 {"title": "al- \u02bbAfw f\u012b al-Qur\u02be\u0101n wa-al-sunnah", "created": {"type": "/type/datetime", "value": "2009-12-11T04:05:56.908183"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:05:56.908183"}, "latest_revision": 1, "key": "/works/OL11139264W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4649693A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11139292W 3 2010-12-03T12:44:14.534093 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:05:56.908183"}, "subject_places": ["China"], "subjects": ["Bibliography", "Catalogs", "Dongbei shi fan da xue (China)", "Dongbei shi fan da xue (China). Tu shu guan", "Imprints", "Rare books"], "latest_revision": 3, "key": "/works/OL11139292W", "title": "Dongbei shi fan da xue tu shu guan cang gu ji shan ben shu mu jie ti", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4649702A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T12:44:14.534093"}, "revision": 3}
+/type/work /works/OL11139546W 1 2009-12-11T04:05:56.908183 {"title": "Der schweizerische Aussenhandel mit der Dritten Welt 1972-1978", "created": {"type": "/type/datetime", "value": "2009-12-11T04:05:56.908183"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:05:56.908183"}, "latest_revision": 1, "key": "/works/OL11139546W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4649779A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11139560W 1 2009-12-11T04:05:56.908183 {"title": "Ve\u1e37iccattint\u0332e d\u016btan", "created": {"type": "/type/datetime", "value": "2009-12-11T04:05:56.908183"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:05:56.908183"}, "latest_revision": 1, "key": "/works/OL11139560W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4649791A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11139661W 2 2010-01-19T18:04:48.667916 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:05:56.908183"}, "title": "Uigurugo ny\u016bmon", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T18:04:48.667916"}, "latest_revision": 2, "key": "/works/OL11139661W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4649843A"}}], "type": {"key": "/type/work"}, "subjects": ["Grammar", "Uighur language"], "revision": 2}
+/type/work /works/OL1113968W 5 2020-08-12T23:54:18.089250 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:31:33.058665"}, "subjects": ["Scratch dials"], "latest_revision": 5, "key": "/works/OL1113968W", "title": "Primitive sun dials or scratch dials", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL114444A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-08-12T23:54:18.089250"}, "covers": [6262210], "revision": 5}
+/type/work /works/OL11139747W 3 2010-12-03T12:45:19.336961 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T12:45:19.336961"}, "title": "Financial protection against atomic hazards", "created": {"type": "/type/datetime", "value": "2009-12-11T04:05:56.908183"}, "subjects": ["Atomic hazards Insurance", "Insurance, Atomic hazards"], "latest_revision": 3, "key": "/works/OL11139747W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4649887A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11140322W 3 2010-12-03T20:10:46.831586 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T20:10:46.831586"}, "title": "Finansy kapitalisticheskikh gosudarstv", "created": {"type": "/type/datetime", "value": "2009-12-11T04:06:02.839019"}, "subjects": ["Finance", "Finance, Public", "Public Finance"], "latest_revision": 3, "key": "/works/OL11140322W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4650228A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11140489W 1 2009-12-11T04:06:02.839019 {"title": "The game of forgetting", "created": {"type": "/type/datetime", "value": "2009-12-11T04:06:02.839019"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:06:02.839019"}, "latest_revision": 1, "key": "/works/OL11140489W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4650333A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11140714W 2 2010-01-19T18:08:59.145456 {"title": "J\u0101\u1e63uva j\u012bvita kavit\u0101 prasth\u0101na\u1e43", "created": {"type": "/type/datetime", "value": "2009-12-11T04:06:02.839019"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-19T18:08:59.145456"}, "latest_revision": 2, "key": "/works/OL11140714W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4650410A"}}], "subject_people": ["Gurram Joshua (1895-1971)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11141235W 1 2009-12-11T04:06:09.832381 {"title": "Por\u0332kil\u0332i", "created": {"type": "/type/datetime", "value": "2009-12-11T04:06:09.832381"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:06:09.832381"}, "latest_revision": 1, "key": "/works/OL11141235W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4650673A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11141276W 1 2009-12-11T04:06:09.832381 {"title": "Mikkiram\u0101tittan kataika\u1e37", "created": {"type": "/type/datetime", "value": "2009-12-11T04:06:09.832381"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:06:09.832381"}, "latest_revision": 1, "key": "/works/OL11141276W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4650702A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11141543W 1 2009-12-11T04:06:09.832381 {"title": "Tamil\u0332 ma\u1e47i m\u0101lai", "created": {"type": "/type/datetime", "value": "2009-12-11T04:06:09.832381"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:06:09.832381"}, "latest_revision": 1, "key": "/works/OL11141543W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4650854A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11141706W 1 2009-12-11T04:06:09.832381 {"title": "The case of Punjabi Suba", "created": {"type": "/type/datetime", "value": "2009-12-11T04:06:09.832381"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:06:09.832381"}, "latest_revision": 1, "key": "/works/OL11141706W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4650952A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11141868W 2 2010-01-19T18:14:07.787282 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:06:09.832381"}, "title": "Evaluation of the Boeing-Vertol 107 helicopter and spray system for forest application of insecticide", "subject_places": ["Washington", "Oregon", "Idaho"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T18:14:07.787282"}, "latest_revision": 2, "key": "/works/OL11141868W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4651025A"}}], "type": {"key": "/type/work"}, "subjects": ["Aerial spraying and dusting in agriculture", "Equipment and supplies", "Insecticides"], "revision": 2}
+/type/work /works/OL11141895W 1 2009-12-11T04:06:09.832381 {"title": "Arboles de la region oriental del Paraguay: nociones sobre dendrologia", "created": {"type": "/type/datetime", "value": "2009-12-11T04:06:09.832381"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:06:09.832381"}, "latest_revision": 1, "key": "/works/OL11141895W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4651038A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11142034W 3 2010-12-03T12:45:19.336961 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T12:45:19.336961"}, "title": "Negro Baptists and foreign missions", "created": {"type": "/type/datetime", "value": "2009-12-11T04:06:09.832381"}, "subjects": ["African American Baptists", "African American missionaries", "Missions", "National Baptist Convention of the United States of America"], "latest_revision": 3, "key": "/works/OL11142034W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4651128A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11142055W 1 2009-12-11T04:06:09.832381 {"title": "Ve\u1e37\u1e37i vi\u1e37akku", "created": {"type": "/type/datetime", "value": "2009-12-11T04:06:09.832381"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:06:09.832381"}, "latest_revision": 1, "key": "/works/OL11142055W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4651145A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11142271W 3 2012-05-19T22:13:28.453801 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:06:17.197233"}, "subject_places": ["United States"], "subjects": ["Population research"], "latest_revision": 3, "key": "/works/OL11142271W", "title": "Discussion sessions on issues related to population", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL605415A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-19T22:13:28.453801"}, "revision": 3}
+/type/work /works/OL11142537W 3 2010-12-03T14:34:38.495609 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:06:17.197233"}, "subjects": ["Criticism, interpretation", "Koran"], "subject_people": ["\u02bbAbd All\u0101h ibn al-\u02bbAbb\u0101s (d. 688?)"], "key": "/works/OL11142537W", "title": "\u1e62a\u1e25\u012bfat \u02bbAl\u012b ibn Ab\u012b \u1e6cal\u1e25ah", "latest_revision": 3, "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4651423A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:34:38.495609"}, "revision": 3}
+/type/work /works/OL11142779W 2 2020-12-11T15:48:46.158543 {"title": "Ba\u1e63\u012b\u1e63 \u1e25alq", "key": "/works/OL11142779W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4651542A"}}], "type": {"key": "/type/work"}, "description": {"type": "/type/text", "value": "Poems."}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T04:06:17.197233"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-11T15:48:46.158543"}}
+/type/work /works/OL1114307W 4 2011-12-19T13:51:13.952077 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:31:33.058665"}, "subjects": ["Soyfoods", "Soybean", "Varieties"], "latest_revision": 4, "key": "/works/OL1114307W", "title": "Range of adaption of certain varieties of vegetable-type soybeans", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL114470A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2011-12-19T13:51:13.952077"}, "covers": [5566661], "revision": 4}
+/type/work /works/OL11143088W 2 2010-01-19T18:14:07.787282 {"title": "Udet", "created": {"type": "/type/datetime", "value": "2009-12-11T04:06:23.048015"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-19T18:14:07.787282"}, "latest_revision": 2, "key": "/works/OL11143088W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4651736A"}}], "subject_people": ["Ernst Udet"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11143368W 3 2010-12-03T21:24:29.186865 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T21:24:29.186865"}, "title": "O \u017eivotopisn\u00e9m rom\u00e1n\u011b", "created": {"type": "/type/datetime", "value": "2009-12-11T04:06:23.048015"}, "subjects": ["Autobiographic Fiction", "Czech fiction", "Fiction, Autobiographic", "History and criticism"], "latest_revision": 3, "key": "/works/OL11143368W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4651884A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11143666W 2 2010-01-19T18:18:37.840858 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:06:23.048015"}, "title": "Fat controlled, cholesterol restricted diet", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T18:18:37.840858"}, "latest_revision": 2, "key": "/works/OL11143666W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4652019A"}}], "type": {"key": "/type/work"}, "subjects": ["Low-cholesterol diet", "Low-fat diet", "Diet"], "revision": 2}
+/type/work /works/OL11143682W 2 2010-01-19T18:18:37.840858 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:06:23.048015"}, "title": "Planting date effects on yield and quality of oilseed Brassica Spp", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T18:18:37.840858"}, "latest_revision": 2, "key": "/works/OL11143682W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4652020A"}}], "type": {"key": "/type/work"}, "subjects": ["Brassica", "Planting time", "Rapeseed"], "revision": 2}
+/type/work /works/OL1114399W 2 2010-01-19T18:18:37.840858 {"title": "Bairnsfather", "created": {"type": "/type/datetime", "value": "2009-12-09T20:31:40.569650"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-19T18:18:37.840858"}, "latest_revision": 2, "key": "/works/OL1114399W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL114482A"}}], "subject_people": ["Bruce Bairnsfather (1887-)"], "type": {"key": "/type/work"}, "subjects": ["World War, 1914-1918", "Humor, caricatures"], "revision": 2}
+/type/work /works/OL11144019W 3 2011-09-14T11:28:58.075157 {"description": {"type": "/type/text", "value": "It is a reprint of Elisabetta Cantanea Parasole's \"Teatro delle nobili et virtuose donne\". Originally published in Rome, 1616."}, "last_modified": {"type": "/type/datetime", "value": "2011-09-14T11:28:58.075157"}, "title": "Musterbuch fur Stickereien und Spitzen", "created": {"type": "/type/datetime", "value": "2009-12-11T04:06:23.048015"}, "subjects": ["Lace and lace making", "Embroidery"], "subject_people": ["Elisabetta Cantanea Parasole"], "key": "/works/OL11144019W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4652206A"}}], "latest_revision": 3, "subject_times": ["1616"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11144766W 3 2010-12-03T20:15:33.259413 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T20:15:33.259413"}, "title": "al- Fikr al-akhl\u0101q\u012b", "created": {"type": "/type/datetime", "value": "2009-12-11T04:06:29.668459"}, "subjects": ["Comparative Ethics", "Ethics, Comparative", "Islamic ethics"], "latest_revision": 3, "key": "/works/OL11144766W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4652598A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11144840W 1 2009-12-11T04:06:29.668459 {"title": "al- Qi\u1e63\u0101\u1e63 f\u012b al-fiqh al-Isl\u0101m\u012b", "created": {"type": "/type/datetime", "value": "2009-12-11T04:06:29.668459"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:06:29.668459"}, "latest_revision": 1, "key": "/works/OL11144840W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4652623A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11144944W 3 2010-04-28T07:18:51.218399 {"title": "R\u00e9gion administrative de la C\u00f4te-Nord", "created": {"type": "/type/datetime", "value": "2009-12-11T04:06:29.668459"}, "covers": [4048399], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:18:51.218399"}, "latest_revision": 3, "key": "/works/OL11144944W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4652685A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11145055W 1 2009-12-11T04:06:29.668459 {"title": "Apostolok az \u00f3ratornyon", "created": {"type": "/type/datetime", "value": "2009-12-11T04:06:29.668459"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:06:29.668459"}, "latest_revision": 1, "key": "/works/OL11145055W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4652737A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11145067W 3 2010-12-03T12:45:50.633000 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T12:45:50.633000"}, "title": "El simio informatizado", "created": {"type": "/type/datetime", "value": "2009-12-11T04:06:29.668459"}, "subjects": ["Automation", "Social aspects", "Social aspects of Automation", "Social aspects of Technology", "Social aspects of Telecommunication", "Technology", "Technology and civilization", "Telecommunication"], "latest_revision": 3, "key": "/works/OL11145067W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4652742A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11145272W 1 2009-12-11T04:06:35.791874 {"title": "El hechizo de un sue\u00f1o y otros cuentos", "created": {"type": "/type/datetime", "value": "2009-12-11T04:06:35.791874"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:06:35.791874"}, "latest_revision": 1, "key": "/works/OL11145272W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4652829A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11145383W 2 2010-01-19T18:23:29.748859 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:06:35.791874"}, "title": "Can people learn to learn? How to know each other", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T18:23:29.748859"}, "latest_revision": 2, "key": "/works/OL11145383W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4652896A"}}], "type": {"key": "/type/work"}, "subjects": ["International cooperation", "Social problems"], "revision": 2}
+/type/work /works/OL11145459W 2 2010-01-19T18:23:29.748859 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:06:35.791874"}, "title": "Essais dialectiques et critiques sur l'\u00eatre et le conna\u00eetre", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T18:23:29.748859"}, "latest_revision": 2, "key": "/works/OL11145459W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4652931A"}}], "type": {"key": "/type/work"}, "subjects": ["Philosophy"], "revision": 2}
+/type/work /works/OL11145526W 2 2010-01-19T18:23:29.748859 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:06:35.791874"}, "title": "Integrating public health concerns into patent legislation in developing countries", "subject_places": ["Developing countries"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T18:23:29.748859"}, "latest_revision": 2, "key": "/works/OL11145526W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4652961A"}}], "type": {"key": "/type/work"}, "subjects": ["Drugs", "Patent laws and legislation", "Law and legislation", "Public health"], "revision": 2}
+/type/work /works/OL11145542W 2 2010-01-19T18:23:29.748859 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:06:35.791874"}, "title": "Muddy Creek grade control structures, Muddy Creek, Mississippi and Tennessee", "subject_places": ["Muddy Creek (Miss. and Tenn.)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T18:23:29.748859"}, "latest_revision": 2, "key": "/works/OL11145542W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4652969A"}}], "type": {"key": "/type/work"}, "subjects": ["Rock slopes", "Embankments", "Scour (Hydraulic engineering)"], "revision": 2}
+/type/work /works/OL11145710W 3 2010-04-28T07:18:51.218399 {"title": "Die bedeutendsten deutschen Romane des siebzehnten Jahrhunderts", "created": {"type": "/type/datetime", "value": "2009-12-11T04:06:35.791874"}, "covers": [5760577], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:18:51.218399"}, "latest_revision": 3, "key": "/works/OL11145710W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4653045A"}}], "subjects": ["German poetry", "History and criticism"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11145849W 2 2010-01-19T18:23:29.748859 {"title": "K\u0101mak\u014d\u1e6di R\u0101mak\u014d\u1e6di", "created": {"type": "/type/datetime", "value": "2009-12-11T04:06:35.791874"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-19T18:23:29.748859"}, "latest_revision": 2, "key": "/works/OL11145849W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4653118A"}}], "subject_people": ["Bothendra Saraswati 58th hierarch of the Kanchi Kamakoti Math"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11146061W 1 2009-12-11T04:06:35.791874 {"title": "A\u1e6dy\u0101f", "created": {"type": "/type/datetime", "value": "2009-12-11T04:06:35.791874"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:06:35.791874"}, "latest_revision": 1, "key": "/works/OL11146061W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4653231A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11146211W 2 2010-01-19T18:28:25.182024 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:06:41.191749"}, "title": "Authors guide to publication services", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T18:28:25.182024"}, "latest_revision": 2, "key": "/works/OL11146211W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4653290A"}}], "type": {"key": "/type/work"}, "subjects": ["Handbooks, manuals", "Technical writing", "Authorship", "Manuscript preparation (Authorship)"], "revision": 2}
+/type/work /works/OL11146427W 2 2010-01-19T18:28:25.182024 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:06:41.191749"}, "title": "Fat\u1e25 al-b\u0101b", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T18:28:25.182024"}, "latest_revision": 2, "key": "/works/OL11146427W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4653383A"}}], "type": {"key": "/type/work"}, "subjects": ["Islamic theology"], "revision": 2}
+/type/work /works/OL11146644W 3 2010-04-28T07:18:51.218399 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:06:41.191749"}, "title": "Der Maler Adolf Oberm\u00fcllner", "covers": [5292918], "subject_places": ["Austria"], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:18:51.218399"}, "latest_revision": 3, "key": "/works/OL11146644W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4653454A"}}], "subject_people": ["Adolf Oberm\u00fcllner (1833-1898)"], "type": {"key": "/type/work"}, "subjects": ["Painters", "Catalogs", "Biography"], "revision": 3}
+/type/work /works/OL1114713W 5 2020-08-11T09:47:56.729758 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:31:40.569650"}, "subjects": ["History and criticism", "English fiction"], "latest_revision": 5, "key": "/works/OL1114713W", "title": "Novels and novelists", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL114506A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-08-11T09:47:56.729758"}, "covers": [5823148], "revision": 5}
+/type/work /works/OL1114726W 5 2022-12-21T17:17:03.045653 {"subjects": ["Marriage", "History", "Marriage customs and rites"], "key": "/works/OL1114726W", "title": "Brides and bridals", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL114506A"}}], "type": {"key": "/type/work"}, "covers": [6127157], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2009-12-09T20:31:40.569650"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-21T17:17:03.045653"}}
+/type/work /works/OL11147476W 2 2010-01-19T18:32:36.321298 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:06:45.917514"}, "title": "Learning-based position control of a closed-kinematic chain robot end-effector", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T18:32:36.321298"}, "latest_revision": 2, "key": "/works/OL11147476W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4653815A"}}], "type": {"key": "/type/work"}, "subjects": ["Robotics", "Space vehicles", "Design and construction"], "revision": 2}
+/type/work /works/OL11147515W 2 2010-01-19T18:32:36.321298 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:06:45.917514"}, "title": "Distributed control using linear momentum exchange devices", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T18:32:36.321298"}, "latest_revision": 2, "key": "/works/OL11147515W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4653828A"}}], "type": {"key": "/type/work"}, "subjects": ["Large space structures (Astronautics)", "Space frame structures"], "revision": 2}
+/type/work /works/OL11147650W 2 2010-01-19T18:32:36.321298 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:06:45.917514"}, "title": "Analytical caustic surfaces", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T18:32:36.321298"}, "latest_revision": 2, "key": "/works/OL11147650W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4653879A"}}], "type": {"key": "/type/work"}, "subjects": ["Microwave antennas"], "revision": 2}
+/type/work /works/OL1114775W 3 2010-04-28T07:18:51.218399 {"title": "Biographical memoir of Eugene Woldemar Hilgar, 1833-1916", "created": {"type": "/type/datetime", "value": "2009-12-09T20:31:40.569650"}, "covers": [5681754], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:18:51.218399"}, "latest_revision": 3, "key": "/works/OL1114775W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL114515A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11147826W 2 2010-01-19T18:32:36.321298 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:06:45.917514"}, "title": "Notes on implementation of sparsely distributed memory", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T18:32:36.321298"}, "latest_revision": 2, "key": "/works/OL11147826W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4653932A"}}], "type": {"key": "/type/work"}, "subjects": ["Virtual storage (Computer science)"], "revision": 2}
+/type/work /works/OL1114794W 3 2022-12-21T15:44:14.632708 {"title": "Die Eitelkeit und Unsicherheit der Wissenschaften und die Verteidigungsschrift", "key": "/works/OL1114794W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL114517A"}}], "type": {"key": "/type/work"}, "subjects": ["Learning and scholarship", "Scholasticism"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-09T20:31:40.569650"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-21T15:44:14.632708"}}
+/type/work /works/OL1114818W 1 2009-12-09T20:31:40.569650 {"title": "Opera", "created": {"type": "/type/datetime", "value": "2009-12-09T20:31:40.569650"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T20:31:40.569650"}, "latest_revision": 1, "key": "/works/OL1114818W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL114517A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11148238W 2 2010-01-19T18:32:36.321298 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:06:55.577257"}, "title": "An enhanced integrated aerodynamic load/dynamic optimization procedure for helicopter rotor blades", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T18:32:36.321298"}, "latest_revision": 2, "key": "/works/OL11148238W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4654055A"}}], "type": {"key": "/type/work"}, "subjects": ["Helicopters", "Rotary wings"], "revision": 2}
+/type/work /works/OL1114863W 4 2018-02-15T04:39:39.103659 {"subtitle": "di Tomaso Garzoni ...", "covers": [8136722], "last_modified": {"type": "/type/datetime", "value": "2018-02-15T04:39:39.103659"}, "latest_revision": 4, "key": "/works/OL1114863W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL114530A"}}], "created": {"type": "/type/datetime", "value": "2009-12-09T20:31:40.569650"}, "title": "Il serraglio de gli stupori del mondo", "subjects": ["Dreams", "Occultism", "Monsters", "Oracles", "Astrology", "Early works to 1900", "Early works to 1800"], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL1114873W 2 2010-04-20T01:38:04.894173 {"subtitle": "con tre capitoli in fine sopra la pazzia.", "title": "L' hospidale de' pazzi incurabili", "created": {"type": "/type/datetime", "value": "2009-12-09T20:31:40.569650"}, "last_modified": {"type": "/type/datetime", "value": "2010-04-20T01:38:04.894173"}, "latest_revision": 2, "key": "/works/OL1114873W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL114530A"}}], "type": {"key": "/type/work"}, "subjects": ["Early works to 1800", "Mental illness", "Pathological Psychology"], "revision": 2}
+/type/work /works/OL11148746W 2 2010-01-19T18:36:43.493830 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:06:55.577257"}, "title": "A comparison of finite volume flux vector splittings for the Euler equations", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T18:36:43.493830"}, "latest_revision": 2, "key": "/works/OL11148746W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4654222A"}}], "type": {"key": "/type/work"}, "subjects": ["Euler equations of motion", "Flux splitting"], "revision": 2}
+/type/work /works/OL11148958W 2 2010-01-19T18:36:43.493830 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:06:55.577257"}, "title": "Evaluation of a scale-model experiment to investigate long-range acoustic propogation", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T18:36:43.493830"}, "latest_revision": 2, "key": "/works/OL11148958W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4654305A"}}], "type": {"key": "/type/work"}, "subjects": ["Sound-waves"], "revision": 2}
+/type/work /works/OL11149063W 2 2010-01-19T18:36:43.493830 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:06:55.577257"}, "title": "Razmeshchenie proizvoditel\u02b9nykh sil i narodnokhozi\ufe20a\ufe21\u012dstvennye proport\ufe20s\ufe21ii v Kazakhstane", "subject_places": ["Kazakhstan"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T18:36:43.493830"}, "latest_revision": 2, "key": "/works/OL11149063W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4654335A"}}], "type": {"key": "/type/work"}, "subjects": ["Industrial location"], "revision": 2}
+/type/work /works/OL11149084W 2 2010-01-19T18:36:43.493830 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:06:55.577257"}, "title": "Experimental and analytical investigation of axisymmetric supersonic cruise nozzle geometry at Mach numbers form 0.60 to 1.30", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T18:36:43.493830"}, "latest_revision": 2, "key": "/works/OL11149084W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4654342A"}}], "type": {"key": "/type/work"}, "subjects": ["Ultrasonic testing", "Supersonic nozzles"], "revision": 2}
+/type/work /works/OL11149173W 2 2010-01-19T18:36:43.493830 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:07:05.944427"}, "title": "Dynamic delamination buckling in composite laminates under impact loading", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T18:36:43.493830"}, "latest_revision": 2, "key": "/works/OL11149173W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4654367A"}}], "type": {"key": "/type/work"}, "subjects": ["Composite materials", "Delamination", "Buckling", "Impact loads", "Delaminating", "Dynamic loads", "Computerized simulation"], "revision": 2}
+/type/work /works/OL11149282W 2 2010-01-19T18:36:43.493830 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:07:05.944427"}, "title": "Integrated Composite Analyzer (ICAN)", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T18:36:43.493830"}, "latest_revision": 2, "key": "/works/OL11149282W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4654414A"}}], "type": {"key": "/type/work"}, "subjects": ["Computer simulation", "Fibrous composites", "User manuals (Computer programs)", "Structural analysis", "Computer programs", "Fiber composites"], "revision": 2}
+/type/work /works/OL11149729W 2 2010-01-19T18:40:49.535816 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:07:05.944427"}, "title": "Deployable controllable geometry truss beam", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T18:40:49.535816"}, "latest_revision": 2, "key": "/works/OL11149729W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4654603A"}}], "type": {"key": "/type/work"}, "subjects": ["Joints (Engineering)", "Space frame structures"], "revision": 2}
+/type/work /works/OL11149844W 3 2010-12-03T12:45:50.633000 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:07:05.944427"}, "subject_places": ["United States"], "subjects": ["Gearing, Spur", "Mechanical engineering", "Spur Gearing"], "latest_revision": 3, "key": "/works/OL11149844W", "title": "Lubricant jet flow phenomena in spur and helical gears with modified addendums-- for radially directed individual jets", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4654648A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T12:45:50.633000"}, "revision": 3}
+/type/work /works/OL11149861W 2 2010-01-19T18:40:49.535816 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:07:05.944427"}, "title": "Fifth fundamental catalogue (FK5), part 1, basic fundamental stars", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T18:40:49.535816"}, "latest_revision": 2, "key": "/works/OL11149861W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4654656A"}}], "type": {"key": "/type/work"}, "subjects": ["Catalogs", "Stars"], "revision": 2}
+/type/work /works/OL11149925W 2 2010-01-19T18:40:49.535816 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:07:05.944427"}, "title": "Experimental validation of structural optimization methods", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T18:40:49.535816"}, "latest_revision": 2, "key": "/works/OL11149925W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4654671A"}}], "type": {"key": "/type/work"}, "subjects": ["Mathematical optimization", "Vibration (Aeronautics)"], "revision": 2}
+/type/work /works/OL11150355W 2 2010-01-19T18:40:49.535816 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:07:12.329650"}, "title": "Technology projections for solar dynamic power", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T18:40:49.535816"}, "latest_revision": 2, "key": "/works/OL11150355W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4654849A"}}], "type": {"key": "/type/work"}, "subjects": ["Solar energy conversion", "Solar dynamic power systems", "Spacecraft power supplies"], "revision": 2}
+/type/work /works/OL11150516W 2 2010-01-19T18:40:49.535816 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:07:12.329650"}, "title": "Flight-measured pressure characteristics of aft-facing steps in high Reynolds number flow at Mach numbers of 2.20, 2.50, and 2.80 and comparison with other data", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T18:40:49.535816"}, "latest_revision": 2, "key": "/works/OL11150516W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4654906A"}}], "type": {"key": "/type/work"}, "subjects": ["Turbulent boundary layer", "Drag (Aerodynamics)", "Skin friction (Aerodynamics)"], "revision": 2}
+/type/work /works/OL11150597W 2 2010-01-19T18:44:49.831897 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:07:12.329650"}, "title": "Les m\u00e9canismes du cerveau", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T18:44:49.831897"}, "latest_revision": 2, "key": "/works/OL11150597W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4654948A"}}], "type": {"key": "/type/work"}, "subjects": ["Brain", "Localization of functions"], "revision": 2}
+/type/work /works/OL11151180W 4 2011-10-19T01:31:28.519373 {"subtitle": "an interviewing strategy featuring 75 proven interview questions", "last_modified": {"type": "/type/datetime", "value": "2011-10-19T01:31:28.519373"}, "latest_revision": 4, "key": "/works/OL11151180W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL3022613A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T04:07:17.384688"}, "title": "Hiring a top salesperson", "subject_places": ["United States"], "subjects": ["Interviewing", "Employment interviewing"], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL11151202W 3 2010-12-03T14:15:39.868574 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:15:39.868574"}, "title": "Navy modernization", "created": {"type": "/type/datetime", "value": "2009-12-11T04:07:17.384688"}, "subjects": ["Appropriations and expenditures", "Cost of Navies", "Navies, Cost of", "United States", "United States. Navy"], "latest_revision": 3, "key": "/works/OL11151202W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4655246A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11151494W 3 2018-12-30T05:38:57.140983 {"last_modified": {"type": "/type/datetime", "value": "2018-12-30T05:38:57.140983"}, "title": "Kamsutrama", "created": {"type": "/type/datetime", "value": "2009-12-11T04:07:17.384688"}, "subjects": ["Love"], "latest_revision": 3, "key": "/works/OL11151494W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2531003A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11151531W 1 2009-12-11T04:07:17.384688 {"title": "Boca do inferno", "created": {"type": "/type/datetime", "value": "2009-12-11T04:07:17.384688"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:07:17.384688"}, "latest_revision": 1, "key": "/works/OL11151531W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4655357A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11151549W 3 2010-04-28T07:18:51.218399 {"title": "Characterbilder aus der Bayerischen Geschichte, zur Erl\u00e4uterung der Wandbilder des bayerischen ..", "created": {"type": "/type/datetime", "value": "2009-12-11T04:07:17.384688"}, "covers": [6147452], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:18:51.218399"}, "latest_revision": 3, "key": "/works/OL11151549W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4655371A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11151707W 2 2010-01-19T18:49:23.095306 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:07:17.384688"}, "title": "Toward common ground", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T18:49:23.095306"}, "latest_revision": 2, "key": "/works/OL11151707W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4655434A"}}], "type": {"key": "/type/work"}, "subjects": ["Persuasion (Rhetoric)", "Enthymeme (Logic)", "African American women", "Feminists"], "revision": 2}
+/type/work /works/OL11151995W 2 2010-01-19T18:49:23.095306 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:07:17.384688"}, "title": "Compression behavior of graphite-thermoplastic and graphite-epoxy panels with circular holes or impact damage", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T18:49:23.095306"}, "latest_revision": 2, "key": "/works/OL11151995W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4655574A"}}], "type": {"key": "/type/work"}, "subjects": ["Graphite fibers", "Composite materials"], "revision": 2}
+/type/work /works/OL11152001W 2 2010-01-19T18:49:23.095306 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:07:17.384688"}, "title": "Testing and analysis of curved frame specimens made from a long discontinuous fiber (LDF) material", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T18:49:23.095306"}, "latest_revision": 2, "key": "/works/OL11152001W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4655574A"}}], "type": {"key": "/type/work"}, "subjects": ["Composite materials"], "revision": 2}
+/type/work /works/OL11152143W 1 2009-12-11T04:07:23.382181 {"title": "Chv\u00e1la prostop\u00e1\u0161nosti", "created": {"type": "/type/datetime", "value": "2009-12-11T04:07:23.382181"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:07:23.382181"}, "latest_revision": 1, "key": "/works/OL11152143W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4655642A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11152265W 1 2009-12-11T04:07:23.382181 {"title": "Unto the Right Honourable the Lords of Council and Session, the petition of William Innes merchant in London, ..", "created": {"type": "/type/datetime", "value": "2009-12-11T04:07:23.382181"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:07:23.382181"}, "latest_revision": 1, "key": "/works/OL11152265W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4655670A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11152428W 3 2010-12-03T12:47:40.381214 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:07:23.382181"}, "subject_places": ["United States"], "subjects": ["Reclamation of land", "Safety regulations", "United States", "United States. Bureau of Reclamation"], "latest_revision": 3, "key": "/works/OL11152428W", "title": "Reclamation safety and health standards", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4655753A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T12:47:40.381214"}, "revision": 3}
+/type/work /works/OL11152796W 1 2009-12-11T04:07:23.382181 {"title": "[Representing spatial information in a computational model for network management]", "created": {"type": "/type/datetime", "value": "2009-12-11T04:07:23.382181"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:07:23.382181"}, "latest_revision": 1, "key": "/works/OL11152796W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4655899A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11152907W 3 2010-12-03T18:38:22.043299 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T18:38:22.043299"}, "title": "VME rollbck hardware for time warp multiprocessor systems", "created": {"type": "/type/datetime", "value": "2009-12-11T04:07:23.382181"}, "subjects": ["Computerized simulation", "Hardware", "Multiprocessing (Computers)", "Time measurement"], "latest_revision": 3, "key": "/works/OL11152907W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4655951A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11152998W 2 2010-01-19T18:53:50.843410 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:07:23.382181"}, "title": "Wiener M\u00f6bel des Jugendstils", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T18:53:50.843410"}, "latest_revision": 2, "key": "/works/OL11152998W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4655981A"}}], "type": {"key": "/type/work"}, "subjects": ["Exhibitions", "Art nouveau", "Furniture"], "revision": 2}
+/type/work /works/OL11153423W 2 2010-01-19T18:53:50.843410 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:07:30.350093"}, "title": "Z pokladnice pr\u0306\u00edb\u0115h\u016f Kra\u00e1lovstv\u00ed C\u0306esk\u00e9ho", "subject_places": ["Bohemia", "Czech Republic"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T18:53:50.843410"}, "latest_revision": 2, "key": "/works/OL11153423W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4656241A"}}], "type": {"key": "/type/work"}, "subjects": ["Tales", "Legends", "Folklore"], "revision": 2}
+/type/work /works/OL11154457W 2 2010-01-19T18:53:50.843410 {"title": "Diatribe triplex, or, A threefold exercitation", "created": {"type": "/type/datetime", "value": "2009-12-11T04:07:37.475280"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-19T18:53:50.843410"}, "latest_revision": 2, "key": "/works/OL11154457W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4656780A"}}], "subject_people": ["Henry Hammond (1605-1660)"], "type": {"key": "/type/work"}, "subjects": ["Fasts and feasts", "Worship", "Superstition"], "revision": 2}
+/type/work /works/OL11154550W 2 2010-01-19T18:58:55.418359 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:07:37.475280"}, "title": "Acoustic properties of bone", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T18:58:55.418359"}, "latest_revision": 2, "key": "/works/OL11154550W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4656823A"}}], "type": {"key": "/type/work"}, "subjects": ["Physics Theses"], "revision": 2}
+/type/work /works/OL11154671W 3 2010-12-03T12:48:09.905087 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:07:37.475280"}, "subject_places": ["Alexandria", "Egypt"], "subjects": ["Aliks\u0101ndr\u012bn\u0101 (Library)", "Libraries"], "latest_revision": 3, "key": "/works/OL11154671W", "title": "Bibliotheca Alexandrina", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4656900A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T12:48:09.905087"}, "revision": 3}
+/type/work /works/OL11154944W 3 2012-05-19T10:37:45.936576 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:07:37.475280"}, "subject_places": ["Great Britain"], "subjects": ["City planning", "Handbooks, manuals"], "latest_revision": 3, "key": "/works/OL11154944W", "title": "Development plans", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1109202A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-19T10:37:45.936576"}, "revision": 3}
+/type/work /works/OL11155161W 4 2012-08-05T15:08:28.811141 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:07:44.468902"}, "subjects": ["Memorial day addresses. [from old catalog]", "History"], "latest_revision": 4, "key": "/works/OL11155161W", "title": "Heroism of the rank and file", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4657228A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-08-05T15:08:28.811141"}, "covers": [6135401], "revision": 4}
+/type/work /works/OL1115519W 4 2017-04-30T12:57:51.119709 {"subtitle": "containing a familiar and technical description of the birds of the British Isles.", "last_modified": {"type": "/type/datetime", "value": "2017-04-30T12:57:51.119709"}, "title": "Popular British ornithology", "created": {"type": "/type/datetime", "value": "2009-12-09T20:31:49.867399"}, "covers": [7936166], "subject_places": ["Great Britain"], "subjects": ["Birds"], "latest_revision": 4, "key": "/works/OL1115519W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL114557A"}}], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL11155736W 4 2023-01-08T11:10:39.203072 {"title": "1945-nen no Kurisumasu", "subject_places": ["Japan"], "subjects": ["Biography", "Constitutional law", "History", "Japan Society (New York, N.Y.)", "Women's rights", "Codification", "Japan"], "subject_people": ["Beate Gordon"], "key": "/works/OL11155736W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4657579A"}}], "subject_times": ["20th century"], "type": {"key": "/type/work"}, "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T04:07:44.468902"}, "last_modified": {"type": "/type/datetime", "value": "2023-01-08T11:10:39.203072"}}
+/type/work /works/OL11155824W 1 2009-12-11T04:07:44.468902 {"title": "A house undivided", "created": {"type": "/type/datetime", "value": "2009-12-11T04:07:44.468902"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:07:44.468902"}, "latest_revision": 1, "key": "/works/OL11155824W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4657636A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11156663W 2 2010-01-19T19:02:51.086056 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:07:45.441835"}, "title": "Fifteenth International Congress on Hygiene and Demography", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T19:02:51.086056"}, "latest_revision": 2, "key": "/works/OL11156663W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4657773A"}}], "type": {"key": "/type/work"}, "subjects": ["Health", "Public buildings"], "revision": 2}
+/type/work /works/OL11156766W 2 2010-01-19T19:02:51.086056 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:07:45.441835"}, "title": "Highway extension plans, District of Columbia", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T19:02:51.086056"}, "latest_revision": 2, "key": "/works/OL11156766W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4657773A"}}], "type": {"key": "/type/work"}, "subjects": ["Roads"], "revision": 2}
+/type/work /works/OL11157049W 2 2010-01-19T19:06:58.419025 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:07:45.441835"}, "title": "Pay of Metropolitan Police", "subject_places": ["Washington (D.C.)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T19:06:58.419025"}, "latest_revision": 2, "key": "/works/OL11157049W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4657773A"}}], "type": {"key": "/type/work"}, "subjects": ["Salaries", "Officials and employees", "Police"], "revision": 2}
+/type/work /works/OL11157356W 2 2010-01-19T19:06:58.419025 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:07:47.193615"}, "title": "Restriction of the use of the shores and waters of the Potomac River in the District of Columbia", "subject_places": ["Potomac River"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T19:06:58.419025"}, "latest_revision": 2, "key": "/works/OL11157356W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4657773A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL1115745W 2 2010-01-19T19:06:58.419025 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:31:49.867399"}, "title": "Three new species of from Panama", "subject_places": ["Panama"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T19:06:58.419025"}, "latest_revision": 2, "key": "/works/OL1115745W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL114582A"}}], "type": {"key": "/type/work"}, "subjects": ["Sipunculidae", "Diptera"], "revision": 2}
+/type/work /works/OL11157563W 2 2010-01-19T19:06:58.419025 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:07:47.193615"}, "title": "To provide for the issuance of a license to practice the healing art in the District of Columbia to Dr. Arthur B. Walker", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T19:06:58.419025"}, "latest_revision": 2, "key": "/works/OL11157563W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4657773A"}}], "type": {"key": "/type/work"}, "subjects": ["Bills, Private", "Private bills", "Claims"], "revision": 2}
+/type/work /works/OL11157722W 2 2010-01-19T19:06:58.419025 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:07:47.193615"}, "title": "Construction of pipe lines for oil in the District of Columbia", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T19:06:58.419025"}, "latest_revision": 2, "key": "/works/OL11157722W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4657773A"}}], "type": {"key": "/type/work"}, "subjects": ["Pipelines", "Petroleum industry and trade", "Petroleum"], "revision": 2}
+/type/work /works/OL1115776W 2 2010-01-19T19:06:58.419025 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:31:49.867399"}, "title": "The Dreadnought of Newburyport, Massachusetts", "subject_places": ["Newburyport", "Massachusetts"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T19:06:58.419025"}, "latest_revision": 2, "key": "/works/OL1115776W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL114587A"}}], "type": {"key": "/type/work"}, "subjects": ["Dreadnought (Packet-ship)", "Packets", "Shipbuilding"], "revision": 2}
+/type/work /works/OL11157999W 4 2021-05-09T11:45:30.097007 {"title": "Learning mathematics", "subjects": ["Academic achievement", "Evaluation", "International Assessment of Educational Progress (Project)", "Mathematical ability", "Mathematics", "Statistics", "Study and teaching", "Mathematics Education"], "key": "/works/OL11157999W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4657798A"}}], "type": {"key": "/type/work"}, "covers": [11019584], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T04:07:47.193615"}, "last_modified": {"type": "/type/datetime", "value": "2021-05-09T11:45:30.097007"}}
+/type/work /works/OL11158183W 2 2010-01-19T19:11:09.459361 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:07:53.240256"}, "title": "The answer of the Commission of Generall Assemblie to the qu\u00e6ree propounded to them from the Parliament", "subject_places": ["Scotland"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T19:11:09.459361"}, "latest_revision": 2, "key": "/works/OL11158183W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4657910A"}}], "subject_times": ["17th century"], "type": {"key": "/type/work"}, "subjects": ["Church history"], "revision": 2}
+/type/work /works/OL11158284W 1 2009-12-11T04:07:53.240256 {"title": "Mar'ianka", "created": {"type": "/type/datetime", "value": "2009-12-11T04:07:53.240256"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:07:53.240256"}, "latest_revision": 1, "key": "/works/OL11158284W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4657951A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11158851W 2 2010-01-19T19:11:09.459361 {"title": "Mayy Ziy\u0101dah", "created": {"type": "/type/datetime", "value": "2009-12-11T04:07:53.240256"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-19T19:11:09.459361"}, "latest_revision": 2, "key": "/works/OL11158851W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4658255A"}}], "subject_people": ["Mayy Ziy\u0101dah"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11158919W 3 2010-12-03T12:47:11.551847 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:07:53.240256"}, "subjects": ["French Philosophy", "Philosophy, French"], "subject_people": ["F\u00e9lix Ravaisson (1813-1900)", "Victor Cousin (1792-1867)"], "key": "/works/OL11158919W", "title": "Philosophie contemperaine", "latest_revision": 3, "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4658264A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T12:47:11.551847"}, "revision": 3}
+/type/work /works/OL11159133W 2 2010-01-19T19:11:09.459361 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:08:00.816694"}, "title": "The problem of developing adequate foster care for wards of the California Youth Authority", "subject_places": ["California"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T19:11:09.459361"}, "latest_revision": 2, "key": "/works/OL11159133W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4658394A"}}], "type": {"key": "/type/work"}, "subjects": ["Foster home care"], "revision": 2}
+/type/work /works/OL11159159W 1 2009-12-11T04:08:00.816694 {"title": "Zahrat al-\u1e25ibr sawd\u0101\u02bc", "created": {"type": "/type/datetime", "value": "2009-12-11T04:08:00.816694"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:08:00.816694"}, "latest_revision": 1, "key": "/works/OL11159159W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4658419A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11159524W 2 2010-01-19T19:15:25.393776 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:08:00.816694"}, "title": "Impresiones ce lebres y libros raros. Por el licenciado Manuel de Olaguibel", "subject_places": ["Mexico"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T19:15:25.393776"}, "latest_revision": 2, "key": "/works/OL11159524W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4658631A"}}], "type": {"key": "/type/work"}, "subjects": ["Printing", "History"], "revision": 2}
+/type/work /works/OL1115981W 4 2020-08-12T22:54:06.363031 {"last_modified": {"type": "/type/datetime", "value": "2020-08-12T22:54:06.363031"}, "title": "The northern Shoshone", "created": {"type": "/type/datetime", "value": "2009-12-09T20:31:49.867399"}, "subjects": ["Shoshoni Indians"], "latest_revision": 4, "key": "/works/OL1115981W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL114602A"}}], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL11159930W 2 2010-01-19T19:15:25.393776 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:08:00.816694"}, "title": "An integrated speech program seeking better adaptation to social needs", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T19:15:25.393776"}, "latest_revision": 2, "key": "/works/OL11159930W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4658902A"}}], "type": {"key": "/type/work"}, "subjects": ["Study and teaching", "Elocution", "Speech", "Expression", "Societies"], "revision": 2}
+/type/work /works/OL11160104W 2 2010-01-19T19:15:25.393776 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:08:07.582943"}, "title": "Fertility and birth rates among captive nonhuman primates", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T19:15:25.393776"}, "latest_revision": 2, "key": "/works/OL11160104W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4659007A"}}], "type": {"key": "/type/work"}, "subjects": ["Bibliography", "Fertility", "Primates"], "revision": 2}
+/type/work /works/OL11160415W 2 2010-01-19T19:15:25.393776 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:08:07.582943"}, "title": "T\u0101r\u012bkh Shibh al-Jaz\u012brah al-\u02bbArab\u012byah min ma\u1e63\u0101dir al-Turk\u012byah al-\u02bbUthm\u0101n\u012byah", "subject_places": ["Arabian Peninsula"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T19:15:25.393776"}, "latest_revision": 2, "key": "/works/OL11160415W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4659182A"}}], "type": {"key": "/type/work"}, "subjects": ["History"], "revision": 2}
+/type/work /works/OL11160435W 2 2010-01-19T19:15:25.393776 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:08:07.582943"}, "title": "Radon mitigation studies", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T19:15:25.393776"}, "latest_revision": 2, "key": "/works/OL11160435W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4659193A"}}], "type": {"key": "/type/work"}, "subjects": ["Research", "Environmental health", "Radon measures"], "revision": 2}
+/type/work /works/OL11160592W 2 2010-01-19T19:15:25.393776 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:08:07.582943"}, "title": "Wood energy", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T19:15:25.393776"}, "latest_revision": 2, "key": "/works/OL11160592W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4659283A"}}], "type": {"key": "/type/work"}, "subjects": ["Fuelwood", "Congresses"], "revision": 2}
+/type/work /works/OL1116112W 3 2010-04-28T07:18:51.218399 {"title": "The poetical works of T. Buchanan Read", "created": {"type": "/type/datetime", "value": "2009-12-09T20:31:49.867399"}, "covers": [5855550], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:18:51.218399"}, "latest_revision": 3, "key": "/works/OL1116112W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL114616A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11161221W 2 2010-01-19T19:20:07.399145 {"title": "My recollections of Lord Byron", "created": {"type": "/type/datetime", "value": "2009-12-11T04:08:14.744909"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-19T19:20:07.399145"}, "latest_revision": 2, "key": "/works/OL11161221W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4659669A"}}], "subject_people": ["George Gordon Byron Byron Baron (1788-1824)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11161616W 2 2010-01-19T19:20:07.399145 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:08:14.744909"}, "title": "Villa Mar\u00eda del Triunfo y su desarrollo", "subject_places": ["Villa Mar\u00eda del Triunfo", "Peru"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T19:20:07.399145"}, "latest_revision": 2, "key": "/works/OL11161616W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4659905A"}}], "type": {"key": "/type/work"}, "subjects": ["Congresses", "Community development", "Citizens' associations"], "revision": 2}
+/type/work /works/OL11161980W 1 2009-12-11T04:08:14.744909 {"title": "Ennil aliyunna du\u1e25kha\u1e43", "created": {"type": "/type/datetime", "value": "2009-12-11T04:08:14.744909"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:08:14.744909"}, "latest_revision": 1, "key": "/works/OL11161980W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4660122A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11162247W 1 2009-12-11T04:08:19.978568 {"title": "Family business", "created": {"type": "/type/datetime", "value": "2009-12-11T04:08:19.978568"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:08:19.978568"}, "latest_revision": 1, "key": "/works/OL11162247W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4660245A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11162306W 2 2010-01-19T19:20:07.399145 {"title": "\u1e0ciy\u0101\u02be al-D\u012bn ibn al-Ath\u012br wa-juh\u016bduh f\u012b al-naqd wa-al-bal\u0101ghah", "created": {"type": "/type/datetime", "value": "2009-12-11T04:08:19.978568"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-19T19:20:07.399145"}, "latest_revision": 2, "key": "/works/OL11162306W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4660276A"}}], "subject_people": ["Ibn al-Ath\u012br, \u1e0ciy\u0101\u02be al-D\u012bn Na\u1e63r All\u0101h ibn Mu\u1e25ammad (1163-1239,)"], "type": {"key": "/type/work"}, "subjects": ["Rhetoric", "Arabic language"], "revision": 2}
+/type/work /works/OL11162807W 2 2010-01-19T19:24:58.766981 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:08:19.978568"}, "title": "District of Columbia", "subject_places": ["Washington (D.C.)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T19:24:58.766981"}, "latest_revision": 2, "key": "/works/OL11162807W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4660484A"}}], "type": {"key": "/type/work"}, "subjects": ["Taxation"], "revision": 2}
+/type/work /works/OL11162931W 3 2010-12-03T18:23:06.573509 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T18:23:06.573509"}, "title": "Ems\u0101l", "created": {"type": "/type/datetime", "value": "2009-12-11T04:08:19.978568"}, "subjects": ["Quotations, Turkish", "Turkish Quotations"], "latest_revision": 3, "key": "/works/OL11162931W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4660548A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11163043W 2 2010-01-19T19:24:58.766981 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:08:19.978568"}, "title": "New Madrid Pumping Station, gravity flow conduit and confluence, New Madrid Floodway, Missouri", "subject_places": ["Missouri"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T19:24:58.766981"}, "latest_revision": 2, "key": "/works/OL11163043W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4660602A"}}], "type": {"key": "/type/work"}, "subjects": ["Pumping stations", "Channels (Hydraulic engineering)"], "revision": 2}
+/type/work /works/OL11163111W 1 2009-12-11T04:08:31.975246 {"title": "Planning van de landbouwsector in Tunesi\u00eb", "created": {"type": "/type/datetime", "value": "2009-12-11T04:08:31.975246"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:08:31.975246"}, "latest_revision": 1, "key": "/works/OL11163111W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4660642A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11163236W 2 2010-01-19T19:24:58.766981 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:08:31.975246"}, "title": "A meteorological model for use in the study of rainfall effects on atmospheric radio telecommunications", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T19:24:58.766981"}, "latest_revision": 2, "key": "/works/OL11163236W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4660707A"}}], "type": {"key": "/type/work"}, "subjects": ["Mathematical models", "Meteorology", "Telecommunication", "Rain and rainfall"], "revision": 2}
+/type/work /works/OL11163319W 1 2009-12-11T04:08:31.975246 {"title": "Volnovye prot\ufe20s\ufe21essy v sverkhtekuche\u012d zhidkosti", "created": {"type": "/type/datetime", "value": "2009-12-11T04:08:31.975246"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:08:31.975246"}, "latest_revision": 1, "key": "/works/OL11163319W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4660765A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11163611W 1 2009-12-11T04:08:31.975246 {"title": "Upendran\u0101tha \u02bbA\u015bka\u02be", "created": {"type": "/type/datetime", "value": "2009-12-11T04:08:31.975246"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:08:31.975246"}, "latest_revision": 1, "key": "/works/OL11163611W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4660891A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11163808W 2 2010-01-19T19:29:51.607152 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:08:31.975246"}, "title": "NASA/Army rotorcraft transmission research, a review of recent significant accomplishments", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T19:29:51.607152"}, "latest_revision": 2, "key": "/works/OL11163808W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4660987A"}}], "type": {"key": "/type/work"}, "subjects": ["Mechanical engineering"], "revision": 2}
+/type/work /works/OL11164095W 6 2020-08-11T10:34:15.486288 {"covers": [6019212], "last_modified": {"type": "/type/datetime", "value": "2020-08-11T10:34:15.486288"}, "latest_revision": 6, "key": "/works/OL11164095W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4661169A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T04:08:31.975246"}, "title": "\"A credit to this province\"", "subject_places": ["Ontario"], "subjects": ["Government libraries", "History", "Ontario", "Ontario. Legislative Library", "Ontario. Legislative Library, Research and Information Services"], "type": {"key": "/type/work"}, "revision": 6}
+/type/work /works/OL11164241W 2 2010-01-19T19:29:51.607152 {"title": "Tiru N\u0101r\u0101ya\u1e47akuru", "created": {"type": "/type/datetime", "value": "2009-12-11T04:08:37.978436"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-19T19:29:51.607152"}, "latest_revision": 2, "key": "/works/OL11164241W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4661250A"}}], "subject_people": ["Narayanaguru (1854-1928.*)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11164274W 2 2010-01-19T19:29:51.607152 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:08:37.978436"}, "title": "Users manual for the FGRAF system of programs", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T19:29:51.607152"}, "latest_revision": 2, "key": "/works/OL11164274W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4661272A"}}], "type": {"key": "/type/work"}, "subjects": ["Hydrology", "Handbooks, manuals", "Computer programs"], "revision": 2}
+/type/work /works/OL11164548W 2 2010-01-19T19:29:51.607152 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:08:37.978436"}, "title": "Type II solar radio bursts recorded at Weissenau 1966-1987", "subject_places": ["Ravensburg", "Germany (West)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T19:29:51.607152"}, "latest_revision": 2, "key": "/works/OL11164548W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4661386A"}}], "type": {"key": "/type/work"}, "subjects": ["Observations", "Solar radio emission"], "revision": 2}
+/type/work /works/OL11164595W 1 2009-12-11T04:08:37.978436 {"title": "\u1e0cay\u0101\u02bb al-\u02bbArab bayna al-naf\u1e6d wa-al-dhahab", "created": {"type": "/type/datetime", "value": "2009-12-11T04:08:37.978436"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:08:37.978436"}, "latest_revision": 1, "key": "/works/OL11164595W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4661409A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11164601W 3 2010-12-03T12:50:37.188795 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:08:37.978436"}, "subjects": ["American Sermons", "Congregational churches", "Ordination sermons", "Sermons", "Sermons, American"], "subject_people": ["Lemuel Wadsworth (1769-1817)"], "key": "/works/OL11164601W", "title": "A sermon, preached October 11th, 1797, at the ordination of the Rev. Lemuel Wadsworth", "latest_revision": 3, "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4661410A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T12:50:37.188795"}, "revision": 3}
+/type/work /works/OL11164644W 2 2010-01-19T19:29:51.607152 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:08:37.978436"}, "title": "A heat receiver design for solar dynamic space power systems", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T19:29:51.607152"}, "latest_revision": 2, "key": "/works/OL11164644W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4661430A"}}], "type": {"key": "/type/work"}, "subjects": ["Solar heating", "Solar thermal energy", "Heat storage"], "revision": 2}
+/type/work /works/OL1116472W 3 2010-07-20T13:40:42.597701 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:31:58.827409"}, "title": "Reports on the dredging operations off the west coast of Central America to the Galapagos, to the west coast of Mexico, and in the Gulf of California, in charge of Alexander Agassiz, carried on by the U.S. Fish Commission steamer \"Albatross,\" during 1891, Lieut. Commander Z.L. Tanner, U.S.N., commanding", "last_modified": {"type": "/type/datetime", "value": "2010-07-20T13:40:42.597701"}, "latest_revision": 3, "key": "/works/OL1116472W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL114639A"}}], "type": {"key": "/type/work"}, "subjects": ["Sea urchins", "Echinodermata", "Albatross (Steamer)"], "revision": 3}
+/type/work /works/OL11165028W 4 2020-12-05T17:24:08.072688 {"subjects": ["Natural disasters", "Disasters", "Environmental impact of natural disasters & phenomena", "Social impact of disasters", "Science/Mathematics", "Environmental Monitoring", "Science", "Environmental Studies", "Environmental Science", "Earth Sciences - Geography", "Earth Sciences - Geology", "Science / Environmental Science", "Environmental Conservation & Protection - General", "Environmental Engineering & Technology", "Environmental disasters", "Juvenile literature"], "key": "/works/OL11165028W", "title": "Environmental disasters", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4661668A"}}, {"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL3180072A"}}, {"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL3310674A"}}, {"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL3177639A"}}], "type": {"key": "/type/work"}, "covers": [2223917], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T04:08:37.978436"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-05T17:24:08.072688"}}
+/type/work /works/OL11165179W 2 2010-01-19T19:34:26.037336 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:08:43.463504"}, "title": "Marz miy\u0101n-i d\u012bn va um\u016br-i ijtim\u0101\u02bb\u012b", "subject_places": ["Iran"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T19:34:26.037336"}, "latest_revision": 2, "key": "/works/OL11165179W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4661707A"}}], "type": {"key": "/type/work"}, "subjects": ["Politics and government", "Islam and politics"], "revision": 2}
+/type/work /works/OL11166091W 1 2009-12-11T04:08:43.463504 {"title": "Kinetika fononnykh sistem", "created": {"type": "/type/datetime", "value": "2009-12-11T04:08:43.463504"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:08:43.463504"}, "latest_revision": 1, "key": "/works/OL11166091W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4662095A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11166832W 2 2010-01-19T19:39:09.568150 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:08:49.582879"}, "title": "Rarefied-flow aerodynamics", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T19:39:09.568150"}, "latest_revision": 2, "key": "/works/OL11166832W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4662428A"}}], "type": {"key": "/type/work"}, "subjects": ["Aerodynamics"], "revision": 2}
+/type/work /works/OL11166851W 3 2010-12-03T12:50:11.958186 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T12:50:11.958186"}, "title": "Truth made manifest", "created": {"type": "/type/datetime", "value": "2009-12-11T04:08:49.582879"}, "subjects": ["Church of Jesus Christ of Latter-Day Saints", "Doctrines", "Mormon Church"], "latest_revision": 3, "key": "/works/OL11166851W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4662442A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11167166W 2 2010-01-19T19:39:09.568150 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:08:56.312427"}, "title": "The tourist, or, Pocket manual for travellers", "subject_places": ["New York (State)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T19:39:09.568150"}, "latest_revision": 2, "key": "/works/OL11167166W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4662618A"}}], "type": {"key": "/type/work"}, "subjects": ["Description and travel"], "revision": 2}
+/type/work /works/OL11167173W 1 2009-12-11T04:08:56.312427 {"title": "Metod chastit\ufe20s\ufe21 v dinamike razrezhenno\u012d plazmy", "created": {"type": "/type/datetime", "value": "2009-12-11T04:08:56.312427"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:08:56.312427"}, "latest_revision": 1, "key": "/works/OL11167173W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4662623A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11167491W 2 2010-01-19T19:44:20.168570 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:08:56.312427"}, "title": "Establishing a relationship between passive soil vapor and grab sample techniques for determining volatile organic compounds", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T19:44:20.168570"}, "latest_revision": 2, "key": "/works/OL11167491W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4662762A"}}], "type": {"key": "/type/work"}, "subjects": ["Testing", "Soil pollution", "Volatile organic compounds"], "revision": 2}
+/type/work /works/OL1116761W 3 2022-12-31T03:56:53.438579 {"title": "A letter in regard to the tariff on iron and labor", "subject_places": ["United States"], "key": "/works/OL1116761W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL114664A"}}], "type": {"key": "/type/work"}, "subjects": ["Tariff", "Iron industry and trade"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-09T20:31:58.827409"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-31T03:56:53.438579"}}
+/type/work /works/OL11168134W 2 2010-01-19T19:44:20.168570 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:09:03.637019"}, "title": "Additional improvements to the NASA Lewis ice accretion code LEWICE", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T19:44:20.168570"}, "latest_revision": 2, "key": "/works/OL11168134W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4663160A"}}], "type": {"key": "/type/work"}, "subjects": ["Aircraft icing", "Prediction analysis", "Aircraft safety", "Flight safety", "Computer programs"], "revision": 2}
+/type/work /works/OL11168174W 2 2010-01-19T19:44:20.168570 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:09:03.637019"}, "title": "Performance and heat transfer characteristics of a carbon monoxide/oxygen rocket engine", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T19:44:20.168570"}, "latest_revision": 2, "key": "/works/OL11168174W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4663177A"}}], "type": {"key": "/type/work"}, "subjects": ["Fuel", "Space vehicles", "Propulsion systems", "Rockets (Aeronautics)"], "revision": 2}
+/type/work /works/OL11168252W 2 2010-01-19T19:44:20.168570 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:09:03.637019"}, "title": "Aerodynamic investigations of the Luling, Louisiana cable-stayed bridge", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T19:44:20.168570"}, "latest_revision": 2, "key": "/works/OL11168252W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4663227A"}}], "type": {"key": "/type/work"}, "subjects": ["Bridges, Cable-stayed"], "revision": 2}
+/type/work /works/OL11168257W 2 2010-01-19T19:44:20.168570 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:09:03.637019"}, "title": "I ho t\u02bbuan tsai T\u02bbien-chin ti fan ti tou cheng", "subject_places": ["China"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T19:44:20.168570"}, "latest_revision": 2, "key": "/works/OL11168257W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4663231A"}}], "subject_times": ["Boxer Rebellion, 1899-1901"], "type": {"key": "/type/work"}, "subjects": ["History"], "revision": 2}
+/type/work /works/OL11168734W 1 2009-12-11T04:09:03.637019 {"title": "P\u0101t\u0101la ha\u1e43sa", "created": {"type": "/type/datetime", "value": "2009-12-11T04:09:03.637019"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:09:03.637019"}, "latest_revision": 1, "key": "/works/OL11168734W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4663462A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11169097W 2 2010-01-19T19:49:19.132939 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:09:03.637019"}, "title": "On the nonlinear interfacial instability of rotating core-annular flow", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T19:49:19.132939"}, "latest_revision": 2, "key": "/works/OL11169097W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4663645A"}}], "type": {"key": "/type/work"}, "subjects": ["Fluid dynamics"], "revision": 2}
+/type/work /works/OL11169323W 2 2010-01-19T19:49:19.132939 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:09:10.042641"}, "title": "L' invention du th\u00e9\u00e2tre", "subject_places": ["Sub-Saharan Africa"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T19:49:19.132939"}, "latest_revision": 2, "key": "/works/OL11169323W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4663780A"}}], "type": {"key": "/type/work"}, "subjects": ["History and criticism", "African drama", "Negro authors", "Theater", "American drama"], "revision": 2}
+/type/work /works/OL11169620W 2 2010-01-19T19:49:19.132939 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:09:10.042641"}, "title": "The Anti-Corn-Law League and the cotton trade", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T19:49:19.132939"}, "latest_revision": 2, "key": "/works/OL11169620W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4663968A"}}], "type": {"key": "/type/work"}, "subjects": ["Cotton trade"], "revision": 2}
+/type/work /works/OL11169887W 2 2010-01-19T19:49:19.132939 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:09:10.042641"}, "title": "Y\u016bgi to r\u014dd\u014d no bensh\u014dh\u014d", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T19:49:19.132939"}, "latest_revision": 2, "key": "/works/OL11169887W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4664101A"}}], "type": {"key": "/type/work"}, "subjects": ["Industrial recreation"], "revision": 2}
+/type/work /works/OL11169983W 1 2009-12-11T04:09:10.042641 {"title": "Mu\u02bbjam al-ashw\u0101q", "created": {"type": "/type/datetime", "value": "2009-12-11T04:09:10.042641"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:09:10.042641"}, "latest_revision": 1, "key": "/works/OL11169983W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4664126A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11170372W 3 2010-12-03T22:51:22.993783 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:09:16.514050"}, "subjects": ["Arab Women authors", "Arabic literature", "History and criticism", "Women authors, Arab"], "latest_revision": 3, "key": "/works/OL11170372W", "title": "al- Khi\u1e6d\u0101b al-nisw\u012b f\u012b al-adab al-\u02bbArab\u012b al-\u1e25ad\u012bth", "subject_times": ["20th century"], "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4664336A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T22:51:22.993783"}, "revision": 3}
+/type/work /works/OL11170435W 2 2010-01-19T19:54:31.386016 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:09:16.514050"}, "title": "Whisker growth studies under conditions which resemble those available on an orbiting space station", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T19:54:31.386016"}, "latest_revision": 2, "key": "/works/OL11170435W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4664360A"}}], "type": {"key": "/type/work"}, "subjects": ["Metallic whiskers", "Reduced gravity environments"], "revision": 2}
+/type/work /works/OL11171330W 2 2010-01-19T19:54:31.386016 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:09:23.695737"}, "title": "LOFT input dataset reference document for RELAP5 validation studies", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T19:54:31.386016"}, "latest_revision": 2, "key": "/works/OL11171330W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4664830A"}}], "type": {"key": "/type/work"}, "subjects": ["Computer programs", "Validation", "Pressurized water reactors", "Accidents"], "revision": 2}
+/type/work /works/OL11172038W 2 2010-01-19T19:59:41.910527 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:09:23.695737"}, "title": "La c\u00e9ramique sigill\u00e9e decor\u00e9e provenant de K\u00e9rilien-en-Ploun\u00e9venter (Finist\u00e8re)", "subject_places": ["Finist\u00e8re", "France", "Finist\u00e8re (France)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T19:59:41.910527"}, "latest_revision": 2, "key": "/works/OL11172038W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4665246A"}}], "type": {"key": "/type/work"}, "subjects": ["Catalogs", "Pottery, Gallo-Roman", "Decoration and ornament", "Antiquities, Gallo-Roman"], "revision": 2}
+/type/work /works/OL11172063W 2 2010-01-19T19:59:41.910527 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:09:23.695737"}, "title": "Magnetic multilayer anisotropy investigated with a variable temperature torque magnetometer", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T19:59:41.910527"}, "latest_revision": 2, "key": "/works/OL11172063W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4665262A"}}], "type": {"key": "/type/work"}, "subjects": ["Torquemeters", "Anisotropy", "Physics", "Magnetometers"], "revision": 2}
+/type/work /works/OL11172245W 2 2010-01-19T19:59:41.910527 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:09:30.957040"}, "title": "Scattering by a groove in an impedence plane", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T19:59:41.910527"}, "latest_revision": 2, "key": "/works/OL11172245W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4665378A"}}], "type": {"key": "/type/work"}, "subjects": ["Radar", "Scattering (Physics)"], "revision": 2}
+/type/work /works/OL11172421W 2 2010-01-19T19:59:41.910527 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:09:30.957040"}, "title": "Der engl\u00e4ndischen Pflanzst\u00e4dte in Nord-Amerika", "subject_places": ["United States", "Canada"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T19:59:41.910527"}, "latest_revision": 2, "key": "/works/OL11172421W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4665482A"}}], "subject_times": ["Colonial period, ca. 1600-1775"], "type": {"key": "/type/work"}, "subjects": ["Early works to 1800", "Description and travel", "History"], "revision": 2}
+/type/work /works/OL11172862W 2 2010-01-19T20:04:24.520423 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:09:30.957040"}, "title": "Using a Cray Y-MP as an array prosessor for a RISC workstation", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T20:04:24.520423"}, "latest_revision": 2, "key": "/works/OL11172862W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4665694A"}}], "type": {"key": "/type/work"}, "subjects": ["Cray computers", "Distributed operating systems (Computers)"], "revision": 2}
+/type/work /works/OL11173481W 2 2010-01-19T20:04:24.520423 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:09:37.769808"}, "title": "Surface characterization of LDEF materials", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T20:04:24.520423"}, "latest_revision": 2, "key": "/works/OL11173481W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4666069A"}}], "type": {"key": "/type/work"}, "subjects": ["Effect of space environment on", "Materials"], "revision": 2}
+/type/work /works/OL11173875W 1 2009-12-11T04:09:37.769808 {"title": "Irsh\u0101d\u0101t f\u012b maq\u0101l\u0101t", "created": {"type": "/type/datetime", "value": "2009-12-11T04:09:37.769808"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:09:37.769808"}, "latest_revision": 1, "key": "/works/OL11173875W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4666275A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11174394W 2 2010-01-19T20:09:19.289548 {"title": "Ri\u1e25lah il\u00e1 al-Sa\u02bb\u016bd\u012byah", "created": {"type": "/type/datetime", "value": "2009-12-11T04:09:43.384303"}, "subject_places": ["Saudi Arabia", "Egypt"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T20:09:19.289548"}, "latest_revision": 2, "key": "/works/OL11174394W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4666534A"}}], "subject_people": ["Mu\u1e25ammad \u1e24ayaw\u0101n"], "type": {"key": "/type/work"}, "subjects": ["Relations", "Description and travel", "Journeys"], "revision": 2}
+/type/work /works/OL11174771W 3 2010-12-03T12:52:07.332272 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:09:43.384303"}, "subject_places": ["Ontario", "Toronto"], "subjects": ["Air", "Air pollution control industry", "Air quality", "Air quality monitoring stations", "Lawson Graphics Ltd", "Measurement", "PPG Canada Ltd", "Pollution", "Standards"], "latest_revision": 3, "key": "/works/OL11174771W", "title": "Ambient air quality survey in the vicinity of PPG Canada Limited and Lawson Graphics Limited, Brown's Line and Lakeshore Boulevard, Toronto August, 1986", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4666722A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T12:52:07.332272"}, "revision": 3}
+/type/work /works/OL11174878W 1 2009-12-11T04:09:43.384303 {"title": "Dialect and reading: the question of interference", "created": {"type": "/type/datetime", "value": "2009-12-11T04:09:43.384303"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:09:43.384303"}, "latest_revision": 1, "key": "/works/OL11174878W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4666774A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1117490W 5 2020-07-14T01:58:19.776882 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:31:58.827409"}, "subjects": ["Congress of Vienna (1814-1815)"], "latest_revision": 5, "key": "/works/OL1117490W", "title": "The correspondence of Prince Talleyrand and King Louis XVIII", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL114686A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-07-14T01:58:19.776882"}, "covers": [5606447], "revision": 5}
+/type/work /works/OL11175645W 2 2010-01-19T20:14:38.561958 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:09:49.211211"}, "title": "Optimal monetary policy in a model with habit formation", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T20:14:38.561958"}, "latest_revision": 2, "key": "/works/OL11175645W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4667146A"}}], "type": {"key": "/type/work"}, "subjects": ["Econometric models", "Monetary policy", "Consumption (Economics)"], "revision": 2}
+/type/work /works/OL11175796W 2 2010-01-19T20:14:38.561958 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:09:49.211211"}, "title": "Public acts of the state of Tennessee, passed at the extra session of the Thirty-third General Assembly, April, 1861", "subject_places": ["Tennessee"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T20:14:38.561958"}, "latest_revision": 2, "key": "/works/OL11175796W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4667193A"}}], "subject_times": ["1861-1865"], "type": {"key": "/type/work"}, "subjects": ["Politics and government", "Law"], "revision": 2}
+/type/work /works/OL11176572W 2 2010-01-19T20:19:55.076462 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:09:55.730366"}, "title": "A videotex/teletext survey of the application level user interface in North America", "subject_places": ["North America"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T20:19:55.076462"}, "latest_revision": 2, "key": "/works/OL11176572W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4667582A"}}], "type": {"key": "/type/work"}, "subjects": ["Videotex systems", "Interactive computer systems", "Teletext systems"], "revision": 2}
+/type/work /works/OL11176728W 1 2009-12-11T04:09:55.730366 {"title": "The opportunity in Australia", "created": {"type": "/type/datetime", "value": "2009-12-11T04:09:55.730366"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:09:55.730366"}, "latest_revision": 1, "key": "/works/OL11176728W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4667678A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11177100W 2 2010-01-19T20:19:55.076462 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:09:55.730366"}, "title": "Study of basic physical processes in liquid and solid rocket propulsion", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T20:19:55.076462"}, "latest_revision": 2, "key": "/works/OL11177100W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4667842A"}}], "type": {"key": "/type/work"}, "subjects": ["Space vehicles", "Propulsion systems"], "revision": 2}
+/type/work /works/OL11177412W 3 2010-12-03T12:52:07.332272 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:10:02.517334"}, "subject_places": ["Bugarura", "Bugarura (Rwanda)", "Rwanda"], "subjects": ["Arms and armor", "Economic conditions", "History", "Social conditions"], "latest_revision": 3, "key": "/works/OL11177412W", "title": "La fabrication et l'utilisation des armes au Bugarura (1899-1980)", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4668064A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T12:52:07.332272"}, "revision": 3}
+/type/work /works/OL11178295W 2 2010-01-19T20:24:57.515360 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:10:09.389817"}, "title": "Cabinet government in Canada", "subject_places": ["Canada"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T20:24:57.515360"}, "latest_revision": 2, "key": "/works/OL11178295W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4668518A"}}], "type": {"key": "/type/work"}, "subjects": ["Politics and government", "Cabinet system"], "revision": 2}
+/type/work /works/OL11178317W 2 2010-01-19T20:24:57.515360 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:10:09.389817"}, "title": "al- Riw\u0101yah al-Mis\u0325r\u012byah al-mu\u02bba\u1e63irah", "subject_places": ["Egypt"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T20:24:57.515360"}, "latest_revision": 2, "key": "/works/OL11178317W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4668529A"}}], "type": {"key": "/type/work"}, "subjects": ["Arabic fiction", "History and criticism"], "revision": 2}
+/type/work /works/OL11178671W 2 2010-01-19T20:24:57.515360 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:10:09.389817"}, "title": "A pseudo-sound constitutive relationship for the dilatational covariances in compressible turbulence", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T20:24:57.515360"}, "latest_revision": 2, "key": "/works/OL11178671W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4668734A"}}], "type": {"key": "/type/work"}, "subjects": ["Turbulent flow", "Compressible flow", "Turbulence", "Statistical mechanics", "Fluid mechanics", "Compressibility effects"], "revision": 2}
+/type/work /works/OL11178762W 2 2010-01-19T20:29:47.980274 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:10:09.389817"}, "title": "Na\u1e93ar\u0101t f\u012b al-mal\u0101mi\u1e25 al-as\u0101s\u012byah lil-mr\u1e25alah al-r\u0101hinah", "subject_places": ["Arab countries"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T20:29:47.980274"}, "latest_revision": 2, "key": "/works/OL11178762W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4668789A"}}], "type": {"key": "/type/work"}, "subjects": ["Politics and government", "Nationalism", "Arab countries"], "revision": 2}
+/type/work /works/OL11178861W 4 2010-12-03T12:51:23.036281 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:10:09.389817"}, "subject_places": ["Canada"], "subjects": ["Canada", "Canada. Parliament. House of Commons", "Elections"], "latest_revision": 4, "key": "/works/OL11178861W", "title": "Instructions for revising agents applicable only to a general election", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1976092A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T12:51:23.036281"}, "revision": 4}
+/type/work /works/OL11178863W 1 2009-12-11T04:10:09.389817 {"title": "Gha\u1e0d\u016bliye ra\u1e45ga l\u0101gyo", "created": {"type": "/type/datetime", "value": "2009-12-11T04:10:09.389817"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:10:09.389817"}, "latest_revision": 1, "key": "/works/OL11178863W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4668860A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11179287W 1 2009-12-11T04:10:21.340375 {"title": "A history of Rome", "created": {"type": "/type/datetime", "value": "2009-12-11T04:10:21.340375"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:10:21.340375"}, "latest_revision": 1, "key": "/works/OL11179287W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4669067A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11179322W 3 2010-12-03T12:53:33.142679 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T12:53:33.142679"}, "latest_revision": 3, "key": "/works/OL11179322W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4669096A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T04:10:21.340375"}, "title": "Triassic & Jurassic Rhynchonellacea (Brachiopoda) from New Zealand & New Caledonia", "subject_places": ["New Caledonia", "New Zealand"], "subjects": ["Classification", "Fossil Rhynchonellida", "Paleontology", "Paleontology, Stratigraphic", "Rhynchonellida, Fossil", "Stratigraphic Paleontology"], "subject_times": ["Jurassic", "Triassic"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11179366W 2 2010-01-19T20:29:47.980274 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:10:21.340375"}, "title": "Becoming more market oriented", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T20:29:47.980274"}, "latest_revision": 2, "key": "/works/OL11179366W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4669117A"}}], "type": {"key": "/type/work"}, "subjects": ["Business planning", "Marketing research", "Competition"], "revision": 2}
+/type/work /works/OL11179586W 2 2010-01-19T20:29:47.980274 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:10:21.340375"}, "title": "Consequences of a chromospheric temperature gradient on the width of H [alpha] in late-type giants", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T20:29:47.980274"}, "latest_revision": 2, "key": "/works/OL11179586W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4669265A"}}], "type": {"key": "/type/work"}, "subjects": ["Stellar chromospheres", "Optical properties", "Giant stars", "Temperature gradients", "Chromosphere"], "revision": 2}
+/type/work /works/OL11179622W 1 2009-12-11T04:10:21.340375 {"title": "The validity of patient-management-problems for assessing the skills of baccalaureate nursing students in nursing-care problems", "created": {"type": "/type/datetime", "value": "2009-12-11T04:10:21.340375"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:10:21.340375"}, "latest_revision": 1, "key": "/works/OL11179622W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4669288A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11179753W 2 2011-11-11T23:48:09.753391 {"title": "Arini All\u0101h", "created": {"type": "/type/datetime", "value": "2009-12-11T04:10:21.340375"}, "last_modified": {"type": "/type/datetime", "value": "2011-11-11T23:48:09.753391"}, "latest_revision": 2, "key": "/works/OL11179753W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL132066A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11179816W 2 2011-11-11T23:48:09.753391 {"title": "al- Masra\u1e25 al-munawwa\u02bb, 1923-1966", "created": {"type": "/type/datetime", "value": "2009-12-11T04:10:21.340375"}, "last_modified": {"type": "/type/datetime", "value": "2011-11-11T23:48:09.753391"}, "latest_revision": 2, "key": "/works/OL11179816W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL132066A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11179959W 2 2010-01-19T20:29:47.980274 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:10:21.340375"}, "title": "A regional analysis of cloudy mean spherical albedo over the marine stratocumulus region and the tropical Atlantic ocean", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T20:29:47.980274"}, "latest_revision": 2, "key": "/works/OL11179959W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4669431A"}}], "type": {"key": "/type/work"}, "subjects": ["Albedo", "Drop size", "Clouds (Meteorology)", "Meteorological parameters", "Atmospheric general circulation models", "Optical thickness", "Cloud cover", "Parameterization", "Earth radiation budget", "Moisture content"], "revision": 2}
+/type/work /works/OL11180047W 1 2009-12-11T04:10:21.340375 {"title": "Ficciones de la muerte", "created": {"type": "/type/datetime", "value": "2009-12-11T04:10:21.340375"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:10:21.340375"}, "latest_revision": 1, "key": "/works/OL11180047W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4669506A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11180324W 1 2009-12-11T04:10:28.230298 {"title": "Pierre Elliott Trudeau \u00e0 la Chambre de commerce de Qu\u00e9bec", "created": {"type": "/type/datetime", "value": "2009-12-11T04:10:28.230298"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:10:28.230298"}, "latest_revision": 1, "key": "/works/OL11180324W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4669713A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11180581W 2 2010-01-19T20:35:02.934370 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:10:28.230298"}, "title": "Herding behavior and analysts' optimistic forecast bias", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T20:35:02.934370"}, "latest_revision": 2, "key": "/works/OL11180581W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4669860A"}}], "type": {"key": "/type/work"}, "subjects": ["Investment analysis", "Stock price forecasting"], "revision": 2}
+/type/work /works/OL11180697W 4 2010-12-03T18:40:49.933937 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T18:40:49.933937"}, "title": "A sermon, preached in Boston, before the American Society for Educating Pious Youth for the Gospel Ministry", "created": {"type": "/type/datetime", "value": "2009-12-11T04:10:28.230298"}, "subjects": ["American Sermons", "American Society for Educating Pious Youth for the Gospel Ministry", "Appointment, call, and election", "Charity", "Clergy", "Congregational churches", "Sermons", "Sermons, American"], "latest_revision": 4, "key": "/works/OL11180697W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4669935A"}}], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL11181271W 3 2010-12-03T12:54:02.270525 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:10:33.152212"}, "subject_places": ["United States"], "subjects": ["Bilingual Education", "Education, Bilingual", "Language and languages", "Study and teaching"], "latest_revision": 3, "key": "/works/OL11181271W", "title": "Use of the spanish language in the United States", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4670265A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T12:54:02.270525"}, "revision": 3}
+/type/work /works/OL11181326W 3 2010-12-04T08:01:46.177598 {"last_modified": {"type": "/type/datetime", "value": "2010-12-04T08:01:46.177598"}, "title": "Ispolni\ufe20a\ufe21i\ufe20u\ufe21shchi\u012d obi\ufe20a\ufe21zannosti", "created": {"type": "/type/datetime", "value": "2009-12-11T04:10:33.152212"}, "subjects": ["Detective and mystery stories, Russian", "Russian Detective and mystery stories"], "latest_revision": 3, "key": "/works/OL11181326W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4670283A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11181668W 1 2009-12-11T04:10:33.152212 {"title": "Id\u0101rat al-Imbr\u0101\u1e6d\u016br\u012byah al-B\u012bzan\u1e6d\u012byah", "created": {"type": "/type/datetime", "value": "2009-12-11T04:10:33.152212"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:10:33.152212"}, "latest_revision": 1, "key": "/works/OL11181668W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4670335A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11181927W 2 2010-12-03T12:53:04.469870 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T12:53:04.469870"}, "title": "Behind the state of the union", "created": {"type": "/type/datetime", "value": "2009-12-11T04:10:33.152212"}, "subjects": ["Corporate culture", "International business enterprises", "Joint ventures", "Management"], "latest_revision": 2, "key": "/works/OL11181927W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4670418A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11182209W 3 2022-08-28T05:27:17.838180 {"title": "How to find out about the chemical industry", "subjects": ["Bibliography", "Chemical industry", "Industries chimiques", "Bibliographie", "Chemische industrie"], "key": "/works/OL11182209W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4670605A"}}], "type": {"key": "/type/work"}, "covers": [12876995], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T04:10:40.598591"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-28T05:27:17.838180"}}
+/type/work /works/OL11182576W 3 2022-12-27T20:07:38.589887 {"title": "Anton\u00edn Dvo\u0159\u00e1k", "key": "/works/OL11182576W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL136028A"}}], "subject_people": ["Anton\u00edn Dvo\u0159\u00e1k (1841-1904)"], "type": {"key": "/type/work"}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T04:10:40.598591"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-27T20:07:38.589887"}}
+/type/work /works/OL11182789W 1 2009-12-11T04:10:40.598591 {"title": "Essential amino acids and food intake of rats", "created": {"type": "/type/datetime", "value": "2009-12-11T04:10:40.598591"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:10:40.598591"}, "latest_revision": 1, "key": "/works/OL11182789W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4670955A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11183712W 1 2009-12-11T04:10:47.780725 {"title": "Dos pasiones oto\u00f1ales", "created": {"type": "/type/datetime", "value": "2009-12-11T04:10:47.780725"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:10:47.780725"}, "latest_revision": 1, "key": "/works/OL11183712W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4671514A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11183829W 2 2010-01-19T20:45:33.365711 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:10:47.780725"}, "title": "Facets of Indian culture", "subject_places": ["India"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T20:45:33.365711"}, "latest_revision": 2, "key": "/works/OL11183829W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4671572A"}}], "type": {"key": "/type/work"}, "subjects": ["Civilization"], "revision": 2}
+/type/work /works/OL11184361W 1 2009-12-11T04:10:54.363485 {"title": "Ogon\u02b9 v ochage", "created": {"type": "/type/datetime", "value": "2009-12-11T04:10:54.363485"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:10:54.363485"}, "latest_revision": 1, "key": "/works/OL11184361W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4671922A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11184362W 1 2009-12-11T04:10:54.363485 {"title": "Probuzhdenie", "created": {"type": "/type/datetime", "value": "2009-12-11T04:10:54.363485"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:10:54.363485"}, "latest_revision": 1, "key": "/works/OL11184362W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4671922A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11184368W 2 2010-01-19T20:50:14.722939 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:10:54.363485"}, "title": "African American adolescent mothers", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T20:50:14.722939"}, "latest_revision": 2, "key": "/works/OL11184368W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4671928A"}}], "type": {"key": "/type/work"}, "subjects": ["African American teenage mothers"], "revision": 2}
+/type/work /works/OL11184807W 2 2010-01-19T20:50:14.722939 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:10:54.363485"}, "title": "Creation, evolution, and science teaching in the secondary school", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T20:50:14.722939"}, "latest_revision": 2, "key": "/works/OL11184807W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4672165A"}}], "type": {"key": "/type/work"}, "subjects": ["Study and teaching (Secondary)", "Evolution"], "revision": 2}
+/type/work /works/OL11184823W 2 2010-01-19T20:50:14.722939 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:10:54.363485"}, "title": "Principes d'utilisation des ultrasons", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T20:50:14.722939"}, "latest_revision": 2, "key": "/works/OL11184823W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4672174A"}}], "type": {"key": "/type/work"}, "subjects": ["Mesures", "S\u00e9curit\u00e9", "Ultrasons", "Applications industrielles", "Ultrasons en m\u00e9decine"], "revision": 2}
+/type/work /works/OL11184978W 2 2010-01-19T20:50:14.722939 {"title": "Parama bisma\u1e8fa B\u0101laka \u1e6ch\u0101kura", "created": {"type": "/type/datetime", "value": "2009-12-11T04:10:54.363485"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-19T20:50:14.722939"}, "latest_revision": 2, "key": "/works/OL11184978W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4672262A"}}], "subject_people": ["B\u0101laka Brahmac\u0101r\u012b (1920-1993)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11185012W 2 2010-01-19T20:50:14.722939 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:10:54.363485"}, "title": "The building code as I see it", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T20:50:14.722939"}, "latest_revision": 2, "key": "/works/OL11185012W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4672287A"}}], "type": {"key": "/type/work"}, "subjects": ["Building laws"], "revision": 2}
+/type/work /works/OL11185537W 1 2009-12-11T04:11:00.668450 {"title": "S\u0101n\u016b\u1e43 samajha sat\u0101i\u0101", "created": {"type": "/type/datetime", "value": "2009-12-11T04:11:00.668450"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:11:00.668450"}, "latest_revision": 1, "key": "/works/OL11185537W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4672572A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11185760W 2 2010-01-19T20:55:17.030290 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:11:00.668450"}, "title": "The international civil service", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T20:55:17.030290"}, "latest_revision": 2, "key": "/works/OL11185760W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4672717A"}}], "type": {"key": "/type/work"}, "subjects": ["International officials and employees"], "revision": 2}
+/type/work /works/OL11185981W 2 2010-01-19T20:55:17.030290 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:11:00.668450"}, "title": "Yang mao chi pen fa", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T20:55:17.030290"}, "latest_revision": 2, "key": "/works/OL11185981W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4672821A"}}], "type": {"key": "/type/work"}, "subjects": ["Cats"], "revision": 2}
+/type/work /works/OL11186148W 1 2009-12-11T04:11:07.536651 {"title": "Introduction to civics and politics", "created": {"type": "/type/datetime", "value": "2009-12-11T04:11:07.536651"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:11:07.536651"}, "latest_revision": 1, "key": "/works/OL11186148W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4672922A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11186719W 2 2010-01-19T20:55:17.030290 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:11:07.536651"}, "title": "From housing rehabilitation to neighborhood development", "subject_places": ["Ohio", "Cincinnati"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T20:55:17.030290"}, "latest_revision": 2, "key": "/works/OL11186719W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4673260A"}}], "type": {"key": "/type/work"}, "subjects": ["Urban renewal", "Housing"], "revision": 2}
+/type/work /works/OL11186844W 2 2010-01-19T20:55:17.030290 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:11:07.536651"}, "title": "Study of the effect of primary sludge particle size reduction on the performance of an anaerobic sludge digester", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T20:55:17.030290"}, "latest_revision": 2, "key": "/works/OL11186844W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4673314A"}}], "type": {"key": "/type/work"}, "subjects": ["Digester gas", "Sewage sludge digestion"], "revision": 2}
+/type/work /works/OL11187401W 2 2010-01-19T21:00:21.443409 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:11:18.836438"}, "title": "Children with specific learning difficulties", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T21:00:21.443409"}, "latest_revision": 2, "key": "/works/OL11187401W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4673650A"}}], "type": {"key": "/type/work"}, "subjects": ["Education", "Children with disabilities"], "revision": 2}
+/type/work /works/OL11187432W 3 2010-12-03T14:27:47.543797 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:27:47.543797"}, "title": "Chung-kuo min chien shen hsiang", "created": {"type": "/type/datetime", "value": "2009-12-11T04:11:18.836438"}, "subjects": ["Chinese Gods", "Gods, Chinese"], "latest_revision": 3, "key": "/works/OL11187432W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4673677A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11187437W 2 2010-01-19T21:00:21.443409 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:11:18.836438"}, "title": "The cultivation of hunger: towards the political economy of agricultural development in the Sudan 1956-1964", "subject_places": ["Sudan"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T21:00:21.443409"}, "latest_revision": 2, "key": "/works/OL11187437W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4673681A"}}], "type": {"key": "/type/work"}, "subjects": ["Agriculture"], "revision": 2}
+/type/work /works/OL11187834W 3 2012-05-17T12:27:29.962877 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:11:18.836438"}, "subject_places": ["United States"], "subjects": ["Officials and employees", "Civil service positions"], "latest_revision": 3, "key": "/works/OL11187834W", "title": "Working for the USA", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1746944A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-17T12:27:29.962877"}, "revision": 3}
+/type/work /works/OL11188104W 2 2010-01-19T21:00:21.443409 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:11:18.836438"}, "title": "Consumers' cooperative adventures", "subject_places": ["United States", "Great Britain"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T21:00:21.443409"}, "latest_revision": 2, "key": "/works/OL11188104W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4674002A"}}], "type": {"key": "/type/work"}, "subjects": ["Cooperation"], "revision": 2}
+/type/work /works/OL11188344W 2 2010-01-19T21:05:56.444785 {"title": "Fran\u00e7ois Perin", "created": {"type": "/type/datetime", "value": "2009-12-11T04:11:24.980995"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-19T21:05:56.444785"}, "latest_revision": 2, "key": "/works/OL11188344W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4674157A"}}], "subject_people": ["Fran\u00e7ois Perin (1921-.*)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11188640W 2 2010-01-19T21:05:56.444785 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:11:24.980995"}, "title": "O nejmlad\u0161\u00ed generaci b\u00e1snick\u00e9", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T21:05:56.444785"}, "latest_revision": 2, "key": "/works/OL11188640W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4674285A"}}], "subject_times": ["20th century"], "type": {"key": "/type/work"}, "subjects": ["History and criticism", "Czech poetry"], "revision": 2}
+/type/work /works/OL11189144W 1 2009-12-11T04:11:31.803820 {"title": "Mun\u02bbim Fur\u0101t, na\u1e25\u1e25\u0101t fi\u1e6dr\u012b", "created": {"type": "/type/datetime", "value": "2009-12-11T04:11:31.803820"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:11:31.803820"}, "latest_revision": 1, "key": "/works/OL11189144W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4674534A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11189383W 2 2010-01-19T21:05:56.444785 {"title": "Abniyat al-fi\u02bbl f\u012b Sh\u0101fiyat Ibn al-\u1e24\u0101jib", "created": {"type": "/type/datetime", "value": "2009-12-11T04:11:31.803820"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-19T21:05:56.444785"}, "latest_revision": 2, "key": "/works/OL11189383W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4674666A"}}], "subject_people": ["Ibn al-\u1e24\u0101jib, \u02bbUthm\u0101n ibn \u02bbUmar (1175-1249)"], "type": {"key": "/type/work"}, "subjects": ["Arabic language", "Verb", "Grammar"], "revision": 2}
+/type/work /works/OL11189562W 1 2009-12-11T04:11:31.803820 {"title": "Azmat Mi\u1e63r al-iqti\u1e63\u0101d\u012byah al-r\u0101hinah wa-al-\u1e6dar\u012bq na\u1e25wa al-khur\u016bj minh\u0101", "created": {"type": "/type/datetime", "value": "2009-12-11T04:11:31.803820"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:11:31.803820"}, "latest_revision": 1, "key": "/works/OL11189562W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4674771A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11190013W 2 2010-12-03T13:34:53.314552 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:34:53.314552"}, "title": "The original institution of the general Society of the Cincinnati", "created": {"type": "/type/datetime", "value": "2009-12-11T04:11:31.803820"}, "subjects": ["Society of the Cincinnati"], "latest_revision": 2, "key": "/works/OL11190013W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4675038A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11190086W 1 2009-12-11T04:11:31.803820 {"title": "B\u0101qiy\u0101t-i Sh\u0101d", "created": {"type": "/type/datetime", "value": "2009-12-11T04:11:31.803820"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:11:31.803820"}, "latest_revision": 1, "key": "/works/OL11190086W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4675089A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11190598W 1 2009-12-11T04:11:39.240984 {"title": "La demande d'\u00e9nergie en Suisse", "created": {"type": "/type/datetime", "value": "2009-12-11T04:11:39.240984"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:11:39.240984"}, "latest_revision": 1, "key": "/works/OL11190598W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4675355A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11190622W 1 2009-12-11T04:11:39.240984 {"title": "Substructure synthesis methods for viscoelastic structures", "created": {"type": "/type/datetime", "value": "2009-12-11T04:11:39.240984"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:11:39.240984"}, "latest_revision": 1, "key": "/works/OL11190622W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4675371A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11190695W 1 2009-12-11T04:11:39.240984 {"title": "Development of canine adenovirus type I as an expression vector for the rabies glycoprotein gene", "created": {"type": "/type/datetime", "value": "2009-12-11T04:11:39.240984"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:11:39.240984"}, "latest_revision": 1, "key": "/works/OL11190695W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4675419A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11190964W 1 2009-12-11T04:11:39.240984 {"title": "De l'alt camp al priorat", "created": {"type": "/type/datetime", "value": "2009-12-11T04:11:39.240984"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:11:39.240984"}, "latest_revision": 1, "key": "/works/OL11190964W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4675593A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11191339W 3 2010-12-03T12:55:03.691727 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:11:46.379420"}, "subject_places": ["France"], "subjects": ["Architecture", "Opera royal (Versailles, France)"], "latest_revision": 3, "key": "/works/OL11191339W", "title": "L' Op\u00e9ra royal de Versailles", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4675844A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T12:55:03.691727"}, "revision": 3}
+/type/work /works/OL11192184W 2 2010-01-19T21:15:41.063616 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:11:53.662788"}, "title": "Private and unregulated carriage", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T21:15:41.063616"}, "latest_revision": 2, "key": "/works/OL11192184W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4676381A"}}], "type": {"key": "/type/work"}, "subjects": ["Carriers"], "revision": 2}
+/type/work /works/OL11192304W 3 2021-02-19T05:08:50.713466 {"title": "The use of psychological tests in industry", "key": "/works/OL11192304W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4676468A"}}], "type": {"key": "/type/work"}, "subjects": ["Employment tests", "Geschiktheidsonderzoek", "Beroepskeuze", "Psychologische tests", "Industrie", "Arbeids- en organisatiepsychologie"], "covers": [9898877], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T04:11:53.662788"}, "last_modified": {"type": "/type/datetime", "value": "2021-02-19T05:08:50.713466"}}
+/type/work /works/OL11192889W 2 2010-01-19T21:21:09.207248 {"title": "I\ufe20U\ufe21ri\u012d Nikolaevich Voronov (1874-1931)", "created": {"type": "/type/datetime", "value": "2009-12-11T04:11:53.662788"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-19T21:21:09.207248"}, "latest_revision": 2, "key": "/works/OL11192889W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4676842A"}}], "subject_people": ["I\ufe20U\ufe21ri\u012d Nikolaevich Voronov (1874-1931.*)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11192911W 1 2009-12-11T04:11:53.662788 {"title": "The sequences of Verona, Biblioteca Capitolare CVII and the Italian sequence tradition", "created": {"type": "/type/datetime", "value": "2009-12-11T04:11:53.662788"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:11:53.662788"}, "latest_revision": 1, "key": "/works/OL11192911W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4676859A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11193005W 2 2010-07-05T02:50:44.378296 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:11:53.662788"}, "title": "Metalurgia del oro y la Plata", "covers": [-1], "last_modified": {"type": "/type/datetime", "value": "2010-07-05T02:50:44.378296"}, "latest_revision": 2, "key": "/works/OL11193005W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4676923A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11193494W 1 2009-12-11T04:12:01.706563 {"title": "R\u0101matanaya, vyakt\u012b \u0101\u1e47i v\u0101\u00f1maya", "created": {"type": "/type/datetime", "value": "2009-12-11T04:12:01.706563"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:12:01.706563"}, "latest_revision": 1, "key": "/works/OL11193494W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4677244A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11194115W 2 2010-01-19T21:21:09.207248 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:12:01.706563"}, "title": "History of literature", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T21:21:09.207248"}, "latest_revision": 2, "key": "/works/OL11194115W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4677710A"}}], "type": {"key": "/type/work"}, "subjects": ["History and criticism", "Portuguese literature"], "revision": 2}
+/type/work /works/OL11194149W 3 2010-12-03T17:18:53.658057 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:12:08.617010"}, "subject_places": ["Czechoslovakia"], "subjects": ["Geographical Names", "Names, Geographical"], "latest_revision": 3, "key": "/works/OL11194149W", "title": "First list of names in Czechoslovakia", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4677724A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T17:18:53.658057"}, "revision": 3}
+/type/work /works/OL11194285W 2 2010-01-19T21:21:09.207248 {"title": "El Mariscal de America y otros ensayos", "created": {"type": "/type/datetime", "value": "2009-12-11T04:12:08.617010"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-19T21:21:09.207248"}, "latest_revision": 2, "key": "/works/OL11194285W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4677797A"}}], "subject_people": ["Jos\u00e9 Felix Estigarribia (1888-1940)", "Francisco Solano L\u00f3pez (1827-1870)"], "type": {"key": "/type/work"}, "subjects": ["Chaco War, 1932-1935", "Biography"], "revision": 2}
+/type/work /works/OL11194345W 3 2020-09-03T06:32:43.949274 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:12:08.617010"}, "subjects": ["Arabic poetry"], "latest_revision": 3, "key": "/works/OL11194345W", "title": "Agh\u0101n\u012b al-Agh\u0101n\u012b", "subject_times": ["750-1258"], "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL173345A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-09-03T06:32:43.949274"}, "revision": 3}
+/type/work /works/OL11194626W 1 2009-12-11T04:12:08.617010 {"title": "G\u0332h\u0332ub\u0101r-i shab,[aur d\u016bsare n\u0101vilet]", "created": {"type": "/type/datetime", "value": "2009-12-11T04:12:08.617010"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:12:08.617010"}, "latest_revision": 1, "key": "/works/OL11194626W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4677986A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11194918W 4 2023-01-06T09:28:10.540365 {"title": "Symposium on Cerebral Palsy", "subjects": ["Cerebral palsy", "Congresses"], "key": "/works/OL11194918W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4678202A"}}], "type": {"key": "/type/work"}, "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T04:12:08.617010"}, "last_modified": {"type": "/type/datetime", "value": "2023-01-06T09:28:10.540365"}}
+/type/work /works/OL11195142W 3 2021-08-24T11:32:49.453486 {"title": "Semmelweis: his life and doctrine", "key": "/works/OL11195142W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4678332A"}}], "subject_people": ["Ign\u00e1c F\u00fcl\u00f6p Semmelweis (1818-1865)"], "type": {"key": "/type/work"}, "subjects": ["History of Medicine", "Biography", "Obstetrics", "History"], "covers": [11774481], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T04:12:16.022723"}, "last_modified": {"type": "/type/datetime", "value": "2021-08-24T11:32:49.453486"}}
+/type/work /works/OL11195453W 1 2009-12-11T04:12:16.022723 {"title": "Al- \u1e6car\u012bq", "created": {"type": "/type/datetime", "value": "2009-12-11T04:12:16.022723"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:12:16.022723"}, "latest_revision": 1, "key": "/works/OL11195453W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4678557A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11195475W 3 2011-03-23T13:46:21.098558 {"description": {"type": "/type/text", "value": "A CATALOGUE OF THE 15,000 SLIDES CONCERNING MEDIAEVAL MONASTIC SITES IN THE COLLECTION OF THE PONTIFICAL INSTITUTE OF MEDIAEVAL STUDIES AT THE UNIVERSITY OF TORONTO"}, "last_modified": {"type": "/type/datetime", "value": "2011-03-23T13:46:21.098558"}, "latest_revision": 3, "key": "/works/OL11195475W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4678572A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T04:12:16.022723"}, "title": "Bibliotheca Guest slide collection", "subjects": ["Slides", "Slides (Photographic)", "Private collections", "Monasteries", "Church architecture", "Slide collections"], "subject_people": ["R. Gerald Guest"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11195641W 1 2009-12-11T04:12:16.022723 {"title": "Creiem en l'Esperit Sant", "created": {"type": "/type/datetime", "value": "2009-12-11T04:12:16.022723"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:12:16.022723"}, "latest_revision": 1, "key": "/works/OL11195641W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4678669A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11195741W 1 2009-12-11T04:12:16.022723 {"title": "Review of U.S. policy toward the USSR", "created": {"type": "/type/datetime", "value": "2009-12-11T04:12:16.022723"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:12:16.022723"}, "latest_revision": 1, "key": "/works/OL11195741W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4678732A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11195748W 2 2010-01-19T21:26:20.358075 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:12:16.022723"}, "title": "al- Mas\u012b\u1e25\u012byah al-siy\u0101s\u012byah f\u012b Mi\u1e63r", "subject_places": ["Egypt"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T21:26:20.358075"}, "latest_revision": 2, "key": "/works/OL11195748W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4678738A"}}], "type": {"key": "/type/work"}, "subjects": ["Church and state", "Copts", "Coptic Church", "Government relations"], "revision": 2}
+/type/work /works/OL11195841W 1 2009-12-11T04:12:16.022723 {"title": "Azmat sharaf", "created": {"type": "/type/datetime", "value": "2009-12-11T04:12:16.022723"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:12:16.022723"}, "latest_revision": 1, "key": "/works/OL11195841W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4678799A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11195953W 3 2010-12-03T12:55:03.691727 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T12:55:03.691727"}, "latest_revision": 3, "key": "/works/OL11195953W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4678837A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T04:12:16.022723"}, "title": "El Mesozoico de Am\u00e9rica del Sur y sus tetr\u00e1podos", "subject_places": ["South America"], "subjects": ["Fossil Vertebrates", "Geology", "Geology, Stratigraphic", "Paleontology", "Stratigraphic Geology", "Vertebrates, Fossil"], "subject_times": ["Mesozoic"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11196180W 3 2010-12-03T13:06:43.287132 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:06:43.287132"}, "title": "Dir\u0101s\u0101t f\u012b al-mu\u02bbjam al-\u02bbArab\u012b", "created": {"type": "/type/datetime", "value": "2009-12-11T04:12:23.185578"}, "subjects": ["Arabic Encyclopedias and dictionaries", "Arabic language", "Dictionaries", "Encyclopedias and dictionaries, Arabic", "History", "History and criticism", "Lexicography"], "latest_revision": 3, "key": "/works/OL11196180W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4678986A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1119645W 4 2010-12-03T12:33:29.893110 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:32:13.438870"}, "subject_places": ["Iran", "United States"], "subjects": ["American Economic sanctions", "Economic sanctions, American", "Foreign economic relations"], "latest_revision": 4, "key": "/works/OL1119645W", "title": "Expansion and clarification of entities against which sanctions may be imposed pursuant to the Iran Sanctions Act of 1996", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4528217A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T12:33:29.893110"}, "revision": 4}
+/type/work /works/OL1119668W 7 2020-08-13T09:44:40.063312 {"covers": [3960690], "last_modified": {"type": "/type/datetime", "value": "2020-08-13T09:44:40.063312"}, "latest_revision": 7, "key": "/works/OL1119668W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4528217A"}}], "created": {"type": "/type/datetime", "value": "2009-12-09T20:32:13.438870"}, "title": "Foreign aid reform", "subject_places": ["Developing countries", "United States"], "subjects": ["Foreign economic relations", "United States", "United States. Agency for International Development", "American Economic assistance", "Economic assistance", "Government policy"], "type": {"key": "/type/work"}, "revision": 7}
+/type/work /works/OL11196833W 2 2010-01-19T21:30:54.543825 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:12:23.185578"}, "title": "A practical manual of the treatment of club-foot", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T21:30:54.543825"}, "latest_revision": 2, "key": "/works/OL11196833W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4679407A"}}], "type": {"key": "/type/work"}, "subjects": ["Clubfoot"], "revision": 2}
+/type/work /works/OL1119702W 4 2010-07-09T23:45:29.581601 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:32:13.438870"}, "title": "The future of Columbian narcotics control efforts and the Andean initiative", "covers": [4575928], "subject_places": ["Andes Region", "United States", "Colombia"], "last_modified": {"type": "/type/datetime", "value": "2010-07-09T23:45:29.581601"}, "latest_revision": 4, "key": "/works/OL1119702W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4528217A"}}], "type": {"key": "/type/work"}, "subjects": ["Drug control", "International cooperation", "Cocaine industry", "Drug traffic"], "revision": 4}
+/type/work /works/OL1119704W 5 2020-02-28T02:27:03.540333 {"last_modified": {"type": "/type/datetime", "value": "2020-02-28T02:27:03.540333"}, "latest_revision": 5, "key": "/works/OL1119704W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4528217A"}}], "created": {"type": "/type/datetime", "value": "2009-12-09T20:32:13.438870"}, "title": "The future of political, economic, and security relations with China", "subject_places": ["China", "United States"], "subjects": ["Human rights", "Politics and government", "Government policy", "Military policy", "Foreign relations"], "subject_times": ["2002-"], "type": {"key": "/type/work"}, "revision": 5}
+/type/work /works/OL11198064W 2 2010-01-19T21:35:49.967043 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:12:30.442680"}, "title": "Southern schools", "subject_places": ["Southern States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T21:35:49.967043"}, "latest_revision": 2, "key": "/works/OL11198064W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4680157A"}}], "type": {"key": "/type/work"}, "subjects": ["Education"], "revision": 2}
+/type/work /works/OL1119806W 4 2010-12-05T05:10:36.710485 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:32:13.438870"}, "subject_places": ["Europe"], "subjects": ["National security", "North Atlantic Treaty Organization"], "latest_revision": 4, "key": "/works/OL1119806W", "title": "NATO and Western security in the 1980's--the European perception", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4528217A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-05T05:10:36.710485"}, "revision": 4}
+/type/work /works/OL11198544W 2 2010-01-19T21:35:49.967043 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:12:38.238607"}, "title": "The electrophysiology of extraocular muscle", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T21:35:49.967043"}, "latest_revision": 2, "key": "/works/OL11198544W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4680513A"}}], "type": {"key": "/type/work"}, "subjects": ["Electromyography", "Electrophysiology", "Oculomotor Muscles", "Physiology"], "revision": 2}
+/type/work /works/OL11198592W 2 2022-12-10T15:02:53.052567 {"title": "Molise Molise", "key": "/works/OL11198592W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4680537A"}}], "type": {"key": "/type/work"}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T04:12:38.238607"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T15:02:53.052567"}}
+/type/work /works/OL11198610W 3 2010-12-03T12:57:49.473704 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T12:57:49.473704"}, "title": "A text-book for training schools for nurses", "created": {"type": "/type/datetime", "value": "2009-12-11T04:12:38.238607"}, "subjects": ["Education, Nursing", "Nursing Education"], "latest_revision": 3, "key": "/works/OL11198610W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4680549A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11199027W 2 2010-01-19T21:41:10.498861 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:12:38.238607"}, "title": "Epilepsy", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T21:41:10.498861"}, "latest_revision": 2, "key": "/works/OL11199027W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4680829A"}}], "type": {"key": "/type/work"}, "subjects": ["Seizures", "Epilepsy"], "revision": 2}
+/type/work /works/OL11199320W 1 2009-12-11T04:12:45.335587 {"title": "Yapatera en el recuerdo de los campesinos", "created": {"type": "/type/datetime", "value": "2009-12-11T04:12:45.335587"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:12:45.335587"}, "latest_revision": 1, "key": "/works/OL11199320W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4681043A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11199354W 3 2010-12-03T12:58:23.608197 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T12:58:23.608197"}, "title": "Drug mechanisms in glaucoma", "created": {"type": "/type/datetime", "value": "2009-12-11T04:12:45.335587"}, "subjects": ["Drug effects", "Glaucoma", "Intraocular pressure", "Parasympathomimetics", "Pharmacology", "Sympathomimetics"], "latest_revision": 3, "key": "/works/OL11199354W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4681066A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11199359W 1 2009-12-11T04:12:45.335587 {"title": "Devanavar\u012b", "created": {"type": "/type/datetime", "value": "2009-12-11T04:12:45.335587"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:12:45.335587"}, "latest_revision": 1, "key": "/works/OL11199359W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4681072A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11199480W 1 2009-12-11T04:12:45.335587 {"title": "A case of general cancer including the suprarenal capsules, with symptoms of Addison's disease", "created": {"type": "/type/datetime", "value": "2009-12-11T04:12:45.335587"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:12:45.335587"}, "latest_revision": 1, "key": "/works/OL11199480W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4681148A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11199752W 2 2010-01-19T21:41:10.498861 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:12:45.335587"}, "title": "Otsrot ha-\u1e6deva\u02bb be-makhhtashe ha-Negev", "subject_places": ["Israel", "Negev"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T21:41:10.498861"}, "latest_revision": 2, "key": "/works/OL11199752W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4681293A"}}], "type": {"key": "/type/work"}, "subjects": ["Geology", "Mineralogy"], "revision": 2}
+/type/work /works/OL11200459W 2 2010-01-19T21:46:08.615517 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:12:52.263373"}, "title": "A symposium of papers presented at the fortieth annual Pacific Section A.A.P.G. Convention, 1965, Bakersfield, California", "subject_places": ["California"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T21:46:08.615517"}, "latest_revision": 2, "key": "/works/OL11200459W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4681658A"}}], "type": {"key": "/type/work"}, "subjects": ["Congresses", "Oil fields", "Natural gas"], "revision": 2}
+/type/work /works/OL1120093W 4 2010-12-05T04:14:07.305738 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:32:17.158523"}, "subject_places": ["United States"], "subjects": ["International agencies", "United Nations"], "latest_revision": 4, "key": "/works/OL1120093W", "title": "U.S. participation in international organizations and programs", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4528217A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-05T04:14:07.305738"}, "revision": 4}
+/type/work /works/OL1120094W 3 2010-12-04T05:58:03.129603 {"last_modified": {"type": "/type/datetime", "value": "2010-12-04T05:58:03.129603"}, "title": "U. S. Participation in the Hague Conference and the Rome Institute", "created": {"type": "/type/datetime", "value": "2009-12-09T20:32:17.158523"}, "subjects": ["Hague Conference on Private International Law", "International Institute for the Unification of Private Law"], "latest_revision": 3, "key": "/works/OL1120094W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4528217A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11200989W 3 2020-03-15T18:25:57.630553 {"last_modified": {"type": "/type/datetime", "value": "2020-03-15T18:25:57.630553"}, "title": "Die unregelma ssige herzta tigkeit", "created": {"type": "/type/datetime", "value": "2009-12-11T04:12:52.263373"}, "subjects": ["Cardiovascular Diseases"], "latest_revision": 3, "key": "/works/OL11200989W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2400772A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11201134W 3 2010-12-03T12:57:49.473704 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T12:57:49.473704"}, "title": "A short history of the Order of St. John", "created": {"type": "/type/datetime", "value": "2009-12-11T04:13:00.464728"}, "subjects": ["History", "Knights of Malta", "St. John Ambulance Association and Brigade"], "latest_revision": 3, "key": "/works/OL11201134W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4682089A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11201775W 4 2010-12-03T12:56:40.013591 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:13:00.464728"}, "subjects": ["Tuberculin test"], "latest_revision": 4, "key": "/works/OL11201775W", "title": "The tuberculin test in clinical practice", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4682539A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T12:56:40.013591"}, "covers": [5293704], "revision": 4}
+/type/work /works/OL11202206W 1 2009-12-11T04:13:07.079310 {"title": "An examination of the implementation of higher education policy in an independent Bahamas, 1974-1982", "created": {"type": "/type/datetime", "value": "2009-12-11T04:13:07.079310"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:13:07.079310"}, "latest_revision": 1, "key": "/works/OL11202206W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4682815A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11202354W 1 2009-12-11T04:13:07.079310 {"title": "A\u1e0dw\u0101\u02be \u02bbal\u00e1 al-s\u012bnim\u0101 f\u012b al-Kuwayt", "created": {"type": "/type/datetime", "value": "2009-12-11T04:13:07.079310"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:13:07.079310"}, "latest_revision": 1, "key": "/works/OL11202354W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4682924A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11202887W 3 2023-01-10T22:52:19.702236 {"title": "A history of epidemic pestilences from the earliest ages", "key": "/works/OL11202887W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4683209A"}}], "type": {"key": "/type/work"}, "subjects": ["Disease Outbreaks", "History", "Epidemics"], "covers": [6512184], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T04:13:07.079310"}, "last_modified": {"type": "/type/datetime", "value": "2023-01-10T22:52:19.702236"}}
+/type/work /works/OL11203115W 1 2009-12-11T04:13:07.079310 {"title": "Pol\u00edtica demogr\u00e1fica", "created": {"type": "/type/datetime", "value": "2009-12-11T04:13:07.079310"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:13:07.079310"}, "latest_revision": 1, "key": "/works/OL11203115W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4683321A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11203277W 1 2009-12-11T04:13:14.230400 {"title": "Da\u012dki i \u0117ndogennoe orudenenie", "created": {"type": "/type/datetime", "value": "2009-12-11T04:13:14.230400"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:13:14.230400"}, "latest_revision": 1, "key": "/works/OL11203277W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4683402A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11203385W 2 2010-01-19T21:56:20.607761 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:13:14.230400"}, "title": "Shiro", "subject_places": ["Japan"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T21:56:20.607761"}, "latest_revision": 2, "key": "/works/OL11203385W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4683455A"}}], "type": {"key": "/type/work"}, "subjects": ["Castles", "Architecture"], "revision": 2}
+/type/work /works/OL11203740W 2 2010-01-19T21:56:20.607761 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:13:14.230400"}, "title": "Da revolu\u00e7\u00e3o dos alfaiates \u00e0 riqueza dos baianos no s\u00e9culo XIX", "subject_places": ["Bahia (Brazil : State)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T21:56:20.607761"}, "latest_revision": 2, "key": "/works/OL11203740W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4683687A"}}], "type": {"key": "/type/work"}, "subjects": ["History"], "revision": 2}
+/type/work /works/OL11204214W 2 2010-01-19T21:56:20.607761 {"title": "Wall drawings and monuments of El Kab", "created": {"type": "/type/datetime", "value": "2009-12-11T04:13:22.982545"}, "subject_places": ["El-Kab (Egypt)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T21:56:20.607761"}, "latest_revision": 2, "key": "/works/OL11204214W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4684012A"}}], "subject_people": ["Sebek-nekht"], "type": {"key": "/type/work"}, "subjects": ["Tombs"], "revision": 2}
+/type/work /works/OL1120422W 3 2010-07-20T13:46:00.337972 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:32:17.158523"}, "title": "Artist-life", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-07-20T13:46:00.337972"}, "latest_revision": 3, "key": "/works/OL1120422W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL114868A"}}], "type": {"key": "/type/work"}, "subjects": ["Artists", "Artists, American", "American Artists"], "revision": 3}
+/type/work /works/OL11204399W 2 2010-01-19T22:01:46.649103 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:13:22.982545"}, "title": "Survey on color: aspects of perception and computation", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T22:01:46.649103"}, "latest_revision": 2, "key": "/works/OL11204399W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4684131A"}}], "type": {"key": "/type/work"}, "subjects": ["Computer vision", "Color vision"], "revision": 2}
+/type/work /works/OL11204557W 2 2010-01-19T22:01:46.649103 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:13:22.982545"}, "title": "The linears of Northern Saskatchewan; a geophysical interpretation", "subject_places": ["Saskatchewan"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T22:01:46.649103"}, "latest_revision": 2, "key": "/works/OL11204557W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4684250A"}}], "type": {"key": "/type/work"}, "subjects": ["Physics Theses", "Geophysics", "Geology"], "revision": 2}
+/type/work /works/OL11204616W 2 2010-01-19T22:01:46.649103 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:13:22.982545"}, "title": "The bathymetric distribution of the benthic Amphipoda (Crustacea, Malacostraca) of Baie des Chaleurs, Gulf of St. Lawrence, and its bearing on zoogeography", "subject_places": ["Gulf of Saint Lawrence"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T22:01:46.649103"}, "latest_revision": 2, "key": "/works/OL11204616W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4684300A"}}], "type": {"key": "/type/work"}, "subjects": ["Amphipoda", "Zoogeography"], "revision": 2}
+/type/work /works/OL11204703W 2 2010-01-19T22:01:46.649103 {"title": "From crisis to renewal", "created": {"type": "/type/datetime", "value": "2009-12-11T04:13:22.982545"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-19T22:01:46.649103"}, "latest_revision": 2, "key": "/works/OL11204703W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4684364A"}}], "subject_people": ["Alfred D\u00f6blin (1878-1957)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11204793W 2 2010-01-19T22:01:46.649103 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:13:22.982545"}, "title": "Studies in the chemistry of cedrenoid components of shellac", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T22:01:46.649103"}, "latest_revision": 2, "key": "/works/OL11204793W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4684432A"}}], "type": {"key": "/type/work"}, "subjects": ["Shellac", "Cedrene"], "revision": 2}
+/type/work /works/OL11204844W 2 2010-01-19T22:01:46.649103 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:13:22.982545"}, "title": "A study of surface seismic wave propagation in the earth", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T22:01:46.649103"}, "latest_revision": 2, "key": "/works/OL11204844W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4684471A"}}], "type": {"key": "/type/work"}, "subjects": ["Physics Theses", "Seismology"], "revision": 2}
+/type/work /works/OL1120488W 3 2010-04-29T02:38:00.751657 {"subtitle": "by Henri Barbusse.", "title": "Do you know Thaelmann?", "created": {"type": "/type/datetime", "value": "2009-12-09T20:32:17.158523"}, "subject_places": ["Germany"], "last_modified": {"type": "/type/datetime", "value": "2010-04-29T02:38:00.751657"}, "latest_revision": 3, "key": "/works/OL1120488W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL114876A"}}], "subject_people": ["Ernst Thaelmann"], "type": {"key": "/type/work"}, "subjects": ["Communism"], "revision": 3}
+/type/work /works/OL11205433W 3 2010-12-03T12:57:49.473704 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T12:57:49.473704"}, "title": "Home health payment legislation", "created": {"type": "/type/datetime", "value": "2009-12-11T04:13:30.966104"}, "subjects": ["Economics", "Health Services for the Aged", "Home care services", "Legislation & jurisprudence"], "latest_revision": 3, "key": "/works/OL11205433W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4684874A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11205435W 3 2023-01-06T16:55:32.138031 {"title": "Gaucher disease", "key": "/works/OL11205435W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4684876A"}}], "type": {"key": "/type/work"}, "subjects": ["Gaucher Disease", "Enzymes", "Therapeutic use", "Therapy", "Enzyme Therapy"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T04:13:30.966104"}, "last_modified": {"type": "/type/datetime", "value": "2023-01-06T16:55:32.138031"}}
+/type/work /works/OL11206463W 3 2010-12-03T12:56:40.013591 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T12:56:40.013591"}, "title": "Organizing a healthcare history program", "created": {"type": "/type/datetime", "value": "2009-12-11T04:13:39.794959"}, "subjects": ["Archives", "Health facilities", "History", "History of Medicine", "Outlines"], "latest_revision": 3, "key": "/works/OL11206463W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4685617A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11206687W 2 2010-01-19T22:06:36.665255 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:13:39.794959"}, "title": "Les premi\u00e8res civilisations", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T22:06:36.665255"}, "latest_revision": 2, "key": "/works/OL11206687W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4685793A"}}], "type": {"key": "/type/work"}, "subjects": ["Homme pr\u00e9historique", "Civilisation ancienne"], "revision": 2}
+/type/work /works/OL11207323W 3 2010-12-03T13:00:10.109792 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:00:10.109792"}, "title": "The eclectic materia medica", "created": {"type": "/type/datetime", "value": "2009-12-11T04:13:47.124594"}, "subjects": ["Drug therapy", "Eclecticism, Historical", "Historical Eclecticism", "Materia medica", "Medicinal plants", "Pharmacology", "Plants, Medicinal", "Therapeutics"], "latest_revision": 3, "key": "/works/OL11207323W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4686237A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11207363W 2 2010-01-19T22:11:28.000399 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:13:47.124594"}, "title": "Cancer", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T22:11:28.000399"}, "latest_revision": 2, "key": "/works/OL11207363W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4686260A"}}], "type": {"key": "/type/work"}, "subjects": ["Neoplasms", "Homeotherapy"], "revision": 2}
+/type/work /works/OL11207611W 2 2010-01-19T22:11:28.000399 {"title": "I\ufe20A\ufe21kiv Susha - \u0116pyskop Kholms\u02b9ky\u012d (1610-1687)", "created": {"type": "/type/datetime", "value": "2009-12-11T04:13:47.124594"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-19T22:11:28.000399"}, "latest_revision": 2, "key": "/works/OL11207611W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4686381A"}}], "subject_people": ["I\ufe20A\ufe21kiv Susha (1610-1687.*)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11208019W 3 2010-12-03T13:00:10.109792 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:13:47.124594"}, "subject_places": ["Sub-Saharan Africa"], "subjects": ["African Sculpture", "Art", "Art, Primitive", "Primitive Art", "Primitive Sculpture", "Sculpture, African", "Sculpture, Primitive"], "latest_revision": 3, "key": "/works/OL11208019W", "title": "Traditional art of the African nations", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4686651A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:00:10.109792"}, "revision": 3}
+/type/work /works/OL11208087W 3 2010-12-03T21:26:59.521802 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T21:26:59.521802"}, "title": "Modern Czech painting", "created": {"type": "/type/datetime", "value": "2009-12-11T04:13:47.124594"}, "subjects": ["Czech Painting", "Painting, Czech"], "latest_revision": 3, "key": "/works/OL11208087W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4686703A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11208246W 2 2010-01-19T22:16:54.224104 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:13:54.614961"}, "title": "Principles of simple treatments for the home", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T22:16:54.224104"}, "latest_revision": 2, "key": "/works/OL11208246W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4686831A"}}], "type": {"key": "/type/work"}, "subjects": ["Hydrotherapy"], "revision": 2}
+/type/work /works/OL11208283W 3 2010-12-03T12:58:56.865971 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T12:58:56.865971"}, "title": "Exercises in the bath", "created": {"type": "/type/datetime", "value": "2009-12-11T04:13:54.614961"}, "subjects": ["Exercise therapy", "Hydrotherapy"], "latest_revision": 3, "key": "/works/OL11208283W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4686863A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11208350W 3 2010-12-03T15:30:49.833189 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:13:54.614961"}, "subjects": ["Early works to 1800", "Infallibility (Philosophy)", "Islam", "Prophetic office", "Prophets, Pre-Islamic", "Religious aspects", "Religious aspects of Infallibility (Philosophy)"], "subject_people": ["Mu\u1e25ammad Prophet (d. 632)"], "key": "/works/OL11208350W", "title": "Tu\u1e25fat al-\u1e63ad\u012bq f\u012b bar\u0101\u02bcat al-\u1e63idd\u012bq", "latest_revision": 3, "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4686891A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:30:49.833189"}, "revision": 3}
+/type/work /works/OL11208709W 3 2012-08-02T19:56:20.211784 {"last_modified": {"type": "/type/datetime", "value": "2012-08-02T19:56:20.211784"}, "title": "Personal memoirs of a Canadian missionary, S.P.G", "created": {"type": "/type/datetime", "value": "2009-12-11T04:13:54.614961"}, "covers": [7177218], "subject_places": ["Canada"], "subjects": ["Missionaries", "Biography", "Biographies", "Missionnaires"], "subject_people": ["George Slack"], "key": "/works/OL11208709W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4687124A"}}], "latest_revision": 3, "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11209872W 2 2010-01-19T22:22:36.401765 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:14:03.964914"}, "title": "Report, 1964-1965", "subject_places": ["Norfolk", "Virginia"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T22:22:36.401765"}, "latest_revision": 2, "key": "/works/OL11209872W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4687924A"}}], "type": {"key": "/type/work"}, "subjects": ["City planning"], "revision": 2}
+/type/work /works/OL11210173W 1 2009-12-11T04:14:11.393474 {"title": "An address to parents on the subject of inoculation for the small-pox", "created": {"type": "/type/datetime", "value": "2009-12-11T04:14:11.393474"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:14:11.393474"}, "latest_revision": 1, "key": "/works/OL11210173W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4688157A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11210430W 1 2009-12-11T04:14:11.393474 {"title": "Olovo v magmaticheskom i postmagmaticheskom prot\ufe20s\ufe21essakh", "created": {"type": "/type/datetime", "value": "2009-12-11T04:14:11.393474"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:14:11.393474"}, "latest_revision": 1, "key": "/works/OL11210430W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4688318A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11210489W 2 2010-01-19T22:22:36.401765 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:14:11.393474"}, "title": "IX International Conference on the Physics of Semiconductors", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T22:22:36.401765"}, "latest_revision": 2, "key": "/works/OL11210489W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4688361A"}}], "type": {"key": "/type/work"}, "subjects": ["Semiconductors", "Congresses"], "revision": 2}
+/type/work /works/OL11210607W 3 2010-12-03T18:57:51.441515 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T18:57:51.441515"}, "title": "Una introduccio\u0301n a la fibrosis qui\u0301stica para pacientes y familias", "created": {"type": "/type/datetime", "value": "2009-12-11T04:14:11.393474"}, "subjects": ["Cystic fibrosis", "Popular works"], "latest_revision": 3, "key": "/works/OL11210607W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4688439A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11210692W 1 2009-12-11T04:14:11.393474 {"title": "Plywoods", "created": {"type": "/type/datetime", "value": "2009-12-11T04:14:11.393474"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:14:11.393474"}, "latest_revision": 1, "key": "/works/OL11210692W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4688479A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11211039W 3 2010-12-03T12:59:37.371538 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T12:59:37.371538"}, "title": "Representative values for animal and veterinary populations and their clinical significances", "created": {"type": "/type/datetime", "value": "2009-12-11T04:14:11.393474"}, "subjects": ["Animals, Domestic", "Domestic animals", "Reference Values", "Veterinary medicine"], "latest_revision": 3, "key": "/works/OL11211039W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4688698A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11211181W 1 2009-12-11T04:14:19.507438 {"title": "Analyse linearer Kausalmodelle", "created": {"type": "/type/datetime", "value": "2009-12-11T04:14:19.507438"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:14:19.507438"}, "latest_revision": 1, "key": "/works/OL11211181W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4688800A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11211184W 3 2010-12-03T12:58:56.865971 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:14:19.507438"}, "subject_places": ["China", "Shanxi Sheng (China)"], "subjects": ["Antiquities", "Bronzes", "Bronzes, Chinese", "Chinese Bronzes"], "latest_revision": 3, "key": "/works/OL11211184W", "title": "Shan-hsi ch'u t'u Shang Chou ch'ing t'ung ch'i", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4688803A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T12:58:56.865971"}, "revision": 3}
+/type/work /works/OL11211365W 2 2010-01-19T22:28:06.431131 {"title": "Alexandru Ioan Cuza", "created": {"type": "/type/datetime", "value": "2009-12-11T04:14:19.507438"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-19T22:28:06.431131"}, "latest_revision": 2, "key": "/works/OL11211365W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4688962A"}}], "subject_people": ["Alexandru Ioan I Cuza Prince of Romania (1820-1873)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11211375W 1 2009-12-11T04:14:19.507438 {"title": "Spin simulation in the UTIAS flight research simulator", "created": {"type": "/type/datetime", "value": "2009-12-11T04:14:19.507438"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:14:19.507438"}, "latest_revision": 1, "key": "/works/OL11211375W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4688968A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11211478W 2 2010-01-19T22:28:06.431131 {"title": "al- Sir\u0101j al-wahh\u0101j f\u012b al-isr\u0101\u02be wa-al-mi\u02bbr\u0101j", "created": {"type": "/type/datetime", "value": "2009-12-11T04:14:19.507438"}, "subject_places": ["Egypt"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T22:28:06.431131"}, "latest_revision": 2, "key": "/works/OL11211478W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4689017A"}}], "subject_people": ["Mu\u1e25ammad Prophet (d. 632)"], "type": {"key": "/type/work"}, "subjects": ["Isr\u0101\u02be and Mi\u02bbr\u0101j", "Sufism"], "revision": 2}
+/type/work /works/OL11212141W 3 2010-12-03T13:03:30.127748 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:14:19.507438"}, "subjects": ["Cantatas, Sacred", "Sacred Cantatas", "Vocal scores with piano"], "latest_revision": 3, "key": "/works/OL11212141W", "title": "Jesu, joy and treasure", "subject_times": ["To 1800"], "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4689478A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:03:30.127748"}, "revision": 3}
+/type/work /works/OL11212383W 2 2010-01-19T22:28:06.431131 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:14:26.455949"}, "title": "The French organ mass in the sixteenth and seventeenth centuries", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T22:28:06.431131"}, "latest_revision": 2, "key": "/works/OL11212383W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4689636A"}}], "subject_times": ["To 1800"], "type": {"key": "/type/work"}, "subjects": ["Organ music", "History and criticism", "Mass (Music)", "Music French"], "revision": 2}
+/type/work /works/OL112128W 12 2021-12-26T13:25:06.652580 {"description": "Junior Brown, an overprotected three-hundred pound musical prodigy who's prone to having fantasies, and Buddy Clark, a loner who lives by his wits because he has no family whatsoever, have been on the hook from their eighth-grade classroom all semester.\r\n\r\nMost of the time they have been in the school building -- in a secret cellar room behind a false wall, where Mr. Pool, the janitor, has made a model of the solar system. They have been pressing their luck for months...and then they are caught. As society -- in the form of a zealous assistant principal -- closes in on them, Junior's fantasies become more desperate, and Buddy draws on all his resources to ensure his friend's well-being.", "title": "The planet of Junior Brown", "covers": [433725], "subject_places": ["New York (N.Y.)"], "subjects": ["Fiction", "African Americans", "Friendship", "Juvenile fiction", "Homeless persons", "History", "Newbery Honor", "Large type books", "Friendship, fiction", "African americans, fiction", "Children's fiction"], "subject_people": ["Junior Brown", "Buddy Clark", "Mr. Pool"], "key": "/works/OL112128W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL20414A"}}], "subject_times": ["20th century"], "type": {"key": "/type/work"}, "latest_revision": 12, "revision": 12, "created": {"type": "/type/datetime", "value": "2009-10-18T01:44:38.856654"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-26T13:25:06.652580"}}
+/type/work /works/OL11212915W 1 2009-12-11T04:14:26.455949 {"title": "N\u0101\u1e8fakera n\u0101ma Na\u1e6dabara", "created": {"type": "/type/datetime", "value": "2009-12-11T04:14:26.455949"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:14:26.455949"}, "latest_revision": 1, "key": "/works/OL11212915W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4690010A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11213099W 2 2010-01-19T22:32:42.668850 {"title": "\u015ar\u012br\u0101makr\u0325sh\u1e47adebera l\u012bl\u0101kath\u0101", "created": {"type": "/type/datetime", "value": "2009-12-11T04:14:26.455949"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-19T22:32:42.668850"}, "latest_revision": 2, "key": "/works/OL11213099W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4690064A"}}], "subject_people": ["Ramakrishna (1836-1886)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11213159W 3 2010-12-03T13:01:09.878366 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:01:09.878366"}, "title": "The Londonderry air", "created": {"type": "/type/datetime", "value": "2009-12-11T04:14:33.693913"}, "subjects": ["Folk songs, Irish", "Instrumental settings", "Irish Folk songs", "Scores", "String quartets"], "latest_revision": 3, "key": "/works/OL11213159W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4690092A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11213257W 1 2009-12-11T04:14:33.693913 {"title": "Ek\u0101lera kath\u0101", "created": {"type": "/type/datetime", "value": "2009-12-11T04:14:33.693913"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:14:33.693913"}, "latest_revision": 1, "key": "/works/OL11213257W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4690120A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11213313W 1 2009-12-11T04:14:33.693913 {"title": "Judith", "created": {"type": "/type/datetime", "value": "2009-12-11T04:14:33.693913"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:14:33.693913"}, "latest_revision": 1, "key": "/works/OL11213313W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4690168A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11213402W 2 2010-01-19T22:32:42.668850 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:14:33.693913"}, "title": "L' \u00e9volution de la musique, de Bach \u00e0 Schoenberg", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T22:32:42.668850"}, "latest_revision": 2, "key": "/works/OL11213402W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4690220A"}}], "type": {"key": "/type/work"}, "subjects": ["Composers", "History and criticism", "Music"], "revision": 2}
+/type/work /works/OL1121342W 2 2010-01-19T22:32:42.668850 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:32:18.399180"}, "title": "Problems of employment in economic development", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T22:32:42.668850"}, "latest_revision": 2, "key": "/works/OL1121342W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL114892A"}}], "type": {"key": "/type/work"}, "subjects": ["Labor supply", "Full employment policies"], "revision": 2}
+/type/work /works/OL11213515W 1 2009-12-11T04:14:33.693913 {"title": "Textbook of Endocrine Physiology", "created": {"type": "/type/datetime", "value": "2009-12-11T04:14:33.693913"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:14:33.693913"}, "latest_revision": 1, "key": "/works/OL11213515W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4690323A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11213533W 3 2010-12-03T12:58:56.865971 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T12:58:56.865971"}, "title": "Early detection of dental caries III", "created": {"type": "/type/datetime", "value": "2009-12-11T04:14:33.693913"}, "subjects": ["Dental caries", "Diagnosis"], "latest_revision": 3, "key": "/works/OL11213533W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4690338A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11213867W 1 2009-12-11T04:14:33.693913 {"title": "Hydroseral histories of the Old Crow Peatlands, Northern Yukon", "created": {"type": "/type/datetime", "value": "2009-12-11T04:14:33.693913"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:14:33.693913"}, "latest_revision": 1, "key": "/works/OL11213867W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4690578A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11214014W 3 2010-12-03T12:58:56.865971 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T12:58:56.865971"}, "title": "The sound structures of English and Bengali", "created": {"type": "/type/datetime", "value": "2009-12-11T04:14:33.693913"}, "subjects": ["Bengali", "Bengali language", "Comparative Grammar", "English", "English language", "Grammar, Comparative", "Textbooks for foreign speakers"], "latest_revision": 3, "key": "/works/OL11214014W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4690690A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11214061W 2 2010-01-19T22:36:58.106586 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:14:33.693913"}, "title": "Laetrile metabolic therapy", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T22:36:58.106586"}, "latest_revision": 2, "key": "/works/OL11214061W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4690714A"}}], "type": {"key": "/type/work"}, "subjects": ["Laetrile"], "revision": 2}
+/type/work /works/OL11214286W 2 2010-01-19T22:36:58.106586 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:14:42.447263"}, "title": "Limitations of spinal manipulation", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T22:36:58.106586"}, "latest_revision": 2, "key": "/works/OL11214286W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4690908A"}}], "type": {"key": "/type/work"}, "subjects": ["Spine", "Chiropractic", "Biomechanics", "Spinal adjustment", "Methods"], "revision": 2}
+/type/work /works/OL11214330W 4 2012-06-18T23:04:24.048787 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:14:42.447263"}, "subject_places": ["United States"], "subjects": ["Evidence, Expert", "Expert Evidence", "Expert Testimony", "Personal injuries"], "latest_revision": 4, "key": "/works/OL11214330W", "title": "How to handle the trial of a tort case \"from beginning to end!\"", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4690597A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-06-18T23:04:24.048787"}, "revision": 4}
+/type/work /works/OL11214355W 2 2010-01-19T22:36:58.106586 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:14:42.447263"}, "title": "Chiropractic", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T22:36:58.106586"}, "latest_revision": 2, "key": "/works/OL11214355W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4690965A"}}], "type": {"key": "/type/work"}, "subjects": ["Methods", "Chiropractic"], "revision": 2}
+/type/work /works/OL11215145W 1 2009-12-11T04:14:49.873662 {"title": "Cassette recorder", "created": {"type": "/type/datetime", "value": "2009-12-11T04:14:49.873662"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:14:49.873662"}, "latest_revision": 1, "key": "/works/OL11215145W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4691528A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11215413W 1 2009-12-11T04:14:49.873662 {"title": "Guia de fuentes sobre las relaciones internacionales contemporaneas de Argentina", "created": {"type": "/type/datetime", "value": "2009-12-11T04:14:49.873662"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:14:49.873662"}, "latest_revision": 1, "key": "/works/OL11215413W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4691706A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11215522W 2 2010-01-19T22:41:30.918988 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:14:49.873662"}, "title": "Three duets, for two violas", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T22:41:30.918988"}, "latest_revision": 2, "key": "/works/OL11215522W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4691779A"}}], "subject_times": ["To 1800"], "type": {"key": "/type/work"}, "subjects": ["Viola music (2 violas)"], "revision": 2}
+/type/work /works/OL11215678W 2 2010-01-19T22:41:30.918988 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:14:49.873662"}, "title": "Fusions (Shiluvim) for viola and chamber orchestra", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T22:41:30.918988"}, "latest_revision": 2, "key": "/works/OL11215678W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4691889A"}}], "type": {"key": "/type/work"}, "subjects": ["Viola with chamber orchestra", "Scores"], "revision": 2}
+/type/work /works/OL11216196W 1 2009-12-11T04:14:57.441706 {"title": "Armand Lavergne", "created": {"type": "/type/datetime", "value": "2009-12-11T04:14:57.441706"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:14:57.441706"}, "latest_revision": 1, "key": "/works/OL11216196W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4692220A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11216350W 3 2010-04-28T07:19:59.777300 {"title": "Anemiain the elderly", "created": {"type": "/type/datetime", "value": "2009-12-11T04:14:57.441706"}, "covers": [5294208], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:19:59.777300"}, "latest_revision": 3, "key": "/works/OL11216350W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4692351A"}}], "subjects": ["Hematology"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11216951W 3 2010-04-28T07:19:59.777300 {"title": "Without faith, without God; or, An appeal to God concerning His own existence, with a preface by ..", "created": {"type": "/type/datetime", "value": "2009-12-11T04:14:57.441706"}, "covers": [6169203], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:19:59.777300"}, "latest_revision": 3, "key": "/works/OL11216951W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4692755A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11216966W 3 2010-12-03T13:01:37.639791 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:01:37.639791"}, "title": "Pr\u00e9cis des examens de laboratoire employ\u00e9s en clinique", "created": {"type": "/type/datetime", "value": "2009-12-11T04:14:57.441706"}, "subjects": ["Clinical medicine", "Diagnosis", "Laboratory manuals", "Medicine, Clinical"], "latest_revision": 3, "key": "/works/OL11216966W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4692766A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1121747W 2 2010-01-19T22:46:16.576209 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:32:18.399180"}, "title": "Report to the Government of the Republic of China on the development of the national classification of occupations", "subject_places": ["Taiwan"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T22:46:16.576209"}, "latest_revision": 2, "key": "/works/OL1121747W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL114892A"}}], "type": {"key": "/type/work"}, "subjects": ["Occupations", "Classification"], "revision": 2}
+/type/work /works/OL1121750W 2 2010-01-19T22:46:16.576209 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:32:18.399180"}, "title": "Report to the Government of the Republic of Cyprus on social security and related schemes", "subject_places": ["Cyprus"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T22:46:16.576209"}, "latest_revision": 2, "key": "/works/OL1121750W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL114892A"}}], "type": {"key": "/type/work"}, "subjects": ["Social security"], "revision": 2}
+/type/work /works/OL1121751W 2 2010-01-19T22:46:16.576209 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:32:18.399180"}, "title": "Report to the Government of the Republic of Cyprus on the development of handicrafts", "subject_places": ["Cyprus"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T22:46:16.576209"}, "latest_revision": 2, "key": "/works/OL1121751W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL114892A"}}], "type": {"key": "/type/work"}, "subjects": ["Cottage industries", "Handicraft"], "revision": 2}
+/type/work /works/OL11217540W 3 2010-12-03T13:01:37.639791 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:01:37.639791"}, "latest_revision": 3, "key": "/works/OL11217540W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4693126A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T04:15:03.990026"}, "title": "Majm\u016bat mu\u02beallaf\u0101t al-Shaykh \u02bbAbd All\u0101h al-Duwaysh", "subject_places": ["Medina (Saudi Arabia)"], "subjects": ["Criticism, interpretation", "God (Islam)", "History", "Islam", "Koran", "Miscellanea"], "subject_people": ["Mu\u1e25ammad N\u0101\u1e63ir al-D\u012bn Alb\u0101n\u012b", "Mu\u1e25ammad ibn Ab\u012b Bakr Ibn Qayyim al-Jawz\u012byah (1292-1350)", "Mu\u1e25ammad ibn Sulaym\u0101n Jaz\u016bl\u012b (d. 1465)", "Mu\u1e25ammad ibn \u02bbAbd al-Wahh\u0101b (1703 or 4-1792)", "Numayr\u012b, \u02bbUmar ibn Shabbah", "Sayyid Qu\u1e6db (1903-1966)"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11217829W 2 2010-01-19T22:50:50.689141 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:15:03.990026"}, "title": "I monumenti antichi di roma nei disegni degli Uffizi di Firenzi", "subject_places": ["Rome"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T22:50:50.689141"}, "latest_revision": 2, "key": "/works/OL11217829W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4693280A"}}], "type": {"key": "/type/work"}, "subjects": ["Architecture"], "revision": 2}
+/type/work /works/OL11218097W 3 2010-12-03T22:22:44.683272 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T22:22:44.683272"}, "title": "La modernizaci\u00f3n y el Estado", "created": {"type": "/type/datetime", "value": "2009-12-11T04:15:03.990026"}, "subjects": ["State, The", "The State"], "latest_revision": 3, "key": "/works/OL11218097W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4693457A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11218132W 2 2010-01-19T22:50:50.689141 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:15:03.990026"}, "title": "Muziek van de twintigste eeuw", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T22:50:50.689141"}, "latest_revision": 2, "key": "/works/OL11218132W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4693479A"}}], "type": {"key": "/type/work"}, "subjects": ["Twelve-tone system"], "revision": 2}
+/type/work /works/OL11218163W 1 2009-12-11T04:15:11.357116 {"title": "Memorandum to the Government of the United States on the recognition of the Ukrainian people\u02b9s Republic", "created": {"type": "/type/datetime", "value": "2009-12-11T04:15:11.357116"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:15:11.357116"}, "latest_revision": 1, "key": "/works/OL11218163W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4693499A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11218414W 2 2010-01-19T22:50:50.689141 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:15:11.357116"}, "title": "O reformismu v \u010desk\u00e9m d\u00e9lnick\u00e9m hnut\u00ed", "subject_places": ["Czechoslovakia"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T22:50:50.689141"}, "latest_revision": 2, "key": "/works/OL11218414W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4693678A"}}], "type": {"key": "/type/work"}, "subjects": ["Labor and laboring classes", "History"], "revision": 2}
+/type/work /works/OL11218488W 2 2010-01-19T22:50:50.689141 {"title": "\u00c2l\u00ee bibliyografyasi", "created": {"type": "/type/datetime", "value": "2009-12-11T04:15:11.357116"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-19T22:50:50.689141"}, "latest_revision": 2, "key": "/works/OL11218488W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4693726A"}}], "subject_people": ["\u00c2l\u00ee (1541-1599 or 1600)"], "type": {"key": "/type/work"}, "subjects": ["Bibliography"], "revision": 2}
+/type/work /works/OL11218664W 1 2009-12-11T04:15:11.357116 {"title": "Arakcheev", "created": {"type": "/type/datetime", "value": "2009-12-11T04:15:11.357116"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:15:11.357116"}, "latest_revision": 1, "key": "/works/OL11218664W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4693838A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11219597W 2 2010-01-19T22:55:25.908582 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:15:17.381256"}, "title": "Centralized management and utilization adapted to farm woodlands in the northeast", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T22:55:25.908582"}, "latest_revision": 2, "key": "/works/OL11219597W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4694410A"}}], "type": {"key": "/type/work"}, "subjects": ["Forest management"], "revision": 2}
+/type/work /works/OL1121966W 2 2010-01-19T22:55:25.908582 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:32:25.360312"}, "title": "The trade union movement in soviet Russia", "subject_places": ["Soviet Union"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T22:55:25.908582"}, "latest_revision": 2, "key": "/works/OL1121966W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL114892A"}}], "type": {"key": "/type/work"}, "subjects": ["Communism", "Labor unions"], "revision": 2}
+/type/work /works/OL11219853W 3 2010-12-03T18:09:32.051883 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T18:09:32.051883"}, "title": "Dir\u0101s\u0101t f\u012b al-falsafah al-\u1e25ad\u012bthah wa-al-mu'\u0101\u1e63irah", "created": {"type": "/type/datetime", "value": "2009-12-11T04:15:17.381256"}, "subjects": ["Modern Philosophy", "Philosophy, Modern"], "latest_revision": 3, "key": "/works/OL11219853W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4694541A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11219943W 1 2009-12-11T04:15:17.381256 {"title": "\u0100dityamitra", "created": {"type": "/type/datetime", "value": "2009-12-11T04:15:17.381256"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:15:17.381256"}, "latest_revision": 1, "key": "/works/OL11219943W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4694602A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11220130W 2 2010-01-19T23:00:34.853666 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:15:17.381256"}, "title": "Rights and wrongs in the Arab-Israeli conflict", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T23:00:34.853666"}, "latest_revision": 2, "key": "/works/OL11220130W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4694731A"}}], "type": {"key": "/type/work"}, "subjects": ["Jewish-Arab relations"], "revision": 2}
+/type/work /works/OL11220225W 3 2017-05-14T06:35:45.311529 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:15:24.072105"}, "subjects": ["Correspondence"], "subject_people": ["Maria Conti (1781-1837)", "Giuseppe Gioachino Belli (1791-1863)"], "key": "/works/OL11220225W", "title": "G.G. Belli", "latest_revision": 3, "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL678853A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2017-05-14T06:35:45.311529"}, "revision": 3}
+/type/work /works/OL11220429W 2 2010-01-19T23:00:34.853666 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:15:24.072105"}, "title": "Cai Yuanpei mei yu lun ji", "subject_places": ["China"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T23:00:34.853666"}, "latest_revision": 2, "key": "/works/OL11220429W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4694921A"}}], "type": {"key": "/type/work"}, "subjects": ["Aesthetics", "Study and teaching"], "revision": 2}
+/type/work /works/OL1122049W 1 2009-12-09T20:32:25.360312 {"title": "Work in the World (International Labour Organisat)", "created": {"type": "/type/datetime", "value": "2009-12-09T20:32:25.360312"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T20:32:25.360312"}, "latest_revision": 1, "key": "/works/OL1122049W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL114892A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11220559W 2 2010-01-19T23:00:34.853666 {"title": "El dictador Latorre", "created": {"type": "/type/datetime", "value": "2009-12-11T04:15:24.072105"}, "subject_places": ["Uruguay"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T23:00:34.853666"}, "latest_revision": 2, "key": "/works/OL11220559W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4695004A"}}], "subject_people": ["Lorenzo Latorre (1844-1916)"], "subject_times": ["1830-"], "type": {"key": "/type/work"}, "subjects": ["History"], "revision": 2}
+/type/work /works/OL11220795W 1 2009-12-11T04:15:24.072105 {"title": "The golden calf", "created": {"type": "/type/datetime", "value": "2009-12-11T04:15:24.072105"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:15:24.072105"}, "latest_revision": 1, "key": "/works/OL11220795W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4695126A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11221104W 1 2009-12-11T04:15:24.072105 {"title": "De la cession a titre on\u00e9reux du droit des auteurs sur leurs oeuvres litt\u00e9raires ou artistiques", "created": {"type": "/type/datetime", "value": "2009-12-11T04:15:24.072105"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:15:24.072105"}, "latest_revision": 1, "key": "/works/OL11221104W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4695311A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11221291W 1 2009-12-11T04:15:29.890736 {"title": "\u1e6c\u016b\u1e6d\u012b\u02b9n\u0101mah", "created": {"type": "/type/datetime", "value": "2009-12-11T04:15:29.890736"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:15:29.890736"}, "latest_revision": 1, "key": "/works/OL11221291W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4695382A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11221434W 2 2010-01-19T23:04:52.424603 {"title": "Atat\u00fcrk'un dis politika ilkeleri ve diplomasisi", "created": {"type": "/type/datetime", "value": "2009-12-11T04:15:29.890736"}, "subject_places": ["Turkey"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T23:04:52.424603"}, "latest_revision": 2, "key": "/works/OL11221434W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4695464A"}}], "subject_people": ["Kemal Atat\u00fcrk (1881-1938)"], "subject_times": ["1918-"], "type": {"key": "/type/work"}, "subjects": ["Foreign relations", "History"], "revision": 2}
+/type/work /works/OL11221565W 2 2010-01-19T23:04:52.424603 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:15:29.890736"}, "title": "Research program for the abatement of municipal pollution", "subject_places": ["Great Lakes Watershed"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T23:04:52.424603"}, "latest_revision": 2, "key": "/works/OL11221565W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4695545A"}}], "type": {"key": "/type/work"}, "subjects": ["Sewage disposal in rivers, lakes"], "revision": 2}
+/type/work /works/OL1122182W 3 2010-12-03T12:28:17.796479 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T12:28:17.796479"}, "title": "Payment by results", "created": {"type": "/type/datetime", "value": "2009-12-09T20:32:25.360312"}, "subjects": ["Bonus system", "Industrial efficiency", "Piecework", "Wages"], "latest_revision": 3, "key": "/works/OL1122182W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL114892A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11221830W 1 2009-12-11T04:15:29.890736 {"title": "A short history of his life", "created": {"type": "/type/datetime", "value": "2009-12-11T04:15:29.890736"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:15:29.890736"}, "latest_revision": 1, "key": "/works/OL11221830W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4695665A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11221851W 2 2010-01-19T23:04:52.424603 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:15:29.890736"}, "title": "Shu\u02bbar\u0304\u02be \u02bbArab mu\u02bb\u0101\u1e63ir\u016bn : dir\u0101s\u0101t wa-mukht\u0101r\u0101t", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T23:04:52.424603"}, "latest_revision": 2, "key": "/works/OL11221851W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4695676A"}}], "subject_times": ["20th century"], "type": {"key": "/type/work"}, "subjects": ["Arabic poetry", "History and criticism"], "revision": 2}
+/type/work /works/OL11221873W 3 2010-12-04T00:24:00.609952 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:15:29.890736"}, "subject_places": ["Canada"], "subjects": ["Catholic Church"], "latest_revision": 3, "key": "/works/OL11221873W", "title": "Etudes et appreciations", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4695682A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-04T00:24:00.609952"}, "revision": 3}
+/type/work /works/OL11221904W 3 2010-12-03T13:01:09.878366 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:01:09.878366"}, "title": "\u02bbIlm zaw\u0101\u02beid al-\u1e25ad\u012bth", "created": {"type": "/type/datetime", "value": "2009-12-11T04:15:29.890736"}, "subjects": ["Criticism, Textual", "Hadith", "Textual Criticism"], "latest_revision": 3, "key": "/works/OL11221904W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4695692A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11221967W 2 2010-01-19T23:04:52.424603 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:15:29.890736"}, "title": "Manhaj naqd al-matn \u02beinda \u02bbulam\u0101\u02be al-\u1e24ad\u012bth al-Nabaw\u012b", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T23:04:52.424603"}, "latest_revision": 2, "key": "/works/OL11221967W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4695739A"}}], "type": {"key": "/type/work"}, "subjects": ["Criticism, interpretation", "Hadith"], "revision": 2}
+/type/work /works/OL1122235W 3 2010-04-29T03:49:40.726193 {"subtitle": "Second item on the agenda.", "title": "Technological changes in the construction industry and their socio-economic consequences", "created": {"type": "/type/datetime", "value": "2009-12-09T20:32:25.360312"}, "last_modified": {"type": "/type/datetime", "value": "2010-04-29T03:49:40.726193"}, "latest_revision": 3, "key": "/works/OL1122235W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL114892A"}}], "type": {"key": "/type/work"}, "subjects": ["Social aspects of Technological innovations", "Social aspects", "Construction industry", "Technological innovations"], "revision": 3}
+/type/work /works/OL11222711W 3 2010-12-03T21:35:51.221460 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T21:35:51.221460"}, "title": "Ann\u00e9e pastorale", "created": {"type": "/type/datetime", "value": "2009-12-11T04:15:36.771918"}, "subjects": ["Catholic Church", "Church year sermons", "Sermons"], "latest_revision": 3, "key": "/works/OL11222711W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4696148A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11223673W 3 2020-07-25T23:36:57.180663 {"last_modified": {"type": "/type/datetime", "value": "2020-07-25T23:36:57.180663"}, "title": "Innere Sekretion, ihre physiologischen Grundlagen und ihre Bedeutung f\u00fcr die Pathologie", "created": {"type": "/type/datetime", "value": "2009-12-11T04:15:44.788747"}, "subjects": ["Endocrinology"], "latest_revision": 3, "key": "/works/OL11223673W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2598307A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11223788W 3 2010-12-03T13:03:01.002242 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:03:01.002242"}, "title": "The southern harmony songbook ..", "created": {"type": "/type/datetime", "value": "2009-12-11T04:15:44.788747"}, "subjects": ["English Hymns", "Hymns, English"], "latest_revision": 3, "key": "/works/OL11223788W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4696855A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11223816W 2 2010-01-19T23:14:53.170955 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:15:44.788747"}, "title": "al- \u02bbUnf wa-al-d\u012bmuqr\u0101\u1e6d\u012byah", "subject_places": ["Morocco"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T23:14:53.170955"}, "latest_revision": 2, "key": "/works/OL11223816W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4696871A"}}], "type": {"key": "/type/work"}, "subjects": ["Political violence", "Democracy"], "revision": 2}
+/type/work /works/OL1122488W 2 2010-01-19T23:14:53.170955 {"title": "L' Empire grec au dixie me sie cle", "created": {"type": "/type/datetime", "value": "2009-12-09T20:32:25.360312"}, "subject_places": ["Byzantine Empire"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T23:14:53.170955"}, "latest_revision": 2, "key": "/works/OL1122488W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL114911A"}}], "subject_people": ["Constantine VII Porphyrogenitus Emperor of the East (905-959)"], "subject_times": ["Constantine VII Porphyrogenitus, 913-959"], "type": {"key": "/type/work"}, "subjects": ["Byzantine literature", "History and criticism", "History"], "revision": 2}
+/type/work /works/OL11225347W 15 2022-12-25T11:43:24.426235 {"description": {"type": "/type/text", "value": "The literary event of Halloween: a book of otherworldly power from Russia's preeminent contemporary fiction writerVanishings and aparitions, nightmares and twists of fate, mysterious ailments and supernatural interventions haunt these stories by the Russian master Ludmilla Petrushevskaya, heir to the spellbinding tradition of Gogol and Poe. Blending the miraculous with the macabre, and leavened by a mischievous gallows humor, these bewitching tales are like nothing being written in Russia-or anywhere else in the world-today."}, "subtitle": "Scary Fairy Tales", "links": [{"url": "http://us.penguingroup.com/nf/Book/BookDisplay/0,,9780143114666,00.html#", "type": {"key": "/type/link"}, "title": "Penguin Books"}, {"url": "http://www.nytimes.com/2009/11/22/books/review/Schillinger-t.html", "type": {"key": "/type/link"}, "title": "New York Times review"}], "title": "There Once Lived a Woman Who Tried To Kill Her Neighbor's Baby", "covers": [7069566], "subjects": ["russian fiction", "translations into English", "short stories", "chernukha", "fiction", "fantasy", "fairy tales", "Translations into English", "Russian Short stories", "New York Times reviewed", "Fiction, short stories (single author)", "Fairy tales"], "key": "/works/OL11225347W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL250229A"}}], "excerpts": [{"excerpt": "During the war, a colonel received a letter from his wife.", "pages": "3", "author": {"key": "/people/sklibrarian"}}], "type": {"key": "/type/work"}, "latest_revision": 15, "revision": 15, "created": {"type": "/type/datetime", "value": "2009-12-11T04:15:58.536189"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-25T11:43:24.426235"}}
+/type/work /works/OL11225546W 2 2010-01-19T23:19:22.143303 {"title": "Notice sur Ascanio, op\u00e9ra de Camille Saint-Sa\u00ebns", "created": {"type": "/type/datetime", "value": "2009-12-11T04:15:58.536189"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-19T23:19:22.143303"}, "latest_revision": 2, "key": "/works/OL11225546W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4697864A"}}], "subject_people": ["Camille Saint-Sa\u00ebns (1835-1921)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11225573W 1 2009-12-11T04:15:58.536189 {"title": "Naryn-kala", "created": {"type": "/type/datetime", "value": "2009-12-11T04:15:58.536189"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:15:58.536189"}, "latest_revision": 1, "key": "/works/OL11225573W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4697882A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11225766W 1 2009-12-11T04:15:58.536189 {"title": "Historisch-kritische Darstellung der Konstruktionen der Fl\u00e4che 2. Ordnung aus 9 Punkten", "created": {"type": "/type/datetime", "value": "2009-12-11T04:15:58.536189"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:15:58.536189"}, "latest_revision": 1, "key": "/works/OL11225766W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4698026A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11226071W 3 2020-03-05T10:23:46.330695 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:15:58.536189"}, "subject_people": ["Charles Dickens (1812-1870)"], "key": "/works/OL11226071W", "title": "Charles Dickens' historischer Roman \"A Tale of two cities\" und seine Quellen", "latest_revision": 3, "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4698234A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-03-05T10:23:46.330695"}, "covers": [7293880], "revision": 3}
+/type/work /works/OL11226166W 2 2010-01-19T23:19:22.143303 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:16:05.975087"}, "title": "[Pamphlets on maple syrup]", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T23:19:22.143303"}, "latest_revision": 2, "key": "/works/OL11226166W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4698297A"}}], "type": {"key": "/type/work"}, "subjects": ["Maple syrup"], "revision": 2}
+/type/work /works/OL1122699W 2 2010-01-19T23:23:58.838404 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:32:25.360312"}, "title": "Thermal, electrical and magnetic properties of alloys", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T23:23:58.838404"}, "latest_revision": 2, "key": "/works/OL1122699W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL114928A"}}], "type": {"key": "/type/work"}, "subjects": ["Alloys"], "revision": 2}
+/type/work /works/OL11227178W 4 2011-11-29T16:09:40.384854 {"last_modified": {"type": "/type/datetime", "value": "2011-11-29T16:09:40.384854"}, "title": "Subject index of the books relating to the European War, 1914-1918", "created": {"type": "/type/datetime", "value": "2009-12-11T04:16:12.095734"}, "subjects": ["Bibliography", "British Museum", "Catalogs, Subject", "Subject Catalogs", "Subject headings", "World War, 1914-1918"], "latest_revision": 4, "key": "/works/OL11227178W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4528152A"}}], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL11227278W 3 2012-06-08T22:51:17.961553 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:16:12.095734"}, "subject_places": ["Austria", "Netherlands", "Vienna"], "subjects": ["Illumination of books and manuscripts", "Bibliography", "Exhibitions", "History"], "latest_revision": 3, "key": "/works/OL11227278W", "title": "Manuscrits et livres imprim\u00e9s concernant l'histoire des Pays-Bas, 1475-1600", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4587887A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-06-08T22:51:17.961553"}, "revision": 3}
+/type/work /works/OL11227540W 1 2009-12-11T04:16:12.095734 {"title": "Late Classic Finds at Baking Pot, British Honduras", "created": {"type": "/type/datetime", "value": "2009-12-11T04:16:12.095734"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:16:12.095734"}, "latest_revision": 1, "key": "/works/OL11227540W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4699197A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11227751W 2 2010-01-19T23:28:03.700309 {"title": "Sortir du rang", "created": {"type": "/type/datetime", "value": "2009-12-11T04:16:12.095734"}, "subject_places": ["Alberta", "Qu\u00e9bec (Province)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T23:28:03.700309"}, "latest_revision": 2, "key": "/works/OL11227751W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4699291A"}}], "subject_people": ["L'Heureux family", "Simonne L'Heureux-Blouin (1919-)"], "type": {"key": "/type/work"}, "subjects": ["Genealogy"], "revision": 2}
+/type/work /works/OL11227871W 2 2020-11-27T11:57:29.815077 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:16:12.095734"}, "subjects": ["History", "Catholic Church", "Catholic Church. Byzantine rite, Melchite", "Church history"], "latest_revision": 2, "description": {"type": "/type/text", "value": "Monasticism, Zarq\u0101\u02bc, christianity in East Jordan; history."}, "key": "/works/OL11227871W", "title": "al-Rahb\u0101n\u012byah al-mukhalli\u1e63\u012byah f\u012b khidmat al-nuf\u016bs f\u012b mad\u012bnat al-Zarq\u0101\u02bc", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4699344A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-11-27T11:57:29.815077"}, "revision": 2}
+/type/work /works/OL11228063W 3 2010-12-03T13:03:01.002242 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:16:12.095734"}, "subject_places": ["Qu\u00e9bec", "Qu\u00e9bec (Province)", "Qu\u00e9bec (Qu\u00e9bec)"], "subjects": ["Administration", "Archives", "Archives de la ville de Qu\u00e9bec", "Bibliography", "Catalogs", "Sources"], "latest_revision": 3, "key": "/works/OL11228063W", "title": "R\u00e9pertoire num\u00e9rique d\u00e9taill\u00e9 de la Sous-s\u00e9rie tr\u00e9sorier", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4699460A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:03:01.002242"}, "revision": 3}
+/type/work /works/OL11228713W 2 2010-01-19T23:32:56.089861 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:16:18.693097"}, "title": "Senry\u014dka no Yokosuka", "subject_places": ["Yokosuka-shi (Japan)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T23:32:56.089861"}, "latest_revision": 2, "key": "/works/OL11228713W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4699806A"}}], "type": {"key": "/type/work"}, "subjects": ["History", "Sources", "Allied occupation, 1945-1952"], "revision": 2}
+/type/work /works/OL11228808W 3 2010-04-28T07:19:59.777300 {"title": "Gesellschaft und Verfassung der Stadt Marburg beim Ubergang vom Mittelalter zur Neuzeit", "created": {"type": "/type/datetime", "value": "2009-12-11T04:16:18.693097"}, "covers": [5294456], "subject_places": ["Marburg (Germany)"], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:19:59.777300"}, "latest_revision": 3, "key": "/works/OL11228808W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4699864A"}}], "subjects": ["Politics and government", "Social conditions", "History"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11228913W 3 2020-12-16T14:23:38.748450 {"title": "Riben lang ren huo Hua lu", "subject_places": ["China", "Japan"], "key": "/works/OL11228913W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4699941A"}}], "subject_times": ["1644-1912", "1912-1949", "1868-"], "type": {"key": "/type/work"}, "subjects": ["Foreign relations", "Secret societies"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T04:16:18.693097"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-16T14:23:38.748450"}}
+/type/work /works/OL11228952W 1 2009-12-11T04:16:18.693097 {"title": "Jiang jun zai li ming qian dao xia", "created": {"type": "/type/datetime", "value": "2009-12-11T04:16:18.693097"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:16:18.693097"}, "latest_revision": 1, "key": "/works/OL11228952W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4699956A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11229461W 2 2010-01-19T23:32:56.089861 {"title": "Poesia e struttura nella Divina Commedia", "created": {"type": "/type/datetime", "value": "2009-12-11T04:16:25.502467"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-19T23:32:56.089861"}, "latest_revision": 2, "key": "/works/OL11229461W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4700297A"}}], "subject_people": ["Dante Alighieri (1265-1321)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL1122985W 2 2010-01-19T23:37:11.147979 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:32:33.380821"}, "title": "La unidad del idioma", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T23:37:11.147979"}, "latest_revision": 2, "key": "/works/OL1122985W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL114986A"}}], "type": {"key": "/type/work"}, "subjects": ["Spanish language"], "revision": 2}
+/type/work /works/OL11229902W 1 2009-12-11T04:16:25.502467 {"title": "Notamina ad usum fructum pro summis in utroque jure honoribus impetrandis", "created": {"type": "/type/datetime", "value": "2009-12-11T04:16:25.502467"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:16:25.502467"}, "latest_revision": 1, "key": "/works/OL11229902W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4700552A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11229952W 3 2010-08-14T09:54:38.848787 {"subtitle": "Joyful insight", "last_modified": {"type": "/type/datetime", "value": "2010-08-14T09:54:38.848787"}, "latest_revision": 3, "key": "/works/OL11229952W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4700575A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T04:16:25.502467"}, "title": "Shan qing qi shuang =", "subjects": ["Technique", "Chinese Landscape painting", "Landscape painting"], "subject_people": ["Cheng Zhou (1941-)"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11229956W 2 2010-01-19T23:37:11.147979 {"title": "Liszt-Bart\u00f3k", "created": {"type": "/type/datetime", "value": "2009-12-11T04:16:25.502467"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-19T23:37:11.147979"}, "latest_revision": 2, "key": "/works/OL11229956W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4700578A"}}], "subject_people": ["Franz Liszt (1811-1886)", "B\u00e9la Bart\u00f3k (1881-1945)"], "type": {"key": "/type/work"}, "subjects": ["Congresses", "Music"], "revision": 2}
+/type/work /works/OL1123004W 2 2010-01-19T23:37:11.147979 {"title": "Un aspecto en la elaboracio\u0301n del \"Quijote\"", "created": {"type": "/type/datetime", "value": "2009-12-09T20:32:33.380821"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-19T23:37:11.147979"}, "latest_revision": 2, "key": "/works/OL1123004W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL114986A"}}], "subject_people": ["Miguel de Cervantes Saavedra (1547-1616)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11230122W 3 2022-12-19T04:12:52.421767 {"title": "Waga eigaron", "subject_places": ["Japan"], "key": "/works/OL11230122W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4700664A"}}], "type": {"key": "/type/work"}, "subjects": ["Motion pictures", "Motion picture plays", "History and criticism", "Biography"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T04:16:25.502467"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-19T04:12:52.421767"}}
+/type/work /works/OL11230571W 3 2010-12-03T13:05:18.446590 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:05:18.446590"}, "title": "The Australian W & G catalogue", "created": {"type": "/type/datetime", "value": "2009-12-11T04:16:32.920011"}, "subjects": ["Catalogs", "Discography", "Music", "W & G (Firm)"], "latest_revision": 3, "key": "/works/OL11230571W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4700956A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11231602W 2 2010-01-19T23:41:22.192438 {"title": "I bidelli del Walhalla", "created": {"type": "/type/datetime", "value": "2009-12-11T04:16:40.221320"}, "subject_places": ["Europe"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T23:41:22.192438"}, "latest_revision": 2, "key": "/works/OL11231602W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4701627A"}}], "subject_people": ["Richard Wagner (1813-1883)"], "type": {"key": "/type/work"}, "subjects": ["Opera", "History and criticism", "Music"], "revision": 2}
+/type/work /works/OL11232134W 2 2010-01-19T23:41:22.192438 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:16:40.221320"}, "title": "(Cuarto) censo general, 1936", "subject_places": ["Buenos Aires (Argentina)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T23:41:22.192438"}, "latest_revision": 2, "key": "/works/OL11232134W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4701942A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11232208W 3 2022-12-27T04:54:41.841964 {"title": "Le livre de musique", "key": "/works/OL11232208W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4701986A"}}], "type": {"key": "/type/work"}, "subjects": ["History", "Music", "Dissemination of music", "Musical notation", "Music publishing", "Manuscripts", "Congresses", "History and criticism", "Biblioth\u00e8que nationale de France. D\u00e9partement de la musique", "Biblioth\u00e8que nationale de France"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T04:16:47.556537"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-27T04:54:41.841964"}}
+/type/work /works/OL11232381W 2 2021-08-30T01:55:54.351649 {"title": "Das japanische Budget", "key": "/works/OL11232381W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4702083A"}}], "type": {"key": "/type/work"}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T04:16:47.556537"}, "last_modified": {"type": "/type/datetime", "value": "2021-08-30T01:55:54.351649"}}
+/type/work /works/OL11233154W 3 2010-12-03T14:14:54.708785 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:16:47.556537"}, "subject_places": ["Australia", "Queensland"], "subjects": ["Children", "Juvenile courts", "Queensland", "Services for"], "latest_revision": 3, "key": "/works/OL11233154W", "title": "On an examination of the procedure and practice in Children's Courts and on a bill to amend the Children's Services Act 1965-1977", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4702555A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:14:54.708785"}, "revision": 3}
+/type/work /works/OL11233722W 2 2010-01-19T23:51:31.101504 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:16:55.466992"}, "title": "Chaeman Hanin tongnip undongsa y\u014fn\u02begu", "subject_places": ["China", "Jilin Sheng", "Manchuria"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T23:51:31.101504"}, "latest_revision": 2, "key": "/works/OL11233722W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4702883A"}}], "type": {"key": "/type/work"}, "subjects": ["Koreans", "Politics and government", "Korean resistance movements, 1905-1945", "History"], "revision": 2}
+/type/work /works/OL1123382W 1 2009-12-09T20:32:33.380821 {"title": "Behind the Veil: And Other Poems", "created": {"type": "/type/datetime", "value": "2009-12-09T20:32:33.380821"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T20:32:33.380821"}, "latest_revision": 1, "key": "/works/OL1123382W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL115007A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11234042W 1 2009-12-11T04:16:55.466992 {"title": "Report of the seventh meeting, 8 January 1987", "created": {"type": "/type/datetime", "value": "2009-12-11T04:16:55.466992"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:16:55.466992"}, "latest_revision": 1, "key": "/works/OL11234042W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4703083A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11234347W 2 2010-12-03T13:05:46.332281 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:05:46.332281"}, "title": "Organisation for Economic Co-operation and Development, Paris", "created": {"type": "/type/datetime", "value": "2009-12-11T04:17:02.181081"}, "subjects": ["Organisation for Economic Co-operation and Development"], "latest_revision": 2, "key": "/works/OL11234347W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4703293A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11234408W 1 2009-12-11T04:17:02.181081 {"title": "Data co-ordination in the building process", "created": {"type": "/type/datetime", "value": "2009-12-11T04:17:02.181081"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:17:02.181081"}, "latest_revision": 1, "key": "/works/OL11234408W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4703322A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11234646W 1 2009-12-11T04:17:02.181081 {"title": "19 98/1999 inspection West Midlands Police", "created": {"type": "/type/datetime", "value": "2009-12-11T04:17:02.181081"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:17:02.181081"}, "latest_revision": 1, "key": "/works/OL11234646W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4703459A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11234723W 6 2022-07-11T19:03:22.946334 {"description": {"type": "/type/text", "value": "Words can carry great conviction and induce many people to buy a product, but the task of creating a layout that will direct the attention of prospective buyers to the selling copy requires great ingenuity on the part of the visualizer, especially in the exacting, highly competitive market of today's magazines, newspapers and billboards.\r\n\r\nNow, through this comprehensive study of layout in all its multiple phases, it is possible for students, whether beginners of professionals, to learn to design better, more compelling layouts.\r\n\r\nA firm advocate of developing layout into a truly scientific profession, Mr. Chenault treats the subject so as to make it possible for anyone to learn well and quickly. He recognizes two separate steps in the creation of a layout. Fist, there must be an idea--a selling idea for the particular problem at hand; second, the visualizer must be so trained in design and reader psychology that he can put that idea into planned form that will attract the reader's eye.\r\n\r\nBy illustrating specific layout principles on nearly every page, the author has made it possible to comprehend each type of layout technique from poster and billboard to magazine, newspaper and direct mail. The chapters range from the basic principles of layout design to the functions of an agency art director, including valuable instruction in typography and lettering, continuity in style, bleed space, balance, unity, contrast and art work. Full-color illustrations appear throughout the chapter treating color process and color in layout.\r\n\r\nThe illustrations are designed by five of the most successful advertising men in America. Many of them ar the original layouts of famous advertisements, reproduced directly from the visualizer's drawing board. Together with the thorough yet concise text, they form a comprehensive exposition of the conception and technique of advertising layout.\r\n--jacket"}, "title": "Advertising Layout", "covers": [8595427], "subjects": ["Advertising layout and typography", "Commercial art"], "key": "/works/OL11234723W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL6625877A"}}], "excerpts": [{"comment": "first sentence", "excerpt": "Every advertisement that appears in print has to be planned in its physical format.", "author": {"key": "/people/seabelis"}}], "type": {"key": "/type/work"}, "first_publish_date": "1946", "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2009-12-11T04:17:02.181081"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-11T19:03:22.946334"}}
+/type/work /works/OL11234768W 2 2010-01-19T23:51:31.101504 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:17:02.181081"}, "title": "Trade agreement between the United States and the United Kingdom", "subject_places": ["United States", "Great Britain"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T23:51:31.101504"}, "latest_revision": 2, "key": "/works/OL11234768W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4703486A"}}], "type": {"key": "/type/work"}, "subjects": ["Commerce"], "revision": 2}
+/type/work /works/OL11235181W 1 2009-12-11T04:17:09.178513 {"title": "Dolomite contact skarns of the Broadford area, Skye", "created": {"type": "/type/datetime", "value": "2009-12-11T04:17:09.178513"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:17:09.178513"}, "latest_revision": 1, "key": "/works/OL11235181W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4703735A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11235264W 2 2010-01-19T23:51:31.101504 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:17:09.178513"}, "title": "Sh\u016bky\u014d to ningen", "last_modified": {"type": "/type/datetime", "value": "2010-01-19T23:51:31.101504"}, "latest_revision": 2, "key": "/works/OL11235264W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4703779A"}}], "type": {"key": "/type/work"}, "subjects": ["Religions", "Philosophy", "Religion"], "revision": 2}
+/type/work /works/OL11235807W 1 2009-12-11T04:17:09.178513 {"title": "Conscripted city", "created": {"type": "/type/datetime", "value": "2009-12-11T04:17:09.178513"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:17:09.178513"}, "latest_revision": 1, "key": "/works/OL11235807W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4704119A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1123592W 2 2010-01-19T23:56:23.209392 {"title": "Hindenburg-Schla\u0308ge und Hindenburg-Anekdoten", "created": {"type": "/type/datetime", "value": "2009-12-09T20:32:33.380821"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-19T23:56:23.209392"}, "latest_revision": 2, "key": "/works/OL1123592W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL115033A"}}], "subject_people": ["Paul von Hindenburg (1847-1934)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11235972W 1 2009-12-11T04:17:09.178513 {"title": "Voice of Wales", "created": {"type": "/type/datetime", "value": "2009-12-11T04:17:09.178513"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:17:09.178513"}, "latest_revision": 1, "key": "/works/OL11235972W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4704215A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11236372W 2 2020-12-10T16:20:03.715849 {"title": "Litanie", "key": "/works/OL11236372W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4704452A"}}], "type": {"key": "/type/work"}, "subjects": ["Spiritual life", "Life"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T04:17:16.792661"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-10T16:20:03.715849"}}
+/type/work /works/OL11236629W 2 2010-01-19T23:56:23.209392 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:17:16.792661"}, "title": "The creative arts", "subject_places": ["Ontario"], "last_modified": {"type": "/type/datetime", "value": "2010-01-19T23:56:23.209392"}, "latest_revision": 2, "key": "/works/OL11236629W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4704593A"}}], "type": {"key": "/type/work"}, "subjects": ["Study and teaching", "Art"], "revision": 2}
+/type/work /works/OL11236819W 3 2010-12-03T13:09:51.433401 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:09:51.433401"}, "latest_revision": 3, "key": "/works/OL11236819W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4704745A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T04:17:16.792661"}, "title": "Kich\u016ban no Sant\u014dka", "subjects": ["Biography", "Japanese Poets", "Poets, Japanese"], "subject_people": ["Sant\u014dka Taneda (1881-1940)"], "subject_times": ["20th century"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11237033W 1 2009-12-11T04:17:16.792661 {"title": "Grea t british seaside resort", "created": {"type": "/type/datetime", "value": "2009-12-11T04:17:16.792661"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:17:16.792661"}, "latest_revision": 1, "key": "/works/OL11237033W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4704907A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11237277W 2 2019-05-29T03:15:51.423669 {"title": "Hsu\u0308 Chih-mo", "created": {"type": "/type/datetime", "value": "2009-12-11T04:17:24.369920"}, "last_modified": {"type": "/type/datetime", "value": "2019-05-29T03:15:51.423669"}, "latest_revision": 2, "key": "/works/OL11237277W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4705074A"}}, {"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1243993A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11237544W 3 2020-11-27T10:24:38.102449 {"description": {"type": "/type/text", "value": "Islam; Sh\u012b\u02bbah; doctrines; 20th century."}, "last_modified": {"type": "/type/datetime", "value": "2020-11-27T10:24:38.102449"}, "latest_revision": 3, "key": "/works/OL11237544W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4705270A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T04:17:24.369920"}, "title": "N\u0101fidhah \u02bbal\u00e1 qa\u1e0d\u0101y\u0101 al-Isl\u0101m", "subjects": ["Doctrines", "Sh\u012b\u02bbah", "Islam"], "subject_times": ["20th century"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11237632W 1 2009-12-11T04:17:24.369920 {"title": "Raising the standards, 1991-1997", "created": {"type": "/type/datetime", "value": "2009-12-11T04:17:24.369920"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:17:24.369920"}, "latest_revision": 1, "key": "/works/OL11237632W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4705307A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11237637W 3 2010-12-03T19:01:33.440687 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:17:24.369920"}, "subject_places": ["Great Britain"], "subjects": ["Auditing, Internal", "Corporate governance", "Disclosure in accounting", "Internal Auditing"], "latest_revision": 3, "key": "/works/OL11237637W", "title": "Reports by auditors under sections 156(4) and 173(5) Companies Act 1985 and the Year 2000 issue", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4705307A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T19:01:33.440687"}, "revision": 3}
+/type/work /works/OL11238173W 2 2010-01-20T00:00:46.921156 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:17:31.953784"}, "title": "K\u0101n\u016bnh\u0101-yi bu\u1e25r\u0101n dar Khal\u012bj-i F\u0101rs", "subject_places": ["Iraq", "Iran", "Persian Gulf Region"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T00:00:46.921156"}, "latest_revision": 2, "key": "/works/OL11238173W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4705676A"}}], "type": {"key": "/type/work"}, "subjects": ["Foreign relations"], "revision": 2}
+/type/work /works/OL11238261W 1 2009-12-11T04:17:31.953784 {"title": "Sora no ashioto", "created": {"type": "/type/datetime", "value": "2009-12-11T04:17:31.953784"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:17:31.953784"}, "latest_revision": 1, "key": "/works/OL11238261W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4705726A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11238456W 1 2009-12-11T04:17:31.953784 {"title": "Farewell to Seti I. Abydos, Christmas 1936", "created": {"type": "/type/datetime", "value": "2009-12-11T04:17:31.953784"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:17:31.953784"}, "latest_revision": 1, "key": "/works/OL11238456W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4705850A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11238464W 2 2010-12-03T22:01:08.190048 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T22:01:08.190048"}, "title": "Yi zhuan guang wan", "created": {"type": "/type/datetime", "value": "2009-12-11T04:17:31.953784"}, "subjects": ["Yi jing"], "latest_revision": 2, "key": "/works/OL11238464W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4705853A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11239596W 3 2010-12-04T07:02:44.758683 {"last_modified": {"type": "/type/datetime", "value": "2010-12-04T07:02:44.758683"}, "latest_revision": 3, "key": "/works/OL11239596W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4706575A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T04:17:38.815574"}, "title": "Uta ari hito ari", "subjects": ["History and criticism", "Interviews", "Japanese Poets", "Poets, Japanese", "Waka"], "subject_people": ["Bunmei Tsuchiya (1890-1990)"], "subject_times": ["20th century"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11239620W 3 2010-12-04T00:26:49.063728 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:17:38.815574"}, "subject_places": ["Great Britain"], "subjects": ["Economic aspects", "Economic aspects of Forest products", "Economic aspects of Wood products", "Forest products", "Wood products"], "latest_revision": 3, "key": "/works/OL11239620W", "title": "The supply and demand for wood in the United Kingdom", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4706590A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-04T00:26:49.063728"}, "revision": 3}
+/type/work /works/OL11239637W 2 2010-01-20T00:06:05.679188 {"title": "Yuan qu jia Xue Angfu", "created": {"type": "/type/datetime", "value": "2009-12-11T04:17:38.815574"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-20T00:06:05.679188"}, "latest_revision": 2, "key": "/works/OL11239637W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4706596A"}}], "subject_people": ["Angfu Xue (13th/14th cent)"], "subject_times": ["Y\u00fcan Dynasty, 1260-1368"], "type": {"key": "/type/work"}, "subjects": ["Ch\u00fc"], "revision": 2}
+/type/work /works/OL11239899W 2 2010-01-20T00:06:05.679188 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:17:38.815574"}, "title": "Petition of the House of Assembly of Lower Canada, to the King, and the two Houses of Parliament", "subject_places": ["Canada", "Qu\u00e9bec (Province)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T00:06:05.679188"}, "latest_revision": 2, "key": "/works/OL11239899W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4706761A"}}], "subject_times": ["1763-1840"], "type": {"key": "/type/work"}, "subjects": ["Politics and government"], "revision": 2}
+/type/work /works/OL11239901W 1 2009-12-11T04:17:38.815574 {"title": "English mystery plays", "created": {"type": "/type/datetime", "value": "2009-12-11T04:17:38.815574"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:17:38.815574"}, "latest_revision": 1, "key": "/works/OL11239901W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4706764A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11240609W 2 2010-01-20T00:10:26.544181 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:17:44.736337"}, "title": "Assistance for users of the catalog in a university library", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T00:10:26.544181"}, "latest_revision": 2, "key": "/works/OL11240609W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4707157A"}}], "type": {"key": "/type/work"}, "subjects": ["Library catalogs and users", "Academic libraries"], "revision": 2}
+/type/work /works/OL11240759W 3 2010-12-03T13:06:43.287132 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:06:43.287132"}, "title": "Extreme properties of linear transformations and geometry in unitary spaces", "created": {"type": "/type/datetime", "value": "2009-12-11T04:17:44.736337"}, "subjects": ["Analytic Geometry", "Geometry, Analytic", "Matrices", "Transformations (Mathematics)", "Vector analysis"], "latest_revision": 3, "key": "/works/OL11240759W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4707245A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11240787W 4 2019-07-31T10:56:13.619987 {"last_modified": {"type": "/type/datetime", "value": "2019-07-31T10:56:13.619987"}, "title": "Roads, bridges and tunnels", "created": {"type": "/type/datetime", "value": "2009-12-11T04:17:44.736337"}, "subjects": ["Juvenile literature", "Roads", "Civil engineering", "Tunnels", "Bridges", "Bridges, tunnels & other structures", "Civil engineering & construction", "General science"], "latest_revision": 4, "key": "/works/OL11240787W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1234718A"}}, {"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2789651A"}}], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL11240806W 3 2010-04-28T07:19:59.777300 {"title": "On some new or little known fossils from the Silurian and Devonian rocks of Ontario", "created": {"type": "/type/datetime", "value": "2009-12-11T04:17:44.736337"}, "covers": [6104376], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:19:59.777300"}, "latest_revision": 3, "key": "/works/OL11240806W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4707257A"}}], "subject_times": ["Paleozoic"], "subjects": ["Corals", "Sponges", "Paleontology"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11241071W 1 2009-12-11T04:17:44.736337 {"title": "Moderne Spitzen-Entwu rfe", "created": {"type": "/type/datetime", "value": "2009-12-11T04:17:44.736337"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:17:44.736337"}, "latest_revision": 1, "key": "/works/OL11241071W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4707368A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11241225W 2 2010-01-20T00:10:26.544181 {"title": "Estetica de Valle-Inclan en los esperpentos y en \"El ruedo iberico\"", "created": {"type": "/type/datetime", "value": "2009-12-11T04:17:51.072401"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-20T00:10:26.544181"}, "latest_revision": 2, "key": "/works/OL11241225W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4707455A"}}], "subject_people": ["R. del Valle-Inclan"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL1124123W 2 2010-01-20T00:10:26.544181 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:32:40.486579"}, "title": "Histoire de l'Ame\u0301rique espagnole", "subject_places": ["Latin America"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T00:10:26.544181"}, "latest_revision": 2, "key": "/works/OL1124123W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL115057A"}}], "type": {"key": "/type/work"}, "subjects": ["History"], "revision": 2}
+/type/work /works/OL11241470W 2 2010-01-20T00:10:26.544181 {"title": "Teihon Bash\u014d", "created": {"type": "/type/datetime", "value": "2009-12-11T04:17:51.072401"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-20T00:10:26.544181"}, "latest_revision": 2, "key": "/works/OL11241470W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4707606A"}}], "subject_people": ["Bash\u014d Matsuo (1644-1694)"], "type": {"key": "/type/work"}, "subjects": ["Criticism and interpretation"], "revision": 2}
+/type/work /works/OL11241536W 3 2010-12-03T13:07:10.775154 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:07:10.775154"}, "title": "Sae nal i omy\u014fn", "created": {"type": "/type/datetime", "value": "2009-12-11T04:17:51.072401"}, "subjects": ["Korean Sermons", "Protestant churches", "Sermons", "Sermons, Korean"], "latest_revision": 3, "key": "/works/OL11241536W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4707646A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11241671W 2 2010-01-20T00:10:26.544181 {"title": "Donald Fraser of Livingstonia", "created": {"type": "/type/datetime", "value": "2009-12-11T04:17:51.072401"}, "subject_places": ["South Africa"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T00:10:26.544181"}, "latest_revision": 2, "key": "/works/OL11241671W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4707739A"}}], "subject_people": ["Donald Fraser (1870-1933)"], "type": {"key": "/type/work"}, "subjects": ["Missions"], "revision": 2}
+/type/work /works/OL11242345W 1 2009-12-11T04:17:56.656531 {"title": "St. Michael", "created": {"type": "/type/datetime", "value": "2009-12-11T04:17:56.656531"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:17:56.656531"}, "latest_revision": 1, "key": "/works/OL11242345W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4708077A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11242351W 3 2010-04-28T07:19:59.777300 {"title": "Hait\u00ed", "created": {"type": "/type/datetime", "value": "2009-12-11T04:17:56.656531"}, "covers": [5411767], "subject_places": ["Haiti"], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:19:59.777300"}, "latest_revision": 3, "key": "/works/OL11242351W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4708084A"}}], "subject_times": ["1986-"], "subjects": ["Politics and government", "Democracy"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11242469W 2 2010-01-20T00:14:55.733283 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:17:56.656531"}, "title": "Hito ni kokorozashi ari", "subject_places": ["Japan"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T00:14:55.733283"}, "latest_revision": 2, "key": "/works/OL11242469W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4708156A"}}], "type": {"key": "/type/work"}, "subjects": ["Biography"], "revision": 2}
+/type/work /works/OL11242479W 2 2010-01-20T00:14:55.733283 {"title": "Takano Iwasaburo den", "created": {"type": "/type/datetime", "value": "2009-12-11T04:17:56.656531"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-20T00:14:55.733283"}, "latest_revision": 2, "key": "/works/OL11242479W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4708156A"}}], "subject_people": ["Iwasaburo Takano (1871-1949)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11243036W 2 2022-09-28T17:06:39.555528 {"title": "Mari", "key": "/works/OL11243036W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL135041A"}}], "type": {"key": "/type/work"}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T04:17:56.656531"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-28T17:06:39.555528"}}
+/type/work /works/OL1124305W 2 2010-01-20T00:14:55.733283 {"title": "John and Sarah", "created": {"type": "/type/datetime", "value": "2009-12-09T20:32:40.486579"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-20T00:14:55.733283"}, "latest_revision": 2, "key": "/works/OL1124305W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL115077A"}}], "subject_people": ["Sarah Churchill Marlborough Duchess of (1660-1744)", "John Churchill Marlborough Duke of"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11243595W 3 2010-12-03T14:59:25.652702 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:59:25.652702"}, "title": "Der Prophet Jesaja, Kapitel 1-12", "created": {"type": "/type/datetime", "value": "2009-12-11T04:18:02.188770"}, "subjects": ["Bible", "Commentaries"], "latest_revision": 3, "key": "/works/OL11243595W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4708672A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11243971W 1 2009-12-11T04:18:02.188770 {"title": "Fifth annual Seminar for the Study and Practice of Dental Medicine", "created": {"type": "/type/datetime", "value": "2009-12-11T04:18:02.188770"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:18:02.188770"}, "latest_revision": 1, "key": "/works/OL11243971W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4708884A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11244889W 3 2017-05-14T06:46:59.592346 {"last_modified": {"type": "/type/datetime", "value": "2017-05-14T06:46:59.592346"}, "latest_revision": 3, "key": "/works/OL11244889W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5199580A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T04:18:08.395966"}, "title": "The girlhood of Maria Josepha Holroyd (Lady Stanley of Alderly)", "subject_places": ["England"], "subjects": ["Social life and customs", "English letters"], "subject_people": ["Stanley family", "Maria Josepha Stanley Stanley Baroness (1771-1863)"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11245171W 2 2010-12-03T20:00:38.419048 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T20:00:38.419048"}, "title": "Ise monogatari no kenky\u016b", "created": {"type": "/type/datetime", "value": "2009-12-11T04:18:13.228491"}, "subjects": ["Ise monogatari"], "latest_revision": 2, "key": "/works/OL11245171W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4709490A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11245397W 2 2010-01-20T00:23:53.639436 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:18:13.228491"}, "title": "My experiences in the Yukon", "subject_places": ["Klondike River Valley (Yukon)", "Yukon"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T00:23:53.639436"}, "latest_revision": 2, "key": "/works/OL11245397W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4709580A"}}], "type": {"key": "/type/work"}, "subjects": ["Description and travel"], "revision": 2}
+/type/work /works/OL11245512W 2 2010-01-20T00:23:53.639436 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:18:13.228491"}, "title": "Heiwa gunshuku no tame no ky\u014diku", "subject_places": ["Japan"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T00:23:53.639436"}, "latest_revision": 2, "key": "/works/OL11245512W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4709625A"}}], "type": {"key": "/type/work"}, "subjects": ["Study and teaching", "Peace", "Disarmament", "Education and state"], "revision": 2}
+/type/work /works/OL11245541W 3 2010-12-03T22:24:56.257032 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:18:13.228491"}, "subjects": ["Japanese Naval operations", "Japanese history, Military", "Military Japanese history", "Naval operations, Japanese", "Naval operations, Russian", "Russian Naval operations", "Russo-Japanese War, 1904-1905"], "latest_revision": 3, "key": "/works/OL11245541W", "title": "Zusetsu Nichi-Ro kaisenshi", "subject_times": ["1868-1945"], "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4709636A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T22:24:56.257032"}, "revision": 3}
+/type/work /works/OL11245562W 2 2010-01-20T00:23:53.639436 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:18:13.228491"}, "title": "La r\u00e9gion du T\u00e9miscaming", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T00:23:53.639436"}, "latest_revision": 2, "key": "/works/OL11245562W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4709643A"}}], "subject_times": ["1897-1918"], "type": {"key": "/type/work"}, "subjects": ["Canadian immigration literature (French)"], "revision": 2}
+/type/work /works/OL1124572W 2 2010-12-04T07:33:17.569269 {"last_modified": {"type": "/type/datetime", "value": "2010-12-04T07:33:17.569269"}, "title": "Promenades litteraires", "created": {"type": "/type/datetime", "value": "2009-12-09T20:32:40.486579"}, "subjects": ["French literature", "History and criticism"], "latest_revision": 2, "key": "/works/OL1124572W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL115099A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11245835W 2 2010-01-20T00:23:53.639436 {"title": "Lope de Vega y Mira de Amescua", "created": {"type": "/type/datetime", "value": "2009-12-11T04:18:13.228491"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-20T00:23:53.639436"}, "latest_revision": 2, "key": "/works/OL11245835W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4709750A"}}], "subject_people": ["Lope de Vega (1562-1635)", "Antonio Mira de Amescua (1574-7?-1644)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11246004W 2 2010-01-20T00:23:53.639436 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:18:13.228491"}, "title": "Entwurff einer historischen Architectur", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T00:23:53.639436"}, "latest_revision": 2, "key": "/works/OL11246004W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4709845A"}}], "type": {"key": "/type/work"}, "subjects": ["Curiosities and wonders", "Architecture", "Early works to 1800"], "revision": 2}
+/type/work /works/OL11246421W 2 2010-01-20T00:28:29.869636 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:18:19.323189"}, "title": "How to delegate effectively", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T00:28:29.869636"}, "latest_revision": 2, "key": "/works/OL11246421W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4710032A"}}], "type": {"key": "/type/work"}, "subjects": ["Programmed instruction", "Delegation of authority", "Industrial management"], "revision": 2}
+/type/work /works/OL11246705W 1 2009-12-11T04:18:19.323189 {"title": "The person for the job", "created": {"type": "/type/datetime", "value": "2009-12-11T04:18:19.323189"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:18:19.323189"}, "latest_revision": 1, "key": "/works/OL11246705W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4710163A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11246786W 3 2010-12-03T13:09:51.433401 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:18:19.323189"}, "subject_places": ["Japan", "Kimitsu-shi"], "subjects": ["Environmental aspects", "Environmental aspects of Sand and gravel industry", "Sand and gravel industry"], "latest_revision": 3, "key": "/works/OL11246786W", "title": "Aa danpu kaid\u014d", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4710217A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:09:51.433401"}, "revision": 3}
+/type/work /works/OL11246824W 1 2009-12-11T04:18:19.323189 {"title": "J\u012bbh\u0101 bolad\u012b rah\u012b", "created": {"type": "/type/datetime", "value": "2009-12-11T04:18:19.323189"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:18:19.323189"}, "latest_revision": 1, "key": "/works/OL11246824W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4710246A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11247010W 1 2009-12-11T04:18:19.323189 {"title": "Sacca kitthe s\u012b--?", "created": {"type": "/type/datetime", "value": "2009-12-11T04:18:19.323189"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:18:19.323189"}, "latest_revision": 1, "key": "/works/OL11247010W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4710379A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11247211W 2 2010-01-20T00:28:29.869636 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:18:26.666138"}, "title": "Remarks ... relative to the grievances set forth in the address of the Commons of Lower Canada", "subject_places": ["Qu\u00e9bec (Province)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T00:28:29.869636"}, "latest_revision": 2, "key": "/works/OL11247211W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4710477A"}}], "type": {"key": "/type/work"}, "subjects": ["Politics and government"], "revision": 2}
+/type/work /works/OL11247359W 3 2012-05-25T15:22:40.951441 {"title": "George Eliot", "created": {"type": "/type/datetime", "value": "2009-12-11T04:18:26.666138"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-25T15:22:40.951441"}, "latest_revision": 3, "key": "/works/OL11247359W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4620591A"}}], "subject_people": ["George Eliot (1819-1880)"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11247413W 3 2010-12-03T17:23:23.904715 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:18:26.666138"}, "subject_places": ["Japan"], "subjects": ["Chronology", "Chronology, Historical", "Historical Chronology", "History", "Tables"], "latest_revision": 3, "key": "/works/OL11247413W", "title": "Sekaishi taisho Nihon shi nempyo", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4710596A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T17:23:23.904715"}, "revision": 3}
+/type/work /works/OL11247829W 2 2010-01-20T00:28:29.869636 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:18:26.666138"}, "title": "Wen xue yu yue du zhi jian", "subject_places": ["Taiwan"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T00:28:29.869636"}, "latest_revision": 2, "key": "/works/OL11247829W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4710884A"}}], "type": {"key": "/type/work"}, "subjects": ["History and criticism", "Chinese fiction", "Theory", "Literature"], "revision": 2}
+/type/work /works/OL11247905W 2 2010-01-20T00:32:43.471399 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:18:26.666138"}, "title": "Quan guo shui sheng tai ji huan jing wei sheng wu xue shu hui yi lun wen ji", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T00:32:43.471399"}, "latest_revision": 2, "key": "/works/OL11247905W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4710945A"}}], "type": {"key": "/type/work"}, "subjects": ["Congresses", "Microbial ecology", "Aquatic ecology"], "revision": 2}
+/type/work /works/OL11247922W 2 2010-01-20T00:32:43.471399 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:18:26.666138"}, "title": "The library without the walls", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T00:32:43.471399"}, "latest_revision": 2, "key": "/works/OL11247922W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4710959A"}}], "type": {"key": "/type/work"}, "subjects": ["Branch libraries", "Libraries and immigrants", "Library extension", "Library circulation and loans", "Libraries and the blind"], "revision": 2}
+/type/work /works/OL11248273W 2 2010-01-20T00:32:43.471399 {"title": "Diario di un fotoreporter", "created": {"type": "/type/datetime", "value": "2009-12-11T04:18:32.970947"}, "subject_places": ["Italy"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T00:32:43.471399"}, "latest_revision": 2, "key": "/works/OL11248273W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4711195A"}}], "subject_people": ["Osvaldo Restaldi"], "type": {"key": "/type/work"}, "subjects": ["Biography", "Photojournalists", "Photojournalism"], "revision": 2}
+/type/work /works/OL11248409W 2 2010-12-04T00:35:52.572604 {"last_modified": {"type": "/type/datetime", "value": "2010-12-04T00:35:52.572604"}, "latest_revision": 2, "key": "/works/OL11248409W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4711261A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T04:18:32.970947"}, "title": "Die Berliner Romantik, 1800-1814", "subject_places": ["Berlin", "Germany"], "subjects": ["German literature", "Romanticism"], "subject_times": ["19th century"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11249138W 2 2010-01-20T00:32:43.471399 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:18:32.970947"}, "title": "The newer method in speech reading for the hard of hearing child", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T00:32:43.471399"}, "latest_revision": 2, "key": "/works/OL11249138W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4711641A"}}], "type": {"key": "/type/work"}, "subjects": ["Means of communication", "Deaf"], "revision": 2}
+/type/work /works/OL11249564W 2 2010-01-20T00:37:13.642921 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:18:44.732783"}, "title": "Kinsei kindai no shis\u014d to bunka", "subject_places": ["Japan"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T00:37:13.642921"}, "latest_revision": 2, "key": "/works/OL11249564W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4711866A"}}], "subject_times": ["1600-1868", "1868-1912"], "type": {"key": "/type/work"}, "subjects": ["Intellectual life", "Civilization"], "revision": 2}
+/type/work /works/OL11249968W 1 2009-12-11T04:18:44.732783 {"title": "Luminosity functions of bright red giant stars in globular clusters", "created": {"type": "/type/datetime", "value": "2009-12-11T04:18:44.732783"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:18:44.732783"}, "latest_revision": 1, "key": "/works/OL11249968W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4712124A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1125002W 3 2020-09-14T11:43:15.547232 {"covers": [9486685], "last_modified": {"type": "/type/datetime", "value": "2020-09-14T11:43:15.547232"}, "latest_revision": 3, "key": "/works/OL1125002W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL115124A"}}], "created": {"type": "/type/datetime", "value": "2009-12-09T20:32:44.604932"}, "title": "Les vieilles e\u0301glises de la province de Que\u0301bec, 1647-1800", "subject_places": ["Qu\u00e9bec (Province)"], "subjects": ["Churches", "Quebec (Province)"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11250239W 2 2022-10-10T21:40:16.028211 {"title": "Fortegnelse over Arbejder af Johannes V. Jensen", "key": "/works/OL11250239W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL115567A"}}], "type": {"key": "/type/work"}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T04:18:50.825240"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-10T21:40:16.028211"}}
+/type/work /works/OL11250341W 1 2009-12-11T04:18:50.825240 {"title": "Antique reproductions for the home craftsman", "created": {"type": "/type/datetime", "value": "2009-12-11T04:18:50.825240"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:18:50.825240"}, "latest_revision": 1, "key": "/works/OL11250341W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4712373A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11250852W 4 2020-12-19T17:44:17.535086 {"title": "Filosofii\ufe20a\ufe21 tela", "subjects": ["Philosophy", "Liberty", "Body, Human (Philosophy)", "Human body (Philosophy)"], "key": "/works/OL11250852W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4712667A"}}], "type": {"key": "/type/work"}, "covers": [10028511], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T04:18:50.825240"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-19T17:44:17.535086"}}
+/type/work /works/OL11251968W 1 2009-12-11T04:18:57.957610 {"title": "Real estate owned by the state of Ohio", "created": {"type": "/type/datetime", "value": "2009-12-11T04:18:57.957610"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:18:57.957610"}, "latest_revision": 1, "key": "/works/OL11251968W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4713347A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11252493W 2 2018-12-04T03:27:39.290719 {"title": "On several new American spiders", "created": {"type": "/type/datetime", "value": "2009-12-11T04:19:06.766631"}, "last_modified": {"type": "/type/datetime", "value": "2018-12-04T03:27:39.290719"}, "latest_revision": 2, "key": "/works/OL11252493W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2606909A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11252943W 2 2010-01-20T00:41:24.074776 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:19:06.766631"}, "title": "Jia wu zhan zheng de gu shi", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T00:41:24.074776"}, "latest_revision": 2, "key": "/works/OL11252943W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4713935A"}}], "type": {"key": "/type/work"}, "subjects": ["Sino-Japanese War, 1894-1895"], "revision": 2}
+/type/work /works/OL11253143W 1 2009-12-11T04:19:06.766631 {"title": "List of approved installers on the Council's roll of intruder alarm systems as at 1st December 1985", "created": {"type": "/type/datetime", "value": "2009-12-11T04:19:06.766631"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:19:06.766631"}, "latest_revision": 1, "key": "/works/OL11253143W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4714037A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11253544W 1 2009-12-11T04:19:12.919531 {"title": "Expanded duty auxiliaries", "created": {"type": "/type/datetime", "value": "2009-12-11T04:19:12.919531"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:19:12.919531"}, "latest_revision": 1, "key": "/works/OL11253544W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4714249A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1125433W 2 2010-03-17T09:37:39.098947 {"subtitle": "Med kommentarer", "title": "K\u00f8beloven", "created": {"type": "/type/datetime", "value": "2009-12-09T20:32:44.604932"}, "last_modified": {"type": "/type/datetime", "value": "2010-03-17T09:37:39.098947"}, "latest_revision": 2, "key": "/works/OL1125433W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL115145A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11254639W 1 2009-12-11T04:19:23.674161 {"title": "Unter fremden Himmeln", "created": {"type": "/type/datetime", "value": "2009-12-11T04:19:23.674161"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:19:23.674161"}, "latest_revision": 1, "key": "/works/OL11254639W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4714827A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11254914W 3 2010-08-17T16:49:30.041328 {"subtitle": "Acte de la r\u00e9publique de Virginie, qui \u00e9tablit la libert\u00e9 de religion, pass\u00e9 \u00e0 l'assembl\u00e9e de la Virginie au commencement de l'ann\u00e9e 1786", "last_modified": {"type": "/type/datetime", "value": "2010-08-17T16:49:30.041328"}, "latest_revision": 3, "key": "/works/OL11254914W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4714980A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T04:19:23.674161"}, "title": "An act for establishing religious freedom, passed in the Assembly of Virginia in the beginning of the year 1786", "subject_places": ["Virginia"], "subjects": ["Freedom of religion"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11254934W 2 2010-01-20T00:46:07.496764 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:19:23.674161"}, "title": "Sketches of the acts and joint resolutions of the General Assembly of Virginia", "subject_places": ["Virginia"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T00:46:07.496764"}, "latest_revision": 2, "key": "/works/OL11254934W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4714980A"}}], "subject_times": ["1861-1865"], "type": {"key": "/type/work"}, "subjects": ["Politics and government", "Law"], "revision": 2}
+/type/work /works/OL11255089W 1 2009-12-11T04:19:23.674161 {"title": "Aircraft fatigue in the eighties", "created": {"type": "/type/datetime", "value": "2009-12-11T04:19:23.674161"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:19:23.674161"}, "latest_revision": 1, "key": "/works/OL11255089W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4715043A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11255158W 2 2010-01-20T00:46:07.496764 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:19:23.674161"}, "title": "Han\u02beguk \u016di y\u014fs\u014fng kwa nams\u014fng", "subject_places": ["Korea (South)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T00:46:07.496764"}, "latest_revision": 2, "key": "/works/OL11255158W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4715090A"}}], "type": {"key": "/type/work"}, "subjects": ["Social conditions", "Sex discrimination", "Sex role"], "revision": 2}
+/type/work /works/OL11255259W 1 2009-12-11T04:19:31.191037 {"title": "The chromatographic determination of inorganic species", "created": {"type": "/type/datetime", "value": "2009-12-11T04:19:31.191037"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:19:31.191037"}, "latest_revision": 1, "key": "/works/OL11255259W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4715182A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1125565W 1 2009-12-09T20:32:44.604932 {"title": "Rapport om fasts\u00e6ttelse af maksimal grundlagssrente", "created": {"type": "/type/datetime", "value": "2009-12-09T20:32:44.604932"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T20:32:44.604932"}, "latest_revision": 1, "key": "/works/OL1125565W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL115145A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11255995W 1 2009-12-11T04:19:31.191037 {"title": "Nueva historia de America", "created": {"type": "/type/datetime", "value": "2009-12-11T04:19:31.191037"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:19:31.191037"}, "latest_revision": 1, "key": "/works/OL11255995W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4715626A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11256353W 3 2010-12-03T13:10:45.258527 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:19:38.450083"}, "subjects": ["Chinese poetry", "History and criticism", "Qian jia shi"], "latest_revision": 3, "key": "/works/OL11256353W", "title": "Xin yi qian jia shi", "subject_times": ["Song dynasty, 960-1279", "Tang dynasty, 618-907"], "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4715851A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:10:45.258527"}, "revision": 3}
+/type/work /works/OL11256424W 1 2009-12-11T04:19:38.450083 {"title": "Kalendarno-pesennaya kul'tura Belorussii", "created": {"type": "/type/datetime", "value": "2009-12-11T04:19:38.450083"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:19:38.450083"}, "latest_revision": 1, "key": "/works/OL11256424W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4715909A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11256936W 1 2009-12-11T04:19:38.450083 {"title": "Zadachi i uprazhneniya po razvitiyu tvorcheskoi fantazii uchashchikhsya (IV-V klassy)", "created": {"type": "/type/datetime", "value": "2009-12-11T04:19:38.450083"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:19:38.450083"}, "latest_revision": 1, "key": "/works/OL11256936W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4716228A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11256992W 2 2010-01-20T00:50:17.563018 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:19:38.450083"}, "title": "Lectures on advanced ordinary differential equations", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T00:50:17.563018"}, "latest_revision": 2, "key": "/works/OL11256992W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4716260A"}}], "type": {"key": "/type/work"}, "subjects": ["Differential equations"], "revision": 2}
+/type/work /works/OL11257259W 3 2010-12-03T14:13:46.414657 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:19:46.939593"}, "subject_places": ["Japan"], "subjects": ["Antiquities", "Inscriptions, Japanese", "Japanese Inscriptions"], "latest_revision": 3, "key": "/works/OL11257259W", "title": "Nihon kodai bunbutsu no kenky\u016b", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4716388A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:13:46.414657"}, "revision": 3}
+/type/work /works/OL11257569W 2 2010-01-20T00:54:38.431665 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:19:46.939593"}, "title": "Jing zi yi yan", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T00:54:38.431665"}, "latest_revision": 2, "key": "/works/OL11257569W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4716602A"}}], "type": {"key": "/type/work"}, "subjects": ["Chinese studies"], "revision": 2}
+/type/work /works/OL11258141W 2 2010-01-20T00:54:38.431665 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:19:46.939593"}, "title": "Douglas-fir tussock moth handbook", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T00:54:38.431665"}, "latest_revision": 2, "key": "/works/OL11258141W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4717017A"}}], "type": {"key": "/type/work"}, "subjects": ["Larvae", "Douglas fir tussock moth"], "revision": 2}
+/type/work /works/OL11258161W 2 2010-01-20T00:54:38.431665 {"title": "Genji ko\u0304moku", "created": {"type": "/type/datetime", "value": "2009-12-11T04:19:46.939593"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-20T00:54:38.431665"}, "latest_revision": 2, "key": "/works/OL11258161W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4717030A"}}], "subject_people": ["Murasaki Shikibu (b. 978?)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11258253W 1 2009-12-11T04:19:53.766903 {"title": "Osnovy postroeniya mikro-EVM", "created": {"type": "/type/datetime", "value": "2009-12-11T04:19:53.766903"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:19:53.766903"}, "latest_revision": 1, "key": "/works/OL11258253W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4717086A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11258449W 2 2010-01-20T00:54:38.431665 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:19:53.766903"}, "title": "Urban open space study for Canadian communities", "subject_places": ["Canada"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T00:54:38.431665"}, "latest_revision": 2, "key": "/works/OL11258449W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4717227A"}}], "type": {"key": "/type/work"}, "subjects": ["Recreation areas", "Land", "Greenbelts"], "revision": 2}
+/type/work /works/OL1125851W 2 2010-08-19T19:25:17.028824 {"subtitle": "general and statistical information.", "title": "Armaments year-book", "created": {"type": "/type/datetime", "value": "2009-12-09T20:32:44.604932"}, "last_modified": {"type": "/type/datetime", "value": "2010-08-19T19:25:17.028824"}, "latest_revision": 2, "key": "/works/OL1125851W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL115162A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11258959W 2 2010-01-20T00:58:41.191322 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:19:53.766903"}, "title": "Theory of machines and computations", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T00:58:41.191322"}, "latest_revision": 2, "key": "/works/OL11258959W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4717539A"}}], "type": {"key": "/type/work"}, "subjects": ["Congresses", "Sequential machine theory", "Numerical calculations", "Formal languages", "Switching theory"], "revision": 2}
+/type/work /works/OL11259164W 2 2010-01-20T00:58:41.191322 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:19:53.766903"}, "title": "Liu shu shi li", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T00:58:41.191322"}, "latest_revision": 2, "key": "/works/OL11259164W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4717691A"}}], "type": {"key": "/type/work"}, "subjects": ["Etymology", "Chinese language"], "revision": 2}
+/type/work /works/OL11259235W 2 2010-01-20T00:58:41.191322 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:20:00.556448"}, "title": "Al- Khul\u016bd f\u012b \u1e25ay\u0101t al-Mi\u1e63r\u012by\u012bn al-mu'\u0101\u1e63ir\u012bn, na\u1e93rat al-q\u0101dah al-thaq\u0101f\u012by\u012bn al-Mi\u1e63r\u012by\u012bn na\u1e25wa \u1e93\u0101hirat al-mawt wa-na\u1e25wa al-mawt\u00e1", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T00:58:41.191322"}, "latest_revision": 2, "key": "/works/OL11259235W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4717731A"}}], "type": {"key": "/type/work"}, "subjects": ["Egypt", "Future life (Islam)", "Death (Islam)", "Islam"], "revision": 2}
+/type/work /works/OL11259471W 2 2010-01-20T00:58:41.191322 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:20:00.556448"}, "title": "Biomass of yellow-poplar in natural stands in western North Carolina", "subject_places": ["North Carolina"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T00:58:41.191322"}, "latest_revision": 2, "key": "/works/OL11259471W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4717870A"}}], "type": {"key": "/type/work"}, "subjects": ["Poplar"], "revision": 2}
+/type/work /works/OL11259596W 1 2009-12-11T04:20:00.556448 {"title": "A Centre for the performing arts in Cardiff", "created": {"type": "/type/datetime", "value": "2009-12-11T04:20:00.556448"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:20:00.556448"}, "latest_revision": 1, "key": "/works/OL11259596W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4717948A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11259615W 2 2010-01-20T00:58:41.191322 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:20:00.556448"}, "title": "Indiana's timber industry--an assessment of timber product output and use, 1995", "subject_places": ["Indiana"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T00:58:41.191322"}, "latest_revision": 2, "key": "/works/OL11259615W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4717963A"}}], "type": {"key": "/type/work"}, "subjects": ["Statistics", "Forests and forestry", "Lumber trade", "Timber"], "revision": 2}
+/type/work /works/OL11259622W 1 2009-12-11T04:20:00.556448 {"title": "Art Space Conference report, 14-16 Sept. 1984", "created": {"type": "/type/datetime", "value": "2009-12-11T04:20:00.556448"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:20:00.556448"}, "latest_revision": 1, "key": "/works/OL11259622W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4717967A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11259982W 2 2010-01-20T00:58:41.191322 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:20:00.556448"}, "title": "Inland transport in El Salvador", "subject_places": ["El Salvador"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T00:58:41.191322"}, "latest_revision": 2, "key": "/works/OL11259982W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4718194A"}}], "type": {"key": "/type/work"}, "subjects": ["Roads", "Railroads", "Transportation"], "revision": 2}
+/type/work /works/OL11260252W 2 2010-01-20T01:03:03.744623 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:20:07.772044"}, "title": "Planirovanie gorodov i ra\u01d0onov", "subject_places": ["Russia"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T01:03:03.744623"}, "latest_revision": 2, "key": "/works/OL11260252W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4718362A"}}], "type": {"key": "/type/work"}, "subjects": ["City planning"], "revision": 2}
+/type/work /works/OL11260288W 2 2010-01-20T01:03:03.744623 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:20:07.772044"}, "title": "Queenstown, Singapore", "subject_places": ["Singapore"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T01:03:03.744623"}, "latest_revision": 2, "key": "/works/OL11260288W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4718386A"}}], "type": {"key": "/type/work"}, "subjects": ["City planning"], "revision": 2}
+/type/work /works/OL11260697W 3 2012-05-17T18:51:22.854431 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:20:07.772044"}, "subject_places": ["United States"], "subjects": ["Peanuts"], "latest_revision": 3, "key": "/works/OL11260697W", "title": "The peanut", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1952010A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-17T18:51:22.854431"}, "revision": 3}
+/type/work /works/OL11260794W 2 2010-01-20T01:03:03.744623 {"title": "Louis XVI", "created": {"type": "/type/datetime", "value": "2009-12-11T04:20:07.772044"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-20T01:03:03.744623"}, "latest_revision": 2, "key": "/works/OL11260794W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4718702A"}}], "subject_people": ["Louis XIV King of France (1638-1715)"], "type": {"key": "/type/work"}, "subjects": ["French Revolution, 1789-1792 (Assembl\u00e9e Nationale)", "Contemporary works"], "revision": 2}
+/type/work /works/OL11260795W 2 2010-01-20T01:03:03.744623 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:20:07.772044"}, "title": "Soil survey of Bryan County, Oklahoma", "subject_places": ["Oklahoma", "Bryan County"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T01:03:03.744623"}, "latest_revision": 2, "key": "/works/OL11260795W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4718703A"}}], "type": {"key": "/type/work"}, "subjects": ["Soil surveys", "Soils", "Maps"], "revision": 2}
+/type/work /works/OL11260928W 2 2010-01-20T01:03:03.744623 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:20:07.772044"}, "title": "Dent\u014d k\u014dgei to teshigoto", "subject_places": ["Japan"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T01:03:03.744623"}, "latest_revision": 2, "key": "/works/OL11260928W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4718796A"}}], "type": {"key": "/type/work"}, "subjects": ["Handicraft", "Artisans"], "revision": 2}
+/type/work /works/OL11261069W 2 2010-01-20T01:03:03.744623 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:20:07.772044"}, "title": "Soil survey of Vernon County, Missouri", "subject_places": ["Missouri", "Vernon County"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T01:03:03.744623"}, "latest_revision": 2, "key": "/works/OL11261069W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4718874A"}}], "type": {"key": "/type/work"}, "subjects": ["Soils", "Maps"], "revision": 2}
+/type/work /works/OL1126113W 1 2009-12-09T20:32:48.095573 {"title": "Memorial to be presented to the Assembly of the League on behalf of the World Alliance for Promoting International Friendship through the Churches", "created": {"type": "/type/datetime", "value": "2009-12-09T20:32:48.095573"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T20:32:48.095573"}, "latest_revision": 1, "key": "/works/OL1126113W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL115162A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11261191W 4 2010-12-03T13:11:35.008581 {"covers": [5755339], "last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:11:35.008581"}, "latest_revision": 4, "key": "/works/OL11261191W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4718964A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T04:20:14.483688"}, "title": "Kepler und Newton und das Problem der Gravitation in der Kantischen, Schellingschen und Hegelschen Naturphilosophie", "subjects": ["Gravitation", "History", "Modern Philosophy", "Philosophy, Modern"], "subject_people": ["Friedrich Wilhelm Joseph von Schelling (1775-1854)", "Georg Wilhelm Friedrich Hegel (1770-1831)", "Immanuel Kant (1724-1804)", "Isaac Newton Sir (1642-1727)", "Johannes Kepler (1571-1630)"], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL11261368W 2 2010-01-20T01:03:03.744623 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:20:14.483688"}, "title": "The European Union's ban on hormone-treated meat", "subject_places": ["European Union countries"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T01:03:03.744623"}, "latest_revision": 2, "key": "/works/OL11261368W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4719076A"}}], "type": {"key": "/type/work"}, "subjects": ["Hormones in animal nutrition", "Bovine somatotropin", "Law and legislation"], "revision": 2}
+/type/work /works/OL11261444W 3 2010-12-03T13:11:35.008581 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:20:14.483688"}, "subject_places": ["United States"], "subjects": ["Competition, International", "Foreign trade and employment", "International Competition", "Manufactures"], "latest_revision": 3, "key": "/works/OL11261444W", "title": "Foreign competition and its regional effects on U.S. manufacturing employment, 1975 to 1982", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4719135A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:11:35.008581"}, "revision": 3}
+/type/work /works/OL11261579W 2 2010-01-20T01:07:10.707891 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:20:14.483688"}, "title": "The spectral sequence for smooth fiber bundles and fiber integration", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T01:07:10.707891"}, "latest_revision": 2, "key": "/works/OL11261579W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4719232A"}}], "type": {"key": "/type/work"}, "subjects": ["Homology theory", "Spectral theory (Mathematics)"], "revision": 2}
+/type/work /works/OL11261660W 2 2010-01-20T01:07:10.707891 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:20:14.483688"}, "title": "Millimeter-wave propagation characteristics and channel performance for urban-suburban environments", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T01:07:10.707891"}, "latest_revision": 2, "key": "/works/OL11261660W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4719280A"}}], "type": {"key": "/type/work"}, "subjects": ["Radio frequency modulation"], "revision": 2}
+/type/work /works/OL11261689W 2 2010-01-20T01:07:10.707891 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:20:14.483688"}, "title": "Refractivity and rainfall data for radio systems engineering", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T01:07:10.707891"}, "latest_revision": 2, "key": "/works/OL11261689W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4719297A"}}], "type": {"key": "/type/work"}, "subjects": ["Rain and rainfall", "Atmospheric radio refractivity", "Microwave communication systems"], "revision": 2}
+/type/work /works/OL11261894W 2 2010-01-20T01:07:10.707891 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:20:14.483688"}, "title": "Issues in the management of microcomputer systems", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T01:07:10.707891"}, "latest_revision": 2, "key": "/works/OL11261894W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4719376A"}}], "type": {"key": "/type/work"}, "subjects": ["Electronic data processing departments", "Microcomputers", "Management"], "revision": 2}
+/type/work /works/OL11262168W 2 2010-01-20T01:07:10.707891 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:20:14.483688"}, "title": "A Schottky diode bridge sampling gate", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T01:07:10.707891"}, "latest_revision": 2, "key": "/works/OL11262168W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4719526A"}}], "type": {"key": "/type/work"}, "subjects": ["Bridge circuits", "Diodes"], "revision": 2}
+/type/work /works/OL11262394W 2 2010-01-20T01:07:10.707891 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:20:22.702608"}, "title": "Detector spectral response from 350 to 1200 nm using a monochromator based spectral comparator", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T01:07:10.707891"}, "latest_revision": 2, "key": "/works/OL11262394W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4719698A"}}], "type": {"key": "/type/work"}, "subjects": ["Radiation", "Measurement"], "revision": 2}
+/type/work /works/OL11262433W 2 2010-01-20T01:07:10.707891 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:20:22.702608"}, "title": "Human factors aspects of lightplane safety", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T01:07:10.707891"}, "latest_revision": 2, "key": "/works/OL11262433W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4719726A"}}], "type": {"key": "/type/work"}, "subjects": ["Private flying", "Safety measures"], "revision": 2}
+/type/work /works/OL11262500W 2 2010-01-20T01:07:10.707891 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:20:22.702608"}, "title": "Guide to technical services and information sources for ADP managers and users", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T01:07:10.707891"}, "latest_revision": 2, "key": "/works/OL11262500W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4719791A"}}], "type": {"key": "/type/work"}, "subjects": ["Electronic data processing", "Information services"], "revision": 2}
+/type/work /works/OL11263300W 3 2019-05-16T09:02:16.397058 {"last_modified": {"type": "/type/datetime", "value": "2019-05-16T09:02:16.397058"}, "title": "Urban dwelling environments", "created": {"type": "/type/datetime", "value": "2009-12-11T04:20:29.893952"}, "subjects": ["Cities and towns", "Housing", "Planning", "City planning"], "latest_revision": 3, "key": "/works/OL11263300W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4720382A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11263676W 1 2009-12-11T04:20:29.893952 {"title": "The 7th International Conference on Physicochemical Hydrodynamics, Massachusetts Institute of Technology, June 25 through June 29, 1989", "created": {"type": "/type/datetime", "value": "2009-12-11T04:20:29.893952"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:20:29.893952"}, "latest_revision": 1, "key": "/works/OL11263676W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4720641A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11263946W 2 2010-01-20T01:11:02.073941 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:20:29.893952"}, "title": "A model of temperature stratification for correction of leveling refraction", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T01:11:02.073941"}, "latest_revision": 2, "key": "/works/OL11263946W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4720824A"}}], "type": {"key": "/type/work"}, "subjects": ["Leveling"], "revision": 2}
+/type/work /works/OL11264111W 2 2010-12-03T13:11:35.008581 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:11:35.008581"}, "title": "Systematychny\u01d0 pokazhchyk do \"Ky\u00efvs'ko\u00ef staryny\" i \"Ukra\u00efny", "created": {"type": "/type/datetime", "value": "2009-12-11T04:20:29.893952"}, "subjects": ["Kievskaia starina. Indexes. Sistematicheski\u01d0 ukazatel' zhurnala Kievskaia starina", "Ukraine. Indexes"], "latest_revision": 2, "key": "/works/OL11264111W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4720933A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11264804W 2 2010-01-20T03:33:00.802905 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:20:37.307784"}, "title": "Elogj d'illustri italiani", "subject_places": ["Italy"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T03:33:00.802905"}, "latest_revision": 2, "key": "/works/OL11264804W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4721387A"}}], "type": {"key": "/type/work"}, "subjects": ["Biography"], "revision": 2}
+/type/work /works/OL1126559W 2 2010-01-20T03:33:00.802905 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:32:48.095573"}, "title": "La primera guerra entre Me\u0301xico y Francia", "subject_places": ["Mexico", "France"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T03:33:00.802905"}, "latest_revision": 2, "key": "/works/OL1126559W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL115183A"}}], "subject_times": ["1821-1861"], "type": {"key": "/type/work"}, "subjects": ["Foreign relations", "History"], "revision": 2}
+/type/work /works/OL11265844W 4 2012-05-10T22:35:44.931214 {"last_modified": {"type": "/type/datetime", "value": "2012-05-10T22:35:44.931214"}, "title": "Military publications, preparation of plans for technical manual verification", "created": {"type": "/type/datetime", "value": "2009-12-11T04:20:45.145856"}, "subjects": ["Handbooks, manuals", "Technical manuals", "United States", "United States. Army"], "latest_revision": 4, "key": "/works/OL11265844W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4722109A"}}], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL1126602W 5 2020-08-13T10:57:34.098655 {"covers": [5795729], "last_modified": {"type": "/type/datetime", "value": "2020-08-13T10:57:34.098655"}, "latest_revision": 5, "key": "/works/OL1126602W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL115187A"}}], "created": {"type": "/type/datetime", "value": "2009-12-09T20:32:48.095573"}, "title": "Adventures in American bookshops, antique stores and auction rooms", "subject_places": ["United States"], "subjects": ["Booksellers and bookselling", "Antiquarian booksellers"], "type": {"key": "/type/work"}, "revision": 5}
+/type/work /works/OL11266101W 3 2010-12-03T13:12:50.993993 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:20:45.145856"}, "subject_places": ["Japan"], "subjects": ["Bibliography", "Catalogs", "Exhibitions", "Music", "Ueno Gakuen", "Ueno Gakuen. Nihon Ongaku Shiry\u014dshitsu"], "latest_revision": 3, "key": "/works/OL11266101W", "title": "Nihon Ongaku Shiry\u014dshitsu tenkan mokuroku", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4722273A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:12:50.993993"}, "revision": 3}
+/type/work /works/OL11266292W 1 2009-12-11T04:20:52.845898 {"title": "Conservation report", "created": {"type": "/type/datetime", "value": "2009-12-11T04:20:52.845898"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:20:52.845898"}, "latest_revision": 1, "key": "/works/OL11266292W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4722397A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11266597W 2 2010-12-03T13:12:18.397938 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:12:18.397938"}, "title": "The Engineer Studies Center and Army analysis", "created": {"type": "/type/datetime", "value": "2009-12-11T04:20:52.845898"}, "subjects": ["Engineer Studies Center (U.S.)"], "latest_revision": 2, "key": "/works/OL11266597W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4722611A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL1126697W 7 2020-07-14T01:36:14.735735 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:32:48.095573"}, "subjects": ["English Love poetry", "English poetry", "Irish authors", "Irish ballads and songs (English)", "Love poetry", "English Ballads", "Irish Poets"], "latest_revision": 7, "key": "/works/OL1126697W", "title": "Irish Love-Songs", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL115188A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-07-14T01:36:14.735735"}, "covers": [2879764], "revision": 7}
+/type/work /works/OL11267235W 2 2010-01-20T03:37:24.555856 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:21:00.855558"}, "title": "Nation at war", "subject_places": ["United States", "U.S."], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T03:37:24.555856"}, "latest_revision": 2, "key": "/works/OL11267235W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4723093A"}}], "type": {"key": "/type/work"}, "subjects": ["Economic policy", "World War, 1939-1945"], "revision": 2}
+/type/work /works/OL11267331W 2 2017-05-16T10:25:10.733661 {"title": "Unpublished correspondence of Henri de Toulouse-Lautrec", "created": {"type": "/type/datetime", "value": "2009-12-11T04:21:00.855558"}, "last_modified": {"type": "/type/datetime", "value": "2017-05-16T10:25:10.733661"}, "latest_revision": 2, "key": "/works/OL11267331W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL127114A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11267367W 1 2009-12-11T04:21:00.855558 {"title": "Le troisi\u00e8me centenaire de Saint-Sulpice", "created": {"type": "/type/datetime", "value": "2009-12-11T04:21:00.855558"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:21:00.855558"}, "latest_revision": 1, "key": "/works/OL11267367W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4723184A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1126761W 1 2009-12-09T20:32:48.095573 {"title": "al-L\u0101\u02bci\u1e25ah al-tanf\u012bdh\u012byah li-Q\u0101n\u016bn \u1e0car\u012bbat al-Damghah li-sanat 1980", "created": {"type": "/type/datetime", "value": "2009-12-09T20:32:48.095573"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T20:32:48.095573"}, "latest_revision": 1, "key": "/works/OL1126761W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL115193A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11267724W 3 2010-12-04T03:52:59.629665 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:21:00.855558"}, "subject_places": ["Ontario"], "subjects": ["Education, Rural", "Rural Education", "Teachers", "Women teachers"], "latest_revision": 3, "key": "/works/OL11267724W", "title": "A survey of the problems of female rural elementary school teachers in Ontario 1960-61", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4723442A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-04T03:52:59.629665"}, "revision": 3}
+/type/work /works/OL11267755W 2 2010-01-20T03:41:26.414645 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:21:00.855558"}, "title": "Statistical properties of a staggered-PRF MTI system", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T03:41:26.414645"}, "latest_revision": 2, "key": "/works/OL11267755W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4723458A"}}], "type": {"key": "/type/work"}, "subjects": ["Pulse techniques (Electronics)"], "revision": 2}
+/type/work /works/OL11267785W 3 2010-12-03T13:12:18.397938 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:12:18.397938"}, "title": "Fractographic analysis of fatigue specimens of annealed type 304 stainless steel", "created": {"type": "/type/datetime", "value": "2009-12-11T04:21:00.855558"}, "subjects": ["Fatigue", "Stainless Steel", "Steel, Stainless", "Testing"], "latest_revision": 3, "key": "/works/OL11267785W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4723479A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11268150W 2 2010-03-16T23:53:29.495563 {"subtitle": "paper", "title": "The impact of recent changes in the dairy industry", "created": {"type": "/type/datetime", "value": "2009-12-11T04:21:00.855558"}, "last_modified": {"type": "/type/datetime", "value": "2010-03-16T23:53:29.495563"}, "latest_revision": 2, "key": "/works/OL11268150W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4723779A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11268171W 3 2010-12-03T13:12:50.993993 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:12:50.993993"}, "title": "Military Airlift Command, Andrews and Bolling Air Force bases", "created": {"type": "/type/datetime", "value": "2009-12-11T04:21:00.855558"}, "subjects": ["Andrews Air Force Base (Md.)", "Bolling Air Force Base (Washington, D.C.)", "Directories"], "latest_revision": 3, "key": "/works/OL11268171W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4723794A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11268433W 3 2010-12-03T13:13:22.717231 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:21:09.031099"}, "subject_places": ["United States"], "subjects": ["Aeronautics, Military", "Flight simulators", "Flight training", "Military Aeronautics", "Study and teaching"], "latest_revision": 3, "key": "/works/OL11268433W", "title": "Air-to-air combat skills", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4723992A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:13:22.717231"}, "revision": 3}
+/type/work /works/OL1126866W 3 2010-04-29T00:42:07.228693 {"subtitle": "Loi no 126 du 15 aout 1951.", "title": "La procedure en matiere de statut personnel", "created": {"type": "/type/datetime", "value": "2009-12-09T20:32:48.095573"}, "subject_places": ["Egypt"], "last_modified": {"type": "/type/datetime", "value": "2010-04-29T00:42:07.228693"}, "latest_revision": 3, "key": "/works/OL1126866W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL115193A"}}], "type": {"key": "/type/work"}, "subjects": ["Non-contentious jurisdiction", "Civil procedure", "Probate law and practice"], "revision": 3}
+/type/work /works/OL11269172W 1 2009-12-11T04:21:09.031099 {"title": "Richard Mulcaster", "created": {"type": "/type/datetime", "value": "2009-12-11T04:21:09.031099"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:21:09.031099"}, "latest_revision": 1, "key": "/works/OL11269172W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4724556A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11269184W 2 2010-01-20T03:45:35.096893 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:21:09.031099"}, "title": "The zinc industry", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T03:45:35.096893"}, "latest_revision": 2, "key": "/works/OL11269184W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4724565A"}}], "type": {"key": "/type/work"}, "subjects": ["Zinc industry and trade", "Zinc"], "revision": 2}
+/type/work /works/OL11269403W 2 2010-01-20T03:45:35.096893 {"title": "Jean Gossaert dit Mabuse", "created": {"type": "/type/datetime", "value": "2009-12-11T04:21:16.186143"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-20T03:45:35.096893"}, "latest_revision": 2, "key": "/works/OL11269403W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4724681A"}}], "subject_people": ["Jan Gossaert Mabuse known as Jan (16th century)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11269731W 2 2021-05-01T20:01:23.721465 {"title": "Yfirskygdir stadir", "key": "/works/OL11269731W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL62102A"}}], "type": {"key": "/type/work"}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T04:21:16.186143"}, "last_modified": {"type": "/type/datetime", "value": "2021-05-01T20:01:23.721465"}}
+/type/work /works/OL1126999W 2 2010-01-20T03:49:27.557108 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:32:52.705241"}, "title": "Q\u0101n\u016bn al-\u02bbuq\u016bb\u0101t wa-al-qaw\u0101n\u012bn al-jin\u0101\u02be\u012byah bi-al-qir\u0101r\u0101t al-wiz\u0101r\u012byah wafqan li-\u0101khir al-ta\u02bbd\u012bl\u0101t", "subject_places": ["Egypt"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T03:49:27.557108"}, "latest_revision": 2, "key": "/works/OL1126999W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL115193A"}}], "type": {"key": "/type/work"}, "subjects": ["Criminal law"], "revision": 2}
+/type/work /works/OL11270259W 2 2010-01-20T03:49:27.557108 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:21:23.507533"}, "title": "New electrolytes for direct methane fuel cells", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T03:49:27.557108"}, "latest_revision": 2, "key": "/works/OL11270259W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4725212A"}}], "type": {"key": "/type/work"}, "subjects": ["Fuel cells", "Electrolytes", "Methane"], "revision": 2}
+/type/work /works/OL11270487W 2 2010-01-20T03:49:27.557108 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:21:23.507533"}, "title": "Motor gasolines, summer 1978", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T03:49:27.557108"}, "latest_revision": 2, "key": "/works/OL11270487W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4725365A"}}], "type": {"key": "/type/work"}, "subjects": ["Gasoline", "Analysis"], "revision": 2}
+/type/work /works/OL11270977W 3 2010-04-28T07:19:59.777300 {"title": "Guidelines for investigative interviewing of child victims of sexual abuse", "created": {"type": "/type/datetime", "value": "2009-12-11T04:21:23.507533"}, "covers": [5294828], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:19:59.777300"}, "latest_revision": 3, "key": "/works/OL11270977W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4725700A"}}], "subjects": ["Sexually abused children", "Child sexual abuse", "Investigation", "Interviewing in child abuse"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11271153W 2 2010-01-20T03:49:27.557108 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:21:23.507533"}, "title": "Documentation sans fronti\u00e8res?", "subject_places": ["Quebec (Province)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T03:49:27.557108"}, "latest_revision": 2, "key": "/works/OL11271153W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4725799A"}}], "type": {"key": "/type/work"}, "subjects": ["Congresses", "Information services", "Employees", "Information technology"], "revision": 2}
+/type/work /works/OL11271255W 3 2022-07-30T23:30:35.345582 {"title": "Storia della marina militare Italiana antica", "subject_places": ["Rome"], "key": "/works/OL11271255W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL496646A"}}], "type": {"key": "/type/work"}, "subjects": ["Navy"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T04:21:30.881702"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-30T23:30:35.345582"}}
+/type/work /works/OL11271751W 1 2009-12-11T04:21:30.881702 {"title": "Modelling and managing international conflicts", "created": {"type": "/type/datetime", "value": "2009-12-11T04:21:30.881702"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:21:30.881702"}, "latest_revision": 1, "key": "/works/OL11271751W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4726179A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11271806W 2 2010-12-03T15:24:44.748634 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:24:44.748634"}, "title": "Du tac au tac", "created": {"type": "/type/datetime", "value": "2009-12-11T04:21:30.881702"}, "subjects": ["Conversation and phrase books", "French language"], "latest_revision": 2, "key": "/works/OL11271806W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4726223A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11271927W 1 2009-12-11T04:21:30.881702 {"title": "The architecture of matter", "created": {"type": "/type/datetime", "value": "2009-12-11T04:21:30.881702"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:21:30.881702"}, "latest_revision": 1, "key": "/works/OL11271927W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4726305A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11272165W 1 2009-12-11T04:21:30.881702 {"title": "Communication aids for the adult aphasic", "created": {"type": "/type/datetime", "value": "2009-12-11T04:21:30.881702"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:21:30.881702"}, "latest_revision": 1, "key": "/works/OL11272165W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4726462A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11272498W 2 2010-01-20T03:54:20.563995 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:21:37.373178"}, "title": "Reinas viudas de Espa\u00f1a", "subject_places": ["Spain"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T03:54:20.563995"}, "latest_revision": 2, "key": "/works/OL11272498W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4726650A"}}], "type": {"key": "/type/work"}, "subjects": ["Biography", "Widows", "Queens"], "revision": 2}
+/type/work /works/OL11273135W 1 2009-12-11T04:21:37.373178 {"title": "How to raise a blind child", "created": {"type": "/type/datetime", "value": "2009-12-11T04:21:37.373178"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:21:37.373178"}, "latest_revision": 1, "key": "/works/OL11273135W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4727029A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11273310W 1 2009-12-11T04:21:43.952980 {"title": "La nueva fotograf\u00eda en Venezuela", "created": {"type": "/type/datetime", "value": "2009-12-11T04:21:43.952980"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:21:43.952980"}, "latest_revision": 1, "key": "/works/OL11273310W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4727131A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11273355W 3 2022-10-18T12:12:54.259783 {"title": "Principles of geomorphology", "subjects": ["Geomorphology", "Geology, structural"], "key": "/works/OL11273355W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4727150A"}}], "type": {"key": "/type/work"}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T04:21:43.952980"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T12:12:54.259783"}}
+/type/work /works/OL11273962W 1 2009-12-11T04:21:43.952980 {"title": "Wilde Blumen", "created": {"type": "/type/datetime", "value": "2009-12-11T04:21:43.952980"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:21:43.952980"}, "latest_revision": 1, "key": "/works/OL11273962W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4727524A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11274608W 3 2011-11-29T15:47:49.508824 {"last_modified": {"type": "/type/datetime", "value": "2011-11-29T15:47:49.508824"}, "latest_revision": 3, "key": "/works/OL11274608W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL6950496A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T04:21:49.883121"}, "title": "Memorials of Charles Darwin", "subject_places": ["England"], "subjects": ["Biography", "Naturalists"], "subject_people": ["Charles Darwin (1809-1882)"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11275217W 5 2022-12-28T10:26:13.221098 {"key": "/works/OL11275217W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2910781A"}}], "title": "The clergy and the Clearances", "subject_places": ["Highlands (Scotland)", "Scotland"], "subjects": ["Church history", "Church of Scotland", "Clergy", "Highlands", "History", "Influence", "Land tenure"], "subject_times": ["19th century"], "type": {"key": "/type/work"}, "covers": [12401691], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2009-12-11T04:21:54.065777"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-28T10:26:13.221098"}}
+/type/work /works/OL11275443W 2 2010-01-20T03:59:25.579997 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:21:54.065777"}, "title": "Jaguar Marks VII-X, 1, 2, XK, S and E types", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T03:59:25.579997"}, "latest_revision": 2, "key": "/works/OL11275443W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4728315A"}}], "type": {"key": "/type/work"}, "subjects": ["Jaguar automobile"], "revision": 2}
+/type/work /works/OL1127585W 4 2011-12-07T07:57:57.155146 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:32:52.705241"}, "subjects": ["World War, 1914-1918", "Colonies"], "latest_revision": 4, "key": "/works/OL1127585W", "title": "An American's opinion of-- British colonial policy", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL115223A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2011-12-07T07:57:57.155146"}, "covers": [5631143], "revision": 4}
+/type/work /works/OL11275881W 2 2021-09-16T05:43:37.385869 {"title": "No price too high", "key": "/works/OL11275881W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4728435A"}}], "type": {"key": "/type/work"}, "subjects": ["Fiction, general"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T04:21:54.065777"}, "last_modified": {"type": "/type/datetime", "value": "2021-09-16T05:43:37.385869"}}
+/type/work /works/OL11276515W 3 2022-12-17T04:25:06.630537 {"title": "Scotland", "subject_places": ["Scotland"], "key": "/works/OL11276515W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4728626A"}}], "subject_times": ["1981-"], "type": {"key": "/type/work"}, "subjects": ["Description and travel", "Scotland, description and travel"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T04:21:57.874712"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T04:25:06.630537"}}
+/type/work /works/OL11276522W 1 2009-12-11T04:21:57.874712 {"title": "Collins Spanish gem dictionary", "created": {"type": "/type/datetime", "value": "2009-12-11T04:21:57.874712"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:21:57.874712"}, "latest_revision": 1, "key": "/works/OL11276522W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4728630A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11277484W 3 2021-09-16T12:17:19.285524 {"title": "The Day the Sun Fell", "key": "/works/OL11277484W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1009724A"}}], "type": {"key": "/type/work"}, "subjects": ["Fiction, mystery & detective, general"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T04:22:01.667575"}, "last_modified": {"type": "/type/datetime", "value": "2021-09-16T12:17:19.285524"}}
+/type/work /works/OL11277542W 1 2009-12-11T04:22:01.667575 {"title": "Prayers of love and forgiveness", "created": {"type": "/type/datetime", "value": "2009-12-11T04:22:01.667575"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:22:01.667575"}, "latest_revision": 1, "key": "/works/OL11277542W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4728861A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11277646W 3 2021-01-23T21:08:45.226415 {"subtitle": "further selection of the writings of Arthur Marshall", "title": "Follow the sun", "key": "/works/OL11277646W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4728887A"}}], "type": {"key": "/type/work"}, "covers": [10570768], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T04:22:01.667575"}, "last_modified": {"type": "/type/datetime", "value": "2021-01-23T21:08:45.226415"}}
+/type/work /works/OL11277651W 4 2022-12-17T05:10:39.809165 {"title": "Life's rich pageant", "subject_places": ["Great Britain"], "key": "/works/OL11277651W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4728887A"}}], "subject_people": ["Arthur Marshall (1910-)"], "type": {"key": "/type/work"}, "subjects": ["Biography", "Broadcasters", "Radio broadcasting, great britain", "Television broadcasting, great britain"], "covers": [11671203], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T04:22:01.667575"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T05:10:39.809165"}}
+/type/work /works/OL11277958W 2 2022-09-28T17:06:39.555528 {"title": "Ninive et l'Ancien Testament", "key": "/works/OL11277958W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL135041A"}}], "type": {"key": "/type/work"}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T04:22:01.667575"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-28T17:06:39.555528"}}
+/type/work /works/OL11278258W 2 2010-01-20T04:03:52.157314 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:22:07.782447"}, "title": "Field validation of cable monitoring and rating system (CMARS) laboratory model", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T04:03:52.157314"}, "latest_revision": 2, "key": "/works/OL11278258W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4729088A"}}], "type": {"key": "/type/work"}, "subjects": ["Underground electric lines", "Operating systems (Computers)"], "revision": 2}
+/type/work /works/OL11278407W 5 2019-12-13T15:29:17.178108 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:22:07.782447"}, "subjects": ["Brothers and sisters", "Children's stories", "Fantasy", "Fiction", "Twins", "African American Teenage fiction", "Fantasy fiction", "Juvenile fiction", "Extrasensory perception", "African American children", "African American Occult fiction", "African American Fantasy fiction"], "latest_revision": 5, "description": {"type": "/type/text", "value": "Summary, An eleven-year-old and her older twin brothers struggle to understand their supersensorypowers."}, "key": "/works/OL11278407W", "title": "Justice and Her Brothers", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL20414A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2019-12-13T15:29:17.178108"}, "revision": 5}
+/type/work /works/OL1127889W 1 2009-12-09T20:32:59.042731 {"title": "The lost galleon", "created": {"type": "/type/datetime", "value": "2009-12-09T20:32:59.042731"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T20:32:59.042731"}, "latest_revision": 1, "key": "/works/OL1127889W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL115231A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11278929W 2 2010-01-20T04:03:52.157314 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:22:07.782447"}, "title": "The police and the Chinese community", "subject_places": ["Ontario", "Toronto", "Metropolitan Toronto"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T04:03:52.157314"}, "latest_revision": 2, "key": "/works/OL11278929W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4729405A"}}], "type": {"key": "/type/work"}, "subjects": ["Attitudes", "Chinese", "Police", "Services for"], "revision": 2}
+/type/work /works/OL11278982W 3 2010-11-22T07:40:09.322949 {"last_modified": {"type": "/type/datetime", "value": "2010-11-22T07:40:09.322949"}, "title": "Phase I of the automated array assembly task of the low cost silicon solar array project", "created": {"type": "/type/datetime", "value": "2009-12-11T04:22:07.782447"}, "subjects": ["Silicon", "Solar batteries"], "latest_revision": 3, "key": "/works/OL11278982W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4729442A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1127900W 5 2020-08-13T12:38:28.126379 {"covers": [5655351], "last_modified": {"type": "/type/datetime", "value": "2020-08-13T12:38:28.126379"}, "latest_revision": 5, "key": "/works/OL1127900W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL115231A"}}], "created": {"type": "/type/datetime", "value": "2009-12-09T20:32:59.042731"}, "title": "Poems and stories", "subject_places": ["West (U.S.)"], "subjects": ["Western stories", "Poetry"], "type": {"key": "/type/work"}, "revision": 5}
+/type/work /works/OL11279055W 2 2010-01-20T04:03:52.157314 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:22:07.782447"}, "title": "Study program to develop and evaluate die and container materials for the growth of silicon ribbons", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T04:03:52.157314"}, "latest_revision": 2, "key": "/works/OL11279055W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4729497A"}}], "type": {"key": "/type/work"}, "subjects": ["Linings", "Silicon compounds", "Die casting", "Tanks"], "revision": 2}
+/type/work /works/OL11279169W 2 2010-01-20T04:07:59.317661 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:22:07.782447"}, "title": "Wesen und Bedeutung der Zahnmedizin", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T04:07:59.317661"}, "latest_revision": 2, "key": "/works/OL11279169W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4729588A"}}], "type": {"key": "/type/work"}, "subjects": ["Dentistry", "History"], "revision": 2}
+/type/work /works/OL11279173W 2 2010-01-20T04:07:59.317661 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:22:07.782447"}, "title": "Low NOx heavy fuel combustor concept program", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T04:07:59.317661"}, "latest_revision": 2, "key": "/works/OL11279173W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4729591A"}}], "type": {"key": "/type/work"}, "subjects": ["Gas-turbines", "Combustion chambers", "Nitrogen oxides"], "revision": 2}
+/type/work /works/OL11279422W 2 2010-01-20T04:07:59.317661 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:22:15.734524"}, "title": "Preliminary design services", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T04:07:59.317661"}, "latest_revision": 2, "key": "/works/OL11279422W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4729741A"}}], "type": {"key": "/type/work"}, "subjects": ["Coal liquefaction", "Coal preparation plants", "Design and construction"], "revision": 2}
+/type/work /works/OL11279459W 2 2010-01-20T04:07:59.317661 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:22:15.734524"}, "title": "Run reports, C0\u001bb2\u001bs acceptor process gasification pilot plant", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T04:07:59.317661"}, "latest_revision": 2, "key": "/works/OL11279459W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4729766A"}}], "type": {"key": "/type/work"}, "subjects": ["Carbon dioxide", "Coal gasification"], "revision": 2}
+/type/work /works/OL11279558W 2 2010-01-20T04:07:59.317661 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:22:15.734524"}, "title": "Sulfur resistant methanation catalyst", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T04:07:59.317661"}, "latest_revision": 2, "key": "/works/OL11279558W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4729831A"}}], "type": {"key": "/type/work"}, "subjects": ["Methanation", "Catalysts", "Sulfur content", "Coal"], "revision": 2}
+/type/work /works/OL11279685W 2 2010-01-20T04:07:59.317661 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:22:15.734524"}, "title": "Development of the steam-iron process for hydrogen production", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T04:07:59.317661"}, "latest_revision": 2, "key": "/works/OL11279685W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4729937A"}}], "type": {"key": "/type/work"}, "subjects": ["Synthesis gas", "Hydrogen content", "Hydrogen", "Iron"], "revision": 2}
+/type/work /works/OL11279705W 2 2010-01-20T04:07:59.317661 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:22:15.734524"}, "title": "Conceptual design of an atmospheric fluidized-bed combustion electric power generating plant", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T04:07:59.317661"}, "latest_revision": 2, "key": "/works/OL11279705W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4729950A"}}], "type": {"key": "/type/work"}, "subjects": ["Electric power-plants"], "revision": 2}
+/type/work /works/OL11279879W 3 2010-12-03T13:14:19.036117 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:22:15.734524"}, "subject_places": ["United States"], "subjects": ["Bibliography", "Costs", "Economic aspects", "Economic aspects of Mineral industries", "Mineral industries"], "latest_revision": 3, "key": "/works/OL11279879W", "title": "Bibliography of investment costs, operating costs, and related economic information for the mineral industries, January-December 1977", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4730092A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:14:19.036117"}, "revision": 3}
+/type/work /works/OL11279966W 3 2010-11-04T00:07:41.859876 {"last_modified": {"type": "/type/datetime", "value": "2010-11-04T00:07:41.859876"}, "title": "Gas turbine HTGR program", "created": {"type": "/type/datetime", "value": "2009-12-11T04:22:15.734524"}, "subjects": ["Gas cooled reactors"], "latest_revision": 3, "key": "/works/OL11279966W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4824795A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11280154W 2 2010-01-20T04:07:59.317661 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:22:15.734524"}, "title": "Basic process data on the potential for low level waste heat recovery in the petroleum refining and selected chemical industries of the West South Central United States", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T04:07:59.317661"}, "latest_revision": 2, "key": "/works/OL11280154W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4730292A"}}], "type": {"key": "/type/work"}, "subjects": ["Chemical industry", "Petroleum", "Heat recovery", "Refining"], "revision": 2}
+/type/work /works/OL11280322W 2 2010-01-20T04:11:53.858497 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:22:24.031782"}, "title": "DILATE--a 2-D structural program for the dilation response of hexagonal ducts", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T04:11:53.858497"}, "latest_revision": 2, "key": "/works/OL11280322W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4730421A"}}], "type": {"key": "/type/work"}, "subjects": ["Computer programs", "Expansion (Heat)", "Nuclear reactors", "Refueling", "Stress-strain curves"], "revision": 2}
+/type/work /works/OL11281073W 3 2010-12-03T13:14:54.083190 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:22:24.031782"}, "subject_places": ["France (Nord) Saint-Amand", "Saint-Amand, France (Nord)"], "subjects": ["Economic conditions"], "latest_revision": 3, "key": "/works/OL11281073W", "title": "La croissance \u00e9conomique du pays de Saint-Amand (Nord) 1668-1914", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4731009A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:14:54.083190"}, "revision": 3}
+/type/work /works/OL11281112W 1 2009-12-11T04:22:24.031782 {"title": "Collagenase activity in sulcal fluid of patients with localized juvenile periodontitis", "created": {"type": "/type/datetime", "value": "2009-12-11T04:22:24.031782"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:22:24.031782"}, "latest_revision": 1, "key": "/works/OL11281112W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4731042A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11281181W 2 2010-01-20T04:11:53.858497 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:22:24.031782"}, "title": "Analysis and computer programs for eddy current coils concentric with multiple cylindrical conductors", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T04:11:53.858497"}, "latest_revision": 2, "key": "/works/OL11281181W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4731089A"}}], "type": {"key": "/type/work"}, "subjects": ["Eddy currents (Electric)", "Data processing", "Electromagnetic induction", "Electric conductors", "Electric coils"], "revision": 2}
+/type/work /works/OL11281933W 2 2010-01-20T04:15:55.227427 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:22:32.670022"}, "title": "Analysis of the impact of retrievable spent fuel storage", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T04:15:55.227427"}, "latest_revision": 2, "key": "/works/OL11281933W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4731689A"}}], "type": {"key": "/type/work"}, "subjects": ["Reactor fuel reprocessing", "Spent reactor fuels", "Storage", "Liquid metal fast breeder reactors"], "revision": 2}
+/type/work /works/OL11281961W 2 2010-01-20T04:15:55.227427 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:22:32.670022"}, "title": "An assessment of U.S. domestic capacity for producing reactor-grade thorium dioxide and controlling associated wastes for effluents", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T04:15:55.227427"}, "latest_revision": 2, "key": "/works/OL11281961W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4731717A"}}], "type": {"key": "/type/work"}, "subjects": ["Nuclear fuels", "Nuclear industry", "Thorium"], "revision": 2}
+/type/work /works/OL11282591W 2 2010-01-20T04:19:43.076688 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:22:41.486473"}, "title": "Etching study for the MC2980 glass ceramic preform", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T04:19:43.076688"}, "latest_revision": 2, "key": "/works/OL11282591W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4732212A"}}], "type": {"key": "/type/work"}, "subjects": ["Ceramics"], "revision": 2}
+/type/work /works/OL11282894W 2 2010-01-20T04:19:43.076688 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:22:41.486473"}, "title": "An environment, safety, and health assurance program standard", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T04:19:43.076688"}, "latest_revision": 2, "key": "/works/OL11282894W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4732480A"}}], "type": {"key": "/type/work"}, "subjects": ["Safety regulations", "Environmental health", "Environmental protection"], "revision": 2}
+/type/work /works/OL1128343W 3 2010-04-28T07:19:59.777300 {"title": "Scenes Of The Olden Time", "created": {"type": "/type/datetime", "value": "2009-12-09T20:32:59.042731"}, "covers": [2510359], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:19:59.777300"}, "latest_revision": 3, "key": "/works/OL1128343W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL115252A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1128381W 6 2020-08-11T07:02:42.205556 {"covers": [5901731], "last_modified": {"type": "/type/datetime", "value": "2020-08-11T07:02:42.205556"}, "latest_revision": 6, "key": "/works/OL1128381W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL115253A"}}], "created": {"type": "/type/datetime", "value": "2009-12-09T20:32:59.042731"}, "title": "Stray studies from England and Italy", "subject_places": ["Italy"], "subjects": ["Description and travel", "History"], "type": {"key": "/type/work"}, "revision": 6}
+/type/work /works/OL11283904W 2 2010-01-20T04:23:54.644820 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:22:50.130280"}, "title": "CONTx", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T04:23:54.644820"}, "latest_revision": 2, "key": "/works/OL11283904W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4733223A"}}], "type": {"key": "/type/work"}, "subjects": ["Operating systems (Computers)"], "revision": 2}
+/type/work /works/OL11283923W 3 2010-10-17T07:48:58.050492 {"last_modified": {"type": "/type/datetime", "value": "2010-10-17T07:48:58.050492"}, "title": "LLL gas stimulation program", "created": {"type": "/type/datetime", "value": "2009-12-11T04:22:50.130280"}, "subjects": ["Gas wells", "Natural gas"], "latest_revision": 3, "key": "/works/OL11283923W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4823591A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11283998W 2 2010-01-20T04:23:54.644820 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:22:50.130280"}, "title": "Transient electromagnetic measurements of a brass ship model", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T04:23:54.644820"}, "latest_revision": 2, "key": "/works/OL11283998W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4733321A"}}], "type": {"key": "/type/work"}, "subjects": ["Transients (Electricity)", "Electromagnetic measurements"], "revision": 2}
+/type/work /works/OL11284201W 2 2010-01-20T04:23:54.644820 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:22:50.130280"}, "title": "ISC events from 1964 to 1976 at and near the nuclear testing ground in eastern Kazakhstan", "subject_places": ["Kazakh S.S.R."], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T04:23:54.644820"}, "latest_revision": 2, "key": "/works/OL11284201W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4733494A"}}], "type": {"key": "/type/work"}, "subjects": ["Nuclear explosions", "Seismology", "Observations"], "revision": 2}
+/type/work /works/OL11284237W 3 2012-07-25T23:15:25.069993 {"last_modified": {"type": "/type/datetime", "value": "2012-07-25T23:15:25.069993"}, "title": "Alcohol fuels program plan", "created": {"type": "/type/datetime", "value": "2009-12-11T04:22:56.703339"}, "subjects": ["Alcohol as fuel"], "latest_revision": 3, "key": "/works/OL11284237W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4733518A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11284550W 1 2009-12-11T04:22:56.703339 {"title": "The lighter side", "created": {"type": "/type/datetime", "value": "2009-12-11T04:22:56.703339"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:22:56.703339"}, "latest_revision": 1, "key": "/works/OL11284550W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4733706A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11284796W 2 2010-12-03T21:41:28.202717 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T21:41:28.202717"}, "title": "The basis of modern physics", "created": {"type": "/type/datetime", "value": "2009-12-11T04:22:56.703339"}, "subjects": ["Physics"], "latest_revision": 2, "key": "/works/OL11284796W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4733893A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11284943W 1 2009-12-11T04:22:56.703339 {"title": "Rajul majn\u016bn l\u0101 yu\u1e25ibbun\u012b", "created": {"type": "/type/datetime", "value": "2009-12-11T04:22:56.703339"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:22:56.703339"}, "latest_revision": 1, "key": "/works/OL11284943W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4733977A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11285288W 2 2010-01-20T04:28:11.238974 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:23:03.776563"}, "title": "Labor and career education ideas for action", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T04:28:11.238974"}, "latest_revision": 2, "key": "/works/OL11285288W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4734145A"}}], "type": {"key": "/type/work"}, "subjects": ["Labor unions and youth", "Career education", "Vocational guidance"], "revision": 2}
+/type/work /works/OL11285317W 2 2010-01-20T04:28:11.238974 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:23:03.776563"}, "title": "Evaluation of small modular incinerators in municipal plants", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T04:28:11.238974"}, "latest_revision": 2, "key": "/works/OL11285317W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4734169A"}}], "type": {"key": "/type/work"}, "subjects": ["Incinerators", "Municipal corporations"], "revision": 2}
+/type/work /works/OL11285422W 2 2010-01-20T04:28:11.238974 {"title": "The outer limits of Edgar Cayce's power", "created": {"type": "/type/datetime", "value": "2009-12-11T04:23:03.776563"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-20T04:28:11.238974"}, "latest_revision": 2, "key": "/works/OL11285422W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4734251A"}}], "subject_people": ["Edgar Cayce"], "type": {"key": "/type/work"}, "subjects": ["Extrasensory perception"], "revision": 2}
+/type/work /works/OL11285583W 2 2022-02-28T17:14:27.698178 {"title": "Among women", "key": "/works/OL11285583W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4734304A"}}], "type": {"key": "/type/work"}, "subjects": ["Women"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T04:23:03.776563"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-28T17:14:27.698178"}}
+/type/work /works/OL11285790W 2 2010-01-20T04:28:11.238974 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:23:03.776563"}, "title": "Lehrbuch des Unterrichts", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T04:28:11.238974"}, "latest_revision": 2, "key": "/works/OL11285790W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4734439A"}}], "type": {"key": "/type/work"}, "subjects": ["Teaching"], "revision": 2}
+/type/work /works/OL11285799W 3 2020-11-16T18:02:13.043975 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:23:03.776563"}, "subject_places": ["Saudi Arabia"], "subjects": ["Economic conditions"], "latest_revision": 3, "key": "/works/OL11285799W", "title": "al- Id\u0101rah al-iqti\u1e63\u0101d\u012byah lil-tharwah al-naqd\u012byah bi-al-Mamlakah al-\u02bbArab\u012byah al-Sa\u02bb\u016bd\u012byah", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4734444A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-11-16T18:02:13.043975"}, "revision": 3}
+/type/work /works/OL11286275W 2 2010-01-20T04:32:19.498204 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:23:11.323166"}, "title": "Effects of cyanophage SAM-1 upon Microcystis aeruginosa", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T04:32:19.498204"}, "latest_revision": 2, "key": "/works/OL11286275W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4734786A"}}], "type": {"key": "/type/work"}, "subjects": ["Cyanobacteria", "Plant viruses", "Host-virus relationships", "Algae", "Control"], "revision": 2}
+/type/work /works/OL11286468W 3 2010-12-03T20:26:27.781729 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T20:26:27.781729"}, "title": "al- Na\u1e93ar\u012byah al-siy\u0101s\u012byah al-Isl\u0101m\u012byah f\u012b \u1e25uq\u016bq al-ins\u0101n al-shar\u02bb\u012byah", "created": {"type": "/type/datetime", "value": "2009-12-11T04:23:11.323166"}, "subjects": ["Civil rights", "Civil rights (Islamic law)", "Islam", "Islam and state", "Miscellanea", "Religious aspects", "Religious aspects of Civil rights"], "latest_revision": 3, "key": "/works/OL11286468W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4734889A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11286616W 3 2010-04-27T20:56:12.141158 {"subtitle": "j\u0101yig\u0101h-i zan dar \u012ar\u0101n-i b\u0101st\u0101n", "title": "Zan bih zann-i t\u0101r\u012bkh", "created": {"type": "/type/datetime", "value": "2009-12-11T04:23:11.323166"}, "subject_places": ["Iran"], "last_modified": {"type": "/type/datetime", "value": "2010-04-27T20:56:12.141158"}, "latest_revision": 3, "key": "/works/OL11286616W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4734954A"}}], "type": {"key": "/type/work"}, "subjects": ["Women", "History"], "revision": 3}
+/type/work /works/OL11286626W 2 2010-01-20T04:32:19.498204 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:23:11.323166"}, "title": "The public benefits of cleaned water", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T04:32:19.498204"}, "latest_revision": 2, "key": "/works/OL11286626W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4734963A"}}], "type": {"key": "/type/work"}, "subjects": ["Watershed management", "Water quality", "Standards"], "revision": 2}
+/type/work /works/OL11286738W 2 2010-01-20T04:32:19.498204 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:23:11.323166"}, "title": "Oil and hazardous material contingency plan", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T04:32:19.498204"}, "latest_revision": 2, "key": "/works/OL11286738W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4735037A"}}], "type": {"key": "/type/work"}, "subjects": ["Water", "Pollution", "Hazardous substances", "Oil pollution of rivers, harbors"], "revision": 2}
+/type/work /works/OL1128713W 2 2010-01-20T04:32:19.498204 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:32:59.042731"}, "title": "Bantams", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T04:32:19.498204"}, "latest_revision": 2, "key": "/works/OL1128713W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL115276A"}}], "type": {"key": "/type/work"}, "subjects": ["Bantam chickens"], "revision": 2}
+/type/work /works/OL11288124W 5 2012-11-28T11:20:29.537390 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:23:19.739553"}, "subject_places": ["United States"], "subjects": ["Environmental aspects", "Environmental aspects of Hazardous wastes", "Hazardous wastes", "Waste disposal in the ground"], "latest_revision": 5, "key": "/works/OL11288124W", "title": "State-of-the-art report", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4736122A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-11-28T11:20:29.537390"}, "revision": 5}
+/type/work /works/OL1128821W 4 2013-08-15T09:58:55.042153 {"last_modified": {"type": "/type/datetime", "value": "2013-08-15T09:58:55.042153"}, "title": "Substance of the speech of the Right Honourable Charles James Fox on Monday, November 1, 1783 upon a motion for the commitment of the bill \"for vesting the affairs of the East-India Company in the hands of certain commissioners for the benefit of the proprietors and of the public.\"", "created": {"type": "/type/datetime", "value": "2009-12-09T20:32:59.042731"}, "subjects": ["Early works to 1800", "East India Company"], "latest_revision": 4, "key": "/works/OL1128821W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2073233A"}}], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL11288336W 2 2010-01-20T04:36:20.445069 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:23:27.744418"}, "title": "Control of particulate emissions from atmospheric fluidized-bed combustion with fabric filters and electrostatic precipitators", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T04:36:20.445069"}, "latest_revision": 2, "key": "/works/OL11288336W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4736271A"}}], "type": {"key": "/type/work"}, "subjects": ["Filters and filtration", "Electrostatic precipitation", "Fluidized-bed furnaces", "Filter cloth"], "revision": 2}
+/type/work /works/OL11288657W 2 2010-01-20T04:40:38.101113 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:23:27.744418"}, "title": "Evaluation of four urban-scale photochemical air quality simulation models", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T04:40:38.101113"}, "latest_revision": 2, "key": "/works/OL11288657W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4736528A"}}], "type": {"key": "/type/work"}, "subjects": ["Air quality", "Air quality monitoring stations", "Measurement", "Photochemical smog", "Pollution", "Air"], "revision": 2}
+/type/work /works/OL11288673W 3 2010-12-03T13:15:27.775710 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:23:27.744418"}, "subject_places": ["United States"], "subjects": ["Arsenic", "Copper-arsenic alloys", "Environmental aspects", "Environmental aspects of Arsenic", "Fly ash"], "latest_revision": 3, "key": "/works/OL11288673W", "title": "Investigation of new techniques for control of smelter arsenic bearing wastes", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4736541A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:15:27.775710"}, "revision": 3}
+/type/work /works/OL11289106W 2 2010-01-20T04:40:38.101113 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:23:27.744418"}, "title": "Polymers, plastics, fibres, rubbers and silicones", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T04:40:38.101113"}, "latest_revision": 2, "key": "/works/OL11289106W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4736820A"}}], "type": {"key": "/type/work"}, "subjects": ["Polymers and polymerization"], "revision": 2}
+/type/work /works/OL11289384W 2 2010-01-20T04:40:38.101113 {"title": "The pilgrim's progress and traditions in Puritan meditation", "created": {"type": "/type/datetime", "value": "2009-12-11T04:23:34.756430"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-20T04:40:38.101113"}, "latest_revision": 2, "key": "/works/OL11289384W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4736969A"}}], "subject_people": ["John Bunyan (1628-1688)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11289578W 3 2012-06-21T19:07:43.070263 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:23:34.756430"}, "subject_places": ["Soviet Union"], "subjects": ["Breeder reactors", "Nuclear power plants"], "latest_revision": 3, "key": "/works/OL11289578W", "title": "Soviet power reactors--1974", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4618055A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-06-21T19:07:43.070263"}, "revision": 3}
+/type/work /works/OL11289586W 2 2010-01-20T04:40:38.101113 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:23:34.756430"}, "title": "Tenth summary report", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T04:40:38.101113"}, "latest_revision": 2, "key": "/works/OL11289586W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4737078A"}}], "type": {"key": "/type/work"}, "subjects": ["Automobiles", "Congresses", "Motors", "Fuel consumption"], "revision": 2}
+/type/work /works/OL11289940W 2 2010-01-20T04:40:38.101113 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:23:34.756430"}, "title": "Transcript of third public hearing, Boston, Massachusetts, August 26-29, 1974", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T04:40:38.101113"}, "latest_revision": 2, "key": "/works/OL11289940W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4737333A"}}], "type": {"key": "/type/work"}, "subjects": ["Energy policy"], "revision": 2}
+/type/work /works/OL11290178W 2 2010-01-20T04:44:40.392680 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:23:34.756430"}, "title": "The semiconductor industry", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T04:44:40.392680"}, "latest_revision": 2, "key": "/works/OL11290178W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4737492A"}}], "type": {"key": "/type/work"}, "subjects": ["Electronic industries", "Semiconductors"], "revision": 2}
+/type/work /works/OL11290378W 3 2010-12-03T22:24:23.441702 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:23:40.811935"}, "subject_places": ["Dijon", "France"], "subjects": ["Catalogs", "Drawing, French", "French Drawing"], "latest_revision": 3, "key": "/works/OL11290378W", "title": "Dessins fran\u00e7ais, XVIIe et XVIIIe si\u00e8cles, des collections du Mus\u00e9e de Dijon", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4737607A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T22:24:23.441702"}, "revision": 3}
+/type/work /works/OL11291062W 1 2009-12-11T04:23:40.811935 {"title": "Altspanischer Bluteinflusz in der europ\u00e4ischen, besonders in der deutschen Pferdezucht", "created": {"type": "/type/datetime", "value": "2009-12-11T04:23:40.811935"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:23:40.811935"}, "latest_revision": 1, "key": "/works/OL11291062W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4737921A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1129123W 2 2010-01-20T04:44:40.392680 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:33:06.846937"}, "title": "Discours aux sourds", "subject_places": ["Europe"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T04:44:40.392680"}, "latest_revision": 2, "key": "/works/OL1129123W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL115322A"}}], "type": {"key": "/type/work"}, "subjects": ["Politics and government"], "revision": 2}
+/type/work /works/OL11291372W 1 2009-12-11T04:23:46.053938 {"title": "A protege for Nurse Judy", "created": {"type": "/type/datetime", "value": "2009-12-11T04:23:46.053938"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:23:46.053938"}, "latest_revision": 1, "key": "/works/OL11291372W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4738055A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11291464W 2 2010-01-20T04:44:40.392680 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:23:46.053938"}, "title": "Shakh\u1e63\u012byat al-j\u0101ni\u1e25", "subject_places": ["Morocco"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T04:44:40.392680"}, "latest_revision": 2, "key": "/works/OL11291464W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4738089A"}}], "type": {"key": "/type/work"}, "subjects": ["Juvenile delinquents", "Juvenile delinquency", "Psychology"], "revision": 2}
+/type/work /works/OL11291694W 3 2010-12-03T13:15:50.233271 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:23:46.053938"}, "subject_places": ["Russia"], "subjects": ["Agriculture", "Economic aspects", "Economic aspects of Agriculture"], "latest_revision": 3, "key": "/works/OL11291694W", "title": "Spet\ufe20s\ufe21ializat\ufe20s\ufe21ii\ufe20a\ufe21 i kont\ufe20s\ufe21entrat\ufe20s\ufe21ii\ufe20a\ufe21 proizvodstva v kolkhozakh i sovkhozakh", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4738198A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:15:50.233271"}, "revision": 3}
+/type/work /works/OL11291746W 2 2010-01-20T04:48:41.723072 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:23:46.053938"}, "title": "\u00c9tudes chimiques, physiologiques et m\u00e9dicales", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T04:48:41.723072"}, "latest_revision": 2, "key": "/works/OL11291746W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4738233A"}}], "type": {"key": "/type/work"}, "subjects": ["Proteins"], "revision": 2}
+/type/work /works/OL11291791W 2 2010-01-20T04:48:41.723072 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:23:46.053938"}, "title": "Diabetes and atherosclerosis", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T04:48:41.723072"}, "latest_revision": 2, "key": "/works/OL11291791W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4738253A"}}], "type": {"key": "/type/work"}, "subjects": ["Congresses", "Atherosclerosis", "Etiology", "Complications", "Diabetes"], "revision": 2}
+/type/work /works/OL11291824W 1 2009-12-11T04:23:46.053938 {"title": "L' univers de l'Encyclop\u00e9die", "created": {"type": "/type/datetime", "value": "2009-12-11T04:23:46.053938"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:23:46.053938"}, "latest_revision": 1, "key": "/works/OL11291824W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4738266A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11292061W 1 2009-12-11T04:23:46.053938 {"title": "Dragon Road", "created": {"type": "/type/datetime", "value": "2009-12-11T04:23:46.053938"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:23:46.053938"}, "latest_revision": 1, "key": "/works/OL11292061W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4738370A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11292546W 2 2010-01-20T04:48:41.723072 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:23:52.405935"}, "title": "Information and referral centers", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T04:48:41.723072"}, "latest_revision": 2, "key": "/works/OL11292546W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4738660A"}}], "type": {"key": "/type/work"}, "subjects": ["Old age assistance", "Older people"], "revision": 2}
+/type/work /works/OL11292776W 3 2012-05-17T17:10:09.738551 {"last_modified": {"type": "/type/datetime", "value": "2012-05-17T17:10:09.738551"}, "title": "1962 study of recipients of aid to the blind", "created": {"type": "/type/datetime", "value": "2009-12-11T04:23:52.405935"}, "subjects": ["Blind", "Pensions"], "latest_revision": 3, "key": "/works/OL11292776W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL693715A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11292952W 3 2022-11-17T12:12:35.560979 {"title": "You two", "key": "/works/OL11292952W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL239902A"}}], "type": {"key": "/type/work"}, "subjects": ["Interpersonal relations", "Poetry (poetic works by one author)"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T04:23:52.405935"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T12:12:35.560979"}}
+/type/work /works/OL11293030W 3 2010-04-28T07:19:59.777300 {"title": "A memoir of Sir Thomas More", "created": {"type": "/type/datetime", "value": "2009-12-11T04:23:52.405935"}, "covers": [6122729], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:19:59.777300"}, "latest_revision": 3, "key": "/works/OL11293030W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4738885A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11293496W 2 2010-01-20T04:52:47.426527 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:23:58.441642"}, "title": "The U.S. Public Health Service, region V, Department of Health and Human Services Conference on Women's Health Issues, January 25, 1984", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T04:52:47.426527"}, "latest_revision": 2, "key": "/works/OL11293496W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4739164A"}}], "type": {"key": "/type/work"}, "subjects": ["Congresses", "Women's health services"], "revision": 2}
+/type/work /works/OL11293579W 3 2010-12-03T13:17:42.163120 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:23:58.441642"}, "subject_places": ["United States"], "subjects": ["Grants-in-aid", "Medicine", "National Institutes of Health (U.S.)", "Professional standards review organizations (Medicine)", "Research", "Research grants"], "latest_revision": 3, "key": "/works/OL11293579W", "title": "Grants peer review", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4739223A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:17:42.163120"}, "revision": 3}
+/type/work /works/OL11294264W 2 2010-01-20T04:56:43.562693 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:24:05.297290"}, "title": "Ispol'zovanie zakona stoimoimosti v kolkhoznom proizvodstve", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T04:56:43.562693"}, "latest_revision": 2, "key": "/works/OL11294264W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4739600A"}}], "type": {"key": "/type/work"}, "subjects": ["Costs", "Agriculture", "Russia", "Value", "Collective farms"], "revision": 2}
+/type/work /works/OL11294370W 2 2010-01-20T04:56:43.562693 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:24:05.297290"}, "title": "The phonology and morphology of Jaunsari", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T04:56:43.562693"}, "latest_revision": 2, "key": "/works/OL11294370W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4739637A"}}], "type": {"key": "/type/work"}, "subjects": ["Jaunsari dialect", "Phonology", "Morphology"], "revision": 2}
+/type/work /works/OL11295678W 2 2010-01-20T05:01:17.844606 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:24:10.822724"}, "title": "S\u014dg\u014d Nihon minzoku shis\u014d shi", "subject_places": ["Japan"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T05:01:17.844606"}, "latest_revision": 2, "key": "/works/OL11295678W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4740332A"}}], "type": {"key": "/type/work"}, "subjects": ["History", "Intellectual life", "Civilization"], "revision": 2}
+/type/work /works/OL11295704W 2 2022-05-25T02:10:21.436726 {"title": "The truffle hunter", "key": "/works/OL11295704W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4740343A"}}], "type": {"key": "/type/work"}, "subjects": ["Children's fiction", "Pigs, fiction"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T04:24:10.822724"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T02:10:21.436726"}}
+/type/work /works/OL11295779W 3 2010-12-03T13:16:51.505373 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:16:51.505373"}, "latest_revision": 3, "key": "/works/OL11295779W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4740366A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T04:24:10.822724"}, "title": "\u00c9luard", "subjects": ["Biography", "French Poets", "Poets, French"], "subject_people": ["Paul Eluard (1895-1952)"], "subject_times": ["20th century"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11296370W 1 2009-12-11T04:24:18.220022 {"title": "The machine monster", "created": {"type": "/type/datetime", "value": "2009-12-11T04:24:18.220022"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:24:18.220022"}, "latest_revision": 1, "key": "/works/OL11296370W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4740706A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11296745W 2 2012-05-18T21:51:38.014617 {"title": "The structure of personal income taxation and income support", "created": {"type": "/type/datetime", "value": "2009-12-11T04:24:18.220022"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-18T21:51:38.014617"}, "latest_revision": 2, "key": "/works/OL11296745W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4740861A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11296768W 2 2012-05-18T13:45:25.848890 {"title": "The tariff structures andpricing policies of electricity and gas", "created": {"type": "/type/datetime", "value": "2009-12-11T04:24:18.220022"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-18T13:45:25.848890"}, "latest_revision": 2, "key": "/works/OL11296768W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4740933A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL1129727W 2 2010-01-20T05:05:05.897726 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:33:06.846937"}, "title": "The ghost dance of 1870 in south-central California", "subject_places": ["North America", "California"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T05:05:05.897726"}, "latest_revision": 2, "key": "/works/OL1129727W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL115362A"}}], "type": {"key": "/type/work"}, "subjects": ["Indian dance", "Indians of North America", "Ghost dance"], "revision": 2}
+/type/work /works/OL11297548W 2 2010-01-20T05:05:05.897726 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:24:25.332557"}, "title": "U.S. housing developments for the elderly or handicapped", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T05:05:05.897726"}, "latest_revision": 2, "key": "/works/OL11297548W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4741502A"}}], "type": {"key": "/type/work"}, "subjects": ["Housing", "People with disabilities", "Dwellings", "Older people"], "revision": 2}
+/type/work /works/OL11297841W 1 2009-12-11T04:24:25.332557 {"title": "Po chistym chetvergam", "created": {"type": "/type/datetime", "value": "2009-12-11T04:24:25.332557"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:24:25.332557"}, "latest_revision": 1, "key": "/works/OL11297841W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4741716A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11298555W 3 2022-07-17T11:10:44.619189 {"title": "Resolution of the Twenty-sixth World Health Assembly amending articles 34 and 55 of the constitution of the World Health Organization adopted on 22 May, 1973, Geneva, 24 May 1973 ..", "subjects": ["World Health Organization", "World health organization"], "key": "/works/OL11298555W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4742206A"}}], "type": {"key": "/type/work"}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T04:24:32.650224"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T11:10:44.619189"}}
+/type/work /works/OL11298571W 2 2010-01-20T05:09:12.106512 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:24:32.650224"}, "title": "Comparison of five types of low-energy scrubbers for dust control", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T05:09:12.106512"}, "latest_revision": 2, "key": "/works/OL11298571W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4742222A"}}], "type": {"key": "/type/work"}, "subjects": ["Coal mines and mining", "Mechanical engineering", "Dust control"], "revision": 2}
+/type/work /works/OL11298618W 1 2009-12-11T04:24:32.650224 {"title": "Ancient monuments of Northern Ireland", "created": {"type": "/type/datetime", "value": "2009-12-11T04:24:32.650224"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:24:32.650224"}, "latest_revision": 1, "key": "/works/OL11298618W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4742263A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11298806W 2 2010-01-20T05:09:12.106512 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:24:32.650224"}, "title": "Gypsum", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T05:09:12.106512"}, "latest_revision": 2, "key": "/works/OL11298806W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4742395A"}}], "type": {"key": "/type/work"}, "subjects": ["Gypsum"], "revision": 2}
+/type/work /works/OL1129910W 2 2011-03-30T00:17:44.198393 {"title": "Phaeton; or, Loose Thoughts for Loose Thinkers (The Works of Charles Kingsley (28 Volumes))", "created": {"type": "/type/datetime", "value": "2009-12-09T20:33:06.846937"}, "last_modified": {"type": "/type/datetime", "value": "2011-03-30T00:17:44.198393"}, "latest_revision": 2, "key": "/works/OL1129910W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5989856A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11299210W 2 2010-01-20T05:09:12.106512 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:24:32.650224"}, "title": "Cultural resources management guidelines", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T05:09:12.106512"}, "latest_revision": 2, "key": "/works/OL11299210W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4742623A"}}], "type": {"key": "/type/work"}, "subjects": ["Cultural property", "National parks and reserves", "Protection", "Management", "Handbooks, manuals"], "revision": 2}
+/type/work /works/OL11299585W 2 2010-01-20T05:09:12.106512 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:24:39.792805"}, "title": "Manitoba and the Canadian North-West", "subject_places": ["Canadian Northwest", "Manitoba", "Northwest Territories"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T05:09:12.106512"}, "latest_revision": 2, "key": "/works/OL11299585W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4742834A"}}], "type": {"key": "/type/work"}, "subjects": ["Description and travel", "Economic conditions", "History"], "revision": 2}
+/type/work /works/OL11299880W 3 2022-07-17T11:43:45.258526 {"title": "Report of the council for the year (ended 31st March)", "subjects": ["Great Britain", "Great Britain. Science Research Council", "Research, great britain", "Science and state, great britain"], "key": "/works/OL11299880W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4743047A"}}], "type": {"key": "/type/work"}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T04:24:39.792805"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T11:43:45.258526"}}
+/type/work /works/OL11300087W 1 2009-12-11T04:24:39.792805 {"title": "A common funding formula for grant-maintained schools", "created": {"type": "/type/datetime", "value": "2009-12-11T04:24:39.792805"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:24:39.792805"}, "latest_revision": 1, "key": "/works/OL11300087W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4743181A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11300090W 1 2009-12-11T04:24:39.792805 {"title": "The Department for Education's expenditure plans 1995-96 to 1997-98", "created": {"type": "/type/datetime", "value": "2009-12-11T04:24:39.792805"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:24:39.792805"}, "latest_revision": 1, "key": "/works/OL11300090W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4743181A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11300130W 3 2019-12-18T13:53:17.369568 {"last_modified": {"type": "/type/datetime", "value": "2019-12-18T13:53:17.369568"}, "title": "Genera crustaceorum et insectorum secundum ordinem naturalem in familias disposita, iconibus exemplisque plurimis explicata", "created": {"type": "/type/datetime", "value": "2009-12-11T04:24:39.792805"}, "subjects": ["Arachnida", "Spiders"], "latest_revision": 3, "key": "/works/OL11300130W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4484042A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11300188W 2 2010-01-20T05:13:55.909960 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:24:39.792805"}, "title": "Automated fingerprint identification", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T05:13:55.909960"}, "latest_revision": 2, "key": "/works/OL11300188W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4743249A"}}], "type": {"key": "/type/work"}, "subjects": ["Fingerprints", "Identification", "Crime"], "revision": 2}
+/type/work /works/OL11300444W 2 2012-05-18T14:07:58.728722 {"title": "Second report from the Scottish Affairs Committee, session1984-85", "created": {"type": "/type/datetime", "value": "2009-12-11T04:24:46.490340"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-18T14:07:58.728722"}, "latest_revision": 2, "key": "/works/OL11300444W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL3362170A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11300958W 2 2010-01-20T05:13:55.909960 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:24:46.490340"}, "title": "Petroleum Revenue Tax Act 1980", "subject_places": ["Great Britain"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T05:13:55.909960"}, "latest_revision": 2, "key": "/works/OL11300958W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4743745A"}}], "type": {"key": "/type/work"}, "subjects": ["Petroleum law and legislation", "Taxation", "Petroleum"], "revision": 2}
+/type/work /works/OL11301106W 2 2010-01-20T05:17:50.604406 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:24:46.490340"}, "title": "Proyecto de codigo civil de la Republica Dominicana ..", "subject_places": ["Dominican Republic"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T05:17:50.604406"}, "latest_revision": 2, "key": "/works/OL11301106W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4743856A"}}], "type": {"key": "/type/work"}, "subjects": ["Civil law"], "revision": 2}
+/type/work /works/OL11301151W 1 2009-12-11T04:24:46.490340 {"title": "Minutes of proceedings on the Financial Services and Markets Bill", "created": {"type": "/type/datetime", "value": "2009-12-11T04:24:46.490340"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:24:46.490340"}, "latest_revision": 1, "key": "/works/OL11301151W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4743872A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11301390W 2 2010-01-20T05:17:50.604406 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:24:53.055143"}, "title": "National apprenticeship standards for cement masonry, asphalt, and composition trade", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T05:17:50.604406"}, "latest_revision": 2, "key": "/works/OL11301390W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4743981A"}}], "type": {"key": "/type/work"}, "subjects": ["Cement industry workers", "Masonry", "Vocational guidance", "Apprentices"], "revision": 2}
+/type/work /works/OL11301763W 2 2010-01-20T05:17:50.604406 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:24:53.055143"}, "title": "Das Strafrecht der Stadt Danzig von der Carolina bis zur Vereinigung Danzigs mit der preussischen Monarchie (1532-1793)", "subject_places": ["Danzig"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T05:17:50.604406"}, "latest_revision": 2, "key": "/works/OL11301763W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4744187A"}}], "type": {"key": "/type/work"}, "subjects": ["Criminal law", "History"], "revision": 2}
+/type/work /works/OL11301796W 2 2010-01-20T05:17:50.604406 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:24:53.055143"}, "title": "Status of linear boundary-layer stability theory and the en method, with emphasis on swept-wing applications", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T05:17:50.604406"}, "latest_revision": 2, "key": "/works/OL11301796W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4744201A"}}], "type": {"key": "/type/work"}, "subjects": ["Wings, Swept-back", "Boundary layer", "Airplanes", "Laminar flow"], "revision": 2}
+/type/work /works/OL11301876W 2 2010-01-20T05:17:50.604406 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:24:53.055143"}, "title": "Static aerodynamic characeristics of a winged single-stage-to-orbit vehicle at Mach numbers from 0.3 to 4.63", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T05:17:50.604406"}, "latest_revision": 2, "key": "/works/OL11301876W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4744231A"}}], "type": {"key": "/type/work"}, "subjects": ["Aerodynamics", "Atmospheric entry", "Space vehicles"], "revision": 2}
+/type/work /works/OL11301901W 4 2021-11-06T00:29:58.080327 {"subject_places": ["Canada"], "subjects": ["English Sermons", "Sermons, English"], "key": "/works/OL11301901W", "title": "Speak, precious stones", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL215819A"}}], "type": {"key": "/type/work"}, "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T04:24:53.055143"}, "last_modified": {"type": "/type/datetime", "value": "2021-11-06T00:29:58.080327"}}
+/type/work /works/OL11301910W 1 2009-12-11T04:24:53.055143 {"title": "HM Prison Blantyre House", "created": {"type": "/type/datetime", "value": "2009-12-11T04:24:53.055143"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:24:53.055143"}, "latest_revision": 1, "key": "/works/OL11301910W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4744244A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11301964W 1 2009-12-11T04:24:53.055143 {"title": "Second report of the Committee on the Safeguarding of Milling Machines", "created": {"type": "/type/datetime", "value": "2009-12-11T04:24:53.055143"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:24:53.055143"}, "latest_revision": 1, "key": "/works/OL11301964W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4744277A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1130208W 4 2022-12-28T16:59:46.031148 {"subject_places": ["Iran"], "subjects": ["Early works to 1800", "Description and travel", "HISTORIA", "DESCRIPCIONES Y VIAJES", "Geografie"], "key": "/works/OL1130208W", "title": "Persia", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL115379A"}}], "type": {"key": "/type/work"}, "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-09T20:33:11.972830"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-28T16:59:46.031148"}}
+/type/work /works/OL11302307W 3 2010-12-03T13:19:13.819410 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:19:13.819410"}, "title": "Recent progress towards predicting aircraft ground handling performance", "created": {"type": "/type/datetime", "value": "2009-12-11T04:24:59.552425"}, "subjects": ["Airplanes", "Handling characteristics", "Lateral Stability of airplanes", "Stability of airplanes, Lateral"], "latest_revision": 3, "key": "/works/OL11302307W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4744493A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11302364W 1 2009-12-11T04:24:59.552425 {"title": "Technical report", "created": {"type": "/type/datetime", "value": "2009-12-11T04:24:59.552425"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:24:59.552425"}, "latest_revision": 1, "key": "/works/OL11302364W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4744506A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11302519W 2 2010-01-20T05:21:50.717603 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:24:59.552425"}, "title": "Reducing numerical diffusion for incompressible flow calculations", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T05:21:50.717603"}, "latest_revision": 2, "key": "/works/OL11302519W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4744596A"}}], "type": {"key": "/type/work"}, "subjects": ["Combustion engineering"], "revision": 2}
+/type/work /works/OL11302810W 2 2010-01-20T05:21:50.717603 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:24:59.552425"}, "title": "Flow visualization of the wake of a transport aircraft model with lateral-control oscillations", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T05:21:50.717603"}, "latest_revision": 2, "key": "/works/OL11302810W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4744798A"}}], "type": {"key": "/type/work"}, "subjects": ["Wakes (Aerodynamics)", "Flow visualization", "Vortex-motion"], "revision": 2}
+/type/work /works/OL11303535W 2 2010-01-20T05:21:50.717603 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:25:06.973000"}, "title": "Nonlinear flap-lag-extensional vibrations of rotating, pretwisted, preconed beams including Coriolis effects", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T05:21:50.717603"}, "latest_revision": 2, "key": "/works/OL11303535W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4745241A"}}], "type": {"key": "/type/work"}, "subjects": ["Coriolis force", "Blades"], "revision": 2}
+/type/work /works/OL11303564W 2 2010-01-20T05:25:59.317934 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:25:06.973000"}, "title": "The Role of amplitude-to-phase conversion in the generation of oscillator flicker phase noise", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T05:25:59.317934"}, "latest_revision": 2, "key": "/works/OL11303564W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4745265A"}}], "type": {"key": "/type/work"}, "subjects": ["Feedback oscillators"], "revision": 2}
+/type/work /works/OL11304287W 2 2010-01-20T05:25:59.317934 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:25:14.918901"}, "title": "Application of laser velocimetry to unsteady flows in large scale high speed tunnels", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T05:25:59.317934"}, "latest_revision": 2, "key": "/works/OL11304287W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4745700A"}}], "type": {"key": "/type/work"}, "subjects": ["Wind tunnels", "Laser Doppler velocimeter"], "revision": 2}
+/type/work /works/OL11305002W 1 2009-12-11T04:25:14.918901 {"title": "Remnant magnetization and three-dimensional density model of the Kentucky anomoly region", "created": {"type": "/type/datetime", "value": "2009-12-11T04:25:14.918901"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:25:14.918901"}, "latest_revision": 1, "key": "/works/OL11305002W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4746197A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11305172W 2 2010-01-20T05:30:03.569869 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:25:14.918901"}, "title": "Effects of grazing flow on the steady-state flow resistance and acoustic impedance of thin porous-faced liners", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T05:30:03.569869"}, "latest_revision": 2, "key": "/works/OL11305172W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4746337A"}}], "type": {"key": "/type/work"}, "subjects": ["Absorption of sound", "Acoustic impedance", "Measurement"], "revision": 2}
+/type/work /works/OL11305606W 2 2010-01-20T05:30:03.569869 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:25:23.733040"}, "title": "Fundamental aspects in the quantitative ultrasonic determination of fracture toughness", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T05:30:03.569869"}, "latest_revision": 2, "key": "/works/OL11305606W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4746666A"}}], "type": {"key": "/type/work"}, "subjects": ["Quality control", "Quality assurance"], "revision": 2}
+/type/work /works/OL11305960W 2 2010-01-20T05:34:17.689187 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:25:23.733040"}, "title": "Calculation of steady and unsteady airfoil flow fields via the Navier-Stokes equations", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T05:34:17.689187"}, "latest_revision": 2, "key": "/works/OL11305960W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4746956A"}}], "type": {"key": "/type/work"}, "subjects": ["Aerodynamics", "Aerofoils", "Navier-Stokes equations"], "revision": 2}
+/type/work /works/OL11305985W 1 2009-12-11T04:25:23.733040 {"title": "Mechanization of agriculture", "created": {"type": "/type/datetime", "value": "2009-12-11T04:25:23.733040"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:25:23.733040"}, "latest_revision": 1, "key": "/works/OL11305985W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4746983A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11306448W 2 2010-01-20T05:34:17.689187 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:25:32.760360"}, "title": "Effect of two inner-ring oil-flow distribution schemes on the operating characteristics of a 35-millimeter-bore ball bearing to 2.5 million DN", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T05:34:17.689187"}, "latest_revision": 2, "key": "/works/OL11306448W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4747320A"}}], "type": {"key": "/type/work"}, "subjects": ["Ball-bearings"], "revision": 2}
+/type/work /works/OL11306480W 2 2010-01-20T05:34:17.689187 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:25:32.760360"}, "title": "Improved low-cost inorganic organic separators for rechargeable silver-zinc batteries", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T05:34:17.689187"}, "latest_revision": 2, "key": "/works/OL11306480W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4747344A"}}], "type": {"key": "/type/work"}, "subjects": ["Testing", "Electric batteries", "Separation (Technology)", "Electrochemistry"], "revision": 2}
+/type/work /works/OL11306517W 1 2009-12-11T04:25:32.760360 {"title": "Technical requirements for power-driven vehicles and their parts and equipment approved by the Group of Experts on the Construction of Vehicles; (WP29)", "created": {"type": "/type/datetime", "value": "2009-12-11T04:25:32.760360"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:25:32.760360"}, "latest_revision": 1, "key": "/works/OL11306517W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4747377A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11307040W 2 2010-01-20T05:38:43.443151 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:25:32.760360"}, "title": "Pressures, forces and moments, and shock shapes for a geometrically matched sphere-cone and hyperboloid at Mach 20.3 in helium", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T05:38:43.443151"}, "latest_revision": 2, "key": "/works/OL11307040W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4747790A"}}], "type": {"key": "/type/work"}, "subjects": ["Hyperboloid", "Strain and stresses"], "revision": 2}
+/type/work /works/OL113071W 2 2022-12-23T17:24:50.966339 {"title": "The carpenter's companion", "key": "/works/OL113071W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1216809A"}}], "type": {"key": "/type/work"}, "subjects": ["Carpentry", "Early works to 1800", "Building", "Handbooks, manuals", "Architecture", "Orders"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-10-18T02:13:49.247602"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-23T17:24:50.966339"}}
+/type/work /works/OL1130727W 2 2010-01-20T05:38:43.443151 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:33:11.972830"}, "title": "Mammals obtained by Dr. Curt von Wedel from the barrier beach of Tamaulipas, Mexico", "subject_places": ["Tamaulipas", "Mexico"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T05:38:43.443151"}, "latest_revision": 2, "key": "/works/OL1130727W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL115411A"}}], "type": {"key": "/type/work"}, "subjects": ["Mammals"], "revision": 2}
+/type/work /works/OL1130754W 3 2010-07-20T13:58:13.236876 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:33:11.972830"}, "title": "Rodents and lagomorphs from the Later Tertiary of Fish Lake Valley, Nevada", "subject_places": ["Nevada"], "last_modified": {"type": "/type/datetime", "value": "2010-07-20T13:58:13.236876"}, "latest_revision": 3, "key": "/works/OL1130754W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL115411A"}}], "subject_times": ["Tertiary"], "type": {"key": "/type/work"}, "subjects": ["Paleontology", "Rodents, Fossil", "Fossil Rodents"], "revision": 3}
+/type/work /works/OL11307803W 1 2009-12-11T04:25:41.344695 {"title": "PREP and SPOP utilities", "created": {"type": "/type/datetime", "value": "2009-12-11T04:25:41.344695"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:25:41.344695"}, "latest_revision": 1, "key": "/works/OL11307803W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4748372A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11307810W 1 2009-12-11T04:25:41.344695 {"title": "Properties of vacancies and divacancies in fcc metals", "created": {"type": "/type/datetime", "value": "2009-12-11T04:25:41.344695"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:25:41.344695"}, "latest_revision": 1, "key": "/works/OL11307810W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4748377A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11307866W 1 2009-12-11T04:25:41.344695 {"title": "Varmetransmission i elektronik", "created": {"type": "/type/datetime", "value": "2009-12-11T04:25:41.344695"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:25:41.344695"}, "latest_revision": 1, "key": "/works/OL11307866W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4748431A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11308074W 1 2009-12-11T04:25:41.344695 {"title": "Nuclear science teaching II", "created": {"type": "/type/datetime", "value": "2009-12-11T04:25:41.344695"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:25:41.344695"}, "latest_revision": 1, "key": "/works/OL11308074W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4748600A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11308103W 2 2010-01-20T05:38:43.443151 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:25:41.344695"}, "title": "Problems in evaluation design", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T05:38:43.443151"}, "latest_revision": 2, "key": "/works/OL11308103W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4748626A"}}], "type": {"key": "/type/work"}, "subjects": ["Evaluation research (Social action programs)"], "revision": 2}
+/type/work /works/OL11308145W 2 2010-12-03T18:49:22.143491 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T18:49:22.143491"}, "title": "Guide to the costing of water from nuclear desalination plants", "created": {"type": "/type/datetime", "value": "2009-12-11T04:25:41.344695"}, "subjects": ["Costs", "Saline water conversion"], "latest_revision": 2, "key": "/works/OL11308145W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4748667A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11308244W 1 2009-12-11T04:25:49.796907 {"title": "Performance of a solar cooling system using different types of evacuated tubular collectors", "created": {"type": "/type/datetime", "value": "2009-12-11T04:25:49.796907"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:25:49.796907"}, "latest_revision": 1, "key": "/works/OL11308244W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4748745A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1130896W 2 2010-01-20T05:43:07.431555 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:33:11.972830"}, "title": "La crise europ\u00e9enne et la Grande Guerre (1904-1918)", "subject_places": ["Europe"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T05:43:07.431555"}, "latest_revision": 2, "key": "/works/OL1130896W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL115422A"}}], "subject_times": ["20th century"], "type": {"key": "/type/work"}, "subjects": ["World War, 1914-1918", "History"], "revision": 2}
+/type/work /works/OL11309112W 2 2010-01-20T05:43:07.431555 {"title": "D\u00e9sir\u00e9 Nisard et son oeuvre ..", "created": {"type": "/type/datetime", "value": "2009-12-11T04:25:49.796907"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-20T05:43:07.431555"}, "latest_revision": 2, "key": "/works/OL11309112W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4749384A"}}], "subject_people": ["Jean Marie Napol\u00e9on D\u00e9sir\u00e9 Nisard (1806-1888)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11309120W 2 2010-01-20T05:43:07.431555 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:25:49.796907"}, "title": "U.S. space programs", "subject_places": ["United States", "Europe"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T05:43:07.431555"}, "latest_revision": 2, "key": "/works/OL11309120W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4749389A"}}], "type": {"key": "/type/work"}, "subjects": ["Outer space", "Exploration", "Astronautics", "International cooperation"], "revision": 2}
+/type/work /works/OL11309560W 2 2010-01-20T05:43:07.431555 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:25:57.147404"}, "title": "Management training", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T05:43:07.431555"}, "latest_revision": 2, "key": "/works/OL11309560W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4749721A"}}], "type": {"key": "/type/work"}, "subjects": ["Management", "Small business"], "revision": 2}
+/type/work /works/OL11309622W 1 2009-12-11T04:25:57.147404 {"title": "Po\u00e8me sur Louis le Pieux et \u00c9pitres au roi P\u00e9pin", "created": {"type": "/type/datetime", "value": "2009-12-11T04:25:57.147404"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:25:57.147404"}, "latest_revision": 1, "key": "/works/OL11309622W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4749767A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11309704W 3 2010-12-04T03:52:00.698042 {"last_modified": {"type": "/type/datetime", "value": "2010-12-04T03:52:00.698042"}, "title": "La dotation du Prince de Waterloo", "created": {"type": "/type/datetime", "value": "2009-12-11T04:25:57.147404"}, "subject_places": ["Great Britain"], "subjects": ["Generals", "History, Military", "Military History"], "subject_people": ["Arthur Wellesley Wellington Duke of (1769-1852)"], "key": "/works/OL11309704W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4749820A"}}], "latest_revision": 3, "subject_times": ["1789-1820"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11309771W 2 2010-01-20T05:43:07.431555 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:25:57.147404"}, "title": "Recreation and the total personality", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T05:43:07.431555"}, "latest_revision": 2, "key": "/works/OL11309771W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4749854A"}}], "type": {"key": "/type/work"}, "subjects": ["Recreation", "Leisure"], "revision": 2}
+/type/work /works/OL11310115W 3 2010-12-03T13:20:39.444568 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:25:57.147404"}, "subject_places": ["United States"], "subjects": ["Cities and towns", "Growth", "Planning", "Social aspects", "Social aspects of Transportation", "Transportation"], "latest_revision": 3, "key": "/works/OL11310115W", "title": "Physical foundations for socio-economic modeling for transportation planning", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4750069A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:20:39.444568"}, "revision": 3}
+/type/work /works/OL11310477W 2 2010-01-20T05:47:20.421157 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:26:05.084669"}, "title": "Mulher e literatura : IV Semin\u00e1rio Nacional, anais, Niter\u00f3i, Rio de Janeiro 26 a 28 de agosto 1991", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T05:47:20.421157"}, "latest_revision": 2, "key": "/works/OL11310477W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4750298A"}}], "type": {"key": "/type/work"}, "subjects": ["Congresses", "Women authors", "Women and literature", "Women in literature"], "revision": 2}
+/type/work /works/OL11310664W 3 2010-11-04T00:10:39.274243 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:26:05.084669"}, "subject_places": ["United States"], "subjects": ["Aeronautics", "Safety measures", "Air traffic control", "Electronic equipment", "Radar air traffic control systems"], "latest_revision": 3, "key": "/works/OL11310664W", "title": "A comparison of the vigilance performance of men and women using a simulated radar task", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4910320A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-11-04T00:10:39.274243"}, "revision": 3}
+/type/work /works/OL11310708W 2 2010-01-20T05:47:20.421157 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:26:05.084669"}, "title": "Effects of sleep loss on vestibular response during simple and complex vestibular stimulation", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T05:47:20.421157"}, "latest_revision": 2, "key": "/works/OL11310708W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4750470A"}}], "type": {"key": "/type/work"}, "subjects": ["Vestibular function tests", "Fatigue", "Sleep deprivation"], "revision": 2}
+/type/work /works/OL11310711W 2 2010-01-20T05:47:20.421157 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:26:05.084669"}, "title": "Primary, secondary, and caloric nystagmus of the cat following habituation to rotation", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T05:47:20.421157"}, "latest_revision": 2, "key": "/works/OL11310711W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4750470A"}}], "type": {"key": "/type/work"}, "subjects": ["Nystagmus"], "revision": 2}
+/type/work /works/OL11311062W 5 2022-12-22T00:37:30.919645 {"subjects": ["Personal narratives, Polish", "Polish Personal narratives", "Prisoners and prisons, Russian", "Russian Prisoners and prisons", "World War, 1939-1945", "Soviet Prisoners and prisons", "Prisoners of war", "Biography", "Concentration camps", "Wojna \u015bwiatowa (1939-1945)", "Relacje osobiste Polak\u00f3w"], "subject_people": ["Marian Marek Bilewicz"], "key": "/works/OL11311062W", "title": "Wyszed\u0142em z mroku", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4750733A"}}], "type": {"key": "/type/work"}, "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2009-12-11T04:26:05.084669"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-22T00:37:30.919645"}}
+/type/work /works/OL11311231W 3 2010-12-03T13:20:39.444568 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:26:12.596382"}, "subject_places": ["United States"], "subjects": ["Articulated Locomotives", "Buses", "Design and construction", "Locomotives, Articulated"], "latest_revision": 3, "key": "/works/OL11311231W", "title": "Technology of articulated transit buses", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4750855A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:20:39.444568"}, "revision": 3}
+/type/work /works/OL11311387W 2 2010-11-19T20:51:18.312892 {"title": "Climats", "created": {"type": "/type/datetime", "value": "2009-12-11T04:26:12.596382"}, "last_modified": {"type": "/type/datetime", "value": "2010-11-19T20:51:18.312892"}, "latest_revision": 2, "key": "/works/OL11311387W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL115895A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11311749W 2 2010-01-20T05:51:11.347345 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:26:12.596382"}, "title": "Development of public bone shape and tissues in children", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T05:51:11.347345"}, "latest_revision": 2, "key": "/works/OL11311749W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4751198A"}}], "type": {"key": "/type/work"}, "subjects": ["Crash injuries", "Pelvis", "Growth", "Children"], "revision": 2}
+/type/work /works/OL11312093W 4 2011-01-30T09:29:15.859806 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:26:12.596382"}, "subjects": ["Christian ethics", "Christianity", "Ethics", "Love", "Religious aspects", "Religious aspects of Love"], "subject_people": ["William Temple (1881-1944)"], "key": "/works/OL11312093W", "title": "The structure of William Temple's ethics", "latest_revision": 4, "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4751422A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2011-01-30T09:29:15.859806"}, "revision": 4}
+/type/work /works/OL11312215W 1 2009-12-11T04:26:12.596382 {"title": "Antasa r\u012b ba\u1e37ata", "created": {"type": "/type/datetime", "value": "2009-12-11T04:26:12.596382"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:26:12.596382"}, "latest_revision": 1, "key": "/works/OL11312215W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4751494A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11313133W 1 2009-12-11T04:26:19.213051 {"title": "Svalor", "created": {"type": "/type/datetime", "value": "2009-12-11T04:26:19.213051"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:26:19.213051"}, "latest_revision": 1, "key": "/works/OL11313133W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4752008A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11313152W 2 2010-01-20T05:55:14.994417 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:26:19.213051"}, "title": "Slide", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T05:55:14.994417"}, "latest_revision": 2, "key": "/works/OL11313152W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4752023A"}}], "type": {"key": "/type/work"}, "subjects": ["Fiction in English"], "revision": 2}
+/type/work /works/OL11313223W 2 2010-01-20T05:55:14.994417 {"title": "Once removed", "created": {"type": "/type/datetime", "value": "2009-12-11T04:26:19.213051"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-20T05:55:14.994417"}, "latest_revision": 2, "key": "/works/OL11313223W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4752062A"}}], "subject_people": ["Lorna Brown"], "type": {"key": "/type/work"}, "subjects": ["Exhibitions"], "revision": 2}
+/type/work /works/OL1131337W 5 2020-08-13T12:08:08.383915 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:33:20.339779"}, "subjects": ["Economics", "Social problems", "Political science"], "latest_revision": 5, "key": "/works/OL1131337W", "title": "Essays and lectures on social and political subjects", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL115468A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-08-13T12:08:08.383915"}, "covers": [5712609], "revision": 5}
+/type/work /works/OL11314014W 6 2022-02-28T13:43:21.645621 {"covers": [6606270], "key": "/works/OL11314014W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL57247A"}}], "title": "Boston Access", "subject_places": ["Boston (Mass.)"], "subjects": ["Guidebooks", "Boston (mass.), description and travel"], "type": {"key": "/type/work"}, "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2009-12-11T04:26:26.635395"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-28T13:43:21.645621"}}
+/type/work /works/OL11314062W 1 2009-12-11T04:26:26.635395 {"title": "The Macorie classification system and a computerized information storage retrieval system", "created": {"type": "/type/datetime", "value": "2009-12-11T04:26:26.635395"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:26:26.635395"}, "latest_revision": 1, "key": "/works/OL11314062W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4752594A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11314136W 2 2011-02-10T07:17:49.812854 {"title": "The book of lies", "created": {"type": "/type/datetime", "value": "2009-12-11T04:26:26.635395"}, "last_modified": {"type": "/type/datetime", "value": "2011-02-10T07:17:49.812854"}, "latest_revision": 2, "key": "/works/OL11314136W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL44231A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11314248W 3 2022-07-11T13:28:17.757158 {"title": "Antigens, lymphoid cells, and the immune response", "subjects": ["Lymphocytes", "Antigens", "Cellular immunity", "Antigen-Antibody Reactions", "Lymphoid Tissue", "Immunology"], "key": "/works/OL11314248W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4752672A"}}], "type": {"key": "/type/work"}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T04:26:30.476274"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-11T13:28:17.757158"}}
+/type/work /works/OL1131424W 2 2010-01-20T05:59:22.174846 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:33:20.339779"}, "title": "Jo. Archiepiscopi Cantuariensis Perspectiua communis", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T05:59:22.174846"}, "latest_revision": 2, "key": "/works/OL1131424W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL115485A"}}], "subject_times": ["Early works to 1800"], "type": {"key": "/type/work"}, "subjects": ["Optics"], "revision": 2}
+/type/work /works/OL11314306W 2 2010-01-20T05:59:22.174846 {"title": "More big questions", "created": {"type": "/type/datetime", "value": "2009-12-11T04:26:30.476274"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-20T05:59:22.174846"}, "latest_revision": 2, "key": "/works/OL11314306W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4752700A"}}], "subject_people": ["P. C. W. Davies"], "type": {"key": "/type/work"}, "subjects": ["Consciousness", "Religion and science", "Life on other planets", "Space and time", "Cosmology", "End of the universe", "Time", "Metaphysics"], "revision": 2}
+/type/work /works/OL11314374W 3 2010-04-28T07:19:59.777300 {"title": "In the rapids", "created": {"type": "/type/datetime", "value": "2009-12-11T04:26:30.476274"}, "covers": [5492975], "subject_places": ["Canada"], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:19:59.777300"}, "latest_revision": 3, "key": "/works/OL11314374W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4752722A"}}], "subjects": ["Indigenous peoples"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11314437W 2 2010-01-20T05:59:22.174846 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:26:30.476274"}, "title": "Rice acreage allotments", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T05:59:22.174846"}, "latest_revision": 2, "key": "/works/OL11314437W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4752742A"}}], "type": {"key": "/type/work"}, "subjects": ["Law and legislation", "Rice", "Acreage allotments"], "revision": 2}
+/type/work /works/OL11314588W 3 2022-11-17T21:14:54.882694 {"title": "The little wooden farmer", "key": "/works/OL11314588W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL6539768A"}}], "type": {"key": "/type/work"}, "subjects": ["Farm life, fiction", "Children's fiction"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T04:26:30.476274"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T21:14:54.882694"}}
+/type/work /works/OL11315057W 3 2010-12-03T19:26:05.384471 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:26:30.476274"}, "subject_places": ["United States"], "subjects": ["Banks and banking", "Export-Import Bank of the United States", "Securities"], "latest_revision": 3, "key": "/works/OL11315057W", "title": "U.S. Export-Import Bank", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4752910A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T19:26:05.384471"}, "revision": 3}
+/type/work /works/OL11315252W 2 2010-01-20T05:59:22.174846 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:26:35.171764"}, "title": "Books-by-mail service", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T05:59:22.174846"}, "latest_revision": 2, "key": "/works/OL11315252W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4752983A"}}], "type": {"key": "/type/work"}, "subjects": ["Direct delivery of books"], "revision": 2}
+/type/work /works/OL11315325W 6 2022-11-17T08:34:47.005950 {"title": "Malaysian cookery", "subjects": ["Cookery, Malayan", "Cookery, Malaysian", "Malayan Cookery", "Malaysian Cookery", "Malaysian Cooking", "Cooking, malaysian"], "key": "/works/OL11315325W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4753021A"}}], "type": {"key": "/type/work"}, "covers": [10600089], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2009-12-11T04:26:35.171764"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T08:34:47.005950"}}
+/type/work /works/OL11315571W 1 2009-12-11T04:26:35.171764 {"title": "Henry's present", "created": {"type": "/type/datetime", "value": "2009-12-11T04:26:35.171764"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:26:35.171764"}, "latest_revision": 1, "key": "/works/OL11315571W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4753109A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11315842W 1 2009-12-11T04:26:35.171764 {"title": "The Bobby Simpson story", "created": {"type": "/type/datetime", "value": "2009-12-11T04:26:35.171764"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:26:35.171764"}, "latest_revision": 1, "key": "/works/OL11315842W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4753229A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11315971W 4 2012-06-26T18:26:47.285776 {"last_modified": {"type": "/type/datetime", "value": "2012-06-26T18:26:47.285776"}, "title": "Amending section 2 of the act to incorporate Howard University", "created": {"type": "/type/datetime", "value": "2009-12-11T04:26:35.171764"}, "subjects": ["Education, Higher", "Higher Education", "Howard University"], "latest_revision": 4, "key": "/works/OL11315971W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1211013A"}}], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL11316144W 3 2012-06-26T18:26:47.285776 {"last_modified": {"type": "/type/datetime", "value": "2012-06-26T18:26:47.285776"}, "title": "Establishment of Administration of Public Works", "created": {"type": "/type/datetime", "value": "2009-12-11T04:26:35.171764"}, "subjects": ["United States", "United States. Public Works Administration"], "latest_revision": 3, "key": "/works/OL11316144W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1211013A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11316788W 2 2010-01-20T06:03:47.124506 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:26:40.870759"}, "title": "[Cultura cientifica de Espa\u00f1a en el siglo XVI]", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T06:03:47.124506"}, "latest_revision": 2, "key": "/works/OL11316788W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4753645A"}}], "type": {"key": "/type/work"}, "subjects": ["Spanish literature", "History and criticism"], "revision": 2}
+/type/work /works/OL1131703W 2 2010-01-20T06:03:47.124506 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:33:20.339779"}, "title": "Un di\u0301a como hoy", "subject_places": ["Cuba"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T06:03:47.124506"}, "latest_revision": 2, "key": "/works/OL1131703W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL115499A"}}], "type": {"key": "/type/work"}, "subjects": ["History"], "revision": 2}
+/type/work /works/OL11317219W 4 2012-05-04T22:39:46.677924 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:26:40.870759"}, "subject_places": ["United States"], "subjects": ["Antidumping duties", "Canada", "Canada. 1992 Oct. 7", "Tariff on farm produce"], "latest_revision": 4, "key": "/works/OL11317219W", "title": "Assistance available to U.S. agricultural producers under U.S. trade law", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL489193A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-04T22:39:46.677924"}, "revision": 4}
+/type/work /works/OL1131738W 2 2010-01-20T06:07:47.978889 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:33:20.339779"}, "title": "Dental pathology of aboriginal California", "subject_places": ["California"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T06:07:47.978889"}, "latest_revision": 2, "key": "/works/OL1131738W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL115503A"}}], "type": {"key": "/type/work"}, "subjects": ["Diseases", "Indians of North America", "Teeth"], "revision": 2}
+/type/work /works/OL11317485W 3 2020-11-19T17:32:06.402652 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:26:45.865231"}, "subject_places": ["United States"], "subjects": ["Nutrition", "Law and legislation", "Food", "Labeling", "Nutrition policy"], "latest_revision": 3, "key": "/works/OL11317485W", "title": "Guide to Nutritional Labeling and Education Act (NLEA) requirements", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4754058A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-11-19T17:32:06.402652"}, "revision": 3}
+/type/work /works/OL11317658W 2 2010-01-20T06:07:47.978889 {"title": "Les intrigues de Moli\u00e8re et celles de sa femme", "created": {"type": "/type/datetime", "value": "2009-12-11T04:26:45.865231"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-20T06:07:47.978889"}, "latest_revision": 2, "key": "/works/OL11317658W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4754128A"}}], "subject_people": ["Moli\u00e8re (1622-1673)", "Armande-Gr\u00e9sinde-Claire Elisabeth B\u00e9jart (1640 or 45-1700)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11317685W 1 2009-12-11T04:26:45.865231 {"title": "Mrs. Packle tide's tiger and other stories", "created": {"type": "/type/datetime", "value": "2009-12-11T04:26:45.865231"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:26:45.865231"}, "latest_revision": 1, "key": "/works/OL11317685W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4754157A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11317771W 3 2020-07-29T06:38:28.852881 {"covers": [10317230], "last_modified": {"type": "/type/datetime", "value": "2020-07-29T06:38:28.852881"}, "latest_revision": 3, "key": "/works/OL11317771W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4754192A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T04:26:45.865231"}, "title": "Shakespeare's 'Romeo & Juliet'", "subjects": ["Romeo and Juliet (Shakespeare, William)"], "subject_people": ["William Shakespeare (1564-1616)"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11317892W 2 2010-01-20T06:07:47.978889 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:26:45.865231"}, "title": "... Le roman des cit\u00e9s-jardins", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T06:07:47.978889"}, "latest_revision": 2, "key": "/works/OL11317892W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4754260A"}}], "type": {"key": "/type/work"}, "subjects": ["Garden cities"], "revision": 2}
+/type/work /works/OL11318092W 2 2022-11-17T09:48:56.019198 {"title": "Seeing off uncle Jack", "key": "/works/OL11318092W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4754301A"}}], "type": {"key": "/type/work"}, "subjects": ["Children's fiction", "Family life, fiction"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T04:26:45.865231"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T09:48:56.019198"}}
+/type/work /works/OL11318252W 2 2010-01-20T06:07:47.978889 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:26:51.750658"}, "title": "An oration, pronounced on the fourth of July, 1822", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T06:07:47.978889"}, "latest_revision": 2, "key": "/works/OL11318252W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4754360A"}}], "type": {"key": "/type/work"}, "subjects": ["Fourth of July orations"], "revision": 2}
+/type/work /works/OL11318317W 2 2010-01-20T06:07:47.978889 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:26:51.750658"}, "title": "Hosanna to the son of David", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T06:07:47.978889"}, "latest_revision": 2, "key": "/works/OL11318317W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4754373A"}}], "type": {"key": "/type/work"}, "subjects": ["Anthems", "Choruses, Sacred (Mixed voices, 6 parts), Unaccompanied"], "revision": 2}
+/type/work /works/OL11318737W 4 2020-02-14T04:40:59.095689 {"title": "Foundations of epidemiology", "created": {"type": "/type/datetime", "value": "2009-12-11T04:26:51.750658"}, "covers": [7293935], "last_modified": {"type": "/type/datetime", "value": "2020-02-14T04:40:59.095689"}, "latest_revision": 4, "key": "/works/OL11318737W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4754614A"}}], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL11319109W 2 2010-01-20T06:11:56.446149 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:26:51.750658"}, "title": "The Hikayat Abdullah", "subject_places": ["Malaysia"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T06:11:56.446149"}, "latest_revision": 2, "key": "/works/OL11319109W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4754813A"}}], "type": {"key": "/type/work"}, "subjects": ["Civilization"], "revision": 2}
+/type/work /works/OL11319138W 5 2012-11-28T11:20:29.537390 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:26:51.750658"}, "subject_places": ["United States"], "subjects": ["Agricultural industries", "Agriculture, Cooperative", "Cooperative Agriculture"], "latest_revision": 5, "key": "/works/OL11319138W", "title": "Understanding cooperatives", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4754833A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-11-28T11:20:29.537390"}, "revision": 5}
+/type/work /works/OL1131918W 4 2012-01-04T14:05:46.181229 {"covers": [7001736], "last_modified": {"type": "/type/datetime", "value": "2012-01-04T14:05:46.181229"}, "latest_revision": 4, "key": "/works/OL1131918W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL115513A"}}], "created": {"type": "/type/datetime", "value": "2009-12-09T20:33:20.339779"}, "title": "An enumeration of Philippine flowering plants", "subject_places": ["Philippines"], "subjects": ["Botany", "Bibliography", "Plants"], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL11319343W 1 2009-12-11T04:26:58.282834 {"title": "Breviare de la haine", "created": {"type": "/type/datetime", "value": "2009-12-11T04:26:58.282834"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:26:58.282834"}, "latest_revision": 1, "key": "/works/OL11319343W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4754978A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1131941W 3 2010-12-04T08:47:15.801434 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:33:28.107853"}, "subject_places": ["Cascade Tunnel (Wash.)"], "subjects": ["Great Northern Railway Company (U.S.)"], "latest_revision": 3, "key": "/works/OL1131941W", "title": "Dedication and opening of the new Cascade Tunnel, a monument to James J. Hill", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL115517A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-04T08:47:15.801434"}, "revision": 3}
+/type/work /works/OL11319478W 1 2009-12-11T04:26:58.282834 {"title": "Recruiting, selection, training, and supervision in life insurance", "created": {"type": "/type/datetime", "value": "2009-12-11T04:26:58.282834"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:26:58.282834"}, "latest_revision": 1, "key": "/works/OL11319478W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4755068A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11319638W 1 2009-12-11T04:26:58.282834 {"title": "Aventura", "created": {"type": "/type/datetime", "value": "2009-12-11T04:26:58.282834"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:26:58.282834"}, "latest_revision": 1, "key": "/works/OL11319638W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4755157A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11319774W 2 2010-01-20T06:11:56.446149 {"title": "Ange Politien", "created": {"type": "/type/datetime", "value": "2009-12-11T04:26:58.282834"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-20T06:11:56.446149"}, "latest_revision": 2, "key": "/works/OL11319774W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4755212A"}}], "subject_people": ["Angelo Poliziano (1454-1494)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11319950W 2 2011-02-10T13:14:42.174977 {"title": "De venarum ostiolis 1603 of Hieronymus Fabricus of Aquapendente (1533?-1619)", "created": {"type": "/type/datetime", "value": "2009-12-11T04:26:58.282834"}, "last_modified": {"type": "/type/datetime", "value": "2011-02-10T13:14:42.174977"}, "latest_revision": 2, "key": "/works/OL11319950W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL687080A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11320106W 1 2009-12-11T04:26:58.282834 {"title": "Sounds of a cowhide drum", "created": {"type": "/type/datetime", "value": "2009-12-11T04:26:58.282834"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:26:58.282834"}, "latest_revision": 1, "key": "/works/OL11320106W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4755424A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11320213W 2 2010-01-20T06:11:56.446149 {"title": "The people's historian", "created": {"type": "/type/datetime", "value": "2009-12-11T04:26:58.282834"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-20T06:11:56.446149"}, "latest_revision": 2, "key": "/works/OL11320213W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4755447A"}}], "subject_people": ["Gwyn A. Williams (1925-)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11320249W 2 2010-12-03T21:40:51.400414 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:27:03.799579"}, "subject_places": ["Great Britain"], "subjects": ["Nobility"], "latest_revision": 2, "key": "/works/OL11320249W", "title": "English baronies", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4755470A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T21:40:51.400414"}, "revision": 2}
+/type/work /works/OL11320516W 2 2010-01-20T06:16:05.143448 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:27:03.799579"}, "title": "Characteristics of school buildings in the U.S", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T06:16:05.143448"}, "latest_revision": 2, "key": "/works/OL11320516W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4755585A"}}], "type": {"key": "/type/work"}, "subjects": ["School buildings"], "revision": 2}
+/type/work /works/OL11320549W 2 2010-01-20T06:16:05.143448 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:27:03.799579"}, "title": "Chemistry, elementary principles", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T06:16:05.143448"}, "latest_revision": 2, "key": "/works/OL11320549W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4755610A"}}], "type": {"key": "/type/work"}, "subjects": ["Chemistry"], "revision": 2}
+/type/work /works/OL11320631W 2 2019-05-14T01:57:06.455196 {"last_modified": {"type": "/type/datetime", "value": "2019-05-14T01:57:06.455196"}, "title": "The instant economist", "created": {"type": "/type/datetime", "value": "2009-12-11T04:27:03.799579"}, "subjects": ["Economics"], "latest_revision": 2, "key": "/works/OL11320631W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4755652A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL1132086W 2 2010-01-20T06:16:05.143448 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:33:28.107853"}, "title": "Intensities of spectral lines", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T06:16:05.143448"}, "latest_revision": 2, "key": "/works/OL1132086W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL115538A"}}], "type": {"key": "/type/work"}, "subjects": ["Spectrum analysis", "Quantum theory"], "revision": 2}
+/type/work /works/OL11320919W 3 2010-12-03T19:36:04.273306 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:27:03.799579"}, "subject_places": ["Drewry's Bluff (Va.)"], "subjects": ["Confederate States of America", "Confederate States of America. Navy"], "latest_revision": 3, "key": "/works/OL11320919W", "title": "A bill making an appropriation to erect additional quarters for acting midshipmen at Drewry's Bluff", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4755834A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T19:36:04.273306"}, "revision": 3}
+/type/work /works/OL11321478W 2 2010-12-03T13:22:51.200346 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:22:51.200346"}, "title": "The freshman justice", "created": {"type": "/type/datetime", "value": "2009-12-11T04:27:09.833483"}, "subjects": ["United States", "United States. Supreme Court"], "latest_revision": 2, "key": "/works/OL11321478W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4756077A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL113218W 4 2010-07-24T01:52:28.851083 {"subtitle": "a course of lectures on the \"Ely foundation\" delivered in Union Theological Seminary", "title": "The miraculous element in the Gospels", "created": {"type": "/type/datetime", "value": "2009-10-18T02:13:49.247602"}, "covers": [5567609], "last_modified": {"type": "/type/datetime", "value": "2010-07-24T01:52:28.851083"}, "latest_revision": 4, "key": "/works/OL113218W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1217150A"}}], "subject_people": ["Jesus Christ"], "type": {"key": "/type/work"}, "subjects": ["Miracles"], "revision": 4}
+/type/work /works/OL11321912W 1 2009-12-11T04:27:09.833483 {"title": "The magic shoe", "created": {"type": "/type/datetime", "value": "2009-12-11T04:27:09.833483"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:27:09.833483"}, "latest_revision": 1, "key": "/works/OL11321912W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4756297A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11321996W 3 2020-08-25T07:04:11.831906 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:27:09.833483"}, "subjects": ["Children's stories"], "latest_revision": 3, "key": "/works/OL11321996W", "title": "Little Wolf", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4756358A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-08-25T07:04:11.831906"}, "covers": [10387892], "revision": 3}
+/type/work /works/OL11322105W 1 2009-12-11T04:27:09.833483 {"title": "Brush", "created": {"type": "/type/datetime", "value": "2009-12-11T04:27:09.833483"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:27:09.833483"}, "latest_revision": 1, "key": "/works/OL11322105W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4756415A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11322171W 1 2009-12-11T04:27:09.833483 {"title": "Dilly and the pirates", "created": {"type": "/type/datetime", "value": "2009-12-11T04:27:09.833483"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:27:09.833483"}, "latest_revision": 1, "key": "/works/OL11322171W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4756442A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11322578W 3 2010-12-03T19:44:29.116257 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:27:15.111047"}, "subjects": ["Dead Sea scrolls"], "subject_people": ["John the Baptist, Saint"], "key": "/works/OL11322578W", "title": "Saint Jean-Baptiste et la spiritualit\u00e9 du d\u00e9sert par Jean Steinmann", "latest_revision": 3, "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4756603A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T19:44:29.116257"}, "revision": 3}
+/type/work /works/OL11322631W 4 2021-08-13T03:43:55.253735 {"title": "Celebrating the Eucharist", "subjects": ["Lord's Supper", "Catholic Church", "Institutions & Organizations", "Religion - Church Life", "Meditations", "Liturgy", "Mass", "Lord's Supper (Liturgy)", "Liturgics", "Bible"], "key": "/works/OL11322631W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4756622A"}}, {"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL3680901A"}}, {"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL3680902A"}}], "type": {"key": "/type/work"}, "covers": [11601525], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T04:27:15.111047"}, "last_modified": {"type": "/type/datetime", "value": "2021-08-13T03:43:55.253735"}}
+/type/work /works/OL11322972W 2 2010-12-03T13:23:17.561245 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:23:17.561245"}, "title": "Making the most of the missal", "created": {"type": "/type/datetime", "value": "2009-12-11T04:27:15.111047"}, "subjects": ["Catholic Church"], "latest_revision": 2, "key": "/works/OL11322972W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4756756A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11323089W 7 2021-12-25T12:06:24.417014 {"title": "The Black bourgeoisie", "covers": [8484007], "subject_places": ["United States"], "subjects": ["Social conditions", "Afro-Americans", "Race relations", "Middle class", "Noirs am\u00e9ricains", "Politica e sociedade (classe)", "Conditions sociales", "Historia da america", "Bourgeoisie", "Relations raciales", "Condicoes sociais", "Classe social", "African Americans", "African americans, social conditions", "United states, social conditions, 1960-", "United states, race relations", "Middle class, united states"], "key": "/works/OL11323089W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4756808A"}}], "subject_times": ["To 1964", "1960-1980"], "type": {"key": "/type/work"}, "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2009-12-11T04:27:15.111047"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-25T12:06:24.417014"}}
+/type/work /works/OL11323118W 1 2009-12-11T04:27:15.111047 {"title": "Confesi\u00f3n de parte, literarias, sociales, notas. 1966", "created": {"type": "/type/datetime", "value": "2009-12-11T04:27:15.111047"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:27:15.111047"}, "latest_revision": 1, "key": "/works/OL11323118W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4756827A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11323195W 3 2010-12-03T13:22:51.200346 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:22:51.200346"}, "title": "Data contamination as a result of certain types of debriefing", "created": {"type": "/type/datetime", "value": "2009-12-11T04:27:15.111047"}, "subjects": ["Experimental Psychology", "Methodology", "Psychology", "Psychology, Experimental"], "latest_revision": 3, "key": "/works/OL11323195W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4756860A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11323519W 2 2010-01-20T06:20:25.350645 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:27:21.027858"}, "title": "What to read on business efficiency", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T06:20:25.350645"}, "latest_revision": 2, "key": "/works/OL11323519W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4757019A"}}], "type": {"key": "/type/work"}, "subjects": ["Bibliography", "Industrial efficiency", "Business"], "revision": 2}
+/type/work /works/OL11323965W 1 2009-12-11T04:27:21.027858 {"title": "Teaching creative art in schools", "created": {"type": "/type/datetime", "value": "2009-12-11T04:27:21.027858"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:27:21.027858"}, "latest_revision": 1, "key": "/works/OL11323965W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4757223A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11324481W 2 2010-01-20T06:24:34.152680 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:27:27.909823"}, "title": "Photographic information recording = Photographische Informationsaufzeichnung", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T06:24:34.152680"}, "latest_revision": 2, "key": "/works/OL11324481W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4757473A"}}], "type": {"key": "/type/work"}, "subjects": ["Photography", "Processing", "Printing processes"], "revision": 2}
+/type/work /works/OL11324683W 4 2022-08-05T05:20:21.556119 {"title": "Winding sheet", "subjects": ["Fiction in English", "Fiction, political", "Fiction, thrillers, general"], "key": "/works/OL11324683W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4757593A"}}], "type": {"key": "/type/work"}, "covers": [12853442], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T04:27:27.909823"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-05T05:20:21.556119"}}
+/type/work /works/OL11324783W 3 2010-12-03T13:23:17.561245 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:23:17.561245"}, "title": "A history of Indiana State Teachers College", "created": {"type": "/type/datetime", "value": "2009-12-11T04:27:27.909823"}, "subjects": ["History", "Indiana State College"], "latest_revision": 3, "key": "/works/OL11324783W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4757664A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11325230W 2 2010-01-20T06:24:34.152680 {"title": "In quest of the Doones", "created": {"type": "/type/datetime", "value": "2009-12-11T04:27:27.909823"}, "subject_places": ["Exmoor", "England"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T06:24:34.152680"}, "latest_revision": 2, "key": "/works/OL11325230W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4757917A"}}], "subject_people": ["R. D. Blackmore"], "type": {"key": "/type/work"}, "subjects": ["Homes and haunts"], "revision": 2}
+/type/work /works/OL11325276W 2 2010-01-20T06:24:34.152680 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:27:33.488408"}, "title": "FMR investigation of interlayer coupling in Fe/Mo multilayers", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T06:24:34.152680"}, "latest_revision": 2, "key": "/works/OL11325276W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4757930A"}}], "type": {"key": "/type/work"}, "subjects": ["Coupling constants", "Ferromagnetism", "Physics"], "revision": 2}
+/type/work /works/OL11325294W 2 2010-01-20T06:24:34.152680 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:27:33.488408"}, "title": "The investigation of the evolution of the beam fan in barium titanate through image processing", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T06:24:34.152680"}, "latest_revision": 2, "key": "/works/OL11325294W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4757943A"}}], "type": {"key": "/type/work"}, "subjects": ["Beam dynamics", "Physics", "Photorefractive materials"], "revision": 2}
+/type/work /works/OL11325329W 1 2009-12-11T04:27:33.488408 {"title": "Closed against me", "created": {"type": "/type/datetime", "value": "2009-12-11T04:27:33.488408"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:27:33.488408"}, "latest_revision": 1, "key": "/works/OL11325329W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4757964A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1132556W 2 2010-01-20T06:29:50.766021 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:33:28.107853"}, "title": "The distribution of aboriginal tribes and languages in northwestern Mexico", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T06:29:50.766021"}, "latest_revision": 2, "key": "/works/OL1132556W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL115571A"}}], "type": {"key": "/type/work"}, "subjects": ["Indians of Mexico", "Languages"], "revision": 2}
+/type/work /works/OL11326190W 4 2022-12-17T19:50:56.212993 {"subjects": ["Fiction in English", "Fiction", "Presidents", "Fiction, general"], "subject_people": ["Franklin D. Roosevelt (1882-1945)"], "key": "/works/OL11326190W", "title": "The night letter", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4758366A"}}], "type": {"key": "/type/work"}, "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T04:27:33.488408"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T19:50:56.212993"}}
+/type/work /works/OL11326532W 2 2010-01-20T06:29:50.766021 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:27:40.336066"}, "title": "Vneshniaia politika Sovetskogo Soiuza v period Veliko\u01d0 Otechestvenno\u01d0 vo\u01d0ny", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T06:29:50.766021"}, "latest_revision": 2, "key": "/works/OL11326532W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4758584A"}}], "subject_times": ["1917-1945"], "type": {"key": "/type/work"}, "subjects": ["Russia", "Foreign relations"], "revision": 2}
+/type/work /works/OL11326705W 2 2010-01-20T06:29:50.766021 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:27:40.336066"}, "title": "American business and the recognition of Soviet Russia, 1917-1933", "subject_places": ["United States", "Soviet Union"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T06:29:50.766021"}, "latest_revision": 2, "key": "/works/OL11326705W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4758723A"}}], "type": {"key": "/type/work"}, "subjects": ["Foreign relations", "Commerce"], "revision": 2}
+/type/work /works/OL11326895W 1 2009-12-11T04:27:40.336066 {"title": "Graining and marbling", "created": {"type": "/type/datetime", "value": "2009-12-11T04:27:40.336066"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:27:40.336066"}, "latest_revision": 1, "key": "/works/OL11326895W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4758847A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1132697W 4 2011-11-04T22:53:09.162370 {"subtitle": "Claudia Particella : romanzo storico", "last_modified": {"type": "/type/datetime", "value": "2011-11-04T22:53:09.162370"}, "latest_revision": 4, "key": "/works/OL1132697W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL115575A"}}], "created": {"type": "/type/datetime", "value": "2009-12-09T20:33:28.107853"}, "title": "L' amante del cardinale", "subjects": ["Fiction"], "subject_people": ["Claudia Particella (1596 or 7-1667)", "Carlo Emanuele Madruzzo (1599-1658)"], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL11326986W 1 2009-12-11T04:27:40.336066 {"title": "The complete guide to symptons, illness & surgery", "created": {"type": "/type/datetime", "value": "2009-12-11T04:27:40.336066"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:27:40.336066"}, "latest_revision": 1, "key": "/works/OL11326986W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4758880A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11327273W 5 2021-12-31T02:43:35.084971 {"description": {"type": "/type/text", "value": "When David Merrick, Chaplain to the Forces, was invalidated out of the army for six months, he sustained a crushing disappointment at the hands of the girl he had come home to marry....\r\n\r\nWhen David Merrick went north to Glen Croyalt, he was putting behind him the memory of an engagement heartlessly broken by his fiancee at the last minute. Although he refused to allow himself to become embittered about women in general, he meant to give his whole mind to making a success of his exacting job. \r\nBut here, in this tiny Scottish village. he was destined to find a woman he could really love - only to find, too, that she was divided from him by an apparently impassable barrier. Could he at any rate stay and help her as a friend \u2014in the teeth of local prejudice - or should he put distance between them, giving up work and love together?"}, "key": "/works/OL11327273W", "title": "The Rowan Tree", "authors": [{"author": {"key": "/authors/OL809096A"}, "type": {"key": "/type/author_role"}}], "type": {"key": "/type/work"}, "covers": [7369928], "subjects": ["Fiction", "romance"], "subject_times": ["Scotland"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2009-12-11T04:27:47.093256"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-31T02:43:35.084971"}}
+/type/work /works/OL1132728W 2 2010-01-20T06:34:18.837903 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:33:28.107853"}, "title": "Scritti politici di Benito Mussolini", "subject_places": ["Italy"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T06:34:18.837903"}, "latest_revision": 2, "key": "/works/OL1132728W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL115575A"}}], "subject_times": ["20th century"], "type": {"key": "/type/work"}, "subjects": ["Politics and government"], "revision": 2}
+/type/work /works/OL11327765W 2 2010-01-20T06:34:18.837903 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:27:47.093256"}, "title": "Recent trends in the financing of industrial pension plans", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T06:34:18.837903"}, "latest_revision": 2, "key": "/works/OL11327765W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4759421A"}}], "type": {"key": "/type/work"}, "subjects": ["Pension trusts", "Old age pensions"], "revision": 2}
+/type/work /works/OL11327910W 10 2022-06-18T04:12:28.097839 {"description": "Comfort of strangers\r\n\r\nThe shattering pain of her aunt's terminal illness was almost more than Georgia could bear. The last thing she wanted was company--but she needed a boarder to help pay the bills, now that she'd put her career on hold.\r\n\r\nMitch Fletcher's shoulders looked strong enough to lean on. So why didn't she correct his mistaken assumption that she spent her days with a married lover--rather than at her aunt's bedside? Or that it wasn't a man who caused her tears? What was Georgia afraid of? Mitch's desires--or her own?", "covers": [6655939], "key": "/works/OL11327910W", "authors": [{"author": {"key": "/authors/OL661093A"}, "type": {"key": "/type/author_role"}}], "title": "Mistaken Adversary", "subjects": ["Fiction, romance, contemporary", "Fiction, romance, general"], "type": {"key": "/type/work"}, "subject_people": ["Georgia", "Mitch Fletcher"], "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2009-12-11T04:27:47.093256"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-18T04:12:28.097839"}}
+/type/work /works/OL1132804W 3 2010-12-03T19:34:31.183260 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:33:28.107853"}, "subject_places": ["Italy", "Marche"], "subjects": ["Painting", "Painting, Renaissance", "Renaissance Painting"], "latest_revision": 3, "key": "/works/OL1132804W", "title": "Die Malerei des 15. Jahrhunderts in den italienischen Marken", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL115581A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T19:34:31.183260"}, "revision": 3}
+/type/work /works/OL11328223W 3 2010-12-03T14:25:18.823651 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:27:47.093256"}, "subject_places": ["Iraq", "United States"], "subjects": ["American Economic sanctions", "Economic policy", "Economic sanctions, American", "Foreign relations"], "latest_revision": 3, "key": "/works/OL11328223W", "title": "Congress and Iraq, 1990", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4759699A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:25:18.823651"}, "revision": 3}
+/type/work /works/OL11328570W 2 2010-01-20T06:34:18.837903 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:27:54.238214"}, "title": "T\u0101r\u012bkh al-Mad\u012bnah", "subject_places": ["Medina (Saudi Arabia)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T06:34:18.837903"}, "latest_revision": 2, "key": "/works/OL11328570W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4759918A"}}], "type": {"key": "/type/work"}, "subjects": ["Early works to 1800", "Description and travel", "History"], "revision": 2}
+/type/work /works/OL11328705W 2 2010-01-20T06:34:18.837903 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:27:54.238214"}, "title": "Hospital office practice", "subject_places": ["England"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T06:34:18.837903"}, "latest_revision": 2, "key": "/works/OL11328705W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4760001A"}}], "type": {"key": "/type/work"}, "subjects": ["Medical secretaries", "Administration", "Hospitals", "Office practice"], "revision": 2}
+/type/work /works/OL11328730W 1 2009-12-11T04:27:54.238214 {"title": "The case for Nurse Sheridan", "created": {"type": "/type/datetime", "value": "2009-12-11T04:27:54.238214"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:27:54.238214"}, "latest_revision": 1, "key": "/works/OL11328730W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4760014A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11328886W 1 2009-12-11T04:27:54.238214 {"title": "The turbulent way", "created": {"type": "/type/datetime", "value": "2009-12-11T04:27:54.238214"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:27:54.238214"}, "latest_revision": 1, "key": "/works/OL11328886W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4760150A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1132908W 5 2020-08-11T07:21:36.969477 {"last_modified": {"type": "/type/datetime", "value": "2020-08-11T07:21:36.969477"}, "title": "Mezzo secolo di patriotismo", "created": {"type": "/type/datetime", "value": "2009-12-09T20:33:28.107853"}, "covers": [5863664], "subject_places": ["Italy"], "subjects": ["History"], "subject_people": ["Francesco Melzi d'Eril"], "key": "/works/OL1132908W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL115586A"}}], "latest_revision": 5, "subject_times": ["1848-1870", "1789-1815"], "type": {"key": "/type/work"}, "revision": 5}
+/type/work /works/OL11329278W 2 2010-01-20T06:38:56.845355 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:28:02.007282"}, "title": "Forest statistics for Mississippi Delta counties, 1994", "subject_places": ["Mississippi", "Delta (Region)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T06:38:56.845355"}, "latest_revision": 2, "key": "/works/OL11329278W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4760440A"}}], "type": {"key": "/type/work"}, "subjects": ["Statistics", "Forests and forestry"], "revision": 2}
+/type/work /works/OL11329503W 1 2009-12-11T04:28:02.007282 {"title": "What's the Use?", "created": {"type": "/type/datetime", "value": "2009-12-11T04:28:02.007282"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:28:02.007282"}, "latest_revision": 1, "key": "/works/OL11329503W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4760605A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11329563W 2 2010-01-20T06:38:56.845355 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:28:02.007282"}, "title": "Not in front of the children", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T06:38:56.845355"}, "latest_revision": 2, "key": "/works/OL11329563W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4760645A"}}], "type": {"key": "/type/work"}, "subjects": ["Confirmation", "Instruction and study", "Church of England"], "revision": 2}
+/type/work /works/OL11329704W 3 2010-04-28T07:19:59.777300 {"title": "Social and political philosophy", "created": {"type": "/type/datetime", "value": "2009-12-11T04:28:02.007282"}, "covers": [4664620], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:19:59.777300"}, "latest_revision": 3, "key": "/works/OL11329704W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4760753A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11329759W 1 2009-12-11T04:28:02.007282 {"title": "Optical radiation from shock-compressed materials", "created": {"type": "/type/datetime", "value": "2009-12-11T04:28:02.007282"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:28:02.007282"}, "latest_revision": 1, "key": "/works/OL11329759W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4760793A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1133050W 2 2020-09-11T04:06:39.392793 {"title": "Mr. Goggles", "created": {"type": "/type/datetime", "value": "2009-12-09T20:33:36.342793"}, "covers": [9853238], "last_modified": {"type": "/type/datetime", "value": "2020-09-11T04:06:39.392793"}, "latest_revision": 2, "key": "/works/OL1133050W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL115604A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11330681W 2 2010-01-20T06:38:56.845355 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:28:10.497948"}, "title": "Fault and error latency under real workload", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T06:38:56.845355"}, "latest_revision": 2, "key": "/works/OL11330681W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4761470A"}}], "type": {"key": "/type/work"}, "subjects": ["Fault-tolerant computing", "Time lags", "Computer systems design", "Failure modes", "Error analysis", "Prediction analysis techniques", "Reliability", "Analysis of variance"], "revision": 2}
+/type/work /works/OL11331519W 2 2010-01-20T06:43:17.327950 {"title": "Bridget Riley", "created": {"type": "/type/datetime", "value": "2009-12-11T04:28:17.151704"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-20T06:43:17.327950"}, "latest_revision": 2, "key": "/works/OL11331519W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4762029A"}}], "subject_people": ["Bridget Riley (1931-)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11331794W 1 2009-12-11T04:28:17.151704 {"title": "The passion of Richard Thynne", "created": {"type": "/type/datetime", "value": "2009-12-11T04:28:17.151704"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:28:17.151704"}, "latest_revision": 1, "key": "/works/OL11331794W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4762169A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11332338W 1 2009-12-11T04:28:23.243961 {"title": "Carwell; or, Crime and sorrow", "created": {"type": "/type/datetime", "value": "2009-12-11T04:28:23.243961"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:28:23.243961"}, "latest_revision": 1, "key": "/works/OL11332338W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4762469A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11332677W 2 2010-01-20T06:47:58.919277 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:28:23.243961"}, "title": "Russian roulette", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T06:47:58.919277"}, "latest_revision": 2, "key": "/works/OL11332677W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4762620A"}}], "type": {"key": "/type/work"}, "subjects": ["Fiction in English"], "revision": 2}
+/type/work /works/OL11333384W 3 2010-12-03T13:25:43.997286 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:25:43.997286"}, "title": "Wind", "created": {"type": "/type/datetime", "value": "2009-12-11T04:28:29.374443"}, "subjects": ["Environmental aspects", "Environmental aspects of Winds", "Study and teaching (Elementary)", "Winds"], "latest_revision": 3, "key": "/works/OL11333384W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4763013A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11333474W 2 2010-01-20T06:47:58.919277 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:28:29.374443"}, "title": "Operation Sea Signal", "subject_places": ["Caribbean Area", "United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T06:47:58.919277"}, "latest_revision": 2, "key": "/works/OL11333474W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4763082A"}}], "type": {"key": "/type/work"}, "subjects": ["Foreign relations", "Emigration and immigration"], "revision": 2}
+/type/work /works/OL1133369W 3 2010-04-28T07:19:59.777300 {"title": "Il trionfo della morte", "created": {"type": "/type/datetime", "value": "2009-12-09T20:33:36.342793"}, "covers": [4153770], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:19:59.777300"}, "latest_revision": 3, "key": "/works/OL1133369W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL115632A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11333871W 2 2010-12-08T03:44:45.999123 {"title": "Centenary at Jalna", "created": {"type": "/type/datetime", "value": "2009-12-11T04:28:29.374443"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-08T03:44:45.999123"}, "latest_revision": 2, "key": "/works/OL11333871W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL943084A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11334046W 1 2009-12-11T04:28:29.374443 {"title": "The golden hawk", "created": {"type": "/type/datetime", "value": "2009-12-11T04:28:29.374443"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:28:29.374443"}, "latest_revision": 1, "key": "/works/OL11334046W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4763327A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11334053W 1 2009-12-11T04:28:29.374443 {"title": "An odour of sanctity", "created": {"type": "/type/datetime", "value": "2009-12-11T04:28:29.374443"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:28:29.374443"}, "latest_revision": 1, "key": "/works/OL11334053W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4763327A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11334094W 2 2010-01-20T06:52:18.054875 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:28:29.374443"}, "title": "Marathi dialect texts", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T06:52:18.054875"}, "latest_revision": 2, "key": "/works/OL11334094W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4763354A"}}], "type": {"key": "/type/work"}, "subjects": ["Dialects", "Marathi language"], "revision": 2}
+/type/work /works/OL1133448W 2 2010-01-20T06:52:18.054875 {"title": "Plato, 1950-1957", "created": {"type": "/type/datetime", "value": "2009-12-09T20:33:36.342793"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-20T06:52:18.054875"}, "latest_revision": 2, "key": "/works/OL1133448W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL115642A"}}], "subject_people": ["Plato"], "type": {"key": "/type/work"}, "subjects": ["Bibliography"], "revision": 2}
+/type/work /works/OL11334797W 2 2010-01-20T06:52:18.054875 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:28:34.487107"}, "title": "Medicare Secondary Payer Program", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T06:52:18.054875"}, "latest_revision": 2, "key": "/works/OL11334797W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4763653A"}}], "type": {"key": "/type/work"}, "subjects": ["Medical care", "Medicare", "Costs", "Cost control"], "revision": 2}
+/type/work /works/OL11335476W 3 2010-12-02T17:52:04.362886 {"last_modified": {"type": "/type/datetime", "value": "2010-12-02T17:52:04.362886"}, "title": "The dawnstone", "created": {"type": "/type/datetime", "value": "2009-12-11T04:28:40.039972"}, "subjects": ["Juvenile fiction", "Talismans", "Evolution", "Stone age"], "latest_revision": 3, "key": "/works/OL11335476W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL196255A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11335591W 2 2016-07-02T19:43:54.928139 {"title": "Don't rely on Gemini", "created": {"type": "/type/datetime", "value": "2009-12-11T04:28:40.039972"}, "last_modified": {"type": "/type/datetime", "value": "2016-07-02T19:43:54.928139"}, "latest_revision": 2, "key": "/works/OL11335591W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1388184A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11335630W 1 2009-12-11T04:28:40.039972 {"title": "Master Bartlemy", "created": {"type": "/type/datetime", "value": "2009-12-11T04:28:40.039972"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:28:40.039972"}, "latest_revision": 1, "key": "/works/OL11335630W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4764025A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11335752W 2 2010-01-20T06:57:16.093424 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:28:40.039972"}, "title": "Geographische Beobachtungen an den im Kirchspiel Tyrv\u00e4\u00e4 gelegen Geh\u00f6ften und deren Gruppierung", "subject_places": ["Finland", "Tyrv\u00e4\u00e4"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T06:57:16.093424"}, "latest_revision": 2, "key": "/works/OL11335752W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4764082A"}}], "type": {"key": "/type/work"}, "subjects": ["Human geography"], "revision": 2}
+/type/work /works/OL11336352W 4 2022-12-17T05:33:54.632474 {"title": "US foreign policy and European security", "subjects": ["History", "North Atlantic Treaty Organization", "North atlantic treaty organization"], "key": "/works/OL11336352W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4764401A"}}], "type": {"key": "/type/work"}, "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T04:28:46.795091"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T05:33:54.632474"}}
+/type/work /works/OL1133647W 4 2011-11-14T23:27:30.414397 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:33:36.342793"}, "subjects": ["Theory of Knowledge", "Nature", "Philosophy", "Science"], "latest_revision": 4, "key": "/works/OL1133647W", "title": "The concept of nature, Tarner lectures delivered in Trinity college, November, 1919", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL115663A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2011-11-14T23:27:30.414397"}, "covers": [5733287], "revision": 4}
+/type/work /works/OL11336618W 3 2010-12-03T13:27:16.303640 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:27:16.303640"}, "latest_revision": 3, "key": "/works/OL11336618W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4764574A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T04:28:46.795091"}, "title": "Problemy optimal'nogo planirovaniia, proektirovaniia i upravleniia proizvodstvom", "subject_places": ["Russia"], "subjects": ["Economic policy", "Economics, Mathematical", "Industrial management", "Mathematical Economics"], "subject_times": ["1959-"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11336978W 2 2010-01-20T06:57:16.093424 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:28:46.795091"}, "title": "Theories of development", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T06:57:16.093424"}, "latest_revision": 2, "key": "/works/OL11336978W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4764800A"}}], "type": {"key": "/type/work"}, "subjects": ["Marxian economics", "Economic development"], "revision": 2}
+/type/work /works/OL11336993W 1 2009-12-11T04:28:46.795091 {"title": "Sexual Difference", "created": {"type": "/type/datetime", "value": "2009-12-11T04:28:46.795091"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:28:46.795091"}, "latest_revision": 1, "key": "/works/OL11336993W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4764811A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11338477W 1 2009-12-11T04:28:59.106160 {"title": "Sledstvennai\ufe20a\ufe21 profilaktika prestupleni\u012d: opyt, problemy, reshenii\ufe20a\ufe21", "created": {"type": "/type/datetime", "value": "2009-12-11T04:28:59.106160"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:28:59.106160"}, "latest_revision": 1, "key": "/works/OL11338477W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4765628A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11339157W 1 2009-12-11T04:28:59.106160 {"title": "Rannetretichnye tapiroobraznye Mongolii i SSSR", "created": {"type": "/type/datetime", "value": "2009-12-11T04:28:59.106160"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:28:59.106160"}, "latest_revision": 1, "key": "/works/OL11339157W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4765963A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11339319W 2 2010-01-20T07:05:15.724958 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:29:06.645341"}, "title": "Letter of the Commissioner of Agriculture, communicating, in compliance with a resolution of the Senate of the 13th instant, information in relation to the renderpest or cattle plague", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T07:05:15.724958"}, "latest_revision": 2, "key": "/works/OL11339319W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4766051A"}}], "type": {"key": "/type/work"}, "subjects": ["Veterinary medicine", "Plague", "Livestock"], "revision": 2}
+/type/work /works/OL11339536W 2 2010-01-20T07:05:15.724958 {"title": "Coloquio internacional sobre Jos\u00e9 Cadalso, Bolonia, 26-29 de Octubre de 1982", "created": {"type": "/type/datetime", "value": "2009-12-11T04:29:06.645341"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-20T07:05:15.724958"}, "latest_revision": 2, "key": "/works/OL11339536W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4766171A"}}], "subject_people": ["Jos\u00e9 Cadalso (1741-1782)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11339710W 2 2010-01-20T07:05:15.724958 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:29:06.645341"}, "title": "A defence of the Trinity", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T07:05:15.724958"}, "latest_revision": 2, "key": "/works/OL11339710W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4766248A"}}], "type": {"key": "/type/work"}, "subjects": ["History of doctrines", "Trinity"], "revision": 2}
+/type/work /works/OL11339769W 3 2010-12-03T13:28:22.293752 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:29:06.645341"}, "subject_places": ["Allen County", "Indiana"], "subjects": ["Allen County Courthouse (Fort Wayne, Ind.)", "Courthouses", "Guidebooks"], "latest_revision": 3, "key": "/works/OL11339769W", "title": "Guide to Allen County Court House", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4766280A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:28:22.293752"}, "revision": 3}
+/type/work /works/OL11339837W 2 2010-01-20T07:05:15.724958 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:29:06.645341"}, "title": "Amendments to the Airport act", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T07:05:15.724958"}, "latest_revision": 2, "key": "/works/OL11339837W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4766294A"}}], "type": {"key": "/type/work"}, "subjects": ["Aeronautics", "Law and legislation", "Airports"], "revision": 2}
+/type/work /works/OL11339980W 1 2009-12-11T04:29:06.645341 {"title": "Modern applied mathematics", "created": {"type": "/type/datetime", "value": "2009-12-11T04:29:06.645341"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:29:06.645341"}, "latest_revision": 1, "key": "/works/OL11339980W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4766317A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11340009W 2 2010-01-20T07:05:15.724958 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:29:06.645341"}, "title": "The effects of a defendant's sex and gender stereotypes on capital punishment decisions", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T07:05:15.724958"}, "latest_revision": 2, "key": "/works/OL11340009W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4766325A"}}], "type": {"key": "/type/work"}, "subjects": ["Capital punishment", "Sex differences"], "revision": 2}
+/type/work /works/OL11340129W 2 2010-01-20T07:05:15.724958 {"title": "Margaret Mead", "created": {"type": "/type/datetime", "value": "2009-12-11T04:29:06.645341"}, "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T07:05:15.724958"}, "latest_revision": 2, "key": "/works/OL11340129W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4766405A"}}], "subject_people": ["Margaret Mead (1901-1978)"], "type": {"key": "/type/work"}, "subjects": ["Biography", "Anthropologists"], "revision": 2}
+/type/work /works/OL11340308W 3 2010-12-03T14:54:35.092091 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:29:08.280209"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL11340308W", "title": "Abram G. Hoyt", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4766486A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:54:35.092091"}, "revision": 3}
+/type/work /works/OL11340327W 3 2010-12-03T14:52:24.060948 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:52:24.060948"}, "title": "Adjustment of accounts under the eight-hour law. Letter from the Secretary of the Treasury, transmitting, in response to a resolution of the House, reports of the First Comptroller and of the Commissioner of Customs upon claims arising under the bill for the adjustment of accounts under the eight-hour law", "created": {"type": "/type/datetime", "value": "2009-12-11T04:29:08.280209"}, "subjects": ["Claims", "Hours of labor", "United States", "United States. Comptroller of the Treasury"], "latest_revision": 3, "key": "/works/OL11340327W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4766486A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11340736W 3 2010-12-03T15:05:26.671428 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:29:08.280209"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL11340736W", "title": "Caroline Swan et al", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4766486A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:05:26.671428"}, "revision": 3}
+/type/work /works/OL11340976W 2 2010-01-20T07:09:24.014078 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:29:08.280209"}, "title": "Claims of Massachusetts for coast defense", "subject_places": ["Massachusetts"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T07:09:24.014078"}, "latest_revision": 2, "key": "/works/OL11340976W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4766486A"}}], "type": {"key": "/type/work"}, "subjects": ["Claims"], "revision": 2}
+/type/work /works/OL11341119W 3 2010-12-03T14:42:23.164264 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:29:08.280209"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL11341119W", "title": "David Wood, John Michel, Atkinson, Rollins & Co., Aymar & Co., Wolfe & Co., Stanwood & Reid, S. A. Way, J. D. & M. Williams, Udolphus Wolfe, Alfred Atkins, George W. Wales, and T. B. Wales & Co", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4766486A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:42:23.164264"}, "revision": 3}
+/type/work /works/OL11341335W 3 2010-12-03T15:26:55.349304 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:29:09.263757"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL11341335W", "title": "Ernest and Lottie Dunford", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4766486A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:26:55.349304"}, "revision": 3}
+/type/work /works/OL11341378W 3 2010-12-03T15:15:17.033432 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:29:09.263757"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL11341378W", "title": "Estate of John V. Schermer", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4766486A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:15:17.033432"}, "revision": 3}
+/type/work /works/OL11341640W 3 2010-12-03T15:26:26.019895 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:29:09.263757"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL11341640W", "title": "Floyd Gatton", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4766486A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:26:26.019895"}, "revision": 3}
+/type/work /works/OL11341697W 3 2010-12-03T15:26:55.349304 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:29:09.263757"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL11341697W", "title": "F. P. Bolack", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4766486A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:26:55.349304"}, "revision": 3}
+/type/work /works/OL11341929W 2 2010-01-20T07:13:18.991081 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:29:09.263757"}, "title": "G. T. and W. B. Hastings", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T07:13:18.991081"}, "latest_revision": 2, "key": "/works/OL11341929W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4766486A"}}], "type": {"key": "/type/work"}, "subjects": ["Claims", "Barges", "Navies"], "revision": 2}
+/type/work /works/OL11342320W 3 2010-12-03T15:24:44.748634 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:29:10.242083"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL11342320W", "title": "James P. Conway", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4766486A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:24:44.748634"}, "revision": 3}
+/type/work /works/OL11342650W 3 2010-12-03T15:27:23.854469 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:29:10.242083"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL11342650W", "title": "Joseph A. Ganong", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4766486A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:27:23.854469"}, "revision": 3}
+/type/work /works/OL11342794W 3 2010-12-03T14:42:23.164264 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:29:10.242083"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL11342794W", "title": "Larnett Hall", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4766486A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:42:23.164264"}, "revision": 3}
+/type/work /works/OL11342818W 2 2010-01-20T07:17:08.613010 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:29:10.242083"}, "title": "Legal representatives of five deceased clerks in Philadelphia Custom-house", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T07:17:08.613010"}, "latest_revision": 2, "key": "/works/OL11342818W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4766486A"}}], "type": {"key": "/type/work"}, "subjects": ["Clerks", "Claims", "Customs administration"], "revision": 2}
+/type/work /works/OL11343702W 3 2010-12-03T15:18:11.695215 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:29:11.332863"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL11343702W", "title": "Robert Hildebrand", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4766486A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:18:11.695215"}, "revision": 3}
+/type/work /works/OL1134374W 2 2010-04-19T21:59:06.346828 {"subtitle": "mit einigen Zus\u00e4tzen und litterarischen Anmerkungen", "title": "Winckelmanns Briefe an seine Freunde ..", "created": {"type": "/type/datetime", "value": "2009-12-09T20:33:42.909523"}, "last_modified": {"type": "/type/datetime", "value": "2010-04-19T21:59:06.346828"}, "latest_revision": 2, "key": "/works/OL1134374W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL115685A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11343925W 3 2010-12-03T15:07:50.393512 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:07:50.393512"}, "title": "Schooner Spartan. Letter from the Assistant Clerk of the Court of Claims transmitting a copy of the conclusions of law and of fact in the French spoliation cases relating to the vessel schooner Spartan, Thomas C. Howe, master", "created": {"type": "/type/datetime", "value": "2009-12-11T04:29:11.332863"}, "subjects": ["Capture at sea", "Claims", "Spartan (Ship)"], "latest_revision": 3, "key": "/works/OL11343925W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4766486A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11344019W 3 2010-12-03T15:04:05.682474 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:04:05.682474"}, "title": "Ship Venus. Letter from the Assistant Clerk of the Court of Claims, transmitting a copy of the conclusions of law and fact in the French spoliation case of ship Venus, Robert Berrill, master, against the United States", "created": {"type": "/type/datetime", "value": "2009-12-11T04:29:11.332863"}, "subjects": ["Ships", "United States", "United States. Court of Claims", "Venus (Ship)"], "latest_revision": 3, "key": "/works/OL11344019W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4766486A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11344043W 3 2010-12-03T15:16:04.618097 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:16:04.618097"}, "title": "Sloop \"Betsey.\" Letter from the Assistant Clerk of the Court of Claims, transmitting a certified copy of the findings of fact and conclusions of law in the French spoliation claims relating to the sloop \"Betsey\" in the case of the President and directors of the Insurance Co. of North America against the United States", "created": {"type": "/type/datetime", "value": "2009-12-11T04:29:11.332863"}, "subjects": ["Betsey (Ship)", "Ships", "United States", "United States. Court of Claims"], "latest_revision": 3, "key": "/works/OL11344043W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4766486A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11344127W 2 2010-01-20T07:24:53.428150 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:29:11.332863"}, "title": "Steamship Montara", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T07:24:53.428150"}, "latest_revision": 2, "key": "/works/OL11344127W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4766486A"}}], "type": {"key": "/type/work"}, "subjects": ["Steamboats", "Ships", "Tonnage fees"], "revision": 2}
+/type/work /works/OL11344808W 3 2010-12-03T14:47:56.242139 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:29:12.280332"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL11344808W", "title": "Elizabeth Fleming, Frances E. Robinson, and Mary and Margaret Johnston", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4766486A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:47:56.242139"}, "revision": 3}
+/type/work /works/OL11344855W 3 2010-12-03T14:45:28.883041 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:29:12.280332"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL11344855W", "title": "George C. Ellison", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4766486A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:45:28.883041"}, "revision": 3}
+/type/work /works/OL11345599W 1 2009-12-11T04:29:17.659355 {"title": "The Higlett booklets", "created": {"type": "/type/datetime", "value": "2009-12-11T04:29:17.659355"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:29:17.659355"}, "latest_revision": 1, "key": "/works/OL11345599W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4766547A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11345662W 2 2010-01-20T07:28:53.456663 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:29:17.659355"}, "title": "Al- Islam fi Ityubya", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T07:28:53.456663"}, "latest_revision": 2, "key": "/works/OL11345662W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4766574A"}}], "type": {"key": "/type/work"}, "subjects": ["Ethiopia", "Islam", "History"], "revision": 2}
+/type/work /works/OL11345847W 1 2009-12-11T04:29:17.659355 {"title": "Dance at your wedding", "created": {"type": "/type/datetime", "value": "2009-12-11T04:29:17.659355"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:29:17.659355"}, "latest_revision": 1, "key": "/works/OL11345847W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4766663A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11346008W 1 2009-12-11T04:29:17.659355 {"title": "Gni\ufe20e\ufe21v Bozhi\u012d", "created": {"type": "/type/datetime", "value": "2009-12-11T04:29:17.659355"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:29:17.659355"}, "latest_revision": 1, "key": "/works/OL11346008W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4766768A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11346014W 2 2010-01-20T07:28:53.456663 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:29:17.659355"}, "title": "Na\u1e25wa ta\u1e6db\u012bq mu\u02bb\u0101\u1e63ir li-far\u012b\u1e0dat al-zak\u0101h", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T07:28:53.456663"}, "latest_revision": 2, "key": "/works/OL11346014W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4766770A"}}], "type": {"key": "/type/work"}, "subjects": ["Zakat"], "revision": 2}
+/type/work /works/OL11347366W 4 2011-11-03T22:47:54.538744 {"subtitle": "hearings before the United States House Committee on Appropriations, Subcommittee on Deficiency Appropriations, Seventy-First Congress, second session, on May 13, 16, 17, 19, 21-24, 26-29, June 2, 1930", "last_modified": {"type": "/type/datetime", "value": "2011-11-03T22:47:54.538744"}, "latest_revision": 4, "key": "/works/OL11347366W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL6431040A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T04:29:41.898793"}, "title": "Second Deficiency Appropriation Bill for 1930", "subject_places": ["United States"], "subjects": ["Appropriations and expenditures, 1930", "Administrative agencies", "Finance"], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL1134737W 2 2010-01-20T07:37:07.496588 {"title": "Obras completas", "created": {"type": "/type/datetime", "value": "2009-12-09T20:33:42.909523"}, "subject_places": ["South America", "Latin America"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T07:37:07.496588"}, "latest_revision": 2, "key": "/works/OL1134737W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL115725A"}}], "subject_people": ["Sim\u00f3n Bol\u00edvar (1783-1830)"], "subject_times": ["Wars of Independence, 1806-1830"], "type": {"key": "/type/work"}, "subjects": ["History", "Correspondence", "Sources"], "revision": 2}
+/type/work /works/OL11347969W 1 2009-12-11T04:29:41.898793 {"title": "The eve of love", "created": {"type": "/type/datetime", "value": "2009-12-11T04:29:41.898793"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:29:41.898793"}, "latest_revision": 1, "key": "/works/OL11347969W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4767561A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11348063W 1 2009-12-11T04:29:41.898793 {"title": "Bind\u012b", "created": {"type": "/type/datetime", "value": "2009-12-11T04:29:41.898793"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:29:41.898793"}, "latest_revision": 1, "key": "/works/OL11348063W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4767592A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11348148W 2 2010-01-20T07:37:07.496588 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:29:41.898793"}, "title": "Student interest in national news and its relation to school courses", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T07:37:07.496588"}, "latest_revision": 2, "key": "/works/OL11348148W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4767624A"}}], "type": {"key": "/type/work"}, "subjects": ["Curricula", "Statistics", "High schools", "Elementary schools"], "revision": 2}
+/type/work /works/OL11348178W 5 2022-10-14T05:14:43.800238 {"title": "Frida Kahlo", "covers": [3011150], "subject_places": ["Mexico"], "subjects": ["Biography", "Criticism and interpretation", "Exhibitions", "Interviews", "Miami University (Oxford, Ohio)", "Painters", "Still-life painting", "Still-life painting, Mexican", "History of art & design styles: from c 1900 -", "Individual artists", "Nature in art, still life, landscapes & seascapes", "Painting & paintings", "Individual Artist", "Art", "Art & Art Instruction", "Women artists", "Naturaleza muerta (Pintura)", "Femmes artistes", "Critique et interpr\u00e9tation", "21.19 painting: other"], "subject_people": ["Frida Kahlo"], "key": "/works/OL11348178W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4767645A"}}, {"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2833543A"}}, {"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL771924A"}}], "subject_times": ["20th century"], "type": {"key": "/type/work"}, "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2009-12-11T04:29:41.898793"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-14T05:14:43.800238"}}
+/type/work /works/OL11348263W 2 2010-01-20T07:37:07.496588 {"title": "Press power: a study of Axel Springer", "created": {"type": "/type/datetime", "value": "2009-12-11T04:29:57.370926"}, "subject_places": ["Germany"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T07:37:07.496588"}, "latest_revision": 2, "key": "/works/OL11348263W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4767689A"}}], "subject_people": ["Axel Springer"], "type": {"key": "/type/work"}, "subjects": ["Journalism"], "revision": 2}
+/type/work /works/OL11348339W 2 2010-01-20T07:37:07.496588 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:29:57.370926"}, "title": "All-India rural credit survey", "subject_places": ["India"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T07:37:07.496588"}, "latest_revision": 2, "key": "/works/OL11348339W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4767736A"}}], "type": {"key": "/type/work"}, "subjects": ["Rural conditions", "Agricultural credit"], "revision": 2}
+/type/work /works/OL11348627W 2 2010-01-20T07:37:07.496588 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:29:57.370926"}, "title": "Femmes et d\u00e9veloppement", "subject_places": ["Pays de la Communaut\u00e9 \u00e9conomique europ\u00e9enne", "Pays en voie de d\u00e9veloppement"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T07:37:07.496588"}, "latest_revision": 2, "key": "/works/OL11348627W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4767867A"}}], "type": {"key": "/type/work"}, "subjects": ["Femmes dans le d\u00e9veloppement", "Coop\u00e9ration internationale", "\u00c9tude et enseignement", "Aide \u00e9conomique europ\u00e9enne"], "revision": 2}
+/type/work /works/OL11348687W 3 2021-10-04T12:09:10.358615 {"title": "Daughter of the Revolution", "key": "/works/OL11348687W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4767913A"}}], "type": {"key": "/type/work"}, "covers": [10989605], "subjects": ["Fiction, historical, general"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T04:29:57.370926"}, "last_modified": {"type": "/type/datetime", "value": "2021-10-04T12:09:10.358615"}}
+/type/work /works/OL11348743W 2 2020-06-12T05:04:04.461271 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:29:57.370926"}, "subjects": ["Jewish refugees", "Jewish children", "Jews", "Biography"], "latest_revision": 2, "key": "/works/OL11348743W", "title": "Pearls of childhood", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4767932A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-06-12T05:04:04.461271"}, "covers": [10172056], "revision": 2}
+/type/work /works/OL11348758W 2 2010-10-18T00:26:35.432135 {"title": "Nursery rhyme tales", "created": {"type": "/type/datetime", "value": "2009-12-11T04:29:57.370926"}, "last_modified": {"type": "/type/datetime", "value": "2010-10-18T00:26:35.432135"}, "latest_revision": 2, "key": "/works/OL11348758W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1191689A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11348798W 3 2010-12-03T13:26:46.536938 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:29:57.370926"}, "subject_places": ["Russia"], "subjects": ["Agricultural Insurance", "Collective farms", "Insurance, Agricultural"], "latest_revision": 3, "key": "/works/OL11348798W", "title": "Gosudarstvennoe strakhovanie imushchestva kolkhozov", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4767962A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:26:46.536938"}, "revision": 3}
+/type/work /works/OL11349149W 1 2009-12-11T04:29:57.370926 {"title": "El jordin de al Cado", "created": {"type": "/type/datetime", "value": "2009-12-11T04:29:57.370926"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:29:57.370926"}, "latest_revision": 1, "key": "/works/OL11349149W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4768128A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11349470W 4 2011-06-01T13:44:49.577871 {"last_modified": {"type": "/type/datetime", "value": "2011-06-01T13:44:49.577871"}, "latest_revision": 4, "key": "/works/OL11349470W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL697056A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T04:29:59.523598"}, "title": "A declaration of the Lords and Commons assembled in Parliament, that whatsoever souldier or souldiers shall breake open, pillage, or ransacke any mans house, under colour that they are papists, or persons dis-affected (without command of their captaine) shall be pursued and punished according to the law as felons", "subject_places": ["Great Britain"], "subjects": ["Great Britain Civil War, 1642-1649", "History", "Pamphlets", "Searches and seizures"], "subject_times": ["Civil War, 1642-1649"], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL11349868W 2 2010-01-20T07:41:14.276615 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:29:59.523598"}, "title": "The way to peace and happiness", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T07:41:14.276615"}, "latest_revision": 2, "key": "/works/OL11349868W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4768249A"}}], "type": {"key": "/type/work"}, "subjects": ["Early works to 1800", "Christian life", "Peace", "Controversial literature", "Conduct of life", "Society of Friends", "Happiness"], "revision": 2}
+/type/work /works/OL11350344W 1 2009-12-11T04:30:02.900555 {"title": "The Morton family", "created": {"type": "/type/datetime", "value": "2009-12-11T04:30:02.900555"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:30:02.900555"}, "latest_revision": 1, "key": "/works/OL11350344W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4768305A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1135037W 8 2012-11-28T11:04:02.311598 {"last_modified": {"type": "/type/datetime", "value": "2012-11-28T11:04:02.311598"}, "title": "The Gladstone diaries", "created": {"type": "/type/datetime", "value": "2009-12-09T20:33:48.261315"}, "covers": [5037510, -1], "subject_places": ["Great Britain"], "subjects": ["Biography", "Diaries", "History", "Liberal Party (Great Britain)", "Politics and government", "Prime ministers", "Sources"], "subject_people": ["W. E. Gladstone (1809-1898)"], "key": "/works/OL1135037W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL115736A"}}], "latest_revision": 8, "subject_times": ["1837-1901"], "type": {"key": "/type/work"}, "revision": 8}
+/type/work /works/OL11350693W 3 2011-06-01T21:56:59.908837 {"last_modified": {"type": "/type/datetime", "value": "2011-06-01T21:56:59.908837"}, "latest_revision": 3, "key": "/works/OL11350693W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4628390A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T04:30:02.900555"}, "title": "By the Lords Justices, a proclamation for a general fast ..", "subject_places": ["Great Britain"], "subjects": ["Proclamations", "History"], "subject_times": ["William and Mary, 1689-1702"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11350713W 4 2011-06-01T13:47:49.850376 {"last_modified": {"type": "/type/datetime", "value": "2011-06-01T13:47:49.850376"}, "latest_revision": 4, "key": "/works/OL11350713W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL322814A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T04:30:02.900555"}, "title": "An order of the house of Parliament concerning the gathering in of the pole-moneys", "subject_places": ["England", "Great Britain"], "subjects": ["Great Britain Civil War, 1642-1649", "History", "Politics and government", "Poll tax"], "subject_times": ["1642-1649", "Civil War, 1642-1649"], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL11351104W 2 2010-01-20T07:45:13.927544 {"title": "The laws and acts made in the fifth session of the first Parliament of our most high and dread soveraign William, by the grace of God, King of Scotland, England, France and Ireland, defender of the faith", "created": {"type": "/type/datetime", "value": "2009-12-11T04:30:02.900555"}, "subject_places": ["Scotland"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T07:45:13.927544"}, "latest_revision": 2, "key": "/works/OL11351104W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4768484A"}}], "subject_people": ["George Mackenzie Cromarty Earl of (1630-1714)"], "subject_times": ["17th century"], "type": {"key": "/type/work"}, "subjects": ["Politics and government"], "revision": 2}
+/type/work /works/OL11351135W 2 2010-01-20T07:45:13.927544 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:30:02.900555"}, "title": "The laws and acts of Parliament of our most high and dread sovereign Anne, by the grace of God, Queen of Scotland, England, France and Ireland, defender of the faith", "subject_places": ["Scotland"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T07:45:13.927544"}, "latest_revision": 2, "key": "/works/OL11351135W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4768484A"}}], "subject_times": ["18th century"], "type": {"key": "/type/work"}, "subjects": ["Politics and government"], "revision": 2}
+/type/work /works/OL11351597W 2 2010-01-20T07:49:41.308085 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:30:06.113388"}, "title": "Ffydd ddi-ffvant", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T07:49:41.308085"}, "latest_revision": 2, "key": "/works/OL11351597W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4768578A"}}], "subject_times": ["17th century"], "type": {"key": "/type/work"}, "subjects": ["Apologetics", "Early works to 1800", "Church history", "History"], "revision": 2}
+/type/work /works/OL11352139W 2 2010-01-20T07:49:41.308085 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:30:06.113388"}, "title": "Vitae Germanorum jureconsultorum et politicorum", "subject_places": ["Germany"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T07:49:41.308085"}, "latest_revision": 2, "key": "/works/OL11352139W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4768704A"}}], "type": {"key": "/type/work"}, "subjects": ["Lawyers", "Statesmen"], "revision": 2}
+/type/work /works/OL11352229W 3 2010-12-03T16:48:06.722242 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T16:48:06.722242"}, "title": "Dade, 1690", "created": {"type": "/type/datetime", "value": "2009-12-11T04:30:06.113388"}, "subjects": ["Almanacs, English", "Astrology", "Early works to 1800", "English Almanacs", "Ephemerides"], "latest_revision": 3, "key": "/works/OL11352229W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4768715A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11352349W 3 2010-12-03T13:31:35.760821 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:31:35.760821"}, "title": "Pond, an almanack for the year of our Lord God 1689", "created": {"type": "/type/datetime", "value": "2009-12-11T04:30:15.666844"}, "subjects": ["Almanacs, English", "Astrology", "Early works to 1800", "English Almanacs", "Ephemerides"], "latest_revision": 3, "key": "/works/OL11352349W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4768746A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1135253W 3 2020-09-11T08:08:21.996651 {"last_modified": {"type": "/type/datetime", "value": "2020-09-11T08:08:21.996651"}, "title": "The voice of warning to Christians on the ensuing election of a President of the United States", "created": {"type": "/type/datetime", "value": "2009-12-09T20:33:48.261315"}, "subject_places": ["United States", "Presidents"], "subjects": ["Campaign literature", "Politics and government", "Election", "Presidents"], "subject_people": ["Thomas Jefferson (1743-1826)"], "key": "/works/OL1135253W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL115755A"}}], "latest_revision": 3, "subject_times": ["1797-1801", "1800"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11352796W 1 2009-12-11T04:30:15.666844 {"title": "Mikroskopicheskai\ufe20a\ufe21 teorii\ufe20a\ufe21 kollektivnykh vozbuzhdeni\u012d atomnykh i\ufe20a\ufe21der", "created": {"type": "/type/datetime", "value": "2009-12-11T04:30:15.666844"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:30:15.666844"}, "latest_revision": 1, "key": "/works/OL11352796W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4768901A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11353016W 2 2010-01-20T07:53:54.323791 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:30:15.666844"}, "title": "Praxis medicin\u00e6, or, The physitians practise", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T07:53:54.323791"}, "latest_revision": 2, "key": "/works/OL11353016W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4769013A"}}], "type": {"key": "/type/work"}, "subjects": ["Medicine", "Early works to 1800"], "revision": 2}
+/type/work /works/OL11353100W 2 2010-01-20T07:53:54.323791 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:30:15.666844"}, "title": "A report of the present state of the differences in doctrinals between some dissenting ministers in London", "subject_places": ["Great Britain"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T07:53:54.323791"}, "latest_revision": 2, "key": "/works/OL11353100W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4769038A"}}], "subject_times": ["17th century"], "type": {"key": "/type/work"}, "subjects": ["Church history"], "revision": 2}
+/type/work /works/OL11353342W 2 2010-01-20T07:53:54.323791 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:30:23.415998"}, "title": "A trve coppy of a letter from the Lord Cheife Iustices in Ireland with a proclamation of the rebels therein, dated from Dublin Novem. 5, 1641", "subject_places": ["Ireland"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T07:53:54.323791"}, "latest_revision": 2, "key": "/works/OL11353342W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4769110A"}}], "subject_times": ["Rebellion of 1641"], "type": {"key": "/type/work"}, "subjects": ["History"], "revision": 2}
+/type/work /works/OL11353774W 2 2010-01-20T07:57:53.651800 {"title": "Pilkington of Uganda", "created": {"type": "/type/datetime", "value": "2009-12-11T04:30:23.415998"}, "subject_places": ["Uganda"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T07:57:53.651800"}, "latest_revision": 2, "key": "/works/OL11353774W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4769371A"}}], "subject_people": ["George Lawrence Pilkington 1865-1879"], "type": {"key": "/type/work"}, "subjects": ["Missions"], "revision": 2}
+/type/work /works/OL11354233W 2 2010-01-20T07:57:53.651800 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:30:23.415998"}, "title": "Vocational education", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T07:57:53.651800"}, "latest_revision": 2, "key": "/works/OL11354233W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4769725A"}}], "type": {"key": "/type/work"}, "subjects": ["Vocational education"], "revision": 2}
+/type/work /works/OL11354252W 1 2009-12-11T04:30:23.415998 {"title": "Das Umsetzen von Rhythmen in Bewegung", "created": {"type": "/type/datetime", "value": "2009-12-11T04:30:23.415998"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:30:23.415998"}, "latest_revision": 1, "key": "/works/OL11354252W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4769744A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11354630W 2 2010-01-20T07:57:53.651800 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:30:28.498146"}, "title": "The future state, or, A discourse attempting some display of the souls happiness, in regard to that eternally progressive knowledge, or eternal increase of knowledge, and the consequences of it, which is amongst the blessed in heaven", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T07:57:53.651800"}, "latest_revision": 2, "key": "/works/OL11354630W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4769929A"}}], "type": {"key": "/type/work"}, "subjects": ["Devotional literature"], "revision": 2}
+/type/work /works/OL11354694W 2 2010-01-20T07:57:53.651800 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:30:28.498146"}, "title": "al- Taswiyah al-\u1e63a\u02bbbah", "subject_places": ["Israel", "Arab countries"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T07:57:53.651800"}, "latest_revision": 2, "key": "/works/OL11354694W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4769968A"}}], "type": {"key": "/type/work"}, "subjects": ["Foreign relations", "Arab-Israeli conflict"], "revision": 2}
+/type/work /works/OL11354737W 1 2009-12-11T04:30:28.498146 {"title": "The rules of civility; or, the maxims of genteel behaviour, ... Newly done out of the twelfth edition in French; containing among other additions, a short treatise of the point of honour. Together with some necessary marginal annotations, ..", "created": {"type": "/type/datetime", "value": "2009-12-11T04:30:28.498146"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:30:28.498146"}, "latest_revision": 1, "key": "/works/OL11354737W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4769990A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11354757W 3 2010-12-03T13:29:48.829671 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:30:28.498146"}, "subject_places": ["England"], "subjects": ["Church and state", "England and Wales", "England and Wales. Parliament", "Oaths"], "latest_revision": 3, "key": "/works/OL11354757W", "title": "Queries of some tender conscienced Christians about the late Protestation commended to them by the House of Commons, now assembled in the High and Honourable Court of Parliament", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4769996A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:29:48.829671"}, "revision": 3}
+/type/work /works/OL11354849W 2 2010-01-20T07:57:53.651800 {"title": "A true and particular relation of the late victory obtained by Colonel Horton & Colonel Okey, against the VVelsh forces under Major Generall Langhorn", "created": {"type": "/type/datetime", "value": "2009-12-11T04:30:28.498146"}, "subject_places": ["Wales"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T07:57:53.651800"}, "latest_revision": 2, "key": "/works/OL11354849W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4770029A"}}], "subject_people": ["Thomas Horton (d. 1649)", "Rowland Laugharne (d. 1676)"], "type": {"key": "/type/work"}, "subjects": ["History"], "revision": 2}
+/type/work /works/OL1135493W 3 2020-05-17T21:43:25.695372 {"last_modified": {"type": "/type/datetime", "value": "2020-05-17T21:43:25.695372"}, "title": "Einleitung in das positive europa\u0308ische vo\u0308lkerrecht auf vertra\u0308ge und herkommen gegru\u0308ndet", "created": {"type": "/type/datetime", "value": "2009-12-09T20:33:48.261315"}, "subjects": ["International law"], "latest_revision": 3, "key": "/works/OL1135493W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4486547A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11354978W 3 2010-12-03T13:31:04.797697 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:31:04.797697"}, "title": "Tentations, their nature, danger, cure", "created": {"type": "/type/datetime", "value": "2009-12-11T04:30:28.498146"}, "subjects": ["Faith", "Religious aspects", "Religious aspects of Suicide", "Religious aspects of Usury", "Suicide", "Temptation", "Usury"], "latest_revision": 3, "key": "/works/OL11354978W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4770097A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1135546W 1 2009-12-09T20:33:48.261315 {"title": "A sermon, preached in Boston, at the annual convention of the Warren Association", "created": {"type": "/type/datetime", "value": "2009-12-09T20:33:48.261315"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T20:33:48.261315"}, "latest_revision": 1, "key": "/works/OL1135546W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL115772A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11355974W 2 2010-01-20T08:02:38.784793 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:30:32.537930"}, "title": "Prifannav sanct aidd neu Lawlyfr, o weddiau a wnaethbwyd, yn dair rhan", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T08:02:38.784793"}, "latest_revision": 2, "key": "/works/OL11355974W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4770363A"}}], "subject_times": ["17th century"], "type": {"key": "/type/work"}, "subjects": ["Christian literature", "Religious thought"], "revision": 2}
+/type/work /works/OL11356260W 1 2009-12-11T04:30:36.997142 {"title": "The conflict novel", "created": {"type": "/type/datetime", "value": "2009-12-11T04:30:36.997142"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:30:36.997142"}, "latest_revision": 1, "key": "/works/OL11356260W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4770475A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11356400W 5 2022-12-17T03:52:13.470371 {"title": "Moose music", "covers": [7880619], "key": "/works/OL11356400W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4770517A"}}], "type": {"key": "/type/work"}, "subjects": ["Children's fiction", "Moose, fiction", "Music, fiction"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2009-12-11T04:30:36.997142"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T03:52:13.470371"}}
+/type/work /works/OL11356461W 3 2020-08-03T05:37:10.785218 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:30:36.997142"}, "subjects": ["Industrial management"], "latest_revision": 3, "key": "/works/OL11356461W", "title": "Grundlagen der Betriebswirtschaftslehre", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4770530A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-08-03T05:37:10.785218"}, "covers": [9399821], "revision": 3}
+/type/work /works/OL11356481W 3 2010-04-28T07:19:59.777300 {"title": "Technische Mechanik", "created": {"type": "/type/datetime", "value": "2009-12-11T04:30:36.997142"}, "covers": [5302808], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:19:59.777300"}, "latest_revision": 3, "key": "/works/OL11356481W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4770537A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11356646W 1 2009-12-11T04:30:36.997142 {"title": "Wine, beer, and ale together by the eares", "created": {"type": "/type/datetime", "value": "2009-12-11T04:30:36.997142"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:30:36.997142"}, "latest_revision": 1, "key": "/works/OL11356646W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4770614A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL113569W 3 2022-12-12T06:24:14.553798 {"title": "Tao Xingzhi quan ji", "key": "/works/OL113569W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1218293A"}}], "type": {"key": "/type/work"}, "subjects": ["Education"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-10-18T02:13:49.247602"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-12T06:24:14.553798"}}
+/type/work /works/OL11357381W 2 2010-01-20T08:11:49.738497 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:30:42.210562"}, "title": "The description and use of a joynt-rule", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T08:11:49.738497"}, "latest_revision": 2, "key": "/works/OL11357381W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4770870A"}}], "type": {"key": "/type/work"}, "subjects": ["Quadrants (Astronomical instruments)", "Dialing", "Mathematical instruments"], "revision": 2}
+/type/work /works/OL11357434W 1 2009-12-11T04:30:42.210562 {"title": "Physiological and behavioral temperature regulation", "created": {"type": "/type/datetime", "value": "2009-12-11T04:30:42.210562"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:30:42.210562"}, "latest_revision": 1, "key": "/works/OL11357434W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4770891A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11357480W 1 2009-12-11T04:30:42.210562 {"title": "El Alamein", "created": {"type": "/type/datetime", "value": "2009-12-11T04:30:42.210562"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:30:42.210562"}, "latest_revision": 1, "key": "/works/OL11357480W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4770911A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11357697W 3 2010-12-03T14:17:27.953215 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:30:42.210562"}, "subjects": ["Ballads, English", "Early works to 1800", "English Ballads", "Man-woman relationships"], "latest_revision": 3, "key": "/works/OL11357697W", "title": "An excellent sonnet of the unfortunate loves of Hero and Leander", "subject_times": ["17th century"], "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4771003A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:17:27.953215"}, "revision": 3}
+/type/work /works/OL11358383W 2 2021-07-04T19:58:48.533486 {"title": "Operative surgery,genito-urinary system", "key": "/works/OL11358383W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1005840A"}}], "type": {"key": "/type/work"}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T04:30:47.638688"}, "last_modified": {"type": "/type/datetime", "value": "2021-07-04T19:58:48.533486"}}
+/type/work /works/OL11358786W 1 2009-12-11T04:30:47.638688 {"title": "Organised English", "created": {"type": "/type/datetime", "value": "2009-12-11T04:30:47.638688"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:30:47.638688"}, "latest_revision": 1, "key": "/works/OL11358786W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4771488A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11358868W 3 2010-12-03T16:45:43.660244 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T16:45:43.660244"}, "latest_revision": 3, "key": "/works/OL11358868W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4771516A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T04:30:47.638688"}, "title": "The Earl of Warwick's letter from aboard His Majesties ship, called the James in the downs, to an honorable lord in Parliament, dated July 4, 1642", "subject_places": ["Great Britain"], "subjects": ["Great Britain Civil War, 1642-1649", "History"], "subject_times": ["Civil War, 1642-1649"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11358957W 3 2010-12-03T14:19:44.080197 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:19:44.080197"}, "title": "Oida sou ta erga. Or, the divine fore-knowledge of our blessed Lord and Saviour Jesus Christ, display'd in his epistles to the Churches", "created": {"type": "/type/datetime", "value": "2009-12-11T04:30:47.638688"}, "subjects": ["Bible", "Catholic Church", "Commentaries", "Controversial literature", "Early works to 1800", "Prophecies"], "latest_revision": 3, "key": "/works/OL11358957W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4771548A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11360047W 4 2022-12-16T08:29:13.133305 {"subjects": ["Women, rome", "Women, political activity", "Women", "Political activity", "Femmes", "Activit\u00e9 politique", "SOCIAL SCIENCE", "Feminism & Feminist Theory", "Gesellschaft", "Frau", "Vrouwen", "Politiek", "Romeinse rijk", "Historia antiga", "Roma (sociedade)", "Legal status, laws, etc. (Roman law)"], "key": "/works/OL11360047W", "title": "Women and politics in ancient Rome", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4771944A"}}], "type": {"key": "/type/work"}, "covers": [9521111], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T04:30:52.126642"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-16T08:29:13.133305"}}
+/type/work /works/OL11360101W 1 2009-12-11T04:30:52.126642 {"title": "The Elizabethan love sonnet", "created": {"type": "/type/datetime", "value": "2009-12-11T04:30:52.126642"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:30:52.126642"}, "latest_revision": 1, "key": "/works/OL11360101W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4771958A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11360150W 2 2010-01-20T08:21:11.069874 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:30:52.126642"}, "title": "Of government and obedience as they stand directed and determined by Scripture and reason", "subject_places": ["Great Britain"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T08:21:11.069874"}, "latest_revision": 2, "key": "/works/OL11360150W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4771977A"}}], "type": {"key": "/type/work"}, "subjects": ["Religion and law", "Obedience", "Biblical teaching"], "revision": 2}
+/type/work /works/OL11360183W 1 2009-12-11T04:30:52.126642 {"title": "When the world began", "created": {"type": "/type/datetime", "value": "2009-12-11T04:30:52.126642"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:30:52.126642"}, "latest_revision": 1, "key": "/works/OL11360183W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4772000A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11360230W 1 2009-12-11T04:30:52.126642 {"title": "Another look at the \"Great Betrayal\": Agrarian reformers and agricultural policy in Britain", "created": {"type": "/type/datetime", "value": "2009-12-11T04:30:52.126642"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:30:52.126642"}, "latest_revision": 1, "key": "/works/OL11360230W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4772017A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11360651W 3 2010-12-03T13:31:35.760821 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:31:35.760821"}, "title": "A defence of the ordinations and ministry of the Church of England", "created": {"type": "/type/datetime", "value": "2009-12-11T04:30:56.906106"}, "subjects": ["Church of England", "Clergy", "Controversial literature", "Ordination"], "latest_revision": 3, "key": "/works/OL11360651W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4772164A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11360798W 3 2010-12-03T14:18:20.061361 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:30:56.906106"}, "subjects": ["Apologetic works", "Congregational churches", "Doctrinal Theology", "Early works to 1800", "Theology, Doctrinal"], "subject_people": ["John Goodwin (1594?-1665)"], "key": "/works/OL11360798W", "title": "A compendious answer to a book called A brief survay of the judgement of Mr. John Goodvvin, and the Church of God walking with him", "latest_revision": 3, "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4772225A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:18:20.061361"}, "revision": 3}
+/type/work /works/OL11360996W 2 2010-12-03T13:33:26.493472 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:33:26.493472"}, "title": "Obsequium et Veritas, or, A dialogue between London and Southwark, concerning the sitting and dissolutuion of the last Parliament at Oxford, March 21st, 1681", "created": {"type": "/type/datetime", "value": "2009-12-11T04:30:56.906106"}, "subjects": ["England and Wales", "England and Wales. Parliament"], "latest_revision": 2, "key": "/works/OL11360996W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4772290A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11361097W 1 2009-12-11T04:30:56.906106 {"title": "Tho. Masteri ... Iter boreale", "created": {"type": "/type/datetime", "value": "2009-12-11T04:30:56.906106"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:30:56.906106"}, "latest_revision": 1, "key": "/works/OL11361097W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4772338A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11361153W 2 2010-01-20T08:21:11.069874 {"title": "Notes on Blake's poetry", "created": {"type": "/type/datetime", "value": "2009-12-11T04:30:56.906106"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-20T08:21:11.069874"}, "latest_revision": 2, "key": "/works/OL11361153W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4772364A"}}], "subject_people": ["William Blake (1757-1827)"], "type": {"key": "/type/work"}, "subjects": ["Study and teaching", "Outlines, syllabi"], "revision": 2}
+/type/work /works/OL11361219W 1 2009-12-11T04:30:56.906106 {"title": "English courts of law", "created": {"type": "/type/datetime", "value": "2009-12-11T04:30:56.906106"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:30:56.906106"}, "latest_revision": 1, "key": "/works/OL11361219W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4772408A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11361253W 1 2009-12-11T04:30:56.906106 {"title": "Guide to business contracts in Nigeria", "created": {"type": "/type/datetime", "value": "2009-12-11T04:30:56.906106"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:30:56.906106"}, "latest_revision": 1, "key": "/works/OL11361253W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4772421A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1136187W 3 2010-07-20T14:08:39.533330 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:33:55.298698"}, "title": "Schriften zur Kunstgeschichte in Kassel", "subject_places": ["Germany", "Kassel", "Kassel (Germany)", "Hesse"], "last_modified": {"type": "/type/datetime", "value": "2010-07-20T14:08:39.533330"}, "latest_revision": 3, "key": "/works/OL1136187W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL115816A"}}], "type": {"key": "/type/work"}, "subjects": ["Art", "Collectors and collecting", "Jews", "Ethnic relations", "History", "Art, German", "Jewish art and symbolism", "German Art"], "revision": 3}
+/type/work /works/OL11361888W 2 2010-01-20T08:25:46.735876 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:31:02.130913"}, "title": "Progressive lessons in Hebrew", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T08:25:46.735876"}, "latest_revision": 2, "key": "/works/OL11361888W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4772702A"}}], "type": {"key": "/type/work"}, "subjects": ["Hebrew language", "Grammar"], "revision": 2}
+/type/work /works/OL11362047W 4 2011-07-10T17:09:36.976006 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:31:02.130913"}, "subjects": ["Fiction in English"], "subtitle": "The Australians", "key": "/works/OL11362047W", "title": "The Exiles", "latest_revision": 4, "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1778944A"}}, {"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL732677A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2011-07-10T17:09:36.976006"}, "revision": 4}
+/type/work /works/OL11362351W 2 2010-01-20T08:25:46.735876 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:31:07.492135"}, "title": "Gusu chun", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T08:25:46.735876"}, "latest_revision": 2, "key": "/works/OL11362351W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4772913A"}}], "type": {"key": "/type/work"}, "subjects": ["Sino-Japanese War, 1937-1945", "Fiction"], "revision": 2}
+/type/work /works/OL1136235W 2 2010-01-20T08:25:46.735876 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:33:55.298698"}, "title": "Zur Orgelfrage", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T08:25:46.735876"}, "latest_revision": 2, "key": "/works/OL1136235W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL115819A"}}], "type": {"key": "/type/work"}, "subjects": ["Reform Judaism", "Customs and practices"], "revision": 2}
+/type/work /works/OL11362550W 2 2010-01-20T08:25:46.735876 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:31:07.492135"}, "title": "Della lingua toscana-romana", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T08:25:46.735876"}, "latest_revision": 2, "key": "/works/OL11362550W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4772982A"}}], "subject_times": ["1500-1800"], "type": {"key": "/type/work"}, "subjects": ["Italian language", "Grammar", "Conversation and phrase books"], "revision": 2}
+/type/work /works/OL1136265W 2 2010-01-20T08:25:46.735876 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:33:55.298698"}, "title": "Physics: foundations and frontiers", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T08:25:46.735876"}, "latest_revision": 2, "key": "/works/OL1136265W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL115823A"}}], "type": {"key": "/type/work"}, "subjects": ["Physics"], "revision": 2}
+/type/work /works/OL11363437W 2 2020-04-27T00:06:04.865415 {"title": "John Arden", "created": {"type": "/type/datetime", "value": "2009-12-11T04:31:13.522065"}, "last_modified": {"type": "/type/datetime", "value": "2020-04-27T00:06:04.865415"}, "latest_revision": 2, "key": "/works/OL11363437W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL23996A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11363794W 1 2009-12-11T04:31:13.522065 {"title": "Why are we so blest?", "created": {"type": "/type/datetime", "value": "2009-12-11T04:31:13.522065"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:31:13.522065"}, "latest_revision": 1, "key": "/works/OL11363794W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4773585A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11363889W 2 2010-01-20T08:30:42.541035 {"title": "A letter written by Dr. Holden to Mr. Graunt, concerning Mr. White's treatise De medico animarum statu", "created": {"type": "/type/datetime", "value": "2009-12-11T04:31:13.522065"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-20T08:30:42.541035"}, "latest_revision": 2, "key": "/works/OL11363889W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4773638A"}}], "subject_people": ["Thomas White (1593-1676)", "John Graunt (1620-1674)"], "type": {"key": "/type/work"}, "subjects": ["Early works to 1800"], "revision": 2}
+/type/work /works/OL11364364W 3 2010-12-03T13:37:02.184468 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:31:18.787793"}, "subject_places": ["Connecticut"], "subjects": ["Baptists", "Congresses", "Danbury Baptist Association"], "latest_revision": 3, "key": "/works/OL11364364W", "title": "Minutes of the Danbury Baptist Association ... in Suffield (Connecticut), October ... 1813", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4773806A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:37:02.184468"}, "revision": 3}
+/type/work /works/OL1136446W 2 2010-01-20T08:35:24.415145 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:33:55.298698"}, "title": "Weltpolitik vor, in und nach dem Kriege", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T08:35:24.415145"}, "latest_revision": 2, "key": "/works/OL1136446W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL115831A"}}], "subject_times": ["1871-1918"], "type": {"key": "/type/work"}, "subjects": ["Europe", "Politics and government", "World politics", "World War, 1914-1918"], "revision": 2}
+/type/work /works/OL11364544W 4 2012-06-08T23:01:34.642934 {"last_modified": {"type": "/type/datetime", "value": "2012-06-08T23:01:34.642934"}, "latest_revision": 4, "key": "/works/OL11364544W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL120735A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T04:31:18.787793"}, "title": "A bill to amend the 37th section of chapter 61 of the code (edition of 1860)", "subject_places": ["Virginia"], "subjects": ["Fines (Penalties)", "History", "Virginia Civil War, 1861-1865"], "subject_times": ["Civil War, 1861-1865"], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL11364883W 1 2009-12-11T04:31:18.787793 {"title": "Concise chemical thermodynamics", "created": {"type": "/type/datetime", "value": "2009-12-11T04:31:18.787793"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:31:18.787793"}, "latest_revision": 1, "key": "/works/OL11364883W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4774021A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11364920W 3 2012-05-19T13:38:20.731530 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:31:18.787793"}, "subject_places": ["Pennsylvania"], "subjects": ["Economic conditions"], "latest_revision": 3, "key": "/works/OL11364920W", "title": "Report &c", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL438929A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-19T13:38:20.731530"}, "revision": 3}
+/type/work /works/OL11364978W 3 2010-12-03T13:37:55.819809 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:31:18.787793"}, "subject_places": ["Maine"], "subjects": ["Baptists", "Congresses", "Lincoln Association"], "latest_revision": 3, "key": "/works/OL11364978W", "title": "Minutes of the Lincoln Association, held at Warren, September ... 1816", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4774052A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:37:55.819809"}, "revision": 3}
+/type/work /works/OL11365237W 2 2010-01-20T08:35:24.415145 {"title": "\u02bbAbd All\u0101h La\u1e25\u1e25\u016bd bayna al-adab wa-al-q\u0101n\u016bn", "created": {"type": "/type/datetime", "value": "2009-12-11T04:31:18.787793"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-20T08:35:24.415145"}, "latest_revision": 2, "key": "/works/OL11365237W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4774168A"}}], "subject_people": ["La\u1e25\u1e25\u016bd, \u02bbAbd All\u0101h (b. 1899)"], "type": {"key": "/type/work"}, "subjects": ["Criticism and interpretation"], "revision": 2}
+/type/work /works/OL11365693W 2 2010-01-20T08:35:24.415145 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:31:22.646714"}, "title": "A new and concise system of book-keeping according the Italian method of double entry", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T08:35:24.415145"}, "latest_revision": 2, "key": "/works/OL11365693W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4774412A"}}], "type": {"key": "/type/work"}, "subjects": ["Bookkeeping"], "revision": 2}
+/type/work /works/OL11365840W 2 2010-01-20T08:39:27.280389 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:31:22.646714"}, "title": "Amending the one hundred and eighteenth article of war", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T08:39:27.280389"}, "latest_revision": 2, "key": "/works/OL11365840W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4774429A"}}], "type": {"key": "/type/work"}, "subjects": ["Soldiers", "War", "Armed Forces"], "revision": 2}
+/type/work /works/OL11365877W 3 2010-12-03T15:01:50.303688 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:31:22.646714"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL11365877W", "title": "Andrew V. Sende", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4774429A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:01:50.303688"}, "revision": 3}
+/type/work /works/OL11366083W 2 2010-01-20T08:39:27.280389 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:31:22.646714"}, "title": "Bronze portrait busts of officers in Vicksburg National Park", "subject_places": ["Vicksburg National Military Park (Miss.)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T08:39:27.280389"}, "latest_revision": 2, "key": "/works/OL11366083W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4774429A"}}], "type": {"key": "/type/work"}, "subjects": ["Armed Forces", "Officers", "Monuments"], "revision": 2}
+/type/work /works/OL11366342W 3 2010-12-03T15:13:24.377829 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:31:23.741568"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL11366342W", "title": "Corwin M. Holt", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4774429A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:13:24.377829"}, "revision": 3}
+/type/work /works/OL11366454W 2 2010-01-20T08:39:27.280389 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:31:23.741568"}, "title": "Dr. James B. Ferguson", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T08:39:27.280389"}, "latest_revision": 2, "key": "/works/OL11366454W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4774429A"}}], "type": {"key": "/type/work"}, "subjects": ["Medical personnel", "Armies", "Military pensions"], "revision": 2}
+/type/work /works/OL11367050W 3 2010-12-03T15:15:17.033432 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:31:23.741568"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL11367050W", "title": "James J. Elliott", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4774429A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:15:17.033432"}, "revision": 3}
+/type/work /works/OL11367556W 3 2010-12-03T15:01:05.050261 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:31:24.862698"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL11367556W", "title": "N. Ward Cady", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4774429A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:01:05.050261"}, "revision": 3}
+/type/work /works/OL11367654W 3 2010-12-03T14:44:59.812476 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:31:24.862698"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL11367654W", "title": "Petition of Anna Ella Carroll, praying compensation for suggesting certain plans of operation for the armies of the United States during the late war", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4774429A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:44:59.812476"}, "revision": 3}
+/type/work /works/OL11367759W 2 2010-01-20T08:48:08.176318 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:31:24.862698"}, "title": "Purchase of military stores and supplies", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T08:48:08.176318"}, "latest_revision": 2, "key": "/works/OL11367759W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4774429A"}}], "type": {"key": "/type/work"}, "subjects": ["Government property", "Military supplies"], "revision": 2}
+/type/work /works/OL11367974W 2 2010-01-20T08:48:08.176318 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:31:24.862698"}, "title": "Right of way to the Alameda Belt Line across the Benton Field Military Reservation, Calif", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T08:48:08.176318"}, "latest_revision": 2, "key": "/works/OL11367974W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4774429A"}}], "type": {"key": "/type/work"}, "subjects": ["Right of way", "Military bases"], "revision": 2}
+/type/work /works/OL11368011W 2 2010-01-20T08:48:08.176318 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:31:24.862698"}, "title": "Robert Williams and others", "subject_places": ["Washington (State)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T08:48:08.176318"}, "latest_revision": 2, "key": "/works/OL11368011W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4774429A"}}], "type": {"key": "/type/work"}, "subjects": ["Military decorations", "Warfare", "Indians of North America"], "revision": 2}
+/type/work /works/OL11368566W 3 2010-12-03T15:24:13.564730 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:31:26.772775"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL11368566W", "title": "William Taylor Coburn", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4774429A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:24:13.564730"}, "revision": 3}
+/type/work /works/OL11368818W 2 2010-01-20T08:52:51.800999 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:31:26.772775"}, "title": "A national cemetery in France", "subject_places": ["France"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T08:52:51.800999"}, "latest_revision": 2, "key": "/works/OL11368818W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4774429A"}}], "type": {"key": "/type/work"}, "subjects": ["Cemeteries"], "revision": 2}
+/type/work /works/OL11368975W 3 2010-12-03T15:17:04.575442 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:31:26.772775"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL11368975W", "title": "John Chick", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4774429A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:17:04.575442"}, "revision": 3}
+/type/work /works/OL11368983W 3 2010-12-03T15:02:25.452944 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:31:26.772775"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL11368983W", "title": "Joseph W. Carmack", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4774429A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:02:25.452944"}, "revision": 3}
+/type/work /works/OL11369190W 2 2018-11-06T05:25:09.084102 {"title": "The hellraisers", "created": {"type": "/type/datetime", "value": "2009-12-11T04:31:26.772775"}, "last_modified": {"type": "/type/datetime", "value": "2018-11-06T05:25:09.084102"}, "latest_revision": 2, "key": "/works/OL11369190W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2725341A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11369374W 2 2010-11-04T22:24:52.114252 {"title": "The keys of the kingdom", "created": {"type": "/type/datetime", "value": "2009-12-11T04:31:32.570979"}, "last_modified": {"type": "/type/datetime", "value": "2010-11-04T22:24:52.114252"}, "latest_revision": 2, "key": "/works/OL11369374W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL795451A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11369413W 1 2009-12-11T04:31:32.570979 {"title": "The Scottish exiles", "created": {"type": "/type/datetime", "value": "2009-12-11T04:31:32.570979"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:31:32.570979"}, "latest_revision": 1, "key": "/works/OL11369413W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4774568A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11369528W 3 2010-12-03T13:33:26.493472 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:33:26.493472"}, "title": "Elements of military sketching and map reading", "created": {"type": "/type/datetime", "value": "2009-12-11T04:31:32.570979"}, "subjects": ["Maps, Military", "Military Maps", "Military topography"], "latest_revision": 3, "key": "/works/OL11369528W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4774625A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1136975W 2 2010-12-06T04:47:10.391641 {"last_modified": {"type": "/type/datetime", "value": "2010-12-06T04:47:10.391641"}, "title": "A study course on the League of Nations", "created": {"type": "/type/datetime", "value": "2009-12-09T20:34:03.015514"}, "subjects": ["League of Nations"], "latest_revision": 2, "key": "/works/OL1136975W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL115862A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL1136988W 3 2020-08-18T11:53:25.836659 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:34:03.015514"}, "subject_places": ["Joshua Tree National Park", "Joshua Tree National Park (Calif.)", "California"], "subjects": ["Desert animals", "Joshua tree national monument (calif.)"], "latest_revision": 3, "key": "/works/OL1136988W", "title": "The lives of desert animals in Joshua Tree National Monument", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL115864A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-08-18T11:53:25.836659"}, "revision": 3}
+/type/work /works/OL11369988W 1 2009-12-11T04:31:32.570979 {"title": "Little pickaninnies", "created": {"type": "/type/datetime", "value": "2009-12-11T04:31:32.570979"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:31:32.570979"}, "latest_revision": 1, "key": "/works/OL11369988W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4774860A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11370058W 2 2010-01-20T08:58:19.776187 {"title": "A short sketch of the life of the Hon. Thomas D'Arcy McGee", "created": {"type": "/type/datetime", "value": "2009-12-11T04:31:32.570979"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-20T08:58:19.776187"}, "latest_revision": 2, "key": "/works/OL11370058W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4774910A"}}], "subject_people": ["Thomas D'Arcy McGee (1825-1868)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11370220W 4 2022-12-17T03:33:27.082484 {"title": "Workaholics", "subjects": ["Psychological aspects", "Psychological aspects of Work", "Work", "Work, psychological aspects", "Workaholism"], "key": "/works/OL11370220W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4775010A"}}], "type": {"key": "/type/work"}, "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T04:31:32.570979"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T03:33:27.082484"}}
+/type/work /works/OL11371365W 3 2010-12-03T13:45:05.450404 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:45:05.450404"}, "latest_revision": 3, "key": "/works/OL11371365W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4775598A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T04:31:45.280742"}, "title": "[The] signs of the times discerned and improved", "subject_places": ["United States"], "subjects": ["American Sermons", "Christianity", "Religion", "Sermons", "Sermons, American"], "subject_times": ["19th century"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11371382W 2 2010-01-20T09:03:18.759759 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:31:45.280742"}, "title": "Pesanteur sp\u00e9cifique des corps", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T09:03:18.759759"}, "latest_revision": 2, "key": "/works/OL11371382W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4775606A"}}], "type": {"key": "/type/work"}, "subjects": ["Specific gravity", "Early works to 1800"], "revision": 2}
+/type/work /works/OL11371508W 4 2020-08-13T05:29:26.293781 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:31:45.280742"}, "subjects": ["Informatique", "Computerwiskunde", "Diskrete Mathematik", "Computer science", "Math\u00e9matiques", "Mathematics"], "latest_revision": 4, "key": "/works/OL11371508W", "title": "Discrete mathematics with applications", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4775670A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-08-13T05:29:26.293781"}, "covers": [5297036], "revision": 4}
+/type/work /works/OL11371538W 3 2010-12-03T13:34:53.314552 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:34:53.314552"}, "title": "Alphabetical catalogue of the misses and masters, who have, at any time, belonged to the academy", "created": {"type": "/type/datetime", "value": "2009-12-11T04:31:45.280742"}, "subjects": ["Alden's Academy (Portsmouth, N.H.)", "Registers"], "latest_revision": 3, "key": "/works/OL11371538W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4775684A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1137160W 3 2017-05-01T12:26:40.484563 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:34:03.015514"}, "subjects": ["Socialism in Germany"], "latest_revision": 3, "key": "/works/OL1137160W", "title": "Bringt una der Krieg dem sozialismus Na\u0308ber?", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL115882A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2017-05-01T12:26:40.484563"}, "covers": [7944193], "revision": 3}
+/type/work /works/OL11372058W 3 2010-12-03T13:33:26.493472 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:31:45.280742"}, "subject_places": ["Virginia"], "subjects": ["Finance", "Virginia", "Virginia. Governor (1802-1805 : Page)"], "latest_revision": 3, "key": "/works/OL11372058W", "title": "The report of the Committee of Finance, appointed by the House of Delegates", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4775991A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:33:26.493472"}, "revision": 3}
+/type/work /works/OL11372438W 2 2022-06-18T13:16:24.315211 {"title": "Injuries of nerves and their consequences", "key": "/works/OL11372438W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4776153A"}}], "type": {"key": "/type/work"}, "subjects": ["Nervous system, wounds and injuries"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T04:31:51.075235"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-18T13:16:24.315211"}}
+/type/work /works/OL11372578W 1 2009-12-11T04:31:51.075235 {"title": "Alone in the caves", "created": {"type": "/type/datetime", "value": "2009-12-11T04:31:51.075235"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:31:51.075235"}, "latest_revision": 1, "key": "/works/OL11372578W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4776233A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11372764W 2 2010-01-20T09:08:14.631074 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:31:51.075235"}, "title": "Daisan zenshu shi kenkyu", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T09:08:14.631074"}, "latest_revision": 2, "key": "/works/OL11372764W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4776321A"}}], "type": {"key": "/type/work"}, "subjects": ["Japan", "Zen Buddhism", "History"], "revision": 2}
+/type/work /works/OL1137284W 2 2010-01-20T09:08:14.631074 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:34:03.015514"}, "title": "La Conque\u0302te de l'Angleterre par les Normands", "subject_places": ["Great Britain"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T09:08:14.631074"}, "latest_revision": 2, "key": "/works/OL1137284W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL115895A"}}], "subject_times": ["Norman period, 1066-1154"], "type": {"key": "/type/work"}, "subjects": ["Sources", "History"], "revision": 2}
+/type/work /works/OL11372859W 2 2010-01-20T09:08:14.631074 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:31:51.075235"}, "title": "Dawr al-Markis\u012byah f\u012b al-ishtir\u0101k\u012byah al-\u02bbArab\u012byah", "subject_places": ["Arab countries"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T09:08:14.631074"}, "latest_revision": 2, "key": "/works/OL11372859W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4776364A"}}], "type": {"key": "/type/work"}, "subjects": ["Socialism"], "revision": 2}
+/type/work /works/OL11373045W 2 2020-08-30T01:18:55.401008 {"last_modified": {"type": "/type/datetime", "value": "2020-08-30T01:18:55.401008"}, "title": "Afghanistan 1900-1923", "created": {"type": "/type/datetime", "value": "2009-12-11T04:31:51.075235"}, "subjects": ["Afghanistan, foreign relations"], "latest_revision": 2, "key": "/works/OL11373045W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4776454A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11373094W 2 2019-03-10T04:28:10.192877 {"last_modified": {"type": "/type/datetime", "value": "2019-03-10T04:28:10.192877"}, "title": "The state of the nations", "created": {"type": "/type/datetime", "value": "2009-12-11T04:31:51.075235"}, "subjects": ["Economic policy", "1945-", "Addresses, essays, lectures", "Economic conditions", "Politics"], "latest_revision": 2, "key": "/works/OL11373094W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4776479A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL1137317W 2 2010-01-20T09:08:14.631074 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:34:03.015514"}, "title": "Malte", "subject_places": ["Malta"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T09:08:14.631074"}, "latest_revision": 2, "key": "/works/OL1137317W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL115895A"}}], "type": {"key": "/type/work"}, "subjects": ["Description and travel"], "revision": 2}
+/type/work /works/OL11373528W 1 2009-12-11T04:31:57.139871 {"title": "Computer Numerical Control, Concepts and Programming", "created": {"type": "/type/datetime", "value": "2009-12-11T04:31:57.139871"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:31:57.139871"}, "latest_revision": 1, "key": "/works/OL11373528W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4776713A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11373711W 2 2010-01-20T09:08:14.631074 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:31:57.139871"}, "title": "Seasonings", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T09:08:14.631074"}, "latest_revision": 2, "key": "/works/OL11373711W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4776830A"}}], "type": {"key": "/type/work"}, "subjects": ["Meditations"], "revision": 2}
+/type/work /works/OL11373743W 1 2009-12-11T04:31:57.139871 {"title": "On to maturity", "created": {"type": "/type/datetime", "value": "2009-12-11T04:31:57.139871"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:31:57.139871"}, "latest_revision": 1, "key": "/works/OL11373743W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4776845A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11373974W 1 2009-12-11T04:31:57.139871 {"title": "The Rio Hondo war", "created": {"type": "/type/datetime", "value": "2009-12-11T04:31:57.139871"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:31:57.139871"}, "latest_revision": 1, "key": "/works/OL11373974W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4776925A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11374065W 1 2009-12-11T04:31:57.139871 {"title": "Guitar", "created": {"type": "/type/datetime", "value": "2009-12-11T04:31:57.139871"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:31:57.139871"}, "latest_revision": 1, "key": "/works/OL11374065W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4776997A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11374091W 2 2010-01-20T09:08:14.631074 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:31:57.139871"}, "title": "Jogging", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T09:08:14.631074"}, "latest_revision": 2, "key": "/works/OL11374091W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4777009A"}}], "type": {"key": "/type/work"}, "subjects": ["Running"], "revision": 2}
+/type/work /works/OL11374473W 2 2010-01-20T09:08:14.631074 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:32:03.301338"}, "title": "De Loewenstein a Linares Quintana", "subject_places": ["Argentina", "Uruguay"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T09:08:14.631074"}, "latest_revision": 2, "key": "/works/OL11374473W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4777191A"}}], "subject_times": ["20th century"], "type": {"key": "/type/work"}, "subjects": ["Intellectual life"], "revision": 2}
+/type/work /works/OL11374573W 2 2010-01-20T09:12:53.161867 {"title": "Sil\u00e2hdar tarihi cild I yer isimlerinin endeksi", "created": {"type": "/type/datetime", "value": "2009-12-11T04:32:03.301338"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-20T09:12:53.161867"}, "latest_revision": 2, "key": "/works/OL11374573W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4777255A"}}], "subject_people": ["Muhammad Findiqlili (1658-1723. Silihd\u0101r t\u0101r\u012bkh\u012b)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11374644W 2 2010-01-20T09:12:53.161867 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:32:03.301338"}, "title": "Despatches from United States consuls in Campbellton, 1897-1906", "subject_places": ["Canada", "United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T09:12:53.161867"}, "latest_revision": 2, "key": "/works/OL11374644W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4777290A"}}], "type": {"key": "/type/work"}, "subjects": ["Foreign relations"], "revision": 2}
+/type/work /works/OL11374700W 1 2009-12-11T04:32:03.301338 {"title": "The congressman's daughter", "created": {"type": "/type/datetime", "value": "2009-12-11T04:32:03.301338"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:32:03.301338"}, "latest_revision": 1, "key": "/works/OL11374700W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4777313A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11374922W 3 2010-12-03T18:41:12.793143 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T18:41:12.793143"}, "title": "An oration delivered before the right, worshipful master, wardens, and brethren of the Rising Virtue Lodge of Free and Accepted Masons at Bangor, on the festival of St. John the Baptist, June 24, 5808", "created": {"type": "/type/datetime", "value": "2009-12-11T04:32:03.301338"}, "subjects": ["Freemasons", "John the Baptist's Day"], "latest_revision": 3, "key": "/works/OL11374922W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4777440A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11374993W 4 2017-12-20T08:02:55.695773 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:32:03.301338"}, "subject_places": ["United States"], "subjects": ["Technology assessment", "Military intelligence"], "latest_revision": 4, "key": "/works/OL11374993W", "title": "Avoiding surprise in an era of global technology advances", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1901196A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2017-12-20T08:02:55.695773"}, "revision": 4}
+/type/work /works/OL11374996W 7 2020-02-14T00:41:13.768856 {"covers": [6816442], "last_modified": {"type": "/type/datetime", "value": "2020-02-14T00:41:13.768856"}, "latest_revision": 7, "key": "/works/OL11374996W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1901196A"}}, {"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2632639A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T04:32:03.301338"}, "title": "A sampler of national science education standards", "subject_places": ["United States"], "subjects": ["Science", "Study and teaching", "Standards"], "type": {"key": "/type/work"}, "revision": 7}
+/type/work /works/OL11375009W 3 2010-12-03T17:06:55.390186 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T17:06:55.390186"}, "title": "A sermon delivered on the 24th August, 1809", "created": {"type": "/type/datetime", "value": "2009-12-11T04:32:03.301338"}, "subjects": ["American Sermons", "Sermons, American"], "latest_revision": 3, "key": "/works/OL11375009W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4777472A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11375242W 2 2010-12-03T13:37:28.621164 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:37:28.621164"}, "title": "El Consejo Real de Navarra en el siglo 16", "created": {"type": "/type/datetime", "value": "2009-12-11T04:32:03.301338"}, "subjects": ["Navarre (Kingdom)", "Navarre (Kingdom). Consejo Real"], "latest_revision": 2, "key": "/works/OL11375242W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4777595A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL1137549W 1 2009-12-09T20:34:03.015514 {"title": "La pierre d'Horeb, roman", "created": {"type": "/type/datetime", "value": "2009-12-09T20:34:03.015514"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T20:34:03.015514"}, "latest_revision": 1, "key": "/works/OL1137549W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL115900A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11375592W 1 2009-12-11T04:32:09.552751 {"title": "In touch with cataracts", "created": {"type": "/type/datetime", "value": "2009-12-11T04:32:09.552751"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:32:09.552751"}, "latest_revision": 1, "key": "/works/OL11375592W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4777802A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11375707W 1 2009-12-11T04:32:09.552751 {"title": "This animal is mischievous", "created": {"type": "/type/datetime", "value": "2009-12-11T04:32:09.552751"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:32:09.552751"}, "latest_revision": 1, "key": "/works/OL11375707W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4777855A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11375830W 1 2009-12-11T04:32:09.552751 {"title": "Corydalis (Papaveraceae: Fumarioideae) in Nepal", "created": {"type": "/type/datetime", "value": "2009-12-11T04:32:09.552751"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:32:09.552751"}, "latest_revision": 1, "key": "/works/OL11375830W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4777930A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11376248W 2 2010-01-20T09:12:53.161867 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:32:09.552751"}, "title": "The benefits and costs of sterling", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T09:12:53.161867"}, "latest_revision": 2, "key": "/works/OL11376248W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4778144A"}}], "type": {"key": "/type/work"}, "subjects": ["Currency question", "Sterling area"], "revision": 2}
+/type/work /works/OL11376404W 2 2010-01-20T09:17:41.415099 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:32:14.951610"}, "title": "Pepper Face, and other stories", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T09:17:41.415099"}, "latest_revision": 2, "key": "/works/OL11376404W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4778226A"}}], "type": {"key": "/type/work"}, "subjects": ["Children's stories"], "revision": 2}
+/type/work /works/OL11376461W 2 2010-01-20T09:17:41.415099 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:32:14.951610"}, "title": "Effect of dietary fiber level on the proximate composition and water-holding capacity of rabbit meat", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T09:17:41.415099"}, "latest_revision": 2, "key": "/works/OL11376461W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4778241A"}}], "type": {"key": "/type/work"}, "subjects": ["Rabbit meat"], "revision": 2}
+/type/work /works/OL11376805W 3 2010-12-03T13:37:02.184468 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:37:02.184468"}, "title": "Structural variations of the human iris and their heredity", "created": {"type": "/type/datetime", "value": "2009-12-11T04:32:14.951610"}, "subjects": ["Iris (Eye)"], "latest_revision": 3, "key": "/works/OL11376805W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4778394A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11377369W 3 2016-06-25T08:11:23.452060 {"last_modified": {"type": "/type/datetime", "value": "2016-06-25T08:11:23.452060"}, "title": "The Libertines", "created": {"type": "/type/datetime", "value": "2009-12-11T04:32:21.978411"}, "subjects": ["Fiction in English"], "latest_revision": 3, "key": "/works/OL11377369W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL766272A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11377658W 2 2018-01-01T22:52:36.184992 {"title": "Forces of nature", "created": {"type": "/type/datetime", "value": "2009-12-11T04:32:21.978411"}, "last_modified": {"type": "/type/datetime", "value": "2018-01-01T22:52:36.184992"}, "latest_revision": 2, "key": "/works/OL11377658W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL18809A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11377684W 3 2020-09-12T06:48:35.192523 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:32:21.978411"}, "subjects": ["Storms", "Juvenile literature"], "latest_revision": 3, "key": "/works/OL11377684W", "title": "Stormy weather", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL18809A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-09-12T06:48:35.192523"}, "covers": [10436392], "revision": 3}
+/type/work /works/OL11377938W 3 2010-12-03T13:37:02.184468 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:37:02.184468"}, "title": "The problem of population", "created": {"type": "/type/datetime", "value": "2009-12-11T04:32:21.978411"}, "subjects": ["Birth control", "Religious aspects", "Religious aspects of Birth control"], "latest_revision": 3, "key": "/works/OL11377938W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4778994A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11378070W 3 2010-12-03T15:04:05.682474 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:32:21.978411"}, "subject_places": ["Oregon"], "subjects": ["College teachers", "Community colleges", "Education, Higher", "Higher Education", "Research", "Staff"], "latest_revision": 3, "key": "/works/OL11378070W", "title": "Values and perceptions of community college professional staff in Oregon", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4779064A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:04:05.682474"}, "revision": 3}
+/type/work /works/OL11378296W 3 2010-12-03T14:42:23.164264 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:42:23.164264"}, "title": "Mr. Stanly's speech on the resolutions approbating the conduct of Mr. Madison submitted by Mr. Brown of Caswell", "created": {"type": "/type/datetime", "value": "2009-12-11T04:32:29.997805"}, "subject_places": ["United States"], "subjects": ["History", "United States War of 1812"], "subject_people": ["James Madison (1751-1836)"], "key": "/works/OL11378296W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4779231A"}}], "latest_revision": 3, "subject_times": ["War of 1812"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11378505W 2 2010-01-20T09:22:16.728750 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:32:29.997805"}, "title": "A short letter, to a member of Congress concerning the territory of Orleans", "subject_places": ["Louisiana"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T09:22:16.728750"}, "latest_revision": 2, "key": "/works/OL11378505W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4779373A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11378625W 2 2010-01-20T09:22:16.728750 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:32:29.997805"}, "title": "My garden dreams", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T09:22:16.728750"}, "latest_revision": 2, "key": "/works/OL11378625W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4779430A"}}], "type": {"key": "/type/work"}, "subjects": ["Gardens and gardening"], "revision": 2}
+/type/work /works/OL11378685W 3 2010-12-03T13:50:11.537821 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:50:11.537821"}, "latest_revision": 3, "key": "/works/OL11378685W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4779454A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T04:32:29.997805"}, "title": "An act to provide more efficient police regulations for the districts on the sea-board", "subject_places": ["South Carolina"], "subjects": ["History", "Military police", "South Carolina Civil War, 1861-1865"], "subject_times": ["Civil War, 1861-1865"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11378834W 1 2009-12-11T04:32:29.997805 {"title": "The development of a classification scheme for reading research and reading resources", "created": {"type": "/type/datetime", "value": "2009-12-11T04:32:29.997805"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:32:29.997805"}, "latest_revision": 1, "key": "/works/OL11378834W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4779531A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11379266W 3 2022-12-22T18:45:27.783465 {"title": "Methodist memorial", "key": "/works/OL11379266W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4779818A"}}], "type": {"key": "/type/work"}, "subjects": ["Methodists", "Biography"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T04:32:29.997805"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-22T18:45:27.783465"}}
+/type/work /works/OL11379310W 2 2021-08-17T23:40:03.366397 {"title": "Musical experience through the use of the recorder", "key": "/works/OL11379310W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4779845A"}}], "type": {"key": "/type/work"}, "subjects": ["Recorder (Musical instrument)", "Methods", "Instruction and study", "Musique", "\u00c9tude et enseignement", "Fl\u00fbte \u00e0 bec", "M\u00e9thodes"], "covers": [11683161], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T04:32:37.613355"}, "last_modified": {"type": "/type/datetime", "value": "2021-08-17T23:40:03.366397"}}
+/type/work /works/OL11380022W 1 2009-12-11T04:32:37.613355 {"title": "Stories of today", "created": {"type": "/type/datetime", "value": "2009-12-11T04:32:37.613355"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:32:37.613355"}, "latest_revision": 1, "key": "/works/OL11380022W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4780293A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11380158W 2 2010-01-20T09:26:55.179028 {"title": "Augustin und der antike Friedensgedanke", "created": {"type": "/type/datetime", "value": "2009-12-11T04:32:37.613355"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-20T09:26:55.179028"}, "latest_revision": 2, "key": "/works/OL11380158W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4780373A"}}], "subject_people": ["Augustine Saint, Bishop of Hippo"], "type": {"key": "/type/work"}, "subjects": ["Peace"], "revision": 2}
+/type/work /works/OL11380637W 3 2010-12-03T15:12:42.316080 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:32:40.882105"}, "subject_places": ["United States"], "subjects": ["Budget", "United States", "United States. Post Office Dept"], "latest_revision": 3, "key": "/works/OL11380637W", "title": "Changes in estimates of appropriation, Post-Office Department. Letter from the Acting Secretary of the Treasury, transmitting a copy of a communication from the Postmaster-General submitting Changes in estimates of appropriation", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4780661A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:12:42.316080"}, "revision": 3}
+/type/work /works/OL11380992W 2 2010-01-20T09:31:33.869307 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:32:40.882105"}, "title": "Postal savings system, letter from the Secretary of the Treasury, transmitting a copy of a communication from the Postmaster General submitting an estimate of appropriation for postal savings system for the year ending June 30, 1913", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T09:31:33.869307"}, "latest_revision": 2, "key": "/works/OL11380992W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4780661A"}}], "type": {"key": "/type/work"}, "subjects": ["Postal savings banks", "Budget"], "revision": 2}
+/type/work /works/OL11381142W 2 2010-01-20T09:31:33.869307 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:32:40.882105"}, "title": "Special request envelopes", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T09:31:33.869307"}, "latest_revision": 2, "key": "/works/OL11381142W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4780661A"}}], "type": {"key": "/type/work"}, "subjects": ["Postal service"], "revision": 2}
+/type/work /works/OL11381611W 3 2014-06-10T22:07:48.520201 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:32:46.807451"}, "subjects": ["Programming", "Commodore 64 (Computer)"], "latest_revision": 3, "key": "/works/OL11381611W", "title": "Turbocharge your Commodore 64", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4780815A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2014-06-10T22:07:48.520201"}, "covers": [7280448], "revision": 3}
+/type/work /works/OL1138212W 2 2010-01-20T09:36:08.192633 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:34:11.607239"}, "title": "A sermon delivered by request of the Female Charitable Society in Salem", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T09:36:08.192633"}, "latest_revision": 2, "key": "/works/OL1138212W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL115940A"}}], "type": {"key": "/type/work"}, "subjects": ["Charities"], "revision": 2}
+/type/work /works/OL11382214W 1 2009-12-11T04:32:46.807451 {"title": "Triolets from the trenches", "created": {"type": "/type/datetime", "value": "2009-12-11T04:32:46.807451"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:32:46.807451"}, "latest_revision": 1, "key": "/works/OL11382214W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4781164A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1138263W 3 2011-05-01T13:56:22.475716 {"last_modified": {"type": "/type/datetime", "value": "2011-05-01T13:56:22.475716"}, "title": "... Photochimie", "created": {"type": "/type/datetime", "value": "2009-12-09T20:34:11.607239"}, "subjects": ["Photochemistry"], "latest_revision": 3, "key": "/works/OL1138263W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4695869A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11382837W 1 2009-12-11T04:32:53.272114 {"title": "Anwendung des erweiterten Euklidischen Algorithmus auf Resultantenbildungen", "created": {"type": "/type/datetime", "value": "2009-12-11T04:32:53.272114"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:32:53.272114"}, "latest_revision": 1, "key": "/works/OL11382837W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4781532A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11383064W 2 2010-01-20T09:36:08.192633 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:32:53.272114"}, "title": "Ecology of feral pigs on Santa Catalina Island", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T09:36:08.192633"}, "latest_revision": 2, "key": "/works/OL11383064W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4781668A"}}], "type": {"key": "/type/work"}, "subjects": ["Suidae", "Ecology"], "revision": 2}
+/type/work /works/OL11383522W 3 2010-12-03T13:38:52.867410 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:38:52.867410"}, "title": "Abstracts, IXth International Conference on AIDS, in affiliation with the IVth STD World Congress", "created": {"type": "/type/datetime", "value": "2009-12-11T04:32:59.560490"}, "subjects": ["AIDS (Disease)", "Abstracts", "Acquired Immunodeficiency Syndrome", "Congresses", "Sexually transmitted diseases", "Treatment"], "latest_revision": 3, "key": "/works/OL11383522W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4781896A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11383530W 3 2010-12-03T13:38:52.867410 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:38:52.867410"}, "title": "Problemy teoretichesko\u01d0 fonologii", "created": {"type": "/type/datetime", "value": "2009-12-11T04:32:59.560490"}, "subjects": ["Comparative and general Grammar", "Grammar, Comparative and general", "Phonology"], "latest_revision": 3, "key": "/works/OL11383530W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4781904A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11383604W 3 2013-12-09T21:41:10.687089 {"last_modified": {"type": "/type/datetime", "value": "2013-12-09T21:41:10.687089"}, "title": "Br\u00e8ve histoire de la langue roumaine des origines \u00e0 nos jours", "created": {"type": "/type/datetime", "value": "2009-12-11T04:32:59.560490"}, "subjects": ["Romanian language", "History"], "latest_revision": 3, "key": "/works/OL11383604W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL859280A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11383901W 3 2010-04-28T07:19:59.777300 {"title": "The pledge betrayed", "created": {"type": "/type/datetime", "value": "2009-12-11T04:32:59.560490"}, "covers": [4610561], "subject_places": ["Germany"], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:19:59.777300"}, "latest_revision": 3, "key": "/works/OL11383901W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4782110A"}}], "subject_times": ["Allied occupation, 1945-"], "subjects": ["History", "Denazification"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11384551W 3 2019-03-10T04:20:58.297246 {"last_modified": {"type": "/type/datetime", "value": "2019-03-10T04:20:58.297246"}, "title": "Criteria for selection of adult recipients for heart, cadaveric kidney, and liver transplantation", "created": {"type": "/type/datetime", "value": "2009-12-11T04:33:07.248741"}, "subjects": ["Transplantation", "Heart", "Transplantation of organs, tissues", "Liver", "Organ Transplantation", "Kidneys", "Kidney Transplantation", "Patient Selection", "Medical ethics", "Liver Transplantation"], "latest_revision": 3, "key": "/works/OL11384551W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4782441A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1138482W 3 2020-09-16T11:57:39.078768 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:34:11.607239"}, "subjects": ["Credit", "Capital", "Stock exchanges", "Banks and banking"], "latest_revision": 3, "key": "/works/OL1138482W", "title": "The stock market, credit and capital formation", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL115972A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-09-16T11:57:39.078768"}, "covers": [9480792], "revision": 3}
+/type/work /works/OL11385307W 2 2010-01-20T09:45:22.567351 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:33:13.638266"}, "title": "Diabetes Mellitus", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T09:45:22.567351"}, "latest_revision": 2, "key": "/works/OL11385307W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4782921A"}}], "type": {"key": "/type/work"}, "subjects": ["Diabetes"], "revision": 2}
+/type/work /works/OL11385933W 2 2010-01-20T09:45:22.567351 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:33:13.638266"}, "title": "Le verbe grec", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T09:45:22.567351"}, "latest_revision": 2, "key": "/works/OL11385933W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4783294A"}}], "type": {"key": "/type/work"}, "subjects": ["Verb", "Greek language"], "revision": 2}
+/type/work /works/OL11385978W 2 2010-01-20T09:45:22.567351 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:33:13.638266"}, "title": "The substance of a discourse delivered at Poultney, Vermont, in the new meeting house, on the Fourth of July, 1804", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T09:45:22.567351"}, "latest_revision": 2, "key": "/works/OL11385978W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4783315A"}}], "type": {"key": "/type/work"}, "subjects": ["Fourth of July orations"], "revision": 2}
+/type/work /works/OL11386351W 4 2016-10-27T16:36:37.370466 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:33:17.536491"}, "subjects": ["Mountain warfare"], "latest_revision": 4, "key": "/works/OL11386351W", "title": "German mountain troops", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4783553A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2016-10-27T16:36:37.370466"}, "covers": [7878605], "revision": 4}
+/type/work /works/OL11386368W 2 2010-01-20T09:45:22.567351 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:33:17.536491"}, "title": "Tote Sprache, lebendige Rede", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T09:45:22.567351"}, "latest_revision": 2, "key": "/works/OL11386368W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4783566A"}}], "type": {"key": "/type/work"}, "subjects": ["Study and teaching", "Latin language", "Greek language"], "revision": 2}
+/type/work /works/OL11386536W 2 2010-01-20T09:50:07.118290 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:33:17.536491"}, "title": "Neve und neque im \u00e4lteren Latein", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T09:50:07.118290"}, "latest_revision": 2, "key": "/works/OL11386536W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4783703A"}}], "type": {"key": "/type/work"}, "subjects": ["Particles", "Latin language"], "revision": 2}
+/type/work /works/OL11386659W 2 2010-03-16T01:55:40.107248 {"subtitle": "Hearing before the Committee on Naval Affairs, United States Senate, Seventy-sixth Congress, first session, on S. 829, a bill to authorize alterations and repairs to certain naval vessels. February 16, 1939", "title": "Alterations and repairs to certain naval vessels", "created": {"type": "/type/datetime", "value": "2009-12-11T04:33:17.536491"}, "last_modified": {"type": "/type/datetime", "value": "2010-03-16T01:55:40.107248"}, "latest_revision": 2, "key": "/works/OL11386659W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4783769A"}}], "type": {"key": "/type/work"}, "subjects": ["United States", "United States. Navy"], "revision": 2}
+/type/work /works/OL11386964W 2 2010-01-20T09:50:07.118290 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:33:17.536491"}, "title": "Effect needed changes in the Navy ration", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T09:50:07.118290"}, "latest_revision": 2, "key": "/works/OL11386964W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4783769A"}}], "type": {"key": "/type/work"}, "subjects": ["Navies", "Military supplies"], "revision": 2}
+/type/work /works/OL11387363W 2 2010-01-20T09:50:07.118290 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:33:20.010882"}, "title": "Memorial of E. W. Hinman, of New York, praying the employment by government of the vessels employed in the fisheries, as particularly adapted to aid in maintaining an effective blockade", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T09:50:07.118290"}, "latest_revision": 2, "key": "/works/OL11387363W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4783769A"}}], "type": {"key": "/type/work"}, "subjects": ["Blockade", "Ships", "Fisheries"], "revision": 2}
+/type/work /works/OL11387847W 2 2010-01-20T09:54:46.063032 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:33:20.010882"}, "title": "Vice admirals of the Navy", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T09:54:46.063032"}, "latest_revision": 2, "key": "/works/OL11387847W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4783769A"}}], "type": {"key": "/type/work"}, "subjects": ["Navies", "Soldiers", "Officers"], "revision": 2}
+/type/work /works/OL11388100W 3 2010-12-03T15:32:27.031732 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:32:27.031732"}, "title": "An impartial survey of the religious clause in some burgess-oaths", "created": {"type": "/type/datetime", "value": "2009-12-11T04:33:20.010882"}, "subjects": ["Associate Synod (Scotland : 1744-1820)", "Covenants (Church polity)"], "latest_revision": 3, "key": "/works/OL11388100W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4783809A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11388455W 1 2009-12-11T04:33:27.630318 {"title": "Basal metabolism, respiration, and physical training", "created": {"type": "/type/datetime", "value": "2009-12-11T04:33:27.630318"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:33:27.630318"}, "latest_revision": 1, "key": "/works/OL11388455W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4784035A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11388499W 2 2010-01-20T09:59:36.783902 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:33:27.630318"}, "title": "Investigaci\u00f3n hist\u00f3rica de la miner\u00eda en el Ecuador", "subject_places": ["Ecuador"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T09:59:36.783902"}, "latest_revision": 2, "key": "/works/OL11388499W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4784067A"}}], "type": {"key": "/type/work"}, "subjects": ["History", "Sources", "Mines and mineral resources", "Mineral industries"], "revision": 2}
+/type/work /works/OL11388834W 4 2011-11-04T19:20:45.148692 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:33:27.630318"}, "subjects": ["Diana (Roman deity)"], "latest_revision": 4, "key": "/works/OL11388834W", "title": "Diana Phacelitis et Orestes apud Rheginos et Siculos", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4784302A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2011-11-04T19:20:45.148692"}, "covers": [6120337], "revision": 4}
+/type/work /works/OL11389258W 2 2010-01-20T09:59:36.783902 {"title": "Concha Espina y sus cr\u00edticos", "created": {"type": "/type/datetime", "value": "2009-12-11T04:33:27.630318"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-20T09:59:36.783902"}, "latest_revision": 2, "key": "/works/OL11389258W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4784551A"}}], "subject_people": ["Concha Espina (1869-1955)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11389356W 2 2010-01-20T09:59:36.783902 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:33:32.722611"}, "title": "Barnes vs. Adams", "subject_places": ["Kentucky"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T09:59:36.783902"}, "latest_revision": 2, "key": "/works/OL11389356W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4784604A"}}], "type": {"key": "/type/work"}, "subjects": ["Elections"], "revision": 2}
+/type/work /works/OL11389420W 3 2010-12-03T14:49:05.811000 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:49:05.811000"}, "title": "Expenses in connection with election contests, etc", "created": {"type": "/type/datetime", "value": "2009-12-11T04:33:32.722611"}, "subjects": ["Contested elections", "Elections", "Expenditures, Public", "Public Expenditures"], "latest_revision": 3, "key": "/works/OL11389420W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4784604A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11389446W 2 2010-01-20T09:59:36.783902 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:33:32.722611"}, "title": "G. G. Symes vs. L. S. Trimble", "subject_places": ["Kentucky"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T09:59:36.783902"}, "latest_revision": 2, "key": "/works/OL11389446W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4784604A"}}], "type": {"key": "/type/work"}, "subjects": ["Elections"], "revision": 2}
+/type/work /works/OL11389475W 2 2010-01-20T09:59:36.783902 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:33:32.722611"}, "title": "J. H. Sypher", "subject_places": ["Louisiana"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T09:59:36.783902"}, "latest_revision": 2, "key": "/works/OL11389475W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4784604A"}}], "type": {"key": "/type/work"}, "subjects": ["Elections"], "revision": 2}
+/type/work /works/OL11389509W 2 2010-01-20T09:59:36.783902 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:33:32.722611"}, "title": "Kentucky contested election", "subject_places": ["Kentucky"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T09:59:36.783902"}, "latest_revision": 2, "key": "/works/OL11389509W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4784604A"}}], "type": {"key": "/type/work"}, "subjects": ["Contested elections", "Elections"], "revision": 2}
+/type/work /works/OL11389792W 2 2010-01-20T10:05:12.165326 {"title": "Onkelos und Akylas", "created": {"type": "/type/datetime", "value": "2009-12-11T04:33:32.722611"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-20T10:05:12.165326"}, "latest_revision": 2, "key": "/works/OL11389792W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4784687A"}}], "subject_people": ["Onkelos", "Aquila (fl. 130)"], "type": {"key": "/type/work"}, "subjects": ["Targums"], "revision": 2}
+/type/work /works/OL11390057W 3 2021-11-23T10:17:50.891507 {"subtitle": "Fragen aus Diskussionen rund um d. Welt : waren Go\u0308tter auf d. Erde?", "title": "Im Kreuzverho\u0308r", "key": "/works/OL11390057W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1970832A"}}], "type": {"key": "/type/work"}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T04:33:32.722611"}, "last_modified": {"type": "/type/datetime", "value": "2021-11-23T10:17:50.891507"}}
+/type/work /works/OL1139015W 5 2020-08-12T22:34:33.553225 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:34:19.544881"}, "subjects": ["Early works to 1800", "Science", "Astronomy"], "latest_revision": 5, "key": "/works/OL1139015W", "title": "Tables and tracts", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL116016A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-08-12T22:34:33.553225"}, "covers": [5836927], "revision": 5}
+/type/work /works/OL11390319W 1 2009-12-11T04:33:40.347478 {"title": "Awards", "created": {"type": "/type/datetime", "value": "2009-12-11T04:33:40.347478"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:33:40.347478"}, "latest_revision": 1, "key": "/works/OL11390319W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4785022A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1139052W 4 2011-11-04T15:45:45.972139 {"subtitle": "povest\u02b9 ; Izbrannye pis\u02b9ma", "last_modified": {"type": "/type/datetime", "value": "2011-11-04T15:45:45.972139"}, "title": "Nimfodora Ivanovna", "created": {"type": "/type/datetime", "value": "2009-12-09T20:34:19.544881"}, "subjects": ["Correspondence", "Authors, Russian", "Russian Authors"], "subject_people": ["Ivan Aleksandrovich Goncharov (1812-1891)"], "key": "/works/OL1139052W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL116017A"}}], "latest_revision": 4, "subject_times": ["19th century"], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL11391176W 2 2010-01-20T10:10:32.324871 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:33:40.347478"}, "title": "An encomium on the ladies", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T10:10:32.324871"}, "latest_revision": 2, "key": "/works/OL11391176W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4785559A"}}], "type": {"key": "/type/work"}, "subjects": ["Conduct of life", "Feminine beauty (Aesthetics)"], "revision": 2}
+/type/work /works/OL11391373W 2 2010-01-20T10:10:32.324871 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:33:47.713223"}, "title": "Eine Verhandlung von der \u00e4usserlichen Wasser-Taufe", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T10:10:32.324871"}, "latest_revision": 2, "key": "/works/OL11391373W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4785702A"}}], "type": {"key": "/type/work"}, "subjects": ["Mennonites", "Doctrines", "Sacraments"], "revision": 2}
+/type/work /works/OL11391567W 2 2010-01-20T10:10:32.324871 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:33:47.713223"}, "title": "Dogs in the urban environment", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T10:10:32.324871"}, "latest_revision": 2, "key": "/works/OL11391567W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4785844A"}}], "type": {"key": "/type/work"}, "subjects": ["Control", "Municipal government", "Dogs"], "revision": 2}
+/type/work /works/OL11391724W 2 2010-01-20T10:10:32.324871 {"title": "Tam\u012bm ibn Aws al-D\u0101r\u012b", "created": {"type": "/type/datetime", "value": "2009-12-11T04:33:47.713223"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-20T10:10:32.324871"}, "latest_revision": 2, "key": "/works/OL11391724W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4785933A"}}], "subject_people": ["Tam\u012bm ibn Aws al-D\u0101r\u012b (d. 660 or 61)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11391775W 3 2010-12-03T17:49:31.872511 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T17:49:31.872511"}, "title": "Zhongguo Nanyang jiao tong shi", "created": {"type": "/type/datetime", "value": "2009-12-11T04:33:47.713223"}, "subjects": ["Asia, Southeastern", "China", "Relations (general) with Asia, Southeastern", "Relations (general) with China", "Southeastern Asia"], "latest_revision": 3, "key": "/works/OL11391775W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4785942A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11391800W 3 2010-12-03T16:25:37.442460 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:33:47.713223"}, "subject_places": ["United States"], "subjects": ["Congresses", "Health promotion", "Health risk assessment", "Medicine, Preventive", "Preventive Medicine", "Preventive health services"], "latest_revision": 3, "key": "/works/OL11391800W", "title": "Health risks and reductions : the science and applications", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4785948A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T16:25:37.442460"}, "revision": 3}
+/type/work /works/OL11391904W 4 2019-02-07T15:36:01.565900 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:33:47.713223"}, "subjects": ["Gross national product", "Statistics", "National income", "Appropriations and expenditures", "Accounting"], "latest_revision": 4, "key": "/works/OL11391904W", "title": "System of national accounts. National income andexpenditure accounts. Annual estimates 1926-1986", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4785981A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2019-02-07T15:36:01.565900"}, "covers": [5308297], "revision": 4}
+/type/work /works/OL11392166W 1 2009-12-11T04:33:47.713223 {"title": "A new method of generating bandwidth limited magnetic flux waveforms", "created": {"type": "/type/datetime", "value": "2009-12-11T04:33:47.713223"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:33:47.713223"}, "latest_revision": 1, "key": "/works/OL11392166W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4786158A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11392229W 1 2009-12-11T04:33:47.713223 {"title": "Application of Markov random field theory to image coding and motion estimation", "created": {"type": "/type/datetime", "value": "2009-12-11T04:33:47.713223"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:33:47.713223"}, "latest_revision": 1, "key": "/works/OL11392229W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4786207A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11392357W 1 2009-12-11T04:33:58.271143 {"title": "Candy cook book", "created": {"type": "/type/datetime", "value": "2009-12-11T04:33:58.271143"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:33:58.271143"}, "latest_revision": 1, "key": "/works/OL11392357W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4786306A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11392827W 1 2009-12-11T04:33:58.271143 {"title": "Address at the dinner given by Cincinnati Traffic Club and Miami Valley Traffic Club", "created": {"type": "/type/datetime", "value": "2009-12-11T04:33:58.271143"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:33:58.271143"}, "latest_revision": 1, "key": "/works/OL11392827W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4786635A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11393292W 3 2020-02-28T09:49:22.310540 {"title": "Collected poems of Edwin Arlington Robinson", "created": {"type": "/type/datetime", "value": "2009-12-11T04:34:06.163018"}, "last_modified": {"type": "/type/datetime", "value": "2020-02-28T09:49:22.310540"}, "latest_revision": 3, "key": "/works/OL11393292W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4786934A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11393388W 2 2010-01-20T10:59:50.274438 {"title": "England's timely remembrancer", "created": {"type": "/type/datetime", "value": "2009-12-11T04:34:06.163018"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-20T10:59:50.274438"}, "latest_revision": 2, "key": "/works/OL11393388W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4787008A"}}], "subject_people": ["Thomas Chamberlain (1693?-1748)"], "type": {"key": "/type/work"}, "subjects": ["Visions", "Sermons", "Funeral sermons"], "revision": 2}
+/type/work /works/OL11393486W 2 2010-01-20T10:59:50.274438 {"title": "Sin and redemption", "created": {"type": "/type/datetime", "value": "2009-12-11T04:34:06.163018"}, "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T10:59:50.274438"}, "latest_revision": 2, "key": "/works/OL11393486W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4787078A"}}], "subject_people": ["George Washington (1732-1799)"], "subject_times": ["Revolution, 1775-1783"], "type": {"key": "/type/work"}, "subjects": ["Poetry", "History"], "revision": 2}
+/type/work /works/OL11393753W 1 2009-12-11T04:34:06.163018 {"title": "Republican Convention Prox", "created": {"type": "/type/datetime", "value": "2009-12-11T04:34:06.163018"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:34:06.163018"}, "latest_revision": 1, "key": "/works/OL11393753W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4787281A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11393861W 2 2010-01-20T10:59:50.274438 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:34:06.163018"}, "title": "Classroom management", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T10:59:50.274438"}, "latest_revision": 2, "key": "/works/OL11393861W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4787334A"}}], "type": {"key": "/type/work"}, "subjects": ["Classroom management"], "revision": 2}
+/type/work /works/OL11394121W 1 2009-12-11T04:34:06.163018 {"title": "Southeast Asian affairs 1993", "created": {"type": "/type/datetime", "value": "2009-12-11T04:34:06.163018"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:34:06.163018"}, "latest_revision": 1, "key": "/works/OL11394121W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4787475A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11394604W 1 2009-12-11T04:34:13.498993 {"title": "Nacer d\u00eda a d\u00eda", "created": {"type": "/type/datetime", "value": "2009-12-11T04:34:13.498993"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:34:13.498993"}, "latest_revision": 1, "key": "/works/OL11394604W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4787785A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11394783W 2 2010-01-20T11:07:58.234915 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:34:13.498993"}, "title": "Shest\u02b9desi\ufe20a\ufe21t pobednykh let, 1917-1977", "subject_places": ["Russia"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T11:07:58.234915"}, "latest_revision": 2, "key": "/works/OL11394783W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4787909A"}}], "type": {"key": "/type/work"}, "subjects": ["Statistics"], "revision": 2}
+/type/work /works/OL11395104W 2 2010-01-20T11:07:58.234915 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:34:13.498993"}, "title": "Ursprung und Gegenwart", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T11:07:58.234915"}, "latest_revision": 2, "key": "/works/OL11395104W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4788100A"}}], "type": {"key": "/type/work"}, "subjects": ["Civilization"], "revision": 2}
+/type/work /works/OL1139518W 1 2009-12-09T20:34:19.544881 {"title": "Geschichte der deutschnationalen Bewegung in Oesterreich von ihren Anfa ngen bis zum Zerfall der Monarchie", "created": {"type": "/type/datetime", "value": "2009-12-09T20:34:19.544881"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T20:34:19.544881"}, "latest_revision": 1, "key": "/works/OL1139518W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL116052A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11395645W 1 2009-12-11T04:34:21.350705 {"title": "Adams and Maegraith", "created": {"type": "/type/datetime", "value": "2009-12-11T04:34:21.350705"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:34:21.350705"}, "latest_revision": 1, "key": "/works/OL11395645W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4788452A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11396406W 2 2022-12-20T00:30:31.099863 {"title": "Layl al-bil\u0101d", "key": "/works/OL11396406W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4788960A"}}], "type": {"key": "/type/work"}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T04:34:26.529972"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-20T00:30:31.099863"}}
+/type/work /works/OL11396885W 2 2010-01-20T11:19:22.184055 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:34:26.529972"}, "title": "Bodymind", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T11:19:22.184055"}, "latest_revision": 2, "key": "/works/OL11396885W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4789240A"}}], "type": {"key": "/type/work"}, "subjects": ["Mind and body"], "revision": 2}
+/type/work /works/OL11397492W 2 2010-01-20T11:19:22.184055 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:34:27.840553"}, "title": "Capt. F. J. Baker and Capt. George W. Rees, United States Army", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T11:19:22.184055"}, "latest_revision": 2, "key": "/works/OL11397492W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4789289A"}}], "type": {"key": "/type/work"}, "subjects": ["Bills, Private", "Private bills", "Claims"], "revision": 2}
+/type/work /works/OL11397927W 2 2010-01-20T11:23:47.624127 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:34:27.840553"}, "title": "Commissioners of Judah Touro Almshouse Fund, New Orleans, LA. Letter from the Assistant Clerk of the Court of Claims transmitting a copy of the findings of the court in the case of the Board of Commissioners of the Judah Touro Almshouse Fund of New Orleans, Orleans Parish, LA., against the United States", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T11:23:47.624127"}, "latest_revision": 2, "key": "/works/OL11397927W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4789289A"}}], "type": {"key": "/type/work"}, "subjects": ["Bills, Private", "Private bills", "Claims"], "revision": 2}
+/type/work /works/OL11398263W 2 2010-01-20T11:23:47.624127 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:34:27.840553"}, "title": "Edward Kershner and others", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T11:23:47.624127"}, "latest_revision": 2, "key": "/works/OL11398263W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4789289A"}}], "type": {"key": "/type/work"}, "subjects": ["Bills, Private", "Private bills", "Claims"], "revision": 2}
+/type/work /works/OL11398601W 2 2010-01-20T11:23:47.624127 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:34:29.025792"}, "title": "Ethel G. Remington", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T11:23:47.624127"}, "latest_revision": 2, "key": "/works/OL11398601W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4789289A"}}], "type": {"key": "/type/work"}, "subjects": ["Bills, Private", "Private bills", "Claims"], "revision": 2}
+/type/work /works/OL11398767W 2 2010-01-20T11:28:16.761170 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:34:29.025792"}, "title": "Findings in case of Newton Woodyard. Letter from the Assistant Clerk of the Court of Claims transmitting a copy of the findings of the court in the case of Newton Woodyard against the United States", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T11:28:16.761170"}, "latest_revision": 2, "key": "/works/OL11398767W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4789289A"}}], "type": {"key": "/type/work"}, "subjects": ["Bills, Private", "Private bills", "Claims"], "revision": 2}
+/type/work /works/OL11398976W 2 2010-01-20T11:28:16.761170 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:34:29.025792"}, "title": "Frank Payne Selby", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T11:28:16.761170"}, "latest_revision": 2, "key": "/works/OL11398976W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4789289A"}}], "type": {"key": "/type/work"}, "subjects": ["Bills, Private", "Private bills", "Claims"], "revision": 2}
+/type/work /works/OL11399018W 2 2010-01-20T11:28:16.761170 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:34:29.025792"}, "title": "Fred H. Cotter", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T11:28:16.761170"}, "latest_revision": 2, "key": "/works/OL11399018W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4789289A"}}], "type": {"key": "/type/work"}, "subjects": ["Bills, Private", "Private bills", "Claims"], "revision": 2}
+/type/work /works/OL11400755W 2 2010-01-20T11:38:02.649671 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:34:31.751467"}, "title": "Mallory Steamship Co", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T11:38:02.649671"}, "latest_revision": 2, "key": "/works/OL11400755W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4789289A"}}], "type": {"key": "/type/work"}, "subjects": ["Shipowners", "Steamboats"], "revision": 2}
+/type/work /works/OL11400984W 2 2010-01-20T11:38:02.649671 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:34:31.751467"}, "title": "Matthew Edward Murphy", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T11:38:02.649671"}, "latest_revision": 2, "key": "/works/OL11400984W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4789289A"}}], "type": {"key": "/type/work"}, "subjects": ["Bills, Private", "Private bills", "Claims"], "revision": 2}
+/type/work /works/OL11400994W 2 2010-01-20T11:38:02.649671 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:34:31.751467"}, "title": "Maude J. Booth", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T11:38:02.649671"}, "latest_revision": 2, "key": "/works/OL11400994W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4789289A"}}], "type": {"key": "/type/work"}, "subjects": ["Bills, Private", "Private bills", "Claims"], "revision": 2}
+/type/work /works/OL1140105W 3 2010-11-25T17:28:39.167617 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:34:26.735380"}, "subject_places": ["United States"], "subjects": ["World War, 1939-1945"], "latest_revision": 3, "key": "/works/OL1140105W", "title": "Asia and democracy", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4328696A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-11-25T17:28:39.167617"}, "revision": 3}
+/type/work /works/OL11401638W 2 2010-01-20T11:42:34.954972 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:34:32.870044"}, "title": "Randall Krauss", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T11:42:34.954972"}, "latest_revision": 2, "key": "/works/OL11401638W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4789289A"}}], "type": {"key": "/type/work"}, "subjects": ["Bills, Private", "Private bills", "Claims"], "revision": 2}
+/type/work /works/OL11401730W 2 2010-01-20T11:42:34.954972 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:34:32.870044"}, "title": "Relief of North Carolina", "subject_places": ["North Carolina"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T11:42:34.954972"}, "latest_revision": 2, "key": "/works/OL11401730W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4789289A"}}], "type": {"key": "/type/work"}, "subjects": ["Claims", "Cotton"], "revision": 2}
+/type/work /works/OL11402269W 2 2010-01-20T11:42:34.954972 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:34:32.870044"}, "title": "T. B. Cowper", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T11:42:34.954972"}, "latest_revision": 2, "key": "/works/OL11402269W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4789289A"}}], "type": {"key": "/type/work"}, "subjects": ["Bills, Private", "Private bills", "Claims"], "revision": 2}
+/type/work /works/OL11402541W 2 2010-01-20T11:47:29.094464 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:34:33.887724"}, "title": "Trustees of Mount Olive Primitive Baptist Church, Philippi, W. VA. Letter from the Assistant Clerk of the Court of Claims transmitting a copy of the findings of the court in the case of trustees of the Mount Olive Primitive Baptist Church, of Philippi, W. VA, against the United States", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T11:47:29.094464"}, "latest_revision": 2, "key": "/works/OL11402541W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4789289A"}}], "type": {"key": "/type/work"}, "subjects": ["Bills, Private", "Private bills", "Claims"], "revision": 2}
+/type/work /works/OL11402573W 2 2010-01-20T11:47:29.094464 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:34:33.887724"}, "title": "Trustees of the African Methodist Episcopal Church, of Marietta, Ga", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T11:47:29.094464"}, "latest_revision": 2, "key": "/works/OL11402573W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4789289A"}}], "type": {"key": "/type/work"}, "subjects": ["Bills, Private", "Private bills", "Claims"], "revision": 2}
+/type/work /works/OL11402686W 2 2010-01-20T11:47:29.094464 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:34:33.887724"}, "title": "Vincent Baranasies", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T11:47:29.094464"}, "latest_revision": 2, "key": "/works/OL11402686W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4789289A"}}], "type": {"key": "/type/work"}, "subjects": ["Bills, Private", "Private bills", "Claims"], "revision": 2}
+/type/work /works/OL11403218W 2 2010-01-20T11:47:29.094464 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:34:33.887724"}, "title": "Catherine Ratchford", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T11:47:29.094464"}, "latest_revision": 2, "key": "/works/OL11403218W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4789289A"}}], "type": {"key": "/type/work"}, "subjects": ["Bills, Private", "Private bills", "Claims"], "revision": 2}
+/type/work /works/OL1140331W 3 2021-09-06T21:13:34.842496 {"title": "Robert Allerton Park, Monticello, Illinois", "subjects": ["Illinois. University. Robert Allerton Park", "Illinois"], "key": "/works/OL1140331W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL116108A"}}], "type": {"key": "/type/work"}, "covers": [11918829], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-09T20:34:26.735380"}, "last_modified": {"type": "/type/datetime", "value": "2021-09-06T21:13:34.842496"}}
+/type/work /works/OL11403687W 2 2010-01-20T11:51:49.703833 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:34:35.975648"}, "title": "Potomac Steamboat Company", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T11:51:49.703833"}, "latest_revision": 2, "key": "/works/OL11403687W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4789289A"}}], "type": {"key": "/type/work"}, "subjects": ["Bills, Private", "Private bills", "Claims"], "revision": 2}
+/type/work /works/OL11403796W 2 2010-01-20T11:51:49.703833 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:34:35.975648"}, "title": "Thierman & Frost", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T11:51:49.703833"}, "latest_revision": 2, "key": "/works/OL11403796W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4789289A"}}], "type": {"key": "/type/work"}, "subjects": ["Bills, Private", "Private bills", "Claims"], "revision": 2}
+/type/work /works/OL11403919W 2 2010-01-20T11:51:49.703833 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:34:35.975648"}, "title": "Florence Lambert", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T11:51:49.703833"}, "latest_revision": 2, "key": "/works/OL11403919W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4789289A"}}], "type": {"key": "/type/work"}, "subjects": ["Bills, Private", "Private bills", "Claims"], "revision": 2}
+/type/work /works/OL1140393W 3 2020-09-12T14:33:36.863908 {"covers": [6494193], "last_modified": {"type": "/type/datetime", "value": "2020-09-12T14:33:36.863908"}, "latest_revision": 3, "key": "/works/OL1140393W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL116112A"}}], "created": {"type": "/type/datetime", "value": "2009-12-09T20:34:26.735380"}, "title": "The end of the trail", "subject_places": ["British Columbia", "New Southwest", "Pacific States"], "subjects": ["Description and travel"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11404531W 1 2009-12-11T04:34:43.866605 {"title": "DNA bending by nuclear factor 1", "created": {"type": "/type/datetime", "value": "2009-12-11T04:34:43.866605"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:34:43.866605"}, "latest_revision": 1, "key": "/works/OL11404531W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4789573A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL114046W 4 2020-08-19T02:53:12.370783 {"covers": [98631], "last_modified": {"type": "/type/datetime", "value": "2020-08-19T02:53:12.370783"}, "latest_revision": 4, "key": "/works/OL114046W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL32610A"}}], "created": {"type": "/type/datetime", "value": "2009-10-18T02:50:10.177820"}, "title": "Shadow Play", "subject_places": ["Michigan"], "subjects": ["Fiction", "Real estate development", "Real estate developers", "Corrupt practices", "Good and evil", "Fiction, general", "Michigan, fiction"], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL114047W 9 2021-08-06T23:00:31.183451 {"description": {"type": "/type/text", "value": "Here is an extraordinary new novel from one of our most admired and acclaimed writers, a creator of \"stunning, never predictable, glimmering fiction, full of mischief and insight\" (Los Angeles Times). During Nathaniel Mason's first few months as a graduate student in upstate New York, he is drawn into a tangle of relationships with people who seem to hover just beyond his grasp. There's Theresa, alluring but elusive, and Jamie, who is fickle if not wholly unavailable. But Jerome Coolberg is the most mysterious and compelling. Not only cryptic about himself, he seems to have appropriated parts of Nathaniel's past that Nathaniel cannot remember having told him about. It is Jerome who seems to trigger the events that precipitate Nathaniel's total breakdown, and Jerome who shows up 30 years later--Nathaniel having finally reconstituted his life--to suggest, with the most staggering consequences, that Nathaniel's identity may in fact not be his own.In The Soul Thief, Charles Baxter has given us one of his most beautifully wrought and unexpected works of fiction: at once lyrical and eerie, acutely observant in its sensual and emotional detail and audaciously metaphysical in its underpinnings. It is a brilliant novel--one that is certain to expand both his already-stellar reputation and his readership.From the Hardcover edition."}, "title": "The soul thief", "covers": [2411487, 6874312], "subject_places": ["Buffalo (N.Y.)"], "subjects": ["Literature", "Graduate students", "Fiction", "Fiction, general", "Buffalo (n.y.), fiction", "New York Times reviewed"], "key": "/works/OL114047W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL32610A"}}], "type": {"key": "/type/work"}, "links": [{"url": "http://www.nytimes.com/2008/03/02/books/review/Schillinger2-t.html", "title": "New York Times review", "type": {"key": "/type/link"}}], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2009-10-18T02:50:10.177820"}, "last_modified": {"type": "/type/datetime", "value": "2021-08-06T23:00:31.183451"}}
+/type/work /works/OL11404912W 1 2009-12-11T04:34:43.866605 {"title": "Graphite permeability measurements at presssures up to 41 bars", "created": {"type": "/type/datetime", "value": "2009-12-11T04:34:43.866605"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:34:43.866605"}, "latest_revision": 1, "key": "/works/OL11404912W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4789853A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11405106W 3 2010-08-03T10:11:46.323826 {"last_modified": {"type": "/type/datetime", "value": "2010-08-03T10:11:46.323826"}, "title": "Legend of the fin-back whale crest of the Haidas, Queen Charlotte' s Island, B.C", "created": {"type": "/type/datetime", "value": "2009-12-11T04:34:43.866605"}, "subjects": ["Legends", "Haida Indians"], "latest_revision": 3, "key": "/works/OL11405106W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4789987A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11405681W 2 2010-12-03T13:42:54.776009 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:42:54.776009"}, "title": "The third annual report of the Providence Female Tract Society", "created": {"type": "/type/datetime", "value": "2009-12-11T04:34:51.152439"}, "subjects": ["Providence Female Tract Society"], "latest_revision": 2, "key": "/works/OL11405681W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4790336A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11405751W 2 2010-01-20T11:56:08.504641 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:34:51.152439"}, "title": "An oration, addressed to Republicans, assembled at Poultney, Vermont, July 4, 1814", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T11:56:08.504641"}, "latest_revision": 2, "key": "/works/OL11405751W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4790376A"}}], "type": {"key": "/type/work"}, "subjects": ["Fourth of July orations"], "revision": 2}
+/type/work /works/OL11405769W 3 2010-12-03T17:09:52.972989 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T17:09:52.972989"}, "title": "The constitution of the Washington Benevolent Society of the County of Herkimer", "created": {"type": "/type/datetime", "value": "2009-12-11T04:34:51.152439"}, "subjects": ["Washington Benevolent Society of the County of Herkimer (Herkimer County, N.Y.)", "Washington Benevolent Society of the County of Herkimer (N.Y.)"], "latest_revision": 3, "key": "/works/OL11405769W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4790392A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11405801W 1 2009-12-11T04:34:51.152439 {"title": "Rural-urban migration in Israel", "created": {"type": "/type/datetime", "value": "2009-12-11T04:34:51.152439"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:34:51.152439"}, "latest_revision": 1, "key": "/works/OL11405801W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4790423A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11405849W 1 2009-12-11T04:34:51.152439 {"title": "The tragedy of lynching", "created": {"type": "/type/datetime", "value": "2009-12-11T04:34:51.152439"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:34:51.152439"}, "latest_revision": 1, "key": "/works/OL11405849W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4790458A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11406659W 2 2010-01-20T12:00:24.351319 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:34:52.701769"}, "title": "Extending to certain counties of California act for entry of agricultural lands within forest reserves", "subject_places": ["California"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T12:00:24.351319"}, "latest_revision": 2, "key": "/works/OL11406659W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4790746A"}}], "type": {"key": "/type/work"}, "subjects": ["Forests and forestry"], "revision": 2}
+/type/work /works/OL11407059W 2 2010-01-20T12:04:26.352061 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:34:52.701769"}, "title": "Preference right to purchase certain lands in Mississippi County, Ark", "subject_places": ["Mississippi County (Ark.)", "Arkansas"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T12:04:26.352061"}, "latest_revision": 2, "key": "/works/OL11407059W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4790746A"}}], "type": {"key": "/type/work"}, "subjects": ["Public lands"], "revision": 2}
+/type/work /works/OL11407135W 2 2010-01-20T12:04:26.352061 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:34:52.701769"}, "title": "Relief of entrymen on the Huntley irrigation project, Mont", "subject_places": ["Montana"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T12:04:26.352061"}, "latest_revision": 2, "key": "/works/OL11407135W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4790746A"}}], "type": {"key": "/type/work"}, "subjects": ["Irrigation"], "revision": 2}
+/type/work /works/OL11407212W 2 2010-01-20T12:04:26.352061 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:34:52.701769"}, "title": "Right of way through certain public lands in California", "subject_places": ["California"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T12:04:26.352061"}, "latest_revision": 2, "key": "/works/OL11407212W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4790746A"}}], "type": {"key": "/type/work"}, "subjects": ["Right of way", "Public lands"], "revision": 2}
+/type/work /works/OL11407285W 2 2010-01-20T12:04:26.352061 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:34:52.701769"}, "title": "Settlers upon lands within grant of Northern Pacific Railroad Company", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T12:04:26.352061"}, "latest_revision": 2, "key": "/works/OL11407285W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4790746A"}}], "type": {"key": "/type/work"}, "subjects": ["Claims", "Land tenure"], "revision": 2}
+/type/work /works/OL11407325W 2 2010-01-20T12:04:26.352061 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:34:57.641933"}, "title": "Title to certain lands in Mississippi County, Ark", "subject_places": ["Mississippi County (Ark.)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T12:04:26.352061"}, "latest_revision": 2, "key": "/works/OL11407325W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4790746A"}}], "type": {"key": "/type/work"}, "subjects": ["Public lands", "Land tenure"], "revision": 2}
+/type/work /works/OL11407475W 2 2010-01-20T12:04:26.352061 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:34:57.641933"}, "title": "Gilsonite lands within the former Uncompahgre Indian Reservation, Utah", "subject_places": ["Uncompahgre Reservation (Utah)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T12:04:26.352061"}, "latest_revision": 2, "key": "/works/OL11407475W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4790746A"}}], "type": {"key": "/type/work"}, "subjects": ["Mines and mineral resources", "Mineral industries", "Asphalt"], "revision": 2}
+/type/work /works/OL11408387W 2 2010-01-20T12:08:31.666835 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:35:01.866280"}, "title": "Defacing stamps on Government-stamped Postal Cards", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T12:08:31.666835"}, "latest_revision": 2, "key": "/works/OL11408387W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4791167A"}}], "type": {"key": "/type/work"}, "subjects": ["Postal service", "Metered mail"], "revision": 2}
+/type/work /works/OL11408543W 2 2010-01-20T12:08:31.666835 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:35:01.866280"}, "title": "Memorial of the United States and Brazil Mail Steamship Company asking increased mail steamship service between the United States and Brazil", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T12:08:31.666835"}, "latest_revision": 2, "key": "/works/OL11408543W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4791167A"}}], "type": {"key": "/type/work"}, "subjects": ["Postal service", "International trade", "Steamboats"], "revision": 2}
+/type/work /works/OL11408653W 2 2010-01-20T12:08:31.666835 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:35:01.866280"}, "title": "Relief of State of Georgia", "subject_places": ["Georgia"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T12:08:31.666835"}, "latest_revision": 2, "key": "/works/OL11408653W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4791167A"}}], "type": {"key": "/type/work"}, "subjects": ["Federal aid"], "revision": 2}
+/type/work /works/OL11408990W 3 2010-12-03T13:44:39.555802 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:35:01.866280"}, "subject_places": ["Ireland"], "subjects": ["Iarnr\u00f3d \u00c9ireann", "Railroads and state"], "latest_revision": 3, "key": "/works/OL11408990W", "title": "Fourth report", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4791252A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:44:39.555802"}, "revision": 3}
+/type/work /works/OL11409225W 2 2010-01-20T12:08:31.666835 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:35:01.866280"}, "title": "Mediatrics", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T12:08:31.666835"}, "latest_revision": 2, "key": "/works/OL11409225W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4791426A"}}], "type": {"key": "/type/work"}, "subjects": ["Middle age", "English wit and humor", "Anecdotes, facetiae, satire"], "revision": 2}
+/type/work /works/OL11409785W 2 2010-01-20T12:12:37.831353 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:35:11.822082"}, "title": "Legal problems concerning unmarried couples", "subject_places": ["Europe"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T12:12:37.831353"}, "latest_revision": 2, "key": "/works/OL11409785W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4791850A"}}], "type": {"key": "/type/work"}, "subjects": ["Unmarried couples", "Congresses", "Legal status, laws"], "revision": 2}
+/type/work /works/OL114097W 1 2009-10-18T02:50:10.177820 {"created": {"type": "/type/datetime", "value": "2009-10-18T02:50:10.177820"}, "title": "The Case of the Wild River Ride", "last_modified": {"type": "/type/datetime", "value": "2009-10-18T02:50:10.177820"}, "latest_revision": 1, "key": "/works/OL114097W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL32624A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11409976W 2 2010-01-20T12:12:37.831353 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:35:11.822082"}, "title": "Legal problems concerning unmarried couples", "subject_places": ["Europe"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T12:12:37.831353"}, "latest_revision": 2, "key": "/works/OL11409976W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4792029A"}}], "type": {"key": "/type/work"}, "subjects": ["Unmarried couples", "Congresses", "Legal status, laws"], "revision": 2}
+/type/work /works/OL11410003W 2 2010-01-20T12:12:37.831353 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:35:11.822082"}, "title": "Legal problems concerning unmarried couples", "subject_places": ["Europe"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T12:12:37.831353"}, "latest_revision": 2, "key": "/works/OL11410003W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4792056A"}}], "type": {"key": "/type/work"}, "subjects": ["Unmarried couples", "Congresses", "Legal status, laws"], "revision": 2}
+/type/work /works/OL11410561W 2 2010-12-03T13:43:49.873090 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:43:49.873090"}, "title": "Constitution of the Kings County Society for Promoting Agriculture and Domestic Manufactures", "created": {"type": "/type/datetime", "value": "2009-12-11T04:35:22.908485"}, "subjects": ["Kings County Society for Promoting Agriculture and Domestic Manufactures"], "latest_revision": 2, "key": "/works/OL11410561W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4792606A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL1141085W 6 2020-02-14T07:03:42.099626 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:34:33.484952"}, "subjects": ["Coyote", "Coyotes"], "latest_revision": 6, "key": "/works/OL1141085W", "title": "The voice of the coyote", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL116183A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-02-14T07:03:42.099626"}, "covers": [4725650], "revision": 6}
+/type/work /works/OL11411059W 2 2010-01-20T12:16:33.511243 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:35:22.908485"}, "title": "Legal problems concerning unmarried couples", "subject_places": ["Europe"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T12:16:33.511243"}, "latest_revision": 2, "key": "/works/OL11411059W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4793083A"}}], "type": {"key": "/type/work"}, "subjects": ["Unmarried couples", "Congresses", "Legal status, laws"], "revision": 2}
+/type/work /works/OL11411457W 2 2010-01-20T12:20:23.723417 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:35:29.736383"}, "title": "Legal problems concerning unmarried couples", "subject_places": ["Europe"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T12:20:23.723417"}, "latest_revision": 2, "key": "/works/OL11411457W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4793454A"}}], "type": {"key": "/type/work"}, "subjects": ["Unmarried couples", "Congresses", "Legal status, laws"], "revision": 2}
+/type/work /works/OL11412792W 2 2010-01-20T12:24:38.416178 {"title": "Sophokles' Trachinierinnen und ihr Vorbild eine literargeschichtliche und textkritische Untersuchung", "created": {"type": "/type/datetime", "value": "2009-12-11T04:35:37.105596"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-20T12:24:38.416178"}, "latest_revision": 2, "key": "/works/OL11412792W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4794316A"}}], "subject_people": ["Sophocles"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11412811W 2 2010-01-20T12:24:38.416178 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:35:37.105596"}, "title": "Be-gani", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T12:24:38.416178"}, "latest_revision": 2, "key": "/works/OL11412811W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4794329A"}}], "type": {"key": "/type/work"}, "subjects": ["History and criticism", "Israeli literature", "Yiddish literature"], "revision": 2}
+/type/work /works/OL1141315W 3 2010-08-18T13:43:13.102547 {"subtitle": "By Joseph Priestley, L.L.D. F.R.S. &c.", "last_modified": {"type": "/type/datetime", "value": "2010-08-18T13:43:13.102547"}, "latest_revision": 3, "key": "/works/OL1141315W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL116186A"}}], "created": {"type": "/type/datetime", "value": "2009-12-09T20:34:33.484952"}, "title": "An address to the Unitarian congregation at Philadelphia, delivered on Sunday, March 5, 1797", "subject_places": ["United States"], "subjects": ["Unitarianism"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11413310W 1 2009-12-11T04:35:41.504647 {"title": "Enquiries are proceeding", "created": {"type": "/type/datetime", "value": "2009-12-11T04:35:41.504647"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:35:41.504647"}, "latest_revision": 1, "key": "/works/OL11413310W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4794563A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1141332W 3 2010-08-18T13:43:41.289269 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:34:33.484952"}, "subjects": ["Water", "Composition", "Phlogiston", "Chemistry"], "subtitle": "and that of the composition ofwater refuted", "key": "/works/OL1141332W", "title": "The doctrine of phlogiston established", "latest_revision": 3, "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL116186A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-08-18T13:43:41.289269"}, "revision": 3}
+/type/work /works/OL11413461W 1 2009-12-11T04:35:41.504647 {"title": "Hunter's Combe", "created": {"type": "/type/datetime", "value": "2009-12-11T04:35:41.504647"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:35:41.504647"}, "latest_revision": 1, "key": "/works/OL11413461W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4794598A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11413509W 2 2010-01-20T12:24:38.416178 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:35:41.504647"}, "title": "Murder in Hawthorn", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T12:24:38.416178"}, "latest_revision": 2, "key": "/works/OL11413509W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4794619A"}}], "type": {"key": "/type/work"}, "subjects": ["Fiction in English"], "revision": 2}
+/type/work /works/OL11413927W 2 2010-01-20T12:24:38.416178 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:35:41.504647"}, "title": "Charms of a witch", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T12:24:38.416178"}, "latest_revision": 2, "key": "/works/OL11413927W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4794761A"}}], "type": {"key": "/type/work"}, "subjects": ["Fiction in English"], "revision": 2}
+/type/work /works/OL11413987W 1 2009-12-11T04:35:41.504647 {"title": "Black sundown", "created": {"type": "/type/datetime", "value": "2009-12-11T04:35:41.504647"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:35:41.504647"}, "latest_revision": 1, "key": "/works/OL11413987W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4794794A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11414445W 2 2010-01-20T12:29:01.039730 {"title": "60 dollars reward", "created": {"type": "/type/datetime", "value": "2009-12-11T04:35:47.383569"}, "subject_places": ["Maryland"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T12:29:01.039730"}, "latest_revision": 2, "key": "/works/OL11414445W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4795019A"}}], "subject_people": ["Charles Oden"], "type": {"key": "/type/work"}, "subjects": ["Fugitive slaves"], "revision": 2}
+/type/work /works/OL11414803W 2 2022-06-16T23:02:25.567105 {"title": "Nurse to the Maharajah", "key": "/works/OL11414803W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1852781A"}}], "type": {"key": "/type/work"}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T04:35:47.383569"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-16T23:02:25.567105"}}
+/type/work /works/OL1141497W 2 2022-07-11T23:52:28.765031 {"title": "Australian literature", "key": "/works/OL1141497W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL116192A"}}], "type": {"key": "/type/work"}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-09T20:34:33.484952"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-11T23:52:28.765031"}}
+/type/work /works/OL11415227W 1 2009-12-11T04:35:47.383569 {"title": "De Anacharsidis epistulis", "created": {"type": "/type/datetime", "value": "2009-12-11T04:35:47.383569"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:35:47.383569"}, "latest_revision": 1, "key": "/works/OL11415227W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4795423A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11416041W 1 2009-12-11T04:35:53.388301 {"title": "The captive dove", "created": {"type": "/type/datetime", "value": "2009-12-11T04:35:53.388301"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:35:53.388301"}, "latest_revision": 1, "key": "/works/OL11416041W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4795923A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11416299W 2 2010-01-20T12:33:04.553612 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:36:00.620203"}, "title": "Scholarly publishing-- an endangered species?", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T12:33:04.553612"}, "latest_revision": 2, "key": "/works/OL11416299W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4796029A"}}], "type": {"key": "/type/work"}, "subjects": ["Congresses", "Scholarly publishing", "Technological innovations", "Publishers and publishing"], "revision": 2}
+/type/work /works/OL11416374W 1 2009-12-11T04:36:00.620203 {"title": "The man from the vineyards", "created": {"type": "/type/datetime", "value": "2009-12-11T04:36:00.620203"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:36:00.620203"}, "latest_revision": 1, "key": "/works/OL11416374W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4796073A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11416438W 3 2010-04-28T07:21:15.758500 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:36:00.620203"}, "title": "De recensendis Catulli carminibus", "covers": [5758041], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:21:15.758500"}, "latest_revision": 3, "key": "/works/OL11416438W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4796083A"}}], "subject_people": ["Gaius Valerius Catullus"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11416513W 2 2010-01-20T12:33:04.553612 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:36:00.620203"}, "title": "Aspects of the informal social organization of Russian industry", "subject_places": ["Soviet Union"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T12:33:04.553612"}, "latest_revision": 2, "key": "/works/OL11416513W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4796128A"}}], "type": {"key": "/type/work"}, "subjects": ["Industrial management"], "revision": 2}
+/type/work /works/OL11416978W 2 2010-01-20T12:33:04.553612 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:36:00.620203"}, "title": "Symptoms and signs in occupational disease", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T12:33:04.553612"}, "latest_revision": 2, "key": "/works/OL11416978W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4796398A"}}], "type": {"key": "/type/work"}, "subjects": ["Occupational diseases", "Diagnosis"], "revision": 2}
+/type/work /works/OL11417272W 1 2009-12-11T04:36:00.620203 {"title": "Resident nurse", "created": {"type": "/type/datetime", "value": "2009-12-11T04:36:00.620203"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:36:00.620203"}, "latest_revision": 1, "key": "/works/OL11417272W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4796573A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1141774W 3 2011-02-11T17:44:59.586882 {"last_modified": {"type": "/type/datetime", "value": "2011-02-11T17:44:59.586882"}, "title": "An English pronouncing dictionary, containing 56,300 words in international phonetic transcription", "created": {"type": "/type/datetime", "value": "2009-12-09T20:34:33.484952"}, "subjects": ["Pronunciation", "English language"], "latest_revision": 3, "key": "/works/OL1141774W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1820993A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11417792W 2 2010-01-20T12:33:04.553612 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:36:08.659710"}, "title": "al- Yaman f\u012b \u02bbuy\u016bn al-ra\u1e25\u1e25\u0101lah", "subject_places": ["Yemen (Republic)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T12:33:04.553612"}, "latest_revision": 2, "key": "/works/OL11417792W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4796930A"}}], "type": {"key": "/type/work"}, "subjects": ["Description and travel"], "revision": 2}
+/type/work /works/OL11417886W 1 2009-12-11T04:36:08.659710 {"title": "A piece of action", "created": {"type": "/type/datetime", "value": "2009-12-11T04:36:08.659710"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:36:08.659710"}, "latest_revision": 1, "key": "/works/OL11417886W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4797008A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11418096W 1 2009-12-11T04:36:08.659710 {"title": "Owlhoot trail", "created": {"type": "/type/datetime", "value": "2009-12-11T04:36:08.659710"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:36:08.659710"}, "latest_revision": 1, "key": "/works/OL11418096W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4797183A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11418440W 2 2010-01-20T12:37:28.089209 {"title": "Cn. Naevii belli Punici carminis quae supersunt", "created": {"type": "/type/datetime", "value": "2009-12-11T04:36:15.184707"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-20T12:37:28.089209"}, "latest_revision": 2, "key": "/works/OL11418440W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4797392A"}}], "subject_people": ["Cn Naevius"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11418631W 4 2012-07-27T02:05:39.626962 {"last_modified": {"type": "/type/datetime", "value": "2012-07-27T02:05:39.626962"}, "title": "The substance of a funeral sermon delivered in the Wesleyan Chapel, St. James Street, Montreal, on Sunday, August 13, 1837", "created": {"type": "/type/datetime", "value": "2009-12-11T04:36:15.184707"}, "covers": [7163699], "subject_places": ["Canada"], "subjects": ["English Sermons", "Memorial service", "Sermons, Canadian (English)", "Sermons, English", "Service comm\u00e9moratif", "Sermons canadiens-anglais"], "subject_people": ["William IV King of Great Britain (1765-1837)"], "key": "/works/OL11418631W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4797513A"}}], "latest_revision": 4, "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL11418686W 2 2010-01-20T12:37:28.089209 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:36:15.184707"}, "title": "Adopted child", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T12:37:28.089209"}, "latest_revision": 2, "key": "/works/OL11418686W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4797541A"}}], "type": {"key": "/type/work"}, "subjects": ["Librettos", "Operas"], "revision": 2}
+/type/work /works/OL11419208W 2 2010-12-03T13:47:10.776679 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:47:10.776679"}, "title": "Der Jesuitenorden", "created": {"type": "/type/datetime", "value": "2009-12-11T04:36:15.184707"}, "subjects": ["Jesuits"], "latest_revision": 2, "key": "/works/OL11419208W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4797885A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11419274W 1 2009-12-11T04:36:15.184707 {"title": "(The fair Aurelia's gon a stray)", "created": {"type": "/type/datetime", "value": "2009-12-11T04:36:15.184707"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:36:15.184707"}, "latest_revision": 1, "key": "/works/OL11419274W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4797928A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1141928W 3 2010-07-20T14:20:40.647126 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:34:39.164424"}, "title": "Lectures on F. S. R. II", "last_modified": {"type": "/type/datetime", "value": "2010-07-20T14:20:40.647126"}, "latest_revision": 3, "key": "/works/OL1141928W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL116243A"}}], "type": {"key": "/type/work"}, "subjects": ["Field service", "Military art and science", "Tactics", "War", "Great Britain", "Great Britain. Army"], "revision": 3}
+/type/work /works/OL11419381W 2 2010-01-20T12:37:28.089209 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:36:21.780417"}, "title": "The old gold road", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T12:37:28.089209"}, "latest_revision": 2, "key": "/works/OL11419381W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4797988A"}}], "type": {"key": "/type/work"}, "subjects": ["Fiction in English"], "revision": 2}
+/type/work /works/OL1141979W 2 2010-01-20T12:41:37.543737 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:34:39.164424"}, "title": "La grande ville au bord du fleuve", "subject_places": ["Bordeaux (France)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T12:41:37.543737"}, "latest_revision": 2, "key": "/works/OL1141979W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL116245A"}}], "type": {"key": "/type/work"}, "subjects": ["History"], "revision": 2}
+/type/work /works/OL11420117W 3 2010-12-03T13:45:58.659569 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:45:58.659569"}, "title": "Sinhak nondan, sinhak susang", "created": {"type": "/type/datetime", "value": "2009-12-11T04:36:21.780417"}, "subjects": ["Bible", "Criticism, interpretation", "Theology"], "latest_revision": 3, "key": "/works/OL11420117W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4798449A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11420125W 2 2010-01-20T12:41:37.543737 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:36:21.780417"}, "title": "One rode alone", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T12:41:37.543737"}, "latest_revision": 2, "key": "/works/OL11420125W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4798454A"}}], "type": {"key": "/type/work"}, "subjects": ["Fiction in English"], "revision": 2}
+/type/work /works/OL1142012W 3 2010-07-20T14:20:51.989172 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:34:39.164424"}, "title": "Collected sermons of Thomas Fuller, D.D., 1631-1659", "last_modified": {"type": "/type/datetime", "value": "2010-07-20T14:20:51.989172"}, "latest_revision": 3, "key": "/works/OL1142012W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL116249A"}}], "type": {"key": "/type/work"}, "subjects": ["Sermons, English", "Sermons", "Church of England", "English Sermons"], "revision": 3}
+/type/work /works/OL11420194W 2 2010-01-20T12:41:37.543737 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:36:21.780417"}, "title": "Suggested reading in twentieth century literature", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T12:41:37.543737"}, "latest_revision": 2, "key": "/works/OL11420194W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4798516A"}}], "subject_times": ["20th century"], "type": {"key": "/type/work"}, "subjects": ["Bibliography", "European literature"], "revision": 2}
+/type/work /works/OL11420380W 2 2010-01-20T12:41:37.543737 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:36:28.814690"}, "title": "20. Deutscher Verkehrsgerichtstag 1982", "subject_places": ["Germany (West)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T12:41:37.543737"}, "latest_revision": 2, "key": "/works/OL11420380W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4798655A"}}], "type": {"key": "/type/work"}, "subjects": ["Congresses", "Traffic courts", "Liability for traffic accidents", "Traffic regulations"], "revision": 2}
+/type/work /works/OL1142041W 1 2009-12-09T20:34:39.164424 {"title": "Triana, or a threefold romanza of Mariana. Paduana. Sabina. Written by Tho. Fuller, B.D", "created": {"type": "/type/datetime", "value": "2009-12-09T20:34:39.164424"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T20:34:39.164424"}, "latest_revision": 1, "key": "/works/OL1142041W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL116249A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1142071W 1 2009-12-09T20:34:39.164424 {"title": "Triana, or, A threefold romanza of Mariana, Paduana, Sabina", "created": {"type": "/type/datetime", "value": "2009-12-09T20:34:39.164424"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T20:34:39.164424"}, "latest_revision": 1, "key": "/works/OL1142071W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL116249A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11420854W 1 2009-12-11T04:36:28.814690 {"title": "Rozhin", "created": {"type": "/type/datetime", "value": "2009-12-11T04:36:28.814690"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:36:28.814690"}, "latest_revision": 1, "key": "/works/OL11420854W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4798957A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1142087W 3 2020-11-05T11:10:34.020326 {"last_modified": {"type": "/type/datetime", "value": "2020-11-05T11:10:34.020326"}, "title": "Present status of interschool basketball for girls in high schools", "created": {"type": "/type/datetime", "value": "2009-12-09T20:34:39.164424"}, "subjects": ["Basketball", "Basketball for girls"], "latest_revision": 3, "key": "/works/OL1142087W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL116252A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11421052W 2 2022-03-25T05:53:11.767645 {"title": "Case for compensation", "key": "/works/OL11421052W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4799110A"}}], "type": {"key": "/type/work"}, "subjects": ["Fiction", "Damages", "Compensation", "Accidents", "Liability", "Litigation"], "covers": [12688370], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T04:36:28.814690"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-25T05:53:11.767645"}}
+/type/work /works/OL11421649W 2 2010-01-20T12:46:42.157680 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:36:36.163843"}, "title": "Happy Arcadia", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T12:46:42.157680"}, "latest_revision": 2, "key": "/works/OL11421649W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4799507A"}}], "type": {"key": "/type/work"}, "subjects": ["Librettos", "Operas"], "revision": 2}
+/type/work /works/OL11422516W 2 2010-01-20T12:51:55.261748 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:36:42.578711"}, "title": "Insanity, intoxication and automatism", "subject_places": ["Tasmania", "Australia"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T12:51:55.261748"}, "latest_revision": 2, "key": "/works/OL11422516W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4800115A"}}], "type": {"key": "/type/work"}, "subjects": ["Drunkenness (Criminal law)", "Automatism", "Insanity", "Jurisprudence", "Defense (Criminal procedure)"], "revision": 2}
+/type/work /works/OL1142331W 1 2009-12-09T20:34:39.164424 {"title": "Something to talk about", "created": {"type": "/type/datetime", "value": "2009-12-09T20:34:39.164424"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T20:34:39.164424"}, "latest_revision": 1, "key": "/works/OL1142331W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL116261A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11423469W 2 2010-01-20T12:51:55.261748 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:36:47.950691"}, "title": "Tom Tiller and Jack Mizen, or, Sprees along shore!", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T12:51:55.261748"}, "latest_revision": 2, "key": "/works/OL11423469W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4800694A"}}], "type": {"key": "/type/work"}, "subjects": ["Librettos", "Musicals"], "revision": 2}
+/type/work /works/OL1142354W 1 2009-12-09T20:34:39.164424 {"title": "Her alienated affections", "created": {"type": "/type/datetime", "value": "2009-12-09T20:34:39.164424"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T20:34:39.164424"}, "latest_revision": 1, "key": "/works/OL1142354W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL116263A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11423635W 2 2010-01-20T12:51:55.261748 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:36:47.950691"}, "title": "Canada-U.S. steel trade", "subject_places": ["Canada", "United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T12:51:55.261748"}, "latest_revision": 2, "key": "/works/OL11423635W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4800785A"}}], "type": {"key": "/type/work"}, "subjects": ["Commerce", "Steel industry and trade"], "revision": 2}
+/type/work /works/OL11424304W 1 2009-12-11T04:36:54.896476 {"title": "The nettle", "created": {"type": "/type/datetime", "value": "2009-12-11T04:36:54.896476"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:36:54.896476"}, "latest_revision": 1, "key": "/works/OL11424304W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4801076A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11424323W 2 2010-01-20T12:56:22.722054 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:36:54.896476"}, "title": "Report [and Appendices]", "subject_places": ["England"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T12:56:22.722054"}, "latest_revision": 2, "key": "/works/OL11424323W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4801086A"}}], "type": {"key": "/type/work"}, "subjects": ["Finance and taxation"], "revision": 2}
+/type/work /works/OL11424436W 1 2009-12-11T04:36:54.896476 {"title": "The youthful queen", "created": {"type": "/type/datetime", "value": "2009-12-11T04:36:54.896476"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:36:54.896476"}, "latest_revision": 1, "key": "/works/OL11424436W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4801122A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11424603W 2 2010-01-20T12:56:22.722054 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:36:54.896476"}, "title": "High notions, or, A trip to Exmouth", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T12:56:22.722054"}, "latest_revision": 2, "key": "/works/OL11424603W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4801214A"}}], "type": {"key": "/type/work"}, "subjects": ["Librettos", "Musicals"], "revision": 2}
+/type/work /works/OL11424851W 1 2009-12-11T04:36:54.896476 {"title": "Bartholomew Fair", "created": {"type": "/type/datetime", "value": "2009-12-11T04:36:54.896476"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:36:54.896476"}, "latest_revision": 1, "key": "/works/OL11424851W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4801399A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11424992W 1 2009-12-11T04:36:54.896476 {"title": "A day after the fair", "created": {"type": "/type/datetime", "value": "2009-12-11T04:36:54.896476"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:36:54.896476"}, "latest_revision": 1, "key": "/works/OL11424992W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4801513A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11425010W 1 2009-12-11T04:36:54.896476 {"title": "Pun\u0101\u1e43 d\u0101 p\u0101\u1e47\u012b : kah\u0101\u1e47\u012b sa\u1e45grahi", "created": {"type": "/type/datetime", "value": "2009-12-11T04:36:54.896476"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:36:54.896476"}, "latest_revision": 1, "key": "/works/OL11425010W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4801525A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11425118W 2 2010-01-20T12:56:22.722054 {"title": "\u0100lo\u1e8fa bhubana bhar\u0101 : \u1e6ch\u0101kura S\u012bt\u0101r\u0101mad\u0101sa O\u1e45k\u0101ran\u0101thadebera j\u012bban\u012b", "created": {"type": "/type/datetime", "value": "2009-12-11T04:36:54.896476"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-20T12:56:22.722054"}, "latest_revision": 2, "key": "/works/OL11425118W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4801610A"}}], "subject_people": ["Sitaramdas Onkarnath (1892-)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11425956W 2 2010-01-20T13:01:20.694076 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:37:02.530933"}, "title": "Survey of senior citizens' eating out behavior and attitudes", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T13:01:20.694076"}, "latest_revision": 2, "key": "/works/OL11425956W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4802153A"}}], "type": {"key": "/type/work"}, "subjects": ["Restaurants", "Public opinion", "Older people"], "revision": 2}
+/type/work /works/OL11426061W 2 2010-01-20T13:01:20.694076 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:37:02.530933"}, "title": "Manteaux noirs", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T13:01:20.694076"}, "latest_revision": 2, "key": "/works/OL11426061W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4802233A"}}], "type": {"key": "/type/work"}, "subjects": ["Librettos", "Operas"], "revision": 2}
+/type/work /works/OL1142615W 3 2010-04-28T07:21:15.758500 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:34:39.164424"}, "title": "Commentaire du Parme\u0301nide de Platon", "covers": [5425145], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:21:15.758500"}, "latest_revision": 3, "key": "/works/OL1142615W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL116291A"}}], "subject_people": ["Plato"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11426544W 1 2009-12-11T04:37:15.100654 {"title": "British War Mission in the United States of America; history of the activities of the Department of War Supplies (British Ministry of Munitions of War in U.S.A.)", "created": {"type": "/type/datetime", "value": "2009-12-11T04:37:15.100654"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:37:15.100654"}, "latest_revision": 1, "key": "/works/OL11426544W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4802626A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11426689W 2 2010-12-03T13:49:15.963138 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:49:15.963138"}, "title": "Byland Abbey, Yorkshire", "created": {"type": "/type/datetime", "value": "2009-12-11T04:37:15.100654"}, "subjects": ["Byland Abbey (North Yorkshire, England)"], "latest_revision": 2, "key": "/works/OL11426689W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4802737A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11426933W 3 2010-08-13T00:30:29.136064 {"subtitle": "specification.", "last_modified": {"type": "/type/datetime", "value": "2010-08-13T00:30:29.136064"}, "latest_revision": 3, "key": "/works/OL11426933W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4802882A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T04:37:15.100654"}, "title": "Conditions of contract for covered goods waggons", "subject_places": ["Canada"], "subjects": ["Railroads", "Rolling-stock"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11427015W 2 2010-01-20T13:01:20.694076 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:37:15.100654"}, "title": "Spectral transmittance measurements in the Baltic", "subject_places": ["Baltic Sea"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T13:01:20.694076"}, "latest_revision": 2, "key": "/works/OL11427015W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4802917A"}}], "type": {"key": "/type/work"}, "subjects": ["Optical oceanography", "Spectrum analysis", "Absorption spectra"], "revision": 2}
+/type/work /works/OL11427039W 3 2010-12-03T13:49:42.983522 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:49:42.983522"}, "title": "Politiques du choix de la documentation de la Biblioth\u00e8que du CEGEP de Maisonneuve", "created": {"type": "/type/datetime", "value": "2009-12-11T04:37:15.100654"}, "subjects": ["Book selection", "Coll\u00e8ge de Maisonneuve", "Coll\u00e8ge de Maisonneuve. Biblioth\u00e8que", "Policy statements"], "latest_revision": 3, "key": "/works/OL11427039W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4802933A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11427496W 2 2010-01-20T13:06:15.534072 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:37:22.320009"}, "title": "Practical artificial incubation", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T13:06:15.534072"}, "latest_revision": 2, "key": "/works/OL11427496W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4803220A"}}], "type": {"key": "/type/work"}, "subjects": ["Poultry", "Incubators"], "revision": 2}
+/type/work /works/OL11427790W 2 2010-01-20T13:06:15.534072 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:37:22.320009"}, "title": "Tomatoes in the garden", "subject_places": ["Oregon"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T13:06:15.534072"}, "latest_revision": 2, "key": "/works/OL11427790W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4803406A"}}], "type": {"key": "/type/work"}, "subjects": ["Vegetable gardening", "Tomatoes"], "revision": 2}
+/type/work /works/OL11427800W 2 2010-01-20T13:06:15.534072 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:37:22.320009"}, "title": "The ecological role of fire in natural conifer forests of western and northern North America", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T13:06:15.534072"}, "latest_revision": 2, "key": "/works/OL11427800W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4803409A"}}], "type": {"key": "/type/work"}, "subjects": ["Forest fires", "Forest ecology", "Research"], "revision": 2}
+/type/work /works/OL11427835W 4 2022-12-17T06:09:03.897560 {"title": "English for everyone", "subjects": ["Textbooks for foreigners", "English language", "Textbooks for foreign speakers", "English language, textbooks for foreign speakers"], "key": "/works/OL11427835W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4803436A"}}], "type": {"key": "/type/work"}, "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T04:37:22.320009"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T06:09:03.897560"}}
+/type/work /works/OL11428073W 3 2015-07-16T13:21:44.334188 {"subtitle": "a narrative in discreet periods of time", "title": "The red wheel", "created": {"type": "/type/datetime", "value": "2009-12-11T04:37:22.320009"}, "last_modified": {"type": "/type/datetime", "value": "2015-07-16T13:21:44.334188"}, "latest_revision": 3, "key": "/works/OL11428073W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL222507A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1142846W 1 2009-12-09T20:34:39.164424 {"title": "British Standard specification for gaiters and footwear for protection against burns and impact risks in foundries =", "created": {"type": "/type/datetime", "value": "2009-12-09T20:34:39.164424"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T20:34:39.164424"}, "latest_revision": 1, "key": "/works/OL1142846W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL116294A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1142880W 2 2010-01-20T13:06:15.534072 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:34:39.164424"}, "title": "British Standard specification for textile labels requiring to be washed and-or dry cleaned = Spe\u0301cification des etiquettes des textiles devant e\u0302tre lave\u0301es et-ou nettoye\u0301es a\u0300 sec = Spezifikation fu\u0308r Textiletiketten, die gewaschen und-oder chemischgereinigt werden", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T13:06:15.534072"}, "latest_revision": 2, "key": "/works/OL1142880W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL116294A"}}], "type": {"key": "/type/work"}, "subjects": ["Clothing and dress", "Labeling", "Standards"], "revision": 2}
+/type/work /works/OL1142898W 1 2009-12-09T20:34:39.164424 {"title": "British standard specification milling cutters and reamers", "created": {"type": "/type/datetime", "value": "2009-12-09T20:34:39.164424"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T20:34:39.164424"}, "latest_revision": 1, "key": "/works/OL1142898W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL116294A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11429975W 2 2010-01-20T13:10:46.821476 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:37:37.802827"}, "title": "Recherches sur la prosodie de la phrase fran\u00e7aise", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T13:10:46.821476"}, "latest_revision": 2, "key": "/works/OL11429975W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4804854A"}}], "type": {"key": "/type/work"}, "subjects": ["French language", "Versification"], "revision": 2}
+/type/work /works/OL11430396W 1 2009-12-11T04:37:45.523893 {"title": "Win - don't lose in buying!", "created": {"type": "/type/datetime", "value": "2009-12-11T04:37:45.523893"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:37:45.523893"}, "latest_revision": 1, "key": "/works/OL11430396W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4805118A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11430436W 1 2009-12-11T04:37:45.523893 {"title": "Fame and fancy, or, Voltaire improved", "created": {"type": "/type/datetime", "value": "2009-12-11T04:37:45.523893"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:37:45.523893"}, "latest_revision": 1, "key": "/works/OL11430436W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4805156A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1143043W 2 2010-01-20T13:10:46.821476 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:34:40.192292"}, "title": "Conversion table for replacing traditional yarn numbers by rounded values in the Tex System", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T13:10:46.821476"}, "latest_revision": 2, "key": "/works/OL1143043W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL116294A"}}], "type": {"key": "/type/work"}, "subjects": ["Specifications", "Textile industry and fabrics", "Yarn"], "revision": 2}
+/type/work /works/OL11430506W 2 2010-01-20T13:10:46.821476 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:37:45.523893"}, "title": "Rural domestic water supply", "subject_places": ["Oregon"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T13:10:46.821476"}, "latest_revision": 2, "key": "/works/OL11430506W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4805212A"}}], "type": {"key": "/type/work"}, "subjects": ["Water-supply", "Water quality"], "revision": 2}
+/type/work /works/OL11430896W 3 2010-04-28T07:21:15.758500 {"title": "A history of the 35mm still camera", "created": {"type": "/type/datetime", "value": "2009-12-11T04:37:45.523893"}, "covers": [4188967], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:21:15.758500"}, "latest_revision": 3, "key": "/works/OL11430896W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4805504A"}}], "subjects": ["History", "35mm cameras", "Single-lens reflex cameras"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11431060W 1 2009-12-11T04:37:45.523893 {"title": "Benji a Betsi yn y gwynt", "created": {"type": "/type/datetime", "value": "2009-12-11T04:37:45.523893"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:37:45.523893"}, "latest_revision": 1, "key": "/works/OL11431060W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4805577A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11431077W 2 2010-01-20T13:15:28.382266 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:37:45.523893"}, "title": "Y babi", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T13:15:28.382266"}, "latest_revision": 2, "key": "/works/OL11431077W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4805577A"}}], "type": {"key": "/type/work"}, "subjects": ["Welsh language", "Readers"], "revision": 2}
+/type/work /works/OL11431243W 2 2010-01-20T13:15:28.382266 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:37:45.523893"}, "title": "Symposium on Integrated Fruit Production", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T13:15:28.382266"}, "latest_revision": 2, "key": "/works/OL11431243W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4805664A"}}], "type": {"key": "/type/work"}, "subjects": ["Integrated control", "Fruit", "Congresses"], "revision": 2}
+/type/work /works/OL11431300W 2 2010-01-20T13:15:28.382266 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:37:45.523893"}, "title": "Jesso art craft", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T13:15:28.382266"}, "latest_revision": 2, "key": "/works/OL11431300W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4805703A"}}], "type": {"key": "/type/work"}, "subjects": ["Handicraft", "Gesso"], "revision": 2}
+/type/work /works/OL11431429W 2 2010-01-20T13:15:28.382266 {"title": "Man qatala Mu\u1e25ammad B\u016b \u1e0ciy\u0101f?", "created": {"type": "/type/datetime", "value": "2009-12-11T04:37:51.041607"}, "subject_places": ["Algeria"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T13:15:28.382266"}, "latest_revision": 2, "key": "/works/OL11431429W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4805796A"}}], "subject_people": ["Mohamed Boudiaf (1919-)"], "type": {"key": "/type/work"}, "subjects": ["Politics and government", "Assassination"], "revision": 2}
+/type/work /works/OL11432299W 2 2010-01-20T13:20:14.273751 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:37:51.041607"}, "title": "History and continuing issues on unrelated trade or business income tax", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T13:20:14.273751"}, "latest_revision": 2, "key": "/works/OL11432299W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4806177A"}}], "type": {"key": "/type/work"}, "subjects": ["Taxation", "Charitable uses, trusts, and foundations", "Unrelated business income tax", "Nonprofit organizations", "Law and legislation", "Universities and colleges"], "revision": 2}
+/type/work /works/OL11432405W 2 2010-01-20T13:20:14.273751 {"title": "Ad Cornelium Tacitum discursus aliquot", "created": {"type": "/type/datetime", "value": "2009-12-11T04:37:54.636665"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-20T13:20:14.273751"}, "latest_revision": 2, "key": "/works/OL11432405W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4806196A"}}], "subject_people": ["Cornelius Tacitus"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11432424W 2 2010-01-20T13:20:14.273751 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:37:54.636665"}, "title": "Federal retirees", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T13:20:14.273751"}, "latest_revision": 2, "key": "/works/OL11432424W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4806199A"}}], "type": {"key": "/type/work"}, "subjects": ["Retirement", "Officials and employees", "Civil service"], "revision": 2}
+/type/work /works/OL11432503W 2 2010-01-20T13:20:14.273751 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:37:54.636665"}, "title": "Electoral votes based on the 1990 Census", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T13:20:14.273751"}, "latest_revision": 2, "key": "/works/OL11432503W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4806209A"}}], "type": {"key": "/type/work"}, "subjects": ["Census, 21st, 1990", "Electoral college"], "revision": 2}
+/type/work /works/OL1143257W 1 2009-12-09T20:34:40.192292 {"title": "Guide to the design and preparation of documentation for users of application software", "created": {"type": "/type/datetime", "value": "2009-12-09T20:34:40.192292"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T20:34:40.192292"}, "latest_revision": 1, "key": "/works/OL1143257W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL116294A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11432679W 3 2020-11-22T19:46:35.394594 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:37:54.636665"}, "subject_places": ["Korea", "Korea (South)"], "subjects": ["Twenty-first century", "Forcasts", "Forcasting", "History", "Forecasting", "Forecasts"], "latest_revision": 3, "key": "/works/OL11432679W", "title": "21-C widaehan Han\u02bcguk", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4806255A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-11-22T19:46:35.394594"}, "revision": 3}
+/type/work /works/OL11433015W 2 2010-01-20T13:20:14.273751 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:37:54.636665"}, "title": "Kazakhstan", "subject_places": ["Kazakhstan"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T13:20:14.273751"}, "latest_revision": 2, "key": "/works/OL11433015W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4806361A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11433407W 3 2010-12-03T13:50:55.130322 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:50:55.130322"}, "latest_revision": 3, "key": "/works/OL11433407W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4806446A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T04:37:58.481677"}, "title": "The new Soviet legislature", "subject_places": ["Soviet Union"], "subjects": ["Politics and government", "Soviet Union", "Soviet Union. Verkhovny\u012d Sovet"], "subject_times": ["1985-1991"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11433430W 3 2010-04-16T09:57:38.894270 {"subtitle": "issues and reauthorization", "created": {"type": "/type/datetime", "value": "2009-12-11T04:37:58.481677"}, "title": "FMHA farm loan program", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-04-16T09:57:38.894270"}, "latest_revision": 3, "key": "/works/OL11433430W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4806448A"}}], "type": {"key": "/type/work"}, "subjects": ["United States", "Law and legislation", "United States. Farmers Home Administration", "Agricultural credit"], "revision": 3}
+/type/work /works/OL11433750W 2 2010-01-20T13:24:51.134424 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:37:58.481677"}, "title": "State scholarship programs for postsecondary students", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T13:24:51.134424"}, "latest_revision": 2, "key": "/works/OL11433750W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4806550A"}}], "type": {"key": "/type/work"}, "subjects": ["Student loans", "Scholarships"], "revision": 2}
+/type/work /works/OL11434125W 2 2010-01-20T13:24:51.134424 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:37:58.481677"}, "title": "Shareholder voting concerning executive pay", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T13:24:51.134424"}, "latest_revision": 2, "key": "/works/OL11434125W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4806637A"}}], "type": {"key": "/type/work"}, "subjects": ["Stockholders", "Salaries", "Executives"], "revision": 2}
+/type/work /works/OL11434494W 2 2010-01-20T13:29:36.403080 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:38:06.252910"}, "title": "Evidence (part II) before the Commissioners on the Revenues and Management of Certain Schools, with an index to the evidence, 1864", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T13:29:36.403080"}, "latest_revision": 2, "key": "/works/OL11434494W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4806762A"}}], "type": {"key": "/type/work"}, "subjects": ["Public schools (Endowed) - England"], "revision": 2}
+/type/work /works/OL1143452W 2 2010-01-20T13:29:36.403080 {"title": "Neruda por Ska\u0301rmeta", "created": {"type": "/type/datetime", "value": "2009-11-11T16:10:55.467138"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-20T13:29:36.403080"}, "latest_revision": 2, "key": "/works/OL1143452W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL48445A"}}], "subject_people": ["Pablo Neruda (1904-1973)"], "type": {"key": "/type/work"}, "subjects": ["Friends and associates", "Criticism and interpretation"], "revision": 2}
+/type/work /works/OL11434686W 2 2010-01-20T13:29:36.403080 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:38:06.252910"}, "title": "La promenade de Saint-Cloud", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T13:29:36.403080"}, "latest_revision": 2, "key": "/works/OL11434686W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4806888A"}}], "subject_times": ["17th century", "17e si\u00e8cle"], "type": {"key": "/type/work"}, "subjects": ["Litt\u00e9rature fran\u00e7aise", "French literature", "Histoire", "History and criticism"], "revision": 2}
+/type/work /works/OL11434943W 2 2010-01-20T13:29:36.403080 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:38:06.252910"}, "title": "Shared appreciation mortgages", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T13:29:36.403080"}, "latest_revision": 2, "key": "/works/OL11434943W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4807056A"}}], "type": {"key": "/type/work"}, "subjects": ["Housing", "Mortgage loans", "Finance"], "revision": 2}
+/type/work /works/OL11435144W 1 2009-12-11T04:38:06.252910 {"title": "Sounds right", "created": {"type": "/type/datetime", "value": "2009-12-11T04:38:06.252910"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:38:06.252910"}, "latest_revision": 1, "key": "/works/OL11435144W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4807222A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1143522W 1 2009-12-09T20:34:40.192292 {"title": "Narrow fabrics", "created": {"type": "/type/datetime", "value": "2009-12-09T20:34:40.192292"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T20:34:40.192292"}, "latest_revision": 1, "key": "/works/OL1143522W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL116294A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL114357W 5 2020-09-05T07:35:23.121006 {"subtitle": "A Collaborative Novel", "covers": [209852], "last_modified": {"type": "/type/datetime", "value": "2020-09-05T07:35:23.121006"}, "latest_revision": 5, "key": "/works/OL114357W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL32654A"}}], "created": {"type": "/type/datetime", "value": "2009-10-18T02:50:10.177820"}, "title": "Natural Suspect", "subjects": ["Rich people", "Fiction"], "type": {"key": "/type/work"}, "revision": 5}
+/type/work /works/OL11436130W 2 2012-05-18T00:44:16.743348 {"title": "Acrylamide in air", "created": {"type": "/type/datetime", "value": "2009-12-11T04:38:14.533856"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-18T00:44:16.743348"}, "latest_revision": 2, "key": "/works/OL11436130W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4807925A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11436468W 2 2010-01-20T13:34:35.698480 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:38:22.690779"}, "title": "Shiso, bungei, Nihongo", "subject_places": ["Japan"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T13:34:35.698480"}, "latest_revision": 2, "key": "/works/OL11436468W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4808202A"}}], "type": {"key": "/type/work"}, "subjects": ["Japanese language", "Civilization"], "revision": 2}
+/type/work /works/OL1143712W 1 2009-12-09T20:34:40.192292 {"title": "Specification for 7 track magnetic tape for data interchange record at 200 r.p.i", "created": {"type": "/type/datetime", "value": "2009-12-09T20:34:40.192292"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T20:34:40.192292"}, "latest_revision": 1, "key": "/works/OL1143712W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL116294A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11437224W 3 2010-12-03T13:50:11.537821 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:50:11.537821"}, "title": "Recruits for the war!", "created": {"type": "/type/datetime", "value": "2009-12-11T04:38:22.690779"}, "subjects": ["Confederate States of America", "Confederate States of America. Army", "Recruiting, enlistment"], "latest_revision": 3, "key": "/works/OL11437224W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4808716A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11437244W 2 2010-01-20T13:39:32.868871 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:38:22.690779"}, "title": "Die phadagogik in hubersichtlicher darstellung", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T13:39:32.868871"}, "latest_revision": 2, "key": "/works/OL11437244W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4808731A"}}], "type": {"key": "/type/work"}, "subjects": ["Education"], "revision": 2}
+/type/work /works/OL11437517W 2 2010-01-20T13:39:32.868871 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:38:31.751463"}, "title": "Here and there", "subject_places": ["Oregon", "Linn County", "Benton County"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T13:39:32.868871"}, "latest_revision": 2, "key": "/works/OL11437517W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4808925A"}}], "type": {"key": "/type/work"}, "subjects": ["Activity programs in education"], "revision": 2}
+/type/work /works/OL11437687W 2 2010-01-20T13:39:32.868871 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:38:31.751463"}, "title": "An assessment of the impact of agricultural technology on output in the rainfed farming areas in Jordan", "subject_places": ["Jordan"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T13:39:32.868871"}, "latest_revision": 2, "key": "/works/OL11437687W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4809063A"}}], "type": {"key": "/type/work"}, "subjects": ["Dry farming", "Agricultural innovations", "Evaluation", "Agricultural productivity", "Crop yields"], "revision": 2}
+/type/work /works/OL11438172W 2 2010-01-20T13:44:02.333552 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:38:31.751463"}, "title": "International programs and services available at Oregon State College, 1957-58", "subject_places": ["United States", "Oregon"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T13:44:02.333552"}, "latest_revision": 2, "key": "/works/OL11438172W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4809453A"}}], "type": {"key": "/type/work"}, "subjects": ["Educational exchanges", "Education"], "revision": 2}
+/type/work /works/OL1143829W 1 2009-12-09T20:34:40.192292 {"title": "Specification for fittings for cylinder pressure indicators for reciprocating engines", "created": {"type": "/type/datetime", "value": "2009-12-09T20:34:40.192292"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T20:34:40.192292"}, "latest_revision": 1, "key": "/works/OL1143829W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL116294A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11438378W 2 2010-01-20T13:44:02.333552 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:38:46.084624"}, "title": "A guide to research grants from foundations and the Federal government, compiled by A. Stephen Stephan. Issued: March, 1950", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T13:44:02.333552"}, "latest_revision": 2, "key": "/works/OL11438378W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4809625A"}}], "type": {"key": "/type/work"}, "subjects": ["Endowment of research", "Bibliography"], "revision": 2}
+/type/work /works/OL11438418W 1 2009-12-11T04:38:46.084624 {"title": "Higher education in Montana", "created": {"type": "/type/datetime", "value": "2009-12-11T04:38:46.084624"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:38:46.084624"}, "latest_revision": 1, "key": "/works/OL11438418W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4809659A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11438672W 2 2010-01-20T13:44:02.333552 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:38:46.084624"}, "title": "Energy metabolism of farm animals", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T13:44:02.333552"}, "latest_revision": 2, "key": "/works/OL11438672W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4809851A"}}], "type": {"key": "/type/work"}, "subjects": ["Congresses", "Veterinary physiology", "Livestock", "Animal nutrition", "Energy metabolism", "Feeds", "Metabolism"], "revision": 2}
+/type/work /works/OL11438694W 3 2010-12-03T13:50:55.130322 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:38:46.084624"}, "subject_places": ["Australia", "Canada"], "subjects": ["Canada", "Constitutional law", "Politics and government"], "latest_revision": 3, "key": "/works/OL11438694W", "title": "Constitutional change in Canada", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4809869A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:50:55.130322"}, "revision": 3}
+/type/work /works/OL11438715W 2 2010-01-20T13:44:02.333552 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:38:46.084624"}, "title": "A power comparison of mutual fund timing and selectivity models under varying portfolio and market conditions", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T13:44:02.333552"}, "latest_revision": 2, "key": "/works/OL11438715W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4809889A"}}], "type": {"key": "/type/work"}, "subjects": ["Mathematical models", "Investment analysis", "Mutual funds", "Investments", "Portfolio management"], "revision": 2}
+/type/work /works/OL11438788W 3 2010-12-03T13:51:29.713346 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:51:29.713346"}, "latest_revision": 3, "key": "/works/OL11438788W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4809942A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T04:38:46.084624"}, "title": "Minutes of the seventy-first annual session of the Yadkin Baptist Association, held with the Church at New Hope, Iredell County, N.C., October 2d and 3d, 1863", "subject_places": ["Confederate States of America", "United States"], "subjects": ["History", "Religion", "Religious aspects", "United States Civil War, 1861-1865", "Yadkin Baptist Association (N.C.)"], "subject_times": ["Civil War, 1861-1865"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1143905W 1 2009-12-09T20:34:40.192292 {"title": "Specification for page sizes for books", "created": {"type": "/type/datetime", "value": "2009-12-09T20:34:40.192292"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T20:34:40.192292"}, "latest_revision": 1, "key": "/works/OL1143905W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL116294A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11439074W 2 2010-01-20T13:44:02.333552 {"title": "Rhetorical analysis of feminist critics' references to Virginia Woolf", "created": {"type": "/type/datetime", "value": "2009-12-11T04:38:46.084624"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-20T13:44:02.333552"}, "latest_revision": 2, "key": "/works/OL11439074W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4810174A"}}], "subject_people": ["Virginia Woolf (1882-1941)"], "type": {"key": "/type/work"}, "subjects": ["Feminism and literature", "Criticism and interpretation"], "revision": 2}
+/type/work /works/OL11439539W 2 2010-01-20T13:49:19.438424 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:38:54.510326"}, "title": "A plan for vocational education in San Francisco", "subject_places": ["San Francisco", "California"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T13:49:19.438424"}, "latest_revision": 2, "key": "/works/OL11439539W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4810527A"}}], "type": {"key": "/type/work"}, "subjects": ["Vocational education"], "revision": 2}
+/type/work /works/OL11439742W 2 2010-01-20T13:49:19.438424 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:38:54.510326"}, "title": "Sunday closing laws in Canada", "subject_places": ["Canada"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T13:49:19.438424"}, "latest_revision": 2, "key": "/works/OL11439742W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4810664A"}}], "type": {"key": "/type/work"}, "subjects": ["Provinces", "Sunday legislation", "Law and legislation", "Stores hours"], "revision": 2}
+/type/work /works/OL11439867W 2 2010-01-20T13:49:19.438424 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:38:54.510326"}, "title": "Permeability properties of an edible methylcellulose-palmitic acid film", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T13:49:19.438424"}, "latest_revision": 2, "key": "/works/OL11439867W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4810759A"}}], "type": {"key": "/type/work"}, "subjects": ["Food", "Permeability", "Edible coatings", "Preservation"], "revision": 2}
+/type/work /works/OL11439978W 1 2009-12-11T04:38:54.510326 {"title": "Calibration of crop water use with the Penman equation under United Arab Emirates conditions", "created": {"type": "/type/datetime", "value": "2009-12-11T04:38:54.510326"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:38:54.510326"}, "latest_revision": 1, "key": "/works/OL11439978W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4810845A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1144049W 2 2010-01-20T13:49:19.438424 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:34:42.913334"}, "title": "Specification for wood preservation by means of pressure creosoting", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T13:49:19.438424"}, "latest_revision": 2, "key": "/works/OL1144049W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL116294A"}}], "type": {"key": "/type/work"}, "subjects": ["Creosote", "Wood", "Preservation"], "revision": 2}
+/type/work /works/OL11440533W 1 2009-12-11T04:39:10.326818 {"title": "Golf addict omnibus", "created": {"type": "/type/datetime", "value": "2009-12-11T04:39:10.326818"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:39:10.326818"}, "latest_revision": 1, "key": "/works/OL11440533W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4811189A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11440562W 3 2010-12-03T20:21:54.916607 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:39:10.326818"}, "subjects": ["English Sermons", "Sermons, English"], "latest_revision": 3, "key": "/works/OL11440562W", "title": "A hand of fellovvship, to helpe keepe out sinne and Antichrist", "subject_times": ["17th century"], "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4811200A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T20:21:54.916607"}, "revision": 3}
+/type/work /works/OL11440752W 2 2010-01-20T13:53:43.165722 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:39:10.326818"}, "title": "Does Japan exert market power in the world wheat market?", "subject_places": ["Japan"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T13:53:43.165722"}, "latest_revision": 2, "key": "/works/OL11440752W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4811301A"}}], "type": {"key": "/type/work"}, "subjects": ["Wheat trade", "Import quotas", "Wheat", "Foreign trade regulation", "Marketing"], "revision": 2}
+/type/work /works/OL11440908W 1 2009-12-11T04:39:10.326818 {"title": "Le Moulin de Quetivel", "created": {"type": "/type/datetime", "value": "2009-12-11T04:39:10.326818"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:39:10.326818"}, "latest_revision": 1, "key": "/works/OL11440908W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4811391A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1144096W 1 2009-12-09T20:34:42.913334 {"title": "Synthetic resin adhesives(phenolic & aminoplastic) for wood", "created": {"type": "/type/datetime", "value": "2009-12-09T20:34:42.913334"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T20:34:42.913334"}, "latest_revision": 1, "key": "/works/OL1144096W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL116294A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11441189W 2 2010-01-20T13:53:43.165722 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:39:10.326818"}, "title": "A Model of building society interest rate setting", "subject_places": ["Great Britain"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T13:53:43.165722"}, "latest_revision": 2, "key": "/works/OL11441189W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4811512A"}}], "type": {"key": "/type/work"}, "subjects": ["Mathematical models", "Interest rates", "Savings and loan associations"], "revision": 2}
+/type/work /works/OL11441297W 2 2010-01-20T13:53:43.165722 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:39:10.326818"}, "title": "A practical rhetoric of expository prose [by] Thomas S. Kane [and] Leonard J. Peters", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T13:53:43.165722"}, "latest_revision": 2, "key": "/works/OL11441297W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4811561A"}}], "type": {"key": "/type/work"}, "subjects": ["Rhetoric", "English language"], "revision": 2}
+/type/work /works/OL11441618W 3 2010-12-03T13:53:53.435809 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:53:53.435809"}, "title": "Onion (Allium cepa L.) cultivar tolerance to bromoxynil", "created": {"type": "/type/datetime", "value": "2009-12-11T04:39:17.409371"}, "subjects": ["Effect of herbicides on Plants", "Onions", "Plants, Effect of herbicides on"], "latest_revision": 3, "key": "/works/OL11441618W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4811770A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11441655W 2 2010-01-20T13:53:43.165722 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:39:17.409371"}, "title": "Laws and ordinances relating to the city of Halifax", "subject_places": ["Halifax", "Nova Scotia"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T13:53:43.165722"}, "latest_revision": 2, "key": "/works/OL11441655W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4811798A"}}], "type": {"key": "/type/work"}, "subjects": ["Law and legislation", "Municipal government"], "revision": 2}
+/type/work /works/OL11441775W 1 2009-12-11T04:39:17.409371 {"title": "Aesthetics", "created": {"type": "/type/datetime", "value": "2009-12-11T04:39:17.409371"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:39:17.409371"}, "latest_revision": 1, "key": "/works/OL11441775W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4811870A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11441824W 3 2010-12-03T13:54:20.213639 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:54:20.213639"}, "title": "Examen confessionis fides Caluiniana, quam Scotis omnibus ministri Caluiniani subscribendam et iurandam proponunt", "created": {"type": "/type/datetime", "value": "2009-12-11T04:39:17.409371"}, "subjects": ["Church of Scotland", "Creeds", "Doctrines"], "latest_revision": 3, "key": "/works/OL11441824W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4811892A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11442130W 1 2009-12-11T04:39:17.409371 {"title": "A catalogue of the names of books and other authorities referred to; with abbreviations used..", "created": {"type": "/type/datetime", "value": "2009-12-11T04:39:17.409371"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:39:17.409371"}, "latest_revision": 1, "key": "/works/OL11442130W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4812045A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11442437W 3 2010-12-03T13:53:12.070797 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:39:24.487594"}, "subject_places": ["Aegean Islands (Greece and Turkey)"], "subjects": ["British Naval operations", "British Personal narratives", "Naval operations, British", "Personal narratives, British", "World War, 1939-1945"], "latest_revision": 3, "key": "/works/OL11442437W", "title": "War in the Islands", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4812238A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:53:12.070797"}, "revision": 3}
+/type/work /works/OL11442823W 2 2010-01-20T13:57:46.993740 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:39:24.487594"}, "title": "Historical report of activities", "subject_places": ["Oregon"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T13:57:46.993740"}, "latest_revision": 2, "key": "/works/OL11442823W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4812477A"}}], "type": {"key": "/type/work"}, "subjects": ["Study and teaching", "Drinking of alcoholic beverages"], "revision": 2}
+/type/work /works/OL11443230W 2 2010-01-20T13:57:46.993740 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:39:24.487594"}, "title": "Growth, fabrication and testing of pseudomorphic P-channel GaAs/InGaAs/AlGaAs MODFETS", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T13:57:46.993740"}, "latest_revision": 2, "key": "/works/OL11443230W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4812688A"}}], "type": {"key": "/type/work"}, "subjects": ["Gallium arsenide semiconductors", "Modulation-doped field-effect transistors"], "revision": 2}
+/type/work /works/OL11443314W 3 2010-12-03T13:52:37.929510 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:52:37.929510"}, "title": "Two right profitable and fruitfull concordances, or large and ample tables alphabeticall", "created": {"type": "/type/datetime", "value": "2009-12-11T04:39:24.487594"}, "subjects": ["Bible", "Concordances, English", "English Concordances"], "latest_revision": 3, "key": "/works/OL11443314W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4812732A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11443534W 2 2010-01-20T14:01:58.433876 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:39:31.307235"}, "title": "Marine eutrophication and population dynamics", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T14:01:58.433876"}, "latest_revision": 2, "key": "/works/OL11443534W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4812845A"}}], "type": {"key": "/type/work"}, "subjects": ["Congresses", "Marine animals", "Eutrophication", "Effect of water quality on", "Marine ecology", "Population biology", "Ecology", "Effect of water pollution on"], "revision": 2}
+/type/work /works/OL11443579W 5 2013-05-10T15:23:50.792687 {"last_modified": {"type": "/type/datetime", "value": "2013-05-10T15:23:50.792687"}, "title": "Danzig passage", "created": {"type": "/type/datetime", "value": "2009-12-11T04:39:31.307235"}, "subjects": ["Fiction", "Holocaust, Jewish (1939-1945)", "World War, 1939-1945", "World War,1939-1945"], "latest_revision": 5, "key": "/works/OL11443579W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL444294A"}}], "type": {"key": "/type/work"}, "revision": 5}
+/type/work /works/OL11444040W 3 2010-12-03T22:37:09.926574 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:39:31.307235"}, "subject_places": ["Canada"], "subjects": ["Co-operative Commonwealth Federation", "Communism"], "latest_revision": 3, "key": "/works/OL11444040W", "title": "Figure it out for yourself", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4813151A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T22:37:09.926574"}, "revision": 3}
+/type/work /works/OL11444435W 3 2019-12-03T21:59:26.590720 {"title": "Alexandri Aphrodisiei Commentaria in duodecim Aristotelis libros de prima philosophia", "created": {"type": "/type/datetime", "value": "2009-12-11T04:39:38.270639"}, "last_modified": {"type": "/type/datetime", "value": "2019-12-03T21:59:26.590720"}, "latest_revision": 3, "key": "/works/OL11444435W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL236822A"}}], "subject_people": ["Aristotle"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11444467W 2 2010-01-20T14:01:58.433876 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:39:38.270639"}, "title": "Canada and the human environment =", "subject_places": ["Canada"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T14:01:58.433876"}, "latest_revision": 2, "key": "/works/OL11444467W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4813444A"}}], "type": {"key": "/type/work"}, "subjects": ["Human ecology", "Environmental policy"], "revision": 2}
+/type/work /works/OL11444618W 2 2010-01-20T14:01:58.433876 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:39:38.270639"}, "title": "Antediluvian phytology", "subject_places": ["Great Britain"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T14:01:58.433876"}, "latest_revision": 2, "key": "/works/OL11444618W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4813556A"}}], "subject_times": ["Carboniferous"], "type": {"key": "/type/work"}, "subjects": ["Paleobotany"], "revision": 2}
+/type/work /works/OL11444659W 2 2010-01-20T14:01:58.433876 {"title": "Samuel Franklin Cody and the development of the British Army Aeroplane no.1", "created": {"type": "/type/datetime", "value": "2009-12-11T04:39:38.270639"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-20T14:01:58.433876"}, "latest_revision": 2, "key": "/works/OL11444659W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4813586A"}}], "subject_people": ["Samuel Franklin Cody"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11444780W 2 2010-01-20T14:06:30.315509 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:39:38.270639"}, "title": "Theodori de Almeida Physicarum institutionum libri X", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T14:06:30.315509"}, "latest_revision": 2, "key": "/works/OL11444780W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4813673A"}}], "type": {"key": "/type/work"}, "subjects": ["Early works to 1800", "Mechanics", "Physics"], "revision": 2}
+/type/work /works/OL11444857W 2 2010-01-20T14:06:30.315509 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:39:38.270639"}, "title": "Russki\u01d0 iazyk", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T14:06:30.315509"}, "latest_revision": 2, "key": "/works/OL11444857W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4813713A"}}], "subject_times": ["1917-1950"], "type": {"key": "/type/work"}, "subjects": ["Russian language", "Grammar"], "revision": 2}
+/type/work /works/OL11445801W 1 2009-12-11T04:39:45.223708 {"title": "Survey of bacon to determine fat and salt contents against specific claims", "created": {"type": "/type/datetime", "value": "2009-12-11T04:39:45.223708"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:39:45.223708"}, "latest_revision": 1, "key": "/works/OL11445801W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4814297A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11445851W 1 2009-12-11T04:39:45.223708 {"title": "Sprachgrenzen im Nord\u00f6stlichen Th\u00fcringen", "created": {"type": "/type/datetime", "value": "2009-12-11T04:39:45.223708"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:39:45.223708"}, "latest_revision": 1, "key": "/works/OL11445851W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4814324A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11446131W 2 2010-01-20T14:10:52.103568 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:39:45.223708"}, "title": "Labour-management cooperation", "subject_places": ["Canada"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T14:10:52.103568"}, "latest_revision": 2, "key": "/works/OL11446131W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4814512A"}}], "type": {"key": "/type/work"}, "subjects": ["Industrial relations", "Labor-management committees"], "revision": 2}
+/type/work /works/OL11446287W 1 2009-12-11T04:39:45.223708 {"title": "The railroad situation", "created": {"type": "/type/datetime", "value": "2009-12-11T04:39:45.223708"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:39:45.223708"}, "latest_revision": 1, "key": "/works/OL11446287W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4814621A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1144630W 2 2010-01-20T14:10:52.103568 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:34:42.913334"}, "title": "What is literature?", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T14:10:52.103568"}, "latest_revision": 2, "key": "/works/OL1144630W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL116295A"}}], "type": {"key": "/type/work"}, "subjects": ["Literature"], "revision": 2}
+/type/work /works/OL11446321W 4 2020-01-13T11:56:41.926650 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:39:45.223708"}, "subjects": ["Just-in-time systems", "Inventory control", "Control de calidad", "Just-in-time-Produktion", "Just-in-time-productie", "Gestion des stocks", "Juste-a-temps (Systeme)"], "latest_revision": 4, "key": "/works/OL11446321W", "title": "Just in time", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4814642A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-01-13T11:56:41.926650"}, "covers": [8082599], "revision": 4}
+/type/work /works/OL11446668W 2 2010-01-20T14:10:52.103568 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:39:52.631733"}, "title": "Root growth of vegetation in degraded rangeland in Inner Mongolia, China", "subject_places": ["Inner Mongolia", "China"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T14:10:52.103568"}, "latest_revision": 2, "key": "/works/OL11446668W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4814878A"}}], "type": {"key": "/type/work"}, "subjects": ["Range plants", "Caragana", "Roots", "Artemisia", "Growth"], "revision": 2}
+/type/work /works/OL11447240W 1 2009-12-11T04:39:52.631733 {"title": "School is great", "created": {"type": "/type/datetime", "value": "2009-12-11T04:39:52.631733"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:39:52.631733"}, "latest_revision": 1, "key": "/works/OL11447240W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4815252A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1144729W 2 2010-04-20T03:23:39.218379 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:34:42.913334"}, "title": "Letters and diaries", "subject_places": ["England"], "last_modified": {"type": "/type/datetime", "value": "2010-04-20T03:23:39.218379"}, "latest_revision": 2, "key": "/works/OL1144729W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL116295A"}}], "subject_people": ["John Henry Newman (1801-1890)"], "type": {"key": "/type/work"}, "subjects": ["Catholic Church", "Clergy", "Correspondence", "Diaries"], "revision": 2}
+/type/work /works/OL11447876W 1 2009-12-11T04:39:59.702174 {"title": "Through snow and sunshine", "created": {"type": "/type/datetime", "value": "2009-12-11T04:39:59.702174"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:39:59.702174"}, "latest_revision": 1, "key": "/works/OL11447876W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4815723A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11447991W 2 2010-01-20T14:14:55.676747 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:39:59.702174"}, "title": "The ancient isle of Marken", "subject_places": ["Marken (Island)", "Volendam (Netherlands)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T14:14:55.676747"}, "latest_revision": 2, "key": "/works/OL11447991W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4815781A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11448253W 1 2009-12-11T04:39:59.702174 {"title": "The scholar's daughter", "created": {"type": "/type/datetime", "value": "2009-12-11T04:39:59.702174"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:39:59.702174"}, "latest_revision": 1, "key": "/works/OL11448253W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4815888A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11449288W 3 2010-04-28T07:21:15.758500 {"title": "Les oligo-e\u0301le\u0301ments en agriculture et e\u0301levage", "created": {"type": "/type/datetime", "value": "2009-12-11T04:40:08.095836"}, "covers": [5300056], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:21:15.758500"}, "latest_revision": 3, "key": "/works/OL11449288W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4816663A"}}], "subjects": ["Trace elements in nutrition", "Trace elements in agriculture", "Alimentation", "Plantes", "Nutrition", "Trace elements", "Animaux", "Trace element deficiency diseases", "Oligo\u00e9l\u00e9ments", "Trace elements in animal nutrition"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11449304W 2 2011-01-14T01:06:56.441693 {"subtitle": "an Ethiopian sketch in one scene", "title": "The intelligence office", "created": {"type": "/type/datetime", "value": "2009-12-11T04:40:08.095836"}, "last_modified": {"type": "/type/datetime", "value": "2011-01-14T01:06:56.441693"}, "latest_revision": 2, "key": "/works/OL11449304W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4816676A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11449729W 4 2021-10-20T12:14:38.501621 {"title": "Mountain bike!", "key": "/works/OL11449729W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4816993A"}}], "type": {"key": "/type/work"}, "subjects": ["Mountain biking", "Mountain bikes"], "covers": [12141666], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T04:40:15.920557"}, "last_modified": {"type": "/type/datetime", "value": "2021-10-20T12:14:38.501621"}}
+/type/work /works/OL11450490W 2 2010-01-20T14:19:20.894876 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:40:27.933366"}, "title": "The charge of the hash brigade", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T14:19:20.894876"}, "latest_revision": 2, "key": "/works/OL11450490W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4817576A"}}], "type": {"key": "/type/work"}, "subjects": ["Librettos", "Musicals"], "revision": 2}
+/type/work /works/OL11451138W 4 2022-05-14T08:37:47.677272 {"title": "Sports science handbook", "subjects": ["Encyclopedias", "Kinesiology", "Physical education and training", "\u00c9ducation physique", "Kin\u00e9siologie", "Aspect physiologique", "Exercice", "Sports sciences", "Encyclop\u00e9dies", "Sciences du sport", "Exercise"], "key": "/works/OL11451138W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4817975A"}}], "type": {"key": "/type/work"}, "covers": [12744070], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T04:40:27.933366"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-14T08:37:47.677272"}}
+/type/work /works/OL11451555W 2 2010-01-20T14:23:49.935963 {"title": "Conferring Jurisdiction upon the Court of Claims of the U.S. To Hear, Consider, and Render Judgment on the Claims of George A. Carden and Anderson T. Herd", "created": {"type": "/type/datetime", "value": "2009-12-11T04:40:33.767772"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-20T14:23:49.935963"}, "latest_revision": 2, "key": "/works/OL11451555W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4818084A"}}], "subject_people": ["George A. Carden", "Anderson T. Herd"], "type": {"key": "/type/work"}, "subjects": ["Claims vs. United States", "World War, 1914-1918", "Claims"], "revision": 2}
+/type/work /works/OL1145172W 5 2020-08-11T06:09:04.252472 {"covers": [5886649], "last_modified": {"type": "/type/datetime", "value": "2020-08-11T06:09:04.252472"}, "latest_revision": 5, "key": "/works/OL1145172W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL116330A"}}], "created": {"type": "/type/datetime", "value": "2009-12-09T20:34:50.463580"}, "title": "An introductory treatise on the lunar theory", "subject_places": ["Moon"], "subjects": ["Lunar theory"], "type": {"key": "/type/work"}, "revision": 5}
+/type/work /works/OL1145193W 3 2010-07-20T14:24:27.665238 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:34:50.463580"}, "title": "How to enjoy the Bible", "last_modified": {"type": "/type/datetime", "value": "2010-07-20T14:24:27.665238"}, "latest_revision": 3, "key": "/works/OL1145193W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL116333A"}}], "type": {"key": "/type/work"}, "subjects": ["Bible as literature", "Criticism, interpretation", "Bible"], "revision": 3}
+/type/work /works/OL11452035W 1 2009-12-11T04:40:33.767772 {"title": "Castles and ancient monuments of West Wales", "created": {"type": "/type/datetime", "value": "2009-12-11T04:40:33.767772"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:40:33.767772"}, "latest_revision": 1, "key": "/works/OL11452035W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4818327A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11452045W 1 2009-12-11T04:40:33.767772 {"title": "Safe and secure", "created": {"type": "/type/datetime", "value": "2009-12-11T04:40:33.767772"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:40:33.767772"}, "latest_revision": 1, "key": "/works/OL11452045W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4818332A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11452139W 1 2009-12-11T04:40:33.767772 {"title": "Assessment in open college networks", "created": {"type": "/type/datetime", "value": "2009-12-11T04:40:33.767772"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:40:33.767772"}, "latest_revision": 1, "key": "/works/OL11452139W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4818380A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11452168W 1 2009-12-11T04:40:33.767772 {"title": "It's no joke having to stand here!", "created": {"type": "/type/datetime", "value": "2009-12-11T04:40:33.767772"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:40:33.767772"}, "latest_revision": 1, "key": "/works/OL11452168W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4818404A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11452197W 2 2010-01-20T14:27:54.833294 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:40:33.767772"}, "title": "Flowfield analysis for successive oblique shock wave-turbulent boundary layer interactions", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T14:27:54.833294"}, "latest_revision": 2, "key": "/works/OL11452197W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4818427A"}}], "type": {"key": "/type/work"}, "subjects": ["Turbulent boundary layer", "Fluid dynamics", "Shock waves"], "revision": 2}
+/type/work /works/OL11452302W 1 2009-12-11T04:40:33.767772 {"title": "Brixton town trails", "created": {"type": "/type/datetime", "value": "2009-12-11T04:40:33.767772"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:40:33.767772"}, "latest_revision": 1, "key": "/works/OL11452302W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4818499A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11452445W 2 2010-01-20T14:27:54.833294 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:40:40.112506"}, "title": "Correlation of plant moisture in Hawaii with the Keetch Byram Drought Index", "subject_places": ["Hawaii"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T14:27:54.833294"}, "latest_revision": 2, "key": "/works/OL11452445W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4818571A"}}], "type": {"key": "/type/work"}, "subjects": ["Grassland fires", "Fires", "Moisture", "Measurement"], "revision": 2}
+/type/work /works/OL11452738W 4 2021-08-25T17:33:46.312559 {"title": "Trait\u00e9 de g\u00e9ognosie, ou, Expos\u00e9 des connaissances actuelles sur la constitution physique et min\u00e9rale du globe terrestre", "key": "/works/OL11452738W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4818734A"}}], "type": {"key": "/type/work"}, "subjects": ["Geology"], "covers": [11794008], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T04:40:40.112506"}, "last_modified": {"type": "/type/datetime", "value": "2021-08-25T17:33:46.312559"}}
+/type/work /works/OL11453993W 2 2010-01-20T14:32:27.373284 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:40:46.705017"}, "title": "An introduction to the DFSC Federal Women's Program Committee", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T14:32:27.373284"}, "latest_revision": 2, "key": "/works/OL11453993W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4819498A"}}], "type": {"key": "/type/work"}, "subjects": ["Women in the civil service"], "revision": 2}
+/type/work /works/OL11454209W 2 2010-01-20T14:32:27.373284 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:40:46.705017"}, "title": "Methods used at the Forest Products Laboratory for preparing cross sections of paper and paperboard", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T14:32:27.373284"}, "latest_revision": 2, "key": "/works/OL11454209W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4819642A"}}], "type": {"key": "/type/work"}, "subjects": ["Methodology", "Research", "Paper", "Paperboard"], "revision": 2}
+/type/work /works/OL11454374W 2 2010-01-20T14:32:27.373284 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:40:52.963629"}, "title": "A silvicultural guide for white pine in the Northeast", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T14:32:27.373284"}, "latest_revision": 2, "key": "/works/OL11454374W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4819756A"}}], "type": {"key": "/type/work"}, "subjects": ["White pine", "Forests and forestry"], "revision": 2}
+/type/work /works/OL11454411W 2 2010-01-20T14:32:27.373284 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:40:52.963629"}, "title": "Trotskyism or Leninism?", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T14:32:27.373284"}, "latest_revision": 2, "key": "/works/OL11454411W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4819769A"}}], "type": {"key": "/type/work"}, "subjects": ["Communism"], "revision": 2}
+/type/work /works/OL11454494W 3 2010-12-03T17:43:10.847435 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T17:43:10.847435"}, "title": "ha- Sipur ha-Yi\u015bre\u02beeli ha-\u1e33atsar", "created": {"type": "/type/datetime", "value": "2009-12-11T04:40:52.963629"}, "subjects": ["History and criticism", "Israeli Short stories", "Short stories, Israeli"], "latest_revision": 3, "key": "/works/OL11454494W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4819824A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11454542W 1 2009-12-11T04:40:52.963629 {"title": "I missed the last eclipse", "created": {"type": "/type/datetime", "value": "2009-12-11T04:40:52.963629"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:40:52.963629"}, "latest_revision": 1, "key": "/works/OL11454542W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4819854A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11454743W 3 2010-12-03T14:08:56.165145 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:40:52.963629"}, "subject_places": ["United States"], "subjects": ["Handbooks, manuals", "Quality control", "United States", "United States. Defense Logistics Agency"], "latest_revision": 3, "key": "/works/OL11454743W", "title": "Quality assurance technical development program", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4819936A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:08:56.165145"}, "revision": 3}
+/type/work /works/OL11454746W 1 2009-12-11T04:40:52.963629 {"title": "Birthing in paradise", "created": {"type": "/type/datetime", "value": "2009-12-11T04:40:52.963629"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:40:52.963629"}, "latest_revision": 1, "key": "/works/OL11454746W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4819938A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11455032W 1 2009-12-11T04:40:52.963629 {"title": "And then there were eight", "created": {"type": "/type/datetime", "value": "2009-12-11T04:40:52.963629"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:40:52.963629"}, "latest_revision": 1, "key": "/works/OL11455032W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4820115A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11455174W 2 2010-01-20T14:37:12.841697 {"title": "The Handel festivals", "created": {"type": "/type/datetime", "value": "2009-12-11T04:40:52.963629"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-20T14:37:12.841697"}, "latest_revision": 2, "key": "/works/OL11455174W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4820180A"}}], "subject_people": ["George Frideric Handel (1685-1759)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11455700W 3 2021-09-06T02:07:52.465922 {"title": "Prevention of preferential bridge icing using heat pipes", "subject_places": ["United States"], "key": "/works/OL11455700W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4820498A"}}], "type": {"key": "/type/work"}, "subjects": ["Bridges", "Heating-pipes", "Snow and ice control", "Ice prevention", "Solar collectors"], "covers": [11911824], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T04:40:59.763567"}, "last_modified": {"type": "/type/datetime", "value": "2021-09-06T02:07:52.465922"}}
+/type/work /works/OL11455990W 2 2010-01-20T14:41:53.716096 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:40:59.763567"}, "title": "Materials selection policy", "subject_places": ["Dartmouth", "Nova Scotia"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T14:41:53.716096"}, "latest_revision": 2, "key": "/works/OL11455990W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4820697A"}}], "type": {"key": "/type/work"}, "subjects": ["Regional libraries", "Collection development", "Policy statements", "Book selection"], "revision": 2}
+/type/work /works/OL11456506W 2 2010-01-20T14:41:53.716096 {"title": "Christine Borland, Craig Richardson", "created": {"type": "/type/datetime", "value": "2009-12-11T04:41:05.540014"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-20T14:41:53.716096"}, "latest_revision": 2, "key": "/works/OL11456506W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4821005A"}}], "subject_people": ["Christine Borland", "Craig Richardson"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL1145679W 2 2010-04-29T02:37:24.109822 {"subtitle": "a mystery play in one act", "created": {"type": "/type/datetime", "value": "2009-12-09T20:34:50.463580"}, "title": "Murder in Hollywood", "last_modified": {"type": "/type/datetime", "value": "2010-04-29T02:37:24.109822"}, "latest_revision": 2, "key": "/works/OL1145679W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL116374A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11456987W 3 2010-12-03T22:35:33.521949 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T22:35:33.521949"}, "latest_revision": 3, "key": "/works/OL11456987W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4821186A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T04:41:05.540014"}, "title": "Saltykov-Shchedrin", "subjects": ["Biography", "Russian Satirists", "Satirists, Russian"], "subject_people": ["Mikhail Evgrafovich Saltykov (1826-1889)"], "subject_times": ["19th century"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11457075W 1 2009-12-11T04:41:05.540014 {"title": "Management of deliberate self harm at Darlington Memorial Hospital", "created": {"type": "/type/datetime", "value": "2009-12-11T04:41:05.540014"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:41:05.540014"}, "latest_revision": 1, "key": "/works/OL11457075W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4821239A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11457102W 3 2010-12-03T18:33:09.195952 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T18:33:09.195952"}, "title": "Growing ornamentals in urban garden", "created": {"type": "/type/datetime", "value": "2009-12-11T04:41:05.540014"}, "subjects": ["Ornamental Plants", "Plants, Ornamental"], "latest_revision": 3, "key": "/works/OL11457102W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4821254A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11457336W 2 2010-01-20T14:46:26.573291 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:41:16.599819"}, "title": "Chemische Untersuchungen einiger niederrheinischen Fossilien eines Vesuvians und des Wassers im Basalt", "subject_places": ["Germany"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T14:46:26.573291"}, "latest_revision": 2, "key": "/works/OL11457336W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4821373A"}}], "type": {"key": "/type/work"}, "subjects": ["Vesuvianite", "Basalt", "Mineralogy"], "revision": 2}
+/type/work /works/OL11457906W 5 2022-02-28T12:43:40.128222 {"title": "The French", "covers": [4277948], "subject_places": ["France"], "subjects": ["French National characteristics", "National characteristics, French", "Social life and customs", "Sociallife and customs", "French language, self-instruction"], "key": "/works/OL11457906W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4821699A"}}], "subject_times": ["20th century"], "type": {"key": "/type/work"}, "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2009-12-11T04:41:16.599819"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-28T12:43:40.128222"}}
+/type/work /works/OL11457920W 3 2010-12-03T21:06:54.404092 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T21:06:54.404092"}, "title": "Le guide du fran\u00e7ais familier", "created": {"type": "/type/datetime", "value": "2009-12-11T04:41:16.599819"}, "subjects": ["Argot", "Fran\u00e7ais (Langue)"], "latest_revision": 3, "key": "/works/OL11457920W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4821703A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11457954W 4 2023-01-03T12:15:11.432410 {"title": "Un premier ministre de Bourguiba t\u00e9moigne", "covers": [8381981], "subject_places": ["Tunisia"], "subjects": ["Politics and government", "Biography", "Statesmen", "Prime ministers"], "subject_people": ["Mu\u1e25ammad al-\u1e62\u0101li\u1e25 Maz\u0101l\u012b"], "key": "/works/OL11457954W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4821718A"}}], "subject_times": ["1956-1987"], "type": {"key": "/type/work"}, "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T04:41:16.599819"}, "last_modified": {"type": "/type/datetime", "value": "2023-01-03T12:15:11.432410"}}
+/type/work /works/OL11458293W 1 2009-12-11T04:41:16.599819 {"title": "Le the\u0301a\u0302tre", "created": {"type": "/type/datetime", "value": "2009-12-11T04:41:16.599819"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:41:16.599819"}, "latest_revision": 1, "key": "/works/OL11458293W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4821892A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11458727W 2 2010-01-20T14:50:53.957353 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:41:23.415101"}, "title": "Tip moth and webworm attacks in southwide pine seed source plantations", "subject_places": ["Southern States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T14:50:53.957353"}, "latest_revision": 2, "key": "/works/OL11458727W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4822128A"}}], "type": {"key": "/type/work"}, "subjects": ["Pine", "Diseases and pests"], "revision": 2}
+/type/work /works/OL11458742W 2 2010-01-20T14:50:53.957353 {"title": "Adnotationes criticae ad Ciceronis orationem pro Sex. Roscio Amerino habitam", "created": {"type": "/type/datetime", "value": "2009-12-11T04:41:23.415101"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-20T14:50:53.957353"}, "latest_revision": 2, "key": "/works/OL11458742W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4822139A"}}], "subject_people": ["Marcus Tullius Cicero"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11458832W 2 2010-01-20T14:50:53.957353 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:41:23.415101"}, "title": "Control of black flies in Canada", "subject_places": ["Canada"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T14:50:53.957353"}, "latest_revision": 2, "key": "/works/OL11458832W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4822196A"}}], "type": {"key": "/type/work"}, "subjects": ["Control", "Flies", "Simuliidae"], "revision": 2}
+/type/work /works/OL114589W 1 2009-10-18T02:50:10.177820 {"created": {"type": "/type/datetime", "value": "2009-10-18T02:50:10.177820"}, "title": "Experimental General Chemistry", "last_modified": {"type": "/type/datetime", "value": "2009-10-18T02:50:10.177820"}, "latest_revision": 1, "key": "/works/OL114589W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL32709A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11459060W 1 2009-12-11T04:41:23.415101 {"title": "Chansons de chez nous", "created": {"type": "/type/datetime", "value": "2009-12-11T04:41:23.415101"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:41:23.415101"}, "latest_revision": 1, "key": "/works/OL11459060W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4822363A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11459062W 1 2009-12-11T04:41:23.415101 {"title": "Refrains de guerre", "created": {"type": "/type/datetime", "value": "2009-12-11T04:41:23.415101"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:41:23.415101"}, "latest_revision": 1, "key": "/works/OL11459062W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4822363A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11459210W 2 2010-01-20T14:50:53.957353 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:41:23.415101"}, "title": "al- Fajwah bayna j\u0101nibay al-a\u1e6dlas\u012b wa-al-\u1e25ur\u016bb al-\u1e25a\u1e0d\u0101r\u012byah", "subject_places": ["Europe", "Islamic countries"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T14:50:53.957353"}, "latest_revision": 2, "key": "/works/OL11459210W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4822466A"}}], "type": {"key": "/type/work"}, "subjects": ["Foreign relations"], "revision": 2}
+/type/work /works/OL11459276W 1 2009-12-11T04:41:23.415101 {"title": "Atlas photographique des champignons", "created": {"type": "/type/datetime", "value": "2009-12-11T04:41:23.415101"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:41:23.415101"}, "latest_revision": 1, "key": "/works/OL11459276W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4822504A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1145938W 4 2010-11-23T08:08:22.732127 {"title": "Issues in Modeling and Control of Biomechanical Systems/Dsc Vol 25/G00559 (DSC)", "created": {"type": "/type/datetime", "value": "2009-12-09T20:34:50.463580"}, "covers": [4668995], "last_modified": {"type": "/type/datetime", "value": "2010-11-23T08:08:22.732127"}, "latest_revision": 4, "key": "/works/OL1145938W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4487662A"}}], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL11459595W 2 2012-06-26T10:16:27.515622 {"title": "Discours de M. E. Renan", "created": {"type": "/type/datetime", "value": "2009-12-11T04:41:29.312530"}, "last_modified": {"type": "/type/datetime", "value": "2012-06-26T10:16:27.515622"}, "latest_revision": 2, "key": "/works/OL11459595W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL108294A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11460007W 2 2010-01-20T14:54:57.391757 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:41:29.312530"}, "title": "Prevention of shoaling at Little Lake Harbor, Michigan", "subject_places": ["Michigan"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T14:54:57.391757"}, "latest_revision": 2, "key": "/works/OL11460007W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4822823A"}}], "type": {"key": "/type/work"}, "subjects": ["Harbors", "Hydraulic models"], "revision": 2}
+/type/work /works/OL11460095W 3 2010-04-28T07:21:15.758500 {"title": "Vater Unser", "created": {"type": "/type/datetime", "value": "2009-12-11T04:41:29.312530"}, "covers": [5762087], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:21:15.758500"}, "latest_revision": 3, "key": "/works/OL11460095W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4822860A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11460667W 3 2010-08-10T22:46:20.365302 {"subtitle": "un camino intelectual", "last_modified": {"type": "/type/datetime", "value": "2010-08-10T22:46:20.365302"}, "title": "De utop\u00edas, cat\u00e1strofes y esperanzas", "created": {"type": "/type/datetime", "value": "2009-12-11T04:41:36.561367"}, "subject_places": ["Argentina"], "subjects": ["Politics and government", "Intellectual life", "Violence", "History"], "latest_revision": 3, "key": "/works/OL11460667W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4823227A"}}], "subject_times": ["20th century"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11461177W 1 2009-12-11T04:41:36.561367 {"title": "Izbrannoe", "created": {"type": "/type/datetime", "value": "2009-12-11T04:41:36.561367"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:41:36.561367"}, "latest_revision": 1, "key": "/works/OL11461177W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4823570A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11461350W 3 2012-05-05T15:41:07.668490 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:41:43.035710"}, "subject_places": ["Turkey", "Kuluncak Region"], "subjects": ["Mines and mineral resources", "Geology"], "latest_revision": 3, "key": "/works/OL11461350W", "title": "Geology and mineral resources of the Kuluncak-Sofular area (Malatya K39-a nd K39-a", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL79165A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-05T15:41:07.668490"}, "revision": 3}
+/type/work /works/OL11461520W 2 2010-01-20T14:59:02.293673 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:41:43.035710"}, "title": "Blooming period and yield of apples", "subject_places": ["Ohio"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T14:59:02.293673"}, "latest_revision": 2, "key": "/works/OL11461520W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4823705A"}}], "type": {"key": "/type/work"}, "subjects": ["Apples", "Flowering time"], "revision": 2}
+/type/work /works/OL1146156W 4 2012-11-28T11:04:05.590257 {"last_modified": {"type": "/type/datetime", "value": "2012-11-28T11:04:05.590257"}, "title": "The rudiments of Latin grammar", "created": {"type": "/type/datetime", "value": "2009-12-09T20:34:58.021032"}, "subjects": ["Latin language", "Grammar"], "latest_revision": 4, "key": "/works/OL1146156W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL116399A"}}], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL11461814W 2 2010-01-20T14:59:02.293673 {"title": "E.A. Baratynski\u01d0", "created": {"type": "/type/datetime", "value": "2009-12-11T04:41:43.035710"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-20T14:59:02.293673"}, "latest_revision": 2, "key": "/works/OL11461814W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4823833A"}}], "subject_people": ["E. A. Baratynski\u012d (1800-1844)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11463250W 2 2010-01-20T15:03:27.679869 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:41:50.148762"}, "title": "Alternate circulator design concept no. 1 fo a 300 MW(e) GCFR demonstration plant", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T15:03:27.679869"}, "latest_revision": 2, "key": "/works/OL11463250W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4824794A"}}], "type": {"key": "/type/work"}, "subjects": ["Gas cooled reactors"], "revision": 2}
+/type/work /works/OL11463464W 3 2012-08-07T23:09:51.138099 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:41:57.306523"}, "subject_places": ["United States"], "subjects": ["Technical education", "Curricula", "Study and teaching", "Technology", "Audio-visual aids"], "latest_revision": 3, "key": "/works/OL11463464W", "title": "NIOSH catalog of courses", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4740624A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-08-07T23:09:51.138099"}, "revision": 3}
+/type/work /works/OL11463786W 2 2010-01-20T15:08:29.106113 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:41:57.306523"}, "title": "Runoff nonitoring [i.e. monitoring]", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T15:08:29.106113"}, "latest_revision": 2, "key": "/works/OL11463786W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4825160A"}}], "type": {"key": "/type/work"}, "subjects": ["Measurement", "Runoff", "Water quality"], "revision": 2}
+/type/work /works/OL11464056W 1 2009-12-11T04:41:57.306523 {"title": "Le commerce marketing", "created": {"type": "/type/datetime", "value": "2009-12-11T04:41:57.306523"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:41:57.306523"}, "latest_revision": 1, "key": "/works/OL11464056W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4825321A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11464103W 2 2010-01-20T15:08:29.106113 {"title": "Robespierre", "created": {"type": "/type/datetime", "value": "2009-12-11T04:41:57.306523"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-20T15:08:29.106113"}, "latest_revision": 2, "key": "/works/OL11464103W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4825348A"}}], "subject_people": ["Maximilien de Robespierre (1758-1794)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11464150W 1 2009-12-11T04:41:57.306523 {"title": "Man\u0303ana Espan\u0303a", "created": {"type": "/type/datetime", "value": "2009-12-11T04:41:57.306523"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:41:57.306523"}, "latest_revision": 1, "key": "/works/OL11464150W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4825368A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11464467W 2 2010-01-20T15:08:29.106113 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:42:00.980673"}, "title": "Front-end recycling", "subject_places": ["United States", "Connecticut", "Fairfield County"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T15:08:29.106113"}, "latest_revision": 2, "key": "/works/OL11464467W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4825537A"}}], "type": {"key": "/type/work"}, "subjects": ["Recycling (Waste, etc.)", "Finance"], "revision": 2}
+/type/work /works/OL11464493W 2 2010-01-20T15:08:29.106113 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:42:00.980673"}, "title": "Country/region-specific emmission factors in national greenhouse gas inventories", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T15:08:29.106113"}, "latest_revision": 2, "key": "/works/OL11464493W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4825551A"}}], "type": {"key": "/type/work"}, "subjects": ["Greenhouse gases", "Statistics"], "revision": 2}
+/type/work /works/OL11464512W 2 2010-01-20T15:08:29.106113 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:42:00.980673"}, "title": "RF-sputtered tetragonal barium titanate films on silicon", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T15:08:29.106113"}, "latest_revision": 2, "key": "/works/OL11464512W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4825566A"}}], "type": {"key": "/type/work"}, "subjects": ["Barium compounds", "Thin films", "Electric properties"], "revision": 2}
+/type/work /works/OL11464585W 2 2010-01-20T15:08:29.106113 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:42:00.980673"}, "title": "Authorize national banks to contribute to United War Work Campaign Fund", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T15:08:29.106113"}, "latest_revision": 2, "key": "/works/OL11464585W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4825581A"}}], "type": {"key": "/type/work"}, "subjects": ["Banks and banking"], "revision": 2}
+/type/work /works/OL11464994W 2 2010-01-20T15:12:49.812098 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:42:00.980673"}, "title": "Stabilization", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T15:12:49.812098"}, "latest_revision": 2, "key": "/works/OL11464994W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4825581A"}}], "type": {"key": "/type/work"}, "subjects": ["Law and legislation", "Banking law", "Discount", "Monetary policy", "Federal Reserve banks", "Currency question", "Price regulation", "Prices"], "revision": 2}
+/type/work /works/OL11465252W 1 2009-12-11T04:42:00.980673 {"title": "Geschichte der Kreditversicherung", "created": {"type": "/type/datetime", "value": "2009-12-11T04:42:00.980673"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:42:00.980673"}, "latest_revision": 1, "key": "/works/OL11465252W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4825686A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11465295W 1 2009-12-11T04:42:00.980673 {"title": "Le dialecte lie\u0301geois au XVIIe si ecle", "created": {"type": "/type/datetime", "value": "2009-12-11T04:42:00.980673"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:42:00.980673"}, "latest_revision": 1, "key": "/works/OL11465295W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4825715A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11465309W 1 2009-12-11T04:42:00.980673 {"title": "O e\u0304lios tou thanatou", "created": {"type": "/type/datetime", "value": "2009-12-11T04:42:00.980673"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:42:00.980673"}, "latest_revision": 1, "key": "/works/OL11465309W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4825717A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11465413W 1 2009-12-11T04:42:07.568886 {"title": "Vers l'armee de metier", "created": {"type": "/type/datetime", "value": "2009-12-11T04:42:07.568886"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:42:07.568886"}, "latest_revision": 1, "key": "/works/OL11465413W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4825762A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11465556W 1 2009-12-11T04:42:07.568886 {"title": "Shan'gu qin qu wai pian", "created": {"type": "/type/datetime", "value": "2009-12-11T04:42:07.568886"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:42:07.568886"}, "latest_revision": 1, "key": "/works/OL11465556W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4825788A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11465871W 3 2012-05-18T22:21:51.099868 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:42:07.568886"}, "subject_places": ["United States"], "subjects": ["Law and legislation", "Saline water conversion"], "latest_revision": 3, "key": "/works/OL11465871W", "title": "Extension of saline water program", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4825592A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-18T22:21:51.099868"}, "revision": 3}
+/type/work /works/OL11465897W 2 2010-01-20T15:12:49.812098 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:42:07.568886"}, "title": "She hui fa zhan de wen hua su qiu =", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T15:12:49.812098"}, "latest_revision": 2, "key": "/works/OL11465897W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4825943A"}}], "type": {"key": "/type/work"}, "subjects": ["Culture"], "revision": 2}
+/type/work /works/OL11466279W 2 2010-01-20T15:17:19.557925 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:42:07.568886"}, "title": "Engineering-economic analysis of single-family dwelling thermal performance", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T15:17:19.557925"}, "latest_revision": 2, "key": "/works/OL11466279W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4826157A"}}], "type": {"key": "/type/work"}, "subjects": ["Climatic factors", "Architecture and energy conservation", "Heating and ventilation", "Heating", "Dwellings", "Air conditioning"], "revision": 2}
+/type/work /works/OL11466519W 1 2009-12-11T04:42:14.137010 {"title": "Le flaneur salarie\u0301", "created": {"type": "/type/datetime", "value": "2009-12-11T04:42:14.137010"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:42:14.137010"}, "latest_revision": 1, "key": "/works/OL11466519W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4826295A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11466720W 2 2010-01-20T15:17:19.557925 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:42:14.137010"}, "title": "Entorn de la hist\u00f2ria com a ci\u00e8ncia i els seus contactes amb la creaci\u00f3 liter\u00e0ria", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T15:17:19.557925"}, "latest_revision": 2, "key": "/works/OL11466720W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4826398A"}}], "type": {"key": "/type/work"}, "subjects": ["Historiography", "Methodology", "History"], "revision": 2}
+/type/work /works/OL11467404W 2 2010-01-20T15:17:19.557925 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:42:21.678736"}, "title": "Mudd\u0101 \u0101he jaga badala\u1e47y\u0101c\u0101", "subject_places": ["India"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T15:17:19.557925"}, "latest_revision": 2, "key": "/works/OL11467404W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4826802A"}}], "type": {"key": "/type/work"}, "subjects": ["Social conditions", "Political socialization", "Communism and society", "Social conflict"], "revision": 2}
+/type/work /works/OL1146756W 2 2010-01-20T15:17:19.557925 {"title": "Leibniz selections", "created": {"type": "/type/datetime", "value": "2009-12-09T20:34:58.021032"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-20T15:17:19.557925"}, "latest_revision": 2, "key": "/works/OL1146756W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL116444A"}}], "subject_people": ["Gottfried Wilhelm Leibniz Freiherr von (1646-1716)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11467672W 2 2010-01-20T15:22:07.004647 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:42:21.678736"}, "title": "The evolution of vehicle springs", "subject_places": ["Ohio", "Toledo"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T15:22:07.004647"}, "latest_revision": 2, "key": "/works/OL11467672W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4826992A"}}], "type": {"key": "/type/work"}, "subjects": ["Automobiles", "Springs and suspension", "Automobile industry and trade", "Automobile supplies industry", "Vehicles"], "revision": 2}
+/type/work /works/OL11467828W 2 2010-01-20T15:22:07.004647 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:42:21.678736"}, "title": "Unschooled migrant youth", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T15:22:07.004647"}, "latest_revision": 2, "key": "/works/OL11467828W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4827084A"}}], "type": {"key": "/type/work"}, "subjects": ["Education", "Children of migrant laborers"], "revision": 2}
+/type/work /works/OL11468283W 1 2009-12-11T04:42:21.678736 {"title": "Le technicien du commerce international", "created": {"type": "/type/datetime", "value": "2009-12-11T04:42:21.678736"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:42:21.678736"}, "latest_revision": 1, "key": "/works/OL11468283W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4827374A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11468450W 2 2010-01-20T15:22:07.004647 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:42:28.873807"}, "title": "Hope's metal windows and casements", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T15:22:07.004647"}, "latest_revision": 2, "key": "/works/OL11468450W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4827477A"}}], "type": {"key": "/type/work"}, "subjects": ["Windows", "Catalogs"], "revision": 2}
+/type/work /works/OL11468785W 2 2020-12-11T21:48:36.992744 {"title": "La collection de bijoux du muse\u0301e des arts de\u0301coratifs a\u0300 Paris", "key": "/works/OL11468785W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4827683A"}}], "type": {"key": "/type/work"}, "subjects": ["Jewelry", "Catalogs", "Mus\u00e9e des arts d\u00e9coratifs (France)"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T04:42:28.873807"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-11T21:48:36.992744"}}
+/type/work /works/OL11468858W 3 2010-12-03T13:58:39.447554 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T13:58:39.447554"}, "title": "The Spitfire, Mustang and Kittyhawk in Australian service", "created": {"type": "/type/datetime", "value": "2009-12-11T04:42:28.873807"}, "subjects": ["Aerial operations, Australian", "Australian Aerial operations", "Mustang (Fighter planes)", "P-40 (Fighter planes)", "Spitfire (Fighter planes)", "World War, 1939-1945"], "latest_revision": 3, "key": "/works/OL11468858W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4827729A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11468966W 2 2020-11-15T21:17:59.415538 {"last_modified": {"type": "/type/datetime", "value": "2020-11-15T21:17:59.415538"}, "title": "Cheju-do kaebal sa\u014fp e taehan chumin ch\u02bbamy\u014f pangan e kwanhan y\u014fn\u02bcgu", "created": {"type": "/type/datetime", "value": "2009-12-11T04:42:28.873807"}, "subjects": ["Regional planning", "Citizen participation"], "latest_revision": 2, "key": "/works/OL11468966W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4827782A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11469050W 3 2010-12-03T18:34:45.195534 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T18:34:45.195534"}, "title": "Proposed test protocol to determine toxicant leaching into potable water", "created": {"type": "/type/datetime", "value": "2009-12-11T04:42:28.873807"}, "subjects": ["Analysis", "Contamination", "Drinking water", "Environmental aspects", "Environmental aspects of Organic water pollutants", "Organic water pollutants"], "latest_revision": 3, "key": "/works/OL11469050W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4827842A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11469686W 2 2021-07-07T23:50:20.789759 {"title": "Pod iuzhnym nebom", "key": "/works/OL11469686W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL126410A"}}], "type": {"key": "/type/work"}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T04:42:35.314351"}, "last_modified": {"type": "/type/datetime", "value": "2021-07-07T23:50:20.789759"}}
+/type/work /works/OL11470169W 2 2010-01-20T15:26:48.491691 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:42:35.314351"}, "title": "Near-term and late biological effects of acute and low-dose-rate continuous gamma-ray exposure in dogs and monkeys", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T15:26:48.491691"}, "latest_revision": 2, "key": "/works/OL11470169W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4828480A"}}], "type": {"key": "/type/work"}, "subjects": ["Physiological effect", "Gamma rays"], "revision": 2}
+/type/work /works/OL11470279W 2 2010-01-20T15:26:48.491691 {"title": "A.N. Tolsto\u01d0", "created": {"type": "/type/datetime", "value": "2009-12-11T04:42:35.314351"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-20T15:26:48.491691"}, "latest_revision": 2, "key": "/works/OL11470279W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4828537A"}}], "subject_people": ["Aleksey Nikolayevich Tolstoy graf (1883-1945)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11470436W 2 2010-01-20T15:26:48.491691 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:42:39.606542"}, "title": "Hurricane Georges", "subject_places": ["Southern states"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T15:26:48.491691"}, "latest_revision": 2, "key": "/works/OL11470436W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4828620A"}}], "type": {"key": "/type/work"}, "subjects": ["Storm surges", "Beach erosion", "Hurricane Georges, 1998"], "revision": 2}
+/type/work /works/OL11470634W 2 2010-01-20T15:31:22.361118 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:42:39.606542"}, "title": "Uranium fission-rate monitors", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T15:31:22.361118"}, "latest_revision": 2, "key": "/works/OL11470634W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4828770A"}}], "type": {"key": "/type/work"}, "subjects": ["Instruments", "Radioactivity", "Nuclear engineering", "Aluminum-uranium alloys"], "revision": 2}
+/type/work /works/OL11470846W 2 2010-01-20T15:31:22.361118 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:42:39.606542"}, "title": "Akron, Sterling and Northern Railroad", "subject_places": ["Alaska"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T15:31:22.361118"}, "latest_revision": 2, "key": "/works/OL11470846W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4828890A"}}], "type": {"key": "/type/work"}, "subjects": ["Railroads"], "revision": 2}
+/type/work /works/OL11471089W 2 2010-01-20T15:31:22.361118 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:42:39.606542"}, "title": "Labor Conditions in Hawaii", "subject_places": ["Hawaii"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T15:31:22.361118"}, "latest_revision": 2, "key": "/works/OL11471089W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4828890A"}}], "type": {"key": "/type/work"}, "subjects": ["Alien labor", "Agricultural laborers"], "revision": 2}
+/type/work /works/OL1147120W 1 2009-12-09T20:35:06.586814 {"title": "La lev\u00e9e des 300,000 hommes", "created": {"type": "/type/datetime", "value": "2009-12-09T20:35:06.586814"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T20:35:06.586814"}, "latest_revision": 1, "key": "/works/OL1147120W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL116470A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11471291W 2 2010-01-20T15:31:22.361118 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:42:39.606542"}, "title": "To Authorize the Legislature of Alaska To Establish and Maintain Schools", "subject_places": ["Alaska"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T15:31:22.361118"}, "latest_revision": 2, "key": "/works/OL11471291W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4828890A"}}], "type": {"key": "/type/work"}, "subjects": ["Public schools", "Education", "Law and legislation", "Finance"], "revision": 2}
+/type/work /works/OL11471571W 1 2009-12-11T04:42:46.311101 {"title": "Qui de\u0301cide de la ville?", "created": {"type": "/type/datetime", "value": "2009-12-11T04:42:46.311101"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:42:46.311101"}, "latest_revision": 1, "key": "/works/OL11471571W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4828995A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11472212W 1 2009-12-11T04:42:46.311101 {"title": "8th International Topical Meetingon Photoacoustic and Photothermal Phenomena, 8 ITMP3, January 22-25, 1994, Pointe-a\u0300-Pitre, Guadeloupe (France)", "created": {"type": "/type/datetime", "value": "2009-12-11T04:42:46.311101"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:42:46.311101"}, "latest_revision": 1, "key": "/works/OL11472212W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4829413A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11472312W 1 2009-12-11T04:42:46.311101 {"title": "El medio rural en Andaluci\u0301a oriental", "created": {"type": "/type/datetime", "value": "2009-12-11T04:42:46.311101"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:42:46.311101"}, "latest_revision": 1, "key": "/works/OL11472312W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4829479A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11472418W 3 2022-12-16T14:24:56.043866 {"title": "Panama Rail-road Company", "subjects": ["Panama Railroad Co", "Charters", "Railroads", "Railroad land grants", "Railroad law"], "key": "/works/OL11472418W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4829561A"}}], "type": {"key": "/type/work"}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T04:42:53.324563"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-16T14:24:56.043866"}}
+/type/work /works/OL11472535W 1 2009-12-11T04:42:53.324563 {"title": "De Anagnorismo", "created": {"type": "/type/datetime", "value": "2009-12-11T04:42:53.324563"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:42:53.324563"}, "latest_revision": 1, "key": "/works/OL11472535W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4829644A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11472884W 1 2009-12-11T04:42:53.324563 {"title": "Dipte\u0300res Sciomyzidae Euro-Mediterrane\u0301ens", "created": {"type": "/type/datetime", "value": "2009-12-11T04:42:53.324563"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:42:53.324563"}, "latest_revision": 1, "key": "/works/OL11472884W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4829844A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11473133W 1 2009-12-11T04:42:53.324563 {"title": "Les embarcations monoxyles dans la re\u0301gion Pays de la Loire", "created": {"type": "/type/datetime", "value": "2009-12-11T04:42:53.324563"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:42:53.324563"}, "latest_revision": 1, "key": "/works/OL11473133W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4829993A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11473473W 2 2010-01-20T15:40:42.352060 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:43:04.501562"}, "title": "Min a\u02bbl\u0101m al-shi\u02bbr al-Yamam\u012b", "subject_places": ["Saudi Arabia", "Yamamah"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T15:40:42.352060"}, "latest_revision": 2, "key": "/works/OL11473473W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4830187A"}}], "type": {"key": "/type/work"}, "subjects": ["History and criticism", "Arabic literature"], "revision": 2}
+/type/work /works/OL11473659W 2 2010-01-20T15:40:42.352060 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:43:04.501562"}, "title": "A directory of standards laboratories", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T15:40:42.352060"}, "latest_revision": 2, "key": "/works/OL11473659W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4830321A"}}], "type": {"key": "/type/work"}, "subjects": ["Directories", "Physical laboratories", "Calibration"], "revision": 2}
+/type/work /works/OL11473666W 2 2010-01-20T15:40:42.352060 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:43:04.501562"}, "title": "Maternal influences on preschool story recall ability", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T15:40:42.352060"}, "latest_revision": 2, "key": "/works/OL11473666W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4830327A"}}], "type": {"key": "/type/work"}, "subjects": ["Mother and child", "Recollection (Psychology)", "Memory in children"], "revision": 2}
+/type/work /works/OL11474181W 2 2010-01-20T15:40:42.352060 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:43:04.501562"}, "title": "Drevnerusskie apokrify", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T15:40:42.352060"}, "latest_revision": 2, "key": "/works/OL11474181W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4830606A"}}], "type": {"key": "/type/work"}, "subjects": ["Church Slavic literature", "Criticism, interpretation", "History and criticism", "Translations into Russian", "Apocryphal books"], "revision": 2}
+/type/work /works/OL11474547W 2 2010-01-20T15:40:42.352060 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:43:11.217869"}, "title": "Summary of water resources for the Campo, Cuyapaipe, La Posta, and Manzanita Indian Reservations and vicinity, San Diego County, California", "subject_places": ["San Diego County", "California"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T15:40:42.352060"}, "latest_revision": 2, "key": "/works/OL11474547W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4830818A"}}], "type": {"key": "/type/work"}, "subjects": ["Water-supply"], "revision": 2}
+/type/work /works/OL11474600W 2 2010-01-20T15:40:42.352060 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:43:11.217869"}, "title": "1974 ground-water data for Michigan", "subject_places": ["Michigan"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T15:40:42.352060"}, "latest_revision": 2, "key": "/works/OL11474600W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4830839A"}}], "type": {"key": "/type/work"}, "subjects": ["Periodicals", "Groundwater"], "revision": 2}
+/type/work /works/OL1147462W 1 2009-12-09T20:35:06.586814 {"title": "The great question answered ... \"what must I do to be saved?\"", "created": {"type": "/type/datetime", "value": "2009-12-09T20:35:06.586814"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T20:35:06.586814"}, "latest_revision": 1, "key": "/works/OL1147462W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL116496A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11474727W 2 2010-01-20T15:45:24.631188 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:43:11.217869"}, "title": "Istoryko-biohrafichni tvory z zhyttia pys'mennykiv", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T15:45:24.631188"}, "latest_revision": 2, "key": "/works/OL11474727W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4830907A"}}], "type": {"key": "/type/work"}, "subjects": ["History and criticism", "Biography as a literary form", "Ukrainian literature"], "revision": 2}
+/type/work /works/OL11474847W 2 2020-03-03T05:28:12.720448 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:43:11.217869"}, "subjects": ["Politics and government", "Economische politiek", "Economic policy", "Politische Reform", "Social policy", "Cost and standard of living"], "latest_revision": 2, "key": "/works/OL11474847W", "title": "Ende oder Wende", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4830978A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-03-03T05:28:12.720448"}, "covers": [9286826], "revision": 2}
+/type/work /works/OL11475832W 2 2017-11-22T18:42:22.672304 {"title": "V dni vi\u012dny", "created": {"type": "/type/datetime", "value": "2009-12-11T04:43:16.176657"}, "last_modified": {"type": "/type/datetime", "value": "2017-11-22T18:42:22.672304"}, "latest_revision": 2, "key": "/works/OL11475832W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4831390A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11476154W 3 2022-12-20T23:50:57.718913 {"title": "Taikenmon\u02bein Tamako no sh\u014dgai", "subject_places": ["Japan"], "key": "/works/OL11476154W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1213012A"}}], "subject_people": ["Taikenmon\u02bein (1101-1145)"], "type": {"key": "/type/work"}, "subjects": ["Empresses", "Biography"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T04:43:16.176657"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-20T23:50:57.718913"}}
+/type/work /works/OL11476563W 4 2011-04-26T22:32:16.302280 {"subtitle": "1750 to the present", "title": "Labor conditions in Great Britain", "created": {"type": "/type/datetime", "value": "2009-12-11T04:43:21.930438"}, "last_modified": {"type": "/type/datetime", "value": "2011-04-26T22:32:16.302280"}, "latest_revision": 4, "key": "/works/OL11476563W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4398957A"}}], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL1147661W 2 2010-01-20T15:50:04.531704 {"title": "Metternich", "created": {"type": "/type/datetime", "value": "2009-12-09T20:35:06.586814"}, "subject_places": ["Europe", "Austria"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T15:50:04.531704"}, "latest_revision": 2, "key": "/works/OL1147661W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL116514A"}}], "subject_people": ["Clemens Wenzel Lothar Metternich F\u00fcrst von (1773-1859)"], "subject_times": ["1789-1900"], "type": {"key": "/type/work"}, "subjects": ["Politics and government", "History"], "revision": 2}
+/type/work /works/OL11477076W 3 2022-09-30T00:45:27.106548 {"title": "The intelligence of continuation-school children in Massachusetts", "subject_places": ["Massachusetts"], "key": "/works/OL11477076W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2143955A"}}], "type": {"key": "/type/work"}, "subjects": ["Evening and continuation schools", "Intelligence tests"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T04:43:21.930438"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-30T00:45:27.106548"}}
+/type/work /works/OL11477154W 1 2009-12-11T04:43:21.930438 {"title": "Marxismus und bu\u0308rgerliche Wissenschaft", "created": {"type": "/type/datetime", "value": "2009-12-11T04:43:21.930438"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:43:21.930438"}, "latest_revision": 1, "key": "/works/OL11477154W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4832014A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11477799W 2 2010-01-20T15:54:52.402117 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:43:28.060608"}, "title": "HADY-1, a FORTRAN program for the compressible stability analysis of three-dimensional boundary layers", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T15:54:52.402117"}, "latest_revision": 2, "key": "/works/OL11477799W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4832404A"}}], "type": {"key": "/type/work"}, "subjects": ["Data processing", "Boundary layer", "Laminar flow"], "revision": 2}
+/type/work /works/OL11478138W 2 2010-01-20T15:54:52.402117 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:43:28.060608"}, "title": "Changes in rates of shore retreat, Lake Michigan, 1967-76", "subject_places": ["Lake Michigan"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T15:54:52.402117"}, "latest_revision": 2, "key": "/works/OL11478138W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4832569A"}}], "type": {"key": "/type/work"}, "subjects": ["Coast changes"], "revision": 2}
+/type/work /works/OL1147813W 1 2009-12-09T20:35:06.586814 {"title": "Composition and properties of copper and copper alloys", "created": {"type": "/type/datetime", "value": "2009-12-09T20:35:06.586814"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T20:35:06.586814"}, "latest_revision": 1, "key": "/works/OL1147813W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL116535A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11478498W 1 2009-12-11T04:43:34.325690 {"title": "Tret\u02b9i\ufe20a\ufe21 Rota", "created": {"type": "/type/datetime", "value": "2009-12-11T04:43:34.325690"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:43:34.325690"}, "latest_revision": 1, "key": "/works/OL11478498W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4832711A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11478748W 1 2009-12-11T04:43:34.325690 {"title": "Hrozy i ra\u01d0duhy", "created": {"type": "/type/datetime", "value": "2009-12-11T04:43:34.325690"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:43:34.325690"}, "latest_revision": 1, "key": "/works/OL11478748W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4832818A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11478776W 3 2010-04-28T07:21:15.758500 {"title": "Lust auf Blau & Beine", "created": {"type": "/type/datetime", "value": "2009-12-11T04:43:34.325690"}, "covers": [4016989], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:21:15.758500"}, "latest_revision": 3, "key": "/works/OL11478776W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4832832A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11478798W 2 2010-01-20T15:59:28.608550 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:43:34.325690"}, "title": "Poza mezhamy boliu", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T15:59:28.608550"}, "latest_revision": 2, "key": "/works/OL11478798W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4832842A"}}], "type": {"key": "/type/work"}, "subjects": ["World War, 1914-1918", "Fiction"], "revision": 2}
+/type/work /works/OL11479226W 2 2010-01-20T15:59:28.608550 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:43:34.325690"}, "title": "Literatura Zakarpattia dvadtsiatykh-trydtsiatykh rokiv 20 stolittia", "subject_places": ["Ukraine", "Zakarpats\u02b9ka oblast\u02b9"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T15:59:28.608550"}, "latest_revision": 2, "key": "/works/OL11479226W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4833072A"}}], "type": {"key": "/type/work"}, "subjects": ["History and criticism", "Ukrainian literature"], "revision": 2}
+/type/work /works/OL11479336W 3 2010-04-28T07:21:15.758500 {"title": "Hobb", "created": {"type": "/type/datetime", "value": "2009-12-11T04:43:34.325690"}, "covers": [3768817], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:21:15.758500"}, "latest_revision": 3, "key": "/works/OL11479336W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4833125A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11479515W 2 2011-06-06T17:52:52.139440 {"title": "Leon Trotsky speaks", "created": {"type": "/type/datetime", "value": "2009-12-11T04:43:39.967221"}, "last_modified": {"type": "/type/datetime", "value": "2011-06-06T17:52:52.139440"}, "latest_revision": 2, "key": "/works/OL11479515W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL38191A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11479525W 3 2011-06-06T17:52:52.139440 {"last_modified": {"type": "/type/datetime", "value": "2011-06-06T17:52:52.139440"}, "title": "The new course", "created": {"type": "/type/datetime", "value": "2009-12-11T04:43:39.967221"}, "subjects": ["Communist Party of the Soviet Union"], "latest_revision": 3, "key": "/works/OL11479525W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL38191A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11479612W 7 2022-01-26T23:21:28.661922 {"subjects": ["Communism", "Fiction", "Romania, fiction", "Fiction, general"], "key": "/works/OL11479612W", "title": "The passport", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL3325335A"}}], "type": {"key": "/type/work"}, "covers": [10343787], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2009-12-11T04:43:39.967221"}, "last_modified": {"type": "/type/datetime", "value": "2022-01-26T23:21:28.661922"}}
+/type/work /works/OL11479655W 3 2010-12-03T14:00:01.670410 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:43:39.967221"}, "subject_places": ["United States"], "subjects": ["Cars", "Railroads", "Testing", "Transportation Test Center (U.S.).", "Transportation Test Center (U.S.). Rail Dynamics Laboratory"], "latest_revision": 3, "key": "/works/OL11479655W", "title": "The Rail Dynamics Laboratory", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4833261A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:00:01.670410"}, "revision": 3}
+/type/work /works/OL11479702W 2 2010-01-20T15:59:28.608550 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:43:39.967221"}, "title": "Taghy\u012br al-munkar f\u012b madhhab ahl al-Sunnah wa-al-Jam\u0101\u02bbah", "subject_places": ["Egypt"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T15:59:28.608550"}, "latest_revision": 2, "key": "/works/OL11479702W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4833285A"}}], "type": {"key": "/type/work"}, "subjects": ["Moral conditions", "Islam"], "revision": 2}
+/type/work /works/OL11480216W 2 2019-01-16T04:49:07.808621 {"last_modified": {"type": "/type/datetime", "value": "2019-01-16T04:49:07.808621"}, "title": "Impressionist masterpieces at the Jeu de Paume, Paris", "created": {"type": "/type/datetime", "value": "2009-12-11T04:43:39.967221"}, "subjects": ["Impressionism (Art)", "Catalogs", "French Painting", "Musee du jeu de paume (France)"], "latest_revision": 2, "key": "/works/OL11480216W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4833542A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11480256W 3 2010-04-28T07:21:15.758500 {"title": "Die Entstehung die Nationalsozialismus in Hessen", "created": {"type": "/type/datetime", "value": "2009-12-11T04:43:39.967221"}, "covers": [5301995], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:21:15.758500"}, "latest_revision": 3, "key": "/works/OL11480256W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4833566A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11480408W 2 2010-01-20T15:59:28.608550 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:43:45.665296"}, "title": "Gramatyka j\u0119zyka polskiego", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T15:59:28.608550"}, "latest_revision": 2, "key": "/works/OL11480408W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4833650A"}}], "type": {"key": "/type/work"}, "subjects": ["Polish language", "Grammar", "Dialects", "History"], "revision": 2}
+/type/work /works/OL11480656W 2 2010-01-20T16:03:54.233867 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:43:45.665296"}, "title": "Wanjiang tong guan lu", "subject_places": ["Anhui Sheng (China)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T16:03:54.233867"}, "latest_revision": 2, "key": "/works/OL11480656W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4833790A"}}], "type": {"key": "/type/work"}, "subjects": ["Officials and employees"], "revision": 2}
+/type/work /works/OL11480996W 2 2010-01-20T16:03:54.233867 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:43:45.665296"}, "title": "Supporting emergent literacy among young American Indian students", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T16:03:54.233867"}, "latest_revision": 2, "key": "/works/OL11480996W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4833951A"}}], "type": {"key": "/type/work"}, "subjects": ["Literacy programs"], "revision": 2}
+/type/work /works/OL11481469W 3 2012-05-29T17:15:09.614776 {"last_modified": {"type": "/type/datetime", "value": "2012-05-29T17:15:09.614776"}, "title": "Collection and publication of cotton statistics", "created": {"type": "/type/datetime", "value": "2009-12-11T04:43:49.479018"}, "subjects": ["Publishers and publishing", "Cotton"], "latest_revision": 3, "key": "/works/OL11481469W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2341613A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11481655W 2 2012-05-04T11:07:51.038964 {"title": "De la me\u0301lancolie", "created": {"type": "/type/datetime", "value": "2009-12-11T04:43:49.479018"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-04T11:07:51.038964"}, "latest_revision": 2, "key": "/works/OL11481655W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL125096A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11481982W 1 2009-12-11T04:43:49.479018 {"title": "Napis", "created": {"type": "/type/datetime", "value": "2009-12-11T04:43:49.479018"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:43:49.479018"}, "latest_revision": 1, "key": "/works/OL11481982W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4834245A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11482621W 2 2010-12-03T14:02:30.076320 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:02:30.076320"}, "title": "De Errore Christologico in epistolis Joannis impugnato eiusque aucotre", "created": {"type": "/type/datetime", "value": "2009-12-11T04:43:56.021875"}, "subjects": ["Bible"], "latest_revision": 2, "key": "/works/OL11482621W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4834574A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11482701W 1 2009-12-11T04:43:56.021875 {"title": "Und u\u0308ber die Liebe wa\u0308re wieder zu sprechen", "created": {"type": "/type/datetime", "value": "2009-12-11T04:43:56.021875"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:43:56.021875"}, "latest_revision": 1, "key": "/works/OL11482701W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4834622A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11483078W 4 2019-11-15T09:50:10.240955 {"last_modified": {"type": "/type/datetime", "value": "2019-11-15T09:50:10.240955"}, "title": "Tod in Habana: eine Erz ahlung", "created": {"type": "/type/datetime", "value": "2009-12-11T04:43:56.021875"}, "subjects": ["German fiction", "OUR Brockhaus selection"], "latest_revision": 4, "key": "/works/OL11483078W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL282680A"}}], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL11483297W 2 2010-01-20T16:14:56.028935 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:43:56.021875"}, "title": "Louisiana Barrier-Island Erosion Study", "subject_places": ["Louisiana"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T16:14:56.028935"}, "latest_revision": 2, "key": "/works/OL11483297W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4834935A"}}], "type": {"key": "/type/work"}, "subjects": ["Beach erosion", "Barrier islands", "Barrier Island"], "revision": 2}
+/type/work /works/OL11483396W 2 2010-12-03T14:01:45.188439 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:01:45.188439"}, "title": "Die sa\u0308chsischen Siedlungen auf dem franzo\u0308sischen \"Litus Saxonicum\"", "created": {"type": "/type/datetime", "value": "2009-12-11T04:44:03.783444"}, "subjects": ["Litus Saxonicum"], "latest_revision": 2, "key": "/works/OL11483396W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4834983A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11483773W 2 2010-01-20T16:14:56.028935 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:03.783444"}, "title": "Infusion of scopolamine into the medial septal nucleus disrupts hippocampal neurophysiology and learning in rabbit jaw movement conditioning", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T16:14:56.028935"}, "latest_revision": 2, "key": "/works/OL11483773W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4835220A"}}], "type": {"key": "/type/work"}, "subjects": ["Effect of drugs on", "Physiological effect", "Hippocampus (Brain)", "Rabbits", "Septum (Brain)", "Scopolamine"], "revision": 2}
+/type/work /works/OL11483825W 3 2010-04-28T07:21:15.758500 {"title": "Alle Zu\u0308ge fahren nach Salem", "created": {"type": "/type/datetime", "value": "2009-12-11T04:44:03.783444"}, "covers": [5302649], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:21:15.758500"}, "latest_revision": 3, "key": "/works/OL11483825W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4835235A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11484041W 1 2009-12-11T04:44:03.783444 {"title": "Liebe u\u0308ber Leichen", "created": {"type": "/type/datetime", "value": "2009-12-11T04:44:03.783444"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:44:03.783444"}, "latest_revision": 1, "key": "/works/OL11484041W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4835317A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11484299W 3 2010-12-03T17:12:46.356290 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:03.783444"}, "subject_places": ["Panama Canal (Panama)", "United States"], "subjects": ["Appropriations and expenditures", "Appropriations and expenditures, 1910", "Isthmian Canal Commission (U.S.)"], "latest_revision": 3, "key": "/works/OL11484299W", "title": "Sundry Civil Appropriation Bill for 1910", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4835410A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T17:12:46.356290"}, "revision": 3}
+/type/work /works/OL11484398W 2 2010-01-20T16:14:56.028935 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:09.192495"}, "title": "Employes of the War Department. Letter from the Secretary of War, in response to a resolution of the House of Representatives, transmitting a list of persons in the employ of the department who have rendered service in the Army or Navy of the United States", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T16:14:56.028935"}, "latest_revision": 2, "key": "/works/OL11484398W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4835419A"}}], "type": {"key": "/type/work"}, "subjects": ["Armies", "Navies"], "revision": 2}
+/type/work /works/OL11484513W 3 2020-12-27T01:28:41.839121 {"title": "Storage of Food Products in D.C", "subject_places": ["Washington (D.C.)"], "key": "/works/OL11484513W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4835423A"}}], "type": {"key": "/type/work"}, "subjects": ["Food", "Storage", "Food adulteration and inspection"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T04:44:09.192495"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-27T01:28:41.839121"}}
+/type/work /works/OL11484590W 4 2012-05-09T10:21:59.215543 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:09.192495"}, "subject_places": ["United States"], "subjects": ["Governmental investigations", "Lewis Publishing Company", "Rules and practice", "United States", "United States. Post Office Dept"], "latest_revision": 4, "key": "/works/OL11484590W", "title": "Lewis Publishing Company", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4835475A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-09T10:21:59.215543"}, "revision": 4}
+/type/work /works/OL11485236W 2 2010-01-20T16:19:31.220429 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:09.192495"}, "title": "Sale of goods, wares, etc., manufactured by convict labor", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T16:19:31.220429"}, "latest_revision": 2, "key": "/works/OL11485236W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4835552A"}}], "type": {"key": "/type/work"}, "subjects": ["Criminals", "Manufactures"], "revision": 2}
+/type/work /works/OL11485426W 1 2009-12-11T04:44:14.515728 {"title": "Untersuchungen an einer Turbinenstufe im Hinblick die Wa\u0308rmeu\u0308bergangsverha\u0308ltnisse an einer geku\u0308hlten Laufschaufel", "created": {"type": "/type/datetime", "value": "2009-12-11T04:44:14.515728"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:44:14.515728"}, "latest_revision": 1, "key": "/works/OL11485426W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4835638A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11485760W 3 2010-12-03T15:26:55.349304 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:26:55.349304"}, "title": "Renewal of Patent No. 60731", "created": {"type": "/type/datetime", "value": "2009-12-11T04:44:14.515728"}, "subjects": ["Girl Scouts of the United States of America", "Patents", "Uniforms"], "latest_revision": 3, "key": "/works/OL11485760W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4835651A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11485821W 6 2012-11-28T11:20:33.610083 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:14.515728"}, "subject_places": ["United States"], "subjects": ["Industrial concentration", "Steel industry and trade", "United States Steel Corporation"], "latest_revision": 6, "key": "/works/OL11485821W", "title": "U.S. Steel Corporation", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4835747A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-11-28T11:20:33.610083"}, "revision": 6}
+/type/work /works/OL11486189W 2 2010-01-20T16:24:14.881916 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:14.515728"}, "title": "Clerk and a janitor, Committee on Roads", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T16:24:14.881916"}, "latest_revision": 2, "key": "/works/OL11486189W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4835783A"}}], "type": {"key": "/type/work"}, "subjects": ["Clerks", "Roads", "Streets"], "revision": 2}
+/type/work /works/OL114863W 5 2011-04-26T22:57:16.501382 {"title": "Piping hot and other stories", "created": {"type": "/type/datetime", "value": "2009-10-18T02:50:10.177820"}, "covers": [2516457], "last_modified": {"type": "/type/datetime", "value": "2011-04-26T22:57:16.501382"}, "latest_revision": 5, "key": "/works/OL114863W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL32772A"}}], "type": {"key": "/type/work"}, "revision": 5}
+/type/work /works/OL1148656W 2 2010-01-20T16:24:14.881916 {"title": "Everyone needs a philosophy of life", "created": {"type": "/type/datetime", "value": "2009-12-09T20:35:13.332913"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-20T16:24:14.881916"}, "latest_revision": 2, "key": "/works/OL1148656W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL116592A"}}], "subject_people": ["Albert Schweitzer (1875-1965)"], "type": {"key": "/type/work"}, "subjects": ["Philosophy", "Life", "Civilization"], "revision": 2}
+/type/work /works/OL11486704W 3 2010-12-03T15:27:23.854469 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:16.092486"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL11486704W", "title": "Monnie Mae and Dessie Mae Brown", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4835783A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:27:23.854469"}, "revision": 3}
+/type/work /works/OL11486834W 2 2010-01-20T16:28:33.085639 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:16.092486"}, "title": "Reports to be made to Congress. Letter from the Clerk of the House of Representatives transmitting list of reports to be made to Congress by public officers during the Seventy-third Congress", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T16:28:33.085639"}, "latest_revision": 2, "key": "/works/OL11486834W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4835783A"}}], "type": {"key": "/type/work"}, "subjects": ["Government publications", "Public officers"], "revision": 2}
+/type/work /works/OL11486837W 2 2010-01-20T16:28:33.085639 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:16.092486"}, "title": "Reports to be made to Congress. Letter from the Clerk of the House of Representatives, transmitting list of reports to be made to Congress by public officers during the Sixty-seventh Congress", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T16:28:33.085639"}, "latest_revision": 2, "key": "/works/OL11486837W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4835783A"}}], "type": {"key": "/type/work"}, "subjects": ["Government publications", "Administrative agencies"], "revision": 2}
+/type/work /works/OL11486912W 3 2010-12-03T15:18:11.695215 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:18:11.695215"}, "title": "Temporary Committee on the District of Columbia", "created": {"type": "/type/datetime", "value": "2009-12-11T04:44:16.092486"}, "subjects": ["Committees", "District of Columbia", "Expenditures, Public", "Public Expenditures", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL11486912W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4835783A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11486924W 3 2010-12-03T15:21:06.979260 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:16.092486"}, "subject_places": ["United States"], "subjects": ["Officials and employees", "Telephone", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL11486924W", "title": "To continue the employment of three session telephone operators from July 1 to November 30, 1926, inclusive", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4835783A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:21:06.979260"}, "revision": 3}
+/type/work /works/OL11487730W 3 2010-12-03T15:14:06.198088 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:17.673967"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL11487730W", "title": "Waiving of immigration law in case of Mathilde Sandgren", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4835827A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:14:06.198088"}, "revision": 3}
+/type/work /works/OL11488871W 4 2011-11-10T20:08:26.951133 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:18.734870"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 4, "key": "/works/OL11488871W", "title": "Edward Durant", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2375088A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2011-11-10T20:08:26.951133"}, "revision": 4}
+/type/work /works/OL11489112W 4 2011-11-10T06:10:35.806967 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:18.734870"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 4, "key": "/works/OL11489112W", "title": "Ellen Goff", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2375088A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2011-11-10T06:10:35.806967"}, "revision": 4}
+/type/work /works/OL11489335W 4 2011-11-10T20:01:18.108684 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:18.734870"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 4, "key": "/works/OL11489335W", "title": "Franklin P. Burget and others", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2375088A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2011-11-10T20:01:18.108684"}, "revision": 4}
+/type/work /works/OL11489396W 4 2011-11-10T06:14:09.145300 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:19.728553"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 4, "key": "/works/OL11489396W", "title": "George A. Glover", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2375088A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2011-11-10T06:14:09.145300"}, "revision": 4}
+/type/work /works/OL11489403W 4 2011-06-10T00:53:15.683866 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:19.728553"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 4, "key": "/works/OL11489403W", "title": "George A. Washburn", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2375088A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2011-06-10T00:53:15.683866"}, "revision": 4}
+/type/work /works/OL11489520W 4 2011-11-10T19:51:13.129427 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:19.728553"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 4, "key": "/works/OL11489520W", "title": "George W. Plants", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2375088A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2011-11-10T19:51:13.129427"}, "revision": 4}
+/type/work /works/OL11489680W 4 2011-11-10T00:36:00.328464 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:19.728553"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 4, "key": "/works/OL11489680W", "title": "Henrietta M. Sands", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2375088A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2011-11-10T00:36:00.328464"}, "revision": 4}
+/type/work /works/OL11490125W 4 2011-11-10T01:18:23.503587 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:19.728553"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 4, "key": "/works/OL11490125W", "title": "Jacob Hull", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2375088A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2011-11-10T01:18:23.503587"}, "revision": 4}
+/type/work /works/OL11490256W 4 2011-11-10T01:12:07.803625 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:19.728553"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 4, "key": "/works/OL11490256W", "title": "James Lacy", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2375088A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2011-11-10T01:12:07.803625"}, "revision": 4}
+/type/work /works/OL11490634W 4 2011-11-10T18:53:34.451151 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:20.871857"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 4, "key": "/works/OL11490634W", "title": "John K. Mannon", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2375088A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2011-11-10T18:53:34.451151"}, "revision": 4}
+/type/work /works/OL11490636W 4 2011-11-10T18:32:16.959689 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:20.871857"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 4, "key": "/works/OL11490636W", "title": "John K. Thompson", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2375088A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2011-11-10T18:32:16.959689"}, "revision": 4}
+/type/work /works/OL11490680W 4 2011-11-10T19:43:56.783082 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:20.871857"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 4, "key": "/works/OL11490680W", "title": "John N. Payne", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2375088A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2011-11-10T19:43:56.783082"}, "revision": 4}
+/type/work /works/OL11490879W 4 2011-06-10T00:53:15.683866 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:20.871857"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 4, "key": "/works/OL11490879W", "title": "Joseph M. Feathers", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2375088A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2011-06-10T00:53:15.683866"}, "revision": 4}
+/type/work /works/OL11490884W 4 2011-06-10T00:53:15.683866 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:20.871857"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 4, "key": "/works/OL11490884W", "title": "Joseph Peve", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2375088A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2011-06-10T00:53:15.683866"}, "revision": 4}
+/type/work /works/OL11491796W 4 2011-11-10T18:56:48.845567 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:21.910601"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 4, "key": "/works/OL11491796W", "title": "Miss Sarah Mary Carroll", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2375088A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2011-11-10T18:56:48.845567"}, "revision": 4}
+/type/work /works/OL11491810W 4 2011-11-10T06:14:09.145300 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:21.910601"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 4, "key": "/works/OL11491810W", "title": "Moses F. Jackson", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2375088A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2011-11-10T06:14:09.145300"}, "revision": 4}
+/type/work /works/OL11491982W 4 2011-11-10T18:46:54.056589 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:21.910601"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 4, "key": "/works/OL11491982W", "title": "Mrs. Mary R. Armstrong", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2375088A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2011-11-10T18:46:54.056589"}, "revision": 4}
+/type/work /works/OL11492005W 4 2011-11-10T01:12:07.803625 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:21.910601"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 4, "key": "/works/OL11492005W", "title": "Mrs. Sophia Vogelsang", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2375088A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2011-11-10T01:12:07.803625"}, "revision": 4}
+/type/work /works/OL1149237W 8 2020-02-14T03:24:50.581314 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:35:20.864137"}, "subjects": ["Descriptions et voyages"], "latest_revision": 8, "key": "/works/OL1149237W", "title": "Roman fountain", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL116645A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-02-14T03:24:50.581314"}, "covers": [6917197], "revision": 8}
+/type/work /works/OL11492591W 4 2011-06-10T00:53:15.683866 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:22.889819"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 4, "key": "/works/OL11492591W", "title": "Sarah A. Timmons", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2375088A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2011-06-10T00:53:15.683866"}, "revision": 4}
+/type/work /works/OL11492615W 4 2011-06-10T00:53:15.683866 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:22.889819"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 4, "key": "/works/OL11492615W", "title": "Sarah E. McNamara", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2375088A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2011-06-10T00:53:15.683866"}, "revision": 4}
+/type/work /works/OL11493428W 4 2011-11-10T00:42:13.468203 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:24.538540"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 4, "key": "/works/OL11493428W", "title": "Annie W. Osborne", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2375088A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2011-11-10T00:42:13.468203"}, "revision": 4}
+/type/work /works/OL11493564W 4 2011-11-10T19:26:39.571646 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:24.538540"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 4, "key": "/works/OL11493564W", "title": "James F. Cullen", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2375088A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2011-11-10T19:26:39.571646"}, "revision": 4}
+/type/work /works/OL11493662W 4 2011-06-10T00:53:15.683866 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:24.538540"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 4, "key": "/works/OL11493662W", "title": "Mary Wade", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2375088A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2011-06-10T00:53:15.683866"}, "revision": 4}
+/type/work /works/OL11493719W 4 2011-11-10T19:06:33.220115 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:24.538540"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 4, "key": "/works/OL11493719W", "title": "Rowland Ward", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2375088A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2011-11-10T19:06:33.220115"}, "revision": 4}
+/type/work /works/OL11493789W 4 2011-11-10T00:32:50.665074 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:24.538540"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 4, "key": "/works/OL11493789W", "title": "B. J. Dreesen", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2375088A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2011-11-10T00:32:50.665074"}, "revision": 4}
+/type/work /works/OL11494005W 2 2010-01-20T17:07:56.868366 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:24.538540"}, "title": "Loaning of portraits of Daniel Webster and Henry Clay to Pennsylvania Academy of Fine Arts", "subject_places": ["Philadelphia (Pa.)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T17:07:56.868366"}, "latest_revision": 2, "key": "/works/OL11494005W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4835862A"}}], "type": {"key": "/type/work"}, "subjects": ["Art", "Loans"], "revision": 2}
+/type/work /works/OL11494009W 2 2010-01-20T17:07:56.868366 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:24.538540"}, "title": "Membership on the United States Yorktown Sesquicentennial Commission", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T17:07:56.868366"}, "latest_revision": 2, "key": "/works/OL11494009W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4835862A"}}], "type": {"key": "/type/work"}, "subjects": ["Anniversaries", "Executive advisory bodies", "History"], "revision": 2}
+/type/work /works/OL11494189W 2 2010-01-20T17:07:56.868366 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:24.538540"}, "title": "Thanking Governor of Virginia for statues of George Washington and Robert E. Lee", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T17:07:56.868366"}, "latest_revision": 2, "key": "/works/OL11494189W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4835862A"}}], "type": {"key": "/type/work"}, "subjects": ["Statues", "Monuments"], "revision": 2}
+/type/work /works/OL11494386W 1 2009-12-11T04:44:24.538540 {"title": "Erziehung zum \u00dcberfluss", "created": {"type": "/type/datetime", "value": "2009-12-11T04:44:24.538540"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:44:24.538540"}, "latest_revision": 1, "key": "/works/OL11494386W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4835897A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11494435W 3 2010-04-28T07:21:15.758500 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:26.066789"}, "title": "Eichendorff-Kommentar", "covers": [5302899], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:21:15.758500"}, "latest_revision": 3, "key": "/works/OL11494435W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4835935A"}}], "subject_people": ["Joseph Eichendorff Freiherr von (1788-1857)"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11494594W 2 2010-01-20T17:07:56.868366 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:26.066789"}, "title": "Controller Bay hearings", "subject_places": ["Controller Bay (Alaska)", "Alaska"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T17:07:56.868366"}, "latest_revision": 2, "key": "/works/OL11494594W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4835938A"}}], "type": {"key": "/type/work"}, "subjects": ["Government publications"], "revision": 2}
+/type/work /works/OL11494600W 2 2010-01-20T17:07:56.868366 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:26.066789"}, "title": "Copper River exploration expedition in Alaska", "subject_places": ["Copper River (Alaska)", "Alaska"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T17:07:56.868366"}, "latest_revision": 2, "key": "/works/OL11494600W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4835938A"}}], "type": {"key": "/type/work"}, "subjects": ["Discoveries in geography", "Printing", "Description and travel"], "revision": 2}
+/type/work /works/OL11494726W 3 2010-12-03T15:19:46.948475 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:19:46.948475"}, "title": "Government printing plants", "created": {"type": "/type/datetime", "value": "2009-12-11T04:44:26.066789"}, "subjects": ["Printing", "United States", "United States. Government Printing Office"], "latest_revision": 3, "key": "/works/OL11494726W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4835938A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11494887W 3 2010-12-03T15:21:06.979260 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:21:06.979260"}, "title": "Printing of correspondence of Department of Justice relative to disorders in the United States in 1922", "created": {"type": "/type/datetime", "value": "2009-12-11T04:44:26.066789"}, "subjects": ["Government publications", "Printing", "United States", "United States. Dept. of Justice"], "latest_revision": 3, "key": "/works/OL11494887W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4835938A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11495086W 3 2010-12-03T15:18:11.695215 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:18:11.695215"}, "title": "Soil survey of Perry County, Ala", "created": {"type": "/type/datetime", "value": "2009-12-11T04:44:26.066789"}, "subjects": ["Geological Survey (U.S.)", "Printing", "Soil conservation"], "latest_revision": 3, "key": "/works/OL11495086W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4835938A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11495398W 2 2010-01-20T17:11:48.534550 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:27.814033"}, "title": "Fireproof building for use of post-office in New York City. Letter from the Secretary of the Treasury, transmitting a copy of a communication from the Postmaster-General submitting an estimate of appropriation for purchase of site for fireproof building for use of United States Post-Office in New York City", "subject_places": ["United States", "New York (N.Y.)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T17:11:48.534550"}, "latest_revision": 2, "key": "/works/OL11495398W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4835950A"}}], "type": {"key": "/type/work"}, "subjects": ["Postal service", "Budget"], "revision": 2}
+/type/work /works/OL11495402W 2 2010-01-20T17:11:48.534550 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:27.814033"}, "title": "George C. Ellison", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T17:11:48.534550"}, "latest_revision": 2, "key": "/works/OL11495402W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4835950A"}}], "type": {"key": "/type/work"}, "subjects": ["Engineering", "Governmental investigations"], "revision": 2}
+/type/work /works/OL11495575W 2 2010-01-20T17:11:48.534550 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:27.814033"}, "title": "Public building at Clarksburg, W. Va", "subject_places": ["Clarksburg (W. Va.)", "West Virginia"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T17:11:48.534550"}, "latest_revision": 2, "key": "/works/OL11495575W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4835950A"}}], "type": {"key": "/type/work"}, "subjects": ["Public buildings"], "revision": 2}
+/type/work /works/OL1149597W 4 2012-08-02T15:52:49.443836 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:35:20.864137"}, "subjects": ["Early works to 1800", "Baptism"], "latest_revision": 4, "key": "/works/OL1149597W", "title": "A church of God described, the qualifications for membership stated, and Christian fellowship", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL116668A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-08-02T15:52:49.443836"}, "covers": [6250227], "revision": 4}
+/type/work /works/OL11496037W 2 2010-01-20T17:16:12.128011 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:27.814033"}, "title": "Public building at Owensborough, Ky", "subject_places": ["Owensboro (Ky.)", "Kentucky"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T17:16:12.128011"}, "latest_revision": 2, "key": "/works/OL11496037W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4835950A"}}], "type": {"key": "/type/work"}, "subjects": ["Public buildings"], "revision": 2}
+/type/work /works/OL11496044W 2 2010-01-20T17:16:12.128011 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:27.814033"}, "title": "Public building at Racine, Wis", "subject_places": ["Wisconsin", "Racine (Wis.)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T17:16:12.128011"}, "latest_revision": 2, "key": "/works/OL11496044W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4835950A"}}], "type": {"key": "/type/work"}, "subjects": ["Public buildings"], "revision": 2}
+/type/work /works/OL11496060W 2 2010-01-20T17:16:12.128011 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:27.814033"}, "title": "Public-building site at Vineland, N. J", "subject_places": ["New Jersey"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T17:16:12.128011"}, "latest_revision": 2, "key": "/works/OL11496060W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4835950A"}}], "type": {"key": "/type/work"}, "subjects": ["Public buildings"], "revision": 2}
+/type/work /works/OL11496106W 3 2010-12-03T15:18:11.695215 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:18:11.695215"}, "title": "Abstract of proposals for materials and labor for Engineer Department 1913 Letter from the Assistant Secretary of War transmitting, pursuant to section 230, revised statutes, abstracts of proposals received during the fiscal year ended June 30, 1913, for material and labor in connection with works under the Engineer Department", "created": {"type": "/type/datetime", "value": "2009-12-11T04:44:27.814033"}, "subjects": ["Military engineering", "Public contracts", "United States", "United States. Army. Corps of Engineers"], "latest_revision": 3, "key": "/works/OL11496106W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4835960A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11496126W 2 2010-01-20T17:16:12.128011 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:27.814033"}, "title": "Alsea Bay and River, Oregon. Letter from the Secretary of War, transmitting, with a letter from the Chief of Engineers, report of the examination of Alsea Bay and River, Oregon", "subject_places": ["Oregon", "Alsea River (Or.)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T17:16:12.128011"}, "latest_revision": 2, "key": "/works/OL11496126W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4835960A"}}], "type": {"key": "/type/work"}, "subjects": ["Hydrography"], "revision": 2}
+/type/work /works/OL11496442W 2 2010-01-20T17:16:12.128011 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:28.816128"}, "title": "Charlotte Harbor, N. Y. Letter from the Secretary of War, transmitting, with a letter from the Chief of Engineers, reports on examination and survey of Charlotte Harbor, N. Y., with a view to deepening and widening the channel, to an extension of the jetties, and to providing a turning basin", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T17:16:12.128011"}, "latest_revision": 2, "key": "/works/OL11496442W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4835960A"}}], "type": {"key": "/type/work"}, "subjects": ["Maps", "Harbors", "Topographical surveying"], "revision": 2}
+/type/work /works/OL11496557W 2 2010-01-20T17:16:12.128011 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:28.816128"}, "title": "Coos Bay Harbor, Oreg. Letter from the Secretary of War, transmitting, with a letter from the Chief of Engineers, reports on preliminary examination and survey of Coos Bay Harbor, Oreg., from the entrance to Smiths Mill", "subject_places": ["Coos Bay (Or. : Bay)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T17:16:12.128011"}, "latest_revision": 2, "key": "/works/OL11496557W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4835960A"}}], "type": {"key": "/type/work"}, "subjects": ["Hydrography", "Topographical surveying", "Rivers"], "revision": 2}
+/type/work /works/OL11496861W 2 2010-01-20T17:20:25.849286 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:28.816128"}, "title": "Examination and survey of the Mississippi River at or near Beechridge, Ill. Letter from the Secretary of War, transmitting, with a letter from the Chief of Engineers, reports of examination and survey of the Mississippi River at or near Beechridge, Ill", "subject_places": ["Mississippi River"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T17:20:25.849286"}, "latest_revision": 2, "key": "/works/OL11496861W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4835960A"}}], "type": {"key": "/type/work"}, "subjects": ["Maps", "Topographical surveying"], "revision": 2}
+/type/work /works/OL11497135W 2 2010-01-20T17:20:25.849286 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:28.816128"}, "title": "Indian Island Slough, North Carolina. Letter from the Secretary of War, transmitting, with a letter from the Chief of Engineers, reports of examination of Indian Island Slough, North Carolina", "subject_places": ["North Carolina"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T17:20:25.849286"}, "latest_revision": 2, "key": "/works/OL11497135W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4835960A"}}], "type": {"key": "/type/work"}, "subjects": ["Hydrography", "Topographical surveying"], "revision": 2}
+/type/work /works/OL11497413W 2 2010-01-20T17:20:25.849286 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:29.935056"}, "title": "Missouri Chute, Mississippi River, Missouri. Letter from the Secretary of War, transmitting, with a letter from the Chief of Engineers, report of examination of Missouri Chute, Mississippi River, Missouri", "subject_places": ["Mississippi River", "Missouri"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T17:20:25.849286"}, "latest_revision": 2, "key": "/works/OL11497413W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4835960A"}}], "type": {"key": "/type/work"}, "subjects": ["Topographical surveying"], "revision": 2}
+/type/work /works/OL11497570W 2 2010-01-20T17:20:25.849286 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:29.935056"}, "title": "Oconto Harbor, Wisconsin letter from the Secretary of War, transmitting, with a letter from the Chief of Engineers, report of examination of Oconto Harbor, Wisconsin", "subject_places": ["Wisconsin", "Oconto (Wis.)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T17:20:25.849286"}, "latest_revision": 2, "key": "/works/OL11497570W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4835960A"}}], "type": {"key": "/type/work"}, "subjects": ["Harbors"], "revision": 2}
+/type/work /works/OL11497717W 2 2010-01-20T17:24:49.984740 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:29.935056"}, "title": "Port Orchard Bay, Wash. Letter from the Secretary of War, transmitting, with a letter from the Chief of Engineers, report on preliminary examination and survey of entrance to Port Orchard Bay, Wash", "subject_places": ["Washington (State)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T17:24:49.984740"}, "latest_revision": 2, "key": "/works/OL11497717W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4835960A"}}], "type": {"key": "/type/work"}, "subjects": ["Topographical surveying"], "revision": 2}
+/type/work /works/OL11497764W 2 2010-01-20T17:24:49.984740 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:29.935056"}, "title": "Preliminary examination of Port Chester Harbor, New York. Letter from the Secretary of War, transmitting, with letter of the Chief of Engineers, report of a preliminary examination of Port Chester Harbor, New York", "subject_places": ["New York (State)", "Port Chester (N.Y.)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T17:24:49.984740"}, "latest_revision": 2, "key": "/works/OL11497764W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4835960A"}}], "type": {"key": "/type/work"}, "subjects": ["Harbors"], "revision": 2}
+/type/work /works/OL11498101W 2 2010-01-20T17:24:49.984740 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:29.935056"}, "title": "Stockton and Mormon Channels, San Joaquin River, Cal., including the Diversion Canal. Letter from the Secretary of War, transmitting, with a letter from the Chief of Engineers, report on examination of Stockton and Mormon Channels, Cal., including the Diversion Canal, with a view to determining what, if anything, may or should be done by the United States, either alone or in conjunction with the City of Stockton and the State of California, or with either of them, in order to increase the capacity of said diversion canal from its upper end, in Mormon Channel, to the mouth of Calaveras River, in the San Joaquin River, so that said canal shall carry the entire flood flow of Mormon Channel and thus prevent the deposit of material in the navigable portions of Stockton and Mormon Channels", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T17:24:49.984740"}, "latest_revision": 2, "key": "/works/OL11498101W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4835960A"}}], "type": {"key": "/type/work"}, "subjects": ["Maps", "Navigation", "Rivers"], "revision": 2}
+/type/work /works/OL11498175W 2 2010-01-20T17:24:49.984740 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:29.935056"}, "title": "Survey of Exeter River, New Hampshire. Letter from the Secretary of War, transmitting, with a letter from the Chief of Engineers, report of a survey of Exeter River, New Hampshire, from its mouth to the upper bridge in Exeter", "subject_places": ["Exeter River (N.H.)", "New Hampshire"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T17:24:49.984740"}, "latest_revision": 2, "key": "/works/OL11498175W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4835960A"}}], "type": {"key": "/type/work"}, "subjects": ["Topographical surveying"], "revision": 2}
+/type/work /works/OL11498212W 2 2010-01-20T17:24:49.984740 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:29.935056"}, "title": "Survey of Minnesota Point. Letter from the Secretary of War, transmitting reports upon the preliminary examination and survey of Minnesota Point, at Superior, Wis", "subject_places": ["Superior (Wis.)", "Wisconsin"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T17:24:49.984740"}, "latest_revision": 2, "key": "/works/OL11498212W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4835960A"}}], "type": {"key": "/type/work"}, "subjects": ["Topographical surveying"], "revision": 2}
+/type/work /works/OL11499380W 4 2011-06-10T00:47:50.747648 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:31.362752"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 4, "key": "/works/OL11499380W", "title": "Edward B. Fox", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2323345A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2011-06-10T00:47:50.747648"}, "revision": 4}
+/type/work /works/OL11499384W 4 2011-06-10T00:47:50.747648 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:31.362752"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 4, "key": "/works/OL11499384W", "title": "Edward Cottingham. Letter from the Chief Clerk of the Court of Claims transmitting a copy of the findings of the court in the case of Edward Cottingham against the United States", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2323345A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2011-06-10T00:47:50.747648"}, "revision": 4}
+/type/work /works/OL11499581W 4 2011-06-10T00:47:50.747648 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:32.484054"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 4, "key": "/works/OL11499581W", "title": "Estate of Bernard Moore", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2323345A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2011-06-10T00:47:50.747648"}, "revision": 4}
+/type/work /works/OL11500069W 4 2011-11-10T00:59:49.577562 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:32.484054"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 4, "key": "/works/OL11500069W", "title": "George W. Westcott. Letter from the Assistant Clerk of the Court of Claims, transmitting a copy of the findings filed by the court in the case of George W. Westcott against the United States", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2323345A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2011-11-10T00:59:49.577562"}, "revision": 4}
+/type/work /works/OL11500082W 3 2011-11-10T18:21:57.185581 {"last_modified": {"type": "/type/datetime", "value": "2011-11-10T18:21:57.185581"}, "title": "Grain elevators relief", "created": {"type": "/type/datetime", "value": "2009-12-11T04:44:32.484054"}, "subjects": ["Business", "Grain elevators"], "latest_revision": 3, "key": "/works/OL11500082W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2323345A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11500380W 4 2011-11-10T00:59:49.577562 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:32.484054"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 4, "key": "/works/OL11500380W", "title": "Henry L. Pope. Letter from the Assistant Clerk of the Court of Claims, transmitting a copy of the opinion and findings filed by the court in the case of Henry L. Pope against the United States", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2323345A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2011-11-10T00:59:49.577562"}, "revision": 4}
+/type/work /works/OL11500426W 4 2011-11-10T05:53:55.378072 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:33.488917"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 4, "key": "/works/OL11500426W", "title": "A. H. Kennedy, deceased, and M. M. Lee. Communication from the Court of Claims transmitting a copy of the findings of the court in the cases of the following-named persons against the United States, A. H. Kennedy, deceased, and M. M. Lee", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2323345A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2011-11-10T05:53:55.378072"}, "revision": 4}
+/type/work /works/OL11500477W 4 2011-11-10T06:14:09.145300 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:33.488917"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 4, "key": "/works/OL11500477W", "title": "Isaac N. Enloe", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2323345A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2011-11-10T06:14:09.145300"}, "revision": 4}
+/type/work /works/OL11500975W 4 2011-11-10T19:03:15.857371 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:33.488917"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 4, "key": "/works/OL11500975W", "title": "John L. Beveridge", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2323345A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2011-11-10T19:03:15.857371"}, "revision": 4}
+/type/work /works/OL11501313W 4 2011-11-10T06:03:44.469019 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:33.488917"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 4, "key": "/works/OL11501313W", "title": "Lester Noble", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2323345A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2011-11-10T06:03:44.469019"}, "revision": 4}
+/type/work /works/OL11501382W 4 2011-11-10T19:47:37.229189 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:33.488917"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 4, "key": "/works/OL11501382W", "title": "Letter from the Court of Claims transmitting a copy of the findings of the court in the case of George Gorman, deceased, against the United States", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2323345A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2011-11-10T19:47:37.229189"}, "revision": 4}
+/type/work /works/OL11501505W 4 2011-11-10T00:45:01.403248 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:34.485507"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 4, "key": "/works/OL11501505W", "title": "Lutheran Church of the Ascension, Savannah, Ga", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2323345A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2011-11-10T00:45:01.403248"}, "revision": 4}
+/type/work /works/OL11501510W 4 2011-11-10T20:04:58.667313 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:34.485507"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 4, "key": "/works/OL11501510W", "title": "Luther Walters vs. United States. Letter from the Assistant Clerk of the Court of Claims transmitting findings by the Court of Claims in the case of Luther Walters against the United States", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2323345A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2011-11-10T20:04:58.667313"}, "revision": 4}
+/type/work /works/OL11502320W 4 2011-11-10T19:33:55.547043 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:34.485507"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 4, "key": "/works/OL11502320W", "title": "Roman Catholic Chuch, Jackson, Miss", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2323345A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2011-11-10T19:33:55.547043"}, "revision": 4}
+/type/work /works/OL11502532W 3 2011-11-10T18:50:18.578311 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:35.562934"}, "subject_places": ["Simpson County (Ky.)"], "subjects": ["Claims", "Courts"], "latest_revision": 3, "key": "/works/OL11502532W", "title": "Simpson County, of Kentucky", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2323345A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2011-11-10T18:50:18.578311"}, "revision": 3}
+/type/work /works/OL115031W 6 2021-05-08T16:27:22.004661 {"subject_places": ["United States"], "subjects": ["Alcoholism", "Alcoolisme", "Ethanol"], "key": "/works/OL115031W", "title": "The cup of fury", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL19024A"}}], "type": {"key": "/type/work"}, "covers": [10990564], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2009-10-18T05:06:07.461934"}, "last_modified": {"type": "/type/datetime", "value": "2021-05-08T16:27:22.004661"}}
+/type/work /works/OL11503398W 4 2011-06-10T00:47:50.747648 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:40.593149"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 4, "key": "/works/OL11503398W", "title": "John A. Given", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2323345A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2011-06-10T00:47:50.747648"}, "revision": 4}
+/type/work /works/OL11503761W 2 2010-01-20T17:51:16.897502 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:40.593149"}, "title": "Letter from the Clerk of the House of Representatives transmitting information in regards to the contest for a seat in the House of Representatives from the Twentieth District of New York", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T17:51:16.897502"}, "latest_revision": 2, "key": "/works/OL11503761W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4836006A"}}], "type": {"key": "/type/work"}, "subjects": ["Contested elections", "Elections"], "revision": 2}
+/type/work /works/OL11504128W 2 2010-01-20T17:51:16.897502 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:40.593149"}, "title": "An enhanced integrated aerodynamic load/dynamic optimization procedure for helicopter rotor blades", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T17:51:16.897502"}, "latest_revision": 2, "key": "/works/OL11504128W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4836199A"}}], "type": {"key": "/type/work"}, "subjects": ["Rotors (Helicopters)", "Computer simulation", "Aerodynamics", "Mathematical optimization", "Aerodynamic load", "Design and construction"], "revision": 2}
+/type/work /works/OL11504208W 4 2011-11-04T01:31:16.621210 {"subtitle": "hearings before the United States House Committee on Appropriations, Subcommittee on D.C. Appropriations, Fifty-Sixth Congress, first session, on Feb. 19-23, 1900", "last_modified": {"type": "/type/datetime", "value": "2011-11-04T01:31:16.621210"}, "latest_revision": 4, "key": "/works/OL11504208W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1416316A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T04:44:40.593149"}, "title": "D.C. Appropriation Bill for 1901", "subject_places": ["Washington (D.C.)"], "subjects": ["Appropriations and expenditures, 1901"], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL11504378W 2 2010-01-20T17:55:57.631485 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:40.593149"}, "title": "Amendment of immigration laws", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T17:55:57.631485"}, "latest_revision": 2, "key": "/works/OL11504378W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4836337A"}}], "type": {"key": "/type/work"}, "subjects": ["Emigration and immigration", "Crime", "Farmers"], "revision": 2}
+/type/work /works/OL11504723W 2 2010-01-20T17:55:57.631485 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:41.836819"}, "title": "Bronze portrait bust of the late President McKinley", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T17:55:57.631485"}, "latest_revision": 2, "key": "/works/OL11504723W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4836344A"}}], "type": {"key": "/type/work"}, "subjects": ["Bronze sculpture", "Monuments"], "revision": 2}
+/type/work /works/OL1150480W 7 2017-03-19T02:46:13.725642 {"last_modified": {"type": "/type/datetime", "value": "2017-03-19T02:46:13.725642"}, "latest_revision": 7, "key": "/works/OL1150480W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL7178325A"}}], "created": {"type": "/type/datetime", "value": "2009-12-09T20:35:30.832475"}, "title": "Caesar, books I and II of the Civil War", "subject_places": ["Rome"], "subjects": ["History", "Rome Civil War, 49-45 B.C."], "subject_times": ["Republic, 265-30 B.C.", "Civil War, 49-45 B.C."], "type": {"key": "/type/work"}, "revision": 7}
+/type/work /works/OL11504946W 2 2010-01-20T17:55:57.631485 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:41.836819"}, "title": "Unemployment relief", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T17:55:57.631485"}, "latest_revision": 2, "key": "/works/OL11504946W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4836345A"}}], "type": {"key": "/type/work"}, "subjects": ["Unemployment"], "revision": 2}
+/type/work /works/OL11505640W 2 2010-01-20T18:01:14.924798 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:44.223593"}, "title": "Public building at Mandan, N. Dak", "subject_places": ["Mandan (N.D.)", "North Dakota"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T18:01:14.924798"}, "latest_revision": 2, "key": "/works/OL11505640W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4836349A"}}], "type": {"key": "/type/work"}, "subjects": ["Public buildings"], "revision": 2}
+/type/work /works/OL11505936W 2 2010-01-20T18:01:14.924798 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:44.223593"}, "title": "Suitable accommodations for the District Court of the United States, at Glasgow, Mont", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T18:01:14.924798"}, "latest_revision": 2, "key": "/works/OL11505936W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4836349A"}}], "type": {"key": "/type/work"}, "subjects": ["Public buildings", "Courthouses", "District courts"], "revision": 2}
+/type/work /works/OL11506088W 2 2010-01-20T18:06:01.768475 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:44.223593"}, "title": "Erection of post-office, New York City, N. Y., etc", "subject_places": ["New York (N.Y.)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T18:06:01.768475"}, "latest_revision": 2, "key": "/works/OL11506088W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4836349A"}}], "type": {"key": "/type/work"}, "subjects": ["Postal service", "Public buildings"], "revision": 2}
+/type/work /works/OL11506162W 4 2022-07-12T01:21:42.927291 {"title": "The modelling of systems with small observation sets", "covers": [5303017], "key": "/works/OL11506162W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4836413A"}}], "type": {"key": "/type/work"}, "subjects": ["Model theory", "Information measurement", "Programming languages (Electronic computers)", "Computers"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T04:44:44.223593"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-12T01:21:42.927291"}}
+/type/work /works/OL11506750W 2 2010-01-20T18:06:01.768475 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:47.947271"}, "title": "System maintenance manual for MASTER", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T18:06:01.768475"}, "latest_revision": 2, "key": "/works/OL11506750W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4836602A"}}], "type": {"key": "/type/work"}, "subjects": ["Computer programs"], "revision": 2}
+/type/work /works/OL11506763W 2 2010-01-20T18:06:01.768475 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:47.947271"}, "title": "Robust control", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T18:06:01.768475"}, "latest_revision": 2, "key": "/works/OL11506763W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4836604A"}}], "type": {"key": "/type/work"}, "subjects": ["Feedback control systems", "Automatic control"], "revision": 2}
+/type/work /works/OL11507123W 3 2010-12-03T15:14:41.842496 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:47.947271"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL11507123W", "title": "Eliza D. Ramey", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4836723A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:14:41.842496"}, "revision": 3}
+/type/work /works/OL11507139W 3 2010-12-03T14:48:30.305389 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:47.947271"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL11507139W", "title": "Emily Agnel", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4836723A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:48:30.305389"}, "revision": 3}
+/type/work /works/OL11507210W 3 2010-12-03T14:53:48.818856 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:47.947271"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL11507210W", "title": "Hattie A. Burnett", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4836723A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:53:48.818856"}, "revision": 3}
+/type/work /works/OL11507459W 3 2010-12-03T14:47:21.987471 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:52.906612"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL11507459W", "title": "Mary C. J. Budlong", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4836723A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:47:21.987471"}, "revision": 3}
+/type/work /works/OL11507973W 4 2022-12-30T04:17:34.238319 {"title": "Anna Maria Jokl und der \"Jossel Rackower\" von Zvi Kolitz", "key": "/works/OL11507973W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4836869A"}}], "type": {"key": "/type/work"}, "subjects": ["OUR Brockhaus selection", "Other Germanic Literature", "Translations into German", "History and criticism", "Plagiarism", "Yiddish literature"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T04:44:52.906612"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-30T04:17:34.238319"}}
+/type/work /works/OL11508625W 4 2012-05-04T20:06:00.966294 {"last_modified": {"type": "/type/datetime", "value": "2012-05-04T20:06:00.966294"}, "latest_revision": 4, "key": "/works/OL11508625W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4835862A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T04:44:59.375233"}, "title": "Monument To Commemorate the Battle of the Monongahela", "subject_places": ["United States"], "subjects": ["History", "Monongahela, Battle of the, Pa., 1755", "Monuments", "United States French and Indian War, 1755-1763"], "subject_times": ["French and Indian War, 1755-1763"], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL11508814W 2 2010-01-20T18:15:10.261283 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:59.375233"}, "title": "Free-piston Stirling technology for space power", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T18:15:10.261283"}, "latest_revision": 2, "key": "/works/OL11508814W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4837311A"}}], "type": {"key": "/type/work"}, "subjects": ["Auxiliary power supply", "Space vehicles", "Stirling engines"], "revision": 2}
+/type/work /works/OL11509354W 2 2010-01-20T18:19:33.711287 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:44:59.375233"}, "title": "Guidance, steering, load relief and control of an asymmetric launch vehicle", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T18:19:33.711287"}, "latest_revision": 2, "key": "/works/OL11509354W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4837594A"}}], "type": {"key": "/type/work"}, "subjects": ["Launch vehicles (Astronautics)"], "revision": 2}
+/type/work /works/OL11509413W 2 2010-01-20T18:19:33.711287 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:45:06.006278"}, "title": "Differential continuum damage mechanics models for creep and fatigue of unidirectional metal matrix composites", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T18:19:33.711287"}, "latest_revision": 2, "key": "/works/OL11509413W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4837636A"}}], "type": {"key": "/type/work"}, "subjects": ["Metallic composites", "Metals", "Creep"], "revision": 2}
+/type/work /works/OL11509651W 2 2010-01-20T18:19:33.711287 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:45:06.006278"}, "title": "Sexism", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T18:19:33.711287"}, "latest_revision": 2, "key": "/works/OL11509651W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4837781A"}}], "type": {"key": "/type/work"}, "subjects": ["Sexism", "History"], "revision": 2}
+/type/work /works/OL11510115W 2 2010-01-20T18:19:33.711287 {"title": "Luther? Friedrich \"der Grosse\"? Wagner? Nietzsche? ...? ...?", "created": {"type": "/type/datetime", "value": "2009-12-11T04:45:06.006278"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-20T18:19:33.711287"}, "latest_revision": 2, "key": "/works/OL11510115W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4837956A"}}], "subject_people": ["Adolf Hitler (1889-1945)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11510305W 2 2010-01-20T18:24:29.043648 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:45:06.006278"}, "title": "Testimony Before the Senate Special Committee To Investigate the Administration of the Collection of Internal Revenue in the Sixth District of North Carolina, Appointed April 21, 1882", "subject_places": ["North Carolina", "United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T18:24:29.043648"}, "latest_revision": 2, "key": "/works/OL11510305W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4838078A"}}], "type": {"key": "/type/work"}, "subjects": ["Internal revenue", "Governmental investigations", "Tax collection"], "revision": 2}
+/type/work /works/OL11510735W 3 2010-04-28T07:21:15.758500 {"title": "Die Geheimnislosigkeit", "created": {"type": "/type/datetime", "value": "2009-12-11T04:45:12.394027"}, "covers": [3797361], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:21:15.758500"}, "latest_revision": 3, "key": "/works/OL11510735W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4838300A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11510855W 2 2010-01-20T18:24:29.043648 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:45:12.394027"}, "title": "Initial operating capability for the hypercluster parallel-processing test bed", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T18:24:29.043648"}, "latest_revision": 2, "key": "/works/OL11510855W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4838339A"}}], "type": {"key": "/type/work"}, "subjects": ["Parallel processing (Electronic computers)", "Hypercube"], "revision": 2}
+/type/work /works/OL11511516W 2 2019-05-07T16:15:36.009007 {"title": "Paradoxes of the infinite", "created": {"type": "/type/datetime", "value": "2009-12-11T04:45:25.355738"}, "last_modified": {"type": "/type/datetime", "value": "2019-05-07T16:15:36.009007"}, "latest_revision": 2, "key": "/works/OL11511516W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1164890A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11511656W 2 2010-01-20T18:29:31.074900 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:45:25.355738"}, "title": "Fuel containment and damage tolerance in large composite primary aircraft structures", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T18:29:31.074900"}, "latest_revision": 2, "key": "/works/OL11511656W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4838864A"}}], "type": {"key": "/type/work"}, "subjects": ["Composite materials"], "revision": 2}
+/type/work /works/OL11511673W 4 2012-05-09T11:10:16.038123 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:45:25.355738"}, "subject_places": ["United States"], "subjects": ["Alien labor, Mexican", "Emigration and immigration law", "Mexican Alien labor"], "latest_revision": 4, "key": "/works/OL11511673W", "title": "Imported Pauper Labor and Serfdom in America", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4835827A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-09T11:10:16.038123"}, "revision": 4}
+/type/work /works/OL11511705W 3 2012-05-09T11:33:39.807624 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:45:25.355738"}, "subject_places": ["United States"], "subjects": ["Law and legislation", "Land settlement", "Reclamation of land"], "latest_revision": 3, "key": "/works/OL11511705W", "title": "Development of the Agricultural Resources of the U.S", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4835547A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-09T11:33:39.807624"}, "revision": 3}
+/type/work /works/OL11511734W 1 2009-12-11T04:45:25.355738 {"title": "Nurmi, oder, Die Reise zu den Forellen", "created": {"type": "/type/datetime", "value": "2009-12-11T04:45:25.355738"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:45:25.355738"}, "latest_revision": 1, "key": "/works/OL11511734W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4838921A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1151278W 4 2021-03-19T05:29:18.537229 {"title": "Personality; development and assessment", "subjects": ["Personality", "Persoonlijkheidstests", "Persoonlijkheidsontwikkeling"], "key": "/works/OL1151278W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL116816A"}}], "type": {"key": "/type/work"}, "covers": [10717298], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-09T20:35:38.788174"}, "last_modified": {"type": "/type/datetime", "value": "2021-03-19T05:29:18.537229"}}
+/type/work /works/OL11512864W 1 2009-12-11T04:45:30.010234 {"title": "Des Bergmanns Lebenslauf", "created": {"type": "/type/datetime", "value": "2009-12-11T04:45:30.010234"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:45:30.010234"}, "latest_revision": 1, "key": "/works/OL11512864W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4839655A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11513059W 3 2010-12-03T15:25:25.812137 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:45:30.010234"}, "subject_places": ["Everglades National Park (Fla.)"], "subjects": ["Civilian Conservation Corps (U.S.)", "Wetlands"], "latest_revision": 3, "key": "/works/OL11513059W", "title": "Civilian Conservation Corps Camp in Everglades National Park", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4839666A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:25:25.812137"}, "revision": 3}
+/type/work /works/OL11513124W 2 2010-01-20T18:34:12.194954 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:45:30.010234"}, "title": "Disposal of abandoned military reservations in Alaska", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T18:34:12.194954"}, "latest_revision": 2, "key": "/works/OL11513124W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4839666A"}}], "type": {"key": "/type/work"}, "subjects": ["Military bases", "Abandonment of property", "Public lands"], "revision": 2}
+/type/work /works/OL11513199W 2 2010-01-20T18:34:12.194954 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:45:30.010234"}, "title": "Extending relief of settlers and entrymen on Baca Float No. 3, Arizona", "subject_places": ["Arizona"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T18:34:12.194954"}, "latest_revision": 2, "key": "/works/OL11513199W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4839666A"}}], "type": {"key": "/type/work"}, "subjects": ["Public lands", "Homestead law"], "revision": 2}
+/type/work /works/OL11513324W 3 2010-12-03T15:19:46.948475 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:45:30.010234"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL11513324W", "title": "Homestead application of Otha Potter", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4839666A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:19:46.948475"}, "revision": 3}
+/type/work /works/OL11513762W 3 2010-12-03T15:23:05.205535 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:45:34.464149"}, "subject_places": ["Elko County (Nev.)", "Nevada"], "subjects": ["Land tenure", "Railroads", "Western Pacific Railroad Company"], "latest_revision": 3, "key": "/works/OL11513762W", "title": "Disposition of certain public lands in Nevada", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4839666A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:23:05.205535"}, "revision": 3}
+/type/work /works/OL11513793W 2 2010-01-20T18:38:59.800396 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:45:34.464149"}, "title": "To restore homestead rights in certain cases", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T18:38:59.800396"}, "latest_revision": 2, "key": "/works/OL11513793W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4839666A"}}], "type": {"key": "/type/work"}, "subjects": ["Homestead law", "Land tenure"], "revision": 2}
+/type/work /works/OL11513940W 2 2010-01-20T18:38:59.800396 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:45:34.464149"}, "title": "Street railway in District of Honolulu, Island of Oahu", "subject_places": ["Hawaii"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T18:38:59.800396"}, "latest_revision": 2, "key": "/works/OL11513940W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4839713A"}}], "type": {"key": "/type/work"}, "subjects": ["Urban transportation", "Railroads"], "revision": 2}
+/type/work /works/OL11513957W 3 2012-05-18T20:33:38.415696 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:45:34.464149"}, "subject_places": ["Puerto Rico"], "subjects": ["Politics and government"], "latest_revision": 3, "key": "/works/OL11513957W", "title": "Civil Government of Porto Rico", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4839713A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-18T20:33:38.415696"}, "revision": 3}
+/type/work /works/OL11514004W 2 2010-01-20T18:38:59.800396 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:45:34.464149"}, "title": "Flight duration, airspeed practices, and altitude management of airplanes involved in the NASA VGH general aviation program", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T18:38:59.800396"}, "latest_revision": 2, "key": "/works/OL11514004W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4839749A"}}], "type": {"key": "/type/work"}, "subjects": ["Airplanes", "Speed", "Performance"], "revision": 2}
+/type/work /works/OL1151400W 2 2010-01-20T18:38:59.800396 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:35:38.788174"}, "title": "Ma\u02bcamar \u02bbal ha-metodah", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T18:38:59.800396"}, "latest_revision": 2, "key": "/works/OL1151400W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL116826A"}}], "type": {"key": "/type/work"}, "subjects": ["Science", "Methodology"], "revision": 2}
+/type/work /works/OL11514090W 4 2012-05-18T22:20:31.098140 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:45:34.464149"}, "subject_places": ["United States"], "subjects": ["Administration", "Governmental investigations", "United States", "United States. Bureau of Internal Revenue"], "latest_revision": 4, "key": "/works/OL11514090W", "title": "Investigation of Bureau of Internal Revenue", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4839806A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-18T22:20:31.098140"}, "revision": 4}
+/type/work /works/OL11514606W 2 2010-01-20T18:44:25.343425 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:45:42.153292"}, "title": "Diffusion length measurements in bulk and epitaxially grown III-V semiconductors using charge collection microscopy", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T18:44:25.343425"}, "latest_revision": 2, "key": "/works/OL11514606W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4840160A"}}], "type": {"key": "/type/work"}, "subjects": ["Semiconductors", "Microelectronics", "Diodes"], "revision": 2}
+/type/work /works/OL11514855W 2 2010-01-20T18:44:25.343425 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:45:42.153292"}, "title": "X-ray based extensometry", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T18:44:25.343425"}, "latest_revision": 2, "key": "/works/OL11514855W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4840354A"}}], "type": {"key": "/type/work"}, "subjects": ["Extensometer"], "revision": 2}
+/type/work /works/OL11515110W 3 2012-05-04T20:06:00.966294 {"last_modified": {"type": "/type/datetime", "value": "2012-05-04T20:06:00.966294"}, "latest_revision": 3, "key": "/works/OL11515110W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4835862A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T04:45:42.153292"}, "title": "Sesquicentennial Celebration of Battle of Rhode Island", "subject_places": ["United States"], "subjects": ["Anniversaries", "Campaigns", "Rhode Island, Battle of, R.I., 1778", "History"], "subject_times": ["Revolution, 1775-1783"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11515373W 3 2021-09-21T13:50:05.892740 {"title": "Florian Geyer", "key": "/works/OL11515373W", "authors": [{"author": {"key": "/authors/OL4840647A"}, "type": {"key": "/type/author_role"}}], "subject_people": ["Florian Geyer (d. 1525)"], "type": {"key": "/type/work"}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T04:45:42.153292"}, "last_modified": {"type": "/type/datetime", "value": "2021-09-21T13:50:05.892740"}}
+/type/work /works/OL11515564W 3 2010-12-03T14:05:04.311413 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:45:49.132165"}, "subject_places": ["United States"], "subjects": ["Navy-yards and naval stations", "Ships", "United States", "United States. Navy"], "latest_revision": 3, "key": "/works/OL11515564W", "title": "Navy ships", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4840804A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:05:04.311413"}, "revision": 3}
+/type/work /works/OL11515789W 2 2010-01-20T18:49:51.237522 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:45:49.132165"}, "title": "Effects of processing on fracture toughness of silicon carbide as determined by Vickers indentations", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T18:49:51.237522"}, "latest_revision": 2, "key": "/works/OL11515789W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4840959A"}}], "type": {"key": "/type/work"}, "subjects": ["Silicon carbide"], "revision": 2}
+/type/work /works/OL11516295W 2 2010-01-20T18:49:51.237522 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:45:49.132165"}, "title": "Viscoelastic deformation near active plate boundaries", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T18:49:51.237522"}, "latest_revision": 2, "key": "/works/OL11516295W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4841235A"}}], "type": {"key": "/type/work"}, "subjects": ["Plates (Tectonics)", "Earth crust", "Crustal fracures", "Geodesy", "Tectonics", "Very long base interferometry", "Earthquakes", "Plate tectonics"], "revision": 2}
+/type/work /works/OL11516647W 4 2012-05-08T14:50:12.212056 {"last_modified": {"type": "/type/datetime", "value": "2012-05-08T14:50:12.212056"}, "latest_revision": 4, "key": "/works/OL11516647W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4841467A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T04:45:57.452184"}, "title": "Hearing on H.R. 5057 for the Relief of John E. Fondahl", "subject_places": ["United States"], "subjects": ["Law and legislation", "Military discharge", "Pay, allowances", "United States", "United States. Marine Corps"], "subject_people": ["John E Fondahl"], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL1151714W 2 2010-01-20T18:54:14.413504 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:35:38.788174"}, "title": "Advanced French conversation", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T18:54:14.413504"}, "latest_revision": 2, "key": "/works/OL1151714W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL116850A"}}], "type": {"key": "/type/work"}, "subjects": ["French language", "Conversation and phrase books"], "revision": 2}
+/type/work /works/OL11517183W 3 2012-05-10T19:57:37.711490 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:45:57.452184"}, "subject_places": ["United States"], "subjects": ["Law and legislation", "Oil shale reserves"], "latest_revision": 3, "key": "/works/OL11517183W", "title": "Oil-Shale Lands", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4839666A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-10T19:57:37.711490"}, "revision": 3}
+/type/work /works/OL11517618W 1 2009-12-11T04:46:04.807334 {"title": "Staats-Bu\u0308rger", "created": {"type": "/type/datetime", "value": "2009-12-11T04:46:04.807334"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:46:04.807334"}, "latest_revision": 1, "key": "/works/OL11517618W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4842127A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11517822W 2 2010-01-20T18:54:14.413504 {"title": "Thomas Mann", "created": {"type": "/type/datetime", "value": "2009-12-11T04:46:04.807334"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-20T18:54:14.413504"}, "latest_revision": 2, "key": "/works/OL11517822W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4842244A"}}], "subject_people": ["Thomas Mann (1875-1955)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11518027W 1 2009-12-11T04:46:04.807334 {"title": "Tausend ganz normaler Jahre", "created": {"type": "/type/datetime", "value": "2009-12-11T04:46:04.807334"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:46:04.807334"}, "latest_revision": 1, "key": "/works/OL11518027W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4842365A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11518160W 3 2010-12-03T14:05:04.311413 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:05:04.311413"}, "title": "Gert M. Mayr-Keber", "created": {"type": "/type/datetime", "value": "2009-12-11T04:46:04.807334"}, "subject_places": ["Austria"], "subjects": ["Architecture, Modern", "Modern Architecture"], "subject_people": ["Gert M. Mayr-Keber"], "key": "/works/OL11518160W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4842463A"}}], "latest_revision": 3, "subject_times": ["20th century"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11518328W 1 2009-12-11T04:46:04.807334 {"title": "Heimsuchung", "created": {"type": "/type/datetime", "value": "2009-12-11T04:46:04.807334"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:46:04.807334"}, "latest_revision": 1, "key": "/works/OL11518328W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4842556A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11519398W 3 2019-03-11T17:19:40.039070 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:46:11.872718"}, "subjects": ["Ukrainian language"], "latest_revision": 3, "key": "/works/OL11519398W", "title": "Ukrainian", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4843165A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2019-03-11T17:19:40.039070"}, "covers": [8429136], "revision": 3}
+/type/work /works/OL11519415W 1 2009-12-11T04:46:18.853328 {"title": "Der Grabenh\u00e4ger", "created": {"type": "/type/datetime", "value": "2009-12-11T04:46:18.853328"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:46:18.853328"}, "latest_revision": 1, "key": "/works/OL11519415W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4843173A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11519546W 2 2010-01-20T18:59:29.551182 {"title": "The Strickland sisters", "created": {"type": "/type/datetime", "value": "2009-12-11T04:46:18.853328"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-20T18:59:29.551182"}, "latest_revision": 2, "key": "/works/OL11519546W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4843236A"}}], "subject_people": ["Susanna Moodie (1803-1885)", "Catherine Parr Traill (1802-1899)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11519953W 1 2009-12-11T04:46:18.853328 {"title": "The Kobe earthquake", "created": {"type": "/type/datetime", "value": "2009-12-11T04:46:18.853328"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:46:18.853328"}, "latest_revision": 1, "key": "/works/OL11519953W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4843497A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11519962W 2 2010-01-20T19:04:05.264971 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:46:18.853328"}, "title": "Gao zhong wen yan wen zhu du", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T19:04:05.264971"}, "latest_revision": 2, "key": "/works/OL11519962W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4843505A"}}], "type": {"key": "/type/work"}, "subjects": ["Chinese literature", "History and criticism", "Chinese language", "Readers"], "revision": 2}
+/type/work /works/OL11520114W 2 2010-01-20T19:04:05.264971 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:46:18.853328"}, "title": "United States population estimates and components of change: 1970 to 1986", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T19:04:05.264971"}, "latest_revision": 2, "key": "/works/OL11520114W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4843600A"}}], "type": {"key": "/type/work"}, "subjects": ["Statistics", "Population"], "revision": 2}
+/type/work /works/OL11520219W 2 2010-01-20T19:04:05.264971 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:46:18.853328"}, "title": "Elements of business administration", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T19:04:05.264971"}, "latest_revision": 2, "key": "/works/OL11520219W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4843668A"}}], "type": {"key": "/type/work"}, "subjects": ["Industrial management", "Business"], "revision": 2}
+/type/work /works/OL11520728W 3 2010-12-03T14:04:42.149198 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:46:26.827549"}, "subject_places": ["Spain"], "subjects": ["Bibliography", "Catalan Manuscripts", "Catalan drama", "Catalogs", "Manuscripts", "Manuscripts, Catalan"], "latest_revision": 3, "key": "/works/OL11520728W", "title": "Cat\u00e1logo de los manuscritos catalanes de la Biblioteca nacional", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4844018A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:04:42.149198"}, "revision": 3}
+/type/work /works/OL11520744W 1 2009-12-11T04:46:26.827549 {"title": "Okhrana okruzhayushchei sredy pri sooruzhenii i ekspluatatsii gazonefteprovodov", "created": {"type": "/type/datetime", "value": "2009-12-11T04:46:26.827549"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:46:26.827549"}, "latest_revision": 1, "key": "/works/OL11520744W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4844031A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11521315W 2 2010-01-20T19:08:55.798354 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:46:26.827549"}, "title": "Shear-lag analysis of notched laminates with interlaminar debonding", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T19:08:55.798354"}, "latest_revision": 2, "key": "/works/OL11521315W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4844416A"}}], "type": {"key": "/type/work"}, "subjects": ["Laminated materials", "Testing", "Fatigue", "Fracture mechanics", "Materials"], "revision": 2}
+/type/work /works/OL11521473W 1 2009-12-11T04:46:35.016655 {"title": "Iskusstvo i religiya", "created": {"type": "/type/datetime", "value": "2009-12-11T04:46:35.016655"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:46:35.016655"}, "latest_revision": 1, "key": "/works/OL11521473W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4844519A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11522054W 1 2009-12-11T04:46:35.016655 {"title": "History", "created": {"type": "/type/datetime", "value": "2009-12-11T04:46:35.016655"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:46:35.016655"}, "latest_revision": 1, "key": "/works/OL11522054W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4844925A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11522381W 1 2009-12-11T04:46:35.016655 {"title": "Sandhi patra", "created": {"type": "/type/datetime", "value": "2009-12-11T04:46:35.016655"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:46:35.016655"}, "latest_revision": 1, "key": "/works/OL11522381W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4845128A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11522531W 1 2009-12-11T04:46:43.508524 {"title": "Mrignayani", "created": {"type": "/type/datetime", "value": "2009-12-11T04:46:43.508524"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:46:43.508524"}, "latest_revision": 1, "key": "/works/OL11522531W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4845225A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11522655W 1 2009-12-11T04:46:43.508524 {"title": "Estimating and costing in civil engineering", "created": {"type": "/type/datetime", "value": "2009-12-11T04:46:43.508524"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:46:43.508524"}, "latest_revision": 1, "key": "/works/OL11522655W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4845314A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11523205W 1 2009-12-11T04:46:43.508524 {"title": "Permafrost", "created": {"type": "/type/datetime", "value": "2009-12-11T04:46:43.508524"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:46:43.508524"}, "latest_revision": 1, "key": "/works/OL11523205W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4845696A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11523272W 1 2009-12-11T04:46:43.508524 {"title": "Miljoeavgifter og usikkerhet", "created": {"type": "/type/datetime", "value": "2009-12-11T04:46:43.508524"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:46:43.508524"}, "latest_revision": 1, "key": "/works/OL11523272W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4845754A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11523369W 1 2009-12-11T04:46:43.508524 {"title": "Adr\u0325sh\u1e6d\u0101c\u0101 v\u0101\u1e6d\u0101", "created": {"type": "/type/datetime", "value": "2009-12-11T04:46:43.508524"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:46:43.508524"}, "latest_revision": 1, "key": "/works/OL11523369W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4845832A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11523381W 1 2009-12-11T04:46:43.508524 {"title": "Arbeidsmuligheter for filologer", "created": {"type": "/type/datetime", "value": "2009-12-11T04:46:43.508524"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:46:43.508524"}, "latest_revision": 1, "key": "/works/OL11523381W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4845840A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11523436W 3 2010-12-03T14:07:18.881159 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:46:53.770824"}, "subject_places": ["Nigeria", "West Africa"], "subjects": ["Artistic Photography", "Hairdressing of Blacks", "Hairstyles", "Photography, Artistic", "Pictorial works"], "latest_revision": 3, "key": "/works/OL11523436W", "title": "J.D. 'Okhai Ojeikere", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4845884A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:07:18.881159"}, "revision": 3}
+/type/work /works/OL11523602W 1 2009-12-11T04:46:53.770824 {"title": "Uzdrowiska Karpackie", "created": {"type": "/type/datetime", "value": "2009-12-11T04:46:53.770824"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:46:53.770824"}, "latest_revision": 1, "key": "/works/OL11523602W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4846017A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11523769W 2 2010-01-20T19:14:06.108033 {"title": "Historia prawdziwa o Pietrku W\u0142as\u0301cie, palatynie,kto\u0301rego zwano Duninem", "created": {"type": "/type/datetime", "value": "2009-12-11T04:46:53.770824"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-20T19:14:06.108033"}, "latest_revision": 2, "key": "/works/OL11523769W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4846126A"}}], "subject_people": ["Piotr W\u0142ostowic"], "type": {"key": "/type/work"}, "subjects": ["Fiction"], "revision": 2}
+/type/work /works/OL11523996W 3 2011-06-10T18:38:53.957666 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:46:53.770824"}, "subject_places": ["United States"], "subjects": ["Pay, allowances", "Veterans", "Armed Forces"], "latest_revision": 3, "key": "/works/OL11523996W", "title": "Subcommittee No. 2 consideration of H.R. 9673, to amend title 10, United States code, to provide the conditions under which retired pay may be paid in the case of retired officers dropped from the rolls, and for other purposes", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1901025A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2011-06-10T18:38:53.957666"}, "revision": 3}
+/type/work /works/OL11524342W 3 2010-12-03T14:06:52.776050 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:46:53.770824"}, "subject_places": ["United States"], "subjects": ["Foreign relations", "International relations", "Unesco"], "latest_revision": 3, "key": "/works/OL11524342W", "title": "Perspectives on the U.S. withdrawal from UNESCO", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4846502A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:06:52.776050"}, "revision": 3}
+/type/work /works/OL11524695W 1 2009-12-11T04:47:06.167681 {"title": "\"Sperrin Lakeland Hospital", "created": {"type": "/type/datetime", "value": "2009-12-11T04:47:06.167681"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:47:06.167681"}, "latest_revision": 1, "key": "/works/OL11524695W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4846746A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11524704W 2 2010-01-20T19:18:51.430088 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:47:06.167681"}, "title": "The old copper mines of Snowdonia", "subject_places": ["Wales", "Snowdonia"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T19:18:51.430088"}, "latest_revision": 2, "key": "/works/OL11524704W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4846750A"}}], "type": {"key": "/type/work"}, "subjects": ["Industrial archaeology", "Copper mines and mining", "History"], "revision": 2}
+/type/work /works/OL11524782W 2 2010-01-20T19:18:51.430088 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:47:06.167681"}, "title": "The Carling story of Munster rugby", "subject_places": ["Munster", "Ireland"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T19:18:51.430088"}, "latest_revision": 2, "key": "/works/OL11524782W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4846813A"}}], "type": {"key": "/type/work"}, "subjects": ["Rugby football", "History"], "revision": 2}
+/type/work /works/OL11524902W 2 2010-01-20T19:18:51.430088 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:47:06.167681"}, "title": "Proceedings", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T19:18:51.430088"}, "latest_revision": 2, "key": "/works/OL11524902W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4846894A"}}], "type": {"key": "/type/work"}, "subjects": ["Agricultural credit"], "revision": 2}
+/type/work /works/OL11525689W 2 2010-01-20T19:18:51.430088 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:47:13.500484"}, "title": "The fracture of rocks", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T19:18:51.430088"}, "latest_revision": 2, "key": "/works/OL11525689W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4847409A"}}], "type": {"key": "/type/work"}, "subjects": ["Fracture", "Rocks"], "revision": 2}
+/type/work /works/OL11525867W 2 2010-01-20T19:18:51.430088 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:47:13.500484"}, "title": "Statuta pontificiae universitatis gregorianae", "subject_places": ["Rome", "Italy"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T19:18:51.430088"}, "latest_revision": 2, "key": "/works/OL11525867W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4847517A"}}], "type": {"key": "/type/work"}, "subjects": ["Universities and colleges"], "revision": 2}
+/type/work /works/OL11525956W 4 2022-05-25T01:07:32.884123 {"title": "The female face in the Tate's British collection 1569-1876", "subjects": ["European Portrait painting", "Portrait painting, European", "Women in art", "Portrait painting", "Painting, european"], "key": "/works/OL11525956W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4847548A"}}], "type": {"key": "/type/work"}, "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T04:47:13.500484"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T01:07:32.884123"}}
+/type/work /works/OL11526076W 1 2009-12-11T04:47:13.500484 {"title": "Tavaszi sz\u00e9l, elbesz\u00e9l\u00e9sek", "created": {"type": "/type/datetime", "value": "2009-12-11T04:47:13.500484"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:47:13.500484"}, "latest_revision": 1, "key": "/works/OL11526076W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4847610A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL115265W 7 2022-12-17T08:51:45.067663 {"subjects": ["Children: Kindergarten", "Imagination", "Collections", "American poetry", "Juvenile poetry", "Poetry", "Children's poetry, American", "Poetry (poetic works by one author)"], "key": "/works/OL115265W", "title": "Imagine That! Poems of Never-Was", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL19035A"}}, {"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL772502A"}}], "type": {"key": "/type/work"}, "covers": [422981, 1189240, 423998, 422982], "description": {"type": "/type/text", "value": "An illustrated collection of poems about imaginary things, by such authors as Jane Yolen, Conrad Aiken, and Karla Kuskin."}, "location": "/works/OL115265W", "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2009-10-18T05:06:07.461934"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T08:51:45.067663"}}
+/type/work /works/OL11526620W 1 2009-12-11T04:47:21.231720 {"title": "A further study of quality circle programmes in the UK service sector", "created": {"type": "/type/datetime", "value": "2009-12-11T04:47:21.231720"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:47:21.231720"}, "latest_revision": 1, "key": "/works/OL11526620W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4847989A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11526690W 2 2010-01-20T19:23:38.993628 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:47:21.231720"}, "title": "Memphis als zweite Landeshauptstadt im Neuen Reich", "subject_places": ["Memphis (Extinct city)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T19:23:38.993628"}, "latest_revision": 2, "key": "/works/OL11526690W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4848037A"}}], "type": {"key": "/type/work"}, "subjects": ["History"], "revision": 2}
+/type/work /works/OL11526946W 2 2010-01-20T19:23:38.993628 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:47:21.231720"}, "title": "Lecturas cubanas, portada de Manolo Alvarez", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T19:23:38.993628"}, "latest_revision": 2, "key": "/works/OL11526946W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4848216A"}}], "type": {"key": "/type/work"}, "subjects": ["History and criticism", "Cuban literature"], "revision": 2}
+/type/work /works/OL11527056W 4 2021-08-21T14:07:03.893938 {"subjects": ["English literature: Shakespeare texts", "Historical figures", "For National Curriculum Key Stage 2", "Juvenile literature"], "subject_people": ["William Shakespeare (1564-1616)"], "key": "/works/OL11527056W", "title": "William Shakespeare", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4848288A"}}, {"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL947017A"}}, {"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2829436A"}}], "type": {"key": "/type/work"}, "covers": [11744856], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T04:47:21.231720"}, "last_modified": {"type": "/type/datetime", "value": "2021-08-21T14:07:03.893938"}}
+/type/work /works/OL11527170W 3 2010-12-03T14:08:56.165145 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:47:21.231720"}, "subject_places": ["Greece", "Italy"], "subjects": ["Civilization, Greek and Roman", "Civilization, Italian", "Foreign relations", "Greek and Roman Civilization", "Italian Civilization"], "latest_revision": 3, "key": "/works/OL11527170W", "title": "Italia e Grecia", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4848360A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:08:56.165145"}, "revision": 3}
+/type/work /works/OL11527253W 3 2010-12-04T06:06:05.010406 {"last_modified": {"type": "/type/datetime", "value": "2010-12-04T06:06:05.010406"}, "title": "Eggshells and tea-leaves", "created": {"type": "/type/datetime", "value": "2009-12-11T04:47:21.231720"}, "subjects": ["British Personal narratives", "Great Britain", "Great Britain. Army. Royal Artillery. Field Regiment, 92nd", "Personal narratives, British", "World War, 1939-1945"], "latest_revision": 3, "key": "/works/OL11527253W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4848399A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11527289W 2 2010-01-20T19:28:55.472635 {"title": "Das unendliche Altern der Moderne", "created": {"type": "/type/datetime", "value": "2009-12-11T04:47:21.231720"}, "subject_places": ["Austria"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T19:28:55.472635"}, "latest_revision": 2, "key": "/works/OL11527289W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4848429A"}}], "subject_people": ["Gert Jonke (1946-)"], "type": {"key": "/type/work"}, "subjects": ["Postmodernism (Literature)", "Modernism (Literature)", "Criticism and interpretation"], "revision": 2}
+/type/work /works/OL1152740W 4 2014-07-30T10:46:48.680152 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:35:49.104108"}, "subject_places": ["Oregon"], "subjects": ["Economic aspects", "Fuel", "Fuel trade", "Economic aspects of Fuel", "Economic aspects of Fuel trade", "Fungi", "Plant diseases"], "latest_revision": 4, "key": "/works/OL1152740W", "title": "A discussion of the properties and economics of fuels used in Oregon", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL116934A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2014-07-30T10:46:48.680152"}, "revision": 4}
+/type/work /works/OL11527413W 2 2010-01-20T19:28:55.472635 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:47:28.332301"}, "title": "Ground-water levels and use of water for irrigation in the Saratoga Valley, south-central Wyoming, 1980-81", "subject_places": ["Wyoming"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T19:28:55.472635"}, "latest_revision": 2, "key": "/works/OL11527413W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4848512A"}}], "type": {"key": "/type/work"}, "subjects": ["Groundwater", "Irrigation water"], "revision": 2}
+/type/work /works/OL11527602W 2 2010-01-20T19:28:55.472635 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:47:28.332301"}, "title": "Regimen sanitatis Salerni", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T19:28:55.472635"}, "latest_revision": 2, "key": "/works/OL11527602W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4848603A"}}], "subject_times": ["Early works to 1800"], "type": {"key": "/type/work"}, "subjects": ["Hygiene"], "revision": 2}
+/type/work /works/OL11527735W 2 2010-01-20T19:28:55.472635 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:47:28.332301"}, "title": "Melinau", "subject_places": ["Wales", "Gwynedd"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T19:28:55.472635"}, "latest_revision": 2, "key": "/works/OL11527735W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4848707A"}}], "type": {"key": "/type/work"}, "subjects": ["Juvenile literature", "Mills and mill-work", "History"], "revision": 2}
+/type/work /works/OL11527769W 2 2010-10-20T18:06:05.417367 {"title": "Shepherd's hey", "created": {"type": "/type/datetime", "value": "2009-12-11T04:47:28.332301"}, "last_modified": {"type": "/type/datetime", "value": "2010-10-20T18:06:05.417367"}, "latest_revision": 2, "key": "/works/OL11527769W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL138383A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11528030W 2 2017-05-18T20:30:59.299606 {"title": "Libellus de auctoritate ecclesiae", "created": {"type": "/type/datetime", "value": "2009-12-11T04:47:28.332301"}, "last_modified": {"type": "/type/datetime", "value": "2017-05-18T20:30:59.299606"}, "latest_revision": 2, "key": "/works/OL11528030W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL336776A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11528827W 2 2010-01-20T19:28:55.472635 {"title": "al- Ras\u0101\u02beil al-mutab\u0101dilah bayna al-Ru\u1e63\u0101f\u012b wa-mu\u02bb\u0101\u1e63ir\u012bh", "created": {"type": "/type/datetime", "value": "2009-12-11T04:47:34.687820"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-20T19:28:55.472635"}, "latest_revision": 2, "key": "/works/OL11528827W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4849398A"}}], "subject_people": ["Ma\u02bbr\u016bf Ru\u1e63\u0101f\u012b (1875-1945)"], "type": {"key": "/type/work"}, "subjects": ["Correspondence"], "revision": 2}
+/type/work /works/OL1152919W 2 2010-01-20T19:34:18.086012 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:35:49.104108"}, "title": "Studies on the potassium metabolism of the rat during pregnancy, lactation, and growth", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T19:34:18.086012"}, "latest_revision": 2, "key": "/works/OL1152919W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL116958A"}}], "type": {"key": "/type/work"}, "subjects": ["Pregnancy", "Rats", "Metabolism", "Potassium in the body"], "revision": 2}
+/type/work /works/OL11530059W 1 2009-12-11T04:47:41.480737 {"title": "Silver not a local issue", "created": {"type": "/type/datetime", "value": "2009-12-11T04:47:41.480737"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:47:41.480737"}, "latest_revision": 1, "key": "/works/OL11530059W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4850187A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11530690W 3 2010-12-03T14:08:22.954589 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:08:22.954589"}, "title": "The four Blackburn V.C.s", "created": {"type": "/type/datetime", "value": "2009-12-11T04:47:49.152710"}, "subjects": ["Biography", "Campaigns", "Great Britain", "Great Britain. Army", "Medals", "Victoria Cross", "World War, 1939-1945"], "latest_revision": 3, "key": "/works/OL11530690W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4850661A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11530727W 3 2021-12-20T06:07:16.389380 {"title": "New frontiers in manufacturing", "key": "/works/OL11530727W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4850691A"}}], "type": {"key": "/type/work"}, "subjects": ["Automation"], "covers": [12453623], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T04:47:49.152710"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-20T06:07:16.389380"}}
+/type/work /works/OL11531072W 3 2010-12-03T14:08:22.954589 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:08:22.954589"}, "title": "Butsuz\u014d wa ikiteiru", "created": {"type": "/type/datetime", "value": "2009-12-11T04:47:49.152710"}, "subjects": ["Buddhist Gods", "Buddhist art and symbolism", "Gods, Buddhist"], "latest_revision": 3, "key": "/works/OL11531072W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4850896A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1153118W 2 2010-01-20T19:39:19.329147 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:35:58.955543"}, "title": "Forecasts of California's population and production, 1950-1960", "subject_places": ["California"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T19:39:19.329147"}, "latest_revision": 2, "key": "/works/OL1153118W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL116979A"}}], "type": {"key": "/type/work"}, "subjects": ["Economic conditions", "Population"], "revision": 2}
+/type/work /works/OL11531212W 3 2019-12-07T21:42:15.871212 {"covers": [9167052], "last_modified": {"type": "/type/datetime", "value": "2019-12-07T21:42:15.871212"}, "latest_revision": 3, "key": "/works/OL11531212W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4850980A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T04:47:49.152710"}, "title": "Soil survey of Aguila-Carefree Area, parts of Maricopa and Pinal Counties, Arizona", "subject_places": ["Arizona", "Pinal County", "Maricopa County"], "subjects": ["Soils", "Maps", "Soil surveys"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11531239W 1 2009-12-11T04:47:49.152710 {"title": "Gabadhii baraanka riixaysay =", "created": {"type": "/type/datetime", "value": "2009-12-11T04:47:49.152710"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:47:49.152710"}, "latest_revision": 1, "key": "/works/OL11531239W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4851000A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11531259W 1 2009-12-11T04:47:49.152710 {"title": "Costing systems in public libraries", "created": {"type": "/type/datetime", "value": "2009-12-11T04:47:49.152710"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:47:49.152710"}, "latest_revision": 1, "key": "/works/OL11531259W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4851006A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11531289W 3 2021-08-20T18:42:25.222991 {"title": "Tidal reaches", "key": "/works/OL11531289W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4851028A"}}], "type": {"key": "/type/work"}, "subjects": ["Cornwall", "Paintings", "Geography and travel"], "covers": [11729536], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T04:47:49.152710"}, "last_modified": {"type": "/type/datetime", "value": "2021-08-20T18:42:25.222991"}}
+/type/work /works/OL11531379W 2 2010-01-20T19:39:19.329147 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:47:49.152710"}, "title": "Time lines", "subject_places": ["Great Britain"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T19:39:19.329147"}, "latest_revision": 2, "key": "/works/OL11531379W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4851086A"}}], "type": {"key": "/type/work"}, "subjects": ["Microcomputers", "Computer-assisted instruction", "History"], "revision": 2}
+/type/work /works/OL11531461W 2 2010-01-20T19:39:19.329147 {"title": "Un document financier du XIIIe si\u00e8cle", "created": {"type": "/type/datetime", "value": "2009-12-11T04:47:56.068408"}, "subject_places": ["Burgundy (France)", "Burgundy", "France"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T19:39:19.329147"}, "latest_revision": 2, "key": "/works/OL11531461W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4851141A"}}], "subject_people": ["Robert II duke of Burgundy (d. 1305)"], "type": {"key": "/type/work"}, "subjects": ["Sources", "Finance", "History"], "revision": 2}
+/type/work /works/OL11531774W 1 2009-12-11T04:47:56.068408 {"title": "Arts administration", "created": {"type": "/type/datetime", "value": "2009-12-11T04:47:56.068408"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:47:56.068408"}, "latest_revision": 1, "key": "/works/OL11531774W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4851304A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11532103W 1 2009-12-11T04:47:56.068408 {"title": "Daniel Owen", "created": {"type": "/type/datetime", "value": "2009-12-11T04:47:56.068408"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:47:56.068408"}, "latest_revision": 1, "key": "/works/OL11532103W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4851508A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11532163W 2 2010-01-20T19:44:47.571523 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:47:56.068408"}, "title": "Halesowen churchwardens' accounts (1487-1582)", "subject_places": ["Halesowen (England)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T19:44:47.571523"}, "latest_revision": 2, "key": "/works/OL11532163W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4851539A"}}], "type": {"key": "/type/work"}, "subjects": ["Sources", "Churchwardens' accounts", "History"], "revision": 2}
+/type/work /works/OL11532216W 2 2010-01-20T19:44:47.571523 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:47:56.068408"}, "title": "The direct method of studying foreign languages", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T19:44:47.571523"}, "latest_revision": 2, "key": "/works/OL11532216W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4851578A"}}], "type": {"key": "/type/work"}, "subjects": ["History", "Study and teaching", "Philology", "Language and languages"], "revision": 2}
+/type/work /works/OL11532275W 1 2009-12-11T04:47:56.068408 {"title": "Kynd Kittock's land", "created": {"type": "/type/datetime", "value": "2009-12-11T04:47:56.068408"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:47:56.068408"}, "latest_revision": 1, "key": "/works/OL11532275W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4851615A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11532363W 3 2010-12-03T20:03:27.944136 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:47:56.068408"}, "subject_places": ["England", "Rushden (Northamptonshire)"], "subjects": ["Antiquities, Roman", "Pottery, Roman", "Roman Antiquities", "Roman Pottery"], "latest_revision": 3, "key": "/works/OL11532363W", "title": "Rushden", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4851670A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T20:03:27.944136"}, "revision": 3}
+/type/work /works/OL11532996W 2 2010-12-03T14:08:22.954589 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:08:22.954589"}, "title": "The Royal Ballet & Sadler's Wells Royal Ballet 1980/81", "created": {"type": "/type/datetime", "value": "2009-12-11T04:48:03.404657"}, "subjects": ["Royal Ballet (Covent Garden)", "Sadler's Wells Royal Ballet"], "latest_revision": 2, "key": "/works/OL11532996W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4852074A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11533393W 2 2010-01-20T19:49:39.076704 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:48:03.404657"}, "title": "Textes arabes des Za\u00ebr", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T19:49:39.076704"}, "latest_revision": 2, "key": "/works/OL11533393W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4852346A"}}], "type": {"key": "/type/work"}, "subjects": ["Dialects", "Arabic language", "Morocco", "Texts"], "revision": 2}
+/type/work /works/OL11533653W 3 2010-12-04T00:18:47.406609 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:48:11.530850"}, "subjects": ["Medieval Philosophy", "Philosophy, Medieval", "Terminology", "Theology"], "subject_people": ["Thomas Aquinas, Saint (1225?-1274)"], "key": "/works/OL11533653W", "title": "Epistola prohemialis in tractatum de declaratione difficilium dictorum & dictionum in theologia et philosophya", "latest_revision": 3, "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4852508A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-04T00:18:47.406609"}, "revision": 3}
+/type/work /works/OL11533977W 1 2009-12-11T04:48:11.530850 {"title": "La roche pousse en hiver", "created": {"type": "/type/datetime", "value": "2009-12-11T04:48:11.530850"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:48:11.530850"}, "latest_revision": 1, "key": "/works/OL11533977W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4852682A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11533995W 2 2010-01-20T19:49:39.076704 {"title": "Untersuchungen zu Gamil al-Mudauwars Hadarat al-Islam fi Dar as-Salam", "created": {"type": "/type/datetime", "value": "2009-12-11T04:48:11.530850"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-20T19:49:39.076704"}, "latest_revision": 2, "key": "/works/OL11533995W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4852699A"}}], "subject_people": ["Jamil ibn Nakhlah Mudawwar (1862-1907)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL1153406W 8 2020-09-16T02:46:14.178851 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:35:58.955543"}, "subjects": ["Ancient Civilization", "Ancient History"], "latest_revision": 8, "key": "/works/OL1153406W", "title": "The dawn of civilization and life in the ancient East", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL117013A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-09-16T02:46:14.178851"}, "covers": [6483835], "revision": 8}
+/type/work /works/OL11534114W 3 2010-12-03T14:07:54.027342 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:48:11.530850"}, "subject_places": ["Limerick (County) Mount Collins", "Mount Collins, Limerick (County)"], "subjects": ["History"], "latest_revision": 3, "key": "/works/OL11534114W", "title": "Mount Collins and West Limerick", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4852786A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:07:54.027342"}, "revision": 3}
+/type/work /works/OL11534554W 2 2010-01-20T19:49:39.076704 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:48:19.452159"}, "title": "An attack on Duffer's downtown", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T19:49:39.076704"}, "latest_revision": 2, "key": "/works/OL11534554W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4853060A"}}], "type": {"key": "/type/work"}, "subjects": ["Urban warfare", "Street fighting (Military science)"], "revision": 2}
+/type/work /works/OL11535600W 2 2010-01-20T19:54:48.885269 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:48:27.024448"}, "title": "Geograf\u00eda y estructura econ\u00f3micas de Nicaragua", "subject_places": ["Nicaragua"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T19:54:48.885269"}, "latest_revision": 2, "key": "/works/OL11535600W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4853767A"}}], "type": {"key": "/type/work"}, "subjects": ["Economic conditions"], "revision": 2}
+/type/work /works/OL11535822W 1 2009-12-11T04:48:27.024448 {"title": "Wild horses", "created": {"type": "/type/datetime", "value": "2009-12-11T04:48:27.024448"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:48:27.024448"}, "latest_revision": 1, "key": "/works/OL11535822W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4853907A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL115360W 10 2023-01-09T17:21:46.352688 {"subtitle": "a dictionary of gender-free usage", "covers": [9298027], "key": "/works/OL115360W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL19041A"}}], "title": "The nonsexist word finder", "subjects": ["Terms and phrases", "Nonsexist language", "Dictionaries", "English language", "Usage", "Sex differences", "Social aspects of English language", "Anglais (Langue)", "Social aspects", "Mots et locutions", "Aspect social", "Langage non sexiste", "Dictionnaires", "English language, usage", "Sexism in language"], "type": {"key": "/type/work"}, "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2009-10-18T05:06:07.461934"}, "last_modified": {"type": "/type/datetime", "value": "2023-01-09T17:21:46.352688"}}
+/type/work /works/OL11536134W 2 2010-01-20T20:00:11.134517 {"title": "Ma Yinchu zhuan", "created": {"type": "/type/datetime", "value": "2009-12-11T04:48:27.024448"}, "subject_places": ["China"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T20:00:11.134517"}, "latest_revision": 2, "key": "/works/OL11536134W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4854111A"}}], "subject_people": ["Yinchu Ma (1882-1982)"], "type": {"key": "/type/work"}, "subjects": ["Economists", "Biography"], "revision": 2}
+/type/work /works/OL11536500W 1 2009-12-11T04:48:40.050254 {"title": "Marsden through the ages", "created": {"type": "/type/datetime", "value": "2009-12-11T04:48:40.050254"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:48:40.050254"}, "latest_revision": 1, "key": "/works/OL11536500W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4854378A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11536758W 1 2009-12-11T04:48:40.050254 {"title": "A proposal for measuring the attraction of some hill in this Kingdom by astronomical observations", "created": {"type": "/type/datetime", "value": "2009-12-11T04:48:40.050254"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:48:40.050254"}, "latest_revision": 1, "key": "/works/OL11536758W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4854553A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11536815W 3 2010-12-03T14:09:52.632743 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:09:52.632743"}, "title": "Problems in physical and mechanistic organic chemistry", "created": {"type": "/type/datetime", "value": "2009-12-11T04:48:40.050254"}, "subjects": ["Chemical reactions", "Chemistry, Physical organic", "Physical organic Chemistry", "Problems, exercises"], "latest_revision": 3, "key": "/works/OL11536815W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4854585A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11537417W 2 2010-01-20T20:05:38.559823 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:48:48.054083"}, "title": "The Ice Age in y Glyderau and Nant Ffrancon", "subject_places": ["Wales", "Snowdonia"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T20:05:38.559823"}, "latest_revision": 2, "key": "/works/OL11537417W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4855012A"}}], "type": {"key": "/type/work"}, "subjects": ["Glacial landforms"], "revision": 2}
+/type/work /works/OL11537428W 1 2009-12-11T04:48:48.054083 {"title": "Neighbourhood watch", "created": {"type": "/type/datetime", "value": "2009-12-11T04:48:48.054083"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:48:48.054083"}, "latest_revision": 1, "key": "/works/OL11537428W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4855018A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11537962W 1 2009-12-11T04:48:48.054083 {"title": "The gold and silver buyer's handbook", "created": {"type": "/type/datetime", "value": "2009-12-11T04:48:48.054083"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:48:48.054083"}, "latest_revision": 1, "key": "/works/OL11537962W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4855401A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11538236W 1 2009-12-11T04:48:48.054083 {"title": "Time", "created": {"type": "/type/datetime", "value": "2009-12-11T04:48:48.054083"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:48:48.054083"}, "latest_revision": 1, "key": "/works/OL11538236W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4855577A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11538413W 1 2009-12-11T04:48:55.693874 {"title": "A vindication of Joseph Warder", "created": {"type": "/type/datetime", "value": "2009-12-11T04:48:55.693874"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:48:55.693874"}, "latest_revision": 1, "key": "/works/OL11538413W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4855685A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11538414W 1 2009-12-11T04:48:55.693874 {"title": "The true amazons", "created": {"type": "/type/datetime", "value": "2009-12-11T04:48:55.693874"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:48:55.693874"}, "latest_revision": 1, "key": "/works/OL11538414W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4855685A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11539125W 2 2010-01-20T20:10:18.119493 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:48:55.693874"}, "title": "Kog\u016dn kwana tansimj\u014fn chegy\u014fng", "subject_places": ["Korea"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T20:10:18.119493"}, "latest_revision": 2, "key": "/works/OL11539125W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4856161A"}}], "type": {"key": "/type/work"}, "subjects": ["Taoism"], "revision": 2}
+/type/work /works/OL11539657W 2 2010-01-20T20:10:18.119493 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:49:03.543070"}, "title": "My research into theunknown", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T20:10:18.119493"}, "latest_revision": 2, "key": "/works/OL11539657W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4856500A"}}], "type": {"key": "/type/work"}, "subjects": ["Psychical research"], "revision": 2}
+/type/work /works/OL11539731W 2 2010-01-20T20:10:18.119493 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:49:03.543070"}, "title": "Aspen", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T20:10:18.119493"}, "latest_revision": 2, "key": "/works/OL11539731W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4856534A"}}], "type": {"key": "/type/work"}, "subjects": ["Aspen"], "revision": 2}
+/type/work /works/OL11539955W 3 2010-12-03T14:10:20.150633 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:49:03.543070"}, "subject_places": ["Great Britain"], "subjects": ["Animal welfare", "Dogs", "History", "National Canine Defence League"], "latest_revision": 3, "key": "/works/OL11539955W", "title": "\"A dog is for life-\"", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4856703A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:10:20.150633"}, "revision": 3}
+/type/work /works/OL11540036W 1 2009-12-11T04:49:03.543070 {"title": "Accountancy, taxation and financial management", "created": {"type": "/type/datetime", "value": "2009-12-11T04:49:03.543070"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:49:03.543070"}, "latest_revision": 1, "key": "/works/OL11540036W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4856761A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11540367W 2 2010-01-20T20:15:45.766059 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:49:03.543070"}, "title": "Kukka kaejo 35-je", "subject_places": ["Korea (South)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T20:15:45.766059"}, "latest_revision": 2, "key": "/works/OL11540367W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4857016A"}}], "subject_times": ["1988-2002"], "type": {"key": "/type/work"}, "subjects": ["Politics and government"], "revision": 2}
+/type/work /works/OL11540431W 2 2010-01-20T20:15:45.766059 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:49:11.169201"}, "title": "Sa\u1e43sk\u1e5bta v\u0101\u1e45maya k\u0101 vivecan\u0101tmaka itih\u0101sa", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T20:15:45.766059"}, "latest_revision": 2, "key": "/works/OL11540431W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4857051A"}}], "type": {"key": "/type/work"}, "subjects": ["Sanskrit literature", "History and criticism"], "revision": 2}
+/type/work /works/OL11540532W 2 2010-01-20T20:15:45.766059 {"title": "From heaven to hell and back again", "created": {"type": "/type/datetime", "value": "2009-12-11T04:49:11.169201"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-20T20:15:45.766059"}, "latest_revision": 2, "key": "/works/OL11540532W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4857123A"}}], "subject_people": ["Robert Tayler (1906-1990)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11540582W 1 2009-12-11T04:49:11.169201 {"title": "The barons of Halton", "created": {"type": "/type/datetime", "value": "2009-12-11T04:49:11.169201"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:49:11.169201"}, "latest_revision": 1, "key": "/works/OL11540582W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4857165A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11540584W 2 2010-01-20T20:15:45.766059 {"title": "Lewis Carroll and Cheshire", "created": {"type": "/type/datetime", "value": "2009-12-11T04:49:11.169201"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-20T20:15:45.766059"}, "latest_revision": 2, "key": "/works/OL11540584W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4857165A"}}], "subject_people": ["Lewis Carroll (1832-1898)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11540591W 2 2010-01-20T20:15:45.766059 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:49:11.169201"}, "title": "Development of Siberian and Dahurian larches after 10 years in North Dakota", "subject_places": ["North Dakota"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T20:15:45.766059"}, "latest_revision": 2, "key": "/works/OL11540591W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4857171A"}}], "type": {"key": "/type/work"}, "subjects": ["Development", "Dahurian larch", "Siberian larch", "Windbreaks, shelterbelts"], "revision": 2}
+/type/work /works/OL11540745W 2 2010-01-20T20:15:45.766059 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:49:11.169201"}, "title": "Kavyapraka\u015bah", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T20:15:45.766059"}, "latest_revision": 2, "key": "/works/OL11540745W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4857282A"}}], "type": {"key": "/type/work"}, "subjects": ["Poetics"], "revision": 2}
+/type/work /works/OL11540962W 1 2009-12-11T04:49:11.169201 {"title": "Amaryllis Brown", "created": {"type": "/type/datetime", "value": "2009-12-11T04:49:11.169201"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:49:11.169201"}, "latest_revision": 1, "key": "/works/OL11540962W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4857412A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11541085W 2 2010-12-03T14:11:16.885996 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:11:16.885996"}, "title": "St. Mary's Hospital", "created": {"type": "/type/datetime", "value": "2009-12-11T04:49:11.169201"}, "subjects": ["St. Mary's Hospital (London, England)"], "latest_revision": 2, "key": "/works/OL11541085W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4857478A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11541111W 3 2010-12-03T14:12:07.560783 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:49:11.169201"}, "subject_places": ["Kilmacolm", "Scotland"], "subjects": ["Golf", "History", "Kilmacolm Golf Club"], "latest_revision": 3, "key": "/works/OL11541111W", "title": "\"A very pleasant golfing place\"", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4857497A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:12:07.560783"}, "revision": 3}
+/type/work /works/OL11541488W 2 2010-01-20T20:21:11.995966 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:49:19.018130"}, "title": "Ningen to bunka no tanky\u016b", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T20:21:11.995966"}, "latest_revision": 2, "key": "/works/OL11541488W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4857758A"}}], "type": {"key": "/type/work"}, "subjects": ["Anthropology", "Culture", "Ethnology"], "revision": 2}
+/type/work /works/OL11541972W 2 2010-01-20T20:21:11.995966 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:49:19.018130"}, "title": "Tarjuman al-balaghah", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T20:21:11.995966"}, "latest_revision": 2, "key": "/works/OL11541972W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4858063A"}}], "type": {"key": "/type/work"}, "subjects": ["Persian language", "Rhetoric"], "revision": 2}
+/type/work /works/OL11542005W 1 2009-12-11T04:49:19.018130 {"title": "The way that life goes", "created": {"type": "/type/datetime", "value": "2009-12-11T04:49:19.018130"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:49:19.018130"}, "latest_revision": 1, "key": "/works/OL11542005W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4858081A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11542170W 1 2009-12-11T04:49:19.018130 {"title": "The home port", "created": {"type": "/type/datetime", "value": "2009-12-11T04:49:19.018130"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:49:19.018130"}, "latest_revision": 1, "key": "/works/OL11542170W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4858195A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11542318W 2 2010-01-20T20:21:11.995966 {"title": "Kaiser Friedrich der Zweite. Erg\u00e4nzungsband", "created": {"type": "/type/datetime", "value": "2009-12-11T04:49:19.018130"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-20T20:21:11.995966"}, "latest_revision": 2, "key": "/works/OL11542318W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4858292A"}}], "subject_people": ["Frederick II Holy Roman Emperor (1194-1250)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11542338W 2 2010-01-20T20:21:11.995966 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:49:19.018130"}, "title": "Non-contact heat flux measurement using a transparent sensor", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T20:21:11.995966"}, "latest_revision": 2, "key": "/works/OL11542338W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4858302A"}}], "type": {"key": "/type/work"}, "subjects": ["Fuel", "Rockets (Aeronautics)"], "revision": 2}
+/type/work /works/OL11542609W 2 2022-12-10T15:06:44.812917 {"title": "London", "key": "/works/OL11542609W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4858503A"}}], "type": {"key": "/type/work"}, "covers": [13031770], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T04:49:26.407257"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T15:06:44.812917"}}
+/type/work /works/OL11543183W 3 2010-12-03T14:12:07.560783 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:49:26.407257"}, "subjects": ["Football", "History", "Pennsylvania State University"], "subject_people": ["Joe Paterno (1926-)"], "key": "/works/OL11543183W", "title": "Joe Paterno, Penn State and college football", "latest_revision": 3, "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4858856A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:12:07.560783"}, "revision": 3}
+/type/work /works/OL11543555W 2 2010-01-20T20:26:57.574458 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:49:33.978993"}, "title": "Overview of high-fidelity modeling activities in the numerical propulsion system simulations (NPSS) project", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T20:26:57.574458"}, "latest_revision": 2, "key": "/works/OL11543555W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4859098A"}}], "type": {"key": "/type/work"}, "subjects": ["Gas turbine engines", "Computational fluid dynamics", "Turbocompressions", "Combustion chambers", "Turbines"], "revision": 2}
+/type/work /works/OL11543803W 4 2010-12-03T14:12:36.195370 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:49:33.978993"}, "subjects": ["Great Britain", "Great Britain. Army. Division, 47th (London)"], "latest_revision": 4, "key": "/works/OL11543803W", "title": "The London Gunners come to town", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4859268A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:12:36.195370"}, "covers": [5545870], "revision": 4}
+/type/work /works/OL11543893W 2 2010-01-20T20:26:57.574458 {"title": "Stepan Razin", "created": {"type": "/type/datetime", "value": "2009-12-11T04:49:33.978993"}, "subject_places": ["Russia"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T20:26:57.574458"}, "latest_revision": 2, "key": "/works/OL11543893W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4859325A"}}], "subject_people": ["Stepan Timofeevich Razin (d. 1671)"], "subject_times": ["Rebellion of Stepan Razin, 1667-1671"], "type": {"key": "/type/work"}, "subjects": ["History"], "revision": 2}
+/type/work /works/OL11543973W 2 2010-01-20T20:26:57.574458 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:49:33.978993"}, "title": "The dragonflies of Worcestershire", "subject_places": ["England", "Hereford and Worcester"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T20:26:57.574458"}, "latest_revision": 2, "key": "/works/OL11543973W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4859380A"}}], "type": {"key": "/type/work"}, "subjects": ["Dragonflies"], "revision": 2}
+/type/work /works/OL11544080W 5 2020-12-10T18:06:23.939204 {"title": "The family historian's pocket dictionary", "covers": [5442731], "key": "/works/OL11544080W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL71923A"}}], "type": {"key": "/type/work"}, "subjects": ["Dictionaries", "Genealogy"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2009-12-11T04:49:33.978993"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-10T18:06:23.939204"}}
+/type/work /works/OL11544088W 4 2020-12-02T16:19:58.405982 {"title": "S\u014dseki to Eibungaku", "key": "/works/OL11544088W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4859456A"}}], "subject_people": ["S\u014dseki Natsume (1867-1916)"], "type": {"key": "/type/work"}, "subjects": ["Comparative Literature", "English and Japanese", "Japanese and English", "Literature, Comparative", "Comparative literature"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T04:49:33.978993"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-02T16:19:58.405982"}}
+/type/work /works/OL11544575W 2 2010-01-20T20:32:14.153588 {"title": "Historic visions of J.D. Kelly", "created": {"type": "/type/datetime", "value": "2009-12-11T04:49:40.285993"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-20T20:32:14.153588"}, "latest_revision": 2, "key": "/works/OL11544575W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4859747A"}}], "subject_people": ["J. D. Kelly (1862-1958)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11545191W 1 2009-12-11T04:49:40.285993 {"title": "An abstract of Pierre Louys", "created": {"type": "/type/datetime", "value": "2009-12-11T04:49:40.285993"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:49:40.285993"}, "latest_revision": 1, "key": "/works/OL11545191W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4860079A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11545210W 1 2009-12-11T04:49:40.285993 {"title": "Habitations", "created": {"type": "/type/datetime", "value": "2009-12-11T04:49:40.285993"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:49:40.285993"}, "latest_revision": 1, "key": "/works/OL11545210W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4860088A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11545356W 2 2010-01-20T20:36:56.288597 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:49:40.285993"}, "title": "Greater East Liverpool economic development action plan", "subject_places": ["Ohio", "East Liverpool"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T20:36:56.288597"}, "latest_revision": 2, "key": "/works/OL11545356W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4860183A"}}], "type": {"key": "/type/work"}, "subjects": ["City planning"], "revision": 2}
+/type/work /works/OL11545532W 1 2009-12-11T04:49:46.956885 {"title": "Electrical characterization of a Space Station Freedom alpha Utility Transfer Assembly", "created": {"type": "/type/datetime", "value": "2009-12-11T04:49:46.956885"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:49:46.956885"}, "latest_revision": 1, "key": "/works/OL11545532W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4860284A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11546250W 2 2010-01-20T20:36:56.288597 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:49:46.956885"}, "title": "Tobacco experiments in southern Ohio", "subject_places": ["Ohio"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T20:36:56.288597"}, "latest_revision": 2, "key": "/works/OL11546250W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4860705A"}}], "type": {"key": "/type/work"}, "subjects": ["Field experiments", "Tobacco"], "revision": 2}
+/type/work /works/OL11546271W 2 2010-01-20T20:36:56.288597 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:49:46.956885"}, "title": "An outdoor recreation plan for northwest Kansas", "subject_places": ["Kansas"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T20:36:56.288597"}, "latest_revision": 2, "key": "/works/OL11546271W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4860722A"}}], "type": {"key": "/type/work"}, "subjects": ["Wild and scenic rivers", "Outdoor recreation"], "revision": 2}
+/type/work /works/OL11546504W 2 2010-01-20T20:41:38.608031 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:49:54.603808"}, "title": "Sure & simple gardening", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T20:41:38.608031"}, "latest_revision": 2, "key": "/works/OL11546504W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4860865A"}}], "type": {"key": "/type/work"}, "subjects": ["Gardening"], "revision": 2}
+/type/work /works/OL11546614W 1 2009-12-11T04:49:54.603808 {"title": "Wine list", "created": {"type": "/type/datetime", "value": "2009-12-11T04:49:54.603808"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:49:54.603808"}, "latest_revision": 1, "key": "/works/OL11546614W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4860931A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11546643W 2 2010-01-20T20:41:38.608031 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:49:54.603808"}, "title": "Regional land use plan 1980", "subject_places": ["New York (State)", "Chautauqua County", "Allegany County", "Cattaraugus County"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T20:41:38.608031"}, "latest_revision": 2, "key": "/works/OL11546643W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4860951A"}}], "type": {"key": "/type/work"}, "subjects": ["Regional planning", "Land use"], "revision": 2}
+/type/work /works/OL1154670W 1 2009-12-09T20:36:10.057445 {"title": "Scechina e libellus de litteris hebraicis", "created": {"type": "/type/datetime", "value": "2009-12-09T20:36:10.057445"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T20:36:10.057445"}, "latest_revision": 1, "key": "/works/OL1154670W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL117150A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11546841W 2 2010-01-20T20:41:38.608031 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:49:54.603808"}, "title": "Zoning ordinance for the town of Cache, Oklahoma", "subject_places": ["Oklahoma", "Cache"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T20:41:38.608031"}, "latest_revision": 2, "key": "/works/OL11546841W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4861105A"}}], "type": {"key": "/type/work"}, "subjects": ["Zoning law"], "revision": 2}
+/type/work /works/OL11547116W 1 2009-12-11T04:49:54.603808 {"title": "Der Pergamentdruck der Agenda Ecclesiae Moguntinensis von 1480 der Stadtbibliothek zu Frankfurt am Main", "created": {"type": "/type/datetime", "value": "2009-12-11T04:49:54.603808"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:49:54.603808"}, "latest_revision": 1, "key": "/works/OL11547116W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4861264A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11547699W 1 2009-12-11T04:50:01.554752 {"title": "Awr\u0101q bi-d\u016bn tart\u012bb f\u012b al-adab wa-al-fann wa-al-\u1e25ay\u0101h", "created": {"type": "/type/datetime", "value": "2009-12-11T04:50:01.554752"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:50:01.554752"}, "latest_revision": 1, "key": "/works/OL11547699W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4861635A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11548225W 1 2009-12-11T04:50:01.554752 {"title": "Xian dai Zhongguo wen xue lun cong", "created": {"type": "/type/datetime", "value": "2009-12-11T04:50:01.554752"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:50:01.554752"}, "latest_revision": 1, "key": "/works/OL11548225W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4861909A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL115484W 1 2009-10-18T05:06:07.461934 {"created": {"type": "/type/datetime", "value": "2009-10-18T05:06:07.461934"}, "title": "Los Archivos De Timothy", "last_modified": {"type": "/type/datetime", "value": "2009-10-18T05:06:07.461934"}, "latest_revision": 1, "key": "/works/OL115484W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL19047A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11549066W 2 2010-01-20T20:52:46.689802 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:50:08.698029"}, "title": "Northern goshawk inventory and monitoring technical guide", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T20:52:46.689802"}, "latest_revision": 2, "key": "/works/OL11549066W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4862455A"}}], "type": {"key": "/type/work"}, "subjects": ["Monitoring", "Goshawk", "Wildlife monitoring"], "revision": 2}
+/type/work /works/OL11549087W 2 2021-08-16T21:39:22.276925 {"title": "The kitchen garden", "key": "/works/OL11549087W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4862470A"}}], "type": {"key": "/type/work"}, "subjects": ["Vegetable gardening", "Fruit-culture"], "covers": [11661706], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T04:50:08.698029"}, "last_modified": {"type": "/type/datetime", "value": "2021-08-16T21:39:22.276925"}}
+/type/work /works/OL11549923W 4 2021-09-04T09:12:00.206592 {"subject_places": ["Missouri River Watershed"], "subjects": ["Water", "Pollution"], "key": "/works/OL11549923W", "title": "Missouri River drainage basin", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1642212A"}}], "type": {"key": "/type/work"}, "covers": [11900434], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T04:50:14.859499"}, "last_modified": {"type": "/type/datetime", "value": "2021-09-04T09:12:00.206592"}}
+/type/work /works/OL11549953W 4 2020-12-14T21:29:54.969116 {"subtitle": "Ch\u02bboe Chun-sik Kyosu \u016di uri munhwa segyehwa \u016di kosu r\u016dl ch\u02bbajas\u014f", "title": "K\u016dr\u016dt, \u016dmsik k\u016drigo sul e tamgin uri munhwa", "subject_places": ["Korea (South)"], "subjects": ["Korean Cookery", "Social life and customs", "Gastronomy", "Interviews", "Alcoholic beverages", "Korean Pottery", "Korean Cooking"], "subject_people": ["T\u02bbae-gw\u014fn Cho"], "key": "/works/OL11549953W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4863036A"}}], "type": {"key": "/type/work"}, "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T04:50:14.859499"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-14T21:29:54.969116"}}
+/type/work /works/OL11550378W 3 2010-12-03T15:28:26.145820 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:50:14.859499"}, "subjects": ["Authors, Japanese", "History and criticism", "Japanese Authors", "Japanese literature"], "latest_revision": 3, "key": "/works/OL11550378W", "title": "Kindai bungaku no shihyo", "subject_times": ["Meiji period, 1867-1912"], "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4863244A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:28:26.145820"}, "revision": 3}
+/type/work /works/OL11550416W 2 2010-01-20T20:58:09.070582 {"title": "\u014cgai", "created": {"type": "/type/datetime", "value": "2009-12-11T04:50:14.859499"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-20T20:58:09.070582"}, "latest_revision": 2, "key": "/works/OL11550416W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4863271A"}}], "subject_people": ["Mori, \u014cgai (1862-1922)", "S\u014dseki Natsume (1867-1916)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11550560W 3 2010-12-03T14:13:46.414657 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:13:46.414657"}, "title": "Man'yoshu shinron", "created": {"type": "/type/datetime", "value": "2009-12-11T04:50:21.498945"}, "subjects": ["Emotions in literature", "Man'yoshu"], "latest_revision": 3, "key": "/works/OL11550560W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4863344A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11551010W 2 2010-12-03T21:38:39.684985 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:50:21.498945"}, "subjects": ["Biography", "Diaries", "Japanese Authors"], "subject_people": ["Fujiwara Michitsuna no haha (d. 955)"], "key": "/works/OL11551010W", "title": "Kager\u014d nikki", "latest_revision": 2, "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4863612A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T21:38:39.684985"}, "revision": 2}
+/type/work /works/OL11551241W 1 2009-12-11T04:50:21.498945 {"title": "A deuoute intercessyon and prayer to Iesu Chryste", "created": {"type": "/type/datetime", "value": "2009-12-11T04:50:21.498945"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:50:21.498945"}, "latest_revision": 1, "key": "/works/OL11551241W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4863749A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11551629W 2 2010-01-20T21:03:07.229170 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:50:29.400860"}, "title": "Depreciation", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T21:03:07.229170"}, "latest_revision": 2, "key": "/works/OL11551629W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4864003A"}}], "type": {"key": "/type/work"}, "subjects": ["Depreciation"], "revision": 2}
+/type/work /works/OL1155171W 3 2010-07-20T14:40:13.191468 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:36:16.070735"}, "title": "Science through the ages", "last_modified": {"type": "/type/datetime", "value": "2010-07-20T14:40:13.191468"}, "latest_revision": 3, "key": "/works/OL1155171W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL117200A"}}], "type": {"key": "/type/work"}, "subjects": ["Exhibitions", "History", "Medicine", "Science", "Technology", "John Crerar Library"], "revision": 3}
+/type/work /works/OL1155172W 5 2020-08-12T23:03:11.471241 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:36:16.070735"}, "subjects": ["Bibliography", "Military Medicine", "Military Surgery"], "latest_revision": 5, "key": "/works/OL1155172W", "title": "A selected list of books on military medicine and surgery", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL117200A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-08-12T23:03:11.471241"}, "covers": [5838429], "revision": 5}
+/type/work /works/OL11552025W 2 2010-01-20T21:03:07.229170 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:50:29.400860"}, "title": "Iskusstvo romana i XX vek", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T21:03:07.229170"}, "latest_revision": 2, "key": "/works/OL11552025W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4864257A"}}], "subject_times": ["20th century"], "type": {"key": "/type/work"}, "subjects": ["History and criticism", "Fiction"], "revision": 2}
+/type/work /works/OL11552060W 2 2010-12-03T14:12:58.019817 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:12:58.019817"}, "title": "Early years work with the trophy makers", "created": {"type": "/type/datetime", "value": "2009-12-11T04:50:29.400860"}, "subjects": ["Beaupr\u00e9 Community Primary School (Outwell, England)"], "latest_revision": 2, "key": "/works/OL11552060W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4864286A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11552179W 2 2010-01-20T21:03:07.229170 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:50:29.400860"}, "title": "Practical manual for semi-intensive commercial production of marine shrimp", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T21:03:07.229170"}, "latest_revision": 2, "key": "/works/OL11552179W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4864378A"}}], "type": {"key": "/type/work"}, "subjects": ["Shrimp culture", "Handbooks, manuals"], "revision": 2}
+/type/work /works/OL1155230W 1 2009-12-09T20:36:16.070735 {"title": "Samtliche Werke: historische-kritische Ausgabe", "created": {"type": "/type/datetime", "value": "2009-12-09T20:36:16.070735"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T20:36:16.070735"}, "latest_revision": 1, "key": "/works/OL1155230W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL117201A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11552824W 1 2009-12-11T04:50:36.539076 {"title": "La malherida", "created": {"type": "/type/datetime", "value": "2009-12-11T04:50:36.539076"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:50:36.539076"}, "latest_revision": 1, "key": "/works/OL11552824W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4864791A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1155291W 2 2010-01-20T21:08:52.705406 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:36:16.070735"}, "title": "San Francisco's first Christmas", "subject_places": ["San Francisco (Calif.)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T21:08:52.705406"}, "latest_revision": 2, "key": "/works/OL1155291W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL117204A"}}], "type": {"key": "/type/work"}, "subjects": ["Christmas stories", "Fiction"], "revision": 2}
+/type/work /works/OL11553026W 2 2010-01-20T21:08:52.705406 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:50:36.539076"}, "title": "Shuttle derived atmospheric density", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T21:08:52.705406"}, "latest_revision": 2, "key": "/works/OL11553026W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4864918A"}}], "type": {"key": "/type/work"}, "subjects": ["Aeroassist", "Space shuttle missions", "Atmospheric entry", "Atmospheric composition", "Atmospheric models", "Orbit transfer vehicles", "Trajectory analysis", "Meteorological parameters", "Annual variations", "Flight tests"], "revision": 2}
+/type/work /works/OL11553405W 2 2010-01-20T21:08:52.705406 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:50:36.539076"}, "title": "Robust stability of diamond families of polynomials with complex coefficients", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T21:08:52.705406"}, "latest_revision": 2, "key": "/works/OL11553405W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4865145A"}}], "type": {"key": "/type/work"}, "subjects": ["Polynomials"], "revision": 2}
+/type/work /works/OL11553554W 2 2010-01-20T21:08:52.705406 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:50:43.983216"}, "title": "The crippled children's program", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T21:08:52.705406"}, "latest_revision": 2, "key": "/works/OL11553554W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4865248A"}}], "type": {"key": "/type/work"}, "subjects": ["Children with disabilities"], "revision": 2}
+/type/work /works/OL11554014W 2 2010-01-20T21:14:26.631091 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:50:43.983216"}, "title": "A physical model for the acousto-ultrasonic method", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T21:14:26.631091"}, "latest_revision": 2, "key": "/works/OL11554014W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4865568A"}}], "type": {"key": "/type/work"}, "subjects": ["Composite materials", "Ultrasonic waves", "Industrial applications"], "revision": 2}
+/type/work /works/OL11554160W 2 2010-01-20T21:14:26.631091 {"title": "Die schottische Livius\u00fcbersetzung des John Bellenden (1533)", "created": {"type": "/type/datetime", "value": "2009-12-11T04:50:43.983216"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-20T21:14:26.631091"}, "latest_revision": 2, "key": "/works/OL11554160W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4865664A"}}], "subject_people": ["John Bellenden Archbp. of Moray", "Livy"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11554264W 2 2010-01-20T21:14:26.631091 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:50:43.983216"}, "title": "Veliki\u012d Okti\ufe20a\ufe21br\u02b9 v Latvii", "subject_places": ["Latvia"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T21:14:26.631091"}, "latest_revision": 2, "key": "/works/OL11554264W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4865719A"}}], "subject_times": ["1914-1918"], "type": {"key": "/type/work"}, "subjects": ["History"], "revision": 2}
+/type/work /works/OL11554830W 2 2022-12-10T15:13:54.243175 {"title": "It makes you think!", "key": "/works/OL11554830W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4866077A"}}], "type": {"key": "/type/work"}, "covers": [13032405], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T04:50:51.252697"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T15:13:54.243175"}}
+/type/work /works/OL11555081W 1 2009-12-11T04:50:51.252697 {"title": "Report on the review of the curriculum arrangements at Key Stage 4", "created": {"type": "/type/datetime", "value": "2009-12-11T04:50:51.252697"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:50:51.252697"}, "latest_revision": 1, "key": "/works/OL11555081W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4866248A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11555126W 1 2009-12-11T04:50:51.252697 {"title": "Maruoka Akira sh\u014dsetsu zensh\u016b", "created": {"type": "/type/datetime", "value": "2009-12-11T04:50:51.252697"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:50:51.252697"}, "latest_revision": 1, "key": "/works/OL11555126W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4866279A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11555235W 3 2010-12-03T14:15:17.285011 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:50:51.252697"}, "subject_places": ["Northern Ireland"], "subjects": ["Housing, Rural", "Rural Housing"], "latest_revision": 3, "key": "/works/OL11555235W", "title": "Ru ral household survey 1991", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4866344A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:15:17.285011"}, "revision": 3}
+/type/work /works/OL11555650W 2 2010-01-20T21:19:28.701109 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:50:58.360764"}, "title": "Proceedings, Advisory Committee on Standardization of C-P Test Methods and Specifications", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T21:19:28.701109"}, "latest_revision": 2, "key": "/works/OL11555650W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4866591A"}}], "type": {"key": "/type/work"}, "subjects": ["Congresses", "Nozzles", "Standards", "Rockets (Aeronautics)", "Carbon compounds"], "revision": 2}
+/type/work /works/OL11555739W 3 2010-12-04T02:56:33.113479 {"last_modified": {"type": "/type/datetime", "value": "2010-12-04T02:56:33.113479"}, "title": "Exercitia spiritualia sancti patris Ignatii, explicata", "created": {"type": "/type/datetime", "value": "2009-12-11T04:50:58.360764"}, "subjects": ["Jesuits", "Spiritual exercises", "Spiritual life", "Spiritual retreats"], "latest_revision": 3, "key": "/works/OL11555739W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4866634A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1155628W 2 2010-01-20T21:19:28.701109 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:36:16.070735"}, "title": "An historical journal of the expeditions, by sea and land, to the north of California", "subject_places": ["Monterey (Calif.)", "San Diego (Calif.)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T21:19:28.701109"}, "latest_revision": 2, "key": "/works/OL1155628W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL117217A"}}], "type": {"key": "/type/work"}, "subjects": ["History", "Portol\u00e1's Expedition, Calif., 1769-1770"], "revision": 2}
+/type/work /works/OL11556565W 1 2009-12-11T04:51:05.892332 {"title": "Mechanical engineering, forerunner of scientific thought", "created": {"type": "/type/datetime", "value": "2009-12-11T04:51:05.892332"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:51:05.892332"}, "latest_revision": 1, "key": "/works/OL11556565W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4867117A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11556570W 1 2009-12-11T04:51:05.892332 {"title": "Application for a drought order under the Water Resources Act 1991 in respect of the prohibition or limitation of uses of water for prescribed purposes in the West Cornwall area", "created": {"type": "/type/datetime", "value": "2009-12-11T04:51:05.892332"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:51:05.892332"}, "latest_revision": 1, "key": "/works/OL11556570W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4867120A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11556659W 2 2010-01-20T21:19:28.701109 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:51:05.892332"}, "title": "Summary of JAYGO mixing and FSM-1 application of castable inhibitor and liner", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T21:19:28.701109"}, "latest_revision": 2, "key": "/works/OL11556659W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4867176A"}}], "type": {"key": "/type/work"}, "subjects": ["Mixing", "Chemical inhibitors"], "revision": 2}
+/type/work /works/OL11556661W 2 2010-01-20T21:19:28.701109 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:51:05.892332"}, "title": "Early focus development effect, ultrasonic inspection of fixed housing metal-to-adhesive bondline", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T21:19:28.701109"}, "latest_revision": 2, "key": "/works/OL11556661W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4867178A"}}], "type": {"key": "/type/work"}, "subjects": ["Ultrasonic testing", "Ultrasonic equipment"], "revision": 2}
+/type/work /works/OL11556719W 1 2009-12-11T04:51:05.892332 {"title": "Corporate taxes, changing risk and wealth transfers between shareholders, lenders, and the taxman", "created": {"type": "/type/datetime", "value": "2009-12-11T04:51:05.892332"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:51:05.892332"}, "latest_revision": 1, "key": "/works/OL11556719W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4867223A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11557332W 2 2010-01-20T21:24:22.529149 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:51:05.892332"}, "title": "al-\u1e6c ar\u012bq il\u00e1 Q\u0101n\u0101 al-Jal\u012bl", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T21:24:22.529149"}, "latest_revision": 2, "key": "/works/OL11557332W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4867571A"}}], "type": {"key": "/type/work"}, "subjects": ["Arabic fiction"], "revision": 2}
+/type/work /works/OL11557423W 2 2010-01-20T21:24:22.529149 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:51:05.892332"}, "title": "Symbolic inversion of control relationships in model-based expert systems", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T21:24:22.529149"}, "latest_revision": 2, "key": "/works/OL11557423W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4867616A"}}], "type": {"key": "/type/work"}, "subjects": ["Expert systems (Computer science)", "Symbolic inversion"], "revision": 2}
+/type/work /works/OL11557433W 2 2010-01-20T21:24:22.529149 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:51:12.083623"}, "title": "Unterricht im Ackerbau und in der Viehzucht", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T21:24:22.529149"}, "latest_revision": 2, "key": "/works/OL11557433W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4867618A"}}], "type": {"key": "/type/work"}, "subjects": ["Study and teaching", "Agriculture", "Cattle"], "revision": 2}
+/type/work /works/OL115576W 2 2010-01-20T21:24:22.529149 {"title": "The American electoral college", "created": {"type": "/type/datetime", "value": "2009-10-18T05:06:07.461934"}, "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T21:24:22.529149"}, "latest_revision": 2, "key": "/works/OL115576W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL19051A"}}], "type": {"key": "/type/work"}, "subjects": ["Presidents", "Election"], "revision": 2}
+/type/work /works/OL11557896W 2 2010-01-20T21:24:22.529149 {"title": "Hong lou meng tan yuan wai bian", "created": {"type": "/type/datetime", "value": "2009-12-11T04:51:12.083623"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-20T21:24:22.529149"}, "latest_revision": 2, "key": "/works/OL11557896W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4867948A"}}], "subject_people": ["Xueqin Cao (ca. 1717-1763)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11558348W 1 2009-12-11T04:51:12.083623 {"title": "Ying chun ji", "created": {"type": "/type/datetime", "value": "2009-12-11T04:51:12.083623"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:51:12.083623"}, "latest_revision": 1, "key": "/works/OL11558348W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4868126A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11558967W 2 2010-01-20T21:29:21.136107 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:51:20.108427"}, "title": "Spoken Lao", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T21:29:21.136107"}, "latest_revision": 2, "key": "/works/OL11558967W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4868546A"}}], "type": {"key": "/type/work"}, "subjects": ["Lao language", "Spoken Lao", "Spoken Laos"], "revision": 2}
+/type/work /works/OL11559054W 2 2010-01-20T21:29:21.136107 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:51:20.108427"}, "title": "Abstracts", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T21:29:21.136107"}, "latest_revision": 2, "key": "/works/OL11559054W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4868608A"}}], "type": {"key": "/type/work"}, "subjects": ["Congresses", "Genetics", "Shellfish", "Fish-culture", "Fishes", "Shellfish culture"], "revision": 2}
+/type/work /works/OL11559453W 2 2010-01-20T21:34:19.497274 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:51:27.359765"}, "title": "A review of the enforcement of equal pay for work of equal value legislation in Canada", "subject_places": ["Canada"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T21:34:19.497274"}, "latest_revision": 2, "key": "/works/OL11559453W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4868903A"}}], "type": {"key": "/type/work"}, "subjects": ["Law and legislation", "Women", "Sex discrimination in employment", "Equal pay for equal work", "Employment", "Wages"], "revision": 2}
+/type/work /works/OL1155948W 3 2010-07-20T14:41:43.953692 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:36:16.070735"}, "title": "The place of a university in the modern community", "last_modified": {"type": "/type/datetime", "value": "2010-07-20T14:41:43.953692"}, "latest_revision": 3, "key": "/works/OL1155948W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL117239A"}}], "type": {"key": "/type/work"}, "subjects": ["Universities and colleges", "Education, Higher", "Higher Education"], "revision": 3}
+/type/work /works/OL11559587W 2 2010-01-20T21:34:19.497274 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:51:27.359765"}, "title": "Legal aspects of a new international economic order", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T21:34:19.497274"}, "latest_revision": 2, "key": "/works/OL11559587W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4868994A"}}], "type": {"key": "/type/work"}, "subjects": ["International economic relations"], "revision": 2}
+/type/work /works/OL11559596W 2 2010-01-20T21:34:19.497274 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:51:27.359765"}, "title": "Coolant side heat transfer with rotation", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T21:34:19.497274"}, "latest_revision": 2, "key": "/works/OL11559596W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4869001A"}}], "type": {"key": "/type/work"}, "subjects": ["Transmission", "Heat", "Fluid dynamics"], "revision": 2}
+/type/work /works/OL11559607W 2 2010-01-20T21:34:19.497274 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:51:27.359765"}, "title": "Organiz\u00e1cia v\u00fdskumno-v\u00fdvojovej z\u00e1kladne na Slovensku, 1945-1980", "subject_places": ["Czechoslovakia", "Slovak Socialist Republic"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T21:34:19.497274"}, "latest_revision": 2, "key": "/works/OL11559607W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4869006A"}}], "type": {"key": "/type/work"}, "subjects": ["Research", "History"], "revision": 2}
+/type/work /works/OL11559879W 2 2010-01-20T21:34:19.497274 {"title": "Aristotle", "created": {"type": "/type/datetime", "value": "2009-11-11T20:12:23.666242"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-20T21:34:19.497274"}, "latest_revision": 2, "key": "/works/OL11559879W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4392410A"}}], "subject_people": ["Aristotle (384-322 B.C)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11560076W 3 2012-05-17T18:34:03.312115 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:51:27.359765"}, "subject_places": ["United States"], "subjects": ["States", "Statistics", "Periodicals", "Vocational rehabilitation"], "latest_revision": 3, "key": "/works/OL11560076W", "title": "Annual caseload statistics of the state rehabilitation agencies", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2169483A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-17T18:34:03.312115"}, "revision": 3}
+/type/work /works/OL11560219W 2 2010-01-20T21:34:19.497274 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:51:27.359765"}, "title": "Soil survey, Clermont County, Ohio", "subject_places": ["Ohio", "Clermont County"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T21:34:19.497274"}, "latest_revision": 2, "key": "/works/OL11560219W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4869407A"}}], "type": {"key": "/type/work"}, "subjects": ["Soil surveys", "Soils", "Maps"], "revision": 2}
+/type/work /works/OL11560244W 2 2010-01-20T21:34:19.497274 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:51:27.359765"}, "title": "Pollution and our environment", "subject_places": ["Canada"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T21:34:19.497274"}, "latest_revision": 2, "key": "/works/OL11560244W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4869421A"}}], "type": {"key": "/type/work"}, "subjects": ["Congresses", "Pollution"], "revision": 2}
+/type/work /works/OL11560272W 2 2010-01-20T21:34:19.497274 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:51:27.359765"}, "title": "The story of music and musicians", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T21:34:19.497274"}, "latest_revision": 2, "key": "/works/OL11560272W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4869441A"}}], "type": {"key": "/type/work"}, "subjects": ["History and criticism", "Music"], "revision": 2}
+/type/work /works/OL1156033W 1 2009-12-09T20:36:22.950518 {"title": "Philharmonic-symphony faces", "created": {"type": "/type/datetime", "value": "2009-12-09T20:36:22.950518"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T20:36:22.950518"}, "latest_revision": 1, "key": "/works/OL1156033W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL117252A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11560910W 2 2010-01-20T21:39:20.612916 {"title": "Sam\u012br Gh\u0101nim", "created": {"type": "/type/datetime", "value": "2009-12-11T04:51:34.680071"}, "subject_places": ["Egypt"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T21:39:20.612916"}, "latest_revision": 2, "key": "/works/OL11560910W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4869856A"}}], "subject_people": ["Sam\u012br Gh\u0101nim"], "type": {"key": "/type/work"}, "subjects": ["Biography", "Motion pictures", "Comedy films", "Motion picture actors and actresses", "Comedians", "History"], "revision": 2}
+/type/work /works/OL11560919W 2 2020-12-08T09:36:24.986821 {"title": "Zubaydah \u02bbar\u016bs al-ba\u1e25r al-azraq", "key": "/works/OL11560919W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4869856A"}}], "type": {"key": "/type/work"}, "description": {"type": "/type/text", "value": "Novel."}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T04:51:34.680071"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-08T09:36:24.986821"}}
+/type/work /works/OL11560978W 4 2020-08-04T07:52:46.669065 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:51:34.680071"}, "subjects": ["Hydraulic engineering"], "latest_revision": 4, "key": "/works/OL11560978W", "title": "Grundwasserabsenkung bei Fundierungsarbeiten", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4869893A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-08-04T07:52:46.669065"}, "covers": [9395951], "revision": 4}
+/type/work /works/OL11561108W 2 2010-01-20T21:39:20.612916 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:51:34.680071"}, "title": "Open cycle coal burning MHD power generation", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T21:39:20.612916"}, "latest_revision": 2, "key": "/works/OL11561108W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4869982A"}}], "type": {"key": "/type/work"}, "subjects": ["Magnetohydrodynamic generators"], "revision": 2}
+/type/work /works/OL1156112W 3 2010-07-20T14:42:10.676738 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:36:22.950518"}, "title": "The gospel of grace", "last_modified": {"type": "/type/datetime", "value": "2010-07-20T14:42:10.676738"}, "latest_revision": 3, "key": "/works/OL1156112W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL117256A"}}], "type": {"key": "/type/work"}, "subjects": ["Congregational churches", "Sermons", "Sermons, English", "English Sermons"], "revision": 3}
+/type/work /works/OL11561148W 2 2010-01-20T21:39:20.612916 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:51:34.680071"}, "title": "La r\u00e9volution allemande de 1918", "subject_places": ["Germany"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T21:39:20.612916"}, "latest_revision": 2, "key": "/works/OL11561148W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4870011A"}}], "subject_times": ["1918-1945"], "type": {"key": "/type/work"}, "subjects": ["History"], "revision": 2}
+/type/work /works/OL11561191W 2 2010-01-20T21:39:20.612916 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:51:34.680071"}, "title": "Papers presented to the NASA MEVTV Program Working Group Meeting", "subject_places": ["Mars (Planet)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T21:39:20.612916"}, "latest_revision": 2, "key": "/works/OL11561191W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4870041A"}}], "type": {"key": "/type/work"}, "subjects": ["Congresses", "Volcanism", "Geology"], "revision": 2}
+/type/work /works/OL11561301W 2 2010-01-20T21:39:20.612916 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:51:34.680071"}, "title": "Charts of compressibility factors and charts showing quantities delivered by commercial cylinders for hydrogen, nitrogen, and oxygen", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T21:39:20.612916"}, "latest_revision": 2, "key": "/works/OL11561301W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4870125A"}}], "type": {"key": "/type/work"}, "subjects": ["Hydrogen", "Nitrogen", "Oxygen"], "revision": 2}
+/type/work /works/OL11561373W 2 2020-12-08T22:39:01.854355 {"title": "Anshlag", "key": "/works/OL11561373W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4870168A"}}], "type": {"key": "/type/work"}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T04:51:34.680071"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-08T22:39:01.854355"}}
+/type/work /works/OL11561502W 3 2010-12-03T14:17:02.972511 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:51:41.945369"}, "subject_places": ["England"], "subjects": ["Church of England", "Ecclesiastical Visitations", "Pastoral letters and charges", "Visitations, Ecclesiastical"], "latest_revision": 3, "key": "/works/OL11561502W", "title": "Ar[c?]ticles to be inquired of, in the visitation of the most reverend father in God, Richard, by the providence of God, Lord Arch-bishop of Yorke, primate of England, and metropolitane", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4870270A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:17:02.972511"}, "revision": 3}
+/type/work /works/OL11561773W 3 2012-05-19T17:23:36.400804 {"last_modified": {"type": "/type/datetime", "value": "2012-05-19T17:23:36.400804"}, "title": "Report to the President", "created": {"type": "/type/datetime", "value": "2009-12-11T04:51:41.945369"}, "subjects": ["Holocaust, Jewish (1939-1945)"], "latest_revision": 3, "key": "/works/OL11561773W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1700584A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11562054W 2 2010-01-20T21:44:29.900589 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:51:41.945369"}, "title": "The orders and directions, of the right honourable the Lord Mayor and Court of Aldermen, to be diligently observed and kept by the citizens of London, during the time of the present visitation of the plague", "subject_places": ["England"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T21:44:29.900589"}, "latest_revision": 2, "key": "/works/OL11562054W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4870626A"}}], "type": {"key": "/type/work"}, "subjects": ["Early works to 1800", "Medical laws and legislation", "Medicine", "Plague", "Formulae, receipts, prescriptions", "History"], "revision": 2}
+/type/work /works/OL11562083W 2 2010-01-20T21:44:29.900589 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:51:41.945369"}, "title": "The royal tallage of three escheated honors, with introductory notes concerning the farm of those honors", "subject_places": ["England"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T21:44:29.900589"}, "latest_revision": 2, "key": "/works/OL11562083W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4870640A"}}], "type": {"key": "/type/work"}, "subjects": ["History", "Taxation", "Nationalism", "Feudalism"], "revision": 2}
+/type/work /works/OL11562372W 3 2010-12-03T14:17:27.953215 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:17:27.953215"}, "title": "The revelation of Saint John reuealed", "created": {"type": "/type/datetime", "value": "2009-12-11T04:51:41.945369"}, "subjects": ["Bible", "Commentaries", "Criticism, interpretation"], "latest_revision": 3, "key": "/works/OL11562372W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4870839A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11562926W 2 2010-01-20T21:49:08.847870 {"title": "A declaration made by my lord prince of Conde, for to shew and declare the causes, that haue co[n]strained him to take vpon him the defence of the Kinges authoritie of the gouernement of the Queene, and of the quietness of this realme, with the protestation therevpon requisite", "created": {"type": "/type/datetime", "value": "2009-12-11T04:51:49.082136"}, "subject_places": ["France"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T21:49:08.847870"}, "latest_revision": 2, "key": "/works/OL11562926W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4871191A"}}], "subject_people": ["Louis Cond\u00e9 prince de (1530-1569)"], "subject_times": ["Wars of the Huguenots, 1562-1598"], "type": {"key": "/type/work"}, "subjects": ["Early works to 1800", "History"], "revision": 2}
+/type/work /works/OL11563424W 2 2010-01-20T21:49:08.847870 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:51:49.082136"}, "title": "Economics in modern Sweden", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T21:49:08.847870"}, "latest_revision": 2, "key": "/works/OL11563424W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4871521A"}}], "type": {"key": "/type/work"}, "subjects": ["Economics", "Bibliography", "History"], "revision": 2}
+/type/work /works/OL11563651W 2 2010-01-20T21:49:08.847870 {"title": "An elegy on the famous Thomas Thin, Esq., who was barbarously murthered", "created": {"type": "/type/datetime", "value": "2009-12-11T04:51:56.317909"}, "subject_places": ["Great Britain"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T21:49:08.847870"}, "latest_revision": 2, "key": "/works/OL11563651W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4871680A"}}], "subject_people": ["Thomas Thynne (1648-1682)"], "type": {"key": "/type/work"}, "subjects": ["Murder"], "revision": 2}
+/type/work /works/OL11564061W 3 2010-12-03T14:18:53.403033 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:18:53.403033"}, "title": "Comparison of GPS surveys with historical triangulation surveys in the southern California borderland", "created": {"type": "/type/datetime", "value": "2009-12-11T04:51:56.317909"}, "subjects": ["California", "Geodetic surveys", "Global Positioning System", "Triangulation"], "latest_revision": 3, "key": "/works/OL11564061W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4871958A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11564241W 4 2021-03-03T03:54:38.701609 {"title": "The revelation of revelations", "subjects": ["Mysticism", "Criticism, interpretation", "Bible"], "key": "/works/OL11564241W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4872078A"}}], "type": {"key": "/type/work"}, "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T04:51:56.317909"}, "last_modified": {"type": "/type/datetime", "value": "2021-03-03T03:54:38.701609"}}
+/type/work /works/OL11564428W 2 2010-12-03T14:18:53.403033 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:18:53.403033"}, "title": "An investigation of fluid flow during induction stroke of a water analog model of an ice engine using an innovative optical velocimetry concept-- LIPA", "created": {"type": "/type/datetime", "value": "2009-12-11T04:51:56.317909"}, "subjects": ["Analog simulation", "Engine design", "Fluid dynamics", "Fluid flow", "Internal combustion engines", "Nonintrusive measurement", "Optical measurement", "Values", "Velocity measurement", "Water"], "latest_revision": 2, "key": "/works/OL11564428W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4872184A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11564596W 2 2010-01-20T21:54:36.548073 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:52:03.486624"}, "title": "Low-speed flowfield characterization by infrared measurements of surface temperatures", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T21:54:36.548073"}, "latest_revision": 2, "key": "/works/OL11564596W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4872312A"}}], "type": {"key": "/type/work"}, "subjects": ["Temperature distribution", "Surface temperature", "Flow characteristics", "Infrared imagery", "Laminar flow", "Flow distribution"], "revision": 2}
+/type/work /works/OL11565311W 2 2010-01-20T21:59:16.657687 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:52:03.486624"}, "title": "A testimony to the Lord's power and blessed appearance in and amongst children", "subject_places": ["England"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T21:59:16.657687"}, "latest_revision": 2, "key": "/works/OL11565311W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4872760A"}}], "type": {"key": "/type/work"}, "subjects": ["Early works to 1800", "Quakers", "Witness bearing (Christianity)"], "revision": 2}
+/type/work /works/OL11565333W 3 2010-12-03T14:17:53.389605 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:52:03.486624"}, "subjects": ["Bible", "Early works to 1800", "Examinations, questions", "Examinations, questions, etc", "Prayers"], "subject_people": ["Elizabeth Robinson"], "key": "/works/OL11565333W", "title": "A New-Year-gift, or, The youth's instructor through the wilderness of this world, to the mansions of eternal glory", "latest_revision": 3, "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4872775A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:17:53.389605"}, "revision": 3}
+/type/work /works/OL11565345W 2 2010-01-20T21:59:16.657687 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:52:03.486624"}, "title": "Grammaire fran\u00e7oise rapport\u00e9e au langage du temps", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T21:59:16.657687"}, "latest_revision": 2, "key": "/works/OL11565345W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4872781A"}}], "subject_times": ["1500-1800"], "type": {"key": "/type/work"}, "subjects": ["French language", "Grammar"], "revision": 2}
+/type/work /works/OL11565615W 2 2010-01-20T21:59:16.657687 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:52:11.434064"}, "title": "Interrelationship of wheat cultivar mixtures, stripe rust and yield", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T21:59:16.657687"}, "latest_revision": 2, "key": "/works/OL11565615W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4872949A"}}], "type": {"key": "/type/work"}, "subjects": ["Wheat", "Stripe rust", "Yields", "Varieties", "Diseases and pests"], "revision": 2}
+/type/work /works/OL11565673W 2 2010-01-20T21:59:16.657687 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:52:11.434064"}, "title": "New alkali-metal and alkaline-earth metal borates", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T21:59:16.657687"}, "latest_revision": 2, "key": "/works/OL11565673W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4873000A"}}], "type": {"key": "/type/work"}, "subjects": ["Borates", "Optical properties", "Structure", "Synthesis"], "revision": 2}
+/type/work /works/OL11566099W 2 2010-01-20T22:04:22.501317 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:52:11.434064"}, "title": "A catalogue of valuable books, viz. divinity, history, physick, poetry, mathematicks, travels, voyages, romances, &c. Which will be sold by auction (or who bids most) at Guild-hall Coffee-House, by Guild-Hall, on Wednesday the eighteenth day of this instant October, 1693. Beginning at four a clock in the afternoon, exactly, and continue daily untill all be sold. By Joseph Shelton. Also a choice collection of pamphlits will be sold in bundles. Catalogues are distributed gratis, at Mr. Collins at Temple-Bar, Mr. Chandlers at the Peacock in the Poultry; booksellars, at Mr. Blackets Coffee-House in Spittle-Fields; and at the place of sale. Also will be sold at the end of this catalogue; an appendix of choice and valuable books in folio's, quarto's, and octavo's, the appendix to be had at the place of sale", "subject_places": ["England"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T22:04:22.501317"}, "latest_revision": 2, "key": "/works/OL11566099W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4873293A"}}], "type": {"key": "/type/work"}, "subjects": ["Early works to 1800", "Book auctions", "Catalogs, Booksellers'"], "revision": 2}
+/type/work /works/OL1156613W 3 2010-04-28T07:21:15.758500 {"title": "La cultura del renacimiento", "created": {"type": "/type/datetime", "value": "2009-12-09T20:36:22.950518"}, "covers": [3329149], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:21:15.758500"}, "latest_revision": 3, "key": "/works/OL1156613W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL117298A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1156668W 1 2009-12-09T20:36:22.950518 {"title": "Our glorious future", "created": {"type": "/type/datetime", "value": "2009-12-09T20:36:22.950518"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T20:36:22.950518"}, "latest_revision": 1, "key": "/works/OL1156668W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL117303A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11566911W 1 2009-12-11T04:52:18.658966 {"title": "Cartulaire de Notre-Dame d'Etampes", "created": {"type": "/type/datetime", "value": "2009-12-11T04:52:18.658966"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:52:18.658966"}, "latest_revision": 1, "key": "/works/OL11566911W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4873822A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11567176W 2 2010-01-20T22:09:12.748040 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:52:18.658966"}, "title": "Size and deformation limits to maintain constraint in KIc and Jc testing of bend specimens", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T22:09:12.748040"}, "latest_revision": 2, "key": "/works/OL11567176W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4873982A"}}], "type": {"key": "/type/work"}, "subjects": ["Testing", "Fracture mechanics", "Metals"], "revision": 2}
+/type/work /works/OL11567278W 3 2010-12-03T18:10:34.052618 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T18:10:34.052618"}, "title": "Compendium theologiae christiane", "created": {"type": "/type/datetime", "value": "2009-12-11T04:52:18.658966"}, "subjects": ["Doctrinal Theology", "Early works to 1800", "Theology, Doctrinal"], "latest_revision": 3, "key": "/works/OL11567278W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4874069A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11567304W 1 2009-12-11T04:52:18.658966 {"title": "La question catalane", "created": {"type": "/type/datetime", "value": "2009-12-11T04:52:18.658966"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:52:18.658966"}, "latest_revision": 1, "key": "/works/OL11567304W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4874086A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11567309W 3 2010-12-03T14:20:42.736177 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:20:42.736177"}, "title": "The countrymans friend, and no circumventing mountebanck", "created": {"type": "/type/datetime", "value": "2009-12-11T04:52:18.658966"}, "subjects": ["Agriculture", "Early works to 1800", "Formulae, receipts, prescriptions", "Handbooks, manuals", "Handbooks, manuals, etc", "Medicine", "Medicine, Popular", "Popular Medicine"], "latest_revision": 3, "key": "/works/OL11567309W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4874091A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11567522W 2 2010-01-20T22:09:12.748040 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:52:26.044188"}, "title": "Albion's elegie: or, A poem, upon the high and mighty Prince James Duke of Albany and York", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T22:09:12.748040"}, "latest_revision": 2, "key": "/works/OL11567522W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4874232A"}}], "subject_times": ["Early modern, 1500-1700"], "type": {"key": "/type/work"}, "subjects": ["English poetry"], "revision": 2}
+/type/work /works/OL1156765W 2 2010-01-20T22:09:12.748040 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:36:22.950518"}, "title": "John Speirs' roping colors", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T22:09:12.748040"}, "latest_revision": 2, "key": "/works/OL1156765W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL117306A"}}], "type": {"key": "/type/work"}, "subjects": ["Toy and movable books", "Color", "Stories in rhyme", "Specimens", "Fiction"], "revision": 2}
+/type/work /works/OL11567865W 3 2010-12-03T14:19:18.713351 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:19:18.713351"}, "title": "The case of the afflicted clergy", "created": {"type": "/type/datetime", "value": "2009-12-11T04:52:26.044188"}, "subject_places": ["Scotland"], "subjects": ["Church history", "Clergy", "Controversial literature", "Early works to 1800", "Episcopal Church in Scotland"], "subject_people": ["John Sage (1652-1711)"], "key": "/works/OL11567865W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4874478A"}}], "latest_revision": 3, "subject_times": ["17th century"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11567886W 2 2010-01-20T22:09:12.748040 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:52:26.044188"}, "title": "Protein expression in Arabidopsis Thaliana after chronic clinorotation", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T22:09:12.748040"}, "latest_revision": 2, "key": "/works/OL11567886W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4874489A"}}], "type": {"key": "/type/work"}, "subjects": ["Vegetation growth", "Plant stress", "Gravitational physiology", "Plants (Botany)", "Proteins", "Gravitational effects", "Rotating environments"], "revision": 2}
+/type/work /works/OL11567938W 3 2019-07-30T21:26:24.270078 {"covers": [3190575], "last_modified": {"type": "/type/datetime", "value": "2019-07-30T21:26:24.270078"}, "latest_revision": 3, "key": "/works/OL11567938W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4874520A"}}, {"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL3173344A"}}, {"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL220920A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T04:52:26.044188"}, "title": "Jesus von Nazaret", "subjects": ["Biography"], "subject_people": ["Jesus Christ"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11568411W 2 2010-01-20T22:14:10.415706 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:52:26.044188"}, "title": "My\u015bl teatralna M\u0142odej Polski", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T22:14:10.415706"}, "latest_revision": 2, "key": "/works/OL11568411W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4874827A"}}], "type": {"key": "/type/work"}, "subjects": ["Poland", "Theater"], "revision": 2}
+/type/work /works/OL11568434W 2 2010-01-20T22:14:10.415706 {"title": "A treatise of the Holy Trinity in unity", "created": {"type": "/type/datetime", "value": "2009-12-11T04:52:26.044188"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-20T22:14:10.415706"}, "latest_revision": 2, "key": "/works/OL11568434W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4874842A"}}], "subject_people": ["John Biddle (1615-1662)"], "type": {"key": "/type/work"}, "subjects": ["Controversial literature", "Early works to 1800", "Socinianism"], "revision": 2}
+/type/work /works/OL11568524W 3 2010-12-03T14:19:18.713351 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:19:18.713351"}, "latest_revision": 3, "key": "/works/OL11568524W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4874901A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T04:52:38.125217"}, "title": "Opalennai\ufe20a\ufe21 iu\ufe20n\ufe21ost\u02b9", "subject_places": ["Soviet Union"], "subjects": ["Female Participation", "Participation, Female", "Personal narratives, Russian", "Russian Personal narratives", "World War, 1939-1945"], "subject_people": ["Zoi\ufe20a\ufe21 Matveevna Smirnova-Medvedeva"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11568731W 2 2010-01-20T22:14:10.415706 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:52:38.125217"}, "title": "Seward Peninsula Arctic grayling study, 1990", "subject_places": ["Alaska", "Seward Peninsula"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T22:14:10.415706"}, "latest_revision": 2, "key": "/works/OL11568731W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4875009A"}}], "type": {"key": "/type/work"}, "subjects": ["Fisheries", "Statistics", "Arctic grayling"], "revision": 2}
+/type/work /works/OL11568766W 2 2010-01-20T22:14:10.415706 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:52:38.125217"}, "title": "Development of microchannel plate x-ray optics", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T22:14:10.415706"}, "latest_revision": 2, "key": "/works/OL11568766W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4875027A"}}], "type": {"key": "/type/work"}, "subjects": ["Silicon", "Etching", "Micromachining", "X ray optics", "Microchannel plates", "Lenses"], "revision": 2}
+/type/work /works/OL115692W 3 2010-09-15T21:59:45.091687 {"subtitle": "ta\u0323\u0302p truye\u0323\u0302n", "title": "Ty\u0301", "created": {"type": "/type/datetime", "value": "2009-10-18T05:06:07.461934"}, "last_modified": {"type": "/type/datetime", "value": "2010-09-15T21:59:45.091687"}, "latest_revision": 3, "key": "/works/OL115692W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2623681A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11569335W 3 2017-12-20T08:21:12.341717 {"last_modified": {"type": "/type/datetime", "value": "2017-12-20T08:21:12.341717"}, "title": "Work of the Financial Committee", "created": {"type": "/type/datetime", "value": "2009-12-11T04:52:38.125217"}, "subjects": ["League of Nations. Financial Committee"], "latest_revision": 3, "key": "/works/OL11569335W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL160381A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11569699W 2 2010-01-20T22:18:46.168553 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:52:46.206432"}, "title": "Formaldehyde release from particleboard and other wood based panels", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T22:18:46.168553"}, "latest_revision": 2, "key": "/works/OL11569699W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4875709A"}}], "type": {"key": "/type/work"}, "subjects": ["Wood products", "Toxicology", "Urea-formaldehyde resins", "Formaldehyde release", "Formaldehyde"], "revision": 2}
+/type/work /works/OL11570111W 2 2010-01-20T22:18:46.168553 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:52:46.206432"}, "title": "Soil survey of the Dixon area, California", "subject_places": ["California", "Yolo County", "Solano County"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T22:18:46.168553"}, "latest_revision": 2, "key": "/works/OL11570111W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4876019A"}}], "type": {"key": "/type/work"}, "subjects": ["Soil surveys", "Soils", "Maps"], "revision": 2}
+/type/work /works/OL11570198W 2 2010-01-20T22:23:27.063606 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:52:46.206432"}, "title": "\u1e6cile \u1e33ar\u1e33a\u02bb-\u1e33ar\u1e33a\u02bb be-\u02bbIra\u1e33", "subject_places": ["Israel", "Iraq"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T22:23:27.063606"}, "latest_revision": 2, "key": "/works/OL11570198W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4876098A"}}], "type": {"key": "/type/work"}, "subjects": ["Surface-to-surface missiles", "Air defenses", "Aerial operations", "Military policy", "Arab-Israeli conflict"], "revision": 2}
+/type/work /works/OL11570352W 2 2010-12-03T14:19:18.713351 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:19:18.713351"}, "title": "Low-speed longitudinal aerodynamic characteristics through poststall for twenty-one novel planform shapes", "created": {"type": "/type/datetime", "value": "2009-12-11T04:52:46.206432"}, "subjects": ["Aerodynamic characteristics", "Angle of attack", "Flow visualization", "Forebodies", "Highly maneuverable aircraft", "Lift", "Low aspect ratio wings", "Low speed", "Pitching moments", "Swept wings", "Wind tunnel tests", "Wing planforms"], "latest_revision": 2, "key": "/works/OL11570352W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4876214A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11570453W 2 2010-01-20T22:23:27.063606 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:52:54.757732"}, "title": "Forests and orchards in Nebraska", "subject_places": ["Nebraska"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T22:23:27.063606"}, "latest_revision": 2, "key": "/works/OL11570453W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4876294A"}}], "type": {"key": "/type/work"}, "subjects": ["Arboriculture", "Fruit-culture"], "revision": 2}
+/type/work /works/OL11570563W 3 2021-12-20T03:26:54.209721 {"title": "The fundamental constitutions of Carolina", "subject_places": ["North Carolina"], "key": "/works/OL11570563W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4876386A"}}], "subject_times": ["Colonial period, ca. 1600-1775"], "type": {"key": "/type/work"}, "subjects": ["Early works to 1800", "Constitution", "History", "Constitutions"], "covers": [12453351], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T04:52:54.757732"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-20T03:26:54.209721"}}
+/type/work /works/OL11570820W 2 2010-01-20T22:23:27.063606 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:52:54.757732"}, "title": "Samische Steingerate", "subject_places": ["Samos Island (Greece)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T22:23:27.063606"}, "latest_revision": 2, "key": "/works/OL11570820W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4876559A"}}], "type": {"key": "/type/work"}, "subjects": ["Antiquities"], "revision": 2}
+/type/work /works/OL11571032W 1 2009-12-11T04:52:54.757732 {"title": "The spectroscopy of matrix isolated Mn r and Mn r", "created": {"type": "/type/datetime", "value": "2009-12-11T04:52:54.757732"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:52:54.757732"}, "latest_revision": 1, "key": "/works/OL11571032W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4876719A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1157112W 5 2020-08-13T14:03:20.580171 {"covers": [5564081], "last_modified": {"type": "/type/datetime", "value": "2020-08-13T14:03:20.580171"}, "latest_revision": 5, "key": "/works/OL1157112W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL117326A"}}], "created": {"type": "/type/datetime", "value": "2009-12-09T20:36:30.924813"}, "title": "The glory of the Shia world", "subject_places": ["Iran"], "subjects": ["Social life and customs", "Description and travel"], "type": {"key": "/type/work"}, "revision": 5}
+/type/work /works/OL11571240W 2 2010-01-20T22:28:29.262374 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:52:54.757732"}, "title": "S\u014d\u00e4 ma thanatou, the body of death: or, a discourse concerning the saints failings & infirmities", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T22:28:29.262374"}, "latest_revision": 2, "key": "/works/OL11571240W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4876883A"}}], "type": {"key": "/type/work"}, "subjects": ["Early works to 1800", "Saints", "Sin"], "revision": 2}
+/type/work /works/OL11571299W 2 2010-01-20T22:28:29.262374 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:52:54.757732"}, "title": "The faithful description of pure love in perfect peace", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T22:28:29.262374"}, "latest_revision": 2, "key": "/works/OL11571299W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4876932A"}}], "type": {"key": "/type/work"}, "subjects": ["Early works to 1800", "God", "Love", "Christian literature", "Worship and love"], "revision": 2}
+/type/work /works/OL11571551W 1 2009-12-11T04:53:02.445146 {"title": "How to prepare a business plan for manufacturing businesses", "created": {"type": "/type/datetime", "value": "2009-12-11T04:53:02.445146"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:53:02.445146"}, "latest_revision": 1, "key": "/works/OL11571551W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4877122A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11571618W 2 2010-01-20T22:28:29.262374 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:53:02.445146"}, "title": "Poles in Manitoba", "subject_places": ["Manitoba"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T22:28:29.262374"}, "latest_revision": 2, "key": "/works/OL11571618W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4877166A"}}], "type": {"key": "/type/work"}, "subjects": ["Poles"], "revision": 2}
+/type/work /works/OL11571685W 2 2010-01-20T22:28:29.262374 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:53:02.445146"}, "title": "The socialist tragedy", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T22:28:29.262374"}, "latest_revision": 2, "key": "/works/OL11571685W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4877211A"}}], "type": {"key": "/type/work"}, "subjects": ["Socialism", "History"], "revision": 2}
+/type/work /works/OL11572026W 1 2009-12-11T04:53:02.445146 {"title": "Some considerations humbly offer'd to the Honourable the House of Commons, by the tallow-chandlers in and about the cities of London and Westminster", "created": {"type": "/type/datetime", "value": "2009-12-11T04:53:02.445146"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:53:02.445146"}, "latest_revision": 1, "key": "/works/OL11572026W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4877461A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11572093W 5 2022-12-28T17:59:20.975969 {"key": "/works/OL11572093W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4877513A"}}], "title": "Kansas and the country beyond", "subject_places": ["Kansas"], "subjects": ["Description and travel", "Eastern Division Union Pacific Railroad", "Land settlement", "Travel", "Union Pacific Railroad Company", "Eastern Division Union Pacific Railway"], "subject_people": ["Josiah Copley (1803-1884)"], "type": {"key": "/type/work"}, "covers": [11887833], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2009-12-11T04:53:02.445146"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-28T17:59:20.975969"}}
+/type/work /works/OL11572136W 2 2010-01-20T22:28:29.262374 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:53:02.445146"}, "title": "Napol\u00e9on et les alli\u00e9s sur le Rhin", "subject_places": ["Europe", "France"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T22:28:29.262374"}, "latest_revision": 2, "key": "/works/OL11572136W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4877555A"}}], "subject_times": ["1789-1900", "Consulate and First Empire, 1799-1815"], "type": {"key": "/type/work"}, "subjects": ["History"], "revision": 2}
+/type/work /works/OL11573049W 3 2010-12-03T14:22:16.268658 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:53:10.264823"}, "subject_places": ["Kuwait"], "subjects": ["Arabic Political satire", "Arabic wit and humor", "Political satire, Arabic"], "latest_revision": 3, "key": "/works/OL11573049W", "title": "Ab\u016b \u1e6cal\u0101l-- wa-All\u0101h bi-al-khayr", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4878177A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:22:16.268658"}, "revision": 3}
+/type/work /works/OL11573152W 3 2010-12-03T14:22:16.268658 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:53:10.264823"}, "subject_places": ["England"], "subjects": ["Early works to 1800", "England and Wales", "England and Wales. Court of Exchequer. Clerk of the Market", "Weights and measures"], "latest_revision": 3, "key": "/works/OL11573152W", "title": "Clericus mercati, &c", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4878266A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:22:16.268658"}, "revision": 3}
+/type/work /works/OL11573549W 2 2010-01-20T22:38:26.659776 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:53:17.986929"}, "title": "Le pouvoir ex\u00e9cutif en Suisse", "subject_places": ["Switzerland"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T22:38:26.659776"}, "latest_revision": 2, "key": "/works/OL11573549W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4878534A"}}], "type": {"key": "/type/work"}, "subjects": ["Executive power"], "revision": 2}
+/type/work /works/OL11573704W 1 2009-12-11T04:53:17.986929 {"title": "Development of photovoltaic-diesel hybrid system design incorporating advanced control algorithm", "created": {"type": "/type/datetime", "value": "2009-12-11T04:53:17.986929"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:53:17.986929"}, "latest_revision": 1, "key": "/works/OL11573704W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4878641A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11573838W 2 2010-01-20T22:38:26.659776 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:53:17.986929"}, "title": "Representation and petition of the representatives elected by the freemen of the territory of Louisiana", "subject_places": ["Missouri"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T22:38:26.659776"}, "latest_revision": 2, "key": "/works/OL11573838W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4878738A"}}], "type": {"key": "/type/work"}, "subjects": ["Politics and government"], "revision": 2}
+/type/work /works/OL11574134W 2 2010-01-20T22:38:26.659776 {"title": "B.H. Newdigate, scholar-printer, 1869-1944", "created": {"type": "/type/datetime", "value": "2009-12-11T04:53:17.986929"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-20T22:38:26.659776"}, "latest_revision": 2, "key": "/works/OL11574134W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4878956A"}}], "subject_people": ["B. H. Newdigate (1869-1944)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11574466W 2 2010-01-20T22:38:26.659776 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:53:27.310228"}, "title": "The causes and prevention of metal fume fever", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T22:38:26.659776"}, "latest_revision": 2, "key": "/works/OL11574466W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4879201A"}}], "type": {"key": "/type/work"}, "subjects": ["Toxicology", "Metals"], "revision": 2}
+/type/work /works/OL11574621W 2 2010-01-20T22:43:07.948521 {"title": "Tif\u02beeret ha-Tanya", "created": {"type": "/type/datetime", "value": "2009-12-11T04:53:27.310228"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-20T22:43:07.948521"}, "latest_revision": 2, "key": "/works/OL11574621W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4879313A"}}], "subject_people": ["Shneur Zalman of Lyady (1745-1813)"], "type": {"key": "/type/work"}, "subjects": ["Hasidism", "Habad"], "revision": 2}
+/type/work /works/OL1157477W 2 2011-01-10T22:00:34.249068 {"title": "Escape with Me", "created": {"type": "/type/datetime", "value": "2009-12-09T20:36:30.924813"}, "last_modified": {"type": "/type/datetime", "value": "2011-01-10T22:00:34.249068"}, "latest_revision": 2, "key": "/works/OL1157477W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL117350A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11574905W 5 2020-07-14T01:22:22.496162 {"title": "Vides trencaes", "created": {"type": "/type/datetime", "value": "2009-12-11T04:53:27.310228"}, "covers": [6061725], "last_modified": {"type": "/type/datetime", "value": "2020-07-14T01:22:22.496162"}, "latest_revision": 5, "key": "/works/OL11574905W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4879530A"}}], "type": {"key": "/type/work"}, "revision": 5}
+/type/work /works/OL11574937W 2 2010-01-20T22:43:07.948521 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:53:27.310228"}, "title": "Soil survey of Cortez area, Colorado, parts of Dolores and Montezuma Counties", "subject_places": ["Colorado", "Montezuma County", "Dolores County"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T22:43:07.948521"}, "latest_revision": 2, "key": "/works/OL11574937W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4879554A"}}], "type": {"key": "/type/work"}, "subjects": ["Soil surveys", "Soils", "Maps"], "revision": 2}
+/type/work /works/OL11575440W 3 2012-05-10T20:04:25.532102 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:53:35.666391"}, "subject_places": ["United States"], "subjects": ["Civil defense"], "latest_revision": 3, "key": "/works/OL11575440W", "title": "Regulations", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2359437A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-10T20:04:25.532102"}, "revision": 3}
+/type/work /works/OL11575613W 2 2010-01-20T22:43:07.948521 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:53:35.666391"}, "title": "The western metropolis, or, St. Louis in 1846 ..", "subject_places": ["Saint Louis (Mo.)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T22:43:07.948521"}, "latest_revision": 2, "key": "/works/OL11575613W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4880075A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11575707W 2 2010-01-20T22:47:47.131930 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:53:35.666391"}, "title": "Ohio City, Franklin County, Kansas, 32 miles south of Lawrence, on Middle Creek [Prospectus]", "subject_places": ["Ohio City (Kan.)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T22:47:47.131930"}, "latest_revision": 2, "key": "/works/OL11575707W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4880149A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11575790W 1 2009-12-11T04:53:35.666391 {"title": "Obrazy--\u010di\u017ee M\u00e1ria i r\u00e1m", "created": {"type": "/type/datetime", "value": "2009-12-11T04:53:35.666391"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:53:35.666391"}, "latest_revision": 1, "key": "/works/OL11575790W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4880204A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1157612W 3 2010-07-20T14:45:17.429499 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:36:30.924813"}, "title": "The victory campaign", "subject_places": ["Canada", "Western Front"], "last_modified": {"type": "/type/datetime", "value": "2010-07-20T14:45:17.429499"}, "latest_revision": 3, "key": "/works/OL1157612W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL117353A"}}], "type": {"key": "/type/work"}, "subjects": ["World War, 1939-1945", "Campaigns", "Canada", "Canada. Canadian Army"], "revision": 3}
+/type/work /works/OL11576182W 2 2010-01-20T22:47:47.131930 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:53:35.666391"}, "title": "The operation of hoisting apparatus", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T22:47:47.131930"}, "latest_revision": 2, "key": "/works/OL11576182W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4880521A"}}], "type": {"key": "/type/work"}, "subjects": ["Hoisting machinery", "Safety measures", "Child labor"], "revision": 2}
+/type/work /works/OL11576429W 1 2009-12-11T04:53:35.666391 {"title": "Troe i Dana", "created": {"type": "/type/datetime", "value": "2009-12-11T04:53:35.666391"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:53:35.666391"}, "latest_revision": 1, "key": "/works/OL11576429W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4880708A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11576633W 2 2010-01-20T22:47:47.131930 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:53:43.215019"}, "title": "Automotive technician (manual transmission, driveline and brakes)", "subject_places": ["Canada"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T22:47:47.131930"}, "latest_revision": 2, "key": "/works/OL11576633W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4880822A"}}], "type": {"key": "/type/work"}, "subjects": ["Automotive", "Mechanics (Persons)", "Automobile mechanics", "Job descriptions", "Occupations"], "revision": 2}
+/type/work /works/OL11576838W 2 2010-01-20T22:52:49.772891 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:53:43.215019"}, "title": "International Beta Genetic Resources Network", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T22:52:49.772891"}, "latest_revision": 2, "key": "/works/OL11576838W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4880943A"}}], "type": {"key": "/type/work"}, "subjects": ["Congresses", "Beets", "Germplasm resources", "Genetics", "Databases"], "revision": 2}
+/type/work /works/OL11577725W 3 2010-12-03T14:23:47.360299 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:53:50.947888"}, "subject_places": ["Mexico", "United States"], "subjects": ["Arbitration, International", "Claims", "Claims vs. Mexico", "Claims vs. United States", "International Arbitration", "United States", "United States. Special Mexican Claims Commission"], "latest_revision": 3, "key": "/works/OL11577725W", "title": "Notice to claimants before the Special Mexican Claims Commission", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4881588A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:23:47.360299"}, "revision": 3}
+/type/work /works/OL11577826W 5 2022-12-16T08:32:15.227007 {"subjects": ["Diversity in the workplace", "Measurement", "BUSINESS & ECONOMICS", "Workplace Culture", "Human Resources & Personnel Management"], "key": "/works/OL11577826W", "title": "The diversity scorecard", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4881650A"}}], "type": {"key": "/type/work"}, "covers": [9421638], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2009-12-11T04:53:50.947888"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-16T08:32:15.227007"}}
+/type/work /works/OL11578102W 3 2010-12-03T14:24:42.326129 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:24:42.326129"}, "title": "Lincoln and Fort Sumter", "created": {"type": "/type/datetime", "value": "2009-12-11T04:53:50.947888"}, "subject_places": ["Fort Sumter (Charleston, S.C.)", "S.C.) Fort Sumter (Charleston", "United States"], "subjects": ["History", "Siege, 1861", "Simulation games in education", "United States Civil War, 1861-1865"], "subject_people": ["Abraham Lincoln (1809-1865)"], "key": "/works/OL11578102W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4881863A"}}], "latest_revision": 3, "subject_times": ["Civil War, 1861-1865"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11578169W 1 2009-12-11T04:53:50.947888 {"title": "Wad\u0101\u02bban Jin\u012bf", "created": {"type": "/type/datetime", "value": "2009-12-11T04:53:50.947888"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:53:50.947888"}, "latest_revision": 1, "key": "/works/OL11578169W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4881901A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1157877W 2 2010-01-20T22:57:41.096544 {"title": "Bibliothek Wilhelm von Bode", "created": {"type": "/type/datetime", "value": "2009-12-09T20:36:30.924813"}, "subject_places": ["Berlin", "Germany"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T22:57:41.096544"}, "latest_revision": 2, "key": "/works/OL1157877W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL117385A"}}], "subject_people": ["Wilhelm von Bode (1845-1929) Catalogs"], "type": {"key": "/type/work"}, "subjects": ["Private libraries", "Catalogs", "Library"], "revision": 2}
+/type/work /works/OL11579378W 3 2010-10-17T08:07:40.941929 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:53:57.746346"}, "subject_places": ["United States"], "subjects": ["Adoptees", "Adoption", "Law and legislation"], "latest_revision": 3, "key": "/works/OL11579378W", "title": "Legal right of an adopted child to learn the identity of his or her natural parents", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4882096A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-10-17T08:07:40.941929"}, "revision": 3}
+/type/work /works/OL11579535W 3 2010-11-04T21:43:34.912616 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:54:07.704342"}, "subject_places": ["United States"], "subjects": ["Law and legislation", "Trucking"], "latest_revision": 3, "key": "/works/OL11579535W", "title": "Trucking deregulation", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4882515A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-11-04T21:43:34.912616"}, "revision": 3}
+/type/work /works/OL11579637W 2 2010-01-20T23:02:51.508025 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:54:07.704342"}, "title": "\"Residual\" exceptions to the hearsay rule under the federal rules of evidence", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T23:02:51.508025"}, "latest_revision": 2, "key": "/works/OL11579637W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4882830A"}}], "type": {"key": "/type/work"}, "subjects": ["Evidence (Law)"], "revision": 2}
+/type/work /works/OL11580075W 2 2010-01-20T23:07:22.997416 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:54:07.704342"}, "title": "Cigarette advertising, price and social welfare", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T23:07:22.997416"}, "latest_revision": 2, "key": "/works/OL11580075W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4883156A"}}], "type": {"key": "/type/work"}, "subjects": ["Cigarettes", "Advertising", "Social aspects", "Econometric models"], "revision": 2}
+/type/work /works/OL1158059W 3 2010-08-03T05:45:44.937777 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:36:36.037736"}, "subjects": ["Extradition"], "subtitle": "Paris, November 27, 1930.", "key": "/works/OL1158059W", "title": "Convention between His Majesty in respect of the United Kingdom, the Commonwealth of Australia, New Zealand and the Union of South Africa and the prince of Monaco for the extension to certain Protectorates and mandated territories of the Treaty of December 17, 1891, in regard to extradition", "latest_revision": 3, "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL117390A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-08-03T05:45:44.937777"}, "revision": 3}
+/type/work /works/OL11580664W 3 2010-11-23T07:43:17.750953 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:54:20.416564"}, "subject_places": ["United States"], "subjects": ["Air", "Bibliography", "Pollution"], "latest_revision": 3, "key": "/works/OL11580664W", "title": "Clean Air Act", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4882741A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-11-23T07:43:17.750953"}, "revision": 3}
+/type/work /works/OL11580667W 2 2010-01-20T23:07:22.997416 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:54:20.416564"}, "title": "The availability of nonfuel minerals on federal lands", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T23:07:22.997416"}, "latest_revision": 2, "key": "/works/OL11580667W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4883606A"}}], "type": {"key": "/type/work"}, "subjects": ["Public lands", "Nonfuel minerals"], "revision": 2}
+/type/work /works/OL11580874W 3 2010-12-03T21:38:07.639596 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T21:38:07.639596"}, "title": "Hommes et femmes de la Bible", "created": {"type": "/type/datetime", "value": "2009-12-11T04:54:20.416564"}, "subjects": ["Bible", "Biography"], "latest_revision": 3, "key": "/works/OL11580874W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4883749A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11581468W 2 2010-01-20T23:12:21.271640 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:54:29.203591"}, "title": "North-Carolina, St. By His Excellency Josiah Martin, His Majesty's captain-general, governor, and commander in chief in and over the said province. A proclamation", "subject_places": ["North Carolina"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T23:12:21.271640"}, "latest_revision": 2, "key": "/works/OL11581468W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4884156A"}}], "subject_times": ["1775-1783"], "type": {"key": "/type/work"}, "subjects": ["Politics and government", "Broadsides"], "revision": 2}
+/type/work /works/OL11581502W 5 2011-01-20T15:47:05.000151 {"subtitle": "a brief review", "last_modified": {"type": "/type/datetime", "value": "2011-01-20T15:47:05.000151"}, "latest_revision": 5, "key": "/works/OL11581502W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4883385A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T04:54:29.203591"}, "title": "Unobligated and unexpended balances in the Department of Defense budget", "subject_places": ["United States"], "subjects": ["Appropriations and expenditures", "Armed Forces", "Procurement", "Statistics", "United States", "United States. Dept. of Defense", "Administrative agencies", "Finance"], "type": {"key": "/type/work"}, "revision": 5}
+/type/work /works/OL11581590W 2 2010-01-20T23:12:21.271640 {"title": "The life and novels of Le\u0301on Gozlan", "created": {"type": "/type/datetime", "value": "2009-12-11T04:54:29.203591"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-20T23:12:21.271640"}, "latest_revision": 2, "key": "/works/OL11581590W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4884253A"}}], "subject_people": ["L\u00e9on Gozlan (d. 1866)", "L\u00e9on Gozlan (1803-1866)"], "subject_times": ["19th century"], "type": {"key": "/type/work"}, "subjects": ["French literature", "History and criticism"], "revision": 2}
+/type/work /works/OL11581716W 3 2012-05-18T21:49:53.533478 {"last_modified": {"type": "/type/datetime", "value": "2012-05-18T21:49:53.533478"}, "latest_revision": 3, "key": "/works/OL11581716W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4627509A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T04:54:29.203591"}, "title": "Province of New-Hampshire. The message of His Excellency Benning Wentworth, Esq; to the representatives convened by the King's writ to sit in General Assembly January the 3d. 1748. at the dissolution of the General Assembly, January 4th. 1752", "subject_places": ["New Hampshire"], "subjects": ["Politics and government", "Broadsides"], "subject_times": ["To 1775"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11581736W 1 2009-12-11T04:54:29.203591 {"title": "Beitr\u00e4ge zur Theorie der Schnittpunkte algebraischer Kurven", "created": {"type": "/type/datetime", "value": "2009-12-11T04:54:29.203591"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:54:29.203591"}, "latest_revision": 1, "key": "/works/OL11581736W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4884372A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1158299W 3 2010-08-03T05:47:46.314494 {"subtitle": "Presented to both Houses of Parliament by command ... March 1891.", "last_modified": {"type": "/type/datetime", "value": "2010-08-03T05:47:46.314494"}, "latest_revision": 3, "key": "/works/OL1158299W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL117390A"}}], "created": {"type": "/type/datetime", "value": "2009-12-09T20:36:36.037736"}, "title": "North America. Correspondence relating to a proposed convention to regulate questions of commerce and fishery between the United States and Newfoundland", "subject_places": ["United States", "Newfoundland"], "subjects": ["Fisheries"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11583073W 2 2010-07-20T04:11:01.528958 {"subtitle": "comedie repr\u00e9sent\u00e9e en 1718.", "created": {"type": "/type/datetime", "value": "2009-12-11T04:54:39.139852"}, "title": "Le roy de Cocagne", "last_modified": {"type": "/type/datetime", "value": "2010-07-20T04:11:01.528958"}, "latest_revision": 2, "key": "/works/OL11583073W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4885398A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11583444W 1 2009-12-11T04:54:39.139852 {"title": "A inf\u00e2mia de Frei Quintino (romance duma fam\u00edlia)", "created": {"type": "/type/datetime", "value": "2009-12-11T04:54:39.139852"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:54:39.139852"}, "latest_revision": 1, "key": "/works/OL11583444W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4885709A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11583535W 2 2010-01-20T23:21:48.446242 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:54:47.155357"}, "title": "Countries of the world", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T23:21:48.446242"}, "latest_revision": 2, "key": "/works/OL11583535W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4885778A"}}], "type": {"key": "/type/work"}, "subjects": ["Bibliography", "Statesmen", "International travel regulations", "Geography"], "revision": 2}
+/type/work /works/OL11583589W 2 2010-01-20T23:21:48.446242 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:54:47.155357"}, "title": "Decisionum supremi senatus regni Lusitaniae centuriae quatuor ..", "subject_places": ["Portugal"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T23:21:48.446242"}, "latest_revision": 2, "key": "/works/OL11583589W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4885825A"}}], "type": {"key": "/type/work"}, "subjects": ["Law reports, digests"], "revision": 2}
+/type/work /works/OL11583828W 3 2010-12-03T14:25:18.823651 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:25:18.823651"}, "title": "The maternal mortality rate computed and standardized by a new method", "created": {"type": "/type/datetime", "value": "2009-12-11T04:54:47.155357"}, "subjects": ["Cases, clinical reports, statistics", "Maternal Mortality", "Obstetrics"], "latest_revision": 3, "key": "/works/OL11583828W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4886004A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11583899W 1 2009-12-11T04:54:47.155357 {"title": "The haggis", "created": {"type": "/type/datetime", "value": "2009-12-11T04:54:47.155357"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:54:47.155357"}, "latest_revision": 1, "key": "/works/OL11583899W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4886062A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11584094W 4 2012-06-18T22:57:14.148001 {"last_modified": {"type": "/type/datetime", "value": "2012-06-18T22:57:14.148001"}, "title": "By the Honourable Spencer Phips, Esq; ... A proclamation for proroguing the General Assembly", "created": {"type": "/type/datetime", "value": "2009-12-11T04:54:47.155357"}, "subjects": ["Broadsides", "Massachusetts", "Massachusetts. General Court"], "latest_revision": 4, "key": "/works/OL11584094W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2498922A"}}], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL11584114W 2 2010-01-20T23:21:48.446242 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:54:47.155357"}, "title": "The Friedel and Crafts reaction with phthalic anhydride", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T23:21:48.446242"}, "latest_revision": 2, "key": "/works/OL11584114W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4886186A"}}], "type": {"key": "/type/work"}, "subjects": ["Chemical reactions"], "revision": 2}
+/type/work /works/OL11584125W 3 2010-12-03T14:26:10.157385 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:26:10.157385"}, "title": "Defense against chemical attack", "created": {"type": "/type/datetime", "value": "2009-12-11T04:54:47.155357"}, "subjects": ["Asphyxiating and poisonous Gases", "Chemical warfare", "Gases, Asphyxiating and poisonous", "Handbooks, manuals", "Handbooks, manuals, etc", "War use"], "latest_revision": 3, "key": "/works/OL11584125W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4886190A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11584606W 5 2021-05-09T08:39:21.951175 {"subject_places": ["United States"], "subjects": ["Aims and objectives", "Education, Higher", "Higher Education", "International cooperation", "International education", "Universities and colleges", "\u00c9ducation internationale", "Enseignement sup\u00e9rieur", "Finalit\u00e9s", "Coop\u00e9ration internationale", "Universit\u00e9s", "Internationalisatie"], "key": "/works/OL11584606W", "title": "Internationalization", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4886519A"}}], "type": {"key": "/type/work"}, "covers": [11014743], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2009-12-11T04:54:53.939050"}, "last_modified": {"type": "/type/datetime", "value": "2021-05-09T08:39:21.951175"}}
+/type/work /works/OL11584676W 1 2009-12-11T04:54:53.939050 {"title": "PARLIAMENT AND FOREIGN AFFAIRS: A SEMINAR SPONSORED JOINTLY WITH THE CANADIAN INSTITUTE OF INTERNATIONAL AFFAIRS, OTTAWA, 30 APRIL-2 MAY 1984", "created": {"type": "/type/datetime", "value": "2009-12-11T04:54:53.939050"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:54:53.939050"}, "latest_revision": 1, "key": "/works/OL11584676W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4886557A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11584801W 1 2009-12-11T04:54:53.939050 {"title": "Les d\u00e9liquescences", "created": {"type": "/type/datetime", "value": "2009-12-11T04:54:53.939050"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:54:53.939050"}, "latest_revision": 1, "key": "/works/OL11584801W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4886632A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1158492W 5 2020-09-27T19:41:30.723836 {"covers": [9608630], "last_modified": {"type": "/type/datetime", "value": "2020-09-27T19:41:30.723836"}, "latest_revision": 5, "key": "/works/OL1158492W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL117393A"}}], "created": {"type": "/type/datetime", "value": "2009-12-09T20:36:36.037736"}, "title": "America in doubt", "subject_places": ["United States", "Foreign countries"], "subjects": ["Students", "Civilization", "Public opinion", "Relations", "Ohio State University", "Columbus Ohio State University", "Ohio"], "type": {"key": "/type/work"}, "revision": 5}
+/type/work /works/OL11585117W 2 2010-01-20T23:26:18.244209 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:54:53.939050"}, "title": "Zhongguo bai nian ren quan shi", "subject_places": ["China"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T23:26:18.244209"}, "latest_revision": 2, "key": "/works/OL11585117W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4886806A"}}], "type": {"key": "/type/work"}, "subjects": ["Human rights", "History"], "revision": 2}
+/type/work /works/OL11585463W 3 2020-12-16T23:56:06.495476 {"title": "Pra\u017esk\u00e9 tajemno", "subject_places": ["Prague (Czech Republic)", "Prague", "Czech Republic"], "key": "/works/OL11585463W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4887039A"}}], "type": {"key": "/type/work"}, "subjects": ["Urban folklore", "Guidebooks", "History", "Folklore"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T04:55:00.690289"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-16T23:56:06.495476"}}
+/type/work /works/OL11585480W 2 2010-01-20T23:30:52.773614 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:55:00.690289"}, "title": "Guldastah-yi Rahmat", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T23:30:52.773614"}, "latest_revision": 2, "key": "/works/OL11585480W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4887047A"}}], "type": {"key": "/type/work"}, "subjects": ["Persian poetry (Collections)"], "revision": 2}
+/type/work /works/OL11585674W 2 2010-12-03T14:27:17.454957 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:27:17.454957"}, "title": "Les sculptures de la Cath\u00e9drale Saint Pierre de Poitiers", "created": {"type": "/type/datetime", "value": "2009-12-11T04:55:00.690289"}, "subjects": ["Poitiers. Saint Pierre (cathedral)"], "latest_revision": 2, "key": "/works/OL11585674W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4887196A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11585914W 1 2009-12-11T04:55:00.690289 {"title": "Dieu au bout des doigts", "created": {"type": "/type/datetime", "value": "2009-12-11T04:55:00.690289"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:55:00.690289"}, "latest_revision": 1, "key": "/works/OL11585914W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4887334A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11586474W 3 2010-04-28T07:21:15.758500 {"title": "Une voix d'en bas", "created": {"type": "/type/datetime", "value": "2009-12-11T04:55:08.928698"}, "covers": [5754167], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:21:15.758500"}, "latest_revision": 3, "key": "/works/OL11586474W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4887674A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11586617W 3 2010-12-03T20:24:53.658957 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T20:24:53.658957"}, "title": "Preliminary report of sub-committee on regulations", "created": {"type": "/type/datetime", "value": "2009-12-11T04:55:08.928698"}, "subjects": ["Manchester College (University of Oxford)", "Regulations"], "latest_revision": 3, "key": "/works/OL11586617W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4887765A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11586763W 2 2010-01-20T23:35:28.386003 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:55:08.928698"}, "title": "Gezeitenstr\u00f6me und Reststr\u00f6me bei Borkum-Riff Feuerschiff auf Grund von Beobachtungen der Jahre 1924/28", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T23:35:28.386003"}, "latest_revision": 2, "key": "/works/OL11586763W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4887856A"}}], "type": {"key": "/type/work"}, "subjects": ["Tides"], "revision": 2}
+/type/work /works/OL11586983W 3 2021-10-23T07:43:06.715425 {"title": "Growing Bermuda onion seed in the Southwestern United States", "subject_places": ["United States"], "key": "/works/OL11586983W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4888028A"}}], "type": {"key": "/type/work"}, "subjects": ["Onions", "Seeds", "Varieties", "Agriculture", "Economic aspects"], "covers": [12188239], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T04:55:08.928698"}, "last_modified": {"type": "/type/datetime", "value": "2021-10-23T07:43:06.715425"}}
+/type/work /works/OL11587393W 4 2022-04-02T19:27:34.664588 {"title": "Specifications for the manufacture and installation of railway track scales for light industrial service(for knife-edge scales only)", "subjects": ["Railroad cars", "Scales (Weighing instruments)", "Weight"], "key": "/works/OL11587393W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1288650A"}}], "type": {"key": "/type/work"}, "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T04:55:08.928698"}, "last_modified": {"type": "/type/datetime", "value": "2022-04-02T19:27:34.664588"}}
+/type/work /works/OL11588362W 2 2010-01-20T23:40:24.955526 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:55:17.035222"}, "title": "Nuovo libro di caratteri diversi di scrittura formata e corsiva perfetta", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T23:40:24.955526"}, "latest_revision": 2, "key": "/works/OL11588362W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4889090A"}}], "type": {"key": "/type/work"}, "subjects": ["Penmanship"], "revision": 2}
+/type/work /works/OL11588736W 2 2010-01-20T23:40:24.955526 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:55:24.694861"}, "title": "Muqaddimah f\u012b t\u0101r\u012bkh Filas\u1e6d\u012bn al-qad\u012bm", "subject_places": ["Palestine"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T23:40:24.955526"}, "latest_revision": 2, "key": "/works/OL11588736W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4889337A"}}], "subject_times": ["To 70 A.D.", "70-638"], "type": {"key": "/type/work"}, "subjects": ["History", "Jews"], "revision": 2}
+/type/work /works/OL11588773W 2 2010-12-03T14:28:42.271749 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:28:42.271749"}, "title": "The newly discovered original Hebrew of Ben Sira (Ecclesiasticus xxxii, 16 - xxxiv, 1)", "created": {"type": "/type/datetime", "value": "2009-12-11T04:55:24.694861"}, "subjects": ["Ecclesiasticus"], "latest_revision": 2, "key": "/works/OL11588773W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4889375A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11588992W 2 2010-01-20T23:45:02.384103 {"title": "Shakespeare - K\u00f6nyvtar", "created": {"type": "/type/datetime", "value": "2009-12-11T04:55:24.694861"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-20T23:45:02.384103"}, "latest_revision": 2, "key": "/works/OL11588992W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4889529A"}}], "subject_people": ["William Shakespeare (1564-1616)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11589347W 2 2010-01-20T23:45:02.384103 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:55:24.694861"}, "title": "Diets deficient in vitamins A and D including Chinese and Thibetan diets", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T23:45:02.384103"}, "latest_revision": 2, "key": "/works/OL11589347W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4889764A"}}], "type": {"key": "/type/work"}, "subjects": ["Vitamins", "Diet", "Deficiency diseases"], "revision": 2}
+/type/work /works/OL11589684W 2 2010-01-20T23:45:02.384103 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:55:32.791427"}, "title": "L' enseignement de l'\u00e9criture aux universit\u00e9s m\u00e9di\u00e9vales", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T23:45:02.384103"}, "latest_revision": 2, "key": "/works/OL11589684W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4889961A"}}], "type": {"key": "/type/work"}, "subjects": ["Penmanship"], "revision": 2}
+/type/work /works/OL11589839W 2 2010-01-20T23:45:02.384103 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:55:32.791427"}, "title": "Literature survey of properties of synfuels derived from coal", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T23:45:02.384103"}, "latest_revision": 2, "key": "/works/OL11589839W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4890082A"}}], "type": {"key": "/type/work"}, "subjects": ["Bibliography", "Coal gasification", "Synthetic fuels"], "revision": 2}
+/type/work /works/OL11590111W 3 2010-12-04T04:25:21.473002 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:55:32.791427"}, "subjects": ["Art criticism", "Art, Modern", "Modern Art"], "latest_revision": 3, "key": "/works/OL11590111W", "title": "Ricognizione in tempo reale", "subject_times": ["20th century"], "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4890305A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-04T04:25:21.473002"}, "revision": 3}
+/type/work /works/OL11590227W 2 2010-01-20T23:45:02.384103 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:55:32.791427"}, "title": "Le r\u00e9gime seigneurial au Canada", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T23:45:02.384103"}, "latest_revision": 2, "key": "/works/OL11590227W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4890389A"}}], "type": {"key": "/type/work"}, "subjects": ["Seigniorial tenure"], "revision": 2}
+/type/work /works/OL11590255W 3 2010-04-28T07:21:15.758500 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:55:32.791427"}, "title": "Un grand pr\u00e9curseur des romantiques", "covers": [5752291], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:21:15.758500"}, "latest_revision": 3, "key": "/works/OL11590255W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4890404A"}}], "subject_people": ["Louis Fran\u00e7ois Elisabeth, baron Ramond (1755-1827)"], "type": {"key": "/type/work"}, "subjects": ["Bibliography"], "revision": 3}
+/type/work /works/OL11590287W 1 2009-12-11T04:55:32.791427 {"title": "Ghazals from films", "created": {"type": "/type/datetime", "value": "2009-12-11T04:55:32.791427"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:55:32.791427"}, "latest_revision": 1, "key": "/works/OL11590287W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4890428A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11590313W 2 2018-11-22T00:05:16.546940 {"title": "Free at last !Free at last!", "created": {"type": "/type/datetime", "value": "2009-12-11T04:55:32.791427"}, "last_modified": {"type": "/type/datetime", "value": "2018-11-22T00:05:16.546940"}, "latest_revision": 2, "key": "/works/OL11590313W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL719705A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11590379W 3 2010-12-03T22:44:16.442078 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T22:44:16.442078"}, "title": "Fine silver, including Judaica, icons, Russian works of art and vertu", "created": {"type": "/type/datetime", "value": "2009-12-11T04:55:32.791427"}, "subjects": ["Art objects", "Art, Jewish", "Art, Russian", "Catalogs", "Icons", "Jewish Art", "Russian Art", "Silverwork"], "latest_revision": 3, "key": "/works/OL11590379W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4890508A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11591069W 1 2009-12-11T04:55:40.789067 {"title": "Nobody Else", "created": {"type": "/type/datetime", "value": "2009-12-11T04:55:40.789067"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:55:40.789067"}, "latest_revision": 1, "key": "/works/OL11591069W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4891007A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11591184W 2 2010-01-20T23:50:03.788685 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:55:40.789067"}, "title": "Le d\u00e9pression d\u00e9mographique des Flandres", "subject_places": ["Flanders (Belgium)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T23:50:03.788685"}, "latest_revision": 2, "key": "/works/OL11591184W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4891099A"}}], "type": {"key": "/type/work"}, "subjects": ["Population"], "revision": 2}
+/type/work /works/OL11591228W 2 2010-01-20T23:50:03.788685 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:55:40.789067"}, "title": "Ensayo de un diccionario biogr\u00e1fico y bibliogr\u00e1fico des los poetas que florecieron en el reino de Valencia hasta el a\u00f1o 1700", "subject_places": ["Valencia (Spain)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T23:50:03.788685"}, "latest_revision": 2, "key": "/works/OL11591228W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4891129A"}}], "subject_times": ["16th-18th centuries"], "type": {"key": "/type/work"}, "subjects": ["Bio-bibliography", "Catalan poetry", "Biographical collections and dictionaries", "Spanish literature"], "revision": 2}
+/type/work /works/OL11591387W 1 2009-12-11T04:55:40.789067 {"title": "Le rendez-vous de Quimper", "created": {"type": "/type/datetime", "value": "2009-12-11T04:55:40.789067"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:55:40.789067"}, "latest_revision": 1, "key": "/works/OL11591387W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4891236A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11591693W 1 2009-12-11T04:55:49.088510 {"title": "Grifos & emblemas", "created": {"type": "/type/datetime", "value": "2009-12-11T04:55:49.088510"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:55:49.088510"}, "latest_revision": 1, "key": "/works/OL11591693W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4891428A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1159182W 2 2010-01-20T23:54:49.228462 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:36:46.546480"}, "title": "Notes on fugue for beginners", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T23:54:49.228462"}, "latest_revision": 2, "key": "/works/OL1159182W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL117442A"}}], "type": {"key": "/type/work"}, "subjects": ["Fugue"], "revision": 2}
+/type/work /works/OL11592141W 1 2009-12-11T04:55:49.088510 {"title": "La fin et la mani\u00e8re, avec en pr\u00e9f., Lettre rouge d'Alain Jouffroy", "created": {"type": "/type/datetime", "value": "2009-12-11T04:55:49.088510"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:55:49.088510"}, "latest_revision": 1, "key": "/works/OL11592141W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4891727A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL115923W 3 2010-04-28T07:21:15.758500 {"created": {"type": "/type/datetime", "value": "2009-10-18T05:16:23.492575"}, "title": "Raw Head, Bloody Bones", "covers": [433897], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:21:15.758500"}, "latest_revision": 3, "key": "/works/OL115923W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL29710A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11592582W 1 2009-12-11T04:55:54.334692 {"title": "NICIE annual report", "created": {"type": "/type/datetime", "value": "2009-12-11T04:55:54.334692"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:55:54.334692"}, "latest_revision": 1, "key": "/works/OL11592582W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4891960A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11592753W 2 2010-01-20T23:54:49.228462 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:55:54.334692"}, "title": "Grammar in Ontario elementary schools", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T23:54:49.228462"}, "latest_revision": 2, "key": "/works/OL11592753W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4891993A"}}], "type": {"key": "/type/work"}, "subjects": ["English language", "Study and teaching", "Grammar", "English language and literature"], "revision": 2}
+/type/work /works/OL11593082W 3 2012-06-27T03:15:32.978871 {"last_modified": {"type": "/type/datetime", "value": "2012-06-27T03:15:32.978871"}, "title": "The seat of government of Canada", "created": {"type": "/type/datetime", "value": "2009-12-11T04:55:54.334692"}, "covers": [7146841], "subject_places": ["Canada"], "subjects": ["Politics and government", "Capital and capitol", "Politique et gouvernement", "Capitale"], "latest_revision": 3, "key": "/works/OL11593082W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4892142A"}}], "subject_times": ["1841-1867"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11593284W 2 2010-01-20T23:54:49.228462 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:55:54.334692"}, "title": "Soil survey of Rockingham County, N.C", "subject_places": ["Rockingham County", "North Carolina", "Rockingham County (N.C.)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-20T23:54:49.228462"}, "latest_revision": 2, "key": "/works/OL11593284W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4892254A"}}], "type": {"key": "/type/work"}, "subjects": ["Soil surveys", "Soils", "Maps"], "revision": 2}
+/type/work /works/OL11593436W 1 2009-12-11T04:55:54.334692 {"title": "Les affranchis", "created": {"type": "/type/datetime", "value": "2009-12-11T04:55:54.334692"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:55:54.334692"}, "latest_revision": 1, "key": "/works/OL11593436W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4892346A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11593913W 1 2009-12-11T04:55:56.859186 {"title": "The believer's victory, through our Lord Jesus Christ. Being the substance of a sermon occasioned by the death of Mrs. Elizabeth Pike; ... 1799, ... To which is added A letter to a friend. By James Upton, ..", "created": {"type": "/type/datetime", "value": "2009-12-11T04:55:56.859186"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:55:56.859186"}, "latest_revision": 1, "key": "/works/OL11593913W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4892448A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11593993W 1 2009-12-11T04:55:56.859186 {"title": "Draft Motor Vehicles (Wearing of seat belts)(Amendment)Regulations 2005, Tuesday 7 December 2004", "created": {"type": "/type/datetime", "value": "2009-12-11T04:55:56.859186"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:55:56.859186"}, "latest_revision": 1, "key": "/works/OL11593993W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4892455A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11594163W 1 2009-12-11T04:55:56.859186 {"title": "Draft financial services and markets act 2000(financial promotion) order 2001", "created": {"type": "/type/datetime", "value": "2009-12-11T04:55:56.859186"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:55:56.859186"}, "latest_revision": 1, "key": "/works/OL11594163W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4892468A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11594607W 2 2010-01-20T23:59:39.343599 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:56:02.682969"}, "title": "Microstructural development during directional solidification of peritectic alloys", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T23:59:39.343599"}, "latest_revision": 2, "key": "/works/OL11594607W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4892541A"}}], "type": {"key": "/type/work"}, "subjects": ["Microgravity", "Product development", "Gravitational effects", "Temperature gradients", "Alloys", "Microstructure", "Directional solidification (Crystals)", "Heat resistant alloys"], "revision": 2}
+/type/work /works/OL11595107W 2 2010-01-20T23:59:39.343599 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:56:02.682969"}, "title": "Invitation \u00e0 la lecture 1. Guide p\u00e9dagogique =", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T23:59:39.343599"}, "latest_revision": 2, "key": "/works/OL11595107W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4892756A"}}], "type": {"key": "/type/work"}, "subjects": ["French language", "Foreign speakers", "Study and teaching (Elementary)", "English"], "revision": 2}
+/type/work /works/OL11595339W 2 2010-01-20T23:59:39.343599 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:56:02.682969"}, "title": "Circuit 1", "last_modified": {"type": "/type/datetime", "value": "2010-01-20T23:59:39.343599"}, "latest_revision": 2, "key": "/works/OL11595339W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4892912A"}}], "type": {"key": "/type/work"}, "subjects": ["French language", "Textbooks for foreign speakers", "Problems, exercises"], "revision": 2}
+/type/work /works/OL11595449W 2 2010-01-21T00:03:59.067760 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:56:02.682969"}, "title": "Hearings on legislation to permit the immediate cash payment of terminal leave bonds", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T00:03:59.067760"}, "latest_revision": 2, "key": "/works/OL11595449W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4892969A"}}], "type": {"key": "/type/work"}, "subjects": ["Armed Forces", "Veterans", "Pay, allowances", "Leaves and furloughs"], "revision": 2}
+/type/work /works/OL11595787W 1 2009-12-11T04:56:06.742793 {"title": "Draft housing support services (Northern Ireland) order 2002, Wednesday 27 November 2002", "created": {"type": "/type/datetime", "value": "2009-12-11T04:56:06.742793"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:56:06.742793"}, "latest_revision": 1, "key": "/works/OL11595787W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4893113A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11595822W 1 2009-12-11T04:56:06.742793 {"title": "Local government finance (England) special grant report(no.48) on 1999-2000 special grant for developing new approaches to commissioning services for drug misusers(HC 513), Wednesday 21 July 1999", "created": {"type": "/type/datetime", "value": "2009-12-11T04:56:06.742793"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:56:06.742793"}, "latest_revision": 1, "key": "/works/OL11595822W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4893113A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11596028W 1 2009-12-11T04:56:06.742793 {"title": "Accidents, falls, fractures and osteoporosis", "created": {"type": "/type/datetime", "value": "2009-12-11T04:56:06.742793"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:56:06.742793"}, "latest_revision": 1, "key": "/works/OL11596028W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4893188A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11596253W 2 2010-01-21T00:03:59.067760 {"title": "An old time vicar of Rotherham", "created": {"type": "/type/datetime", "value": "2009-12-11T04:56:06.742793"}, "subject_places": ["Great Britain"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T00:03:59.067760"}, "latest_revision": 2, "key": "/works/OL11596253W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4893206A"}}], "subject_people": ["John Shawe (1608-1672)"], "subject_times": ["Charles I, 1625-1649", "17th century"], "type": {"key": "/type/work"}, "subjects": ["Church history", "History"], "revision": 2}
+/type/work /works/OL11596270W 3 2010-12-03T14:28:42.271749 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:28:42.271749"}, "title": "1970 Technical Conference on Household Equipment", "created": {"type": "/type/datetime", "value": "2009-12-11T04:56:06.742793"}, "subjects": ["Electric Household appliances", "Household appliances, Electric"], "latest_revision": 3, "key": "/works/OL11596270W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4893215A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1159653W 3 2020-11-17T22:24:59.886470 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:36:46.546480"}, "subjects": ["International law"], "latest_revision": 3, "key": "/works/OL1159653W", "title": "Guo ji gong fa yu guo ji zu zhi", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL117471A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-11-17T22:24:59.886470"}, "covers": [5239566], "revision": 3}
+/type/work /works/OL1159705W 4 2022-12-19T05:31:39.875552 {"title": "Le patriote anglois", "subject_places": ["Great Britain", "France", "United States"], "key": "/works/OL1159705W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL117475A"}}], "subject_times": ["French and Indian War, 1755-1763"], "type": {"key": "/type/work"}, "subjects": ["Early works to 1800", "Foreign relations", "Anglo-French War, 1755-1763", "History", "United States French and Indian War, 1755-1763", "Guerre de Sept Ans, 1756-1763", "Relations ext\u00e9rieures", "Diplomatic relations", "Anglo-French War (1755-1763) fast (OCoLC)fst00808940", "French and Indian War (United States : 1754-1763) fast (OCoLC)fst01800886"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-09T20:36:46.546480"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-19T05:31:39.875552"}}
+/type/work /works/OL11597869W 3 2010-12-04T01:25:00.242065 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:56:19.124593"}, "subject_places": ["England"], "subjects": ["Act of Uniformity (1662)", "Dissenters, Religious", "Legal status, laws", "Religious Dissenters"], "latest_revision": 3, "key": "/works/OL11597869W", "title": "From authority to freedom in church life", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4893944A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-04T01:25:00.242065"}, "revision": 3}
+/type/work /works/OL11598120W 2 2010-01-21T00:08:48.263758 {"title": "Ueber die originalita\u0308t der Naturales quaestiones Senecas", "created": {"type": "/type/datetime", "value": "2009-12-11T04:56:19.124593"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T00:08:48.263758"}, "latest_revision": 2, "key": "/works/OL11598120W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4894119A"}}], "subject_people": ["Lucius Annaeus Seneca (ca. 4 B.C.-65 A.D)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11598252W 2 2010-01-21T00:08:48.263758 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:56:19.124593"}, "title": "Conveying the 3D shape of transparent surfaces via texture", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T00:08:48.263758"}, "latest_revision": 2, "key": "/works/OL11598252W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4894195A"}}], "type": {"key": "/type/work"}, "subjects": ["Textures", "Shapes", "Transparence", "Depth", "Communicating"], "revision": 2}
+/type/work /works/OL11598407W 2 2010-01-21T00:08:48.263758 {"title": "Fischer von Erlach", "created": {"type": "/type/datetime", "value": "2009-12-11T04:56:19.124593"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T00:08:48.263758"}, "latest_revision": 2, "key": "/works/OL11598407W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4894289A"}}], "subject_people": ["Johann Bernhard Fischer von Erlach (1656-1723)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11598434W 2 2010-01-21T00:08:48.263758 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:56:19.124593"}, "title": "Army-Interior reservoir land acquisition policy", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T00:08:48.263758"}, "latest_revision": 2, "key": "/works/OL11598434W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4894309A"}}], "type": {"key": "/type/work"}, "subjects": ["Public lands", "Reservoirs", "Water resources development"], "revision": 2}
+/type/work /works/OL11598465W 3 2011-02-11T21:54:03.248927 {"title": "The contribution of Emerson to literature", "created": {"type": "/type/datetime", "value": "2009-12-11T04:56:19.124593"}, "last_modified": {"type": "/type/datetime", "value": "2011-02-11T21:54:03.248927"}, "latest_revision": 3, "key": "/works/OL11598465W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1802338A"}}], "subject_people": ["Ralph Waldo Emerson (1803-1882)"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11598473W 3 2022-12-23T13:18:15.033904 {"title": "Sins and dangers of the times", "subject_places": ["United States"], "key": "/works/OL11598473W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4894328A"}}], "subject_times": ["1837-1841"], "type": {"key": "/type/work"}, "subjects": ["Controversial literature", "Politics and government", "Temperance", "Slavery", "Sabbath", "Sermons", "Fast-day sermons", "Moral conditions", "Bible"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T04:56:19.124593"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-23T13:18:15.033904"}}
+/type/work /works/OL11598551W 2 2010-01-21T00:08:48.263758 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:56:25.854588"}, "title": "Research procedure and experimental design for savanna ecology and management", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T00:08:48.263758"}, "latest_revision": 2, "key": "/works/OL11598551W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4894380A"}}], "type": {"key": "/type/work"}, "subjects": ["Savanna ecology", "Congresses"], "revision": 2}
+/type/work /works/OL11599366W 3 2010-12-03T19:11:55.779080 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T19:11:55.779080"}, "title": "Massoni e giacobini nel Regno di Napoli", "created": {"type": "/type/datetime", "value": "2009-12-11T04:56:25.854588"}, "subject_places": ["Naples (Kingdom)"], "subjects": ["Freemasons", "History", "Jacobins"], "subject_people": ["Emanuele De Deo"], "key": "/works/OL11599366W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4894873A"}}], "latest_revision": 3, "subject_times": ["Jacobin Conspiracy, 1794"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11599501W 2 2010-01-21T00:13:31.279512 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:56:33.501036"}, "title": "La ricerca etno-antropologica in Sicilia, 1950-1980", "subject_places": ["Sicily", "Italy", "Sicily (Italy)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T00:13:31.279512"}, "latest_revision": 2, "key": "/works/OL11599501W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4894977A"}}], "type": {"key": "/type/work"}, "subjects": ["Congresses", "Social life and customs", "Ethnology", "Folklore"], "revision": 2}
+/type/work /works/OL11599556W 2 2010-01-21T00:13:31.279512 {"title": "Species Plantarum 250 years", "created": {"type": "/type/datetime", "value": "2009-12-11T04:56:33.501036"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T00:13:31.279512"}, "latest_revision": 2, "key": "/works/OL11599556W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4895006A"}}], "subject_people": ["Carl von Linn\u00e9 (1707-1778)"], "type": {"key": "/type/work"}, "subjects": ["Congresses", "Biology", "Biodiversity", "Nomenclature"], "revision": 2}
+/type/work /works/OL11600204W 1 2009-12-11T04:56:33.501036 {"title": "An almanack of coelestiall motions for the year of the Christian aera, 1669", "created": {"type": "/type/datetime", "value": "2009-12-11T04:56:33.501036"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:56:33.501036"}, "latest_revision": 1, "key": "/works/OL11600204W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4895440A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11600482W 1 2009-12-11T04:56:33.501036 {"title": "The new Methodist Church, Willerby", "created": {"type": "/type/datetime", "value": "2009-12-11T04:56:33.501036"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:56:33.501036"}, "latest_revision": 1, "key": "/works/OL11600482W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4895581A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11600767W 2 2010-01-21T00:18:13.476587 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:56:41.900374"}, "title": "An accurate and dynamic computer graphics muscle model", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T00:18:13.476587"}, "latest_revision": 2, "key": "/works/OL11600767W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4895789A"}}], "type": {"key": "/type/work"}, "subjects": ["Muscles", "Musculoskeletal system", "Computer graphics", "Computerized simulation", "Biodynamics", "Biological models (Mathematics)", "Muscular function", "Dynamic models"], "revision": 2}
+/type/work /works/OL11600868W 2 2010-01-21T00:18:13.476587 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:56:41.900374"}, "title": "Abstracts", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T00:18:13.476587"}, "latest_revision": 2, "key": "/works/OL11600868W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4895851A"}}], "type": {"key": "/type/work"}, "subjects": ["Congresses", "Visual perception", "Vision"], "revision": 2}
+/type/work /works/OL11600954W 2 2010-01-21T00:18:13.476587 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:56:41.900374"}, "title": "Die franz\u00f6sisch-spanische Allianz in den Jahren 1796-1807", "subject_places": ["Spain"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T00:18:13.476587"}, "latest_revision": 2, "key": "/works/OL11600954W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4895915A"}}], "type": {"key": "/type/work"}, "subjects": ["French Revolution, 1799-1804 (Consulat)", "History"], "revision": 2}
+/type/work /works/OL11601921W 3 2011-01-29T21:08:36.410773 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:56:50.059000"}, "subjects": ["Confession"], "subject_people": ["John Cassian (ca. 360-ca. 435)", "Caesarius of Arles, Saint (470?-542)"], "key": "/works/OL11601921W", "title": "Confessio soli Deo antecedents and development of the notion", "latest_revision": 3, "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4896647A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2011-01-29T21:08:36.410773"}, "revision": 3}
+/type/work /works/OL11601995W 2 2010-01-21T00:22:32.045626 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:56:50.059000"}, "title": "Computation of separated and unsteady flows with one- and two-equation turbulence models", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T00:22:32.045626"}, "latest_revision": 2, "key": "/works/OL11601995W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4896696A"}}], "type": {"key": "/type/work"}, "subjects": ["Computational fluid dynamics", "Eddy viscosity", "Upwind schemes (Mathematics)", "Unsteady flow", "Computerized simulation", "Turbulence models", "Flow distribution", "High Reynolds number", "Leading edges", "Navier-Stokes equation", "Transition flow", "Separated flow"], "revision": 2}
+/type/work /works/OL11603005W 2 2010-01-21T00:26:48.690833 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:56:57.663467"}, "title": "Tasi ss\u016dn\u016dn kansin y\u014flch\u014fn", "subject_places": ["Korea"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T00:26:48.690833"}, "latest_revision": 2, "key": "/works/OL11603005W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4897353A"}}], "type": {"key": "/type/work"}, "subjects": ["Traitors", "Biography", "History"], "revision": 2}
+/type/work /works/OL11603121W 2 2010-01-21T00:26:48.690833 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:56:57.663467"}, "title": "El mosaico con el triunfo de Dionysos de la villa romana de Valdearados (Burgos)", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T00:26:48.690833"}, "latest_revision": 2, "key": "/works/OL11603121W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4897426A"}}], "type": {"key": "/type/work"}, "subjects": ["Dionysus (Greek deity)", "Mosaics, Greco-Roman", "Art"], "revision": 2}
+/type/work /works/OL11603122W 1 2009-12-11T04:56:57.663467 {"title": "Compact geography of the Netherlands", "created": {"type": "/type/datetime", "value": "2009-12-11T04:56:57.663467"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:56:57.663467"}, "latest_revision": 1, "key": "/works/OL11603122W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4897428A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11603367W 2 2010-01-21T00:26:48.690833 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:56:57.663467"}, "title": "Tapestry weaving in England from the earliest times to the end of the xviiith century", "subject_places": ["Great Britain"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T00:26:48.690833"}, "latest_revision": 2, "key": "/works/OL11603367W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4897601A"}}], "type": {"key": "/type/work"}, "subjects": ["Tapestry", "History"], "revision": 2}
+/type/work /works/OL11603806W 2 2010-08-04T03:05:15.165893 {"subtitle": "Han S\u016dng-w\u014fn changp\u02bby\u014fn sos\u014fl.", "title": "K\u016ddae \u014fn\u016d han\u016dl mit \u016dl hemaen\u016dn\u02bcga", "created": {"type": "/type/datetime", "value": "2009-12-11T04:57:03.805084"}, "last_modified": {"type": "/type/datetime", "value": "2010-08-04T03:05:15.165893"}, "latest_revision": 2, "key": "/works/OL11603806W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4897803A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11604020W 1 2009-12-11T04:57:03.805084 {"title": "Justices of the peace, 1361-1848", "created": {"type": "/type/datetime", "value": "2009-12-11T04:57:03.805084"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:57:03.805084"}, "latest_revision": 1, "key": "/works/OL11604020W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4897913A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11604065W 1 2009-12-11T04:57:03.805084 {"title": "IEEE Antennas and Propagation Society International Symposium", "created": {"type": "/type/datetime", "value": "2009-12-11T04:57:03.805084"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:57:03.805084"}, "latest_revision": 1, "key": "/works/OL11604065W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4897942A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11604190W 2 2010-01-21T00:31:32.395349 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:57:03.805084"}, "title": "Effects on radionuclide concentrations by cement/ground-water interactions in support of performance assessment of low-level radioactive waste disposal facilities", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T00:31:32.395349"}, "latest_revision": 2, "key": "/works/OL11604190W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4898018A"}}], "type": {"key": "/type/work"}, "subjects": ["Radioactive waste disposal", "Safety measures", "Radioactivity", "Low level radioactive waste disposal facilities"], "revision": 2}
+/type/work /works/OL11604335W 1 2009-12-11T04:57:03.805084 {"title": "Die neue Generation eines GIS-Systems f\u00fcr Mittelspannungsschaltanlagen", "created": {"type": "/type/datetime", "value": "2009-12-11T04:57:03.805084"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:57:03.805084"}, "latest_revision": 1, "key": "/works/OL11604335W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4898124A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11604759W 1 2009-12-11T04:57:09.868576 {"title": "Medicine and the law", "created": {"type": "/type/datetime", "value": "2009-12-11T04:57:09.868576"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:57:09.868576"}, "latest_revision": 1, "key": "/works/OL11604759W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4898359A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL116049W 11 2020-07-29T05:11:07.444520 {"description": {"type": "/type/text", "value": "I slipped off my clothes and dove into the pool. We are 96 percent liquid. There is nothing more sensuous than a good splash against naked skin: the initial rush of cold, the smooth acquiescence of inner fluid to the outer mantle of wet.Thirty-two-year-old Audrey Hastings swims a mile each day in her backyard pool: sixty-six laps. These meticulously counted crossings are the balm for her frustrations as a new mother, and her hedge against the insecurity she feels upon discovering her first gray hair. But the smooth waters through which she so assiduously glides grow cloudy when it becomes crystal clear that her good-looking, easy-going husband has begun an affair with a comely co-worker named Kim--who resembles Audrey, ten years younger. Audrey rages and stews and swims while contemplating this threat to her very existence. A fan-tasy of revenge--taking a younger lover of her own--becomes real when Audrey catches the eye of a sexy grad student at the park where she takes her two-year-old, Gina, to play. Audrey hesitates, resists, succumbs. And Au-drey learns that the consequences of jealousy, suspicion, and adultery can be more disastrous than she ever imagined. Precise, intelligent, and intense, 66 Laps is an altogether irresistible novel written with scalpel-like precision.From the Hardcover edition."}, "covers": [1464135], "last_modified": {"type": "/type/datetime", "value": "2020-07-29T05:11:07.444520"}, "latest_revision": 11, "key": "/works/OL116049W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL29747A"}}], "created": {"type": "/type/datetime", "value": "2009-10-18T05:16:23.492575"}, "title": "66 laps", "subjects": ["Married women", "Revenge", "Fiction", "Adultery", "Women swimmers", "Large type books"], "type": {"key": "/type/work"}, "revision": 11}
+/type/work /works/OL11605125W 1 2009-12-11T04:57:09.868576 {"title": "Gy\u014dk\u014d", "created": {"type": "/type/datetime", "value": "2009-12-11T04:57:09.868576"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:57:09.868576"}, "latest_revision": 1, "key": "/works/OL11605125W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4898528A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11605470W 1 2009-12-11T04:57:09.868576 {"title": "The role of mandibular third molars in the aetiology of mandibular incisor crowding and changing growth patterns in the dento-facial complex", "created": {"type": "/type/datetime", "value": "2009-12-11T04:57:09.868576"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:57:09.868576"}, "latest_revision": 1, "key": "/works/OL11605470W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4898679A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11605636W 4 2022-02-25T15:59:51.173043 {"title": "Towns and trade in the age of Charlemagne", "subject_places": ["Europe"], "subjects": ["Archaeology and history", "Cities and towns, Medieval", "Commerce", "Economic conditions", "History", "Medieval Cities and towns", "Cities and towns, medieval", "Europe, economic conditions", "Europe, commerce", "Europe, history, 476-1492"], "subject_people": ["Charlemagne Emperor (742-814)"], "key": "/works/OL11605636W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4898767A"}}], "subject_times": ["To 1492"], "type": {"key": "/type/work"}, "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T04:57:13.794801"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-25T15:59:51.173043"}}
+/type/work /works/OL11605W 2 2010-01-21T00:36:18.915132 {"title": "Democracy in India and the judicial process", "created": {"type": "/type/datetime", "value": "2009-10-05T20:50:40.969041"}, "subject_places": ["India"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T00:36:18.915132"}, "latest_revision": 2, "key": "/works/OL11605W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL10598A"}}], "subject_times": ["1947-"], "type": {"key": "/type/work"}, "subjects": ["Judicial review", "Politics and government", "Constitutional law"], "revision": 2}
+/type/work /works/OL11606079W 1 2009-12-11T04:57:13.794801 {"title": "Moncton mantra", "created": {"type": "/type/datetime", "value": "2009-12-11T04:57:13.794801"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:57:13.794801"}, "latest_revision": 1, "key": "/works/OL11606079W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4898924A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11606281W 1 2009-12-11T04:57:13.794801 {"title": "Draft Regulatory Reform(Unsolicited Goods and Services Act 1971)(Directory Entries and Demands for Payment) Order 2004", "created": {"type": "/type/datetime", "value": "2009-12-11T04:57:13.794801"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:57:13.794801"}, "latest_revision": 1, "key": "/works/OL11606281W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4899001A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11606493W 1 2009-12-11T04:57:13.794801 {"title": "Hu xiao", "created": {"type": "/type/datetime", "value": "2009-12-11T04:57:13.794801"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:57:13.794801"}, "latest_revision": 1, "key": "/works/OL11606493W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4899027A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1160663W 4 2020-03-03T05:01:57.834505 {"last_modified": {"type": "/type/datetime", "value": "2020-03-03T05:01:57.834505"}, "title": "The European mind", "created": {"type": "/type/datetime", "value": "2009-12-09T20:36:59.761883"}, "covers": [9286540], "subject_places": ["Europe"], "subjects": ["Seventeenth century", "Intellectual life", "Philosophy, Modern", "History and criticism", "Literature, Modern", "Eighteenth century", "History", "Europe", "1700-1799", "Modern Literature", "Modern Philosophy"], "latest_revision": 4, "key": "/works/OL1160663W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL117550A"}}], "subject_times": ["18th century"], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL11606643W 1 2009-12-11T04:57:17.851552 {"title": "Penelope Melodrama per Il Teatro di S.M.B", "created": {"type": "/type/datetime", "value": "2009-12-11T04:57:17.851552"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:57:17.851552"}, "latest_revision": 1, "key": "/works/OL11606643W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4899053A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11606685W 1 2009-12-11T04:57:17.851552 {"title": "The UK airlines industry development", "created": {"type": "/type/datetime", "value": "2009-12-11T04:57:17.851552"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:57:17.851552"}, "latest_revision": 1, "key": "/works/OL11606685W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4899085A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11606995W 3 2010-12-03T18:09:32.051883 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:57:17.851552"}, "subject_places": ["United States"], "subjects": ["Auditing", "Rules and practice", "Tax collection", "United States", "United States. Internal Revenue Service"], "latest_revision": 3, "key": "/works/OL11606995W", "title": "Financial audit", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4899229A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T18:09:32.051883"}, "revision": 3}
+/type/work /works/OL11607484W 1 2009-12-11T04:57:17.851552 {"title": "Yin jian lai de qi zi", "created": {"type": "/type/datetime", "value": "2009-12-11T04:57:17.851552"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:57:17.851552"}, "latest_revision": 1, "key": "/works/OL11607484W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4899350A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11607825W 1 2009-12-11T04:57:22.723517 {"title": "Niang zi wen qing", "created": {"type": "/type/datetime", "value": "2009-12-11T04:57:22.723517"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:57:22.723517"}, "latest_revision": 1, "key": "/works/OL11607825W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4899491A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11608121W 3 2010-12-03T14:32:40.936577 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:32:40.936577"}, "title": "What is the church?", "created": {"type": "/type/datetime", "value": "2009-12-11T04:57:22.723517"}, "subjects": ["Catholic Church", "Church", "Foundation"], "latest_revision": 3, "key": "/works/OL11608121W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4899553A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11608538W 3 2021-05-08T09:37:01.251061 {"title": "A glossary of sea terms", "key": "/works/OL11608538W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4899750A"}}], "type": {"key": "/type/work"}, "covers": [10758925], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T04:57:27.846122"}, "last_modified": {"type": "/type/datetime", "value": "2021-05-08T09:37:01.251061"}}
+/type/work /works/OL11608755W 2 2010-01-21T00:41:04.667716 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:57:27.846122"}, "title": "Otter trawl explorations in Philippine waters", "subject_places": ["Philippines"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T00:41:04.667716"}, "latest_revision": 2, "key": "/works/OL11608755W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4899858A"}}], "type": {"key": "/type/work"}, "subjects": ["Fisheries", "Fishing", "Research"], "revision": 2}
+/type/work /works/OL11609588W 2 2010-12-03T14:33:36.934368 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:33:36.934368"}, "title": "230 years of Methodism in Hambleton", "created": {"type": "/type/datetime", "value": "2009-12-11T04:57:34.833234"}, "subjects": ["Hambleton Methodist Church (Yorkshire)"], "latest_revision": 2, "key": "/works/OL11609588W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4900231A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11609699W 3 2016-06-01T13:59:17.942689 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:57:34.833234"}, "subject_places": ["Somerset", "England"], "subjects": ["Dialects", "English language"], "latest_revision": 3, "key": "/works/OL11609699W", "title": "The dialect of West Somerset", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL113206A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2016-06-01T13:59:17.942689"}, "revision": 3}
+/type/work /works/OL11609880W 2 2010-12-04T07:28:36.948957 {"last_modified": {"type": "/type/datetime", "value": "2010-12-04T07:28:36.948957"}, "title": "Clinical governance review South Stoke Primary Care Trust, September 2003", "created": {"type": "/type/datetime", "value": "2009-12-11T04:57:34.833234"}, "subjects": ["South Stoke Primary Care Trust"], "latest_revision": 2, "key": "/works/OL11609880W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4900362A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11610767W 2 2022-09-28T16:17:28.498115 {"title": "Early steps in human progress", "key": "/works/OL11610767W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL140350A"}}], "type": {"key": "/type/work"}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T04:57:41.640582"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-28T16:17:28.498115"}}
+/type/work /works/OL11610901W 3 2010-12-03T21:54:52.976607 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:57:41.640582"}, "subject_places": ["Atlantic Ocean"], "subjects": ["Geology", "Photography, Submarine", "Submarine Photography"], "latest_revision": 3, "key": "/works/OL11610901W", "title": "Geological interpretation of underwater photographs obtained on the Mid-Atlantic Ridge (C.S.S. Hudson 68-022)", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4900982A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T21:54:52.976607"}, "revision": 3}
+/type/work /works/OL11610994W 2 2010-07-23T21:48:46.183367 {"description": {"type": "/type/text", "value": "This MA dissertation traces the origin of public debate within the public sphere from the coffee houses of Jurgen Habermas to talk radio, into talk shows, and ultimately reality television. It optimistically considers the democratising effect of greater access to televisual platforms for debate and offering a space and voice to the otherwise voiceless - stopping short of the digital spaces now offered by the internet. The dissertation was written in 2003 as part of the MA in Film and Television Studies at Dublin City University."}, "created": {"type": "/type/datetime", "value": "2009-12-11T04:57:41.640582"}, "title": "The place of reality television within discourses on the public sphere", "last_modified": {"type": "/type/datetime", "value": "2010-07-23T21:48:46.183367"}, "latest_revision": 2, "key": "/works/OL11610994W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4901034A"}}], "subject_people": ["Elizabeth Evers"], "type": {"key": "/type/work"}, "subjects": ["reality television theory", "habermas public sphere", "coffee house culture"], "revision": 2}
+/type/work /works/OL11611038W 1 2009-12-11T04:57:41.640582 {"title": "Man or machine?", "created": {"type": "/type/datetime", "value": "2009-12-11T04:57:41.640582"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:57:41.640582"}, "latest_revision": 1, "key": "/works/OL11611038W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4901062A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11611145W 3 2020-12-02T01:01:59.838640 {"title": "Information superhighway", "subject_places": ["Canada"], "key": "/works/OL11611145W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4901125A"}}], "subjects": ["Information superhighway", "Computer networks", "Information technology", "Information networks", "Information, R\u00e9seaux d'", "Government policy", "Telecommunication", "R\u00e9seaux \u00e0 grande distance (Informatique)", "Technologie de l'information", "Internet", "Digital communications", "T\u00e9l\u00e9communications"], "type": {"key": "/type/work"}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T04:57:41.640582"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-02T01:01:59.838640"}}
+/type/work /works/OL11611344W 4 2020-12-03T14:24:43.530922 {"subjects": ["Education, philosophy", "Education, higher", "Education", "Philosophy", "Higher Education"], "key": "/works/OL11611344W", "title": "The Voice of Liberal Learning", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4901260A"}}], "type": {"key": "/type/work"}, "covers": [5311918], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T04:57:41.640582"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-03T14:24:43.530922"}}
+/type/work /works/OL11611407W 2 2020-11-20T22:29:10.182515 {"last_modified": {"type": "/type/datetime", "value": "2020-11-20T22:29:10.182515"}, "title": "La France rurale a\u0300 l'agonie", "created": {"type": "/type/datetime", "value": "2009-12-11T04:57:41.640582"}, "subjects": ["Rural conditions"], "latest_revision": 2, "key": "/works/OL11611407W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4901306A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11611542W 2 2010-01-21T00:49:53.831521 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:57:48.472732"}, "title": "La courbe de Phillips au Canada", "subject_places": ["Canada"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T00:49:53.831521"}, "latest_revision": 2, "key": "/works/OL11611542W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4901396A"}}], "type": {"key": "/type/work"}, "subjects": ["Inflation (Finance)", "Mathematical models", "Phillips curve"], "revision": 2}
+/type/work /works/OL1161173W 2 2010-01-21T00:49:53.831521 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:37:06.109158"}, "title": "Critique de la raison dialectique, precede de Question de methode. --", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T00:49:53.831521"}, "latest_revision": 2, "key": "/works/OL1161173W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL117592A"}}], "type": {"key": "/type/work"}, "subjects": ["Existentialism", "Dialectical materialism"], "revision": 2}
+/type/work /works/OL11611954W 2 2010-01-21T00:49:53.831521 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:57:48.472732"}, "title": "Results of the sockeye salmon fishery in the Columbia River, 1970-73", "subject_places": ["Columbia River"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T00:49:53.831521"}, "latest_revision": 2, "key": "/works/OL11611954W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4901653A"}}], "type": {"key": "/type/work"}, "subjects": ["Sockeye salmon fisheries"], "revision": 2}
+/type/work /works/OL11612226W 3 2010-12-03T23:59:10.920204 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:57:48.472732"}, "subjects": ["Ancient Philosophy", "Classical literature", "Greek literature", "History and criticism", "Philosophy, Ancient"], "subject_people": ["Plutarch"], "key": "/works/OL11612226W", "title": "Obraz antichnosti", "latest_revision": 3, "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4901774A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T23:59:10.920204"}, "revision": 3}
+/type/work /works/OL11612751W 1 2009-12-11T04:57:55.917146 {"title": "100 years of service", "created": {"type": "/type/datetime", "value": "2009-12-11T04:57:55.917146"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:57:55.917146"}, "latest_revision": 1, "key": "/works/OL11612751W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4902133A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11613159W 1 2009-12-11T04:57:55.917146 {"title": "Calibrating and using a backpack sprayer", "created": {"type": "/type/datetime", "value": "2009-12-11T04:57:55.917146"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:57:55.917146"}, "latest_revision": 1, "key": "/works/OL11613159W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4902439A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11613393W 2 2010-01-21T00:54:21.519696 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:57:55.917146"}, "title": "The civil rights movement", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T00:54:21.519696"}, "latest_revision": 2, "key": "/works/OL11613393W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4902548A"}}], "subject_times": ["20th century"], "type": {"key": "/type/work"}, "subjects": ["History", "Civil rights movements", "African Americans", "Civil rights"], "revision": 2}
+/type/work /works/OL11613739W 2 2010-01-21T00:54:21.519696 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:58:09.579699"}, "title": "Densities and dependence for point processes", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T00:54:21.519696"}, "latest_revision": 2, "key": "/works/OL11613739W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4902786A"}}], "type": {"key": "/type/work"}, "subjects": ["Point processes", "Bernoulli numbers"], "revision": 2}
+/type/work /works/OL11613954W 2 2010-01-21T00:58:55.990715 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:58:09.579699"}, "title": "Interaction of the muscarinic acetylcholine receptor with effector proteins", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T00:58:55.990715"}, "latest_revision": 2, "key": "/works/OL11613954W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4902941A"}}], "type": {"key": "/type/work"}, "subjects": ["Acetylcholine", "Receptors", "Muscarinic receptors"], "revision": 2}
+/type/work /works/OL11614157W 2 2010-01-21T00:58:55.990715 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:58:09.579699"}, "title": "The response of nitrifying bacteria to treatments of N-Serve and Roundup in continuous-flow soil columns", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T00:58:55.990715"}, "latest_revision": 2, "key": "/works/OL11614157W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4903085A"}}], "type": {"key": "/type/work"}, "subjects": ["Nitrogen-fixing microorganisms", "Effect of pesticides on"], "revision": 2}
+/type/work /works/OL11614386W 2 2010-01-21T00:58:55.990715 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:58:09.579699"}, "title": "Middle school/junior high music lab", "subject_places": ["Oregon", "Eugene"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T00:58:55.990715"}, "latest_revision": 2, "key": "/works/OL11614386W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4903250A"}}], "type": {"key": "/type/work"}, "subjects": ["School music", "Instruction and study", "Curricula"], "revision": 2}
+/type/work /works/OL11614612W 1 2009-12-11T04:58:16.212563 {"title": "Uvol\u02b9nenie na sutki ; Smert\u02b9 tranzitnogo passazhira ; Sprosi zari\ufe20u\ufe21", "created": {"type": "/type/datetime", "value": "2009-12-11T04:58:16.212563"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:58:16.212563"}, "latest_revision": 1, "key": "/works/OL11614612W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4903414A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11614663W 2 2010-01-21T00:58:55.990715 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:58:16.212563"}, "title": "Fast bit-level, word-level and parallel arithmetic in finite fields for elliptic curve cryptosystems", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T00:58:55.990715"}, "latest_revision": 2, "key": "/works/OL11614663W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4903450A"}}], "type": {"key": "/type/work"}, "subjects": ["Data encryption (Computer science)", "Computer arithmetic", "Cryptography"], "revision": 2}
+/type/work /works/OL11614745W 1 2009-12-11T04:58:16.212563 {"title": "Bullied", "created": {"type": "/type/datetime", "value": "2009-12-11T04:58:16.212563"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:58:16.212563"}, "latest_revision": 1, "key": "/works/OL11614745W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4903502A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11614912W 1 2009-12-11T04:58:16.212563 {"title": "The Corsican brothers", "created": {"type": "/type/datetime", "value": "2009-12-11T04:58:16.212563"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:58:16.212563"}, "latest_revision": 1, "key": "/works/OL11614912W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4903506A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11615035W 2 2010-01-21T00:58:55.990715 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:58:16.212563"}, "title": "A comparison of the advantages of light and heavy log trucks used in trucklog hauling", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T00:58:55.990715"}, "latest_revision": 2, "key": "/works/OL11615035W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4903598A"}}], "type": {"key": "/type/work"}, "subjects": ["Log transportation", "Trucks"], "revision": 2}
+/type/work /works/OL11615361W 1 2009-12-11T04:58:16.212563 {"title": "Folksongs of the Channel Islands", "created": {"type": "/type/datetime", "value": "2009-12-11T04:58:16.212563"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:58:16.212563"}, "latest_revision": 1, "key": "/works/OL11615361W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4903813A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11615927W 3 2010-07-17T22:46:24.102979 {"subtitle": "Wydaa Zegota Onacewicz", "title": "Panowanie Kazimierza, Jana Alberta i Aleksandra Jagielloczyk\u00f3w, krolow polskich i w. ksiazat litewskich", "created": {"type": "/type/datetime", "value": "2009-12-11T04:58:22.812909"}, "subject_places": ["Poland"], "last_modified": {"type": "/type/datetime", "value": "2010-07-17T22:46:24.102979"}, "latest_revision": 3, "key": "/works/OL11615927W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4904173A"}}], "subject_times": ["John I Albert, 1492-1501", "Casimir IV, 1447-1492", "Alexander, 1501-1506"], "type": {"key": "/type/work"}, "subjects": ["History"], "revision": 3}
+/type/work /works/OL11615944W 1 2009-12-11T04:58:22.812909 {"title": "Combined subscription: Standard & Poor's Library Reference Shelf 2", "created": {"type": "/type/datetime", "value": "2009-12-11T04:58:22.812909"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:58:22.812909"}, "latest_revision": 1, "key": "/works/OL11615944W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4904189A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11616021W 1 2009-12-11T04:58:22.812909 {"title": "Obras de don juan manuel, clasicos hispanicos", "created": {"type": "/type/datetime", "value": "2009-12-11T04:58:22.812909"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:58:22.812909"}, "latest_revision": 1, "key": "/works/OL11616021W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4904231A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11616023W 2 2010-12-03T17:44:16.256802 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T17:44:16.256802"}, "title": "Bishop Grosseteste College", "created": {"type": "/type/datetime", "value": "2009-12-11T04:58:22.812909"}, "subjects": ["Bishop Grosseteste College"], "latest_revision": 2, "key": "/works/OL11616023W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4904233A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11616606W 2 2010-12-03T19:09:48.079484 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T19:09:48.079484"}, "title": "Middlesex University and Vital-the Tel Aviv Center for Design Studies", "created": {"type": "/type/datetime", "value": "2009-12-11T04:58:30.624941"}, "subjects": ["Middlesex University", "Vital - the Tel Aviv Center for Design Studies"], "latest_revision": 2, "key": "/works/OL11616606W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4904562A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11616897W 2 2010-01-21T01:03:31.716588 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:58:30.624941"}, "title": "Identification and characterization of flavin-containing monooxygenase isoform 2 (FMO2) in Rhesus monkey and examination of a human FMO2 polymorphism", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T01:03:31.716588"}, "latest_revision": 2, "key": "/works/OL11616897W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4904689A"}}], "type": {"key": "/type/work"}, "subjects": ["Monooxygenases", "Toxicology", "Rhesus monkey", "Physiology", "Metabolism"], "revision": 2}
+/type/work /works/OL11617050W 1 2009-12-11T04:58:30.624941 {"title": "Patetica", "created": {"type": "/type/datetime", "value": "2009-12-11T04:58:30.624941"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:58:30.624941"}, "latest_revision": 1, "key": "/works/OL11617050W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4904799A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11617143W 2 2010-01-21T01:08:15.134047 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:58:30.624941"}, "title": "Nuevas nociones sobre patologia de la diabetes y su tratamiento", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T01:08:15.134047"}, "latest_revision": 2, "key": "/works/OL11617143W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4904882A"}}], "type": {"key": "/type/work"}, "subjects": ["Diabetes"], "revision": 2}
+/type/work /works/OL1161720W 4 2021-09-15T23:30:20.390245 {"subject_people": ["J. Viscount Bryce", "James Bryce (1838-1922)", "James Bryce Bryce Viscount (1838-1922)"], "key": "/works/OL1161720W", "title": "James Bryce (Viscount Bryce of Dechmont, O.M.)", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL117630A"}}], "type": {"key": "/type/work"}, "covers": [8218372], "subjects": ["Bryce, james bryce, viscount, 1838-1922"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-09T20:37:06.109158"}, "last_modified": {"type": "/type/datetime", "value": "2021-09-15T23:30:20.390245"}}
+/type/work /works/OL11617853W 1 2009-12-11T04:58:37.223488 {"title": "Souvenirs d'\u00c9douard de Mond\u00e9sir", "created": {"type": "/type/datetime", "value": "2009-12-11T04:58:37.223488"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:58:37.223488"}, "latest_revision": 1, "key": "/works/OL11617853W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4905369A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11617897W 1 2009-12-11T04:58:37.223488 {"title": "Helpful information for visitors and residents intending to drive in Guernsey", "created": {"type": "/type/datetime", "value": "2009-12-11T04:58:37.223488"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:58:37.223488"}, "latest_revision": 1, "key": "/works/OL11617897W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4905415A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11617902W 2 2010-01-21T01:08:15.134047 {"title": "Trial of A.J. Monson", "created": {"type": "/type/datetime", "value": "2009-12-11T04:58:37.223488"}, "subject_places": ["Great Britain"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T01:08:15.134047"}, "latest_revision": 2, "key": "/works/OL11617902W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4905420A"}}], "subject_people": ["Windsor Dudley Cecil Hambrough"], "type": {"key": "/type/work"}, "subjects": ["Trials"], "revision": 2}
+/type/work /works/OL11617940W 2 2023-01-05T17:22:32.816742 {"title": "La vita agra", "key": "/works/OL11617940W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1263541A"}}], "type": {"key": "/type/work"}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T04:58:37.223488"}, "last_modified": {"type": "/type/datetime", "value": "2023-01-05T17:22:32.816742"}}
+/type/work /works/OL11618128W 2 2010-01-21T01:08:15.134047 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:58:37.223488"}, "title": "Doctor Pen-y-bryn", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T01:08:15.134047"}, "latest_revision": 2, "key": "/works/OL11618128W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4905514A"}}], "type": {"key": "/type/work"}, "subjects": ["Surgery"], "revision": 2}
+/type/work /works/OL11618328W 1 2009-12-11T04:58:37.223488 {"title": "Escarmientos de el pecado, y fuerza del desenga\u00f1o", "created": {"type": "/type/datetime", "value": "2009-12-11T04:58:37.223488"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:58:37.223488"}, "latest_revision": 1, "key": "/works/OL11618328W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4905622A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11618367W 2 2010-01-21T01:12:52.542660 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:58:37.223488"}, "title": "Da lu hai kong yun shu chan ye gai kuang", "subject_places": ["China"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T01:12:52.542660"}, "latest_revision": 2, "key": "/works/OL11618367W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4905640A"}}], "type": {"key": "/type/work"}, "subjects": ["Transportation", "Shipping"], "revision": 2}
+/type/work /works/OL11618743W 1 2009-12-11T04:58:44.626669 {"title": "Golden jubilee anniversary, 1902-1952", "created": {"type": "/type/datetime", "value": "2009-12-11T04:58:44.626669"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:58:44.626669"}, "latest_revision": 1, "key": "/works/OL11618743W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4905863A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11619274W 2 2010-01-21T01:12:52.542660 {"title": "I.A. Bunin, zhizn\u02b9 i tvorchestvo", "created": {"type": "/type/datetime", "value": "2009-12-11T04:58:44.626669"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T01:12:52.542660"}, "latest_revision": 2, "key": "/works/OL11619274W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4906242A"}}], "subject_people": ["Ivan Alekseevich Bunin (1870-1953)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11619426W 1 2009-12-11T04:58:44.626669 {"title": "The living God", "created": {"type": "/type/datetime", "value": "2009-12-11T04:58:44.626669"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:58:44.626669"}, "latest_revision": 1, "key": "/works/OL11619426W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4906327A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11619494W 1 2009-12-11T04:58:44.626669 {"title": "Durand d'Aubigny", "created": {"type": "/type/datetime", "value": "2009-12-11T04:58:44.626669"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:58:44.626669"}, "latest_revision": 1, "key": "/works/OL11619494W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4906367A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11619937W 2 2010-01-21T01:12:52.542660 {"title": "R\u00f3mulo Gallegos y la problem\u00e1tica venezolana", "created": {"type": "/type/datetime", "value": "2009-12-11T04:58:51.330906"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T01:12:52.542660"}, "latest_revision": 2, "key": "/works/OL11619937W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4906569A"}}], "subject_people": ["R\u00f3mulo Gallegos (1884-1969)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11620208W 4 2020-02-13T10:48:56.819107 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:58:51.330906"}, "subject_places": ["Philippines"], "subjects": ["Social life and customs", "Civilization", "History"], "latest_revision": 4, "key": "/works/OL11620208W", "title": "Culture and customs of the Philippines", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4906769A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-02-13T10:48:56.819107"}, "revision": 4}
+/type/work /works/OL11620216W 1 2009-12-11T04:58:51.330906 {"title": "The effectiveness of materials management in the construction industry within Northern Ireland on the minimisation of material wastage", "created": {"type": "/type/datetime", "value": "2009-12-11T04:58:51.330906"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:58:51.330906"}, "latest_revision": 1, "key": "/works/OL11620216W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4906774A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11620225W 1 2009-12-11T04:58:51.330906 {"title": "Sermons preached in Trinity church, Amblecote [Stourbridge]", "created": {"type": "/type/datetime", "value": "2009-12-11T04:58:51.330906"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:58:51.330906"}, "latest_revision": 1, "key": "/works/OL11620225W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4906780A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11620359W 3 2023-01-07T09:58:12.300233 {"title": "Marjetica Potrc", "key": "/works/OL11620359W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4906866A"}}], "subject_people": ["Marjetica Potr\u010d"], "type": {"key": "/type/work"}, "subjects": ["Exhibitions", "Installations (Art)", "Dwellings in art"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T04:58:51.330906"}, "last_modified": {"type": "/type/datetime", "value": "2023-01-07T09:58:12.300233"}}
+/type/work /works/OL11620584W 1 2009-12-11T04:58:58.893454 {"title": "L\u00eado Ivo", "created": {"type": "/type/datetime", "value": "2009-12-11T04:58:58.893454"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:58:58.893454"}, "latest_revision": 1, "key": "/works/OL11620584W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4906997A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11620752W 1 2009-12-11T04:58:58.893454 {"title": "Volunteer investment programme", "created": {"type": "/type/datetime", "value": "2009-12-11T04:58:58.893454"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:58:58.893454"}, "latest_revision": 1, "key": "/works/OL11620752W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4907095A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11620858W 2 2010-01-21T01:18:58.471625 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:58:58.893454"}, "title": "The strategic importance of Czechoslovakia for western Europe", "subject_places": ["Czechoslovakia"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T01:18:58.471625"}, "latest_revision": 2, "key": "/works/OL11620858W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4907164A"}}], "type": {"key": "/type/work"}, "subjects": ["Boundaries"], "revision": 2}
+/type/work /works/OL11621076W 2 2010-01-21T01:18:58.471625 {"title": "Word, sound and image in the odes of Horace", "created": {"type": "/type/datetime", "value": "2009-12-11T04:58:58.893454"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T01:18:58.471625"}, "latest_revision": 2, "key": "/works/OL11621076W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4907278A"}}], "subject_people": ["Horace"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11621158W 9 2022-12-17T20:12:24.234559 {"title": "Rebels against slavery", "covers": [5482849], "key": "/works/OL11621158W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL20989A"}}], "type": {"key": "/type/work"}, "subjects": ["Slavery, united states", "Slave insurrections, united states"], "latest_revision": 9, "revision": 9, "created": {"type": "/type/datetime", "value": "2009-12-11T04:58:58.893454"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T20:12:24.234559"}}
+/type/work /works/OL11621318W 2 2010-01-21T01:18:58.471625 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:58:58.893454"}, "title": "Dynamical approach study of spurious steady-state numerical solutions of nonlinear differential equations", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T01:18:58.471625"}, "latest_revision": 2, "key": "/works/OL11621318W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4907444A"}}], "type": {"key": "/type/work"}, "subjects": ["Asymptotes", "Numerical analysis", "Nonlinear systems", "Nonlinearity", "Scalars", "Asymptotic series", "Algorithms", "Differential equations", "Steady state", "Asymptotic properties", "Computational fluid dynamics", "Finite difference theory", "Numerical stability"], "revision": 2}
+/type/work /works/OL11621366W 1 2009-12-11T04:58:58.893454 {"title": "The early history of St. Peter Port", "created": {"type": "/type/datetime", "value": "2009-12-11T04:58:58.893454"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:58:58.893454"}, "latest_revision": 1, "key": "/works/OL11621366W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4907478A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11622075W 2 2010-01-21T01:23:23.852071 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:59:17.218731"}, "title": "Estimating short-period dynamics using an extended Kalman filter", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T01:23:23.852071"}, "latest_revision": 2, "key": "/works/OL11622075W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4907948A"}}], "type": {"key": "/type/work"}, "subjects": ["Kalman filtering", "Aircraft performance", "Nonlinear systems", "Flight simulation", "Transient response", "Flight characteristics", "State estimation", "Parameter identification", "Kalman filters"], "revision": 2}
+/type/work /works/OL11622142W 2 2010-01-21T01:23:23.852071 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:59:17.218731"}, "title": "Report of Conference on Maternity and Infant Welfare", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T01:23:23.852071"}, "latest_revision": 2, "key": "/works/OL11622142W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4908002A"}}], "type": {"key": "/type/work"}, "subjects": ["Conferences", "Care and hygiene", "Obstetrics", "Children"], "revision": 2}
+/type/work /works/OL1162244W 2 2010-01-21T01:23:23.852071 {"title": "Cervantinas", "created": {"type": "/type/datetime", "value": "2009-12-09T20:37:13.764568"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T01:23:23.852071"}, "latest_revision": 2, "key": "/works/OL1162244W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL117649A"}}], "subject_people": ["Miguel de Cervantes Saavedra (1547-1616)"], "type": {"key": "/type/work"}, "subjects": ["Literature", "Spanish literature"], "revision": 2}
+/type/work /works/OL11622488W 2 2010-01-21T01:23:23.852071 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:59:17.218731"}, "title": "Re-analysis of the solar phase curves of the icy Galilean satellites", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T01:23:23.852071"}, "latest_revision": 2, "key": "/works/OL11622488W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4908213A"}}], "type": {"key": "/type/work"}, "subjects": ["Models", "Galilean satellites", "Photometry", "Icy satellites", "Solar eclipses"], "revision": 2}
+/type/work /works/OL11622577W 1 2009-12-11T04:59:24.343514 {"title": "Table des noms propres avec toutes leurs variantes figurant dans les romans du moyen a\u0302ge e\u0301crits en franc\u0327ais ou en provenc\u0327al et actuellement publie\u0301s ou analyse\u0301s", "created": {"type": "/type/datetime", "value": "2009-12-11T04:59:24.343514"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:59:24.343514"}, "latest_revision": 1, "key": "/works/OL11622577W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4908268A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11622643W 3 2010-12-03T20:48:55.733370 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T20:48:55.733370"}, "title": "Difficult\u00e9s popos\u00e9es [i.e. propos\u00e9es] \u00e0 Monsieur de Caradeuc de la Chalotais ..", "created": {"type": "/type/datetime", "value": "2009-12-11T04:59:24.343514"}, "subject_places": ["France"], "subjects": ["Education", "History", "Jesuits"], "subject_people": ["Louis-Ren\u00e9 de Caradeuc de La Chalotais (1701-1785)"], "key": "/works/OL11622643W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4908312A"}}], "latest_revision": 3, "subject_times": ["18th century"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11623207W 1 2009-12-11T04:59:24.343514 {"title": "Hanayaka na sukyandaru", "created": {"type": "/type/datetime", "value": "2009-12-11T04:59:24.343514"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:59:24.343514"}, "latest_revision": 1, "key": "/works/OL11623207W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4908647A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1162337W 6 2020-02-14T05:57:20.096904 {"subtitle": "inaugural lecture delivered at Cambridge, 17 November 1954", "covers": [7128575], "last_modified": {"type": "/type/datetime", "value": "2020-02-14T05:57:20.096904"}, "latest_revision": 6, "key": "/works/OL1162337W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL117662A"}}], "created": {"type": "/type/datetime", "value": "2009-12-09T20:37:13.764568"}, "title": "The historian and character", "subjects": ["Historiography", "Church history", "Monasticism and religious orders", "History"], "type": {"key": "/type/work"}, "revision": 6}
+/type/work /works/OL11623552W 2 2010-01-21T01:27:55.189906 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:59:31.516209"}, "title": "Storia dell'arte italiana", "subject_places": ["Italy"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T01:27:55.189906"}, "latest_revision": 2, "key": "/works/OL11623552W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4908843A"}}], "type": {"key": "/type/work"}, "subjects": ["Art", "History"], "revision": 2}
+/type/work /works/OL11623612W 2 2010-12-03T14:37:32.456251 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:37:32.456251"}, "title": "Notes on Ezekiel", "created": {"type": "/type/datetime", "value": "2009-12-11T04:59:31.516209"}, "subjects": ["Bible"], "latest_revision": 2, "key": "/works/OL11623612W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4908884A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11624167W 2 2010-01-21T01:27:55.189906 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:59:31.516209"}, "title": "Across Chryse\u0302", "subject_places": ["Burma", "China"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T01:27:55.189906"}, "latest_revision": 2, "key": "/works/OL11624167W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4909210A"}}], "type": {"key": "/type/work"}, "subjects": ["Description andtravel", "Description and travel"], "revision": 2}
+/type/work /works/OL11624339W 2 2010-01-21T01:27:55.189906 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:59:31.516209"}, "title": "Integrated Advanced Microwave Sounding Unit-A (AMSU-A), performance verification report, initial comprehensive performance test report, P/N 1331200-2-IT, S/N 105/A2", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T01:27:55.189906"}, "latest_revision": 2, "key": "/works/OL11624339W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4909311A"}}], "type": {"key": "/type/work"}, "subjects": ["Performance tests", "Specifications", "Advanced Microwave Sounding Unit"], "revision": 2}
+/type/work /works/OL1162450W 4 2023-01-08T10:41:31.130181 {"title": "The nation's health", "subject_places": ["England"], "key": "/works/OL1162450W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL117671A"}}], "type": {"key": "/type/work"}, "subjects": ["Sanitary affairs", "Hygiene, Public", "Public Hygiene", "Public health"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-09T20:37:13.764568"}, "last_modified": {"type": "/type/datetime", "value": "2023-01-08T10:41:31.130181"}}
+/type/work /works/OL11624636W 1 2009-12-11T04:59:37.902502 {"title": "Dal\u0101lat al-kha\u1e6d\u0101b al-shar\u02bb\u012b \u02bbal\u00e1 al-\u1e25ukm al-man\u1e6d\u016bq wa-al-maf\u1e25\u016bm", "created": {"type": "/type/datetime", "value": "2009-12-11T04:59:37.902502"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:59:37.902502"}, "latest_revision": 1, "key": "/works/OL11624636W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4909480A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11624834W 2 2010-01-21T01:33:19.575153 {"title": "Walter De La Mare", "created": {"type": "/type/datetime", "value": "2009-12-11T04:59:37.902502"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T01:33:19.575153"}, "latest_revision": 2, "key": "/works/OL11624834W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4909590A"}}], "subject_people": ["Walter De la Mare (1873-1956)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11625240W 3 2010-04-28T07:23:32.955928 {"title": "Vorlesungen \u00fcber Infektion und Immunit\u00e4t", "created": {"type": "/type/datetime", "value": "2009-12-11T04:59:37.902502"}, "covers": [6111345], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:23:32.955928"}, "latest_revision": 3, "key": "/works/OL11625240W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4909764A"}}], "subjects": ["Immunity", "Communicable diseases"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11625270W 2 2010-01-21T01:33:19.575153 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:59:37.902502"}, "title": "Die graphische Statik der Baukonsgruktionen", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T01:33:19.575153"}, "latest_revision": 2, "key": "/works/OL11625270W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4909787A"}}], "type": {"key": "/type/work"}, "subjects": ["Building", "Graphic statics"], "revision": 2}
+/type/work /works/OL11625287W 2 2010-01-21T01:33:19.575153 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:59:37.902502"}, "title": "Proceedings of the 7th National Urban Forest Conference, New York, New York, September 12-16, 1995", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T01:33:19.575153"}, "latest_revision": 2, "key": "/works/OL11625287W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4909795A"}}], "type": {"key": "/type/work"}, "subjects": ["Congresses", "Urban forestry", "Trees in cities"], "revision": 2}
+/type/work /works/OL11626040W 2 2010-01-21T01:33:19.575153 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:59:45.545124"}, "title": "Evaluation of a biocidal turbine-fuel additive", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T01:33:19.575153"}, "latest_revision": 2, "key": "/works/OL11626040W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4910300A"}}], "type": {"key": "/type/work"}, "subjects": ["Fuel", "Airplanes", "Microbiology"], "revision": 2}
+/type/work /works/OL11626331W 3 2010-12-03T14:39:24.347922 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:59:45.545124"}, "subject_places": ["United States"], "subjects": ["Decision-making", "Personnel management", "United States", "United States. Federal Aviation Administration"], "latest_revision": 3, "key": "/works/OL11626331W", "title": "Factors associated with continuance commitment to FAA matrix teams", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4910490A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:39:24.347922"}, "revision": 3}
+/type/work /works/OL11626665W 1 2009-12-11T04:59:57.786268 {"title": "Bra'ca po materi", "created": {"type": "/type/datetime", "value": "2009-12-11T04:59:57.786268"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:59:57.786268"}, "latest_revision": 1, "key": "/works/OL11626665W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4910662A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11626833W 1 2009-12-11T04:59:57.786268 {"title": "Ebenezer Methodist Church, West Wylam, 1874-1974", "created": {"type": "/type/datetime", "value": "2009-12-11T04:59:57.786268"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:59:57.786268"}, "latest_revision": 1, "key": "/works/OL11626833W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4910782A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11627023W 2 2010-01-21T01:38:23.352838 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:59:57.786268"}, "title": "Getting the best out of a school board", "subject_places": ["Scotland"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T01:38:23.352838"}, "latest_revision": 2, "key": "/works/OL11627023W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4910896A"}}], "type": {"key": "/type/work"}, "subjects": ["School boards", "Guides"], "revision": 2}
+/type/work /works/OL116271W 4 2022-09-07T05:53:19.833068 {"subjects": ["Fiction", "Physically handicapped", "People with disabilities"], "description": {"type": "/type/text", "value": "Once she starts having fun with her uncle and cousin, a young girl, who is confined to a wheelchair, is no longer anxious to go home"}, "key": "/works/OL116271W", "title": "Darlene", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL29776A"}}], "type": {"key": "/type/work"}, "covers": [12887693], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-10-18T05:16:23.492575"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-07T05:53:19.833068"}}
+/type/work /works/OL11627207W 2 2010-01-21T01:38:23.352838 {"created": {"type": "/type/datetime", "value": "2009-12-11T04:59:57.786268"}, "title": "Munhak kwa k\u016d ihae", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T01:38:23.352838"}, "latest_revision": 2, "key": "/works/OL11627207W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4911009A"}}], "type": {"key": "/type/work"}, "subjects": ["Literature", "Theory", "History and criticism"], "revision": 2}
+/type/work /works/OL11627520W 1 2009-12-11T04:59:57.786268 {"title": "Computational study of flow establishment in hypersonic pulse facilities", "created": {"type": "/type/datetime", "value": "2009-12-11T04:59:57.786268"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T04:59:57.786268"}, "latest_revision": 1, "key": "/works/OL11627520W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4911225A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1162773W 10 2020-02-13T11:11:01.333730 {"last_modified": {"type": "/type/datetime", "value": "2020-02-13T11:11:01.333730"}, "title": "Elizabeth and Leicester", "created": {"type": "/type/datetime", "value": "2009-12-09T20:37:13.764568"}, "covers": [2877827], "subject_places": ["Great Britain"], "subjects": ["Biography", "Relations with men", "Favorites, Royal", "History", "Royal Favorites"], "subject_people": ["Elizabeth I Queen of England (1533-1603)", "Robert Dudley Leicester Earl of (1533-1588)", "Robert Dudley Leicester Earl of (1532?-1588)"], "key": "/works/OL1162773W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL117690A"}}], "latest_revision": 10, "subject_times": ["Elizabeth, 1558-1603"], "type": {"key": "/type/work"}, "revision": 10}
+/type/work /works/OL11627886W 1 2009-12-11T05:00:05.052703 {"title": "Blodeuwedd", "created": {"type": "/type/datetime", "value": "2009-12-11T05:00:05.052703"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:00:05.052703"}, "latest_revision": 1, "key": "/works/OL11627886W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4911384A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1162797W 1 2009-12-09T20:37:13.764568 {"title": "The Iron Age", "created": {"type": "/type/datetime", "value": "2009-12-09T20:37:13.764568"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T20:37:13.764568"}, "latest_revision": 1, "key": "/works/OL1162797W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL117691A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11628859W 3 2021-08-29T15:51:35.816487 {"title": "Comparative in-place cost between wood and aluminum residential floor and wall framing", "key": "/works/OL11628859W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4912057A"}}], "type": {"key": "/type/work"}, "subjects": ["Building materials", "Costs"], "covers": [11852907], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T05:00:17.713834"}, "last_modified": {"type": "/type/datetime", "value": "2021-08-29T15:51:35.816487"}}
+/type/work /works/OL11628920W 3 2015-02-25T07:49:48.960478 {"covers": [7325278], "last_modified": {"type": "/type/datetime", "value": "2015-02-25T07:49:48.960478"}, "latest_revision": 3, "key": "/works/OL11628920W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4912100A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T05:00:17.713834"}, "title": "An experiment in modeling Rocky Mountain forest ecosystems", "subject_places": ["Rocky Mountains"], "subjects": ["Forest ecology", "Growth", "Aspen", "Mathematical models"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11629563W 3 2010-12-03T19:53:30.044135 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T19:53:30.044135"}, "title": "Lan'gong an quan chuan", "created": {"type": "/type/datetime", "value": "2009-12-11T05:00:26.023935"}, "subjects": ["Chinese Detective and mystery stories", "Detective and mystery stories, Chinese"], "latest_revision": 3, "key": "/works/OL11629563W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4912525A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11629578W 1 2009-12-11T05:00:26.023935 {"title": "La souveraine ; roman", "created": {"type": "/type/datetime", "value": "2009-12-11T05:00:26.023935"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:00:26.023935"}, "latest_revision": 1, "key": "/works/OL11629578W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4912528A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11629650W 1 2009-12-11T05:00:26.023935 {"title": "Shanghai n\u00fc xing", "created": {"type": "/type/datetime", "value": "2009-12-11T05:00:26.023935"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:00:26.023935"}, "latest_revision": 1, "key": "/works/OL11629650W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4912581A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11629748W 3 2020-08-14T07:20:17.743704 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:00:26.023935"}, "subjects": ["Three bears (Tale)", "Juvenile fiction", "Italian language materials", "Bilingual", "Pictorial works", "Children's fiction", "Bears, fiction", "Animals, folklore", "Fairy tales"], "latest_revision": 3, "key": "/works/OL11629748W", "title": "Riccioli D'Oro e i tre orsi =", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4912652A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-08-14T07:20:17.743704"}, "covers": [10059627], "revision": 3}
+/type/work /works/OL11629959W 2 2010-01-21T01:47:05.739429 {"title": "The \"mission\" of Richard Cobden", "created": {"type": "/type/datetime", "value": "2009-12-11T05:00:26.023935"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T01:47:05.739429"}, "latest_revision": 2, "key": "/works/OL11629959W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4912781A"}}], "subject_people": ["Richard Cobden (1804-1865)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11630269W 2 2010-01-21T01:47:05.739429 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:00:26.023935"}, "title": "Geschichte der Lustseuche im Altertume", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T01:47:05.739429"}, "latest_revision": 2, "key": "/works/OL11630269W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4912981A"}}], "type": {"key": "/type/work"}, "subjects": ["Sexually transmitted diseases", "Sexual deviation"], "revision": 2}
+/type/work /works/OL11630407W 2 2010-01-21T01:51:32.989927 {"title": "The paintings of Pete Johnson 1948-2001", "created": {"type": "/type/datetime", "value": "2009-12-11T05:00:26.023935"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T01:51:32.989927"}, "latest_revision": 2, "key": "/works/OL11630407W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4913075A"}}], "subject_people": ["Pete Johnson (1948-2001)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11630555W 2 2010-01-21T01:51:32.989927 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:00:33.967477"}, "title": "Design of an improved column leaching apparatus for sediments and dredged material", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T01:51:32.989927"}, "latest_revision": 2, "key": "/works/OL11630555W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4913151A"}}], "type": {"key": "/type/work"}, "subjects": ["Leaching", "Spoil banks", "Testing", "Dredging spoil"], "revision": 2}
+/type/work /works/OL116313W 6 2019-11-26T09:20:34.296760 {"description": {"type": "/type/text", "value": "\"There's pirates in the West Indies. Cannibals. They cook you alive,\" says Mr. Spencer to his son. These words will come to haunt 17-year-old John as he embarks on his first voyage to foreign lands. Carrying cargo destined for Jamaica, John and his crew of the Dragon set off for waters few of them have sailed before. So when they come upon a lifeboat adrift at sea, some are wary of the sailor aboard. Something about his story doesn't quite make sense. Still, John respects the stranger's awe-inspiring seamanship. With Horn on deck, he feels the Dragon is in the best of hands.But is Horn to be trusted? The answer becomes muddled as the Dragon encounters a very real -- and very dangerous -- pirate ship. Now John starts to believe his father's warnings, especially after he becomes stranded on an island reputed to have buried treasure. A place teeming with buccaneers!From the Hardcover edition."}, "last_modified": {"type": "/type/datetime", "value": "2019-11-26T09:20:34.296760"}, "title": "The buccaneers", "created": {"type": "/type/datetime", "value": "2009-10-18T05:16:23.492575"}, "covers": [239682], "subject_places": ["Caribbean Area"], "subjects": ["Fiction", "Pirates", "Adventure and adventurers", "Seafaring life", "Ships", "Juvenile Fiction", "Large type books"], "latest_revision": 6, "key": "/works/OL116313W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL29780A"}}], "type": {"key": "/type/work"}, "revision": 6}
+/type/work /works/OL11631511W 1 2009-12-11T05:00:33.967477 {"title": "Nhung manh toi gao cho nuoc song", "created": {"type": "/type/datetime", "value": "2009-12-11T05:00:33.967477"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:00:33.967477"}, "latest_revision": 1, "key": "/works/OL11631511W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4913797A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11631744W 3 2012-06-12T18:39:53.960437 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:00:41.766761"}, "subject_places": ["United States"], "subjects": ["Congresses", "Aeronautics", "Aeronautics and state"], "latest_revision": 3, "key": "/works/OL11631744W", "title": "Panel on Science and Technology, Sixth Meeting", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4913928A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-06-12T18:39:53.960437"}, "revision": 3}
+/type/work /works/OL11632034W 1 2009-12-11T05:00:41.766761 {"title": "Are Green politics here to stay and must they clash with Red?", "created": {"type": "/type/datetime", "value": "2009-12-11T05:00:41.766761"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:00:41.766761"}, "latest_revision": 1, "key": "/works/OL11632034W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4914166A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11632152W 2 2010-01-21T01:55:50.558179 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:00:41.766761"}, "title": "Determinants of the farm-to-retail milk price spread", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T01:55:50.558179"}, "latest_revision": 2, "key": "/works/OL11632152W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4914239A"}}], "type": {"key": "/type/work"}, "subjects": ["Prices", "Marketing", "Milk", "Dairy products"], "revision": 2}
+/type/work /works/OL11632266W 2 2010-01-21T01:55:50.558179 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:00:41.766761"}, "title": "Effects of ambient light on gill net catches of coho and chum salmon in experimental fishing in Clarence Strait, Alaska", "subject_places": ["Alaska"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T01:55:50.558179"}, "latest_revision": 2, "key": "/works/OL11632266W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4914320A"}}], "type": {"key": "/type/work"}, "subjects": ["Salmon fisheries", "Fishes", "Catch effort", "Effect of light on"], "revision": 2}
+/type/work /works/OL11632451W 3 2022-11-18T03:40:29.452017 {"title": "Odl-dodl Dolig", "key": "/works/OL11632451W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4914424A"}}], "type": {"key": "/type/work"}, "subjects": ["Christmas", "Juvenile fiction", "Juvenile poetry", "Children's fiction", "Christmas, fiction"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T05:00:41.766761"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-18T03:40:29.452017"}}
+/type/work /works/OL11632461W 1 2009-12-11T05:00:41.766761 {"title": "Guidance for the peer review & observation process", "created": {"type": "/type/datetime", "value": "2009-12-11T05:00:41.766761"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:00:41.766761"}, "latest_revision": 1, "key": "/works/OL11632461W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4914433A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11632538W 1 2009-12-11T05:00:41.766761 {"title": "East Wemyss Primary School Nursery Class: an inspection by the Care Commission and HM Inspectorate of Education on 9th March 2005.", "created": {"type": "/type/datetime", "value": "2009-12-11T05:00:41.766761"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:00:41.766761"}, "latest_revision": 1, "key": "/works/OL11632538W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4914461A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11633136W 2 2010-01-21T01:55:50.558179 {"title": "The voyage of Captain Thomas James for the discovery of the Northwest Passage, 1631", "created": {"type": "/type/datetime", "value": "2009-12-11T05:00:50.128941"}, "subject_places": ["Northwest Passage"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T01:55:50.558179"}, "latest_revision": 2, "key": "/works/OL11633136W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4914844A"}}], "subject_people": ["Thomas James (1593?-1635?)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11633495W 2 2010-01-21T02:00:10.324970 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:00:50.128941"}, "title": "British continuity in one area of early Anglo-Saxon Worcestershire", "subject_places": ["Great Britain"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T02:00:10.324970"}, "latest_revision": 2, "key": "/works/OL11633495W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4915086A"}}], "subject_times": ["Anglo-Saxon period, 449-1066"], "type": {"key": "/type/work"}, "subjects": ["History"], "revision": 2}
+/type/work /works/OL1163361W 2 2022-09-28T17:03:12.947745 {"title": "Wind on the heath", "key": "/works/OL1163361W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2775205A"}}], "type": {"key": "/type/work"}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-09T20:37:20.745219"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-28T17:03:12.947745"}}
+/type/work /works/OL11634068W 1 2009-12-11T05:00:57.220852 {"title": "Affinities of the Tridactylidae (Orthoptera saltatoria)", "created": {"type": "/type/datetime", "value": "2009-12-11T05:00:57.220852"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:00:57.220852"}, "latest_revision": 1, "key": "/works/OL11634068W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4915449A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11634217W 3 2010-12-03T16:37:47.029054 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T16:37:47.029054"}, "title": "Usmeno pjesni\u0161tvo u obzorju knji\u017eevnosti", "created": {"type": "/type/datetime", "value": "2009-12-11T05:00:57.220852"}, "subjects": ["Croatian Folk literature", "Croatian literature", "Folk literature, Croatian", "Folklore in literature", "History and criticism"], "latest_revision": 3, "key": "/works/OL11634217W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4915542A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1163422W 2 2010-12-03T19:36:30.333609 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T19:36:30.333609"}, "title": "Perpetual adoration and the work for poor churches", "created": {"type": "/type/datetime", "value": "2009-12-09T20:37:20.745219"}, "subjects": ["Association of Perpetual Adoration and Work for Poor Churches and Foreign Missions"], "latest_revision": 2, "key": "/works/OL1163422W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL117754A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11634747W 1 2009-12-11T05:01:04.818611 {"title": "The efficacy of the Western counselling model when applied to Asian clients", "created": {"type": "/type/datetime", "value": "2009-12-11T05:01:04.818611"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:01:04.818611"}, "latest_revision": 1, "key": "/works/OL11634747W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4915851A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11634749W 1 2009-12-11T05:01:04.818611 {"title": "The Great Exhibition", "created": {"type": "/type/datetime", "value": "2009-12-11T05:01:04.818611"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:01:04.818611"}, "latest_revision": 1, "key": "/works/OL11634749W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4915853A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11635355W 1 2009-12-11T05:01:04.818611 {"title": "MAPV", "created": {"type": "/type/datetime", "value": "2009-12-11T05:01:04.818611"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:01:04.818611"}, "latest_revision": 1, "key": "/works/OL11635355W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4916261A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11635708W 2 2010-01-21T02:04:50.281704 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:01:11.737092"}, "title": "Alt-Hannover", "subject_places": ["Hannover (Germany)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T02:04:50.281704"}, "latest_revision": 2, "key": "/works/OL11635708W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4916501A"}}], "type": {"key": "/type/work"}, "subjects": ["Views", "Description", "History"], "revision": 2}
+/type/work /works/OL11636462W 11 2021-11-02T03:12:31.626706 {"covers": [381728], "key": "/works/OL11636462W", "authors": [{"author": {"key": "/authors/OL4916927A"}, "type": {"key": "/type/author_role"}}, {"author": {"key": "/authors/OL39329A"}, "type": {"key": "/type/author_role"}}], "title": "The Testament (adaptation)", "subject_places": ["United States", "Brazil"], "subjects": ["Life change events", "Lawyers", "Fiction", "Inheritance and succession", "Billionaires", "Women missionaries", "Fiction, legal", "Fiction, suspense", "Fiction, thrillers, general", "Brazil, fiction", "Fiction, religious", "Fiction, thrillers, suspense"], "type": {"key": "/type/work"}, "latest_revision": 11, "revision": 11, "created": {"type": "/type/datetime", "value": "2009-12-11T05:01:11.737092"}, "last_modified": {"type": "/type/datetime", "value": "2021-11-02T03:12:31.626706"}}
+/type/work /works/OL11636864W 3 2012-05-20T00:16:06.287631 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:01:17.937442"}, "subject_places": ["Eastern Europe", "Baltic States"], "subjects": ["Politics and government", "Communism"], "latest_revision": 3, "key": "/works/OL11636864W", "title": "Conditions in the Baltic States and in other countries of Eastern Europe", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1747078A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-20T00:16:06.287631"}, "revision": 3}
+/type/work /works/OL1163689W 3 2010-08-18T15:08:51.226962 {"subtitle": "(full version)", "last_modified": {"type": "/type/datetime", "value": "2010-08-18T15:08:51.226962"}, "latest_revision": 3, "key": "/works/OL1163689W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL117766A"}}], "created": {"type": "/type/datetime", "value": "2009-12-09T20:37:20.745219"}, "title": "Serenade to a sister", "subjects": ["Poetry"], "subject_people": ["Edith Sitwell Dame (1887-1964)"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11636908W 1 2009-12-11T05:01:17.937442 {"title": "Carers and disabled children bill first sitting", "created": {"type": "/type/datetime", "value": "2009-12-11T05:01:17.937442"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:01:17.937442"}, "latest_revision": 1, "key": "/works/OL11636908W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4917179A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1163725W 3 2010-08-18T15:11:10.561833 {"subtitle": "a study of J.S. Bach's organ preludes and fugues", "last_modified": {"type": "/type/datetime", "value": "2010-08-18T15:11:10.561833"}, "latest_revision": 3, "key": "/works/OL1163725W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL117766A"}}], "created": {"type": "/type/datetime", "value": "2009-12-09T20:37:20.745219"}, "title": "Fugue", "subjects": ["Organ music", "Analysis, appreciation"], "subject_people": ["Johann Sebastian Bach (1685-1750)"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11637355W 3 2010-12-03T16:49:36.170697 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T16:49:36.170697"}, "title": "An Act for international development", "created": {"type": "/type/datetime", "value": "2009-12-11T05:01:17.937442"}, "subjects": ["American Economic assistance", "Economic assistance, American", "United States", "United States. Agency for International Development"], "latest_revision": 3, "key": "/works/OL11637355W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4917332A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11637956W 2 2010-01-21T02:13:45.774837 {"title": "Elijah, the man of God", "created": {"type": "/type/datetime", "value": "2009-12-11T05:01:25.499296"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T02:13:45.774837"}, "latest_revision": 2, "key": "/works/OL11637956W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4917710A"}}], "subject_people": ["Elijah"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11638119W 1 2009-12-11T05:01:25.499296 {"title": "Strategic planning for sport", "created": {"type": "/type/datetime", "value": "2009-12-11T05:01:25.499296"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:01:25.499296"}, "latest_revision": 1, "key": "/works/OL11638119W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4917792A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1163813W 2 2010-01-21T02:13:45.774837 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:37:20.745219"}, "title": "Lendas africanas dos orixa\u0301s", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T02:13:45.774837"}, "latest_revision": 2, "key": "/works/OL1163813W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL117770A"}}], "type": {"key": "/type/work"}, "subjects": ["Orishas"], "revision": 2}
+/type/work /works/OL11638363W 1 2009-12-11T05:01:25.499296 {"title": "Infantry Uniforms of the British Army", "created": {"type": "/type/datetime", "value": "2009-12-11T05:01:25.499296"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:01:25.499296"}, "latest_revision": 1, "key": "/works/OL11638363W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4917924A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11638455W 1 2009-12-11T05:01:25.499296 {"title": "How to guide a blind person", "created": {"type": "/type/datetime", "value": "2009-12-11T05:01:25.499296"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:01:25.499296"}, "latest_revision": 1, "key": "/works/OL11638455W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4917959A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11638649W 2 2010-01-21T02:13:45.774837 {"title": "Froissart", "created": {"type": "/type/datetime", "value": "2009-12-11T05:01:31.365475"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T02:13:45.774837"}, "latest_revision": 2, "key": "/works/OL11638649W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4918068A"}}], "subject_people": ["Jean Froissart (1338?-1410?)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11638801W 1 2009-12-11T05:01:31.365475 {"title": "Wire Ropes", "created": {"type": "/type/datetime", "value": "2009-12-11T05:01:31.365475"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:01:31.365475"}, "latest_revision": 1, "key": "/works/OL11638801W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4918146A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11639015W 2 2010-01-21T02:13:45.774837 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:01:31.365475"}, "title": "Kuang ye gong cheng ming ci", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T02:13:45.774837"}, "latest_revision": 2, "key": "/works/OL11639015W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4918265A"}}], "type": {"key": "/type/work"}, "subjects": ["Dictionaries", "Chinese", "Metallurgy", "English language", "Mineralogy"], "revision": 2}
+/type/work /works/OL11639280W 2 2021-05-03T15:19:34.426018 {"title": "English partnerships", "key": "/works/OL11639280W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4491688A"}}], "type": {"key": "/type/work"}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T05:01:31.365475"}, "last_modified": {"type": "/type/datetime", "value": "2021-05-03T15:19:34.426018"}}
+/type/work /works/OL11640174W 2 2010-01-21T02:18:07.575065 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:01:37.529933"}, "title": "Report of the committee for the introduction of wholesome water into the city of Philadelphia", "subject_places": ["Pennsylvania", "Philadelphia"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T02:18:07.575065"}, "latest_revision": 2, "key": "/works/OL11640174W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4918731A"}}], "type": {"key": "/type/work"}, "subjects": ["Water-supply"], "revision": 2}
+/type/work /works/OL11640338W 1 2009-12-11T05:01:37.529933 {"title": "A gerac\u0327a\u0303o de 70", "created": {"type": "/type/datetime", "value": "2009-12-11T05:01:37.529933"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:01:37.529933"}, "latest_revision": 1, "key": "/works/OL11640338W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4918845A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11640444W 4 2011-06-17T12:18:10.103712 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:01:37.529933"}, "subject_places": ["United States"], "subjects": ["Bills, Private", "Claims", "Private Bills", "United States", "United States. Congress"], "latest_revision": 4, "key": "/works/OL11640444W", "title": "Presbyterian Church at Princeton, New Jersey. (To accompany bill H.R. no. 725.)", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4918550A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2011-06-17T12:18:10.103712"}, "revision": 4}
+/type/work /works/OL11640538W 3 2010-12-03T15:16:04.618097 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:16:04.618097"}, "title": "To employ stenographer to report hearings, Committee on Military Affairs", "created": {"type": "/type/datetime", "value": "2009-12-11T05:01:37.529933"}, "subjects": ["Officials and employees", "Stenographers", "United States", "United States. Congress", "United States. Congress. Senate. Committee on Military Affairs"], "latest_revision": 3, "key": "/works/OL11640538W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4918942A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11641050W 3 2012-05-09T10:21:59.215543 {"last_modified": {"type": "/type/datetime", "value": "2012-05-09T10:21:59.215543"}, "title": "Public property in the Post Office Department. Letter from the Postmaster General, transmitting report of the public property in the Post Office Department on December 1, 1919", "created": {"type": "/type/datetime", "value": "2009-12-11T05:01:45.018256"}, "subjects": ["Government property", "Property"], "latest_revision": 3, "key": "/works/OL11641050W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4835475A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11641076W 2 2010-01-21T02:22:43.630965 {"title": "Life of Jane Welsh Carlyle", "created": {"type": "/type/datetime", "value": "2009-12-11T05:01:45.018256"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T02:22:43.630965"}, "latest_revision": 2, "key": "/works/OL11641076W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4919280A"}}], "subject_people": ["Jane Welsh Carlyle (1801-1866)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11641078W 1 2009-12-11T05:01:45.018256 {"title": "The Colston statue", "created": {"type": "/type/datetime", "value": "2009-12-11T05:01:45.018256"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:01:45.018256"}, "latest_revision": 1, "key": "/works/OL11641078W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4919281A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11641202W 2 2010-01-21T02:22:43.630965 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:01:45.018256"}, "title": "Spokane and Cour D'Alene Railway Company", "subject_places": ["Washington (State)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T02:22:43.630965"}, "latest_revision": 2, "key": "/works/OL11641202W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4919341A"}}], "type": {"key": "/type/work"}, "subjects": ["Corporations", "Railroads"], "revision": 2}
+/type/work /works/OL11641275W 2 2010-01-21T02:22:43.630965 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:01:45.018256"}, "title": "Soils of the Luton and Bedford district", "subject_places": ["England", "Luton District", "Bedford District", "Bedfordshire"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T02:22:43.630965"}, "latest_revision": 2, "key": "/works/OL11641275W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4919376A"}}], "type": {"key": "/type/work"}, "subjects": ["Soil surveys", "Soil-surveys"], "revision": 2}
+/type/work /works/OL11641469W 1 2009-12-11T05:01:45.018256 {"title": "Researching the organisation and presentation to primary teachers of the 1999 primary maths curriculum", "created": {"type": "/type/datetime", "value": "2009-12-11T05:01:45.018256"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:01:45.018256"}, "latest_revision": 1, "key": "/works/OL11641469W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4919511A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11641753W 2 2010-01-21T02:22:43.630965 {"title": "Mushroom", "created": {"type": "/type/datetime", "value": "2009-12-11T05:01:49.073021"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T02:22:43.630965"}, "latest_revision": 2, "key": "/works/OL11641753W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4919682A"}}], "subject_people": ["Guo-Qiang Cai (1957-)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11641778W 4 2012-05-17T21:47:12.964187 {"last_modified": {"type": "/type/datetime", "value": "2012-05-17T21:47:12.964187"}, "title": "Expenditures in the District of Columbia. Letter from the Secretary of the Treasury in answer to a resolution of the House of February 11, transmitting a statement of the expenditures for public and private purposes in the District of Columbia, from the establishment of the seat of government to the 31st of December, 1869", "created": {"type": "/type/datetime", "value": "2009-12-11T05:01:49.073021"}, "subjects": ["Expenditures, Public", "Public Expenditures"], "latest_revision": 4, "key": "/works/OL11641778W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2325418A"}}], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL11642068W 2 2010-01-21T02:22:43.630965 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:01:49.073021"}, "title": "Aliens entering the United States in Violation of Law", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T02:22:43.630965"}, "latest_revision": 2, "key": "/works/OL11642068W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4919835A"}}], "type": {"key": "/type/work"}, "subjects": ["Aliens"], "revision": 2}
+/type/work /works/OL11642125W 3 2010-12-03T15:24:44.748634 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:24:44.748634"}, "title": "Applying the powers of the Federal Government to extortion by means of telephone, telegraph, radio, oral message, or otherwise", "created": {"type": "/type/datetime", "value": "2009-12-11T05:01:49.073021"}, "subjects": ["Conference committees", "Crime", "Radio", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL11642125W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4919835A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11642364W 3 2010-12-03T15:19:46.948475 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:01:49.073021"}, "subject_places": ["United States"], "subjects": ["Budget", "Conference committees", "United States", "United States. Congress"], "latest_revision": 3, "key": "/works/OL11642364W", "title": "Executive Office and independent offices appropriation bill", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4919835A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:19:46.948475"}, "revision": 3}
+/type/work /works/OL11642601W 3 2010-12-03T15:22:34.234468 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:22:34.234468"}, "title": "Promotion of vocational rehabilitation of persons disabled in industry or otherwise aid their return to civil employment", "created": {"type": "/type/datetime", "value": "2009-12-11T05:01:53.676816"}, "subjects": ["Conference committees", "United States", "United States. Congress", "Vocational rehabilitation"], "latest_revision": 3, "key": "/works/OL11642601W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4919835A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11642852W 2 2010-01-21T02:26:49.522530 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:01:53.676816"}, "title": "Yosemite National Park", "subject_places": ["California", "Yosemite National Park (Calif.)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T02:26:49.522530"}, "latest_revision": 2, "key": "/works/OL11642852W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4919835A"}}], "type": {"key": "/type/work"}, "subjects": ["Public lands"], "revision": 2}
+/type/work /works/OL11643217W 1 2009-12-11T05:01:53.676816 {"title": "Information sources on Saudi Arabia", "created": {"type": "/type/datetime", "value": "2009-12-11T05:01:53.676816"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:01:53.676816"}, "latest_revision": 1, "key": "/works/OL11643217W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4919982A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11643491W 1 2009-12-11T05:01:53.676816 {"title": "Sony Digital Still Camera Battery", "created": {"type": "/type/datetime", "value": "2009-12-11T05:01:53.676816"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:01:53.676816"}, "latest_revision": 1, "key": "/works/OL11643491W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4920127A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11643610W 1 2009-12-11T05:01:59.939429 {"title": "Pathfinders' progress", "created": {"type": "/type/datetime", "value": "2009-12-11T05:01:59.939429"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:01:59.939429"}, "latest_revision": 1, "key": "/works/OL11643610W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4920201A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11644290W 3 2020-11-18T06:02:42.477505 {"last_modified": {"type": "/type/datetime", "value": "2020-11-18T06:02:42.477505"}, "title": "al- Ashb\u0101h wa-al-na\u1e93\u0101\u02beir", "created": {"type": "/type/datetime", "value": "2009-12-11T05:01:59.939429"}, "subjects": ["Islamic law", "Early works to 1800", "Interpretation and construction"], "latest_revision": 3, "key": "/works/OL11644290W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4920552A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL116443W 2 2010-01-21T02:31:01.748415 {"title": "Kabbalah and criticism", "created": {"type": "/type/datetime", "value": "2009-10-18T05:16:23.492575"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T02:31:01.748415"}, "latest_revision": 2, "key": "/works/OL116443W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL29809A"}}], "type": {"key": "/type/work"}, "subjects": ["Criticism", "Cabala", "History and criticism", "History"], "revision": 2}
+/type/work /works/OL11644507W 2 2010-01-21T02:31:01.748415 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:01:59.939429"}, "title": "An account of the Free-School Society of New York", "subject_places": ["New York (State)", "New York"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T02:31:01.748415"}, "latest_revision": 2, "key": "/works/OL11644507W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4920673A"}}], "type": {"key": "/type/work"}, "subjects": ["Education"], "revision": 2}
+/type/work /works/OL11644897W 2 2010-01-21T02:31:01.748415 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:02:07.378666"}, "title": "Generg\u00e9tica", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T02:31:01.748415"}, "latest_revision": 2, "key": "/works/OL11644897W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4920926A"}}], "type": {"key": "/type/work"}, "subjects": ["Force and energy"], "revision": 2}
+/type/work /works/OL11644925W 1 2009-12-11T05:02:07.378666 {"title": "St. John's Methodist Church", "created": {"type": "/type/datetime", "value": "2009-12-11T05:02:07.378666"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:02:07.378666"}, "latest_revision": 1, "key": "/works/OL11644925W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4920947A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11644953W 2 2010-01-21T02:31:01.748415 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:02:07.378666"}, "title": "Award of the Fishery Commission. Documents and proceedings of the Halifax Commission, 1877, under the Treaty of Washington of May 8, 1871. Volume I", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T02:31:01.748415"}, "latest_revision": 2, "key": "/works/OL11644953W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4920969A"}}], "type": {"key": "/type/work"}, "subjects": ["Fishes", "Government publications", "Treaties"], "revision": 2}
+/type/work /works/OL11645099W 1 2009-12-11T05:02:07.378666 {"title": "Pegi a'r gacen", "created": {"type": "/type/datetime", "value": "2009-12-11T05:02:07.378666"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:02:07.378666"}, "latest_revision": 1, "key": "/works/OL11645099W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4921085A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11645141W 3 2010-12-03T14:45:28.883041 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:02:07.378666"}, "subject_places": ["Salerno (Italy)"], "subjects": ["Badia di Cava", "History", "Italy", "Monasteries"], "latest_revision": 3, "key": "/works/OL11645141W", "title": "Minima cavensia", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4921117A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:45:28.883041"}, "revision": 3}
+/type/work /works/OL11645183W 1 2009-12-11T05:02:07.378666 {"title": "The biological and subjective effects of lighting in the ward environment", "created": {"type": "/type/datetime", "value": "2009-12-11T05:02:07.378666"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:02:07.378666"}, "latest_revision": 1, "key": "/works/OL11645183W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4921144A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11645366W 3 2010-12-03T14:46:47.029407 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:02:07.378666"}, "subjects": ["Catholic authors", "Christian ethics", "Doctrinal Theology", "Theology, Doctrinal"], "latest_revision": 3, "key": "/works/OL11645366W", "title": "Institvtionvm moralivm", "subject_times": ["Early works to 1800"], "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4921268A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:46:47.029407"}, "revision": 3}
+/type/work /works/OL11645527W 1 2009-12-11T05:02:07.378666 {"title": "The story of the Stourbridge Institute and Social Club, 1834-1948", "created": {"type": "/type/datetime", "value": "2009-12-11T05:02:07.378666"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:02:07.378666"}, "latest_revision": 1, "key": "/works/OL11645527W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4921369A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11645713W 3 2010-12-03T14:45:28.883041 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:02:14.702996"}, "subjects": ["Golden Cockerel Press"], "subject_people": ["Robert Gibbings"], "key": "/works/OL11645713W", "title": "Robert Gibbings", "latest_revision": 3, "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4921500A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:45:28.883041"}, "revision": 3}
+/type/work /works/OL11645837W 1 2009-12-11T05:02:14.702996 {"title": "The church and the children", "created": {"type": "/type/datetime", "value": "2009-12-11T05:02:14.702996"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:02:14.702996"}, "latest_revision": 1, "key": "/works/OL11645837W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4921567A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11645950W 1 2009-12-11T05:02:14.702996 {"title": "The Minutes of the Annual Conference held in Blackpool, June 1996 and Annual Directory", "created": {"type": "/type/datetime", "value": "2009-12-11T05:02:14.702996"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:02:14.702996"}, "latest_revision": 1, "key": "/works/OL11645950W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4921638A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11646374W 1 2009-12-11T05:02:14.702996 {"title": "Evidence submitted", "created": {"type": "/type/datetime", "value": "2009-12-11T05:02:14.702996"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:02:14.702996"}, "latest_revision": 1, "key": "/works/OL11646374W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4921888A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11646771W 2 2012-07-13T00:09:36.214295 {"title": "Minutes and record of the proceedings of the twenty-first biennial delegate conference held on July 5, 6, 7, 8 and 9, 1965, in the Guildhall, Portsmouth, Hampshire", "created": {"type": "/type/datetime", "value": "2009-12-11T05:02:22.106014"}, "last_modified": {"type": "/type/datetime", "value": "2012-07-13T00:09:36.214295"}, "latest_revision": 2, "key": "/works/OL11646771W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4922117A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11647159W 1 2009-12-11T05:02:22.106014 {"title": "Studies of the small-mouthed black bass in Ontario", "created": {"type": "/type/datetime", "value": "2009-12-11T05:02:22.106014"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:02:22.106014"}, "latest_revision": 1, "key": "/works/OL11647159W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4922319A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11647505W 1 2009-12-11T05:02:22.106014 {"title": "A short commentary, with strictures, on certain parts of the moral writings of Dr. Paley &c Mr. Gisborne", "created": {"type": "/type/datetime", "value": "2009-12-11T05:02:22.106014"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:02:22.106014"}, "latest_revision": 1, "key": "/works/OL11647505W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4922514A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11647955W 3 2010-12-03T14:48:30.305389 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:48:30.305389"}, "title": "What period do you belong to?", "created": {"type": "/type/datetime", "value": "2009-12-11T05:02:29.670625"}, "subjects": ["Files and filing (Documents)", "Office equipment and supplies"], "latest_revision": 3, "key": "/works/OL11647955W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4922810A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11648299W 2 2010-01-21T02:40:21.100989 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:02:29.670625"}, "title": "\u017dena v hnuti husitskem", "subject_places": ["Bohemia (Czech Republic)", "Czech Republic"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T02:40:21.100989"}, "latest_revision": 2, "key": "/works/OL11648299W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4923044A"}}], "subject_times": ["1403-1526"], "type": {"key": "/type/work"}, "subjects": ["History", "Women"], "revision": 2}
+/type/work /works/OL11648653W 2 2010-01-21T02:44:53.885749 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:02:36.959451"}, "title": "Befolkning och n\u00e4ringsliv", "subject_places": ["Sweden"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T02:44:53.885749"}, "latest_revision": 2, "key": "/works/OL11648653W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4923244A"}}], "type": {"key": "/type/work"}, "subjects": ["Labor supply", "Population"], "revision": 2}
+/type/work /works/OL11648768W 1 2009-12-11T05:02:36.959451 {"title": "Law of force", "created": {"type": "/type/datetime", "value": "2009-12-11T05:02:36.959451"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:02:36.959451"}, "latest_revision": 1, "key": "/works/OL11648768W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4923296A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11648837W 4 2021-08-13T22:21:04.551345 {"title": "Dangerousness and criminal justice", "covers": [5429145], "subject_places": ["England"], "key": "/works/OL11648837W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4923341A"}}], "subjects": ["Imprisonment", "Prison sentences", "Crime prevention", "Dangerous Behavior", "Legislation & jurisprudence", "Forensic Psychiatry", "Jurisprudence", "Ethics", "Criminal Law", "Criminology", "D\u00e9tention provisoire (Droit anglo-saxon)", "Sentence ind\u00e9termin\u00e9e", "Criminels malades mentaux", "Gevaarlijkheid", "Criminaliteit", "Gevangenisstraf"], "type": {"key": "/type/work"}, "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T05:02:36.959451"}, "last_modified": {"type": "/type/datetime", "value": "2021-08-13T22:21:04.551345"}}
+/type/work /works/OL11649129W 2 2010-01-21T02:44:53.885749 {"title": "The Atlees of Acton, Ealing, Hammersmith, Hillingdon & the U.S.A", "created": {"type": "/type/datetime", "value": "2009-12-11T05:02:36.959451"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T02:44:53.885749"}, "latest_revision": 2, "key": "/works/OL11649129W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4923497A"}}], "subject_people": ["Atlee family"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11649473W 4 2018-01-11T19:57:21.734306 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:02:36.959451"}, "subjects": ["Parliamentary practice"], "latest_revision": 4, "key": "/works/OL11649473W", "title": "Practice and procedure in the Legislative Assembly of the Province of Ontario", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL502751A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2018-01-11T19:57:21.734306"}, "covers": [6051884], "revision": 4}
+/type/work /works/OL11649669W 3 2010-12-03T17:59:42.160068 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T17:59:42.160068"}, "title": "Memorial edition of collected works", "created": {"type": "/type/datetime", "value": "2009-12-11T05:02:44.213458"}, "subjects": ["Collected works", "Unitarian churches"], "latest_revision": 3, "key": "/works/OL11649669W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4923822A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11649683W 1 2009-12-11T05:02:44.213458 {"title": "An addresse to the members of a christian church on the nature, design and obligation of the ordnance of the Lord's supper", "created": {"type": "/type/datetime", "value": "2009-12-11T05:02:44.213458"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:02:44.213458"}, "latest_revision": 1, "key": "/works/OL11649683W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4923829A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1164973W 2 2010-01-21T02:44:53.885749 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:37:36.195034"}, "title": "La route de la servitude", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T02:44:53.885749"}, "latest_revision": 2, "key": "/works/OL1164973W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL117843A"}}], "type": {"key": "/type/work"}, "subjects": ["Economic policy", "Politique \u00e9conomique", "Totalitarianism", "Totalitarisme"], "revision": 2}
+/type/work /works/OL11649758W 2 2010-01-21T02:44:53.885749 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:02:44.213458"}, "title": "T\u00edreolas an do\u1e41ain", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T02:44:53.885749"}, "latest_revision": 2, "key": "/works/OL11649758W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4923871A"}}], "type": {"key": "/type/work"}, "subjects": ["Textbooks", "Geography"], "revision": 2}
+/type/work /works/OL11649941W 2 2019-12-28T01:06:48.428485 {"title": "Psychology of language", "created": {"type": "/type/datetime", "value": "2009-12-11T05:02:44.213458"}, "last_modified": {"type": "/type/datetime", "value": "2019-12-28T01:06:48.428485"}, "latest_revision": 2, "key": "/works/OL11649941W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL363474A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11650003W 1 2009-12-11T05:02:44.213458 {"title": "The economics of British fascism", "created": {"type": "/type/datetime", "value": "2009-12-11T05:02:44.213458"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:02:44.213458"}, "latest_revision": 1, "key": "/works/OL11650003W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4924036A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11650076W 1 2009-12-11T05:02:44.213458 {"title": "Correspondance de Be\u0301ranger", "created": {"type": "/type/datetime", "value": "2009-12-11T05:02:44.213458"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:02:44.213458"}, "latest_revision": 1, "key": "/works/OL11650076W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4924092A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11650357W 2 2010-12-03T14:51:47.672068 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:51:47.672068"}, "title": "The constitution and by-laws of the Marblehead Union Moral Society", "created": {"type": "/type/datetime", "value": "2009-12-11T05:02:44.213458"}, "subjects": ["Marblehead Union Moral Society"], "latest_revision": 2, "key": "/works/OL11650357W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4924259A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11650804W 1 2009-12-11T05:02:51.448380 {"title": "A study of the rational involutorial transformations in space which leave a web of sextic surfaces invariant", "created": {"type": "/type/datetime", "value": "2009-12-11T05:02:51.448380"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:02:51.448380"}, "latest_revision": 1, "key": "/works/OL11650804W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4924578A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11651144W 2 2010-01-21T02:49:30.003913 {"title": "William Scott", "created": {"type": "/type/datetime", "value": "2009-12-11T05:02:51.448380"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T02:49:30.003913"}, "latest_revision": 2, "key": "/works/OL11651144W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4924792A"}}], "subject_people": ["William Scott (1913-1989)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11652042W 2 2010-01-21T02:54:06.374230 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:02:59.433379"}, "title": "Zhi xia =", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T02:54:06.374230"}, "latest_revision": 2, "key": "/works/OL11652042W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4925324A"}}], "subject_times": ["21st century"], "type": {"key": "/type/work"}, "subjects": ["Chinese fiction"], "revision": 2}
+/type/work /works/OL11652058W 1 2009-12-11T05:02:59.433379 {"title": "Recollections of an old lithographer", "created": {"type": "/type/datetime", "value": "2009-12-11T05:02:59.433379"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:02:59.433379"}, "latest_revision": 1, "key": "/works/OL11652058W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4925337A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11652099W 2 2010-01-21T02:54:06.374230 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:02:59.433379"}, "title": "R\u00edo Napo", "subject_places": ["Napo (Province)", "Ecuador", "Napo (Ecuador : Province)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T02:54:06.374230"}, "latest_revision": 2, "key": "/works/OL11652099W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4925368A"}}], "type": {"key": "/type/work"}, "subjects": ["Botany", "Description and travel", "Social conditions", "Indians of South America", "Zoology", "Natural history"], "revision": 2}
+/type/work /works/OL11652277W 1 2009-12-11T05:02:59.433379 {"title": "An insight into multi-tier distributed information systems development through the construction of a rail management system", "created": {"type": "/type/datetime", "value": "2009-12-11T05:02:59.433379"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:02:59.433379"}, "latest_revision": 1, "key": "/works/OL11652277W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4925498A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11652444W 1 2009-12-11T05:02:59.433379 {"title": "An ode to the Duke of Newcastle. By a shepherd", "created": {"type": "/type/datetime", "value": "2009-12-11T05:02:59.433379"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:02:59.433379"}, "latest_revision": 1, "key": "/works/OL11652444W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4925570A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11652975W 3 2010-12-03T14:53:48.818856 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:03:06.763708"}, "subject_places": ["Canada", "Ontario", "Toronto"], "subjects": ["Church and labor", "Street-railroads", "Strikes and lockouts", "Toronto Transportation Commission"], "latest_revision": 3, "key": "/works/OL11652975W", "title": "The criminality of the Toronto Street Railway strike", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4925896A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:53:48.818856"}, "revision": 3}
+/type/work /works/OL1165300W 2 2010-08-11T07:23:10.991799 {"subtitle": "(con numerosas ilustraciones del escritor)", "title": "Ramonismo", "created": {"type": "/type/datetime", "value": "2009-12-09T20:37:36.195034"}, "last_modified": {"type": "/type/datetime", "value": "2010-08-11T07:23:10.991799"}, "latest_revision": 2, "key": "/works/OL1165300W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL117858A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11653030W 2 2010-01-21T02:54:06.374230 {"title": "An old soldier's memories", "created": {"type": "/type/datetime", "value": "2009-12-11T05:03:06.763708"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T02:54:06.374230"}, "latest_revision": 2, "key": "/works/OL11653030W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4925939A"}}], "subject_people": ["S. H. Jones-Parry"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11653463W 1 2009-12-11T05:03:06.763708 {"title": "Laughing woman", "created": {"type": "/type/datetime", "value": "2009-12-11T05:03:06.763708"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:03:06.763708"}, "latest_revision": 1, "key": "/works/OL11653463W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4926200A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11653499W 2 2010-01-21T02:54:06.374230 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:03:06.763708"}, "title": "Sovremennai\ufe20a\ufe21 antropologii\ufe20a\ufe21", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T02:54:06.374230"}, "latest_revision": 2, "key": "/works/OL11653499W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4926222A"}}], "type": {"key": "/type/work"}, "subjects": ["Anthropology", "Collections"], "revision": 2}
+/type/work /works/OL11653837W 1 2009-12-11T05:03:13.753261 {"title": "New Deal for young people", "created": {"type": "/type/datetime", "value": "2009-12-11T05:03:13.753261"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:03:13.753261"}, "latest_revision": 1, "key": "/works/OL11653837W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4926426A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11653956W 1 2009-12-11T05:03:13.753261 {"title": "Rong bing qiao jia ren", "created": {"type": "/type/datetime", "value": "2009-12-11T05:03:13.753261"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:03:13.753261"}, "latest_revision": 1, "key": "/works/OL11653956W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4926486A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11654284W 1 2009-12-11T05:03:13.753261 {"title": "Rich man, poor man", "created": {"type": "/type/datetime", "value": "2009-12-11T05:03:13.753261"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:03:13.753261"}, "latest_revision": 1, "key": "/works/OL11654284W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4926666A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11654392W 2 2010-01-21T02:58:28.907863 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:03:13.753261"}, "title": "Was lebt auf den Sternen?", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T02:58:28.907863"}, "latest_revision": 2, "key": "/works/OL11654392W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4926709A"}}], "type": {"key": "/type/work"}, "subjects": ["Planets", "Stars"], "revision": 2}
+/type/work /works/OL1165480W 3 2010-07-20T15:00:12.770493 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:37:36.195034"}, "title": "Madame de Se\u0301vigne\u0301", "last_modified": {"type": "/type/datetime", "value": "2010-07-20T15:00:12.770493"}, "latest_revision": 3, "key": "/works/OL1165480W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL117878A"}}], "subject_people": ["S\u00e9vign\u00e9, de Madame (1626-1696)"], "subject_times": ["17th century"], "type": {"key": "/type/work"}, "subjects": ["Authors, French", "Biography", "French Authors"], "revision": 3}
+/type/work /works/OL11655019W 1 2009-12-11T05:03:19.232961 {"title": "Angelus", "created": {"type": "/type/datetime", "value": "2009-12-11T05:03:19.232961"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:03:19.232961"}, "latest_revision": 1, "key": "/works/OL11655019W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4926863A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11655174W 1 2009-12-11T05:03:19.232961 {"title": "Institut du Cancer de la Facult\u00e9 de M\u00e9d\u00e9cine de Paris et du Departement de la Seine, 1936", "created": {"type": "/type/datetime", "value": "2009-12-11T05:03:19.232961"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:03:19.232961"}, "latest_revision": 1, "key": "/works/OL11655174W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4926955A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1165558W 2 2010-01-21T02:58:28.907863 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:37:36.195034"}, "title": "Wunderwelt der Orchideen", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T02:58:28.907863"}, "latest_revision": 2, "key": "/works/OL1165558W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL117891A"}}], "type": {"key": "/type/work"}, "subjects": ["Orchids", "Pictorial works"], "revision": 2}
+/type/work /works/OL11655635W 1 2009-12-11T05:03:26.330083 {"title": "NICPRE quarterly", "created": {"type": "/type/datetime", "value": "2009-12-11T05:03:26.330083"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:03:26.330083"}, "latest_revision": 1, "key": "/works/OL11655635W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4927269A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11656266W 1 2009-12-11T05:03:26.330083 {"title": "Faculty of Arts and Social Sciences", "created": {"type": "/type/datetime", "value": "2009-12-11T05:03:26.330083"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:03:26.330083"}, "latest_revision": 1, "key": "/works/OL11656266W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4927629A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11656531W 3 2010-12-03T14:56:36.655729 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:56:36.655729"}, "title": "Sport-confidence and perceptions of coaching behavior of male and female high school basketball players", "created": {"type": "/type/datetime", "value": "2009-12-11T05:03:26.330083"}, "subjects": ["Basketball players", "Coach-athlete relationships", "Coaching (Athletics)", "High school athletes", "Psychological aspects", "Psychological aspects of Coach-athlete relationships", "Psychological aspects of Coaching (Athletics)", "Psychology", "Self-confidence"], "latest_revision": 3, "key": "/works/OL11656531W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4927789A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11656611W 2 2010-01-21T03:02:52.560754 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:03:34.001473"}, "title": "ECON", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T03:02:52.560754"}, "latest_revision": 2, "key": "/works/OL11656611W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4927844A"}}], "type": {"key": "/type/work"}, "subjects": ["Mathematical models", "Investments", "Programmable calculators", "Forest management"], "revision": 2}
+/type/work /works/OL11656648W 3 2010-12-03T14:54:35.092091 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:03:34.001473"}, "subject_places": ["Birmingham", "England"], "subjects": ["Central School of Arts and Crafts (London, England)", "Central School of Arts and Crafts (London, England). Birmingham School of Printing", "Printing"], "latest_revision": 3, "key": "/works/OL11656648W", "title": "Catalogue of books produced at the City of Birmingham School of Printing", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4927872A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:54:35.092091"}, "revision": 3}
+/type/work /works/OL11656774W 2 2010-01-21T03:02:52.560754 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:03:34.001473"}, "title": "Impacts of stump uprooting on a gravelly sandy loam soil and planted Douglas-fir seedlings in south-coastal British Columbia", "subject_places": ["British Columbia", "Colombie-Britannique"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T03:02:52.560754"}, "latest_revision": 2, "key": "/works/OL11656774W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4927966A"}}], "type": {"key": "/type/work"}, "subjects": ["Plants", "Stations sylvicoles", "Sapin de Douglas", "For\u00eats", "Classification", "Forest site quality", "Forest productivity", "Seedlings", "Sols forestiers", "Productivit\u00e9", "Forest soils", "Douglas fir"], "revision": 2}
+/type/work /works/OL11656858W 4 2022-12-29T11:33:47.232427 {"title": "Die Entstehung der israelitischen Religion", "key": "/works/OL11656858W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4928025A"}}], "type": {"key": "/type/work"}, "subjects": ["Judaism", "History"], "covers": [11860284], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T05:03:34.001473"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-29T11:33:47.232427"}}
+/type/work /works/OL11656963W 1 2009-12-11T05:03:34.001473 {"title": "While You Slept", "created": {"type": "/type/datetime", "value": "2009-12-11T05:03:34.001473"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:03:34.001473"}, "latest_revision": 1, "key": "/works/OL11656963W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4928070A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11657157W 2 2010-01-21T03:02:52.560754 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:03:34.001473"}, "title": "Software change management processes in the development of embedded software", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T03:02:52.560754"}, "latest_revision": 2, "key": "/works/OL11657157W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4928206A"}}], "type": {"key": "/type/work"}, "subjects": ["Management", "Development", "Embedded computer systems", "Software engineering", "Computer software"], "revision": 2}
+/type/work /works/OL11657543W 3 2010-04-28T07:23:32.955928 {"title": "Contribution \u00e0 l'\u00e9tude du vocabulaire d'Alphonse Daudet", "created": {"type": "/type/datetime", "value": "2009-12-11T05:03:34.001473"}, "covers": [6021394], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:23:32.955928"}, "latest_revision": 3, "key": "/works/OL11657543W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4928460A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1165789W 3 2019-10-31T11:28:31.288296 {"covers": [9046766], "last_modified": {"type": "/type/datetime", "value": "2019-10-31T11:28:31.288296"}, "latest_revision": 3, "key": "/works/OL1165789W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL117928A"}}], "created": {"type": "/type/datetime", "value": "2009-12-09T20:37:36.195034"}, "title": "The truth about Poland", "subject_places": ["Poland"], "subjects": ["World War, 1939-1945"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11657934W 1 2009-12-11T05:03:41.221845 {"title": "Qiao bao bei v.s. ku wang ye", "created": {"type": "/type/datetime", "value": "2009-12-11T05:03:41.221845"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:03:41.221845"}, "latest_revision": 1, "key": "/works/OL11657934W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4928700A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11657965W 1 2009-12-11T05:03:41.221845 {"title": "Shi zi lu kou--xi", "created": {"type": "/type/datetime", "value": "2009-12-11T05:03:41.221845"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:03:41.221845"}, "latest_revision": 1, "key": "/works/OL11657965W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4928702A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11658154W 1 2009-12-11T05:03:41.221845 {"title": "Leading in a mangerialist paradigm", "created": {"type": "/type/datetime", "value": "2009-12-11T05:03:41.221845"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:03:41.221845"}, "latest_revision": 1, "key": "/works/OL11658154W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4928825A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11658650W 3 2010-12-03T14:57:13.182580 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:03:48.037759"}, "subject_places": ["Oregon"], "subjects": ["Agriculture", "Oregon Agricultural Experiment Station", "Research"], "latest_revision": 3, "key": "/works/OL11658650W", "title": "Effect of agricultural and home economics research on Oregon's agricultural progress", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4929144A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:57:13.182580"}, "revision": 3}
+/type/work /works/OL11658945W 2 2010-01-21T03:11:17.938087 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:03:48.037759"}, "title": "Hay drying in Oregon", "subject_places": ["Oregon"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T03:11:17.938087"}, "latest_revision": 2, "key": "/works/OL11658945W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4929339A"}}], "type": {"key": "/type/work"}, "subjects": ["Hay", "Drying"], "revision": 2}
+/type/work /works/OL11659254W 1 2009-12-11T05:03:48.037759 {"title": "Prototype lexical analysis image retrieval system", "created": {"type": "/type/datetime", "value": "2009-12-11T05:03:48.037759"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:03:48.037759"}, "latest_revision": 1, "key": "/works/OL11659254W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4929563A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL116592W 1 2009-10-18T05:16:23.492575 {"created": {"type": "/type/datetime", "value": "2009-10-18T05:16:23.492575"}, "title": "MYSTERY CAT", "last_modified": {"type": "/type/datetime", "value": "2009-10-18T05:16:23.492575"}, "latest_revision": 1, "key": "/works/OL116592W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL29834A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11659480W 2 2010-01-21T03:11:17.938087 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:03:48.037759"}, "title": "Finishing BC wood species for interior applications", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T03:11:17.938087"}, "latest_revision": 2, "key": "/works/OL11659480W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4929697A"}}], "type": {"key": "/type/work"}, "subjects": ["Wood finishing"], "revision": 2}
+/type/work /works/OL1165983W 1 2009-12-09T20:37:44.797906 {"title": "The fall of France", "created": {"type": "/type/datetime", "value": "2009-12-09T20:37:44.797906"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T20:37:44.797906"}, "latest_revision": 1, "key": "/works/OL1165983W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL117944A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11660221W 2 2010-01-21T03:15:42.483390 {"title": "Vita di Jacobo Sannazaro", "created": {"type": "/type/datetime", "value": "2009-12-11T05:04:00.754880"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T03:15:42.483390"}, "latest_revision": 2, "key": "/works/OL11660221W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4930204A"}}], "subject_people": ["Jacopo Sannazaro (1458-1530)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11660632W 3 2022-09-02T05:16:07.537592 {"title": "Shark and other stories from a lifetime at sea", "key": "/works/OL11660632W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4930449A"}}], "subject_people": ["Bob Jackman"], "type": {"key": "/type/work"}, "covers": [12882084], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T05:04:10.300926"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-02T05:16:07.537592"}}
+/type/work /works/OL11661023W 2 2010-01-21T03:15:42.483390 {"title": "Der Nus bei Plotin und das Verbum bei Augustinus als vorbildliche Ursache der Welt", "created": {"type": "/type/datetime", "value": "2009-12-11T05:04:10.300926"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T03:15:42.483390"}, "latest_revision": 2, "key": "/works/OL11661023W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4930700A"}}], "subject_people": ["Plotinus", "Augustine Saint, Bishop of Hippo"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11661027W 2 2010-01-21T03:15:42.483390 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:04:10.300926"}, "title": "Measuring the effect of public labor exchange (PLX) referrals and placments [sic] in Washington and Oregon", "subject_places": ["Washington (State)", "Oregon"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T03:15:42.483390"}, "latest_revision": 2, "key": "/works/OL11661027W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4930703A"}}], "type": {"key": "/type/work"}, "subjects": ["Services for", "Unemployed", "Evaluation", "Employment agencies"], "revision": 2}
+/type/work /works/OL11661111W 2 2010-01-21T03:15:42.483390 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:04:10.300926"}, "title": "A people prepared", "subject_places": ["Africa"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T03:15:42.483390"}, "latest_revision": 2, "key": "/works/OL11661111W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4930763A"}}], "type": {"key": "/type/work"}, "subjects": ["Religion", "Bantu-speaking peoples", "Religious thought", "Christianity"], "revision": 2}
+/type/work /works/OL11661555W 1 2009-12-11T05:04:10.300926 {"title": "Numerical development in children with Down syndrome", "created": {"type": "/type/datetime", "value": "2009-12-11T05:04:10.300926"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:04:10.300926"}, "latest_revision": 1, "key": "/works/OL11661555W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4931094A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11661889W 1 2009-12-11T05:04:20.411763 {"title": "An t- orainsear", "created": {"type": "/type/datetime", "value": "2009-12-11T05:04:20.411763"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:04:20.411763"}, "latest_revision": 1, "key": "/works/OL11661889W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4931328A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11662368W 2 2010-12-03T14:58:55.317308 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T14:58:55.317308"}, "title": "Large Engine Technology (LET) task XXXVII low-bypass ratio mixed turbofan engine subsonic jet noise reduction program test report", "created": {"type": "/type/datetime", "value": "2009-12-11T05:04:20.411763"}, "subjects": ["Aeroacoustics", "Bypass ratio", "Engine noise", "Jet aircraft noise", "Noise reduction", "Subsonic flow"], "latest_revision": 2, "key": "/works/OL11662368W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4931652A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11662483W 3 2012-11-28T11:20:37.678125 {"title": "Urdu Kee Ibtidaaee Kitab", "created": {"type": "/type/datetime", "value": "2009-12-11T05:04:20.411763"}, "last_modified": {"type": "/type/datetime", "value": "2012-11-28T11:20:37.678125"}, "latest_revision": 3, "key": "/works/OL11662483W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4931737A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11662708W 1 2009-12-11T05:04:28.931319 {"title": "School of the Fine Arts", "created": {"type": "/type/datetime", "value": "2009-12-11T05:04:28.931319"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:04:28.931319"}, "latest_revision": 1, "key": "/works/OL11662708W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4931902A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11662888W 3 2010-12-03T18:44:20.042414 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:04:28.931319"}, "subject_places": ["Oregon"], "subjects": ["Drivers' licenses", "Oregon", "Oregon. Dept. of Motor Vehicles", "Point system (Traffic violations)", "Traffic accidents"], "latest_revision": 3, "key": "/works/OL11662888W", "title": "Evaluation of the Oregon DMV driver improvement program", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4932057A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T18:44:20.042414"}, "revision": 3}
+/type/work /works/OL11663161W 2 2010-01-21T03:23:58.558942 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:04:28.931319"}, "title": "Le printemps", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T03:23:58.558942"}, "latest_revision": 2, "key": "/works/OL11663161W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4932246A"}}], "type": {"key": "/type/work"}, "subjects": ["Spring", "Language arts"], "revision": 2}
+/type/work /works/OL11663921W 1 2009-12-11T05:04:37.739069 {"title": "Guidelines for uniform beef improvement programs", "created": {"type": "/type/datetime", "value": "2009-12-11T05:04:37.739069"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:04:37.739069"}, "latest_revision": 1, "key": "/works/OL11663921W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4932745A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11663968W 2 2010-01-21T03:23:58.558942 {"title": "L'udov\u00edt \u0160t\u00far ako zakladatel' modernej slovenskej \u017eurnalistiky", "created": {"type": "/type/datetime", "value": "2009-12-11T05:04:37.739069"}, "subject_places": ["Slovakia"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T03:23:58.558942"}, "latest_revision": 2, "key": "/works/OL11663968W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4932788A"}}], "subject_people": ["L\u0315udov\u00edt \u0160t\u00far (1815-1856)"], "type": {"key": "/type/work"}, "subjects": ["Journalism", "Journalists", "Biography", "History"], "revision": 2}
+/type/work /works/OL11664270W 2 2010-01-21T03:28:01.731282 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:04:37.739069"}, "title": "Progress report on the Cochran Airplane Seeding Experiment", "subject_places": ["Oregon"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T03:28:01.731282"}, "latest_revision": 2, "key": "/works/OL11664270W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4933015A"}}], "type": {"key": "/type/work"}, "subjects": ["Reforestation", "Aeronautics in forestry", "Forests and forestry"], "revision": 2}
+/type/work /works/OL11664568W 2 2010-01-21T03:28:01.731282 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:04:37.739069"}, "title": "El capibara (Hydrochoerus hydrochaerus)", "subject_places": ["South America"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T03:28:01.731282"}, "latest_revision": 2, "key": "/works/OL11664568W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4933258A"}}], "type": {"key": "/type/work"}, "subjects": ["Copybara", "Hydrochaeris", "Breeding"], "revision": 2}
+/type/work /works/OL11664680W 2 2010-01-21T03:28:01.731282 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:04:45.758846"}, "title": "1978 review and evaluation of the Nuclear Regulatory Commission safety research program", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T03:28:01.731282"}, "latest_revision": 2, "key": "/works/OL11664680W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4933350A"}}], "type": {"key": "/type/work"}, "subjects": ["Safety measures", "Nuclear reactors", "Research"], "revision": 2}
+/type/work /works/OL11664713W 2 2010-01-21T03:28:01.731282 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:04:45.758846"}, "title": "First partial report on the artificial production of precipitation", "subject_places": ["Ohio"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T03:28:01.731282"}, "latest_revision": 2, "key": "/works/OL11664713W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4933376A"}}], "type": {"key": "/type/work"}, "subjects": ["Modification", "Precipitation (Meteorology)", "Rain-making"], "revision": 2}
+/type/work /works/OL11664735W 1 2009-12-11T05:04:45.758846 {"title": "Development outreach", "created": {"type": "/type/datetime", "value": "2009-12-11T05:04:45.758846"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:04:45.758846"}, "latest_revision": 1, "key": "/works/OL11664735W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4933398A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11664826W 3 2010-12-03T15:02:25.452944 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:04:45.758846"}, "subjects": ["Jesuits"], "subject_people": ["Henry IV King of France (1553-1610)", "Pierre Coton"], "key": "/works/OL11664826W", "title": "Anti-Coton", "latest_revision": 3, "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4933478A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:02:25.452944"}, "revision": 3}
+/type/work /works/OL11664935W 2 2010-01-21T03:28:01.731282 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:04:45.758846"}, "title": "St. Johnswort, Hypericum perforatum L", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T03:28:01.731282"}, "latest_revision": 2, "key": "/works/OL11664935W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4933547A"}}], "type": {"key": "/type/work"}, "subjects": ["Control", "Hypericum perforatum"], "revision": 2}
+/type/work /works/OL11665368W 3 2010-04-28T07:23:32.955928 {"title": "T\u00e1ranie nad hrobom", "created": {"type": "/type/datetime", "value": "2009-12-11T05:04:45.758846"}, "covers": [5543353], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:23:32.955928"}, "latest_revision": 3, "key": "/works/OL11665368W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4933802A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11665381W 3 2010-12-04T02:49:50.204148 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:04:45.758846"}, "subject_places": ["Canada", "Greece", "Macedonia"], "subjects": ["Human rights", "Macedonians", "Makedonsko-Kanadskiot komitet za \u010dove\u010dki prava vo Toronto", "Political activity"], "latest_revision": 3, "key": "/works/OL11665381W", "title": "Makedonsko-Kanadskiot komitet za \u010dove\u010dki prava vo Toronto", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4933806A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-04T02:49:50.204148"}, "revision": 3}
+/type/work /works/OL1166553W 2 2010-01-21T03:32:14.904906 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:37:44.797906"}, "title": "Disclosure guidelines for offerings of securities by state and local governments", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T03:32:14.904906"}, "latest_revision": 2, "key": "/works/OL1166553W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL118010A"}}], "type": {"key": "/type/work"}, "subjects": ["Municipal bonds", "State bonds", "Disclosure in accounting"], "revision": 2}
+/type/work /works/OL11665779W 2 2010-01-21T03:32:14.904906 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:04:53.688908"}, "title": "Mi-ginze he-\u02bbavar", "subject_places": ["Tsefat (Israel)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T03:32:14.904906"}, "latest_revision": 2, "key": "/works/OL11665779W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4934040A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11665857W 3 2010-12-03T15:03:36.362748 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:04:53.688908"}, "subjects": ["Art, Modern", "Exhibitions", "Modern Art"], "latest_revision": 3, "key": "/works/OL11665857W", "title": "XLIII esposizione internationale d'arte", "subject_times": ["20th century"], "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4934093A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:03:36.362748"}, "revision": 3}
+/type/work /works/OL11666456W 1 2009-12-11T05:04:53.688908 {"title": "Performance analysis of large Canadian banks over time using DEA", "created": {"type": "/type/datetime", "value": "2009-12-11T05:04:53.688908"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:04:53.688908"}, "latest_revision": 1, "key": "/works/OL11666456W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4934524A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11666457W 1 2009-12-11T05:04:53.688908 {"title": "A decision support system to meet the post-schedule staffing needs of a hospital nursing unit", "created": {"type": "/type/datetime", "value": "2009-12-11T05:04:53.688908"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:04:53.688908"}, "latest_revision": 1, "key": "/works/OL11666457W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4934525A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11666803W 1 2009-12-11T05:05:01.865565 {"title": "Sobranie sochineni\u012d v chetyrekh tomakh", "created": {"type": "/type/datetime", "value": "2009-12-11T05:05:01.865565"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:05:01.865565"}, "latest_revision": 1, "key": "/works/OL11666803W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4934787A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11666823W 2 2010-01-21T03:36:45.679237 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:05:01.865565"}, "title": "al- Faqr wa-tawz\u012b\u02bb al-dakhl f\u012b al-wa\u1e6dan al-\u02bbArab\u012b", "subject_places": ["Arab countries"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T03:36:45.679237"}, "latest_revision": 2, "key": "/works/OL11666823W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4934800A"}}], "type": {"key": "/type/work"}, "subjects": ["Poverty", "Income distribution"], "revision": 2}
+/type/work /works/OL11666876W 2 2010-01-21T03:36:45.679237 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:05:01.865565"}, "title": "Railway traffic departments, organization and systems-", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T03:36:45.679237"}, "latest_revision": 2, "key": "/works/OL11666876W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4934832A"}}], "type": {"key": "/type/work"}, "subjects": ["Railroads", "Freight"], "revision": 2}
+/type/work /works/OL11667258W 2 2010-01-21T03:36:45.679237 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:05:01.865565"}, "title": "The archaeology of the Harder Site, Franklin County, Washington", "subject_places": ["Washington (State)", "Harder site (Wash.)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T03:36:45.679237"}, "latest_revision": 2, "key": "/works/OL11667258W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4935143A"}}], "type": {"key": "/type/work"}, "subjects": ["Antiquities"], "revision": 2}
+/type/work /works/OL11667368W 4 2012-05-08T19:32:43.421597 {"last_modified": {"type": "/type/datetime", "value": "2012-05-08T19:32:43.421597"}, "title": "Destruction of useless papers in the Treasury Department. Letter from the Secretary of the Treasury, submitting, with a copy of a communication from the Auditor of the Department, a recommendation as to the destruction of certain papers", "created": {"type": "/type/datetime", "value": "2009-12-11T05:05:01.865565"}, "subjects": ["Government publications", "Refuse and refuse disposal", "United States", "United States. Dept. of the Treasury"], "latest_revision": 4, "key": "/works/OL11667368W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4930364A"}}], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL11667399W 2 2010-01-21T03:36:45.679237 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:05:01.865565"}, "title": "List of plants collected by C.S. Sheldon and M.A. Carleton in Indian Territory in 1891", "subject_places": ["Oklahoma", "Kansas", "Texas"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T03:36:45.679237"}, "latest_revision": 2, "key": "/works/OL11667399W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4935234A"}}], "type": {"key": "/type/work"}, "subjects": ["Botany", "Vegetation surveys"], "revision": 2}
+/type/work /works/OL1166763W 5 2020-02-20T05:15:26.889610 {"last_modified": {"type": "/type/datetime", "value": "2020-02-20T05:15:26.889610"}, "title": "John Keats: the principle of beauty", "created": {"type": "/type/datetime", "value": "2009-12-09T20:37:44.797906"}, "covers": [9276064], "subjects": ["Poets, English", "Criticism and interpretation", "Biography", "English Poets", "\u00c4sthetik", "Aesthetics"], "subject_people": ["John Keats (1795-1821)"], "key": "/works/OL1166763W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL118025A"}}], "latest_revision": 5, "subject_times": ["19th century"], "type": {"key": "/type/work"}, "revision": 5}
+/type/work /works/OL11667950W 4 2010-12-03T22:37:42.491257 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T22:37:42.491257"}, "latest_revision": 4, "key": "/works/OL11667950W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4935651A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T05:05:10.326957"}, "title": "Dante, Petrarca, Giotto, Simone", "subject_places": ["Italy"], "subjects": ["Art and literature", "Art, Italian", "History and criticism", "Intellectual life", "Italian Art", "Italian Painting", "Italian literature", "Painting, Italian", "Themes, motives"], "subject_times": ["1268-1559", "14th century", "To 1400"], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL11668869W 3 2012-05-08T19:32:43.421597 {"last_modified": {"type": "/type/datetime", "value": "2012-05-08T19:32:43.421597"}, "title": "Useless papers in Post-Office Department. Letter from the Postmaster-General transmitting a schedule of papers and documents not needed in the transaction of business and having no permanent value or historical interest", "created": {"type": "/type/datetime", "value": "2009-12-11T05:05:19.666057"}, "subjects": ["United States", "United States. Post Office Dept"], "latest_revision": 3, "key": "/works/OL11668869W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4930364A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11669149W 3 2010-12-03T15:14:06.198088 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:14:06.198088"}, "title": "The nonlinear dynamics of cable systems", "created": {"type": "/type/datetime", "value": "2009-12-11T05:05:19.666057"}, "subjects": ["Cables, Submarine", "Hydrodynamics", "Submarine Cables"], "latest_revision": 3, "key": "/works/OL11669149W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4936574A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1166917W 2 2010-01-21T03:45:29.601572 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:37:44.797906"}, "title": "Beginning office worker", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T03:45:29.601572"}, "latest_revision": 2, "key": "/works/OL1166917W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL118030A"}}], "type": {"key": "/type/work"}, "subjects": ["Clerks", "Civil service", "Examinations"], "revision": 2}
+/type/work /works/OL11669300W 2 2010-01-21T03:45:29.601572 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:05:19.666057"}, "title": "High hydrostatic pressure curing of fresh mortar", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T03:45:29.601572"}, "latest_revision": 2, "key": "/works/OL11669300W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4936716A"}}], "type": {"key": "/type/work"}, "subjects": ["Mortar", "Curing", "Hydrostatic pressure"], "revision": 2}
+/type/work /works/OL11669352W 2 2010-01-21T03:45:29.601572 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:05:19.666057"}, "title": "Characteristics of the Oswego River plume and its influence on the nearshore environment", "subject_places": ["New York (State)", "Oswego River"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T03:45:29.601572"}, "latest_revision": 2, "key": "/works/OL11669352W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4936761A"}}], "type": {"key": "/type/work"}, "subjects": ["Turbidity currents", "Sediment transport"], "revision": 2}
+/type/work /works/OL11669487W 2 2010-01-21T03:45:29.601572 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:05:19.666057"}, "title": "Yaak and Thompson River demonstration areas to manage mountain pine beetle in lodgepole pine", "subject_places": ["Thompson River Watershed", "Montana", "Yaak River Watershed (B.C. and Mont.)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T03:45:29.601572"}, "latest_revision": 2, "key": "/works/OL11669487W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4936844A"}}], "type": {"key": "/type/work"}, "subjects": ["Control", "Lodgepole pine", "Mountain pine beetle", "Diseases and pests"], "revision": 2}
+/type/work /works/OL11669714W 2 2010-11-04T22:22:11.888431 {"title": "Comparative Cultures #16: Hawaii, part 1", "created": {"type": "/type/datetime", "value": "2009-12-11T05:05:29.306319"}, "last_modified": {"type": "/type/datetime", "value": "2010-11-04T22:22:11.888431"}, "latest_revision": 2, "key": "/works/OL11669714W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4937001A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11670078W 2 2010-01-21T03:49:34.321165 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:05:29.306319"}, "title": "Marine salvage capabilities", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T03:49:34.321165"}, "latest_revision": 2, "key": "/works/OL11670078W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4937335A"}}], "type": {"key": "/type/work"}, "subjects": ["Security measures", "Salvage", "Harbors", "Congresses"], "revision": 2}
+/type/work /works/OL1167104W 2 2010-01-21T03:53:32.467781 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:37:49.097599"}, "title": "Beverage control investigator", "subject_places": ["New York (State)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T03:53:32.467781"}, "latest_revision": 2, "key": "/works/OL1167104W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL118030A"}}], "type": {"key": "/type/work"}, "subjects": ["Examinations", "Civil service", "Liquor laws", "Study guides", "Alcoholic beverage industry"], "revision": 2}
+/type/work /works/OL11671288W 2 2010-01-21T03:53:32.467781 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:05:38.523267"}, "title": "Wood-base panel products for pallet decks", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T03:53:32.467781"}, "latest_revision": 2, "key": "/works/OL11671288W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4938331A"}}], "type": {"key": "/type/work"}, "subjects": ["Hardboard", "Decks (Architecture, Domestic)", "Particle board", "Pallets (Shipping, storage, etc.)"], "revision": 2}
+/type/work /works/OL11671295W 2 2010-01-21T03:53:32.467781 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:05:38.523267"}, "title": "Utilization and disposal of crab and shrimp wastes", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T03:53:32.467781"}, "latest_revision": 2, "key": "/works/OL11671295W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4938337A"}}], "type": {"key": "/type/work"}, "subjects": ["Fisheries", "Sanitation", "By-products", "Crab fisheries", "Shrimp fisheries", "Shellfish fisheries"], "revision": 2}
+/type/work /works/OL11671472W 2 2010-01-21T03:53:32.467781 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:05:38.523267"}, "title": "Health values survey 2004", "subject_places": ["Oregon"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T03:53:32.467781"}, "latest_revision": 2, "key": "/works/OL11671472W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4938489A"}}], "type": {"key": "/type/work"}, "subjects": ["Medical care", "Health surveys", "Public opinion"], "revision": 2}
+/type/work /works/OL11671525W 2 2010-01-21T03:53:32.467781 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:05:38.523267"}, "title": "Propagating and grading pear trees", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T03:53:32.467781"}, "latest_revision": 2, "key": "/works/OL11671525W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4938517A"}}], "type": {"key": "/type/work"}, "subjects": ["Pear", "Propagation", "Grading"], "revision": 2}
+/type/work /works/OL11671582W 1 2009-12-11T05:05:38.523267 {"title": "Foreign Animal Diseases the Gray Book", "created": {"type": "/type/datetime", "value": "2009-12-11T05:05:38.523267"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:05:38.523267"}, "latest_revision": 1, "key": "/works/OL11671582W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4938568A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11671789W 2 2010-01-21T03:57:35.801321 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:05:48.564126"}, "title": "Transportation planning performance measures", "subject_places": ["Oregon"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T03:57:35.801321"}, "latest_revision": 2, "key": "/works/OL11671789W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4938739A"}}], "type": {"key": "/type/work"}, "subjects": ["Planning", "Transportation"], "revision": 2}
+/type/work /works/OL11672288W 4 2012-05-08T19:32:43.421597 {"last_modified": {"type": "/type/datetime", "value": "2012-05-08T19:32:43.421597"}, "title": "Disposition of useless executive papers in the Smithsonian Institution", "created": {"type": "/type/datetime", "value": "2009-12-11T05:05:48.564126"}, "subjects": ["Government paperwork", "Refuse and refuse disposal", "Smithsonian Institution"], "latest_revision": 4, "key": "/works/OL11672288W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4930364A"}}], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL11672319W 2 2010-01-21T03:57:35.801321 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:05:48.564126"}, "title": "Twenty-fourth Director's Advisory Committee on Forecast Operations final report, 1994", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T03:57:35.801321"}, "latest_revision": 2, "key": "/works/OL11672319W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4939204A"}}], "type": {"key": "/type/work"}, "subjects": ["Weather forecasting"], "revision": 2}
+/type/work /works/OL11672850W 2 2010-01-21T04:02:06.603917 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:05:58.430980"}, "title": "Der anatomische Bau der Wurzel", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T04:02:06.603917"}, "latest_revision": 2, "key": "/works/OL11672850W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4939668A"}}], "type": {"key": "/type/work"}, "subjects": ["Anatomy", "Roots (Botany)"], "revision": 2}
+/type/work /works/OL1167308W 3 2010-12-06T08:00:15.396601 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:37:49.097599"}, "subject_places": ["Louisiana"], "subjects": ["Household Sanitation", "Law and legislation", "Sanitation, Household", "Sewage disposal", "Water-supply, Rural"], "latest_revision": 3, "key": "/works/OL1167308W", "title": "Requirement for inividual water-supply and sewage-disposal systems..", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL118043A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-06T08:00:15.396601"}, "revision": 3}
+/type/work /works/OL11673165W 2 2010-01-21T04:02:06.603917 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:05:58.430980"}, "title": "7th International Sponge Symposium", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T04:02:06.603917"}, "latest_revision": 2, "key": "/works/OL11673165W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4939950A"}}], "type": {"key": "/type/work"}, "subjects": ["Congresses", "Sponges"], "revision": 2}
+/type/work /works/OL11673186W 2 2010-10-16T06:03:51.341185 {"title": "Complete Violin Concertos Vol 1", "created": {"type": "/type/datetime", "value": "2009-12-11T05:05:58.430980"}, "last_modified": {"type": "/type/datetime", "value": "2010-10-16T06:03:51.341185"}, "latest_revision": 2, "key": "/works/OL11673186W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL552107A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11673990W 2 2010-01-21T04:06:47.942799 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:06:09.227608"}, "title": "Proceedings, outlook '84", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T04:06:47.942799"}, "latest_revision": 2, "key": "/works/OL11673990W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4940645A"}}], "type": {"key": "/type/work"}, "subjects": ["Congresses", "Agricultural prices", "Agricultural productivity"], "revision": 2}
+/type/work /works/OL11674161W 1 2009-12-11T05:06:09.227608 {"title": "DERROTADOS Cuentos Espantosos - Los Mejores Chistes de Terror", "created": {"type": "/type/datetime", "value": "2009-12-11T05:06:09.227608"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:06:09.227608"}, "latest_revision": 1, "key": "/works/OL11674161W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4940801A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11674360W 3 2010-04-28T07:23:32.955928 {"title": "Mathematics of surfaces XII", "created": {"type": "/type/datetime", "value": "2009-12-11T05:06:09.227608"}, "covers": [5317382], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:23:32.955928"}, "latest_revision": 3, "key": "/works/OL11674360W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4940982A"}}], "subjects": ["Congresses", "Surfaces", "Mathematics", "Geometry"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11674417W 2 2010-01-21T04:06:47.942799 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:06:09.227608"}, "title": "Biological control of the larch casebearer in the Northern Region", "subject_places": ["Montana", "Washington (State)", "Idaho"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T04:06:47.942799"}, "latest_revision": 2, "key": "/works/OL11674417W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4941033A"}}], "type": {"key": "/type/work"}, "subjects": ["Larch casebearer", "Biological control"], "revision": 2}
+/type/work /works/OL11674530W 5 2022-12-29T17:30:52.245031 {"subjects": ["Alcoholism", "Drinking of alcoholic beverages", "Economic aspects", "Economic aspects of Alcoholism", "Economic aspects of Drinking of alcoholic beverages", "Health aspects", "Health aspects of Alcoholism", "Health aspects of Drinking of alcoholic beverages", "Prevention", "Social aspects", "Social aspects of Alcoholism", "Social aspects of Drinking of alcoholic beverages", "Alcohol Drinking", "Alcohol-Related Disorders", "Prevention & control"], "key": "/works/OL11674530W", "title": "WHO Expert Committee on Problems Related to Alcohol Consumption", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4941136A"}}], "type": {"key": "/type/work"}, "covers": [8734662], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2009-12-11T05:06:09.227608"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-29T17:30:52.245031"}}
+/type/work /works/OL11675016W 3 2010-12-03T15:24:13.564730 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:24:13.564730"}, "latest_revision": 3, "key": "/works/OL11675016W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4941548A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T05:06:16.535367"}, "title": "The ecclesiology of Moneta of Cremona's \"Adversus Catharos et Valdenses\"", "subjects": ["Christian Heresies", "Contributions in ecclesiology", "Heresies, Christian", "History"], "subject_people": ["Moneta of Cremona (d. ca. 1260)"], "subject_times": ["Middle Ages, 600-1500"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11675236W 1 2009-12-11T05:06:16.535367 {"title": "Lecture by Tom Hudson at De la Salle College", "created": {"type": "/type/datetime", "value": "2009-12-11T05:06:16.535367"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:06:16.535367"}, "latest_revision": 1, "key": "/works/OL11675236W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4941585A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11675969W 2 2010-12-04T06:39:06.973452 {"last_modified": {"type": "/type/datetime", "value": "2010-12-04T06:39:06.973452"}, "title": "The theology of Vatican 11", "created": {"type": "/type/datetime", "value": "2009-12-11T05:06:24.468834"}, "subjects": ["Vatican Council (2nd : 1962-1965)"], "latest_revision": 2, "key": "/works/OL11675969W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4942096A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL1167637W 1 2009-12-09T20:37:49.097599 {"title": "Twelve poems", "created": {"type": "/type/datetime", "value": "2009-12-09T20:37:49.097599"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T20:37:49.097599"}, "latest_revision": 1, "key": "/works/OL1167637W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL118058A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11676622W 3 2010-04-28T07:23:32.955928 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:06:30.959639"}, "title": "Saturne aux deux visages", "covers": [5437753], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:23:32.955928"}, "latest_revision": 3, "key": "/works/OL11676622W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4942561A"}}], "subject_people": ["Honor\u00e9 d' Urf\u00e9 (1567-1625)"], "type": {"key": "/type/work"}, "subjects": ["Criticism and interpretation"], "revision": 3}
+/type/work /works/OL11677176W 2 2010-01-21T04:11:19.945955 {"title": "Language and meaning in Heidegger's fundamental ontology", "created": {"type": "/type/datetime", "value": "2009-12-11T05:06:30.959639"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T04:11:19.945955"}, "latest_revision": 2, "key": "/works/OL11677176W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4942905A"}}], "subject_people": ["Martin Heidegger (1889-1976)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11677224W 1 2009-12-11T05:06:30.959639 {"title": "Ai ren zhuang shen qi", "created": {"type": "/type/datetime", "value": "2009-12-11T05:06:30.959639"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:06:30.959639"}, "latest_revision": 1, "key": "/works/OL11677224W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4942927A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11677330W 1 2009-12-11T05:06:30.959639 {"title": "The management of Oracy across the curriculum", "created": {"type": "/type/datetime", "value": "2009-12-11T05:06:30.959639"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:06:30.959639"}, "latest_revision": 1, "key": "/works/OL11677330W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4942964A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11677385W 1 2009-12-11T05:06:30.959639 {"title": "Nuendo 2 Media Operating System", "created": {"type": "/type/datetime", "value": "2009-12-11T05:06:30.959639"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:06:30.959639"}, "latest_revision": 1, "key": "/works/OL11677385W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4943012A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11677756W 1 2009-12-11T05:06:37.376882 {"title": "Feng ming dang ya huan", "created": {"type": "/type/datetime", "value": "2009-12-11T05:06:37.376882"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:06:37.376882"}, "latest_revision": 1, "key": "/works/OL11677756W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4943175A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11678057W 1 2009-12-11T05:06:37.376882 {"title": "Dai da you xi", "created": {"type": "/type/datetime", "value": "2009-12-11T05:06:37.376882"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:06:37.376882"}, "latest_revision": 1, "key": "/works/OL11678057W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4943344A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11678929W 2 2010-01-21T04:15:52.814982 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:06:45.418124"}, "title": "Amants de Verone", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T04:15:52.814982"}, "latest_revision": 2, "key": "/works/OL11678929W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4943879A"}}], "subject_times": ["19th century"], "type": {"key": "/type/work"}, "subjects": ["Operas", "Librettos", "Vocal scores with piano"], "revision": 2}
+/type/work /works/OL11679055W 3 2019-02-28T02:11:47.549152 {"last_modified": {"type": "/type/datetime", "value": "2019-02-28T02:11:47.549152"}, "title": "The principles of harmony and contrast of colors and their applications to the arts", "created": {"type": "/type/datetime", "value": "2009-12-11T05:06:45.418124"}, "subjects": ["Color"], "latest_revision": 3, "key": "/works/OL11679055W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1079193A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11679516W 6 2022-11-11T01:00:05.424114 {"title": "Der unheimliche Graf", "covers": [5793830], "key": "/works/OL11679516W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL154243A"}}], "type": {"key": "/type/work"}, "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2009-12-11T05:06:45.418124"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-11T01:00:05.424114"}}
+/type/work /works/OL11679531W 2 2010-12-03T21:56:00.366527 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T21:56:00.366527"}, "title": "Shi jing xin shang yu yan jiu xu ji", "created": {"type": "/type/datetime", "value": "2009-12-11T05:06:45.418124"}, "subjects": ["Shi jing"], "latest_revision": 2, "key": "/works/OL11679531W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4944312A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11679538W 2 2010-01-21T04:15:52.814982 {"title": "The tune of the hickory stick", "created": {"type": "/type/datetime", "value": "2009-12-11T05:06:45.418124"}, "subject_places": ["Ontario"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T04:15:52.814982"}, "latest_revision": 2, "key": "/works/OL11679538W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4944316A"}}], "subject_people": ["Wilbur Leonard"], "type": {"key": "/type/work"}, "subjects": ["Teachers", "Biography"], "revision": 2}
+/type/work /works/OL11679663W 1 2009-12-11T05:06:52.362436 {"title": "Report of the Drink-Drive Conference, the first national conference on the legal, technical, social and philosophical issues... [held at the] University of Essex, Colchester, Essex, March 30th 1990", "created": {"type": "/type/datetime", "value": "2009-12-11T05:06:52.362436"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:06:52.362436"}, "latest_revision": 1, "key": "/works/OL11679663W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4944396A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1167971W 1 2009-12-09T20:37:56.502212 {"title": "S\u00f6nerna", "created": {"type": "/type/datetime", "value": "2009-12-09T20:37:56.502212"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T20:37:56.502212"}, "latest_revision": 1, "key": "/works/OL1167971W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL118075A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11679752W 2 2010-01-21T04:20:15.969345 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:06:52.362436"}, "title": "The social science activities of some eastern European academies of sciences", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T04:20:15.969345"}, "latest_revision": 2, "key": "/works/OL11679752W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4944469A"}}], "type": {"key": "/type/work"}, "subjects": ["Social science research", "Social sciences"], "revision": 2}
+/type/work /works/OL11679838W 2 2010-01-21T04:20:15.969345 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:06:52.362436"}, "title": "Da gong zai mian chao tian shu", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T04:20:15.969345"}, "latest_revision": 2, "key": "/works/OL11679838W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4944498A"}}], "type": {"key": "/type/work"}, "subjects": ["Employees", "Training of", "Success in business"], "revision": 2}
+/type/work /works/OL11679858W 2 2017-12-31T06:35:33.085717 {"title": "Anthropometric data", "created": {"type": "/type/datetime", "value": "2009-12-11T05:06:52.362436"}, "last_modified": {"type": "/type/datetime", "value": "2017-12-31T06:35:33.085717"}, "latest_revision": 2, "key": "/works/OL11679858W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1347387A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11679878W 2 2010-01-21T04:20:15.969345 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:06:52.362436"}, "title": "Summary of the report, volume 1", "subject_places": ["Quebec (Province)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T04:20:15.969345"}, "latest_revision": 2, "key": "/works/OL11679878W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4944512A"}}], "type": {"key": "/type/work"}, "subjects": ["Education"], "revision": 2}
+/type/work /works/OL11680315W 2 2010-12-03T22:18:13.560088 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T22:18:13.560088"}, "title": "Implementation of the Environmental Noise Directive", "created": {"type": "/type/datetime", "value": "2009-12-11T05:06:52.362436"}, "subjects": ["European Parliament"], "latest_revision": 2, "key": "/works/OL11680315W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4944777A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11680425W 4 2012-05-09T10:55:29.702853 {"last_modified": {"type": "/type/datetime", "value": "2012-05-09T10:55:29.702853"}, "title": "Disposition of papers in the records of the Board of Governors of the Federal Reserve System", "created": {"type": "/type/datetime", "value": "2009-12-11T05:06:52.362436"}, "subjects": ["Paper products", "Refuse and refuse disposal", "United States", "United States. Federal Reserve Board"], "latest_revision": 4, "key": "/works/OL11680425W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4930364A"}}], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL11680505W 5 2011-12-19T16:05:25.037787 {"title": "Fjale te urta dhe Tregime zbavitese", "created": {"type": "/type/datetime", "value": "2009-12-11T05:06:52.362436"}, "covers": [6288704], "last_modified": {"type": "/type/datetime", "value": "2011-12-19T16:05:25.037787"}, "latest_revision": 5, "key": "/works/OL11680505W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL7047819A"}}], "type": {"key": "/type/work"}, "revision": 5}
+/type/work /works/OL11680673W 1 2009-12-11T05:06:59.909483 {"title": "Ours fathers that begat us", "created": {"type": "/type/datetime", "value": "2009-12-11T05:06:59.909483"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:06:59.909483"}, "latest_revision": 1, "key": "/works/OL11680673W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4945009A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11680757W 1 2009-12-11T05:06:59.909483 {"title": "La folie fainte de l'amant loyal", "created": {"type": "/type/datetime", "value": "2009-12-11T05:06:59.909483"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:06:59.909483"}, "latest_revision": 1, "key": "/works/OL11680757W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4945053A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11680824W 2 2010-11-03T23:20:57.283520 {"title": "The arrival", "created": {"type": "/type/datetime", "value": "2009-12-11T05:06:59.909483"}, "last_modified": {"type": "/type/datetime", "value": "2010-11-03T23:20:57.283520"}, "latest_revision": 2, "key": "/works/OL11680824W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1459379A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11681520W 4 2011-05-04T19:46:29.376380 {"subtitle": "im Lichte der \"skythischen Kontroversen\".", "last_modified": {"type": "/type/datetime", "value": "2011-05-04T19:46:29.376380"}, "latest_revision": 4, "key": "/works/OL11681520W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1839813A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T05:06:59.909483"}, "title": "Die Trinit\u00e4tslehre des Boethius", "subjects": ["Trinity"], "subject_people": ["Boethius (d. 524)"], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL11681704W 2 2010-01-21T04:25:10.738294 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:07:07.358508"}, "title": "Ionian trade and colonization", "subject_places": ["Ionian Islands (Greece)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T04:25:10.738294"}, "latest_revision": 2, "key": "/works/OL11681704W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4945725A"}}], "type": {"key": "/type/work"}, "subjects": ["Economic conditions", "History"], "revision": 2}
+/type/work /works/OL11681842W 1 2009-12-11T05:07:07.358508 {"title": "Malvern in the twenties", "created": {"type": "/type/datetime", "value": "2009-12-11T05:07:07.358508"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:07:07.358508"}, "latest_revision": 1, "key": "/works/OL11681842W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4945829A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11682083W 4 2018-06-12T17:38:18.832443 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:07:07.358508"}, "subjects": ["Physics"], "latest_revision": 4, "key": "/works/OL11682083W", "title": "University physics", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL32964A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2018-06-12T17:38:18.832443"}, "covers": [5039250], "revision": 4}
+/type/work /works/OL11682176W 2 2010-01-21T04:25:10.738294 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:07:07.358508"}, "title": "Part-time employment", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T04:25:10.738294"}, "latest_revision": 2, "key": "/works/OL11682176W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4946032A"}}], "type": {"key": "/type/work"}, "subjects": ["Librarians", "Part-time employment"], "revision": 2}
+/type/work /works/OL11682192W 3 2010-12-03T15:28:57.764048 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:28:57.764048"}, "title": "Han guo jia chang cai", "created": {"type": "/type/datetime", "value": "2009-12-11T05:07:07.358508"}, "subjects": ["Cookery, Korean", "Korean Cookery"], "latest_revision": 3, "key": "/works/OL11682192W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4946048A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11682499W 1 2009-12-11T05:07:07.358508 {"title": "Arbeitergesetzgebung und Arbeiterversicherung in Frankreich", "created": {"type": "/type/datetime", "value": "2009-12-11T05:07:07.358508"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:07:07.358508"}, "latest_revision": 1, "key": "/works/OL11682499W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4946209A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11682861W 3 2015-01-20T21:16:50.260435 {"title": "Quand vivait mon pe\u0300re", "created": {"type": "/type/datetime", "value": "2009-12-11T05:07:14.729292"}, "last_modified": {"type": "/type/datetime", "value": "2015-01-20T21:16:50.260435"}, "latest_revision": 3, "key": "/works/OL11682861W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4472944A"}}], "subject_people": ["Alphonse Daudet"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1168297W 5 2020-09-18T04:45:34.717929 {"covers": [9267742], "last_modified": {"type": "/type/datetime", "value": "2020-09-18T04:45:34.717929"}, "latest_revision": 5, "key": "/works/OL1168297W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL118092A"}}], "created": {"type": "/type/datetime", "value": "2009-12-09T20:37:56.502212"}, "title": "The orchestra from Beethoven to Berlioz", "subjects": ["Conducting", "Orchestra", "Conductors (Music)", "Performance practice (Music)", "Orquestras", "History"], "subject_times": ["19th century"], "type": {"key": "/type/work"}, "revision": 5}
+/type/work /works/OL11682995W 2 2010-01-21T04:25:10.738294 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:07:14.729292"}, "title": "Rash\u012bd f\u012b al-t\u0101r\u012bkh", "subject_places": ["Rash\u012bd (Egypt : Markaz)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T04:25:10.738294"}, "latest_revision": 2, "key": "/works/OL11682995W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4946540A"}}], "type": {"key": "/type/work"}, "subjects": ["Social conditions", "Buildings, structures", "Economic conditions", "Description and travel", "History"], "revision": 2}
+/type/work /works/OL11683124W 1 2009-12-11T05:07:14.729292 {"title": "Children's services plan [2002-2005]", "created": {"type": "/type/datetime", "value": "2009-12-11T05:07:14.729292"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:07:14.729292"}, "latest_revision": 1, "key": "/works/OL11683124W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4946619A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1168348W 2 2010-01-21T04:30:21.959448 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:37:56.502212"}, "title": "Control of social studies textbooks", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T04:30:21.959448"}, "latest_revision": 2, "key": "/works/OL1168348W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL118103A"}}], "type": {"key": "/type/work"}, "subjects": ["Social sciences", "Textbooks", "Study and teaching"], "revision": 2}
+/type/work /works/OL11683620W 2 2010-01-21T04:30:21.959448 {"title": "Wilhelm Raabes Literaturkenntnis", "created": {"type": "/type/datetime", "value": "2009-12-11T05:07:23.511376"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T04:30:21.959448"}, "latest_revision": 2, "key": "/works/OL11683620W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4946956A"}}], "subject_people": ["Wilhelm Karl Raabe (1831-1910)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11683631W 2 2010-01-21T04:30:21.959448 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:07:23.511376"}, "title": "Practical skills for the history classroom", "subject_places": ["Ontario", "Etobicoke"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T04:30:21.959448"}, "latest_revision": 2, "key": "/works/OL11683631W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4946966A"}}], "type": {"key": "/type/work"}, "subjects": ["Curricula", "Education", "Study and teaching", "History"], "revision": 2}
+/type/work /works/OL11683650W 2 2010-01-21T04:30:21.959448 {"title": "Moorfield Storey", "created": {"type": "/type/datetime", "value": "2009-12-11T05:07:23.511376"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T04:30:21.959448"}, "latest_revision": 2, "key": "/works/OL11683650W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4946981A"}}], "subject_people": ["Moorfield Storey (1845-1929)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11683860W 3 2012-05-18T01:22:32.568352 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:07:23.511376"}, "subject_places": ["Scotland"], "subjects": ["Refuse and refuse disposal", "Environmental policy"], "latest_revision": 3, "key": "/works/OL11683860W", "title": "Proposals for amendments to the Waste Management Licensing Regulations", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4947118A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-18T01:22:32.568352"}, "revision": 3}
+/type/work /works/OL11684020W 2 2010-01-21T04:30:21.959448 {"title": "Die p\u00e4dagogischen Grundanschauungen bei Fichte und Pestalozzi", "created": {"type": "/type/datetime", "value": "2009-12-11T05:07:23.511376"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T04:30:21.959448"}, "latest_revision": 2, "key": "/works/OL11684020W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4947231A"}}], "subject_people": ["Johann Gottlieb Fichte (1762-1814)", "Johann Heinrich Pestalozzi (1746-1827)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11684029W 2 2010-01-21T04:30:21.959448 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:07:23.511376"}, "title": "Das \u00f6ffentliche Recht im nationalsozialistischen Staat", "subject_places": ["Germany"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T04:30:21.959448"}, "latest_revision": 2, "key": "/works/OL11684029W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4947240A"}}], "type": {"key": "/type/work"}, "subjects": ["Constitutional history", "Public law"], "revision": 2}
+/type/work /works/OL1168420W 3 2020-09-18T01:17:52.465365 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:37:56.502212"}, "subject_places": ["Switzerland"], "subjects": ["Architecture", "Pictorial works", "Switzerland in literature", "In literature"], "latest_revision": 3, "key": "/works/OL1168420W", "title": "Die Schweiz", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL118105A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-09-18T01:17:52.465365"}, "revision": 3}
+/type/work /works/OL11686526W 2 2010-01-21T04:48:56.812151 {"title": "A Companion of Honour", "created": {"type": "/type/datetime", "value": "2009-12-11T05:07:44.924072"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T04:48:56.812151"}, "latest_revision": 2, "key": "/works/OL11686526W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4949552A"}}], "subject_people": ["Walter Elliot"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11686915W 2 2010-01-21T04:48:56.812151 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:07:53.120155"}, "title": "The attunement strategy", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T04:48:56.812151"}, "latest_revision": 2, "key": "/works/OL11686915W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4949845A"}}], "type": {"key": "/type/work"}, "subjects": ["Motivation in education", "Teacher-student relationships", "Effective teaching"], "revision": 2}
+/type/work /works/OL11687086W 3 2010-12-03T15:28:57.764048 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:28:57.764048"}, "title": "Lettres latines", "created": {"type": "/type/datetime", "value": "2009-12-11T05:07:53.120155"}, "subjects": ["Alphabet", "History", "Latin Paleography", "Latin language", "Paleography, Latin", "Writing"], "latest_revision": 3, "key": "/works/OL11687086W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4949973A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11687129W 2 2010-04-30T19:32:05.076924 {"subtitle": "The political communication in contemporary China", "created": {"type": "/type/datetime", "value": "2009-12-11T05:07:53.120155"}, "title": "Dang dai Zhongguo zheng zhi gou tong =", "subject_places": ["China"], "last_modified": {"type": "/type/datetime", "value": "2010-04-30T19:32:05.076924"}, "latest_revision": 2, "key": "/works/OL11687129W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4949997A"}}], "type": {"key": "/type/work"}, "subjects": ["Communication in politics"], "revision": 2}
+/type/work /works/OL11687262W 4 2022-09-26T19:35:21.325198 {"title": "Explanation of human actions", "key": "/works/OL11687262W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL656480A"}}], "type": {"key": "/type/work"}, "subjects": ["Philosophical anthropology", "Act (Philosophy)", "Hermeneutics"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T05:07:53.120155"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-26T19:35:21.325198"}}
+/type/work /works/OL11687529W 3 2011-11-09T09:49:06.532714 {"description": {"type": "/type/text", "value": "The book contains commentaries of the part A of the Latvian Commercial Law - General Rules of Commercial Activity. It covers legal definitions of merchant, commercial activity, as well as issues of business name, commercial registration, agency, transfer of enterprise etc. The author was the leading drafter of the Commercial Law, and also teaches Commercial Law as a member of the Faculty of Law, University of Latvia."}, "last_modified": {"type": "/type/datetime", "value": "2011-11-09T09:49:06.532714"}, "latest_revision": 3, "key": "/works/OL11687529W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4950294A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T05:07:53.120155"}, "title": "Komerclikuma koment\u0101ri", "subject_places": ["Latvia"], "subjects": ["Commercial law"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11687532W 1 2009-12-11T05:07:53.120155 {"title": "Hua kai hua luo liang you zhi", "created": {"type": "/type/datetime", "value": "2009-12-11T05:07:53.120155"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:07:53.120155"}, "latest_revision": 1, "key": "/works/OL11687532W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4950297A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11688078W 3 2010-12-04T00:15:31.879289 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:08:01.268518"}, "subject_places": ["Edinburgh", "Scotland"], "subjects": ["Buildings", "Conservation and restoration", "Edinburgh World Heritage Trust"], "latest_revision": 3, "key": "/works/OL11688078W", "title": "Edinburgh World Heritage Trust", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4950696A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-04T00:15:31.879289"}, "revision": 3}
+/type/work /works/OL11688124W 2 2010-01-21T04:53:16.810961 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:08:01.268518"}, "title": "Sibirski\u012d \u0117kspress", "subject_places": ["Siberia", "Siberia (Russia)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T04:53:16.810961"}, "latest_revision": 2, "key": "/works/OL11688124W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4950724A"}}], "type": {"key": "/type/work"}, "subjects": ["Science", "Description and travel"], "revision": 2}
+/type/work /works/OL11688404W 2 2010-01-21T04:53:16.810961 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:08:01.268518"}, "title": "The U.A.R. in development", "subject_places": ["Egypt"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T04:53:16.810961"}, "latest_revision": 2, "key": "/works/OL11688404W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4950905A"}}], "type": {"key": "/type/work"}, "subjects": ["Economic policy", "Monetary policy"], "revision": 2}
+/type/work /works/OL11688509W 1 2009-12-11T05:08:01.268518 {"title": "Production and perception of fast speech", "created": {"type": "/type/datetime", "value": "2009-12-11T05:08:01.268518"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:08:01.268518"}, "latest_revision": 1, "key": "/works/OL11688509W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4950992A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11689452W 1 2009-12-11T05:08:08.675825 {"title": "Mrat\u02bb pan\u02bb to\u02bb pan\u02bb\u02ba Khuin\u0307\u02bb lum\u0323\u02ba lan\u02bb", "created": {"type": "/type/datetime", "value": "2009-12-11T05:08:08.675825"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:08:08.675825"}, "latest_revision": 1, "key": "/works/OL11689452W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4951605A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11689802W 1 2009-12-11T05:08:16.382558 {"title": "A few practical remarks on the medicinal effects of wine and spirits, with observations on the oeconomy of health", "created": {"type": "/type/datetime", "value": "2009-12-11T05:08:16.382558"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:08:16.382558"}, "latest_revision": 1, "key": "/works/OL11689802W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4951847A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11690070W 3 2021-11-05T20:11:05.910435 {"title": "The king's taster", "key": "/works/OL11690070W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL24396A"}}], "type": {"key": "/type/work"}, "subjects": ["Fiction", "Kings, queen, rulers", "Food habits", "Dogs", "Diet"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T05:08:16.382558"}, "last_modified": {"type": "/type/datetime", "value": "2021-11-05T20:11:05.910435"}}
+/type/work /works/OL11690246W 3 2010-12-03T15:30:09.140192 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:30:09.140192"}, "title": "SLADEA's handbook for mediation", "created": {"type": "/type/datetime", "value": "2009-12-11T05:08:16.382558"}, "subjects": ["Conflict management", "Handbooks, manuals", "Handbooks, manuals, etc", "Mediation"], "latest_revision": 3, "key": "/works/OL11690246W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4952114A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11690286W 2 2010-01-21T04:57:34.895574 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:08:16.382558"}, "title": "Confidence building", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T04:57:34.895574"}, "latest_revision": 2, "key": "/works/OL11690286W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4952151A"}}], "type": {"key": "/type/work"}, "subjects": ["Confidence", "Self-esteem"], "revision": 2}
+/type/work /works/OL11690339W 2 2020-12-23T15:11:00.636957 {"title": "El resto es silencio", "key": "/works/OL11690339W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4952183A"}}], "type": {"key": "/type/work"}, "description": {"type": "/type/text", "value": "Novela."}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T05:08:16.382558"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-23T15:11:00.636957"}}
+/type/work /works/OL11690494W 3 2020-12-17T16:31:01.340388 {"title": "Prach\u0101chon kh\u014d\u031cng Phra\u010dhaoy\u016bh\u016ba", "subject_places": ["Thailand"], "key": "/works/OL11690494W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4952293A"}}], "subject_times": ["1988-"], "type": {"key": "/type/work"}, "subjects": ["Politics and government"], "description": {"type": "/type/text", "value": "On the political conditions of Thailand after the military coup of September 2006."}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T05:08:16.382558"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-17T16:31:01.340388"}}
+/type/work /works/OL11690635W 2 2010-01-21T04:57:34.895574 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:08:24.051536"}, "title": "ICMS", "subject_places": ["Brazil"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T04:57:34.895574"}, "latest_revision": 2, "key": "/works/OL11690635W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4952375A"}}], "type": {"key": "/type/work"}, "subjects": ["Law and legislation", "Value-added tax", "States", "Taxation", "Interstate commerce"], "revision": 2}
+/type/work /works/OL11690648W 3 2010-12-03T15:31:20.195939 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:08:24.051536"}, "subject_places": ["Uruguay"], "subjects": ["Banco de la Rep\u00fablica Oriental del Uruguay", "Banking law"], "latest_revision": 3, "key": "/works/OL11690648W", "title": "Banco de la Repu\u0301blica Oriental del Uruguay", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4952385A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:31:20.195939"}, "revision": 3}
+/type/work /works/OL11690773W 2 2020-12-17T18:39:18.228752 {"title": "The flawed institution", "key": "/works/OL11690773W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4952475A"}}], "type": {"key": "/type/work"}, "subjects": ["Governors", "Selection and appointment"], "description": {"type": "/type/text", "value": "With reference to India."}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T05:08:24.051536"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-17T18:39:18.228752"}}
+/type/work /works/OL11691411W 2 2020-12-20T16:06:56.344421 {"title": "Perspektivnye napravlenii\ufe20a\ufe21 v razvitii i dei\ufe20a\ufe21tel\u02b9nosti malogo predprinimatel\u02b9stva v Respublike Kalmykii\ufe20a\ufe21", "key": "/works/OL11691411W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4952868A"}}], "type": {"key": "/type/work"}, "subjects": ["Small business"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T05:08:24.051536"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-20T16:06:56.344421"}}
+/type/work /works/OL11691629W 2 2010-01-21T05:01:46.338606 {"title": "History of the Ettinger family", "created": {"type": "/type/datetime", "value": "2009-12-11T05:08:31.243719"}, "subject_places": ["New York (State)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T05:01:46.338606"}, "latest_revision": 2, "key": "/works/OL11691629W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4953015A"}}], "subject_people": ["Shammai Ettinger (ca. 1860-1934)", "Ettinger family"], "type": {"key": "/type/work"}, "subjects": ["Genealogy", "Family", "Jews"], "revision": 2}
+/type/work /works/OL11691737W 2 2010-01-21T05:01:46.338606 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:08:31.243719"}, "title": "Impact of poverty alleviation projects on the social integration of plantation workers in Sri Lanka", "subject_places": ["Sri Lanka"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T05:01:46.338606"}, "latest_revision": 2, "key": "/works/OL11691737W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4953080A"}}], "type": {"key": "/type/work"}, "subjects": ["Plantation workers", "Social conditions", "Economic conditions"], "revision": 2}
+/type/work /works/OL1169176W 1 2009-12-09T20:38:05.416077 {"title": "Blithe spirit, with two other plays, Private lives [and] Hay fever", "created": {"type": "/type/datetime", "value": "2009-12-09T20:38:05.416077"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T20:38:05.416077"}, "latest_revision": 1, "key": "/works/OL1169176W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL118176A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11691903W 2 2010-01-21T05:01:46.338606 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:08:31.243719"}, "title": "Report of the 1974-75 Michigan cost-effectiveness study", "subject_places": ["Michigan"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T05:01:46.338606"}, "latest_revision": 2, "key": "/works/OL11691903W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4953166A"}}], "type": {"key": "/type/work"}, "subjects": ["Education", "Costs"], "revision": 2}
+/type/work /works/OL11692093W 2 2010-01-21T05:06:13.860395 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:08:31.243719"}, "title": "Children printing", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T05:06:13.860395"}, "latest_revision": 2, "key": "/works/OL11692093W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4953293A"}}], "type": {"key": "/type/work"}, "subjects": ["Printing in education"], "revision": 2}
+/type/work /works/OL11692251W 2 2010-01-21T05:06:13.860395 {"title": "A history of the Malouf people of the Min'em Malouf sub-branch, including a history of Zabbougha, Lebanon, the birth place of the Min'em Malouf progeny", "created": {"type": "/type/datetime", "value": "2009-12-11T05:08:31.243719"}, "subject_places": ["Zabb\u016bgh\u0101 (Lebanon)", "Lebanon"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T05:06:13.860395"}, "latest_revision": 2, "key": "/works/OL11692251W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4953361A"}}], "subject_people": ["Maloof family"], "type": {"key": "/type/work"}, "subjects": ["Genealogy", "History"], "revision": 2}
+/type/work /works/OL11692390W 3 2010-12-04T04:23:29.725393 {"last_modified": {"type": "/type/datetime", "value": "2010-12-04T04:23:29.725393"}, "title": "Bibliotheca canonica, juridica, moralis theologica, necnon ascetica, polemica, rubricistica, historia ...", "created": {"type": "/type/datetime", "value": "2009-12-11T05:08:31.243719"}, "subjects": ["Canon law", "Catholic Church", "Dictionaries"], "latest_revision": 3, "key": "/works/OL11692390W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4953440A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11692921W 3 2020-10-09T22:32:03.818704 {"last_modified": {"type": "/type/datetime", "value": "2020-10-09T22:32:03.818704"}, "title": "The amazing test match crime", "created": {"type": "/type/datetime", "value": "2009-12-11T05:08:37.447025"}, "subjects": ["England, fiction", "Fiction, mystery & detective, general", "Fiction, crime"], "latest_revision": 3, "key": "/works/OL11692921W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4953813A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11693023W 1 2009-12-11T05:08:37.447025 {"title": "Deinosoriaid 10", "created": {"type": "/type/datetime", "value": "2009-12-11T05:08:37.447025"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:08:37.447025"}, "latest_revision": 1, "key": "/works/OL11693023W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4953865A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11693301W 2 2010-01-21T05:06:13.860395 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:08:37.447025"}, "title": "Xing er shang xue yin lun", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T05:06:13.860395"}, "latest_revision": 2, "key": "/works/OL11693301W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4953974A"}}], "type": {"key": "/type/work"}, "subjects": ["Metaphysics"], "revision": 2}
+/type/work /works/OL11693361W 3 2010-12-03T20:20:47.510015 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:08:37.447025"}, "subject_places": ["Palestine"], "subjects": ["Education", "History", "Jews, Yemeni", "Social conditions", "Yemeni Jews"], "latest_revision": 3, "key": "/works/OL11693361W", "title": "H\u0323inukh v\u0323e-h\u0323evrah ba-\u02bbedah ha-Temanit be-Erets-Yis\u0301ra\u02bcel", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4954002A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T20:20:47.510015"}, "revision": 3}
+/type/work /works/OL11693722W 2 2010-01-21T05:11:11.131734 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:08:45.634281"}, "title": "Izvi\ufe20e\ufe21st\u012bi\ufe20a\ufe21 imperatorskago arkheologicheskago obshchestva", "subject_places": ["Soviet Union"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T05:11:11.131734"}, "latest_revision": 2, "key": "/works/OL11693722W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4954227A"}}], "type": {"key": "/type/work"}, "subjects": ["Societies", "Antiquities", "Archaeology"], "revision": 2}
+/type/work /works/OL11693792W 2 2010-01-21T05:11:11.131734 {"title": "Una lucida passione", "created": {"type": "/type/datetime", "value": "2009-12-11T05:08:45.634281"}, "subject_places": ["Basilicata (Italy)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T05:11:11.131734"}, "latest_revision": 2, "key": "/works/OL11693792W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4954283A"}}], "subject_people": ["Filippo Bubbico (1954-)"], "type": {"key": "/type/work"}, "subjects": ["Politics and government", "Interviews", "Economic conditions"], "revision": 2}
+/type/work /works/OL11694201W 4 2022-07-17T08:14:43.264718 {"title": "A review of UK health research funding", "covers": [5327492], "subject_places": ["Great Britain"], "key": "/works/OL11694201W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4954590A"}}], "subjects": ["Finance", "Research", "Medicine", "Medical policy", "Medical sciences", "Medicine, research", "Medicine, great britain"], "type": {"key": "/type/work"}, "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T05:08:45.634281"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-17T08:14:43.264718"}}
+/type/work /works/OL11694239W 2 2010-01-21T05:11:11.131734 {"title": "Dissertatio apologetica pro sanctarum Perpetuae, Felicitatis et sociorum martyrum orthodoxia adversus Samuelem Basnagium", "created": {"type": "/type/datetime", "value": "2009-12-11T05:08:45.634281"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T05:11:11.131734"}, "latest_revision": 2, "key": "/works/OL11694239W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4954617A"}}], "subject_people": ["Samuel Basnage sieur de Flottemanville (1638-1721)", "Felicitas Saint", "Perpetua Saint"], "type": {"key": "/type/work"}, "subjects": ["Christian martyrs"], "revision": 2}
+/type/work /works/OL11694410W 3 2019-07-31T08:53:55.414409 {"covers": [1349675], "last_modified": {"type": "/type/datetime", "value": "2019-07-31T08:53:55.414409"}, "latest_revision": 3, "key": "/works/OL11694410W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4954726A"}}, {"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL441646A"}}, {"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2781022A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T05:08:45.634281"}, "title": "Active every day", "subject_places": ["Great Britain"], "subjects": ["Physical education for children", "Curricula", "Exercise", "Study and teaching (Elementary)", "Sports & outdoor recreation", "Teaching of a specific subject", "For National Curriculum Key Stage 1"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11695441W 3 2010-12-03T15:32:58.827651 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:32:58.827651"}, "title": "Llyfr emynau a thonau y Methodistiaid Calfinaidd a Wesleaidd ynghud a salmau, gorchanau", "created": {"type": "/type/datetime", "value": "2009-12-11T05:08:53.725969"}, "subjects": ["Hymns", "Hymns, Welsh", "Welsh Calvinistic Methodist Church", "Welsh Hymns"], "latest_revision": 3, "key": "/works/OL11695441W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4955372A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11695502W 2 2012-08-04T01:42:57.254379 {"last_modified": {"type": "/type/datetime", "value": "2012-08-04T01:42:57.254379"}, "title": "The development of federal reserve policy", "created": {"type": "/type/datetime", "value": "2009-12-11T05:08:53.725969"}, "subjects": ["Banks and banking", "Federal reserve banks"], "latest_revision": 2, "key": "/works/OL11695502W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4955414A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11695521W 2 2010-01-21T05:15:40.685648 {"title": "L' univers et l'homme dans la philosophie de Saint Thomas", "created": {"type": "/type/datetime", "value": "2009-12-11T05:08:53.725969"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T05:15:40.685648"}, "latest_revision": 2, "key": "/works/OL11695521W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4955432A"}}], "subject_people": ["Thomas Aquinas, Saint (1225?-1274)"], "type": {"key": "/type/work"}, "subjects": ["Views on cosmology", "Cosmology", "Scholasticism"], "revision": 2}
+/type/work /works/OL11695623W 3 2010-12-03T17:59:12.593464 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T17:59:12.593464"}, "title": "Gaiko shi teiyo", "created": {"type": "/type/datetime", "value": "2009-12-11T05:09:01.481955"}, "subjects": ["Diplomacy", "Diplomatic and consular service, Japanese", "International relations", "Japanese Diplomatic and consular service"], "latest_revision": 3, "key": "/works/OL11695623W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4955513A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11695642W 1 2009-12-11T05:09:01.481955 {"title": "Poems of Mrs. Hannah T. Dowling", "created": {"type": "/type/datetime", "value": "2009-12-11T05:09:01.481955"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:09:01.481955"}, "latest_revision": 1, "key": "/works/OL11695642W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4955532A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL116957W 3 2020-10-30T09:08:05.807821 {"last_modified": {"type": "/type/datetime", "value": "2020-10-30T09:08:05.807821"}, "title": "Business Case Method", "created": {"type": "/type/datetime", "value": "2009-10-18T05:23:11.834130"}, "subjects": ["Business teachers", "Case method", "Taining of", "Training of"], "latest_revision": 3, "key": "/works/OL116957W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1219260A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11696324W 3 2020-12-08T22:33:21.769696 {"title": "La Universidad Auto\u0301noma de Nayarit en sus cimientos, 1964-1969", "subjects": ["Universidad Aut\u00f3noma de Nayarit"], "key": "/works/OL11696324W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4955997A"}}], "type": {"key": "/type/work"}, "description": {"type": "/type/text", "value": "A quality stock primarily photographic history of the physical construction during the initial years of the state university."}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T05:09:01.481955"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-08T22:33:21.769696"}}
+/type/work /works/OL11696368W 1 2009-12-11T05:09:01.481955 {"title": "T\u0323ovim ha-shenayim", "created": {"type": "/type/datetime", "value": "2009-12-11T05:09:01.481955"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:09:01.481955"}, "latest_revision": 1, "key": "/works/OL11696368W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4956020A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11696381W 2 2010-01-21T05:20:06.019527 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:09:01.481955"}, "title": "Wasserbauliche Modellversuche zur Kl\u00e4rung der Abflusserscheinungen beim Abschluss der Zuiderzee", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T05:20:06.019527"}, "latest_revision": 2, "key": "/works/OL11696381W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4956033A"}}], "type": {"key": "/type/work"}, "subjects": ["Dams", "Hydraulic engineering"], "revision": 2}
+/type/work /works/OL11696838W 1 2009-12-11T05:09:11.698067 {"title": "South Korea and the effects of external debt on economic performance", "created": {"type": "/type/datetime", "value": "2009-12-11T05:09:11.698067"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:09:11.698067"}, "latest_revision": 1, "key": "/works/OL11696838W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4956370A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11696927W 2 2010-01-21T05:20:06.019527 {"title": "Medea in Corinto di Felice Romani", "created": {"type": "/type/datetime", "value": "2009-12-11T05:09:11.698067"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T05:20:06.019527"}, "latest_revision": 2, "key": "/works/OL11696927W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4956426A"}}], "subject_people": ["Felice Romani (1788-1865)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11697270W 2 2010-01-21T05:20:06.019527 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:09:11.698067"}, "title": "The romance of British Columbia", "subject_places": ["British Columbia"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T05:20:06.019527"}, "latest_revision": 2, "key": "/works/OL11697270W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4956675A"}}], "type": {"key": "/type/work"}, "subjects": ["History"], "revision": 2}
+/type/work /works/OL11697572W 1 2009-12-11T05:09:11.698067 {"title": "The miracles of the prophet Muhammad", "created": {"type": "/type/datetime", "value": "2009-12-11T05:09:11.698067"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:09:11.698067"}, "latest_revision": 1, "key": "/works/OL11697572W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4956868A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11697617W 1 2009-12-11T05:09:11.698067 {"title": "Die Entstehung des bulgarischen Exarchats", "created": {"type": "/type/datetime", "value": "2009-12-11T05:09:11.698067"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:09:11.698067"}, "latest_revision": 1, "key": "/works/OL11697617W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4956892A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11698094W 2 2020-12-15T05:04:08.161132 {"title": "Chicago, Chicago", "key": "/works/OL11698094W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4957241A"}}], "type": {"key": "/type/work"}, "subjects": ["Irrigation"], "description": {"type": "/type/text", "value": "Author's account on his life experiences dealing with social life, politics, and humanism in the United States of America."}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T05:09:21.064990"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-15T05:04:08.161132"}}
+/type/work /works/OL11698127W 1 2009-12-11T05:09:21.064990 {"title": "Pareshani\u0304", "created": {"type": "/type/datetime", "value": "2009-12-11T05:09:21.064990"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:09:21.064990"}, "latest_revision": 1, "key": "/works/OL11698127W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4957266A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11698223W 2 2020-12-17T18:52:58.700690 {"title": "Bhava tac\u02bb kve\u02b9 krum\u0323 tve\u02b9 ra mhat\u02bb tuin\u0307\u02bb mya\u0304\u02ba", "key": "/works/OL11698223W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4957336A"}}], "type": {"key": "/type/work"}, "subjects": ["Soldiers", "Biography"], "description": {"type": "/type/text", "value": "Memoirs of a Burmese colonel on his journey."}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T05:09:21.064990"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-17T18:52:58.700690"}}
+/type/work /works/OL11698377W 4 2020-12-14T20:29:03.476383 {"title": "Il vescovo e il concilio", "subjects": ["Bishops (Canon law)", "Catholic Church", "Church renewal", "Episcopal conferences (Catholic)", "Government", "Vatican Council (2nd : 1962-1965). Decretum de pastorali episcoporum munere in Ecclesia", "Vatican Council (2nd : 1962-1965 : Basilica di San Pietro in Vaticano). Decretum de pastorali episcoporum munere in ecclesia"], "key": "/works/OL11698377W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4957452A"}}], "type": {"key": "/type/work"}, "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T05:09:21.064990"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-14T20:29:03.476383"}}
+/type/work /works/OL1169842W 3 2019-01-10T05:16:25.107059 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:38:05.416077"}, "subjects": ["Literature", "Collections"], "latest_revision": 3, "key": "/works/OL1169842W", "title": "From darkness to light", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL118232A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2019-01-10T05:16:25.107059"}, "covers": [8326385], "revision": 3}
+/type/work /works/OL11698469W 2 2010-01-21T05:24:18.434797 {"title": "Guido Salvini, o, Della nascita della regia in Italia", "created": {"type": "/type/datetime", "value": "2009-12-11T05:09:21.064990"}, "subject_places": ["Italy"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T05:24:18.434797"}, "latest_revision": 2, "key": "/works/OL11698469W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4957521A"}}], "subject_people": ["Guido Salvini (1893-1964)"], "type": {"key": "/type/work"}, "subjects": ["Theatrical producers and directors", "Biography"], "revision": 2}
+/type/work /works/OL11698749W 2 2010-01-21T05:24:18.434797 {"title": "Les traductions fran\u00e7aises du Guzman d'Alfarache [par Mateo Aleman]", "created": {"type": "/type/datetime", "value": "2009-12-11T05:09:28.310229"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T05:24:18.434797"}, "latest_revision": 2, "key": "/works/OL11698749W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4957696A"}}], "subject_people": ["Mateo Alem\u00e1n (1547-1614?)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11698800W 2 2010-01-21T05:24:18.434797 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:09:28.310229"}, "title": "Histoire de l'industrie lini\u00e8re en Belgique", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T05:24:18.434797"}, "latest_revision": 2, "key": "/works/OL11698800W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4957737A"}}], "type": {"key": "/type/work"}, "subjects": ["Linen"], "revision": 2}
+/type/work /works/OL11698944W 2 2010-01-21T05:24:18.434797 {"title": "Die Politik K\u00f6nig Johanns von B\u00f6hmen in den Jahren 1330-1334", "created": {"type": "/type/datetime", "value": "2009-12-11T05:09:28.310229"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T05:24:18.434797"}, "latest_revision": 2, "key": "/works/OL11698944W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4957834A"}}], "subject_people": ["John King of Bohemia (d. 1346)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11699484W 2 2010-01-21T05:28:40.493849 {"title": "E\u0307l\u02b9mira shturmuet shakhmatnyi\u0306 Olimp", "created": {"type": "/type/datetime", "value": "2009-12-11T05:09:28.310229"}, "subject_places": ["Moldova"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T05:28:40.493849"}, "latest_revision": 2, "key": "/works/OL11699484W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4958189A"}}], "subject_people": ["Skripchenko, \u0116l\u02b9mira (1976-)"], "type": {"key": "/type/work"}, "subjects": ["Chess players", "Chess", "Biography", "Collections of games"], "revision": 2}
+/type/work /works/OL11699594W 3 2010-12-03T19:37:46.021845 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:09:28.310229"}, "subject_places": ["Soviet Union"], "subjects": ["Biography", "Personal narratives, Ukrainian", "Refugees", "Ukrainian Personal narratives", "World War, 1939-1945"], "latest_revision": 3, "key": "/works/OL11699594W", "title": "Poiedynok z dyiavolom", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4958255A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T19:37:46.021845"}, "revision": 3}
+/type/work /works/OL11699665W 1 2009-12-11T05:09:40.478736 {"title": "San bian wen xue", "created": {"type": "/type/datetime", "value": "2009-12-11T05:09:40.478736"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:09:40.478736"}, "latest_revision": 1, "key": "/works/OL11699665W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4958305A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11699744W 1 2009-12-11T05:09:40.478736 {"title": "The establishment of foreign companies in Greece with particular reference to the compliance of Greece with the law of the European union", "created": {"type": "/type/datetime", "value": "2009-12-11T05:09:40.478736"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:09:40.478736"}, "latest_revision": 1, "key": "/works/OL11699744W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4958361A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11699814W 2 2017-01-10T22:00:13.718166 {"title": "Public library administration", "created": {"type": "/type/datetime", "value": "2009-12-11T05:09:40.478736"}, "last_modified": {"type": "/type/datetime", "value": "2017-01-10T22:00:13.718166"}, "latest_revision": 2, "key": "/works/OL11699814W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2342417A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11699936W 1 2009-12-11T05:09:40.478736 {"title": "Ceneviz deresi", "created": {"type": "/type/datetime", "value": "2009-12-11T05:09:40.478736"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:09:40.478736"}, "latest_revision": 1, "key": "/works/OL11699936W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4958489A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11699950W 3 2010-03-12T23:59:56.964148 {"subtitle": "berure halakhot ha-nog\u02bbim la-halakhah le-ma\u02bbas\u0301eh u-shut be-\u02bbinyanim ha-\u02bbomdim \u02bbal ha-perek\u0323 be-4 h\u0323elk\u0323e ha-Shulh\u0323an \u02bbarukh", "created": {"type": "/type/datetime", "value": "2009-12-11T05:09:40.478736"}, "title": "Shut V\u0323a-yevarekh Dav\u0323id", "last_modified": {"type": "/type/datetime", "value": "2010-03-12T23:59:56.964148"}, "latest_revision": 3, "key": "/works/OL11699950W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4958499A"}}], "subject_times": ["1800-1948"], "type": {"key": "/type/work"}, "subjects": ["Responsa"], "revision": 3}
+/type/work /works/OL11699995W 1 2009-12-11T05:09:40.478736 {"title": "Skulptor Lembit Paluteder", "created": {"type": "/type/datetime", "value": "2009-12-11T05:09:40.478736"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:09:40.478736"}, "latest_revision": 1, "key": "/works/OL11699995W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4958539A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1170046W 2 2010-01-21T05:33:27.654994 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:38:14.940245"}, "title": "A study of the separation and estimation of the four general classes of hydrocarbons occurring in the gasoline range of petroleum", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T05:33:27.654994"}, "latest_revision": 2, "key": "/works/OL1170046W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL118244A"}}], "type": {"key": "/type/work"}, "subjects": ["Hydrocarbons", "Gasoline"], "revision": 2}
+/type/work /works/OL11700692W 3 2010-04-28T07:23:32.955928 {"title": "Hihan to teiko\u0304", "created": {"type": "/type/datetime", "value": "2009-12-11T05:09:48.626555"}, "covers": [5328289], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:23:32.955928"}, "latest_revision": 3, "key": "/works/OL11700692W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4958981A"}}], "subject_times": ["20th century"], "subjects": ["History and criticism", "Japanese literature"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11700704W 3 2010-04-28T07:23:32.955928 {"title": "Edo wazao shokunin rekishi to waza o kataru", "created": {"type": "/type/datetime", "value": "2009-12-11T05:09:48.626555"}, "covers": [5328301], "subject_places": ["Japan"], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:23:32.955928"}, "latest_revision": 3, "key": "/works/OL11700704W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4958989A"}}], "subjects": ["Bamboo", "Fishing rods", "Design and construction"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11700991W 2 2010-01-21T05:33:27.654994 {"title": "Controluce", "created": {"type": "/type/datetime", "value": "2009-12-11T05:09:48.626555"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T05:33:27.654994"}, "latest_revision": 2, "key": "/works/OL11700991W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4959179A"}}], "subject_people": ["Luigi Pirandello (1867-1936)"], "type": {"key": "/type/work"}, "subjects": ["Criticism and interpretation", "Light and darkness in literature"], "revision": 2}
+/type/work /works/OL11701211W 1 2009-12-11T05:09:48.626555 {"title": "The role of celebrity in women's glossy monthly magazine publishing", "created": {"type": "/type/datetime", "value": "2009-12-11T05:09:48.626555"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:09:48.626555"}, "latest_revision": 1, "key": "/works/OL11701211W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4959333A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11701233W 1 2009-12-11T05:09:48.626555 {"title": "Os melhores poemas de L\u00eado Ivo", "created": {"type": "/type/datetime", "value": "2009-12-11T05:09:48.626555"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:09:48.626555"}, "latest_revision": 1, "key": "/works/OL11701233W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4959350A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1170123W 3 2017-12-08T05:10:25.551843 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:38:14.940245"}, "subjects": ["Schizophrenia", "Dreams", "Subconsciousness", "Unconscious (Psychology)"], "latest_revision": 3, "key": "/works/OL1170123W", "title": "Mythology of the soul", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL118255A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2017-12-08T05:10:25.551843"}, "covers": [8106188], "revision": 3}
+/type/work /works/OL1170146W 2 2010-01-21T05:33:27.654994 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:38:14.940245"}, "title": "Experimental bibliographical service covering representative periodicals in the Chinese, Japanese, Russian, and Dutch languages, with special reference to problems of the Pacific area", "subject_places": ["East Asia"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T05:33:27.654994"}, "latest_revision": 2, "key": "/works/OL1170146W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL118258A"}}], "type": {"key": "/type/work"}, "subjects": ["Bibliography", "Periodicals", "Pan-Pacific relations"], "revision": 2}
+/type/work /works/OL11701538W 3 2010-12-03T22:21:00.635832 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:09:48.626555"}, "subject_places": ["Quebec (Province)"], "subjects": ["Bills, Legislative", "Legislative Bills", "Lumber trade"], "latest_revision": 3, "key": "/works/OL11701538W", "title": "Bill as reported by the special committee of the House of Assembly of the province of Lower-Canada, to amend certain acts therein mentioned and for making more ample provision for the regulation of the lumber trade", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4959593A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T22:21:00.635832"}, "revision": 3}
+/type/work /works/OL11701624W 3 2010-12-03T21:17:48.901855 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T21:17:48.901855"}, "title": "A gallery of deceased ministers", "created": {"type": "/type/datetime", "value": "2009-12-11T05:09:56.875080"}, "subjects": ["Biography", "Methodists", "Primitive Methodist Church (Great Britain)"], "latest_revision": 3, "key": "/works/OL11701624W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4959652A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11702423W 3 2010-12-03T15:32:27.031732 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:32:27.031732"}, "title": "al- Minha\u0304j al-Isla\u0304mi\u0304 fi\u0304 al-tarbiyah \u02bbala\u0301 h\u0323uqu\u0304q al-insa\u0304n", "created": {"type": "/type/datetime", "value": "2009-12-11T05:09:56.875080"}, "subjects": ["Human rights", "Islam", "Islamic education", "Islamic religious education", "Religious aspects", "Religious aspects of Human rights"], "latest_revision": 3, "key": "/works/OL11702423W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4960239A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11702568W 2 2012-06-03T23:02:14.196750 {"subtitle": "Humanismus und Christentum: die doppelte Orientierung der europ aischen Schule", "title": "Jacob-Burckhardt-Gespr\u00e4che auf Castelen, vol. 14", "created": {"type": "/type/datetime", "value": "2009-12-11T05:09:56.875080"}, "last_modified": {"type": "/type/datetime", "value": "2012-06-03T23:02:14.196750"}, "latest_revision": 2, "key": "/works/OL11702568W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4960342A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11702815W 4 2010-12-03T15:34:43.802346 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:34:43.802346"}, "title": "Ottoman reforms and social life", "created": {"type": "/type/datetime", "value": "2009-12-11T05:10:05.975926"}, "covers": [5328566], "subject_places": ["Thessalonik\u0113 (Greece)", "Turkey"], "subjects": ["History", "Social life and customs"], "latest_revision": 4, "key": "/works/OL11702815W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4960504A"}}], "subject_times": ["19th century", "Tanzimat, 1839-1876"], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL1170318W 1 2009-12-09T20:38:14.940245 {"title": "Depression jobs", "created": {"type": "/type/datetime", "value": "2009-12-09T20:38:14.940245"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T20:38:14.940245"}, "latest_revision": 1, "key": "/works/OL1170318W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL118283A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11703418W 1 2009-12-11T05:10:05.975926 {"title": "Porowatos\u0301c\u0301 odlewo\u0301w kompozytowych wytwarzanych przez nasycanie zbrojenia metalem", "created": {"type": "/type/datetime", "value": "2009-12-11T05:10:05.975926"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:10:05.975926"}, "latest_revision": 1, "key": "/works/OL11703418W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4960954A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1170357W 1 2009-12-09T20:38:14.940245 {"title": "The untasted feast", "created": {"type": "/type/datetime", "value": "2009-12-09T20:38:14.940245"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T20:38:14.940245"}, "latest_revision": 1, "key": "/works/OL1170357W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL118286A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11703662W 1 2009-12-11T05:10:14.745388 {"title": "HISTORY OF GERMANY P. 83-118", "created": {"type": "/type/datetime", "value": "2009-12-11T05:10:14.745388"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:10:14.745388"}, "latest_revision": 1, "key": "/works/OL11703662W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4961143A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11703857W 4 2020-12-14T12:52:42.060629 {"subject_places": ["Arabian Peninsula"], "subjects": ["Ba\u015fbakanl\u0131k Osmanl\u0131 Ar\u015fivi (Turkey)", "History", "Sources"], "key": "/works/OL11703857W", "title": "al- Jazi\u0304rah al-\u02bbArabi\u0304yah", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4961304A"}}], "type": {"key": "/type/work"}, "description": {"type": "/type/text", "value": "Arabian Peninsula; history; Ottoman documents; sources."}, "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T05:10:14.745388"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-14T12:52:42.060629"}}
+/type/work /works/OL11703896W 2 2020-12-14T13:29:52.953593 {"title": "Mur Jangkung", "key": "/works/OL11703896W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4961336A"}}], "type": {"key": "/type/work"}, "description": {"type": "/type/text", "value": "History of Indonesia in litography during the VOC occupation, an East India Company."}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T05:10:14.745388"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-14T13:29:52.953593"}}
+/type/work /works/OL11703959W 4 2020-12-14T17:05:31.334641 {"subjects": ["Gods, Vedic", "Synonyms and antonyms", "Vedic Gods", "Vedic language", "Vedic philology"], "subject_people": ["Y\u0101ska"], "key": "/works/OL11703959W", "title": "Nirukta daivataka\u0304n\u0323d\u0323a, eka anus\u0301i\u0304lana\u0304tmaka adhyayana", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4961386A"}}], "type": {"key": "/type/work"}, "description": {"type": "/type/text", "value": "Study of Daivataka\u0304n\u0323d\u0323a on concept of Vedic gods, third chapter of Nirukta of Ya\u0304ska, treatise on Vedic philology and synonyms."}, "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T05:10:14.745388"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-14T17:05:31.334641"}}
+/type/work /works/OL11704706W 3 2010-12-03T15:35:22.342917 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:10:21.673501"}, "subject_places": ["Andes Region", "Bolivia"], "subjects": ["Comunidad Andina", "Economic integration", "Economic policy"], "latest_revision": 3, "key": "/works/OL11704706W", "title": "Constitucio\u0301n, estado y economi\u0301a", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4961943A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:35:22.342917"}, "revision": 3}
+/type/work /works/OL11704789W 1 2009-12-11T05:10:21.673501 {"title": "Tiempos de hambre", "created": {"type": "/type/datetime", "value": "2009-12-11T05:10:21.673501"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:10:21.673501"}, "latest_revision": 1, "key": "/works/OL11704789W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4962010A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1170489W 2 2010-01-21T05:47:41.135240 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:38:14.940245"}, "title": "L' Iran sous les Sassanides", "subject_places": ["Iran"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T05:47:41.135240"}, "latest_revision": 2, "key": "/works/OL1170489W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL118290A"}}], "subject_times": ["To 640"], "type": {"key": "/type/work"}, "subjects": ["Sassanids", "History"], "revision": 2}
+/type/work /works/OL11705044W 2 2010-01-21T05:47:41.135240 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:10:21.673501"}, "title": "Weapons", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T05:47:41.135240"}, "latest_revision": 2, "key": "/works/OL11705044W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4962163A"}}], "type": {"key": "/type/work"}, "subjects": ["Martial arts weapons", "Juvenile literature"], "revision": 2}
+/type/work /works/OL11705317W 2 2010-01-21T05:47:41.135240 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:10:21.673501"}, "title": "Ch\u02bb\u014fnbugy\u014fng", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T05:47:41.135240"}, "latest_revision": 2, "key": "/works/OL11705317W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4962298A"}}], "type": {"key": "/type/work"}, "subjects": ["Taejonggyo"], "revision": 2}
+/type/work /works/OL11705510W 3 2020-12-17T19:01:41.350882 {"title": "Janapada Camoli\u0304 ki\u0304 pramukha vibhu\u0304tiya\u0304m\u0310 / Padmasena Gusa\u0304i\u0304m\u0323 \"Kamales\u0301a\"", "subject_places": ["Chamoli District", "India"], "key": "/works/OL11705510W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4962425A"}}], "type": {"key": "/type/work"}, "subjects": ["Chamoli District (India)", "Successful people", "Celebrities", "Biography"], "description": {"type": "/type/text", "value": "Brief biographies of eminent persons in politics, education, engineering field, religion, journalism from Uttaranchal, India."}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T05:10:21.673501"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-17T19:01:41.350882"}}
+/type/work /works/OL11705827W 2 2020-12-17T22:53:35.992569 {"title": "Laboratory services to support malaria management in Malawi", "key": "/works/OL11705827W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4962663A"}}], "type": {"key": "/type/work"}, "subjects": ["Malaria", "Diagnosis", "Medical laboratories"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T05:10:30.036626"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-17T22:53:35.992569"}}
+/type/work /works/OL11706540W 2 2012-05-18T13:45:25.848890 {"title": "Independent Television Authority", "created": {"type": "/type/datetime", "value": "2009-12-11T05:10:30.036626"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-18T13:45:25.848890"}, "latest_revision": 2, "key": "/works/OL11706540W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4740933A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11706795W 2 2010-01-21T05:52:15.997179 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:10:38.819907"}, "title": "Biotecnologia alimentar na regi\u00e3o norte", "subject_places": ["Portugal"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T05:52:15.997179"}, "latest_revision": 2, "key": "/works/OL11706795W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4963352A"}}], "type": {"key": "/type/work"}, "subjects": ["Food", "Biotechnology", "Economic conditions"], "revision": 2}
+/type/work /works/OL11706920W 2 2010-01-21T05:52:15.997179 {"title": "Not a sparrow falls", "created": {"type": "/type/datetime", "value": "2009-12-11T05:10:38.819907"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T05:52:15.997179"}, "latest_revision": 2, "key": "/works/OL11706920W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4963447A"}}], "subject_people": ["Harold Palmer (1917-)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11706988W 3 2020-11-29T06:40:20.444738 {"description": {"type": "/type/text", "value": "Presents the history and the results of a late 18th-century general land survey in eastern Belarus."}, "last_modified": {"type": "/type/datetime", "value": "2020-11-29T06:40:20.444738"}, "title": "Heneral\u02b9nae mez\ufe20h\ufe21avanne na Belarusi", "created": {"type": "/type/datetime", "value": "2009-12-11T05:10:38.819907"}, "subject_places": ["Belarus"], "subjects": ["History", "Real property", "Surveying"], "latest_revision": 3, "key": "/works/OL11706988W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4963499A"}}], "subject_times": ["18th century"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11707072W 1 2009-12-11T05:10:38.819907 {"title": "\"The Ulverston bank clock\"", "created": {"type": "/type/datetime", "value": "2009-12-11T05:10:38.819907"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:10:38.819907"}, "latest_revision": 1, "key": "/works/OL11707072W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4963565A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11707228W 3 2010-12-03T17:20:18.346859 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T17:20:18.346859"}, "title": "S\u0301ih\u0323ot Maran rosh ha-yeshivah", "created": {"type": "/type/datetime", "value": "2009-12-11T05:10:38.819907"}, "subjects": ["Hebrew Jewish sermons", "Jewish sermons, Hebrew"], "latest_revision": 3, "key": "/works/OL11707228W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4963693A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11707366W 2 2012-06-18T21:00:20.931530 {"title": "Mo fa qi shi", "created": {"type": "/type/datetime", "value": "2009-12-11T05:10:38.819907"}, "last_modified": {"type": "/type/datetime", "value": "2012-06-18T21:00:20.931530"}, "latest_revision": 2, "key": "/works/OL11707366W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4963796A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11708108W 2 2010-01-21T05:56:47.182045 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:10:46.371860"}, "title": "Ra\u0304ya\u0304t al-Isla\u0304m", "subject_places": ["Islamic countries"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T05:56:47.182045"}, "latest_revision": 2, "key": "/works/OL11708108W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4964281A"}}], "type": {"key": "/type/work"}, "subjects": ["Flags", "History"], "revision": 2}
+/type/work /works/OL1170813W 2 2010-01-21T05:56:47.182045 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:38:14.940245"}, "title": "Contemporary Italy", "subject_places": ["Italy"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T05:56:47.182045"}, "latest_revision": 2, "key": "/works/OL1170813W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL118335A"}}], "subject_times": ["1870-1914"], "type": {"key": "/type/work"}, "subjects": ["Politics and government", "Civilization", "History"], "revision": 2}
+/type/work /works/OL11708250W 1 2009-12-11T05:10:46.371860 {"title": "Rabam Kham\u00e6\u0304 =", "created": {"type": "/type/datetime", "value": "2009-12-11T05:10:46.371860"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:10:46.371860"}, "latest_revision": 1, "key": "/works/OL11708250W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4964371A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1170863W 2 2010-12-06T04:12:08.993458 {"last_modified": {"type": "/type/datetime", "value": "2010-12-06T04:12:08.993458"}, "title": "Bog-ormens metamorfose", "created": {"type": "/type/datetime", "value": "2009-12-09T20:38:14.940245"}, "subjects": ["Library of Congress"], "latest_revision": 2, "key": "/works/OL1170863W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL118340A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11708787W 1 2009-12-11T05:10:54.612462 {"title": "Menggugat sekolah", "created": {"type": "/type/datetime", "value": "2009-12-11T05:10:54.612462"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:10:54.612462"}, "latest_revision": 1, "key": "/works/OL11708787W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4964753A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11709274W 2 2010-01-21T06:01:13.143344 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:10:54.612462"}, "title": "Manuscript", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T06:01:13.143344"}, "latest_revision": 2, "key": "/works/OL11709274W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4965111A"}}], "type": {"key": "/type/work"}, "subjects": ["Drama", "Interpersonal relations", "Manuscripts", "Ambition"], "revision": 2}
+/type/work /works/OL11709282W 3 2010-04-28T07:23:32.955928 {"title": "Laws and customs", "created": {"type": "/type/datetime", "value": "2009-12-11T05:10:54.612462"}, "covers": [5329961], "subject_places": ["Eastern Europe", "Lithuania"], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:23:32.955928"}, "latest_revision": 3, "key": "/works/OL11709282W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4965118A"}}], "subject_times": ["1991-"], "subjects": ["Entrepreneurship", "Economic conditions", "Small business"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11709452W 2 2010-01-21T06:01:13.143344 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:10:54.612462"}, "title": "La liberta\u0300 terapeutica come diritto culturale", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T06:01:13.143344"}, "latest_revision": 2, "key": "/works/OL11709452W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4965245A"}}], "type": {"key": "/type/work"}, "subjects": ["Legal status, laws", "Religious minorities", "Religion and state", "Medical laws and legislation", "Multiculturalism", "Law and legislation"], "revision": 2}
+/type/work /works/OL1170999W 2 2010-01-21T06:01:13.143344 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:38:24.286896"}, "title": "Der schweizerische Nationalgedanke", "subject_places": ["Switzerland"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T06:01:13.143344"}, "latest_revision": 2, "key": "/works/OL1170999W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL118348A"}}], "type": {"key": "/type/work"}, "subjects": ["Nationalism", "History"], "revision": 2}
+/type/work /works/OL11710089W 3 2010-12-03T15:36:58.231233 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:36:58.231233"}, "title": "Tian pin, shui guo, yin pin", "created": {"type": "/type/datetime", "value": "2009-12-11T05:11:01.950834"}, "subjects": ["Children", "Chinese Cookery", "Cookery, Chinese", "Nutrition"], "latest_revision": 3, "key": "/works/OL11710089W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4965651A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11710151W 2 2010-01-21T06:01:13.143344 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:11:01.950834"}, "title": "U\u0306mak cho\u0306jakkwo\u0306n u\u0306n sara itta", "subject_places": ["Korea (South)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T06:01:13.143344"}, "latest_revision": 2, "key": "/works/OL11710151W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4965672A"}}], "type": {"key": "/type/work"}, "subjects": ["Popular works", "Music", "Copyright"], "revision": 2}
+/type/work /works/OL11710154W 3 2010-12-03T16:43:03.270166 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T16:43:03.270166"}, "title": "Ch\u02bbimmuk hanu\u0306n posu ronu\u0306n nara mot chik\u02bbinda", "created": {"type": "/type/datetime", "value": "2009-12-11T05:11:01.950834"}, "subject_places": ["Korea (South)"], "subjects": ["Capital and capitol", "City planning", "Lawyers", "Political activity", "Political aspects", "Political aspects of City planning", "Politics and government"], "subject_people": ["S\u014fg-y\u014fn Yi"], "key": "/works/OL11710154W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4965675A"}}], "latest_revision": 3, "subject_times": ["1988-2002"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11710373W 1 2009-12-11T05:11:01.950834 {"title": "The biography of a silver-fox, or, Domino Reynard of Goldur Town", "created": {"type": "/type/datetime", "value": "2009-12-11T05:11:01.950834"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:11:01.950834"}, "latest_revision": 1, "key": "/works/OL11710373W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4965837A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11710759W 4 2022-12-29T19:19:43.881473 {"title": "Sanderson Miller and his landscapes", "subject_places": ["Great Britain"], "key": "/works/OL11710759W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4966103A"}}], "subject_people": ["Sanderson Miller (1716-1780)"], "type": {"key": "/type/work"}, "subjects": ["Architects", "Gothic revival (Architecture)", "Gothic revival (architecture)", "Architecture, great britain", "Public housing", "History", "Social conditions"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T05:11:09.905341"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-29T19:19:43.881473"}}
+/type/work /works/OL11711108W 3 2012-11-28T11:20:39.704639 {"title": "Marketing", "created": {"type": "/type/datetime", "value": "2009-12-11T05:11:09.905341"}, "last_modified": {"type": "/type/datetime", "value": "2012-11-28T11:20:39.704639"}, "latest_revision": 3, "key": "/works/OL11711108W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4966349A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11711253W 2 2010-01-21T06:05:52.484715 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:11:09.905341"}, "title": "Informacinio karo koncepcija", "subject_places": ["United States", "Russia (Federation)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T06:05:52.484715"}, "latest_revision": 2, "key": "/works/OL11711253W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4966434A"}}], "type": {"key": "/type/work"}, "subjects": ["Military policy", "Information warfare"], "revision": 2}
+/type/work /works/OL11711267W 3 2020-12-19T22:14:51.486257 {"title": "Determinants of business success", "key": "/works/OL11711267W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4966447A"}}], "type": {"key": "/type/work"}, "subjects": ["Asian American business enterprises", "Success in business"], "description": {"type": "/type/text", "value": "\"Using confidential and restricted-access microdata from the U.S. Census Bureau, we find that Asian-owned businesses are 16.9 percent less likely to close, 20.6 percent more likely to have profits of at least $10,000, and 27.2 percent more likely to hire employees than white-owned businesses in the United States. Asian firms also have mean annual sales that are roughly 60 percent higher than the mean sales of white firms. Using regression estimates and a special non-linear decomposition technique, we explore the role that class resources, such as financial capital and human capital, play in contributing to the relative success of Asian businesses. We find that Asian-owned businesses are more successful than white-owned businesses for two main reasons -- Asian owners have high levels of human capital and their businesses have substantial startup capital. Startup capital and education alone explain from 65 percent to the entire gap in business outcomes between Asians and whites. Using the detailed information on both the owner and the firm available in the CBO, we estimate the explanatory power of several additional factors\"--Forschungsinstitut zur Zukunft der Arbeit web site."}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T05:11:09.905341"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-19T22:14:51.486257"}}
+/type/work /works/OL11711358W 4 2010-12-03T15:36:25.745787 {"covers": [5330419], "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:36:25.745787"}, "latest_revision": 4, "key": "/works/OL11711358W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4966525A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T05:11:09.905341"}, "title": "Ins Ohr geschrieben", "subjects": ["Criticism, Textual", "German language", "History and criticism", "Music", "Rhyme", "Semiotics", "Textual Criticism", "Versification"], "subject_times": ["18th century"], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL11711772W 4 2022-12-29T13:10:59.928537 {"subtitle": "ot sopernichestva k garmonii interesov?", "key": "/works/OL11711772W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4966835A"}}], "title": "Rossii\ufe20a\ufe21-Kita\u012d-Amerika", "subject_places": ["China", "United States", "Russia (Federation)", "Soviet Union"], "subjects": ["Foreign relations", "Forelations"], "type": {"key": "/type/work"}, "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T05:11:18.177775"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-29T13:10:59.928537"}}
+/type/work /works/OL11711839W 6 2022-06-18T05:23:06.307340 {"subjects": ["Addresses, essays, lectures", "Intellectuals", "Sociology", "Sociology of Knowledge", "Intellectuels", "Sociologie", "Sociologie de la connaissance", "Sociology of knowledge", "Soziologische Theorie", "Gesellschaft", "Wissenssoziologie", "Intellectuelen", "Kennissociologie", "Sociology, history"], "key": "/works/OL11711839W", "title": "The constitution of society", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4966884A"}}], "type": {"key": "/type/work"}, "covers": [4384033], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2009-12-11T05:11:18.177775"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-18T05:23:06.307340"}}
+/type/work /works/OL11711897W 3 2023-01-08T11:53:03.512019 {"title": "I\u0307kinci I\u0307stanbul ve Deprem Sempozyumu", "subject_places": ["Turkey", "Istanbul"], "key": "/works/OL11711897W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4966926A"}}], "type": {"key": "/type/work"}, "subjects": ["Congresses", "Earthquakes", "Earthquake hazard analysis"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T05:11:18.177775"}, "last_modified": {"type": "/type/datetime", "value": "2023-01-08T11:53:03.512019"}}
+/type/work /works/OL11712013W 2 2010-01-21T06:10:26.008284 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:11:18.177775"}, "title": "Studies on brain drain", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T06:10:26.008284"}, "latest_revision": 2, "key": "/works/OL11712013W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4967030A"}}], "type": {"key": "/type/work"}, "subjects": ["Brain drain", "Bibliography"], "revision": 2}
+/type/work /works/OL11712240W 2 2010-01-21T06:10:26.008284 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:11:18.177775"}, "title": "Technology education in a democratic Nigeria", "subject_places": ["Nigeria"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T06:10:26.008284"}, "latest_revision": 2, "key": "/works/OL11712240W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4967191A"}}], "type": {"key": "/type/work"}, "subjects": ["Technical education", "Congresses"], "revision": 2}
+/type/work /works/OL11713481W 1 2009-12-11T05:11:26.523383 {"title": "Abjadiyat Al-Maout Huban", "created": {"type": "/type/datetime", "value": "2009-12-11T05:11:26.523383"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:11:26.523383"}, "latest_revision": 1, "key": "/works/OL11713481W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4968077A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11714607W 4 2010-12-04T02:16:31.150145 {"covers": [5449479], "last_modified": {"type": "/type/datetime", "value": "2010-12-04T02:16:31.150145"}, "latest_revision": 4, "key": "/works/OL11714607W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4968843A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T05:11:34.173333"}, "title": "The ancient theatre of Herculaneum", "subject_places": ["Herculaneum (Extinct city)", "Italy"], "subjects": ["Excavations (Archaeology)", "Theaters"], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL11714705W 1 2009-12-11T05:11:43.702973 {"title": "Na snegu rozovyi\u0306 svet--", "created": {"type": "/type/datetime", "value": "2009-12-11T05:11:43.702973"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:11:43.702973"}, "latest_revision": 1, "key": "/works/OL11714705W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4968923A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11714883W 3 2010-12-03T17:56:20.234556 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T17:56:20.234556"}, "title": "Nerazgadanny\u012d Barkla\u012d", "created": {"type": "/type/datetime", "value": "2009-12-11T05:11:43.702973"}, "subject_places": ["Russia"], "subjects": ["Biography", "Campaigns", "History, Military", "Marshals", "Military History", "Napoleonic Wars, 1800-1815"], "subject_people": ["Mikhail Bogdanovich Barkla\u012d de Tolli kni\ufe20a\ufe21z\u02b9 (1761-1818)"], "key": "/works/OL11714883W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4969079A"}}], "latest_revision": 3, "subject_times": ["1801-1917"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11715245W 2 2010-01-21T06:19:22.702854 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:11:43.702973"}, "title": "Proceedings of the Short Course on Reproductive Health, Rights, Ethics, and Law for Law Professionals", "subject_places": ["Philippines", "PhilippinesvCongresses"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T06:19:22.702854"}, "latest_revision": 2, "key": "/works/OL11715245W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4969364A"}}], "type": {"key": "/type/work"}, "subjects": ["Law and legislation", "Congresses", "Human reproduction", "Women's health services", "Women's rights"], "revision": 2}
+/type/work /works/OL11715289W 4 2014-02-03T15:58:47.040180 {"links": [{"url": "http://www.extar.net", "type": {"key": "/type/link"}, "title": "alamanaque.extar"}], "covers": [7270357], "last_modified": {"type": "/type/datetime", "value": "2014-02-03T15:58:47.040180"}, "latest_revision": 4, "key": "/works/OL11715289W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4969399A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T05:11:43.702973"}, "title": "France\u0302s-portugue\u0302s", "subjects": ["Dictionaries", "Portuguese", "French language", "French", "Portuguese language"], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL11715353W 1 2009-12-11T05:11:43.702973 {"title": "Ustoi\u0306chivost\u02b9 po Li\ufe20a\ufe21punovu i kolebatel\u02b9nost\u02b9 v e\u0307konomicheskikh modeli\ufe20a\ufe21kh", "created": {"type": "/type/datetime", "value": "2009-12-11T05:11:43.702973"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:11:43.702973"}, "latest_revision": 1, "key": "/works/OL11715353W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4969459A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11715360W 3 2010-12-03T15:36:25.745787 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:36:25.745787"}, "latest_revision": 3, "key": "/works/OL11715360W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4969466A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T05:11:43.702973"}, "title": "Memo\u0301rias de 1822 a 1863", "subject_places": ["Portugal"], "subjects": ["Carthusians", "History"], "subject_people": ["Francisco d'Assun\u00e7\u00e3o Ferreira de Matos"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11715548W 2 2020-12-22T17:25:09.521670 {"title": "Nanotekhnologii v dobyche nefti i gaza", "key": "/works/OL11715548W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4969610A"}}], "type": {"key": "/type/work"}, "subjects": ["Nanotechnology", "Petroleum engineering", "Natural gas"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T05:11:43.702973"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-22T17:25:09.521670"}}
+/type/work /works/OL11715644W 2 2010-01-21T06:19:22.702854 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:11:52.732977"}, "title": "Jiu shi nian dai Ma Hua wen xue zhan wang", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T06:19:22.702854"}, "latest_revision": 2, "key": "/works/OL11715644W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4969694A"}}], "type": {"key": "/type/work"}, "subjects": ["Malaysian literature (Chinese)"], "revision": 2}
+/type/work /works/OL11716239W 3 2020-12-17T00:05:21.751585 {"title": "Lan\u0307ka\u0304ve\u0304 Adhya\u0304panaya Pil\u0323ibandha Vis\u0301e\u0304s\u0323a Ka\u0304raka Sabha\u0304ve va\u0304rta\u0304vayi", "subject_places": ["Sri Lanka"], "key": "/works/OL11716239W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4970180A"}}], "type": {"key": "/type/work"}, "subjects": ["Education", "Education and state"], "description": {"type": "/type/text", "value": "Reports of Adhya\u0304panaya Pil\u0323ibandha Vis\u0301e\u0304s\u0323a Ka\u0304raka Sabha\u0304, the education commission appointed by Sri Lankan state in 1942."}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T05:11:52.732977"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-17T00:05:21.751585"}}
+/type/work /works/OL11716613W 4 2022-06-17T06:10:50.783627 {"title": "\"Kein Land ohne Deich-- !\"", "covers": [5331679], "subject_places": ["Germany", "Schleswig-Holstein", "Schleswig-Holstein (Germany)"], "key": "/works/OL11716613W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4970483A"}}], "subjects": ["History", "Dikes (Engineering)", "Coasts", "Dikes (engineering)", "Germany, history"], "type": {"key": "/type/work"}, "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T05:11:52.732977"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-17T06:10:50.783627"}}
+/type/work /works/OL11717202W 1 2009-12-11T05:12:02.297873 {"title": "Merkmale der 40 Hz-Aktivita\u0308t im EEG wa\u0308hrend Ruhe, Kopfrechnen und Meditation", "created": {"type": "/type/datetime", "value": "2009-12-11T05:12:02.297873"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:12:02.297873"}, "latest_revision": 1, "key": "/works/OL11717202W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4970959A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11717425W 1 2009-12-11T05:12:02.297873 {"title": "Atyrau", "created": {"type": "/type/datetime", "value": "2009-12-11T05:12:02.297873"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:12:02.297873"}, "latest_revision": 1, "key": "/works/OL11717425W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4971141A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11717870W 1 2009-12-11T05:12:11.380867 {"title": "Ver\u0323he khaid\u0323an cann", "created": {"type": "/type/datetime", "value": "2009-12-11T05:12:11.380867"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:12:11.380867"}, "latest_revision": 1, "key": "/works/OL11717870W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4971522A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11717938W 2 2010-01-21T06:28:14.516761 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:12:11.380867"}, "title": "Estimation of shallow ground-water recharge in the Great Lakes Basin", "subject_places": ["Great Lakes Watershed (North America)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T06:28:14.516761"}, "latest_revision": 2, "key": "/works/OL11717938W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4971575A"}}], "type": {"key": "/type/work"}, "subjects": ["Groundwater recharge", "Groundwater flow"], "revision": 2}
+/type/work /works/OL11717948W 3 2010-04-28T07:23:32.955928 {"title": "Bilanz Balkan", "created": {"type": "/type/datetime", "value": "2009-12-11T05:12:11.380867"}, "covers": [5332036], "subject_places": ["Balkan Peninsula"], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:23:32.955928"}, "latest_revision": 3, "key": "/works/OL11717948W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4971582A"}}], "subject_times": ["1989-"], "subjects": ["Congresses", "Politics and government", "Social conditions", "Economic conditions"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11718015W 1 2009-12-11T05:12:11.380867 {"title": "Ishit loh\u0323etset", "created": {"type": "/type/datetime", "value": "2009-12-11T05:12:11.380867"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:12:11.380867"}, "latest_revision": 1, "key": "/works/OL11718015W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4971634A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11718032W 3 2020-12-15T01:40:31.328278 {"title": "V zone slavi\ufe20a\ufe21nskogo e\u0307tnogeneza", "subject_places": ["Desna River Region (Russia and Ukraine)"], "key": "/works/OL11718032W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4971644A"}}], "type": {"key": "/type/work"}, "subjects": ["Civilization", "Antiquities", "Paleogeography"], "covers": [9943816], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T05:12:11.380867"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-15T01:40:31.328278"}}
+/type/work /works/OL11718322W 2 2010-01-21T06:28:14.516761 {"title": "Willem Dooijewaard", "created": {"type": "/type/datetime", "value": "2009-12-11T05:12:11.380867"}, "subject_places": ["Indonesia", "In art"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T06:28:14.516761"}, "latest_revision": 2, "key": "/works/OL11718322W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4971880A"}}], "subject_people": ["Willem Dooijewaard (1892-1980)"], "type": {"key": "/type/work"}, "subjects": ["Travel", "Description and travel"], "revision": 2}
+/type/work /works/OL11718508W 2 2020-12-19T13:07:55.736304 {"title": "Question Mark", "key": "/works/OL11718508W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4972032A"}}], "type": {"key": "/type/work"}, "subjects": ["Interviews", "Prime ministers"], "description": {"type": "/type/text", "value": "Interview of Abhisit Vejjajiva, leader of Democrat Party, on his political views and personal lifestyle."}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T05:12:11.380867"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-19T13:07:55.736304"}}
+/type/work /works/OL11718520W 1 2009-12-11T05:12:11.380867 {"title": "Qing mu gua zhi lian", "created": {"type": "/type/datetime", "value": "2009-12-11T05:12:11.380867"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:12:11.380867"}, "latest_revision": 1, "key": "/works/OL11718520W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4972035A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11718606W 2 2020-12-17T17:29:02.617157 {"title": "Fi\u0304 Dhakirati\u0304-- zawjah--", "key": "/works/OL11718606W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4972080A"}}], "type": {"key": "/type/work"}, "description": {"type": "/type/text", "value": "Short stories."}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T05:12:11.380867"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-17T17:29:02.617157"}}
+/type/work /works/OL11718789W 3 2010-04-28T07:23:32.955928 {"title": "Estudio sociodemogra\u0301fico de los pueblos y comunidades indi\u0301genas del Estado de Me\u0301xico", "created": {"type": "/type/datetime", "value": "2009-12-11T05:12:20.911144"}, "covers": [5332097], "subject_places": ["Mexico (State)", "Mexico", "Mexico (Mexico : State)"], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:23:32.955928"}, "latest_revision": 3, "key": "/works/OL11718789W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4972230A"}}], "subjects": ["Indians of Mexico", "Politics and government", "Economic conditions", "Social life and customs"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11718827W 2 2010-01-21T06:32:37.774501 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:12:20.911144"}, "title": "Autopsia filosofica", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T06:32:37.774501"}, "latest_revision": 2, "key": "/works/OL11718827W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4972263A"}}], "type": {"key": "/type/work"}, "subjects": ["Suicide", "Self (Philosophy)", "Death"], "revision": 2}
+/type/work /works/OL11719558W 3 2010-12-03T15:39:21.828404 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:39:21.828404"}, "title": "One heartbeat", "created": {"type": "/type/datetime", "value": "2009-12-11T05:12:20.911144"}, "subjects": ["Boys' Latin School (Baltimore, Md.)", "History"], "latest_revision": 3, "key": "/works/OL11719558W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4972880A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11719568W 2 2010-01-21T06:32:37.774501 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:12:20.911144"}, "title": "al- Mu\u02bctamar al-sanawi\u0304 al-Kha\u0304mis, al-taghyi\u0304r al-ijtima\u0304\u02bbi\u0304 fi\u0304 al-mujtama\u02bb al-Mis\u0323ri\u0304 khila\u0304la khamsi\u0304n \u02bba\u0304m", "subject_places": ["Egypt"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T06:32:37.774501"}, "latest_revision": 2, "key": "/works/OL11719568W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4972889A"}}], "type": {"key": "/type/work"}, "subjects": ["Congresses", "Social conditions", "Progress", "Social problems"], "revision": 2}
+/type/work /works/OL11719733W 2 2020-12-05T02:32:31.903897 {"title": "al- Mar\u02bcah al-Muslimah wa-al-wila\u0304ya\u0304t al-\u02bba\u0304mmah", "key": "/works/OL11719733W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4973015A"}}], "type": {"key": "/type/work"}, "subjects": ["Muslim women", "Women in public life", "Muslim Women", "Legal status, laws", "Women's rights", "Islam"], "description": {"type": "/type/text", "value": "Muslim women and public supreme positions."}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T05:12:29.638647"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-05T02:32:31.903897"}}
+/type/work /works/OL11719797W 1 2009-12-11T05:12:29.638647 {"title": "Czarna szabla", "created": {"type": "/type/datetime", "value": "2009-12-11T05:12:29.638647"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:12:29.638647"}, "latest_revision": 1, "key": "/works/OL11719797W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4973060A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11719859W 1 2009-12-11T05:12:29.638647 {"title": "Kejahatan mayantara =", "created": {"type": "/type/datetime", "value": "2009-12-11T05:12:29.638647"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:12:29.638647"}, "latest_revision": 1, "key": "/works/OL11719859W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4973115A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11719996W 2 2010-01-21T06:37:04.271467 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:12:29.638647"}, "title": "Mu\u0304jib da\u0304r al-sala\u0304m fi\u0304 birr al-wa\u0304lidayn wa-s\u0323ilat al-arh\u0323a\u0304m", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T06:37:04.271467"}, "latest_revision": 2, "key": "/works/OL11719996W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4973218A"}}], "type": {"key": "/type/work"}, "subjects": ["Parent and child (Islamic law)", "Early works to 1800"], "revision": 2}
+/type/work /works/OL11720094W 2 2020-12-14T13:52:07.258040 {"title": "Ra\u0304inga\u0304n Ka\u0304nprachum Wicha\u0304ka\u0304n r\u01b0\u0304ang Nga\u0304n Wic\u030chai kho\u031c\u0304ng Prathe\u0304t Thai da\u0304n Ka\u0304nya\u0304ithin Rawa\u0304ng Prathe\u0304t nai Yuk Lo\u0304ka\u0304phiwat", "key": "/works/OL11720094W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4973290A"}}], "type": {"key": "/type/work"}, "description": {"type": "/type/text", "value": "Conference on the migrant workers, aliens, and refugees in Thailand and SEA countries labor situation and condition in Asia."}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T05:12:29.638647"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-14T13:52:07.258040"}}
+/type/work /works/OL11720433W 2 2020-12-16T13:23:04.878444 {"title": "He\u0304ha\u0304 prasa\u0304-- sa\u0304o \u02bb\u00e6\u0304", "key": "/works/OL11720433W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4973553A"}}], "type": {"key": "/type/work"}, "description": {"type": "/type/text", "value": "Anecdotes of the work, lessons, and personal experience with the passengers of a Thai flight attendant."}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T05:12:29.638647"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-16T13:23:04.878444"}}
+/type/work /works/OL11720580W 4 2020-12-16T23:02:29.227205 {"key": "/works/OL11720580W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4973676A"}}], "title": "(Phase Eins)", "subject_places": ["Europe", "Germany"], "subjects": ["Architecture", "Competitions", "Phase Eins (Firm : Berlin, Germany)", "History"], "subject_times": ["20th century", "21st century"], "type": {"key": "/type/work"}, "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T05:12:29.638647"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-16T23:02:29.227205"}}
+/type/work /works/OL11720775W 2 2010-01-21T06:37:04.271467 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:12:38.554276"}, "title": "Kugo\u0306", "subject_places": ["Korea (North)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T06:37:04.271467"}, "latest_revision": 2, "key": "/works/OL11720775W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4973823A"}}], "type": {"key": "/type/work"}, "subjects": ["Korean language", "Textbooks", "Readers"], "revision": 2}
+/type/work /works/OL11721060W 3 2020-12-17T23:47:19.232287 {"title": "Ji\u0304bana\u0304nandera upanya\u0304sa", "key": "/works/OL11721060W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4974056A"}}], "subject_people": ["Jibanananda Das (1899-1954)"], "type": {"key": "/type/work"}, "subjects": ["Metaphor in literature", "Fictional works"], "description": {"type": "/type/text", "value": "Critical study on the use of metaphors in the novels of Jibanananda Das, 1899-1954, Bengali poet."}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T05:12:38.554276"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-17T23:47:19.232287"}}
+/type/work /works/OL11721776W 2 2023-01-08T08:43:33.558110 {"title": "Dvori\ufe20a\ufe21nskie imenii\ufe20a\ufe21 T\ufe20S\ufe21entral\u02b9no-Chernozemnogo regiona Rossii v pervoi\u0306 polovine XVIII veka", "key": "/works/OL11721776W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4974637A"}}], "type": {"key": "/type/work"}, "subjects": ["Manors", "History", "Country homes", "Nobility", "Homes and haunts"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T05:12:48.581577"}, "last_modified": {"type": "/type/datetime", "value": "2023-01-08T08:43:33.558110"}}
+/type/work /works/OL11721848W 3 2020-12-11T16:56:27.328160 {"title": "I\u0304ma\u0304n afroz baya\u0304na\u0304t", "key": "/works/OL11721848W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4974694A"}}], "type": {"key": "/type/work"}, "subjects": ["Islam", "Religious life", "Theology"], "description": {"type": "/type/text", "value": "Teachings on mysticism and Sufism by a contemporary Muslim sufi scholar from Pakistan."}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T05:12:48.581577"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-11T16:56:27.328160"}}
+/type/work /works/OL11721870W 1 2009-12-11T05:12:48.581577 {"title": "Seu guia no candomble\u0301", "created": {"type": "/type/datetime", "value": "2009-12-11T05:12:48.581577"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:12:48.581577"}, "latest_revision": 1, "key": "/works/OL11721870W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4974713A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1172190W 2 2017-05-18T07:10:15.661669 {"title": "Androme de et le monstre", "created": {"type": "/type/datetime", "value": "2009-12-09T20:38:32.163990"}, "last_modified": {"type": "/type/datetime", "value": "2017-05-18T07:10:15.661669"}, "latest_revision": 2, "key": "/works/OL1172190W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2428619A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11722141W 3 2010-12-04T07:59:21.954004 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:12:48.581577"}, "subjects": ["Cataract", "Comic books, strips", "Comic books, strips, etc", "Surgery"], "subject_people": ["Yoshinori Kobayashi (1953-)"], "key": "/works/OL11722141W", "title": "Me no tama nikki", "latest_revision": 3, "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4974940A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-04T07:59:21.954004"}, "revision": 3}
+/type/work /works/OL1172282W 2 2017-05-18T07:10:15.661669 {"title": "Les ondes amoureuses", "created": {"type": "/type/datetime", "value": "2009-12-09T20:38:32.163990"}, "last_modified": {"type": "/type/datetime", "value": "2017-05-18T07:10:15.661669"}, "latest_revision": 2, "key": "/works/OL1172282W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2428619A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11723210W 2 2010-01-21T06:45:59.658679 {"title": "L' agitarsi del mondo in cui viviamo", "created": {"type": "/type/datetime", "value": "2009-12-11T05:12:57.797632"}, "subject_places": ["Italy"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T06:45:59.658679"}, "latest_revision": 2, "key": "/works/OL11723210W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4975725A"}}], "subject_people": ["Enrico Barone (1859-1924)"], "subject_times": ["20th century", "19th century"], "type": {"key": "/type/work"}, "subjects": ["Economics", "History"], "revision": 2}
+/type/work /works/OL1172368W 6 2020-08-11T07:21:39.230122 {"covers": [5938098], "last_modified": {"type": "/type/datetime", "value": "2020-08-11T07:21:39.230122"}, "latest_revision": 6, "key": "/works/OL1172368W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2428619A"}}], "created": {"type": "/type/datetime", "value": "2009-12-09T20:38:32.163990"}, "title": "Le mariage", "subject_places": ["France"], "subjects": ["World War, 1914-1918", "Marriage", "Women"], "type": {"key": "/type/work"}, "revision": 6}
+/type/work /works/OL11723791W 2 2022-12-21T08:01:11.530585 {"title": "Situaciones postales", "key": "/works/OL11723791W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4976173A"}}], "type": {"key": "/type/work"}, "subjects": ["Philosophical literature", "Spanish Authors", "Philosophy", "Literatura filos\u00f3fica", "Autores espa\u00f1oles", "Filosof\u00eda"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T05:13:06.798245"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-21T08:01:11.530585"}}
+/type/work /works/OL11723966W 2 2010-01-21T06:50:37.480606 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:13:06.798245"}, "title": "Zana\u0304n va inqila\u0304b", "subject_places": ["Iran"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T06:50:37.480606"}, "latest_revision": 2, "key": "/works/OL11723966W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4976315A"}}], "subject_times": ["Revolution, 1979"], "type": {"key": "/type/work"}, "subjects": ["History", "Political activity", "Women"], "revision": 2}
+/type/work /works/OL11724439W 3 2010-12-03T15:40:42.594292 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:40:42.594292"}, "title": "Listening for the oboe", "created": {"type": "/type/datetime", "value": "2009-12-11T05:13:06.798245"}, "subjects": ["American Jewish sermons", "Congregation Beth Simchat Torah (New York, N.Y.)", "Homosexuality", "Jewish sermons, American", "Judaism", "Religious aspects", "Religious aspects of Homosexuality", "Sermons"], "latest_revision": 3, "key": "/works/OL11724439W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4976713A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11724611W 3 2020-10-29T03:18:26.624780 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:13:06.798245"}, "subjects": ["Politics and government", "Francoism", "History"], "latest_revision": 3, "key": "/works/OL11724611W", "title": "Secretos y mentiras de los Franco", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4976834A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-10-29T03:18:26.624780"}, "covers": [7440287], "revision": 3}
+/type/work /works/OL11724636W 3 2010-12-03T15:40:42.594292 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:40:42.594292"}, "title": "Christian faith for our times", "created": {"type": "/type/datetime", "value": "2009-12-11T05:13:06.798245"}, "subjects": ["Bible", "Theology"], "latest_revision": 3, "key": "/works/OL11724636W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4976850A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11724715W 4 2020-12-18T00:14:34.883669 {"subject_places": ["Bangladesh", "India"], "subjects": ["Exhibitions", "Hindu Temples", "Temples, Hindu", "Hindu temples"], "key": "/works/OL11724715W", "title": "One hundred temples =", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4976915A"}}], "type": {"key": "/type/work"}, "description": {"type": "/type/text", "value": "Catalog of a photography exhibition held at Dhaka in 2004."}, "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T05:13:16.291466"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-18T00:14:34.883669"}}
+/type/work /works/OL11724791W 3 2022-12-29T23:25:28.726168 {"title": "Espan\u0303a y la Iglesia Cato\u0301lica", "key": "/works/OL11724791W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4976986A"}}], "type": {"key": "/type/work"}, "subjects": ["History", "Church and state", "Church history", "Catholic Church", "Religious aspects"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T05:13:16.291466"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-29T23:25:28.726168"}}
+/type/work /works/OL11725204W 3 2020-12-17T19:08:21.870855 {"title": "ASSOCHAM Conference on Indian Pharma Industry", "subject_places": ["India"], "key": "/works/OL11725204W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4977290A"}}], "type": {"key": "/type/work"}, "subjects": ["Pharmaceutical industry", "Congresses"], "description": {"type": "/type/text", "value": "Partnered and supported by various Indian government agencies and private companies."}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T05:13:16.291466"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-17T19:08:21.870855"}}
+/type/work /works/OL11725207W 3 2020-12-17T19:08:26.127276 {"title": "Jagatguru Shankaracharya Shri Bharati Krishna Teertha", "subject_places": ["India"], "key": "/works/OL11725207W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4977293A"}}], "subject_people": ["Bh\u0101rat\u012bkr\u0325sh\u1e47at\u012brtha (1884-1960)"], "type": {"key": "/type/work"}, "subjects": ["Biography", "Philosophers", "Hindus"], "description": {"type": "/type/text", "value": "On Bha\u0304rati\u0304kr\u0325shn\u0323ati\u0304rtha, 1884-1960, religious leader and exponent of the Advaita school in Hindu philosophy."}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T05:13:16.291466"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-17T19:08:26.127276"}}
+/type/work /works/OL11725286W 3 2010-12-03T15:40:05.988726 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:40:05.988726"}, "latest_revision": 3, "key": "/works/OL11725286W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4977360A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T05:13:16.291466"}, "title": "Nel nome della nazione", "subject_places": ["Italy"], "subjects": ["Associazione nazionalista italiana", "History", "Nationalism", "Politics and government"], "subject_times": ["1870-1914", "20th century"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11725376W 2 2010-01-21T06:55:23.108059 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:13:16.291466"}, "title": "Geheime Weihen", "subject_places": ["Czechoslovakia"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T06:55:23.108059"}, "latest_revision": 2, "key": "/works/OL11725376W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4977438A"}}], "subject_times": ["20th century"], "type": {"key": "/type/work"}, "subjects": ["Ordination of women", "Catholic Church", "History"], "revision": 2}
+/type/work /works/OL11725450W 2 2010-01-21T06:55:23.108059 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:13:16.291466"}, "title": "L' exode urbain est-il pour demain?", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T06:55:23.108059"}, "latest_revision": 2, "key": "/works/OL11725450W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4977497A"}}], "type": {"key": "/type/work"}, "subjects": ["Bioregionalism", "Agricultural colonies", "Social ecology", "Urban-rural migration", "Quality of life", "Human ecology", "Lifestyles"], "revision": 2}
+/type/work /works/OL1172565W 4 2010-07-20T15:12:45.889919 {"title": "Green leaves ; and, London under fire, 1940-45", "created": {"type": "/type/datetime", "value": "2009-12-09T20:38:32.163990"}, "covers": [4238441], "last_modified": {"type": "/type/datetime", "value": "2010-07-20T15:12:45.889919"}, "latest_revision": 4, "key": "/works/OL1172565W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL118509A"}}], "subject_people": ["Robert Henrey Mrs. (1906-)"], "subject_times": ["20th century"], "type": {"key": "/type/work"}, "subjects": ["Authors, English", "Biography", "English Authors"], "revision": 4}
+/type/work /works/OL11725726W 3 2010-12-03T15:41:14.720553 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:13:25.259363"}, "subject_places": ["Russia (Federation)"], "subjects": ["Administration of Justice", "Civil rights", "Human rights", "Justice, Administration of", "Law enforcement", "Rule of law"], "latest_revision": 3, "key": "/works/OL11725726W", "title": "Obespechenie prav cheloveka i zakonnosti v dei\ufe20a\ufe21tel\u02b9nosti pravookhranitel\u02b9nykh organov", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4977718A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:41:14.720553"}, "revision": 3}
+/type/work /works/OL11725753W 1 2009-12-11T05:13:25.259363 {"title": "Observations on the intermitting pulse, as prognosticating, in acute diseases, according to Dr. Solano, a critical diarrhoea - or, as indicating the use of purging remedies. By Daniel Cox, M.D. ..", "created": {"type": "/type/datetime", "value": "2009-12-11T05:13:25.259363"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:13:25.259363"}, "latest_revision": 1, "key": "/works/OL11725753W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4977739A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11725819W 3 2010-12-03T17:28:50.483298 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T17:28:50.483298"}, "title": "Shi\u02bbure rabenu maran rosh ha-yeshivah, ha-ga\u02bcon Rabi S\u0301imh\u0323ah Zisel Broida, shelit\u0323a", "created": {"type": "/type/datetime", "value": "2009-12-11T05:13:25.259363"}, "subjects": ["Criticism, interpretation", "Talmud"], "latest_revision": 3, "key": "/works/OL11725819W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4977797A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11725967W 3 2010-12-03T15:41:14.720553 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:13:25.259363"}, "subject_places": ["Germany", "Germany) Somborn (Freigericht", "Somborn (Freigericht, Germany)", "Somborn im Freigericht"], "subjects": ["Ethnic relations", "History", "Holocaust, Jewish (1939-1945)", "Jews"], "latest_revision": 3, "key": "/works/OL11725967W", "title": "Die ju\u0308dische Gemeinde Somborn im Freigericht", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4977913A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:41:14.720553"}, "revision": 3}
+/type/work /works/OL11726605W 3 2010-12-03T15:40:05.988726 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:40:05.988726"}, "latest_revision": 3, "key": "/works/OL11726605W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4978438A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T05:13:25.259363"}, "title": "Die Historisierung der Herrscherbilder (ca. 1000-1200)", "subject_places": ["Holy Roman Empire"], "subjects": ["Art, Medieval", "Arts", "Historiography", "History", "Kings and rulers in art", "Kings and rulers, Medieval", "Medieval Art", "Medieval Kings and rulers", "OUR Brockhaus selection"], "subject_times": ["To 1517"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1172660W 3 2010-04-28T07:24:33.363748 {"title": "Days with Sir Roger de Coverly", "created": {"type": "/type/datetime", "value": "2009-12-09T20:38:32.163990"}, "covers": [5977099], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:24:33.363748"}, "latest_revision": 3, "key": "/works/OL1172660W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL118521A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11726668W 3 2010-12-03T15:40:42.594292 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:13:39.171907"}, "subject_places": ["Pando", "Pando (Uruguay)", "Uruguay"], "subjects": ["Guerrillas", "History", "Movimiento de Liberaci\u00f3n Nacional (Uruguay)"], "latest_revision": 3, "key": "/works/OL11726668W", "title": "La toma de Pando", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4978494A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:40:42.594292"}, "revision": 3}
+/type/work /works/OL11726931W 3 2010-04-28T07:24:33.363748 {"title": "CCS 2006", "created": {"type": "/type/datetime", "value": "2009-12-11T05:13:39.171907"}, "covers": [5333874], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:24:33.363748"}, "latest_revision": 3, "key": "/works/OL11726931W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4978686A"}}], "subjects": ["Congresses", "Security measures", "Computer security", "Telecommunication systems"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11726944W 2 2020-12-17T14:09:18.099918 {"title": "Ch\u00e6\u0304 Prathe\u0304t Thai", "key": "/works/OL11726944W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4978697A"}}], "type": {"key": "/type/work"}, "description": {"type": "/type/text", "value": "Compilation of criticism on social, economic, and political conditions of Thailand."}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T05:13:39.171907"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-17T14:09:18.099918"}}
+/type/work /works/OL11727703W 2 2010-01-21T07:04:03.666234 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:13:48.857527"}, "title": "Jamming", "subject_places": ["Lithuania", "Soviet Union"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T07:04:03.666234"}, "latest_revision": 2, "key": "/works/OL11727703W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4979294A"}}], "type": {"key": "/type/work"}, "subjects": ["Radio", "Interference", "History"], "revision": 2}
+/type/work /works/OL11727891W 2 2010-01-21T07:04:03.666234 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:13:48.857527"}, "title": "Kampfauftrag Mikrochip", "subject_places": ["Germany (East)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T07:04:03.666234"}, "latest_revision": 2, "key": "/works/OL11727891W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4979459A"}}], "type": {"key": "/type/work"}, "subjects": ["Economic policy", "Technological innovations", "Microelectronics industry", "Social conflict"], "revision": 2}
+/type/work /works/OL11728240W 2 2010-01-21T07:04:03.666234 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:13:48.857527"}, "title": "El movimiento sindical dominicano en 1985", "subject_places": ["Dominican Republic"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T07:04:03.666234"}, "latest_revision": 2, "key": "/works/OL11728240W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4979735A"}}], "type": {"key": "/type/work"}, "subjects": ["Labor unions", "History"], "revision": 2}
+/type/work /works/OL11728281W 2 2010-01-21T07:04:03.666234 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:13:48.857527"}, "title": "Universidad-sociedad hacia Estambul +5", "subject_places": ["Mexico"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T07:04:03.666234"}, "latest_revision": 2, "key": "/works/OL11728281W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4979771A"}}], "type": {"key": "/type/work"}, "subjects": ["Congresses", "City planning", "Regional planning"], "revision": 2}
+/type/work /works/OL11728372W 3 2010-12-03T15:41:57.304281 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:13:48.857527"}, "subject_places": ["Jerusalem"], "subjects": ["Armenian Church", "Armenian Church. Erusagh\u0113mi Patriark\u02bbut\u02bbiwn", "Biography", "Bishops", "History"], "latest_revision": 3, "key": "/works/OL11728372W", "title": "Armenian Patriarchs of Jerusalem", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4979845A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:41:57.304281"}, "revision": 3}
+/type/work /works/OL11728562W 3 2012-06-21T23:20:22.244905 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:13:48.857527"}, "subject_places": ["England", "London"], "subjects": ["Conservation and restoration", "Architecture"], "latest_revision": 3, "key": "/works/OL11728562W", "title": "Wimbledon Hill Road conservation area", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4979994A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2012-06-21T23:20:22.244905"}, "revision": 3}
+/type/work /works/OL1172862W 2 2010-01-21T07:08:25.942461 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:38:32.163990"}, "title": "Universo y sociedad humana", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T07:08:25.942461"}, "latest_revision": 2, "key": "/works/OL1172862W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL118528A"}}], "type": {"key": "/type/work"}, "subjects": ["Human beings", "Ethnology", "Cosmology"], "revision": 2}
+/type/work /works/OL11728640W 2 2010-01-21T07:08:25.942461 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:13:57.577628"}, "title": "Aux origines du vignoble bordelais", "subject_places": ["Bordeaux", "France", "Bordeaux (France)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T07:08:25.942461"}, "latest_revision": 2, "key": "/works/OL11728640W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4980057A"}}], "type": {"key": "/type/work"}, "subjects": ["History", "Vineyards", "Wine and wine making"], "revision": 2}
+/type/work /works/OL11728892W 1 2009-12-11T05:13:57.577628 {"title": "Your hand in mine", "created": {"type": "/type/datetime", "value": "2009-12-11T05:13:57.577628"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:13:57.577628"}, "latest_revision": 1, "key": "/works/OL11728892W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4980223A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11729720W 4 2010-12-03T15:41:57.304281 {"covers": [5334221], "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:41:57.304281"}, "latest_revision": 4, "key": "/works/OL11729720W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4980820A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T05:14:07.640891"}, "title": "Nihon shakaika no seiritsu rinen to karikyuramu ko\u0304zo\u0304", "subject_places": ["Japan"], "subjects": ["Curricula", "Education, Secondary", "Secondary Education", "Social sciences", "Study and teaching (Secondary)"], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL1172989W 2 2010-01-21T07:12:44.463311 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:38:40.835239"}, "title": "Das Volkstum in der deutschen Geschichtsschreibung seit den Befreiungskriegen", "subject_places": ["Germany"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T07:12:44.463311"}, "latest_revision": 2, "key": "/works/OL1172989W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL118538A"}}], "type": {"key": "/type/work"}, "subjects": ["Historiography", "National characteristics"], "revision": 2}
+/type/work /works/OL11730113W 4 2022-12-17T17:04:42.063714 {"subjects": ["Gujarat Riots (India : 2002) fast (OCoLC)fst01755443", "Gujarat Earthquake, India, 2001", "Social conditions", "Gujarat Earthquake (India : 2001) fast (OCoLC)fst01755548", "Gujarat Riots, India, 2002", "Biography", "Ahmedabad", "India, biography", "India, social conditions"], "description": {"type": "/type/text", "value": "First person account of a journalist from Ahmedabad, India, of his experiences of the earthquakes of 2001 in Gujarat, India, and communal riots of 2002 in the state."}, "key": "/works/OL11730113W", "title": "City of fear", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4981111A"}}], "type": {"key": "/type/work"}, "covers": [9764963], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T05:14:07.640891"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T17:04:42.063714"}}
+/type/work /works/OL11730317W 3 2010-04-28T07:24:33.363748 {"title": "El regreso de una wetback", "created": {"type": "/type/datetime", "value": "2009-12-11T05:14:07.640891"}, "covers": [5720942], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:24:33.363748"}, "latest_revision": 3, "key": "/works/OL11730317W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4981263A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11730530W 2 2010-01-21T07:12:44.463311 {"title": "More Daniel Givens descendants", "created": {"type": "/type/datetime", "value": "2009-12-11T05:14:07.640891"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T07:12:44.463311"}, "latest_revision": 2, "key": "/works/OL11730530W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4981424A"}}], "subject_people": ["Daniel Givens"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11730834W 3 2010-12-03T15:42:29.505744 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:14:19.763176"}, "subject_places": ["United States"], "subjects": ["Fees", "Lawyers", "Tax administration and procedure", "United States", "United States. Internal Revenue Service"], "latest_revision": 3, "key": "/works/OL11730834W", "title": "Practice before the IRS", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4981683A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:42:29.505744"}, "revision": 3}
+/type/work /works/OL11731012W 3 2020-03-31T17:55:00.797039 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:14:19.763176"}, "subject_places": ["Italy", "Trento"], "subjects": ["Councils"], "latest_revision": 3, "key": "/works/OL11731012W", "title": "Istoria del Concilio di Trento", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL318748A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-03-31T17:55:00.797039"}, "revision": 3}
+/type/work /works/OL11731606W 2 2010-08-04T05:12:55.346494 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:14:19.763176"}, "subject_places": ["Korea (South)"], "subjects": ["Evaluation", "Child care services", "Government policy", "Family day care", "Child care workers", "Work and family"], "latest_revision": 2, "key": "/works/OL11731606W", "title": "Kajongnae adong tolbom toumi iyong silt\u02bbae mit chiw\u014fn pangan", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4982260A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-08-04T05:12:55.346494"}, "revision": 2}
+/type/work /works/OL117322W 2 2010-01-21T07:17:23.506972 {"title": "The orange-box", "created": {"type": "/type/datetime", "value": "2009-10-18T05:23:11.834130"}, "subject_places": ["Great Britain"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T07:17:23.506972"}, "latest_revision": 2, "key": "/works/OL117322W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1220315A"}}], "type": {"key": "/type/work"}, "subjects": ["Socialism"], "revision": 2}
+/type/work /works/OL11732531W 3 2010-12-03T15:41:57.304281 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:14:28.974921"}, "subject_places": ["China"], "subjects": ["Economic aspects", "Economic aspects of Sports", "Sports"], "latest_revision": 3, "key": "/works/OL11732531W", "title": "Zhongguo jing ji ti yu chan ye shi chang yan jiu =", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4982928A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:41:57.304281"}, "revision": 3}
+/type/work /works/OL11732829W 3 2010-12-03T20:34:36.738392 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:14:36.963088"}, "subjects": ["Deutscher Gewerkschaftsbund", "Labor unions"], "latest_revision": 3, "key": "/works/OL11732829W", "title": "Le Syndicalisme allemand contemporain, \u00e9tudes publi\u00e9es sous la direction de F.-G. Dreyfus ... par J.H. Dietz, M. Lamps, G. Minicus, A.R. Moineau ... [etc.]", "subject_times": ["Germany (Democratic Republic, 1949- )", "Germany (Federal Republic, 1949- )"], "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4983123A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T20:34:36.738392"}, "revision": 3}
+/type/work /works/OL11732900W 4 2020-12-16T18:25:58.092099 {"subtitle": "Del primer plano al fundido en negro", "key": "/works/OL11732900W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4983174A"}}], "title": "Clemente Pamplona", "subjects": ["Criticism and interpretation"], "subject_people": ["Clemente Pamplona (1917-2001)"], "type": {"key": "/type/work"}, "covers": [10281243], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T05:14:36.963088"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-16T18:25:58.092099"}}
+/type/work /works/OL11733005W 1 2009-12-11T05:14:36.963088 {"title": "Monitoring report", "created": {"type": "/type/datetime", "value": "2009-12-11T05:14:36.963088"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:14:36.963088"}, "latest_revision": 1, "key": "/works/OL11733005W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4983264A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11733335W 2 2010-01-21T07:21:53.544244 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:14:36.963088"}, "title": "Pudongsan sapo\u0306p", "subject_places": ["Korea (South)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T07:21:53.544244"}, "latest_revision": 2, "key": "/works/OL11733335W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4983490A"}}], "type": {"key": "/type/work"}, "subjects": ["Real property", "Civil procedure"], "revision": 2}
+/type/work /works/OL1173354W 3 2011-05-07T19:08:43.967055 {"subtitle": "tableau de la presse franc\u0327aise contemporaine.", "last_modified": {"type": "/type/datetime", "value": "2011-05-07T19:08:43.967055"}, "latest_revision": 3, "key": "/works/OL1173354W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL118586A"}}], "created": {"type": "/type/datetime", "value": "2009-12-09T20:38:40.835239"}, "title": "Le monde des journaux", "subject_places": ["France"], "subjects": ["Press", "Journalism"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11733741W 3 2021-08-29T23:55:08.269145 {"title": "Memorial atlas of Ireland", "subject_places": ["Ireland"], "key": "/works/OL11733741W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4983804A"}}], "type": {"key": "/type/work"}, "subjects": ["Maps", "History"], "covers": [11856057], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T05:14:56.925404"}, "last_modified": {"type": "/type/datetime", "value": "2021-08-29T23:55:08.269145"}}
+/type/work /works/OL11734085W 2 2010-01-21T07:26:21.696705 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:14:56.925404"}, "title": "Drus\u030ctvena promocija bezakonja", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T07:26:21.696705"}, "latest_revision": 2, "key": "/works/OL11734085W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4984073A"}}], "type": {"key": "/type/work"}, "subjects": ["Deviant behavior"], "revision": 2}
+/type/work /works/OL11734287W 1 2009-12-11T05:14:56.925404 {"title": "Omona Nihonkoku Kenpo\u0304 kaisei shian oyobi teiten", "created": {"type": "/type/datetime", "value": "2009-12-11T05:14:56.925404"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:14:56.925404"}, "latest_revision": 1, "key": "/works/OL11734287W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4984253A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11734758W 3 2020-12-08T10:07:46.331423 {"title": "Demosthenes et Cicero inter se comparati", "key": "/works/OL11734758W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4984592A"}}], "subject_people": ["Demosthenes", "Marcus Tullius Cicero"], "type": {"key": "/type/work"}, "covers": [9934497], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T05:15:06.578436"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-08T10:07:46.331423"}}
+/type/work /works/OL11734994W 2 2010-01-21T07:30:39.137722 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:15:06.578436"}, "title": "Mu\u02bbjam Faraj lil-\u02bba\u0304mmi\u0304yah al-Mis\u0323ri\u0304yah wa-al-ta\u02bbbi\u0304ra\u0304t al-sha\u02bbbi\u0304yah lil-s\u0323unna\u0304\u02bb wa-al-h\u0323irafi\u0304yi\u0304n al-Mis\u0323ri\u0304yi\u0304n", "subject_places": ["Egypt"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T07:30:39.137722"}, "latest_revision": 2, "key": "/works/OL11734994W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4984788A"}}], "type": {"key": "/type/work"}, "subjects": ["Dialects", "Dictionaries", "Arabic language"], "revision": 2}
+/type/work /works/OL11735061W 5 2019-02-06T12:24:36.483623 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:15:06.578436"}, "subject_places": ["Saudi Arabia"], "subjects": ["Politics and government", "Law reform", "Constitutional law", "Social conditions", "Women", "Employment", "Family", "Women's rights", "Women in Islam", "Families"], "latest_revision": 5, "key": "/works/OL11735061W", "title": "al- Is\u0323la\u0304h\u0323 al-dustu\u0304ri\u0304 fi\u0304 al-Sa\u02bbu\u0304di\u0304yah", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4984844A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2019-02-06T12:24:36.483623"}, "revision": 5}
+/type/work /works/OL11735759W 3 2016-01-02T02:52:21.865021 {"last_modified": {"type": "/type/datetime", "value": "2016-01-02T02:52:21.865021"}, "title": "The ministry of preaching", "created": {"type": "/type/datetime", "value": "2009-12-11T05:15:15.654468"}, "subjects": ["Catechetics"], "latest_revision": 3, "key": "/works/OL11735759W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL7276438A"}}, {"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL7276439A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1173607W 2 2010-01-21T07:35:13.911807 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:38:40.835239"}, "title": "Bold coasts", "subject_places": ["New Zealand"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T07:35:13.911807"}, "latest_revision": 2, "key": "/works/OL1173607W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL118599A"}}], "type": {"key": "/type/work"}, "subjects": ["Coasts"], "revision": 2}
+/type/work /works/OL11736126W 2 2010-01-21T07:35:13.911807 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:15:15.654468"}, "title": "Shihaiteki k\u014dz\u014d no hihan", "subject_places": ["Japan"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T07:35:13.911807"}, "latest_revision": 2, "key": "/works/OL11736126W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4985658A"}}], "subject_times": ["1945-"], "type": {"key": "/type/work"}, "subjects": ["Politics and government"], "revision": 2}
+/type/work /works/OL11736434W 4 2021-07-09T03:30:05.236506 {"title": "Analytical chemistry", "subjects": ["Analytic Chemistry", "Chemistry, Analytic", "Quantitative"], "key": "/works/OL11736434W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL406104A"}}], "type": {"key": "/type/work"}, "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T05:15:15.654468"}, "last_modified": {"type": "/type/datetime", "value": "2021-07-09T03:30:05.236506"}}
+/type/work /works/OL11736976W 3 2010-12-03T15:45:46.799580 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:45:46.799580"}, "title": "Warden Cassidy on prisons and convicts", "created": {"type": "/type/datetime", "value": "2009-12-11T05:15:24.403127"}, "subjects": ["Prison administration", "Prisons", "State Penitentiary for the Eastern District of Pennsylvania"], "latest_revision": 3, "key": "/works/OL11736976W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4986353A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11737252W 2 2010-01-21T07:39:48.073013 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:15:24.403127"}, "title": "Filologicheskoe tolkovanie norm prava", "subject_places": ["Russia (Federation)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T07:39:48.073013"}, "latest_revision": 2, "key": "/works/OL11737252W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4986571A"}}], "type": {"key": "/type/work"}, "subjects": ["Law", "Semantics (Law)", "Language"], "revision": 2}
+/type/work /works/OL11737314W 2 2010-01-21T07:39:48.073013 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:15:24.403127"}, "title": "Shikanjah dar siya\u0304sat-i jinayi\u0304-i I\u0304ra\u0304n, Sa\u0304zma\u0304n-i Milal-i Muttah\u0323id va Shu\u0304ra\u0304-yi Uru\u0304pa\u0304", "subject_places": ["Iran"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T07:39:48.073013"}, "latest_revision": 2, "key": "/works/OL11737314W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4986609A"}}], "type": {"key": "/type/work"}, "subjects": ["Torture (International law)", "Torture"], "revision": 2}
+/type/work /works/OL11737678W 3 2010-12-03T15:44:42.159310 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:44:42.159310"}, "latest_revision": 3, "key": "/works/OL11737678W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4986908A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T05:15:31.678528"}, "title": "Pobeditelite i Bu\u0306lgarii\ufe20a\ufe21, 1939-1945", "subject_places": ["Bulgaria", "Great Britain", "Soviet Union", "United States"], "subjects": ["Foreign relations", "Otechestven front", "Politics and government", "World War, 1939-1945"], "subject_times": ["1944-1990"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11737848W 5 2022-06-25T04:33:31.313042 {"title": "Mader's understanding human anatomy & physiology", "subjects": ["Human anatomy", "Human physiology", "Textbooks", "Human body", "Anatomy", "Physiology", "Physiological Phenomena", "Animal Structures", "Physiologie humaine", "Anatomie humaine", "Corps humain", "Anatomie", "Physiologie"], "key": "/works/OL11737848W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4987002A"}}], "type": {"key": "/type/work"}, "covers": [12473179], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2009-12-11T05:15:31.678528"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-25T04:33:31.313042"}}
+/type/work /works/OL11738086W 1 2009-12-11T05:15:31.678528 {"title": "Improved machine for cutting and scoring cardboard and other materials", "created": {"type": "/type/datetime", "value": "2009-12-11T05:15:31.678528"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:15:31.678528"}, "latest_revision": 1, "key": "/works/OL11738086W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4987156A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11738151W 2 2010-01-21T07:39:48.073013 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:15:31.678528"}, "title": "Thoughts on the defective state of prisons", "subject_places": ["England"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T07:39:48.073013"}, "latest_revision": 2, "key": "/works/OL11738151W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4987173A"}}], "type": {"key": "/type/work"}, "subjects": ["Prisons", "Prison administration", "Design and construction"], "revision": 2}
+/type/work /works/OL11738384W 3 2010-12-03T15:44:10.737904 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:44:10.737904"}, "title": "Green planet", "created": {"type": "/type/datetime", "value": "2009-12-11T05:15:31.678528"}, "subjects": ["Cookery, Indian", "Indian cookery"], "latest_revision": 3, "key": "/works/OL11738384W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4987340A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11738579W 3 2010-12-03T15:45:46.799580 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:15:31.678528"}, "subject_places": ["Amsterdam", "Netherlands"], "subjects": ["Dutch language", "Gender", "Social aspects", "Social aspects of Dutch language", "Sociolinguistics"], "latest_revision": 3, "key": "/works/OL11738579W", "title": "Gender variation in Dutch", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4987492A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:45:46.799580"}, "revision": 3}
+/type/work /works/OL11738603W 4 2020-12-15T03:16:49.850805 {"title": "Sem\u02b9i\ufe20a\ufe21 i vlast\u02b9 v Rossii XVII-XVIII stoletii\u0306", "covers": [5335700], "subject_places": ["Russia"], "key": "/works/OL11738603W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4987516A"}}], "subject_times": ["To 1801", "17th century", "18th century"], "subjects": ["History", "Family", "Social conditions", "Family policy", "Families"], "type": {"key": "/type/work"}, "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T05:15:31.678528"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-15T03:16:49.850805"}}
+/type/work /works/OL11739183W 2 2022-12-27T02:54:14.771382 {"title": "Haru o tsugeru tori", "key": "/works/OL11739183W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL529867A"}}], "type": {"key": "/type/work"}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T05:15:40.272107"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-27T02:54:14.771382"}}
+/type/work /works/OL11739411W 1 2009-12-11T05:15:40.272107 {"title": "The yellow bag", "created": {"type": "/type/datetime", "value": "2009-12-11T05:15:40.272107"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:15:40.272107"}, "latest_revision": 1, "key": "/works/OL11739411W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4988120A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11739427W 1 2009-12-11T05:15:40.272107 {"title": "Yin shi", "created": {"type": "/type/datetime", "value": "2009-12-11T05:15:40.272107"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:15:40.272107"}, "latest_revision": 1, "key": "/works/OL11739427W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4988131A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11740111W 2 2010-01-21T07:48:49.412172 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:15:48.308382"}, "title": "Gendai kaishah\u014d k\u014dgi", "subject_places": ["Japan"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T07:48:49.412172"}, "latest_revision": 2, "key": "/works/OL11740111W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4988630A"}}], "type": {"key": "/type/work"}, "subjects": ["Corporation law"], "revision": 2}
+/type/work /works/OL11740413W 3 2010-04-28T07:24:33.363748 {"title": "Places porxades a Catalunya", "created": {"type": "/type/datetime", "value": "2009-12-11T05:15:48.308382"}, "covers": [5335990], "subject_places": ["Spain", "Catalonia"], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:24:33.363748"}, "latest_revision": 3, "key": "/works/OL11740413W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4988855A"}}], "subjects": ["Public spaces", "Porticoes", "Plazas"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11740486W 2 2020-12-17T22:39:25.979519 {"title": "Jouissance et pense\u0301e", "key": "/works/OL11740486W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4988909A"}}], "type": {"key": "/type/work"}, "subjects": ["Avarice", "Corruption"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T05:15:48.308382"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-17T22:39:25.979519"}}
+/type/work /works/OL11740594W 3 2010-12-03T15:47:33.515481 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:47:33.515481"}, "title": "The words of Our Lord in the Gospel of Saint John", "created": {"type": "/type/datetime", "value": "2009-12-11T05:15:48.308382"}, "subjects": ["Bible", "Meditations"], "latest_revision": 3, "key": "/works/OL11740594W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4988972A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11740645W 2 2010-01-21T07:48:49.412172 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:15:56.384844"}, "title": "The board of directors", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T07:48:49.412172"}, "latest_revision": 2, "key": "/works/OL11740645W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4989018A"}}], "type": {"key": "/type/work"}, "subjects": ["Directors of corporations", "Legal status, laws"], "revision": 2}
+/type/work /works/OL11740655W 1 2009-12-11T05:15:56.384844 {"title": "Du-dhara", "created": {"type": "/type/datetime", "value": "2009-12-11T05:15:56.384844"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:15:56.384844"}, "latest_revision": 1, "key": "/works/OL11740655W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4989024A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11740817W 1 2009-12-11T05:15:56.384844 {"title": "Der Katalane", "created": {"type": "/type/datetime", "value": "2009-12-11T05:15:56.384844"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:15:56.384844"}, "latest_revision": 1, "key": "/works/OL11740817W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4989120A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11740930W 1 2009-12-11T05:15:56.384844 {"title": "Semi-centennial, 1876-1926", "created": {"type": "/type/datetime", "value": "2009-12-11T05:15:56.384844"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:15:56.384844"}, "latest_revision": 1, "key": "/works/OL11740930W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4989197A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11741105W 2 2010-01-21T07:48:49.412172 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:15:56.384844"}, "title": "al- Shi\u02bbr al-Im\u0101r\u0101t\u012b al-mu\u02bb\u0101\u1e63ir", "subject_places": ["United Arab Emirates"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T07:48:49.412172"}, "latest_revision": 2, "key": "/works/OL11741105W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4989335A"}}], "subject_times": ["20th century"], "type": {"key": "/type/work"}, "subjects": ["Arabic poetry", "History and criticism"], "revision": 2}
+/type/work /works/OL11741196W 2 2020-12-18T02:00:40.805209 {"title": "H\u0323uru\u0304f al-ma\u02bba\u0304ni\u0304", "key": "/works/OL11741196W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4989401A"}}], "type": {"key": "/type/work"}, "subjects": ["Arabic language", "Particles", "Grammar", "Language and languages", "Philosophy", "Language and logic"], "description": {"type": "/type/text", "value": "Arabic language; grammar."}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T05:15:56.384844"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-18T02:00:40.805209"}}
+/type/work /works/OL1174123W 4 2010-12-22T00:37:56.497134 {"title": "The Puppet Show", "created": {"type": "/type/datetime", "value": "2009-12-09T20:38:51.550738"}, "covers": [4752685], "last_modified": {"type": "/type/datetime", "value": "2010-12-22T00:37:56.497134"}, "latest_revision": 4, "key": "/works/OL1174123W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL118655A"}}], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL11741400W 2 2010-01-21T07:53:00.162538 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:15:56.384844"}, "title": "Regionale Kooperationen in Zentralasien", "subject_places": ["Central Asia"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T07:53:00.162538"}, "latest_revision": 2, "key": "/works/OL11741400W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4989542A"}}], "subject_times": ["1991-"], "type": {"key": "/type/work"}, "subjects": ["Politics and government", "Foreign relations"], "revision": 2}
+/type/work /works/OL11741410W 3 2010-12-03T15:48:03.442112 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:48:03.442112"}, "title": "Catechism of the devotion to the Sacred Heart of Jesus", "created": {"type": "/type/datetime", "value": "2009-12-11T05:15:56.384844"}, "subjects": ["Devotion to Sacred Heart", "Sacred Heart, Devotion to"], "latest_revision": 3, "key": "/works/OL11741410W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4989552A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11741492W 2 2010-01-21T07:53:00.162538 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:15:56.384844"}, "title": "Hand-book of income tax law & practice", "subject_places": ["Great Britain"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T07:53:00.162538"}, "latest_revision": 2, "key": "/works/OL11741492W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4989610A"}}], "type": {"key": "/type/work"}, "subjects": ["Income tax"], "revision": 2}
+/type/work /works/OL1174149W 2 2010-04-27T22:38:14.972875 {"subtitle": "a legend", "created": {"type": "/type/datetime", "value": "2009-12-09T20:38:51.550738"}, "title": "The almond tree", "last_modified": {"type": "/type/datetime", "value": "2010-04-27T22:38:14.972875"}, "latest_revision": 2, "key": "/works/OL1174149W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL118656A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11741654W 2 2010-04-19T21:19:11.049554 {"title": "Mozhno i nel\u02b9zi\ufe20a\ufe21", "created": {"type": "/type/datetime", "value": "2009-12-11T05:16:04.924741"}, "last_modified": {"type": "/type/datetime", "value": "2010-04-19T21:19:11.049554"}, "latest_revision": 2, "key": "/works/OL11741654W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4989699A"}}], "type": {"key": "/type/work"}, "subjects": ["Russian Short stories"], "revision": 2}
+/type/work /works/OL11741735W 1 2009-12-11T05:16:04.924741 {"title": "Massasauga", "created": {"type": "/type/datetime", "value": "2009-12-11T05:16:04.924741"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:16:04.924741"}, "latest_revision": 1, "key": "/works/OL11741735W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4989770A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11742483W 2 2010-01-21T07:53:00.162538 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:16:04.924741"}, "title": "The role of law in small business transactions", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T07:53:00.162538"}, "latest_revision": 2, "key": "/works/OL11742483W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4990312A"}}], "type": {"key": "/type/work"}, "subjects": ["Law and legislation", "Small business"], "revision": 2}
+/type/work /works/OL11742544W 3 2010-12-03T15:47:33.515481 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:16:04.924741"}, "subject_places": ["Hanford Site", "Washington (State)"], "subjects": ["Effluent quality", "Environmental aspects", "Environmental aspects of Nuclear reactors", "Environmental aspects of Radioactive waste disposal in the ground", "Nuclear reactors", "Radioactive waste disposal in the ground"], "latest_revision": 3, "key": "/works/OL11742544W", "title": "Tank wastes discharged directly to the soil at the Hanford site", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4990350A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:47:33.515481"}, "revision": 3}
+/type/work /works/OL11742755W 2 2010-01-21T07:57:18.055015 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:16:12.749056"}, "title": "Childhood sexual abuse and the development of women's spirituality", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T07:57:18.055015"}, "latest_revision": 2, "key": "/works/OL11742755W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4990501A"}}], "type": {"key": "/type/work"}, "subjects": ["Adult child sexual abuse victims", "Case studies", "Women and religion", "Spiritual formation"], "revision": 2}
+/type/work /works/OL11742925W 2 2010-01-21T07:57:18.055015 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:16:12.749056"}, "title": "Pratik I\u0307ngilizce konus\u0327ma klavuzu", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T07:57:18.055015"}, "latest_revision": 2, "key": "/works/OL11742925W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4990603A"}}], "type": {"key": "/type/work"}, "subjects": ["English language", "Conversation and phrase books", "Turkish"], "revision": 2}
+/type/work /works/OL11743141W 4 2012-07-08T17:31:13.404522 {"last_modified": {"type": "/type/datetime", "value": "2012-07-08T17:31:13.404522"}, "title": "Hymn and toccata for piano (1947)", "created": {"type": "/type/datetime", "value": "2009-12-11T05:16:12.749056"}, "subjects": ["Piano music"], "latest_revision": 4, "key": "/works/OL11743141W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4990763A"}}], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL1174327W 3 2010-12-06T04:34:24.105012 {"last_modified": {"type": "/type/datetime", "value": "2010-12-06T04:34:24.105012"}, "title": "Chemical engineering plant design", "created": {"type": "/type/datetime", "value": "2009-12-09T20:38:51.550738"}, "subjects": ["Chemical engineering", "Chemical plants"], "latest_revision": 3, "key": "/works/OL1174327W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL118671A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11743331W 2 2010-01-21T07:57:18.055015 {"title": "De Ibidis Ovidianae codicibus", "created": {"type": "/type/datetime", "value": "2009-12-11T05:16:12.749056"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T07:57:18.055015"}, "latest_revision": 2, "key": "/works/OL11743331W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4990878A"}}], "subject_people": ["Ovid (43 B.C.-17 or 18 A.D)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11744071W 4 2010-12-04T06:18:38.395733 {"covers": [4741688], "last_modified": {"type": "/type/datetime", "value": "2010-12-04T06:18:38.395733"}, "latest_revision": 4, "key": "/works/OL11744071W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4991406A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T05:16:20.323932"}, "title": "Becoming Japanese", "subject_places": ["Japan"], "subjects": ["Case studies", "Child rearing", "Parent and child", "Socialization"], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL11744192W 4 2022-12-30T02:52:35.475534 {"title": "Qian bi xue yu bei tie wen xian xue", "subjects": ["Calligraphy, Chinese", "Chinese Calligraphy", "Chinese Coins", "Chinese Numismatics", "Coins, Chinese", "History", "Numismatics, Chinese", "Bibliography"], "key": "/works/OL11744192W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4991492A"}}], "type": {"key": "/type/work"}, "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T05:16:20.323932"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-30T02:52:35.475534"}}
+/type/work /works/OL11744388W 2 2020-12-20T10:10:08.581831 {"title": "Botba\u0304t tha\u0304ng prawattisa\u0304t kho\u031c\u0304ng ratthathammanu\u0304n nai rabop pracha\u0304thippatai Thai =", "key": "/works/OL11744388W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4991565A"}}], "type": {"key": "/type/work"}, "subjects": ["Constitutional law", "Politics and government"], "description": {"type": "/type/text", "value": "Conference paper on the role of constitutions in Thai politics."}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T05:16:20.323932"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-20T10:10:08.581831"}}
+/type/work /works/OL11744639W 1 2009-12-11T05:16:20.323932 {"title": "L'e\u0301criture hors limites", "created": {"type": "/type/datetime", "value": "2009-12-11T05:16:20.323932"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:16:20.323932"}, "latest_revision": 1, "key": "/works/OL11744639W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4991762A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11744677W 2 2010-01-21T08:01:50.197985 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:16:28.744258"}, "title": "Turizm sekto\u0308ru\u0308nde durumsal fakto\u0308rlerin o\u0308rgu\u0308tsel bag\u030cl\u0131l\u0131k u\u0308zerindeki etkisi", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T08:01:50.197985"}, "latest_revision": 2, "key": "/works/OL11744677W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4991788A"}}], "type": {"key": "/type/work"}, "subjects": ["Job satisfaction", "Organizational effectiveness", "Personnel management", "Hotel management"], "revision": 2}
+/type/work /works/OL11744887W 4 2010-12-03T15:47:02.772101 {"covers": [5336451], "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:47:02.772101"}, "latest_revision": 4, "key": "/works/OL11744887W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4991932A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T05:16:28.744258"}, "title": "Das unmo\u0308gliche Museum", "subjects": ["Art and society", "Art museums", "Art, Modern", "Artists and museums", "History", "Modern Art", "Museum techniques", "Philosophy"], "subject_times": ["20th century"], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL117453W 2 2010-01-21T08:06:33.512659 {"title": "Meiji jibutsu kigen", "created": {"type": "/type/datetime", "value": "2009-10-18T05:23:11.834130"}, "subject_places": ["Japan"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T08:06:33.512659"}, "latest_revision": 2, "key": "/works/OL117453W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1220758A"}}], "subject_times": ["Meiji period, 1868-1912", "1868-1912"], "type": {"key": "/type/work"}, "subjects": ["Civilization", "History"], "revision": 2}
+/type/work /works/OL11745530W 1 2009-12-11T05:16:28.744258 {"title": "Runtuhnya menara azan", "created": {"type": "/type/datetime", "value": "2009-12-11T05:16:28.744258"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:16:28.744258"}, "latest_revision": 1, "key": "/works/OL11745530W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4992404A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11745862W 3 2010-12-03T15:48:33.831602 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:16:37.159720"}, "subject_places": ["United States"], "subjects": ["Breach of contract", "Damages", "Evidence (Law)", "Evidence, Expert", "Expert Evidence", "Lender liability", "Tort liability of banks"], "latest_revision": 3, "key": "/works/OL11745862W", "title": "Evidentiary issues raised by the use of expert witnesses to prove causation and damages in business tort cases", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4992649A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:48:33.831602"}, "revision": 3}
+/type/work /works/OL11746046W 4 2010-12-03T15:48:33.831602 {"description": {"type": "/type/text", "value": "
http://www.isfarinka.ru/e107_images/banner_300.gif\r\n\r\n\u0427\u0438\u0442\u0430\u0439\u0442\u0435 \u043d\u0430 \u041d\u0430\u0448\u0435\u043c \u0441\u0430\u0439\u0442\u0435:\r\n\r\n\r\n\u043f\u0440\u0430\u0432\u0438\u043b\u0430 \u0447\u0430\u0435\u043f\u0438\u0442\u0438\u044f\r\n \r\n\r\n\u043d\u0435\u043f\u043e\u0441\u0440\u0435\u0434\u0441\u0442\u0432\u0435\u043d\u043d\u0430\u044f \u043f\u043e\u0434\u0433\u043e\u0442\u043e\u0432\u043a\u0430 \u043a \u0438\u0441\u043f\u043e\u0432\u0435\u0434\u0438\r\n \r\n\r\n\u043a\u0430\u043a \u043f\u0440\u0430\u0432\u043e\u0441\u043b\u0430\u0432\u0438\u0435 \u043e\u0442\u043d\u043e\u0441\u0438\u0442\u0441\u044f \u043a \u0432\u044b\u043a\u0438\u0434\u044b\u0448\u0443\r\n \r\n\r\n\u043c\u043e\u043b\u0438\u0442\u0432\u0430 \u0434\u043b\u044f \u044d\u043a\u0437\u0430\u043c\u0435\u043d\u043e\u0432\r\n \r\n\r\n\u0432\u044b\u0446\u0435\u0440\u043a\u043e\u0432\u043b\u0435\u043d\u0438\u0435\r\n \r\n\r\n\u043a\u0430\u043a \u043f\u043e\u0434\u0430\u0432\u0430\u0442\u044c \u0430\u0440\u0431\u0443\u0437\r\n \r\n\r\n\u0432\u044b\u0441\u043a\u0430\u0437\u044b\u0432\u0430\u043d\u0438\u044f \u043e \u0442\u0440\u0443\u0434\u0435\r\n \r\n\r\n\u043c\u0430\u0440\u0438\u044f \u0435\u0433\u0438\u043f\u0435\u0442\u0441\u043a\u0430\u044f"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:48:33.831602"}, "title": "\u041f\u0440\u0430\u0432\u043e\u0441\u043b\u0430\u0432\u043d\u0430\u044f \u0436\u0435\u043d\u0449\u0438\u043d\u0430 \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0430\u0435\u0442!", "created": {"type": "/type/datetime", "value": "2009-12-11T05:16:37.159720"}, "subject_places": ["Ethiopia", "\u041f\u0440\u0430\u0432\u043e\u0441\u043b\u0430\u0432\u043d\u0430\u044f \u0436\u0435\u043d\u0449\u0438\u043d\u0430 \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0430\u0435\u0442!"], "subjects": ["Church history", "History", "Jesuits", "\u041f\u0440\u0430\u0432\u043e\u0441\u043b\u0430\u0432\u043d\u0430\u044f \u0436\u0435\u043d\u0449\u0438\u043d\u0430 \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0430\u0435\u0442!"], "subject_people": ["Andr\u00e9s de Oviedo Patriarch of Ethiopia (1518-1580)", "Joa\u00f5 Nu\u00f1es Barreto Patriarch of Ethiopia (d. 1562)", "Luis de Urreta (fl. 1610)", "\u041f\u0440\u0430\u0432\u043e\u0441\u043b\u0430\u0432\u043d\u0430\u044f \u0436\u0435\u043d\u0449\u0438\u043d\u0430 \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0430\u0435\u0442!"], "key": "/works/OL11746046W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4992792A"}}], "latest_revision": 4, "subject_times": ["\u041f\u0440\u0430\u0432\u043e\u0441\u043b\u0430\u0432\u043d\u0430\u044f \u0436\u0435\u043d\u0449\u0438\u043d\u0430 \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0430\u0435\u0442!"], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL11746110W 1 2009-12-11T05:16:37.159720 {"title": "The popular art and media cooperative; a case study of voluntary education", "created": {"type": "/type/datetime", "value": "2009-12-11T05:16:37.159720"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:16:37.159720"}, "latest_revision": 1, "key": "/works/OL11746110W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4992840A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11746123W 2 2010-01-21T08:06:33.512659 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:16:37.159720"}, "title": "Overview and synthesis of the archeology of the Je\u0301mez province, New Mexico", "subject_places": ["Jemez Mountains Region", "New Mexico", "Jemez Mountains Region (N.M.)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T08:06:33.512659"}, "latest_revision": 2, "key": "/works/OL11746123W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4992847A"}}], "type": {"key": "/type/work"}, "subjects": ["Antiquities", "Excavations (Archaeology)", "Jemez Indians", "Pueblo Indians", "History"], "revision": 2}
+/type/work /works/OL11747066W 1 2009-12-11T05:16:45.557017 {"title": "Index seminum", "created": {"type": "/type/datetime", "value": "2009-12-11T05:16:45.557017"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:16:45.557017"}, "latest_revision": 1, "key": "/works/OL11747066W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4993509A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11747254W 3 2010-11-23T06:47:15.906432 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:16:45.557017"}, "subject_places": ["United States"], "subjects": ["Poultry", "Meat inspection", "Law and legislation", "Inspection"], "latest_revision": 3, "key": "/works/OL11747254W", "title": "Meat and poultry inspection issues", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4806564A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-11-23T06:47:15.906432"}, "revision": 3}
+/type/work /works/OL11747260W 1 2009-12-11T05:16:45.557017 {"title": "Genetic and morphometric evolution in Canada geese (Branta canadensis)", "created": {"type": "/type/datetime", "value": "2009-12-11T05:16:45.557017"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:16:45.557017"}, "latest_revision": 1, "key": "/works/OL11747260W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4993629A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11747327W 3 2010-12-03T15:48:03.442112 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:16:45.557017"}, "subject_places": ["United States"], "subjects": ["Industrial hygiene", "Industrial safety", "Law and legislation", "United States", "United States. Occupational Safety and Health Administration"], "latest_revision": 3, "key": "/works/OL11747327W", "title": "OSHA \"reinvention\"", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4993681A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:48:03.442112"}, "revision": 3}
+/type/work /works/OL11747335W 2 2010-01-21T08:11:03.945517 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:16:45.557017"}, "title": "Education for co-operation", "subject_places": ["Canada"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T08:11:03.945517"}, "latest_revision": 2, "key": "/works/OL11747335W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4993688A"}}], "type": {"key": "/type/work"}, "subjects": ["Country life", "Agriculture", "Rural development"], "revision": 2}
+/type/work /works/OL11747708W 2 2010-01-21T08:11:03.945517 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:16:54.140622"}, "title": "Cuba", "subject_places": ["United States", "Cuba"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T08:11:03.945517"}, "latest_revision": 2, "key": "/works/OL11747708W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4993958A"}}], "type": {"key": "/type/work"}, "subjects": ["Foreign relations"], "revision": 2}
+/type/work /works/OL1174780W 3 2010-04-28T07:24:33.363748 {"title": "Unnatural Selection", "created": {"type": "/type/datetime", "value": "2009-12-09T20:38:51.550738"}, "covers": [2887140], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:24:33.363748"}, "latest_revision": 3, "key": "/works/OL1174780W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL118734A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11748634W 4 2021-10-04T05:47:38.514267 {"title": "Chamfort and the Revolution", "covers": [5336744], "subject_places": ["France"], "key": "/works/OL11748634W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4994683A"}}], "subject_people": ["S\u00e9bastien-Roch-Nicolas Chamfort (1740?-1794)"], "subject_times": ["Revolution, 1789-1799"], "type": {"key": "/type/work"}, "subjects": ["Literature and the revolution", "Criticism and interpretation", "History", "France, history, revolution, 1789-1799"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T05:16:54.140622"}, "last_modified": {"type": "/type/datetime", "value": "2021-10-04T05:47:38.514267"}}
+/type/work /works/OL11749421W 3 2010-12-03T15:50:03.541035 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:50:03.541035"}, "latest_revision": 3, "key": "/works/OL11749421W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4995270A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T05:17:03.085134"}, "title": "A\u02bbma\u0304l Nadwat Shakhs\u0323i\u0304yat al-Tuha\u0304mi\u0304 al-Wazza\u0304ni\u0304 wa-Musa\u0304hamatihi al-Fikri\u0304yah", "subject_places": ["Morocco"], "subjects": ["Arab Authors", "Authors, Arab", "Congresses", "Intellectuals"], "subject_people": ["Wazz\u0101n\u012b, al-Tuh\u0101m\u012b (1903-1972)"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11749442W 2 2010-12-03T15:49:35.179474 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:49:35.179474"}, "title": "Reminiscences of the founding of the University", "created": {"type": "/type/datetime", "value": "2009-12-11T05:17:03.085134"}, "subjects": ["University of Cincinnati"], "latest_revision": 2, "key": "/works/OL11749442W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4995289A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11749580W 2 2010-01-21T08:15:43.304247 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:17:03.085134"}, "title": "Rubber", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T08:15:43.304247"}, "latest_revision": 2, "key": "/works/OL11749580W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4995385A"}}], "type": {"key": "/type/work"}, "subjects": ["Rubber"], "revision": 2}
+/type/work /works/OL11750000W 2 2010-01-21T08:21:02.080610 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:17:16.748320"}, "title": "Companach na cloinne", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T08:21:02.080610"}, "latest_revision": 2, "key": "/works/OL11750000W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4995696A"}}], "type": {"key": "/type/work"}, "subjects": ["Gaelic language", "Readers"], "revision": 2}
+/type/work /works/OL11750177W 2 2010-01-21T08:21:02.080610 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:17:16.748320"}, "title": "Franz\u00f6sischer Imperialismus in Vietnam", "subject_places": ["Vietnam"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T08:21:02.080610"}, "latest_revision": 2, "key": "/works/OL11750177W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4995823A"}}], "subject_times": ["1858-1945"], "type": {"key": "/type/work"}, "subjects": ["History"], "revision": 2}
+/type/work /works/OL11750205W 1 2009-12-11T05:17:16.748320 {"title": "Short term variability in Be stars", "created": {"type": "/type/datetime", "value": "2009-12-11T05:17:16.748320"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:17:16.748320"}, "latest_revision": 1, "key": "/works/OL11750205W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4995847A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11750370W 1 2009-12-11T05:17:16.748320 {"title": "Style in the French novel", "created": {"type": "/type/datetime", "value": "2009-12-11T05:17:16.748320"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:17:16.748320"}, "latest_revision": 1, "key": "/works/OL11750370W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4995973A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11750543W 4 2010-12-03T15:48:33.831602 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:17:16.748320"}, "subject_places": ["Israel"], "subjects": ["American Economic assistance", "Economic assistance, American"], "latest_revision": 4, "key": "/works/OL11750543W", "title": "Israel", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4759699A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:48:33.831602"}, "revision": 4}
+/type/work /works/OL11750567W 2 2022-11-15T04:06:27.939940 {"title": "Linguagem e persuas\u00e3o", "key": "/works/OL11750567W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4996100A"}}], "type": {"key": "/type/work"}, "covers": [9501134], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T05:17:16.748320"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-15T04:06:27.939940"}}
+/type/work /works/OL11750696W 3 2010-12-04T05:34:36.321573 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:17:25.096554"}, "subject_places": ["Acton (London, England)", "England", "England) Acton (London", "London"], "subjects": ["Brickworks"], "latest_revision": 3, "key": "/works/OL11750696W", "title": "The brickfields of Acton", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4996170A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-04T05:34:36.321573"}, "revision": 3}
+/type/work /works/OL11750701W 2 2010-01-21T08:21:02.080610 {"title": "Indian foreign policy", "created": {"type": "/type/datetime", "value": "2009-12-11T05:17:25.096554"}, "subject_places": ["India"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T08:21:02.080610"}, "latest_revision": 2, "key": "/works/OL11750701W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4996171A"}}], "subject_people": ["Jawaharlal Nehru (1889-1964,)"], "type": {"key": "/type/work"}, "subjects": ["Politics and government", "Foreign relations"], "revision": 2}
+/type/work /works/OL11750966W 3 2022-12-31T07:21:16.789657 {"title": "--aber die Krone des guten Namens u\u0308berragt sie", "subject_places": ["Kraichgau", "Germany"], "key": "/works/OL11750966W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4996343A"}}], "subject_times": ["18th century"], "type": {"key": "/type/work"}, "subjects": ["History", "Jewish epitaphs", "Judaism", "Jews", "Honor"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T05:17:25.096554"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-31T07:21:16.789657"}}
+/type/work /works/OL1175132W 10 2022-11-19T07:36:01.632991 {"title": "Four portraits", "covers": [6501682], "subject_places": ["Great Britain"], "subjects": ["Biography", "Gibbon, Edward, 1737-1794", "Great Britain", "History", "Intellectual life", "Sterne, Laurence, 1713-1768", "Wilkes, John, 1727-1797", "Boswell, james, 1740-1795", "Gibbon, edward, 1737-1794", "Sterne, laurence, 1713-1768", "Wilkes, john, 1727-1797"], "subject_people": ["Edward Gibbon (1737-1794)", "James Boswell (1740-1795)", "John Wilkes (1725-1797)", "John Wilkes (1727-1797)", "Laurence Sterne (1713-1768)"], "key": "/works/OL1175132W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL118773A"}}], "subject_times": ["18th century"], "type": {"key": "/type/work"}, "latest_revision": 10, "revision": 10, "created": {"type": "/type/datetime", "value": "2009-12-09T20:39:01.975776"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T07:36:01.632991"}}
+/type/work /works/OL11751488W 1 2009-12-11T05:17:25.096554 {"title": "Gonadal development and body growth in the white sucker (Catostomus commersoni) (Lec\u00e9p\u00e8de) in a group of south-central Ontario lakes having a wide range in acidity and mean depth", "created": {"type": "/type/datetime", "value": "2009-12-11T05:17:25.096554"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:17:25.096554"}, "latest_revision": 1, "key": "/works/OL11751488W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4996688A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11751898W 3 2012-06-08T22:51:17.961553 {"title": "Anton Bruckner zum 150. Geburtstag", "created": {"type": "/type/datetime", "value": "2009-12-11T05:17:33.184682"}, "last_modified": {"type": "/type/datetime", "value": "2012-06-08T22:51:17.961553"}, "latest_revision": 3, "key": "/works/OL11751898W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4587887A"}}], "subject_people": ["Anton Bruckner (1824-1896)"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11752287W 3 2010-12-03T15:48:33.831602 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:17:33.184682"}, "subject_places": ["Italy) Pietralata (Rome", "Pietralata (Rome, Italy)", "Rome (Italy)"], "subjects": ["History"], "latest_revision": 3, "key": "/works/OL11752287W", "title": "Pietralata", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4997231A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:48:33.831602"}, "revision": 3}
+/type/work /works/OL11752412W 2 2010-12-03T15:50:03.541035 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:50:03.541035"}, "title": "Ancient glass in the Museum of Fine Arts, Boston", "created": {"type": "/type/datetime", "value": "2009-12-11T05:17:33.184682"}, "subjects": ["Boston Museum of Fine Arts"], "latest_revision": 2, "key": "/works/OL11752412W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4997320A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11752735W 1 2009-12-11T05:17:42.532813 {"title": "De kleurling", "created": {"type": "/type/datetime", "value": "2009-12-11T05:17:42.532813"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:17:42.532813"}, "latest_revision": 1, "key": "/works/OL11752735W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4997599A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11753053W 2 2012-06-06T05:14:14.045358 {"title": "Fulfilling the potential", "created": {"type": "/type/datetime", "value": "2009-12-11T05:17:42.532813"}, "last_modified": {"type": "/type/datetime", "value": "2012-06-06T05:14:14.045358"}, "latest_revision": 2, "key": "/works/OL11753053W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2645908A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL1175312W 8 2020-08-11T10:05:58.690454 {"last_modified": {"type": "/type/datetime", "value": "2020-08-11T10:05:58.690454"}, "title": "American bibliography", "created": {"type": "/type/datetime", "value": "2009-12-09T20:39:01.975776"}, "covers": [5690618], "subject_places": ["United States"], "subjects": ["American literature", "Bibliography", "History", "Imprints", "Printers", "Printing"], "latest_revision": 8, "key": "/works/OL1175312W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL118790A"}}], "subject_times": ["Colonial period, ca. 1600-1775"], "type": {"key": "/type/work"}, "revision": 8}
+/type/work /works/OL11753155W 2 2020-12-18T02:02:20.236031 {"title": "Di\u0302wani\u0302 r\u0304e\u0302gay hos\u0327mendi\u0302", "key": "/works/OL11753155W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4997951A"}}], "type": {"key": "/type/work"}, "description": {"type": "/type/text", "value": "Poems."}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T05:17:42.532813"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-18T02:02:20.236031"}}
+/type/work /works/OL11753337W 1 2009-12-11T05:17:42.532813 {"title": "Majo no meiyaku", "created": {"type": "/type/datetime", "value": "2009-12-11T05:17:42.532813"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:17:42.532813"}, "latest_revision": 1, "key": "/works/OL11753337W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4998048A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11753609W 4 2021-07-14T09:19:00.854117 {"subject_places": ["Guadalajara", "Spain"], "subjects": ["Authors, Spanish", "Bibliography", "Spanish Authors"], "key": "/works/OL11753609W", "title": "Biblioteca de escritores de la provincia de Guadalajara y bibliografi\u0301a de la misma hasta el siglo XIX", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2092091A"}}], "type": {"key": "/type/work"}, "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T05:17:42.532813"}, "last_modified": {"type": "/type/datetime", "value": "2021-07-14T09:19:00.854117"}}
+/type/work /works/OL11753753W 1 2009-12-11T05:17:56.390435 {"title": "V poiskakh nachala: Rasskazy o nachertatel\u02b9no\u012d geometrii", "created": {"type": "/type/datetime", "value": "2009-12-11T05:17:56.390435"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:17:56.390435"}, "latest_revision": 1, "key": "/works/OL11753753W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4998356A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1175385W 4 2018-11-15T09:10:14.628668 {"covers": [6665213], "last_modified": {"type": "/type/datetime", "value": "2018-11-15T09:10:14.628668"}, "latest_revision": 4, "key": "/works/OL1175385W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL118807A"}}], "created": {"type": "/type/datetime", "value": "2009-12-09T20:39:01.975776"}, "title": "The wars of truth", "subjects": ["Human beings", "Theology, Doctrinal", "Theological anthropology", "Christianity", "History", "Doctrinal Theology"], "subject_times": ["17th century"], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL11754198W 3 2010-12-03T15:50:34.241839 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:50:34.241839"}, "title": "Poreia de\u0304miourgias kai prosphoras", "created": {"type": "/type/datetime", "value": "2009-12-11T05:17:56.390435"}, "subject_places": ["Cyprus"], "subjects": ["European Union", "History", "Politics and government"], "subject_people": ["Alekos P. Micha\u0113lid\u0113s (1933-)"], "key": "/works/OL11754198W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4998694A"}}], "latest_revision": 3, "subject_times": ["1960-2004", "Cyprus crisis, 1974-"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11754278W 2 2010-01-21T08:36:35.806665 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:17:56.390435"}, "title": "Structural manual", "subject_places": ["Ontario"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T08:36:35.806665"}, "latest_revision": 2, "key": "/works/OL11754278W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4998744A"}}], "type": {"key": "/type/work"}, "subjects": ["Handbooks, manuals", "Handbooks, manuals, etc", "Roads", "Specifications", "Engineering drawings", "Standards", "Structural engineering", "Highway engineering", "Road construction contracts"], "revision": 2}
+/type/work /works/OL11755630W 5 2022-02-25T22:46:56.236959 {"subject_places": ["North Carolina"], "subjects": ["Basketball", "History", "North Carolina Tar Heels (Basketball)", "Records", "University of North Carolina at Chapel Hill", "Basketball, history", "College sports"], "key": "/works/OL11755630W", "title": "University of North Carolina men's basketball games", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4999718A"}}], "type": {"key": "/type/work"}, "description": {"type": "/type/text", "value": "\"The ACC, since December 1, 1953, has played over 12,000 basketball games. This reference work contains every game ever played by the University of North Carolina. In addition to box scores and tournament statistics, in each season, the notable events, achievements and top players are given\"--Provided by publisher."}, "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2009-12-11T05:18:04.794410"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-25T22:46:56.236959"}}
+/type/work /works/OL11755653W 1 2009-12-11T05:18:11.652155 {"title": "Catalogue of Higher National Units", "created": {"type": "/type/datetime", "value": "2009-12-11T05:18:11.652155"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:18:11.652155"}, "latest_revision": 1, "key": "/works/OL11755653W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4999741A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11755731W 6 2011-11-23T01:29:53.732043 {"covers": [6972599], "last_modified": {"type": "/type/datetime", "value": "2011-11-23T01:29:53.732043"}, "latest_revision": 6, "key": "/works/OL11755731W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4999789A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T05:18:11.652155"}, "title": "Calvinism in relation to other theistic systems", "subject_places": ["Ontario", "Toronto"], "subjects": ["Calvinism", "Knox College (Toronto, Ont.)", "Presbyterian Church", "Calvinisme", "\u00c9glise presbyt\u00e9rienne"], "type": {"key": "/type/work"}, "revision": 6}
+/type/work /works/OL11755819W 2 2010-01-21T08:41:54.533151 {"title": "Daniel Chadwick", "created": {"type": "/type/datetime", "value": "2009-12-11T05:18:11.652155"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T08:41:54.533151"}, "latest_revision": 2, "key": "/works/OL11755819W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4999854A"}}], "subject_people": ["Daniel Chadwick"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11755841W 3 2020-08-02T05:18:14.154754 {"last_modified": {"type": "/type/datetime", "value": "2020-08-02T05:18:14.154754"}, "latest_revision": 3, "key": "/works/OL11755841W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4999868A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T05:18:11.652155"}, "title": "Women drivers", "subject_places": ["United States", "Australia", "Great Britain"], "subjects": ["History", "Automobile ownership", "Social life and customs", "Women automobile drivers", "Feminism", "Nineteen twenties", "Women", "Women consumers", "Automobile drivers", "Women, history"], "subject_times": ["20th century"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11755865W 2 2010-01-21T08:41:54.533151 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:18:11.652155"}, "title": "The western economy and its future as seen by Soviet economists", "subject_places": ["Soviet Union"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T08:41:54.533151"}, "latest_revision": 2, "key": "/works/OL11755865W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4999878A"}}], "type": {"key": "/type/work"}, "subjects": ["Economic history", "Economics", "History"], "revision": 2}
+/type/work /works/OL11755878W 2 2010-01-21T08:41:54.533151 {"title": "Legal affidavits and United Nations notices", "created": {"type": "/type/datetime", "value": "2009-12-11T05:18:11.652155"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T08:41:54.533151"}, "latest_revision": 2, "key": "/works/OL11755878W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL4999890A"}}], "subject_people": ["Ralph W. Marlee"], "type": {"key": "/type/work"}, "subjects": ["Trials, litigation"], "revision": 2}
+/type/work /works/OL11756145W 3 2020-12-17T14:22:26.190202 {"title": "Shwipke p\u02bburo\u0306 ssu\u0306n sangnye wa cherye", "subject_places": ["Korea"], "key": "/works/OL11756145W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5000001A"}}], "type": {"key": "/type/work"}, "subjects": ["Manners and customs", "Funeral rites and ceremonies", "Memorial rites and ceremonies", "Social life and customs"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T05:18:11.652155"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-17T14:22:26.190202"}}
+/type/work /works/OL11756674W 1 2009-12-11T05:18:19.229995 {"title": "Business-focused maintenance", "created": {"type": "/type/datetime", "value": "2009-12-11T05:18:19.229995"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:18:19.229995"}, "latest_revision": 1, "key": "/works/OL11756674W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5000367A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11756796W 5 2022-05-25T09:23:33.722863 {"key": "/works/OL11756796W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5000448A"}}], "title": "The governance of Norman and Angevin England 1086-1272", "subject_places": ["Great Britain"], "subjects": ["Politics and government", "England Regierung", "Verfassung", "Verwaltung", "Politique et gouvernement", "Geschichte (1086-1272)", "England", "Normans", "Medieval Constitutional history", "History", "Literature, philosophy"], "subject_times": ["1066-1485"], "type": {"key": "/type/work"}, "covers": [9841621], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2009-12-11T05:18:19.229995"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-25T09:23:33.722863"}}
+/type/work /works/OL11756870W 2 2010-01-21T08:47:05.436263 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:18:19.229995"}, "title": "The starkness of it", "subject_places": ["India"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T08:47:05.436263"}, "latest_revision": 2, "key": "/works/OL11756870W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5000505A"}}], "subject_times": ["1947-"], "type": {"key": "/type/work"}, "subjects": ["Social conditions", "Economic conditions"], "revision": 2}
+/type/work /works/OL1175708W 2 2010-01-21T08:47:05.436263 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:39:01.975776"}, "title": "Tradition and literature in early Judaism and in the early church", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T08:47:05.436263"}, "latest_revision": 2, "key": "/works/OL1175708W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL118830A"}}], "subject_times": ["Early church, ca. 30-600"], "type": {"key": "/type/work"}, "subjects": ["Rabbinical literature", "History and criticism", "History", "Judaism", "Jewish Christians", "Relations", "Christianity"], "revision": 2}
+/type/work /works/OL11757711W 2 2010-01-21T08:47:05.436263 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:18:28.316561"}, "title": "Die Relativierung von Verfahrensfehlern im Europa\u0308ischen Verwaltungsverfahren und nach [Paragraphen] 45,46 VwVfG", "subject_places": ["European union countries", "Germany"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T08:47:05.436263"}, "latest_revision": 2, "key": "/works/OL11757711W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5001075A"}}], "type": {"key": "/type/work"}, "subjects": ["Administrative procedure", "Mistake (Law)"], "revision": 2}
+/type/work /works/OL11757836W 2 2010-01-21T08:47:05.436263 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:18:28.316561"}, "title": "England und der deutsche Krieg 1866", "subject_places": ["Germany", "Great Britain"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T08:47:05.436263"}, "latest_revision": 2, "key": "/works/OL11757836W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5001158A"}}], "subject_times": ["1866-1871"], "type": {"key": "/type/work"}, "subjects": ["Foreign relations", "History"], "revision": 2}
+/type/work /works/OL11757840W 1 2009-12-11T05:18:28.316561 {"title": "Ducky's sleepover", "created": {"type": "/type/datetime", "value": "2009-12-11T05:18:28.316561"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:18:28.316561"}, "latest_revision": 1, "key": "/works/OL11757840W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5001161A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11757944W 1 2009-12-11T05:18:28.316561 {"title": "Be-shivti levadi", "created": {"type": "/type/datetime", "value": "2009-12-11T05:18:28.316561"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:18:28.316561"}, "latest_revision": 1, "key": "/works/OL11757944W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5001238A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11758176W 2 2010-01-21T08:52:51.522893 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:18:28.316561"}, "title": "Shallow water and supercritical ships", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T08:52:51.522893"}, "latest_revision": 2, "key": "/works/OL11758176W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5001415A"}}], "type": {"key": "/type/work"}, "subjects": ["Hydrodynamics", "Mathematical models", "Ships"], "revision": 2}
+/type/work /works/OL11758231W 1 2009-12-11T05:18:28.316561 {"title": "al- Ta\u0304ri\u0304kh al-qad\u0323a\u0304\u02bci\u0304 wa-kubraya\u0304t al-niza\u0304\u02bba\u0304t al-qad\u0323a\u0304\u02bci\u0304yah fi\u0304 Mu\u0304ri\u0304ta\u0304niya\u0304", "created": {"type": "/type/datetime", "value": "2009-12-11T05:18:28.316561"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:18:28.316561"}, "latest_revision": 1, "key": "/works/OL11758231W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5001458A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11758344W 2 2010-01-21T08:52:51.522893 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:18:28.316561"}, "title": "\u00d8yfolket i Flatanger", "subject_places": ["Flatanger (Norway)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T08:52:51.522893"}, "latest_revision": 2, "key": "/works/OL11758344W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5001545A"}}], "type": {"key": "/type/work"}, "subjects": ["Genealogy", "History"], "revision": 2}
+/type/work /works/OL11759038W 2 2010-01-21T08:52:51.522893 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:18:36.867388"}, "title": "Family planning", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T08:52:51.522893"}, "latest_revision": 2, "key": "/works/OL11759038W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5002012A"}}], "type": {"key": "/type/work"}, "subjects": ["Birth control", "Contraception"], "revision": 2}
+/type/work /works/OL11759492W 2 2010-01-21T08:52:51.522893 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:18:36.867388"}, "title": "R\u00e9cits historiques", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T08:52:51.522893"}, "latest_revision": 2, "key": "/works/OL11759492W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5002360A"}}], "type": {"key": "/type/work"}, "subjects": ["French language", "Readers"], "revision": 2}
+/type/work /works/OL11759513W 2 2010-01-21T08:52:51.522893 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:18:36.867388"}, "title": "Fonologia istorica a dialectelor dacorom\u00e2ne", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T08:52:51.522893"}, "latest_revision": 2, "key": "/works/OL11759513W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5002378A"}}], "type": {"key": "/type/work"}, "subjects": ["Romanian language", "Phonology", "Dialects"], "revision": 2}
+/type/work /works/OL11759718W 2 2010-01-21T08:52:51.522893 {"title": "Ignacy Krasicki, utopia i rzeczywisto\u015b\u0107", "created": {"type": "/type/datetime", "value": "2009-12-11T05:18:46.033585"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T08:52:51.522893"}, "latest_revision": 2, "key": "/works/OL11759718W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5002531A"}}], "subject_people": ["Ignacy Krasicki (1735-1801)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11760038W 2 2010-01-21T08:52:51.522893 {"title": "Aus den Familienpapieren der Manns", "created": {"type": "/type/datetime", "value": "2009-12-11T05:18:46.033585"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T08:52:51.522893"}, "latest_revision": 2, "key": "/works/OL11760038W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5002767A"}}], "subject_people": ["Thomas Mann (1875-1955)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11760110W 2 2010-01-21T08:58:29.971187 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:18:46.033585"}, "title": "Cours de langue fran\u00e7aise destin\u00e9 aux classes sup\u00e9rieures des \u00e9coles de langue allemande", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T08:58:29.971187"}, "latest_revision": 2, "key": "/works/OL11760110W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5002795A"}}], "type": {"key": "/type/work"}, "subjects": ["French language", "Grammar"], "revision": 2}
+/type/work /works/OL11760156W 3 2020-12-06T23:54:12.651214 {"title": "Ma\u02bba\u0304lim wa-d\u0323awa\u0304bit\u0323 al-ijtiha\u0304d \u02bbinda Shaykh al-Isla\u0304m Ibn Taymi\u0304yah", "key": "/works/OL11760156W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5002826A"}}], "subject_people": ["A\u1e25mad ibn \u02bbAbd al-\u1e24al\u012bm Ibn Taym\u012byah (1263-1328)"], "type": {"key": "/type/work"}, "subjects": ["Islamic law", "Views on Islamic law", "Interpretation and construction"], "description": {"type": "/type/text", "value": "Ibn Taymi\u0304yah, Ah\u0323mad ibn \u02bbAbd al-H\u0323ali\u0304m, 1263-1328; views on; Islamic law; interpretation and construction."}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T05:18:46.033585"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-06T23:54:12.651214"}}
+/type/work /works/OL11760160W 2 2010-01-21T08:58:29.971187 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:18:46.033585"}, "title": "L' esprit r\u00e9volutionnaire avant la R\u00e9volution, 1715-1789", "subject_places": ["France"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T08:58:29.971187"}, "latest_revision": 2, "key": "/works/OL11760160W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5002830A"}}], "subject_times": ["Bourbons, 1589-1789"], "type": {"key": "/type/work"}, "subjects": ["History"], "revision": 2}
+/type/work /works/OL11760379W 2 2020-12-07T00:00:31.870554 {"title": "Dira\u0304sa\u0304t fi\u0304 al-s\u0323ih\u0323a\u0304fah al-Filast\u0323i\u0304ni\u0304yah", "key": "/works/OL11760379W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5003003A"}}], "type": {"key": "/type/work"}, "description": {"type": "/type/text", "value": "Journalism; press; political aspects; West Bank; Gaza Strip; history."}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T05:18:46.033585"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-07T00:00:31.870554"}}
+/type/work /works/OL11760721W 2 2020-12-07T01:45:51.679662 {"title": "\u02bbAla\u0304qat al-Masi\u0304h\u0323i\u0304yi\u0304n bi-ahl bayt al-Nabi\u0304", "key": "/works/OL11760721W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5003259A"}}], "type": {"key": "/type/work"}, "subjects": ["Family", "Islam", "Relations", "Christianity", "Christianity and other religions", "Arabic literature"], "description": {"type": "/type/text", "value": "Muh\u0323ammad, Prophet, d. 632; family; relations; Christians; Islam; relations; Christianity; Arabic literature; Lebanon; selections."}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T05:18:54.574946"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-07T01:45:51.679662"}}
+/type/work /works/OL11761156W 2 2010-01-21T08:58:29.971187 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:18:54.574946"}, "title": "Ratnivshchyna", "subject_places": ["Ratne Region (Ukraine)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T08:58:29.971187"}, "latest_revision": 2, "key": "/works/OL11761156W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5003570A"}}], "type": {"key": "/type/work"}, "subjects": ["Description and travel", "History"], "revision": 2}
+/type/work /works/OL11761168W 3 2020-12-07T12:46:11.066418 {"subject_places": ["Hebron", "Jerusalem", "Palestine"], "subjects": ["Early works to 1800", "History", "Jerusalem in Islam"], "key": "/works/OL11761168W", "title": "Lat\u0323a\u0304\u02bcif uns al-jali\u0304l fi\u0304 tah\u0323a\u0304\u02bcif al-Quds wa-al-Khali\u0304l", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5003581A"}}], "type": {"key": "/type/work"}, "description": {"type": "/type/text", "value": "Jerusalem; Hebron; Palestine; history; early works to 1800; editor's thesis."}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T05:18:54.574946"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-07T12:46:11.066418"}}
+/type/work /works/OL11761238W 1 2009-12-11T05:18:54.574946 {"title": "Signs", "created": {"type": "/type/datetime", "value": "2009-12-11T05:18:54.574946"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:18:54.574946"}, "latest_revision": 1, "key": "/works/OL11761238W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5003639A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11761628W 2 2020-12-08T09:44:21.057248 {"title": "\u02bbAqd al-tarkhi\u0304s\u0323", "key": "/works/OL11761628W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5003929A"}}], "type": {"key": "/type/work"}, "subjects": ["License agreements", "Technology transfer", "Law and legislation"], "description": {"type": "/type/text", "value": "Licences contracts; invention patent; laws and legilations; Iraq; comparative study; partial contents of the author's MA."}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T05:18:54.574946"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-08T09:44:21.057248"}}
+/type/work /works/OL11761860W 2 2020-12-08T09:54:03.334330 {"title": "Mad\u0323a\u0304yiq al-kita\u0304bah", "key": "/works/OL11761860W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5004095A"}}], "type": {"key": "/type/work"}, "subjects": ["Arabic poetry", "History and criticism"], "description": {"type": "/type/text", "value": "Arabic poetry; 20th century; history and criticism; essays."}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T05:19:03.262719"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-08T09:54:03.334330"}}
+/type/work /works/OL11761921W 3 2020-12-08T09:57:10.489320 {"title": "Sifr qaryat al-Ka\u0304bri\u0304", "subject_places": ["K\u0101br\u012b (Lebanon)"], "key": "/works/OL11761921W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5004146A"}}], "type": {"key": "/type/work"}, "subjects": ["Social conditions", "Politics and government", "Economic conditions", "Biography", "History", "Palestinian Arabs"], "description": {"type": "/type/text", "value": "al-Ka\u0304bri\u0304, Lebanon; social, economic and political conditions; customs and traditions; history, biography."}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T05:19:03.262719"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-08T09:57:10.489320"}}
+/type/work /works/OL11762424W 2 2010-01-21T08:58:29.971187 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:19:03.262719"}, "title": "Clinical governance review Barking, Havering and Redbridge NHS Trust, April 2004", "subject_places": ["Great Britain", "Barking"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T08:58:29.971187"}, "latest_revision": 2, "key": "/works/OL11762424W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5004509A"}}], "type": {"key": "/type/work"}, "subjects": ["Hospitals", "Administration"], "revision": 2}
+/type/work /works/OL11762472W 3 2010-03-16T02:48:06.864924 {"subtitle": "progress in implementing the national service framework, August 2004.", "created": {"type": "/type/datetime", "value": "2009-12-11T05:19:03.262719"}, "title": "Coronary heart disease in the Sheffield area", "subject_places": ["Sheffield", "England"], "last_modified": {"type": "/type/datetime", "value": "2010-03-16T02:48:06.864924"}, "latest_revision": 3, "key": "/works/OL11762472W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5004509A"}}], "type": {"key": "/type/work"}, "subjects": ["Medical care", "Evaluation", "Prevention", "Coronary heart disease"], "revision": 3}
+/type/work /works/OL11762636W 3 2020-12-11T17:01:52.639740 {"title": "al- Wa\u02bby wa-al-ma\u02bczaq", "subjects": ["Politics and government", "Intellectuals", "Iraq War, 2003-2011", "Criticism"], "key": "/works/OL11762636W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5004643A"}}], "type": {"key": "/type/work"}, "description": {"type": "/type/text", "value": "Arab countries; politics and government."}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T05:19:03.262719"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-11T17:01:52.639740"}}
+/type/work /works/OL11762801W 1 2009-12-11T05:19:17.715098 {"title": "El sue\u00f1o y el laberinto", "created": {"type": "/type/datetime", "value": "2009-12-11T05:19:17.715098"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:19:17.715098"}, "latest_revision": 1, "key": "/works/OL11762801W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5004784A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11762854W 4 2022-11-19T11:58:54.449547 {"title": "Production, trade and utilization of seaweeds and seaweed products", "subjects": ["Economic aspects", "Economic aspects of Marine algae", "Marine algae", "Marine algae culture", "Botany, economic"], "key": "/works/OL11762854W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5004827A"}}], "type": {"key": "/type/work"}, "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T05:19:17.715098"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T11:58:54.449547"}}
+/type/work /works/OL1176286W 4 2020-08-13T20:47:15.079797 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:39:10.850597"}, "subjects": ["Building", "Pise", "Building materials"], "latest_revision": 4, "key": "/works/OL1176286W", "title": "Building in Cob, Pise and Stabilized Earth", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL118883A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-08-13T20:47:15.079797"}, "covers": [3019831], "revision": 4}
+/type/work /works/OL11763161W 2 2020-12-14T11:44:34.205478 {"title": "Qad\u0323a\u0304ya\u0304 wa-dira\u0304sa\u0304t i\u02bbla\u0304mi\u0304yah", "key": "/works/OL11763161W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5005059A"}}], "type": {"key": "/type/work"}, "subjects": ["Mass media", "History"], "description": {"type": "/type/text", "value": "Mass media; communication; Arab countries."}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T05:19:17.715098"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-14T11:44:34.205478"}}
+/type/work /works/OL11763245W 2 2020-12-14T12:53:13.021547 {"title": "Ta\u0304ri\u0304kh Bayt al-Maqdis fi\u0304 al-\u02bbas\u0323r al-Mamlu\u0304ki\u0304", "key": "/works/OL11763245W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5005128A"}}], "type": {"key": "/type/work"}, "subjects": ["History"], "description": {"type": "/type/text", "value": "Jerusalem; Mamelukes; history."}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T05:19:17.715098"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-14T12:53:13.021547"}}
+/type/work /works/OL11763525W 2 2010-01-21T09:04:10.933280 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:19:17.715098"}, "title": "Ma\u02bbarekhet ha-\u1e25inukh ha-\u02bbArvit be-Yi\u015bra\u02beel", "subject_places": ["Israel"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T09:04:10.933280"}, "latest_revision": 2, "key": "/works/OL11763525W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5005350A"}}], "type": {"key": "/type/work"}, "subjects": ["Palestinian Arabs", "Education", "Education and state"], "revision": 2}
+/type/work /works/OL11763957W 2 2010-01-21T09:04:10.933280 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:19:25.795079"}, "title": "Han\u02bcguk kyo\u0306ngje u\u0306i kujo pyo\u0306nhwa wa so\u0306bisu\u0306-o\u0306p koyong", "subject_places": ["Korea (South)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T09:04:10.933280"}, "latest_revision": 2, "key": "/works/OL11763957W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5005703A"}}], "type": {"key": "/type/work"}, "subjects": ["Labor market", "Service industries", "Structural adjustment (Economic policy)"], "revision": 2}
+/type/work /works/OL11763983W 4 2020-07-28T09:26:58.254447 {"covers": [6071054], "last_modified": {"type": "/type/datetime", "value": "2020-07-28T09:26:58.254447"}, "latest_revision": 4, "key": "/works/OL11763983W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5005724A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T05:19:25.795079"}, "title": "Daybreak in Korea", "subject_places": ["Korea"], "subjects": ["Social life and customs", "Missions", "Sociale situatie", "Vrouwen"], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL11764224W 4 2020-12-17T01:27:49.790665 {"subject_places": ["India", "Malabar Coast (India)"], "subjects": ["History", "History, Naval", "Moplahs", "Naval History", "Portuguese"], "key": "/works/OL11764224W", "title": "Ma\u0304ppil\u0323a samaran\u0307n\u0307al\u0323ut\u0323e matavum\u0323 ra\u0304s\u0323t\u0323r\u0332i\u0304yavum\u0323", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5005910A"}}], "type": {"key": "/type/work"}, "description": {"type": "/type/text", "value": "On the rebellions of Moplahs against Portuguese in 16th to 18th centuries A.D.; with reference to Malabar Coast, India."}, "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T05:19:25.795079"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-17T01:27:49.790665"}}
+/type/work /works/OL11764684W 6 2022-07-18T21:09:25.373353 {"subjects": ["Juvenile literature", "Snow", "Snow, juvenile literature"], "key": "/works/OL11764684W", "title": "It's snow!", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5006185A"}}], "type": {"key": "/type/work"}, "covers": [8205066], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2009-12-11T05:19:33.961495"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-18T21:09:25.373353"}}
+/type/work /works/OL1176506W 2 2010-01-21T09:09:48.664595 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:39:10.850597"}, "title": "Our moral and spiritual resources for international cooperation", "subject_places": ["United States", "Foreign countries"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T09:09:48.664595"}, "latest_revision": 2, "key": "/works/OL1176506W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL118908A"}}], "type": {"key": "/type/work"}, "subjects": ["International cooperation", "Civilization", "Relations"], "revision": 2}
+/type/work /works/OL11765192W 1 2009-12-11T05:19:33.961495 {"title": "Nje brenge shkohet per te vdekur", "created": {"type": "/type/datetime", "value": "2009-12-11T05:19:33.961495"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:19:33.961495"}, "latest_revision": 1, "key": "/works/OL11765192W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5006516A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11765258W 1 2009-12-11T05:19:33.961495 {"title": "Abstract of the accounts of the accounts of the Corporation for the year ended...", "created": {"type": "/type/datetime", "value": "2009-12-11T05:19:33.961495"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:19:33.961495"}, "latest_revision": 1, "key": "/works/OL11765258W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5006573A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11765343W 4 2010-12-03T22:18:13.560088 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T22:18:13.560088"}, "title": "Guo min dang zhi jun dang an", "created": {"type": "/type/datetime", "value": "2009-12-11T05:19:33.961495"}, "covers": [5469737], "subject_places": ["China"], "subjects": ["China (Republic : 1949- ).", "China (Republic : 1949- ). Lu jun", "Guo min ge ming jun", "History", "History, Military", "Military History"], "latest_revision": 4, "key": "/works/OL11765343W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5006633A"}}], "subject_times": ["1912-1949"], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL11765546W 2 2010-01-21T09:09:48.664595 {"title": "Le style indirect libre dans la prose narrative d'A. Daudet", "created": {"type": "/type/datetime", "value": "2009-12-11T05:19:33.961495"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T09:09:48.664595"}, "latest_revision": 2, "key": "/works/OL11765546W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5006749A"}}], "subject_people": ["Alphonse Daudet (1840-1897)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11765585W 1 2009-12-11T05:19:33.961495 {"title": "Chichot pana boga", "created": {"type": "/type/datetime", "value": "2009-12-11T05:19:33.961495"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:19:33.961495"}, "latest_revision": 1, "key": "/works/OL11765585W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5006776A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11765740W 2 2010-01-21T09:15:25.911050 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:19:42.977577"}, "title": "Nay\u0101 saptaka", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T09:15:25.911050"}, "latest_revision": 2, "key": "/works/OL11765740W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5006902A"}}], "type": {"key": "/type/work"}, "subjects": ["Hindi poetry (Collections)"], "revision": 2}
+/type/work /works/OL11765956W 2 2010-01-21T09:15:25.911050 {"title": "Capsule 2", "created": {"type": "/type/datetime", "value": "2009-12-11T05:19:42.977577"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T09:15:25.911050"}, "latest_revision": 2, "key": "/works/OL11765956W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5007052A"}}], "subject_people": ["Joanne Tod (1953-)"], "type": {"key": "/type/work"}, "subjects": ["Criticism and interpretation", "Exhibitions"], "revision": 2}
+/type/work /works/OL11766027W 3 2010-12-03T18:54:39.572258 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:19:42.977577"}, "subject_places": ["Asia", "Great Britain"], "subjects": ["Foreign relations", "Labour Party (Great Britain)"], "latest_revision": 3, "key": "/works/OL11766027W", "title": "Labour in Asia", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5007105A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T18:54:39.572258"}, "revision": 3}
+/type/work /works/OL1176625W 3 2020-09-13T22:30:25.569235 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:39:10.850597"}, "subjects": ["Ship models"], "latest_revision": 3, "key": "/works/OL1176625W", "title": "Steamship models", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL118912A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-09-13T22:30:25.569235"}, "covers": [9832388], "revision": 3}
+/type/work /works/OL11767043W 2 2010-01-21T09:20:58.159468 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:19:51.562226"}, "title": "El cuerpo del delito", "subject_places": ["Mexico"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T09:20:58.159468"}, "latest_revision": 2, "key": "/works/OL11767043W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5007858A"}}], "type": {"key": "/type/work"}, "subjects": ["Law and legislation", "Legal status, laws", "Women", "Family violence", "Crimes against", "Sex discrimination against women", "Women's rights", "Abused women"], "revision": 2}
+/type/work /works/OL11767169W 2 2010-01-21T09:20:58.159468 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:19:51.562226"}, "title": "Canada--anatomia unei desprinderi", "subject_places": ["Canada"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T09:20:58.159468"}, "latest_revision": 2, "key": "/works/OL11767169W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5007958A"}}], "type": {"key": "/type/work"}, "subjects": ["Description and travel"], "revision": 2}
+/type/work /works/OL11767750W 2 2010-01-21T09:20:58.159468 {"title": "Paisaje de Nuevo Leo\u0301n en la literatura", "created": {"type": "/type/datetime", "value": "2009-12-11T05:20:00.117206"}, "subject_places": ["y 20th century", "Nuevo Le\u00f3n (Mexico : State)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T09:20:58.159468"}, "latest_revision": 2, "key": "/works/OL11767750W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5008343A"}}], "subject_people": ["Patricia Laurent Kullick (1962-)", "Irma Sabina Sep\u00falveda (1930-1988)", "Cris Villarreal Navarro (1949-)"], "type": {"key": "/type/work"}, "subjects": ["Criticism and interpretation", "Mexican literature", "History and criticism", "Women authors", "In literature", "Nature in literature"], "revision": 2}
+/type/work /works/OL1176798W 4 2011-11-04T22:54:02.536409 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:39:10.850597"}, "subtitle": "A Novel", "key": "/works/OL1176798W", "title": "Restless Human Hearts V3", "latest_revision": 4, "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL118929A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2011-11-04T22:54:02.536409"}, "covers": [2509759], "revision": 4}
+/type/work /works/OL11768718W 5 2022-02-25T16:57:57.689255 {"title": "Street smarts for the practicing physician and surgeon", "subjects": ["Medical Practice Management", "Medicine", "Practice", "Practice Management, Medical", "Vocational guidance", "Vocational Guidance", "Medicine, practice"], "key": "/works/OL11768718W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5009047A"}}], "type": {"key": "/type/work"}, "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2009-12-11T05:20:08.492344"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-25T16:57:57.689255"}}
+/type/work /works/OL11768792W 2 2012-04-25T06:34:01.885682 {"last_modified": {"type": "/type/datetime", "value": "2012-04-25T06:34:01.885682"}, "title": "Prajum\u0323 ry\u0307an\u0307 bren\u0307 Khmaer", "created": {"type": "/type/datetime", "value": "2009-12-11T05:20:08.492344"}, "subjects": ["Khmers", "Tales", "Folklore"], "latest_revision": 2, "key": "/works/OL11768792W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5009087A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11769922W 1 2009-12-11T05:20:16.617150 {"title": "Selected Spiritual Writings", "created": {"type": "/type/datetime", "value": "2009-12-11T05:20:16.617150"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:20:16.617150"}, "latest_revision": 1, "key": "/works/OL11769922W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5009894A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11769975W 2 2020-12-07T21:45:30.136278 {"title": "Nam-Pukhan mit Miguk \u016di 3-cha kwan\u02bcgye wa p\u02bby\u014fnghwa kongjon", "key": "/works/OL11769975W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5009923A"}}], "type": {"key": "/type/work"}, "subjects": ["Foreign relations", "Peace"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T05:20:16.617150"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-07T21:45:30.136278"}}
+/type/work /works/OL11770096W 1 2009-12-11T05:20:16.617150 {"title": "Hanes Wesleyaeth Gymreig", "created": {"type": "/type/datetime", "value": "2009-12-11T05:20:16.617150"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:20:16.617150"}, "latest_revision": 1, "key": "/works/OL11770096W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5010029A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11770135W 4 2022-12-29T01:23:31.243186 {"title": "Odidere", "subject_places": ["Iwo (Osun State)", "Iwo (Osun State, Nigeria)", "Nigeria", "Nigeria) Iwo (Osun State"], "subjects": ["Biography", "Chiefdoms", "History", "Social life and customs", "Yoruba (African people)", "Kings and rulers"], "subject_people": ["Asiru Olatubosun Tadese (1936-)"], "key": "/works/OL11770135W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5010057A"}}], "subject_times": ["20th century", "21st century"], "type": {"key": "/type/work"}, "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T05:20:16.617150"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-29T01:23:31.243186"}}
+/type/work /works/OL11770252W 3 2020-12-17T18:39:48.808364 {"title": "Women in decentralised governance", "subject_places": ["India", "Anantapur (District)"], "key": "/works/OL11770252W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5010140A"}}], "type": {"key": "/type/work"}, "subjects": ["Panchayat", "Women in politics", "Political activity", "Rural women", "Women"], "description": {"type": "/type/text", "value": "Study on the role of women in panchayat system; with special reference to Anantapur District, Andhra Pradesh, India."}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T05:20:16.617150"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-17T18:39:48.808364"}}
+/type/work /works/OL11770718W 3 2020-12-17T22:25:45.068913 {"title": "Qat\u0324\u02bci\u0304 a\u0304k\u0332h\u0332iri\u0304 mauqa\u02bb", "subjects": ["Politics and government", "Official and employees", "Pakistan. Supreme Court", "Administration of Justice", "Lawyers", "Dismissal of", "Pakistan", "Political questions and judicial power", "Political activity", "Officials and employees"], "key": "/works/OL11770718W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5010466A"}}], "type": {"key": "/type/work"}, "description": {"type": "/type/text", "value": "Critical study of the judicial crisis in Pakistan after the suspension of Iftik\u0332h\u0332a\u0304r Muh\u0323ammad Caudhari\u0304, b. 1948, 20th Chief Justice of Pakistan by Pervez Musharraf, President of Pakistan on March 09, 2007 for alleged misconduct."}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T05:20:24.989321"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-17T22:25:45.068913"}}
+/type/work /works/OL11770919W 3 2019-05-29T07:11:08.269449 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:20:24.989321"}, "subject_places": ["Bali", "Indonesia"], "subjects": ["Dancing"], "latest_revision": 3, "key": "/works/OL11770919W", "title": "Dance and drama in Bali", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5010604A"}}, {"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL376696A"}}, {"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL2105254A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2019-05-29T07:11:08.269449"}, "revision": 3}
+/type/work /works/OL11771230W 1 2009-12-11T05:20:24.989321 {"title": "Li-shenatayim", "created": {"type": "/type/datetime", "value": "2009-12-11T05:20:24.989321"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:20:24.989321"}, "latest_revision": 1, "key": "/works/OL11771230W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5010851A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11771337W 1 2009-12-11T05:20:24.989321 {"title": "Nahag, tsayeret", "created": {"type": "/type/datetime", "value": "2009-12-11T05:20:24.989321"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:20:24.989321"}, "latest_revision": 1, "key": "/works/OL11771337W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5010920A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1177183W 2 2010-01-21T09:36:53.310979 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:39:21.773843"}, "title": "Fascism for whom?", "subject_places": ["Italy"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T09:36:53.310979"}, "latest_revision": 2, "key": "/works/OL1177183W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL118961A"}}], "type": {"key": "/type/work"}, "subjects": ["Fascism", "National socialism"], "revision": 2}
+/type/work /works/OL11772146W 1 2009-12-11T05:20:33.989055 {"title": "Purification of acetylcholine esterase", "created": {"type": "/type/datetime", "value": "2009-12-11T05:20:33.989055"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:20:33.989055"}, "latest_revision": 1, "key": "/works/OL11772146W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5011520A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11772582W 3 2010-12-03T17:57:20.850287 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T17:57:20.850287"}, "latest_revision": 3, "key": "/works/OL11772582W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5011846A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T05:20:33.989055"}, "title": "The war in China", "subject_places": ["China"], "subjects": ["China Opium War, 1840-1842", "History"], "subject_times": ["Opium War, 1840-1842"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11772932W 3 2010-12-03T15:55:59.038400 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:55:59.038400"}, "latest_revision": 3, "key": "/works/OL11772932W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5012104A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T05:20:43.121754"}, "title": "Sapientia Salomonis", "subjects": ["Bible", "Criticism, interpretation", "Fathers of the church", "History"], "subject_people": ["Jerome Saint (d. 419 or 20)"], "subject_times": ["Early church, ca. 30-600"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11773028W 2 2012-05-10T19:17:25.062791 {"title": "Bell Baxter High School", "created": {"type": "/type/datetime", "value": "2009-12-11T05:20:43.121754"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-10T19:17:25.062791"}, "latest_revision": 2, "key": "/works/OL11773028W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5011858A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11773293W 2 2010-01-21T09:42:04.208965 {"title": "Pedro Antonio de Alarc\u00f3n", "created": {"type": "/type/datetime", "value": "2009-12-11T05:20:43.121754"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T09:42:04.208965"}, "latest_revision": 2, "key": "/works/OL11773293W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5012366A"}}], "subject_people": ["Pedro Antonio de Alarc\u00f3n (1833-1891)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11773430W 3 2013-01-21T23:03:44.986905 {"last_modified": {"type": "/type/datetime", "value": "2013-01-21T23:03:44.986905"}, "title": "Storia del pensiero linguistico", "created": {"type": "/type/datetime", "value": "2009-12-11T05:20:43.121754"}, "subjects": ["Linguistics", "Congresses", "History"], "latest_revision": 3, "key": "/works/OL11773430W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL55666A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1177346W 2 2010-01-21T09:42:04.208965 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:39:21.773843"}, "title": "A voyage to Suratt in the year 1689", "subject_places": ["Surat (India)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T09:42:04.208965"}, "latest_revision": 2, "key": "/works/OL1177346W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL118998A"}}], "type": {"key": "/type/work"}, "subjects": ["Voyages and travels", "Description and travel"], "revision": 2}
+/type/work /works/OL11773692W 1 2009-12-11T05:20:50.351543 {"title": "The Bayreuth musical festival, 1899", "created": {"type": "/type/datetime", "value": "2009-12-11T05:20:50.351543"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:20:50.351543"}, "latest_revision": 1, "key": "/works/OL11773692W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5012653A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11774094W 1 2009-12-11T05:20:50.351543 {"title": "European court of auditors annual reports", "created": {"type": "/type/datetime", "value": "2009-12-11T05:20:50.351543"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:20:50.351543"}, "latest_revision": 1, "key": "/works/OL11774094W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5012918A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11774479W 5 2021-12-25T12:44:44.358670 {"covers": [5444164], "key": "/works/OL11774479W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5013129A"}}], "title": "Great Sandy Desert", "subject_places": ["Australia", "Great Sandy Desert", "Great Sandy Desert (W.A.)"], "subjects": ["Maps", "Vegetation surveys", "Desert plants", "Botany", "Plant communities", "Australia, history", "Reference"], "type": {"key": "/type/work"}, "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2009-12-11T05:20:50.351543"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-25T12:44:44.358670"}}
+/type/work /works/OL11775102W 2 2021-11-02T01:25:55.192122 {"title": "Chen feng mi an", "key": "/works/OL11775102W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5013497A"}}], "type": {"key": "/type/work"}, "subjects": ["Tui li xiao shuo", "Chang pian xiao shuo"], "covers": [12291876], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T05:20:57.085300"}, "last_modified": {"type": "/type/datetime", "value": "2021-11-02T01:25:55.192122"}}
+/type/work /works/OL11775450W 4 2022-12-31T13:10:57.199589 {"title": "Germa\u0301n Cueto", "covers": [5339171], "key": "/works/OL11775450W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5013737A"}}], "subject_people": ["Germ\u00e1n Cueto"], "type": {"key": "/type/work"}, "subjects": ["Exhibitions"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T05:20:57.085300"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-31T13:10:57.199589"}}
+/type/work /works/OL11775562W 1 2009-12-11T05:20:57.085300 {"title": "Eczema", "created": {"type": "/type/datetime", "value": "2009-12-11T05:20:57.085300"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:20:57.085300"}, "latest_revision": 1, "key": "/works/OL11775562W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5013812A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11775583W 1 2009-12-11T05:20:57.085300 {"title": "Interdependenzen =", "created": {"type": "/type/datetime", "value": "2009-12-11T05:20:57.085300"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:20:57.085300"}, "latest_revision": 1, "key": "/works/OL11775583W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5013828A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11775727W 1 2009-12-11T05:21:04.770698 {"title": "OCR Advanced Subsidiary GCE in Media Studies (3860)", "created": {"type": "/type/datetime", "value": "2009-12-11T05:21:04.770698"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:21:04.770698"}, "latest_revision": 1, "key": "/works/OL11775727W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5013910A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11776377W 1 2009-12-11T05:21:04.770698 {"title": "Representations received on the provisional recommendations published 8 January, 1980", "created": {"type": "/type/datetime", "value": "2009-12-11T05:21:04.770698"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:21:04.770698"}, "latest_revision": 1, "key": "/works/OL11776377W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5014343A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11776560W 2 2010-01-21T09:53:46.677177 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:21:04.770698"}, "title": "Bunong yu can kao yu fa", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T09:53:46.677177"}, "latest_revision": 2, "key": "/works/OL11776560W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5014468A"}}], "type": {"key": "/type/work"}, "subjects": ["Bunun language", "Grammar"], "revision": 2}
+/type/work /works/OL11776783W 2 2010-01-21T09:53:46.677177 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:21:12.071473"}, "title": "Economics for workers", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T09:53:46.677177"}, "latest_revision": 2, "key": "/works/OL11776783W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5014626A"}}], "type": {"key": "/type/work"}, "subjects": ["Socialism", "Economics"], "revision": 2}
+/type/work /works/OL11776862W 2 2010-01-21T09:53:46.677177 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:21:12.071473"}, "title": "Theoretical high energy physics", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T09:53:46.677177"}, "latest_revision": 2, "key": "/works/OL11776862W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5014672A"}}], "type": {"key": "/type/work"}, "subjects": ["Particles (Nuclear physics)", "Congresses"], "revision": 2}
+/type/work /works/OL11777692W 3 2017-05-16T11:19:43.749410 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:21:19.805264"}, "subjects": ["Music theory", "Musical meter and rhythm", "History"], "latest_revision": 3, "key": "/works/OL11777692W", "title": "De musica libri septem", "subject_times": ["16th-17th centuries"], "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL146543A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2017-05-16T11:19:43.749410"}, "revision": 3}
+/type/work /works/OL11777785W 2 2010-01-21T09:59:53.519605 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:21:19.805264"}, "title": "Ashura no jiten", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T09:59:53.519605"}, "latest_revision": 2, "key": "/works/OL11777785W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5015254A"}}], "type": {"key": "/type/work"}, "subjects": ["Japanese wit and humor", "Dictionaries"], "revision": 2}
+/type/work /works/OL1177790W 2 2010-01-21T09:59:53.519605 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:39:21.773843"}, "title": "Japanese trade and industry, present and future", "subject_places": ["Japan"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T09:59:53.519605"}, "latest_revision": 2, "key": "/works/OL1177790W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL119041A"}}], "subject_times": ["1918-1945"], "type": {"key": "/type/work"}, "subjects": ["Industries", "Commerce", "Economic conditions"], "revision": 2}
+/type/work /works/OL11777913W 2 2010-01-21T09:59:53.519605 {"title": "Manuel pratique des jardins d'enfants de Fr\u00e9d\u00e9ric Froebel", "created": {"type": "/type/datetime", "value": "2009-12-11T05:21:19.805264"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T09:59:53.519605"}, "latest_revision": 2, "key": "/works/OL11777913W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5015338A"}}], "subject_people": ["Friedrich Fr\u00f6bel (1782-1852)"], "type": {"key": "/type/work"}, "subjects": ["Kindergarten", "Methods and manuals"], "revision": 2}
+/type/work /works/OL11778218W 3 2010-12-03T15:57:01.248214 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:21:19.805264"}, "subject_places": ["Netherlands"], "subjects": ["Dutch National characteristics", "Ethnological museums and collections", "Folk art", "National characteristics, Dutch", "Open-air museums", "Rijksmuseum voor Volkskunde \"Het Nederlands Openluchtmuseum\"", "Social life and customs"], "latest_revision": 3, "key": "/works/OL11778218W", "title": "De dirigenten van de herinnering", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5015574A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:57:01.248214"}, "revision": 3}
+/type/work /works/OL11778443W 2 2010-01-21T09:59:53.519605 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:21:19.805264"}, "title": "al- Ih\u0323tila\u0304l al-Isra\u0304\u02bci\u0304li\u0304 wa-al-i\u02bbla\u0304m", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T09:59:53.519605"}, "latest_revision": 2, "key": "/works/OL11778443W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5015737A"}}], "subject_times": ["1993-"], "type": {"key": "/type/work"}, "subjects": ["Arab-Israeli conflict", "Mass media and the conflict", "Israeli West Bank Barrier", "Press coverage"], "revision": 2}
+/type/work /works/OL1177858W 2 2010-01-21T09:59:53.519605 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:39:21.773843"}, "title": "Inflation and expansion", "subject_places": ["Australia"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T09:59:53.519605"}, "latest_revision": 2, "key": "/works/OL1177858W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL119043A"}}], "subject_times": ["1945-"], "type": {"key": "/type/work"}, "subjects": ["Economic conditions"], "revision": 2}
+/type/work /works/OL11778914W 5 2020-02-14T09:51:24.930173 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:21:27.680170"}, "subjects": ["Christian union", "Congresses"], "latest_revision": 5, "key": "/works/OL11778914W", "title": "Ecumenical dialogue at Harvard", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5016084A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-02-14T09:51:24.930173"}, "covers": [7298446], "revision": 5}
+/type/work /works/OL11779063W 1 2009-12-11T05:21:27.680170 {"title": "Fashion through fashion plates, 1771-1970", "created": {"type": "/type/datetime", "value": "2009-12-11T05:21:27.680170"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:21:27.680170"}, "latest_revision": 1, "key": "/works/OL11779063W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5016186A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11779275W 1 2009-12-11T05:21:27.680170 {"title": "L' e\u0301nigme du \"creek sanglant\"", "created": {"type": "/type/datetime", "value": "2009-12-11T05:21:27.680170"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:21:27.680170"}, "latest_revision": 1, "key": "/works/OL11779275W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5016342A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11779369W 4 2010-12-03T15:57:32.749726 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:21:27.680170"}, "subjects": ["Congresses", "Judaism", "Man-woman relationships", "Marriage", "Marriage (Jewish law)", "Religious aspects", "Religious aspects of Man-woman relationships", "Religious aspects of Marriage"], "latest_revision": 4, "key": "/works/OL11779369W", "title": "Gender relationships in marriage and out", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5016403A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T15:57:32.749726"}, "covers": [5339551], "revision": 4}
+/type/work /works/OL11779532W 3 2010-04-28T07:24:33.363748 {"title": "Das Menschenleben und seine Bl\u00fcthe", "created": {"type": "/type/datetime", "value": "2009-12-11T05:21:27.680170"}, "covers": [6139875], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:24:33.363748"}, "latest_revision": 3, "key": "/works/OL11779532W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5016535A"}}], "subjects": ["Civilization"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11779801W 2 2010-01-21T10:06:01.551167 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:21:34.728392"}, "title": "Le lesioni digitali del bovino", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T10:06:01.551167"}, "latest_revision": 2, "key": "/works/OL11779801W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5016752A"}}], "type": {"key": "/type/work"}, "subjects": ["Diseases", "Foot", "Cattle"], "revision": 2}
+/type/work /works/OL11780473W 2 2010-01-21T10:11:22.505166 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:21:34.728392"}, "title": "Opalennai\ufe20a\ufe21 i\ufe20u\ufe21nost\u02b9", "subject_places": ["Soviet Union"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T10:11:22.505166"}, "latest_revision": 2, "key": "/works/OL11780473W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5017108A"}}], "type": {"key": "/type/work"}, "subjects": ["World War, 1939-1945", "Fiction"], "revision": 2}
+/type/work /works/OL117806W 2 2010-01-21T10:11:22.505166 {"title": "Izuchenie vospitannosti shkol'nikov", "created": {"type": "/type/datetime", "value": "2009-10-18T05:23:11.834130"}, "subject_places": ["Russia (Federation)", "Krasnoi\ufe20a\ufe21rsk", "Krasnoi\ufe20a\ufe21rsk Region"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T10:11:22.505166"}, "latest_revision": 2, "key": "/works/OL117806W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1221762A"}}], "type": {"key": "/type/work"}, "subjects": ["Classroom management", "Behavioral assessment of children"], "revision": 2}
+/type/work /works/OL11780726W 2 2010-01-21T10:11:22.505166 {"title": "Vittorio Alfieri", "created": {"type": "/type/datetime", "value": "2009-12-11T05:21:43.201838"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T10:11:22.505166"}, "latest_revision": 2, "key": "/works/OL11780726W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5017289A"}}], "subject_people": ["Vittorio Alfieri (1749-1803)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11780793W 1 2009-12-11T05:21:43.201838 {"title": "Staroselski ciklus", "created": {"type": "/type/datetime", "value": "2009-12-11T05:21:43.201838"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:21:43.201838"}, "latest_revision": 1, "key": "/works/OL11780793W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5017346A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11780870W 3 2020-12-16T13:43:36.667118 {"title": "San\u0307gi\u0304tas\u0301a\u0304str\u0332a\u0304mr\u0325tam\u0323", "subject_places": ["India", "South India"], "key": "/works/OL11780870W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5017400A"}}], "type": {"key": "/type/work"}, "subjects": ["History and criticism", "Carnatic music", "Composers", "Music", "Biography"], "description": {"type": "/type/text", "value": "On Carnatic music; includes brief profiles of Carnatic music composers."}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T05:21:43.201838"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-16T13:43:36.667118"}}
+/type/work /works/OL11780993W 2 2010-01-21T10:11:22.505166 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:21:43.201838"}, "title": "Le Nord-Katanga a\u0300 feu et a\u0300 sang !", "subject_places": ["Katanga (Congo)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T10:11:22.505166"}, "latest_revision": 2, "key": "/works/OL11780993W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5017498A"}}], "type": {"key": "/type/work"}, "subjects": ["History"], "revision": 2}
+/type/work /works/OL11781302W 2 2010-01-21T10:11:22.505166 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:21:43.201838"}, "title": "Genc\u208b\u208b siyaset\u208b\u208b me\u02bcri\u0302fet", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T10:11:22.505166"}, "latest_revision": 2, "key": "/works/OL11781302W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5017717A"}}], "type": {"key": "/type/work"}, "subjects": ["Youth", "Political activity"], "revision": 2}
+/type/work /works/OL11781921W 2 2010-01-21T10:16:17.807136 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:21:50.785645"}, "title": "La liturgie de la messe", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T10:16:17.807136"}, "latest_revision": 2, "key": "/works/OL11781921W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5018221A"}}], "type": {"key": "/type/work"}, "subjects": ["Mass"], "revision": 2}
+/type/work /works/OL11782226W 2 2010-01-21T10:16:17.807136 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:21:50.785645"}, "title": "Teaching gifted students literature in grades seven through nine", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T10:16:17.807136"}, "latest_revision": 2, "key": "/works/OL11782226W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5018427A"}}], "type": {"key": "/type/work"}, "subjects": ["Literature", "Gifted children", "Education", "Study and teaching"], "revision": 2}
+/type/work /works/OL11782545W 1 2009-12-11T05:21:50.785645 {"title": "Loci communes theologici perpetuis similitudinibus illustrati", "created": {"type": "/type/datetime", "value": "2009-12-11T05:21:50.785645"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:21:50.785645"}, "latest_revision": 1, "key": "/works/OL11782545W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5018653A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11782939W 5 2020-02-28T09:49:23.557664 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:21:59.285335"}, "subjects": ["Juvenile literature", "Telephone etiquette", "Etiquette for children and teenagers", "Etiquette"], "latest_revision": 5, "key": "/works/OL11782939W", "title": "Good manners on the phone", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5018892A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-02-28T09:49:23.557664"}, "covers": [8191973], "revision": 5}
+/type/work /works/OL1178308W 4 2021-12-23T00:52:30.638049 {"subjects": ["Mysticism", "Gurdjieff, georges ivanovitch, 1872-1949"], "subject_people": ["Georges Ivanovitch Gurdjieff (1872-1949)"], "key": "/works/OL1178308W", "title": "A study of Gurdjieff's teaching", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL119088A"}}], "type": {"key": "/type/work"}, "covers": [12464393], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-09T20:39:29.429936"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-23T00:52:30.638049"}}
+/type/work /works/OL11783786W 2 2022-11-11T06:45:21.830245 {"title": "How I came to do it", "key": "/works/OL11783786W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5019512A"}}], "type": {"key": "/type/work"}, "subjects": ["Catholic converts"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T05:22:11.567418"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-11T06:45:21.830245"}}
+/type/work /works/OL11784353W 3 2010-08-14T23:35:55.000767 {"subtitle": "su vida y su hist\u00f3rica renuncia", "last_modified": {"type": "/type/datetime", "value": "2010-08-14T23:35:55.000767"}, "title": "El gobernador Ortiz y Herrera", "created": {"type": "/type/datetime", "value": "2009-12-11T05:22:11.567418"}, "subject_places": ["C\u00f3rdoba (Argentina)"], "subjects": ["Politics and government", "Biography", "History"], "subject_people": ["Jos\u00e9 Antonio Ortiz y Herrera (1845-1914)"], "key": "/works/OL11784353W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5019888A"}}], "latest_revision": 3, "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1178462W 2 2010-01-21T10:25:39.079019 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:39:29.429936"}, "title": "Poisonous plants of Georgia", "subject_places": ["Georgia"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T10:25:39.079019"}, "latest_revision": 2, "key": "/works/OL1178462W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL119102A"}}], "type": {"key": "/type/work"}, "subjects": ["Botany", "Poisonous plants"], "revision": 2}
+/type/work /works/OL1178483W 1 2009-12-09T20:39:29.429936 {"title": "How the tillers win back their land", "created": {"type": "/type/datetime", "value": "2009-12-09T20:39:29.429936"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T20:39:29.429936"}, "latest_revision": 1, "key": "/works/OL1178483W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL119109A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11784882W 2 2010-01-21T10:25:39.079019 {"title": "Amakusa no tsuchi to narite", "created": {"type": "/type/datetime", "value": "2009-12-11T05:22:19.179852"}, "subject_places": ["Japan"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T10:25:39.079019"}, "latest_revision": 2, "key": "/works/OL11784882W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5020224A"}}], "subject_people": ["Fr\u00e9d\u00e9ric Garnier (1860-1941)"], "type": {"key": "/type/work"}, "subjects": ["Missionaries", "Biography"], "revision": 2}
+/type/work /works/OL11785612W 4 2020-12-11T00:18:18.680259 {"title": "Khirad-i ja\u0304vi\u0304da\u0304n", "subjects": ["Civilization, Modern", "Congresses", "Islamic Philosophy", "Modern Civilization", "Modernist-fundamentalist controversy", "Philosophy, Islamic", "Tradition (Philosophy)", "Tradition (Theology)", "Islamic philosophy"], "key": "/works/OL11785612W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5020697A"}}], "type": {"key": "/type/work"}, "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T05:22:19.179852"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-11T00:18:18.680259"}}
+/type/work /works/OL11785690W 3 2020-12-11T16:21:47.041891 {"title": "Bod kyi dman\u0307s srol byi blan\u0307 dor gsal ba\u02bci sgron me", "subject_places": ["Tibet (China)"], "key": "/works/OL11785690W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5020755A"}}], "type": {"key": "/type/work"}, "subjects": ["Social life and customs", "Tibetans"], "description": {"type": "/type/text", "value": "On the Tibetan social life and customs."}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T05:22:26.284275"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-11T16:21:47.041891"}}
+/type/work /works/OL11785781W 2 2010-01-21T10:25:39.079019 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:22:26.284275"}, "title": "Step 6 feedback workshop for Peel Region landfill site search", "subject_places": ["Peel (Regional municipality)", "Ontario"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T10:25:39.079019"}, "latest_revision": 2, "key": "/works/OL11785781W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5020826A"}}], "type": {"key": "/type/work"}, "subjects": ["Sanitary landfills", "Refuse and refuse disposal", "Refuse disposal facilities"], "revision": 2}
+/type/work /works/OL11786053W 2 2010-01-21T10:30:19.047514 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:22:26.284275"}, "title": "Kis\u0101na kaise la\u1e5bate hai\u1e43?", "subject_places": ["India", "Bihar", "Bihar (India)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T10:30:19.047514"}, "latest_revision": 2, "key": "/works/OL11786053W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5020977A"}}], "type": {"key": "/type/work"}, "subjects": ["Peasant uprisings", "History"], "revision": 2}
+/type/work /works/OL11786220W 2 2020-12-14T13:49:33.868940 {"title": "Hak anda dan pelayanan publik di bidang tanah dan bangunan", "key": "/works/OL11786220W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5021094A"}}], "type": {"key": "/type/work"}, "subjects": ["Land titles", "Building permits"], "description": {"type": "/type/text", "value": "Public services on procedures of building permits according to Indonesian laws and regulations."}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T05:22:26.284275"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-14T13:49:33.868940"}}
+/type/work /works/OL1178624W 3 2010-07-16T07:39:47.836192 {"subtitle": "an essay upon the nature and significance of the natural and artificial integuments worn by men and women", "title": "Clothes", "created": {"type": "/type/datetime", "value": "2009-12-09T20:39:29.429936"}, "last_modified": {"type": "/type/datetime", "value": "2010-07-16T07:39:47.836192"}, "latest_revision": 3, "key": "/works/OL1178624W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL119114A"}}], "type": {"key": "/type/work"}, "subjects": ["Clothing and dress", "Art and morals"], "revision": 3}
+/type/work /works/OL117876W 2 2010-01-21T10:35:14.750389 {"title": "Kismet", "created": {"type": "/type/datetime", "value": "2009-10-18T05:23:11.834130"}, "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T10:35:14.750389"}, "latest_revision": 2, "key": "/works/OL117876W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1221898A"}}], "subject_times": ["19th century"], "type": {"key": "/type/work"}, "subjects": ["Social life and customs", "Fiction"], "revision": 2}
+/type/work /works/OL11787753W 1 2009-12-11T05:22:42.583973 {"title": "Esperanza abajo del R\u00edo Grande", "created": {"type": "/type/datetime", "value": "2009-12-11T05:22:42.583973"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:22:42.583973"}, "latest_revision": 1, "key": "/works/OL11787753W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5022181A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11787935W 2 2010-01-21T10:35:14.750389 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:22:42.583973"}, "title": "The nature and significance of the antibody response", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T10:35:14.750389"}, "latest_revision": 2, "key": "/works/OL11787935W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5022315A"}}], "type": {"key": "/type/work"}, "subjects": ["Antigens", "Immunoglobulins"], "revision": 2}
+/type/work /works/OL11788017W 1 2009-12-11T05:22:42.583973 {"title": "Los restos de la noche", "created": {"type": "/type/datetime", "value": "2009-12-11T05:22:42.583973"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:22:42.583973"}, "latest_revision": 1, "key": "/works/OL11788017W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5022374A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11788469W 2 2010-01-21T10:35:14.750389 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:22:42.583973"}, "title": "Erosion losses from Hawaii soils under simulated rainfall", "subject_places": ["Hawaii"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T10:35:14.750389"}, "latest_revision": 2, "key": "/works/OL11788469W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5022685A"}}], "type": {"key": "/type/work"}, "subjects": ["Soils"], "revision": 2}
+/type/work /works/OL11788646W 1 2009-12-11T05:22:42.583973 {"title": "Las virtudes peligrosas", "created": {"type": "/type/datetime", "value": "2009-12-11T05:22:42.583973"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:22:42.583973"}, "latest_revision": 1, "key": "/works/OL11788646W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5022824A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11788832W 3 2022-12-29T04:58:41.839622 {"title": "Wajin to tetsu no k\u014dkogaku", "subject_places": ["Japan"], "key": "/works/OL11788832W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5022962A"}}], "type": {"key": "/type/work"}, "subjects": ["Ironwork", "Iron age", "Antiquities"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T05:22:50.305405"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-29T04:58:41.839622"}}
+/type/work /works/OL11788858W 3 2020-12-19T11:39:15.355057 {"title": "Na\u0304mavara Sim\u0323ha aura Hindi\u0304 sami\u0304ksha\u0304", "key": "/works/OL11788858W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5022978A"}}], "subject_people": ["Namwar Singh (1926-)"], "subject_times": ["20th century"], "type": {"key": "/type/work"}, "subjects": ["Hindi literature", "History and criticism"], "description": {"type": "/type/text", "value": "Study on the works of Namwar Singh, b. 1926, Hindi critic; chiefly on 20th century Hindi literature."}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T05:22:50.305405"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-19T11:39:15.355057"}}
+/type/work /works/OL11788983W 4 2020-08-13T03:07:54.232064 {"last_modified": {"type": "/type/datetime", "value": "2020-08-13T03:07:54.232064"}, "title": "Bu\u0306lgarski khroniki 2137 g. pr. KHr. - 1453 g. sl. KHr", "created": {"type": "/type/datetime", "value": "2009-12-11T05:22:50.305405"}, "covers": [10345322], "subject_places": ["Bulgaria"], "subjects": ["Bulgarian Historical fiction", "Fiction", "Historical fiction, Bulgarian", "History"], "latest_revision": 4, "key": "/works/OL11788983W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5023060A"}}], "subject_times": ["To 1393"], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL11789010W 2 2010-01-21T10:43:51.863161 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:22:50.305405"}, "title": "Proceedings, Symposium Genetic Improvement of Wool and Lamb Production, Texas A & M University, Livestock and Forage Research Center, McGregor, Texas, April 18-19, 1968", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T10:43:51.863161"}, "latest_revision": 2, "key": "/works/OL11789010W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5023074A"}}], "type": {"key": "/type/work"}, "subjects": ["Sheep", "Breeding", "Congresses"], "revision": 2}
+/type/work /works/OL11789083W 2 2010-01-21T10:43:51.863161 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:22:50.305405"}, "title": "Derzki\u012d re\u012dd", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T10:43:51.863161"}, "latest_revision": 2, "key": "/works/OL11789083W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5023126A"}}], "type": {"key": "/type/work"}, "subjects": ["World War, 1939-1945", "Fiction"], "revision": 2}
+/type/work /works/OL11789148W 6 2022-12-11T03:00:51.745893 {"covers": [5340221], "key": "/works/OL11789148W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5023178A"}}], "title": "Die Saeta der Semana Santa", "subject_places": ["Andalusia", "Spain"], "subjects": ["Holy Week", "Sacred songs, Unaccompanied", "Songs, Spanish", "Spanish Songs", "Unaccompanied Sacred songs", "Spanish Religious poetry", "Spanish Folk poetry", "History and criticism", "Holy Week music", "Spanish Christian poetry", "Religious life and customs"], "type": {"key": "/type/work"}, "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2009-12-11T05:22:50.305405"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-11T03:00:51.745893"}}
+/type/work /works/OL11789655W 2 2010-01-21T10:43:51.863161 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:22:50.305405"}, "title": "AFT guide for legislative action and state collective bargaining laws", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T10:43:51.863161"}, "latest_revision": 2, "key": "/works/OL11789655W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5023539A"}}], "type": {"key": "/type/work"}, "subjects": ["Teachers", "Collective bargaining", "Education", "Collective labor agreements", "Legal status, laws"], "revision": 2}
+/type/work /works/OL11789692W 3 2023-01-08T19:53:06.160875 {"title": "Shen mi di huan shu", "subject_places": ["China"], "key": "/works/OL11789692W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5023569A"}}], "type": {"key": "/type/work"}, "subjects": ["Magic", "Occultism", "Spirit possession", "Demoniac possession"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T05:22:58.271392"}, "last_modified": {"type": "/type/datetime", "value": "2023-01-08T19:53:06.160875"}}
+/type/work /works/OL11789819W 2 2010-12-03T20:16:11.386277 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T20:16:11.386277"}, "title": "Directory of practices and register of members", "created": {"type": "/type/datetime", "value": "2009-12-11T05:22:58.271392"}, "subjects": ["Association of Planning Supervisors"], "latest_revision": 2, "key": "/works/OL11789819W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5023665A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11790095W 2 2010-01-21T10:49:02.663984 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:22:58.271392"}, "title": "Personal and work values of women as related to choice of college and career orientation", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T10:49:02.663984"}, "latest_revision": 2, "key": "/works/OL11790095W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5023846A"}}], "type": {"key": "/type/work"}, "subjects": ["Employment", "Women", "Women college graduates", "Education (Higher)"], "revision": 2}
+/type/work /works/OL11790182W 3 2010-12-04T06:41:00.689312 {"last_modified": {"type": "/type/datetime", "value": "2010-12-04T06:41:00.689312"}, "title": "Zhongguo si xiang shi", "created": {"type": "/type/datetime", "value": "2009-12-11T05:22:58.271392"}, "subjects": ["Chinese Philosophy", "History", "Philosophy, Chinese"], "latest_revision": 3, "key": "/works/OL11790182W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5023901A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11790323W 3 2010-12-03T16:02:03.071042 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:22:58.271392"}, "subject_places": ["Abkhazskai\ufe20a\ufe21 A.S.S.R.", "Georgian S.s.R."], "subjects": ["History", "Labor and laboring classes", "War work", "World War, 1939-1945"], "latest_revision": 3, "key": "/works/OL11790323W", "title": "Rabochi\u012d klass Abkhazii v period Veliko\u012d Otechestvenno\u012d Vo\u012dny (1941-1945 gg.)", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5024016A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T16:02:03.071042"}, "revision": 3}
+/type/work /works/OL11790979W 2 2010-01-21T10:49:02.663984 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:23:05.661146"}, "title": "Mun\u0101\u1e93ar\u0101t \u02bbaq\u0101\u02beid\u012byah bayna al-Sh\u012b\u02bbah wa-ahl al-Sunnah", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T10:49:02.663984"}, "latest_revision": 2, "key": "/works/OL11790979W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5024441A"}}], "type": {"key": "/type/work"}, "subjects": ["Controversial literature", "Sh\u012b\u02bbah"], "revision": 2}
+/type/work /works/OL11792265W 1 2009-12-11T05:23:13.431239 {"title": "SAS", "created": {"type": "/type/datetime", "value": "2009-12-11T05:23:13.431239"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:23:13.431239"}, "latest_revision": 1, "key": "/works/OL11792265W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5025333A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11792881W 1 2009-12-11T05:23:26.080691 {"title": "Liujin xian zhang", "created": {"type": "/type/datetime", "value": "2009-12-11T05:23:26.080691"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:23:26.080691"}, "latest_revision": 1, "key": "/works/OL11792881W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5025731A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11793108W 4 2020-10-28T06:46:40.213798 {"last_modified": {"type": "/type/datetime", "value": "2020-10-28T06:46:40.213798"}, "title": "1977 nian guo ji bu xiu gang nian hui lun wen ji", "created": {"type": "/type/datetime", "value": "2009-12-11T05:23:26.080691"}, "subjects": ["Congresses", "Stainless Steel", "Steel, Stainless", "Stainless steel"], "latest_revision": 4, "key": "/works/OL11793108W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5025905A"}}], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL1179312W 3 2012-11-23T11:17:46.542211 {"title": "Funeral: or, grief a-la-mode", "created": {"type": "/type/datetime", "value": "2009-12-09T20:39:39.032069"}, "last_modified": {"type": "/type/datetime", "value": "2012-11-23T11:17:46.542211"}, "latest_revision": 3, "key": "/works/OL1179312W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL119161A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11793238W 3 2010-04-28T07:24:33.363748 {"title": "Das Ticken der Steine", "created": {"type": "/type/datetime", "value": "2009-12-11T05:23:26.080691"}, "covers": [4873954], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:24:33.363748"}, "latest_revision": 3, "key": "/works/OL11793238W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5026002A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1179329W 2 2010-01-21T10:59:39.571023 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:39:39.032069"}, "title": "The law of war and peace in Islam", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T10:59:39.571023"}, "latest_revision": 2, "key": "/works/OL1179329W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL119162A"}}], "type": {"key": "/type/work"}, "subjects": ["Islamic law", "Jihad", "International law"], "revision": 2}
+/type/work /works/OL1179336W 2 2010-01-21T10:59:39.571023 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:39:39.032069"}, "title": "The Gulf war", "subject_places": ["Iraq", "Iran"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T10:59:39.571023"}, "latest_revision": 2, "key": "/works/OL1179336W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL119162A"}}], "type": {"key": "/type/work"}, "subjects": ["Relations", "Iran-Iraq War, 1980-1988"], "revision": 2}
+/type/work /works/OL11793711W 2 2010-01-21T10:59:39.571023 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:23:33.657395"}, "title": "Xian dai Han yu yu fa", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T10:59:39.571023"}, "latest_revision": 2, "key": "/works/OL11793711W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5026315A"}}], "type": {"key": "/type/work"}, "subjects": ["Grammar", "Chinese language"], "revision": 2}
+/type/work /works/OL11793754W 2 2010-01-21T10:59:39.571023 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:23:33.657395"}, "title": "Shui chan dong wu ming jiao", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T10:59:39.571023"}, "latest_revision": 2, "key": "/works/OL11793754W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5026337A"}}], "type": {"key": "/type/work"}, "subjects": ["Fishery products", "Gelatin"], "revision": 2}
+/type/work /works/OL11793832W 1 2009-12-11T05:23:33.657395 {"title": "Ta topia te\u0304s Philome\u0304las", "created": {"type": "/type/datetime", "value": "2009-12-11T05:23:33.657395"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:23:33.657395"}, "latest_revision": 1, "key": "/works/OL11793832W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5026393A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11793939W 1 2009-12-11T05:23:33.657395 {"title": "Hamlet, 1859", "created": {"type": "/type/datetime", "value": "2009-12-11T05:23:33.657395"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:23:33.657395"}, "latest_revision": 1, "key": "/works/OL11793939W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5026459A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11794166W 1 2009-12-11T05:23:33.657395 {"title": "Ben teng di ma ti", "created": {"type": "/type/datetime", "value": "2009-12-11T05:23:33.657395"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:23:33.657395"}, "latest_revision": 1, "key": "/works/OL11794166W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5026602A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11794736W 2 2010-01-21T11:04:21.271878 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:23:41.652539"}, "title": "San min zhu yi jiao yu yan jiu", "subject_places": ["Taiwan"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T11:04:21.271878"}, "latest_revision": 2, "key": "/works/OL11794736W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5027011A"}}], "type": {"key": "/type/work"}, "subjects": ["Education"], "revision": 2}
+/type/work /works/OL11794753W 2 2010-01-21T11:04:21.271878 {"title": "\"Zi ben lun\" qian shuo", "created": {"type": "/type/datetime", "value": "2009-12-11T05:23:41.652539"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T11:04:21.271878"}, "latest_revision": 2, "key": "/works/OL11794753W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5027025A"}}], "subject_people": ["Karl Marx (1818-1883)"], "type": {"key": "/type/work"}, "subjects": ["Economics", "Capital"], "revision": 2}
+/type/work /works/OL11794959W 2 2010-01-21T11:04:21.271878 {"title": "Si shi er guo yuan l\u00fc", "created": {"type": "/type/datetime", "value": "2009-12-11T05:23:41.652539"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T11:04:21.271878"}, "latest_revision": 2, "key": "/works/OL11794959W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5027182A"}}], "subject_people": ["Changben Chen (1935-)"], "type": {"key": "/type/work"}, "subjects": ["Journeys"], "revision": 2}
+/type/work /works/OL11794993W 2 2010-01-21T11:04:21.271878 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:23:41.652539"}, "title": "The role of acoustic processing in speech understanding systems", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T11:04:21.271878"}, "latest_revision": 2, "key": "/works/OL11794993W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5027188A"}}], "type": {"key": "/type/work"}, "subjects": ["Speech processing systems", "Automatic speech recognition"], "revision": 2}
+/type/work /works/OL11795031W 2 2010-01-21T11:04:21.271878 {"title": "Shiki karon no hatten to keish\u014d", "created": {"type": "/type/datetime", "value": "2009-12-11T05:23:41.652539"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T11:04:21.271878"}, "latest_revision": 2, "key": "/works/OL11795031W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5027218A"}}], "subject_people": ["Shiki Masaoka (1867-1902)"], "type": {"key": "/type/work"}, "subjects": ["Waka", "Literature", "Influence", "Knowledge", "History and criticism"], "revision": 2}
+/type/work /works/OL11795205W 2 2010-01-21T11:09:51.229381 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:23:41.652539"}, "title": "Jiao cheng xiang si yu", "subject_places": ["Kao-hsiung hsien (Taiwan)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T11:09:51.229381"}, "latest_revision": 2, "key": "/works/OL11795205W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5027342A"}}], "type": {"key": "/type/work"}, "subjects": ["Description and travel"], "revision": 2}
+/type/work /works/OL11795326W 3 2010-12-03T16:03:40.843667 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:23:41.652539"}, "subject_places": ["China"], "subjects": ["Democratic centralism", "Discipline", "Zhongguo gong chan dang"], "latest_revision": 3, "key": "/works/OL11795326W", "title": "Min zhu, ji zhong, ji lu\u0308", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5027440A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T16:03:40.843667"}, "revision": 3}
+/type/work /works/OL11795577W 1 2009-12-11T05:23:41.652539 {"title": "Ye ju ji", "created": {"type": "/type/datetime", "value": "2009-12-11T05:23:41.652539"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:23:41.652539"}, "latest_revision": 1, "key": "/works/OL11795577W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5027618A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11795753W 2 2010-01-21T11:09:51.229381 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:23:49.119286"}, "title": "Xuan yun", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T11:09:51.229381"}, "latest_revision": 2, "key": "/works/OL11795753W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5027736A"}}], "type": {"key": "/type/work"}, "subjects": ["Vertigo"], "revision": 2}
+/type/work /works/OL11795800W 2 2010-01-21T11:09:51.229381 {"title": "Luo Qimin zui xin shi nei tou shi tu biao xian ji fa =", "created": {"type": "/type/datetime", "value": "2009-12-11T05:23:49.119286"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T11:09:51.229381"}, "latest_revision": 2, "key": "/works/OL11795800W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5027761A"}}], "subject_people": ["Qimin Luo"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11795858W 3 2010-12-03T23:22:55.966101 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:23:49.119286"}, "subject_places": ["Yangtze River (China)"], "subjects": ["Description and travel", "Pictorial works"], "latest_revision": 3, "key": "/works/OL11795858W", "title": "Er shi shi ji san shi nian dai Chang Jiang ming sheng", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5027803A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T23:22:55.966101"}, "revision": 3}
+/type/work /works/OL1179610W 4 2011-07-22T16:01:28.679831 {"last_modified": {"type": "/type/datetime", "value": "2011-07-22T16:01:28.679831"}, "title": "It need not have happened", "created": {"type": "/type/datetime", "value": "2009-12-09T20:39:39.032069"}, "subjects": ["Federal government", "Arbitration, International", "Sanctions (International law)", "League of Nations", "International Arbitration", "Arbitration (International law)"], "latest_revision": 4, "key": "/works/OL1179610W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL119197A"}}], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL11796461W 3 2010-12-03T16:03:11.308621 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:23:49.119286"}, "subject_places": ["Japan", "K\u014dbe-shi"], "subjects": ["College teachers", "Faculty", "Interviews", "K\u014dbe Daigaku"], "latest_revision": 3, "key": "/works/OL11796461W", "title": "Sugao no daigaku kyo\u0304shitachi", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5028226A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T16:03:11.308621"}, "revision": 3}
+/type/work /works/OL11796473W 2 2010-01-21T11:14:35.240550 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:23:49.119286"}, "title": "Min shi su song fa gai yao", "subject_places": ["Taiwan"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T11:14:35.240550"}, "latest_revision": 2, "key": "/works/OL11796473W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5028235A"}}], "type": {"key": "/type/work"}, "subjects": ["Civil procedure"], "revision": 2}
+/type/work /works/OL11796633W 3 2020-11-03T06:34:08.841785 {"last_modified": {"type": "/type/datetime", "value": "2020-11-03T06:34:08.841785"}, "title": "Zhongguo jin shu xue hui di 1 ci jin shu pi lao xue shu hui yi lun wen ji", "created": {"type": "/type/datetime", "value": "2009-12-11T05:23:49.119286"}, "subjects": ["Congresses", "Metals", "Fatique", "Fatigue"], "latest_revision": 3, "key": "/works/OL11796633W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5028343A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11796739W 2 2010-01-21T11:14:35.240550 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:23:56.879832"}, "title": "Chang zhang gong zuo chu tan", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T11:14:35.240550"}, "latest_revision": 2, "key": "/works/OL11796739W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5028415A"}}], "type": {"key": "/type/work"}, "subjects": ["Factory management"], "revision": 2}
+/type/work /works/OL11796964W 2 2010-01-21T11:14:35.240550 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:23:56.879832"}, "title": "Hua hai zi", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T11:14:35.240550"}, "latest_revision": 2, "key": "/works/OL11796964W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5028575A"}}], "type": {"key": "/type/work"}, "subjects": ["Children's literature, Chinese"], "revision": 2}
+/type/work /works/OL11797145W 2 2010-01-21T11:14:35.240550 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:23:56.879832"}, "title": "Saishin tsu\u0304shin ko\u0304tsu\u0304 chizusho =", "subject_places": ["Japan"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T11:14:35.240550"}, "latest_revision": 2, "key": "/works/OL11797145W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5028694A"}}], "type": {"key": "/type/work"}, "subjects": ["Maps", "Telecommunication"], "revision": 2}
+/type/work /works/OL11797189W 1 2009-12-11T05:23:56.879832 {"title": "Xue lian ou", "created": {"type": "/type/datetime", "value": "2009-12-11T05:23:56.879832"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:23:56.879832"}, "latest_revision": 1, "key": "/works/OL11797189W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5028720A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11797659W 2 2010-01-21T11:19:01.917620 {"title": "Wang Naizhuang hua ji", "created": {"type": "/type/datetime", "value": "2009-12-11T05:23:56.879832"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T11:19:01.917620"}, "latest_revision": 2, "key": "/works/OL11797659W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5029041A"}}], "subject_people": ["Naizhuang Wang (1929-)"], "type": {"key": "/type/work"}, "subjects": ["Birds in art", "Flowers in art"], "revision": 2}
+/type/work /works/OL11798035W 2 2010-01-21T11:19:01.917620 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:24:06.662787"}, "title": "Ban kuai gou zao xue ji chu", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T11:19:01.917620"}, "latest_revision": 2, "key": "/works/OL11798035W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5029328A"}}], "type": {"key": "/type/work"}, "subjects": ["Plate tectonics"], "revision": 2}
+/type/work /works/OL11798120W 3 2010-12-03T16:02:32.897644 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T16:02:32.897644"}, "title": "Jian jue shi xian dang di san xiang ji ben yao jiu", "created": {"type": "/type/datetime", "value": "2009-12-11T05:24:06.662787"}, "subjects": ["Discipline", "Zhongguo gong chan dang"], "latest_revision": 3, "key": "/works/OL11798120W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5029389A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11798404W 2 2010-01-21T11:19:01.917620 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:24:06.662787"}, "title": "Ikka hakuju sango zenwa", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T11:19:01.917620"}, "latest_revision": 2, "key": "/works/OL11798404W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5029579A"}}], "type": {"key": "/type/work"}, "subjects": ["Doctrines", "Zen Buddhism"], "revision": 2}
+/type/work /works/OL11798818W 2 2010-01-21T11:24:58.346281 {"title": "Du Fu Longyou shi zhu xi", "created": {"type": "/type/datetime", "value": "2009-12-11T05:24:17.514068"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T11:24:58.346281"}, "latest_revision": 2, "key": "/works/OL11798818W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5029840A"}}], "subject_people": ["Fu Du (712-770)"], "type": {"key": "/type/work"}, "subjects": ["Criticism and interpretation"], "revision": 2}
+/type/work /works/OL11798823W 2 2010-01-21T11:24:58.346281 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:24:17.514068"}, "title": "Xi fang wen lun bian xi", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T11:24:58.346281"}, "latest_revision": 2, "key": "/works/OL11798823W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5029846A"}}], "type": {"key": "/type/work"}, "subjects": ["History and criticism", "Theory", "European literature"], "revision": 2}
+/type/work /works/OL11799293W 1 2009-12-11T05:24:17.514068 {"title": "Sa nian cun gao", "created": {"type": "/type/datetime", "value": "2009-12-11T05:24:17.514068"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:24:17.514068"}, "latest_revision": 1, "key": "/works/OL11799293W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5030153A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11799296W 2 2010-01-21T11:24:58.346281 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:24:17.514068"}, "title": "Zhu Hongxi Han yu lun ji", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T11:24:58.346281"}, "latest_revision": 2, "key": "/works/OL11799296W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5030154A"}}], "type": {"key": "/type/work"}, "subjects": ["Chinese language", "Semantics"], "revision": 2}
+/type/work /works/OL11799430W 2 2010-01-21T11:24:58.346281 {"title": "\u00dcber den Gottmenschen", "created": {"type": "/type/datetime", "value": "2009-12-11T05:24:17.514068"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T11:24:58.346281"}, "latest_revision": 2, "key": "/works/OL11799430W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5030246A"}}], "subject_people": ["Jesus Christ"], "type": {"key": "/type/work"}, "subjects": ["Person and offices", "Hypostatic union"], "revision": 2}
+/type/work /works/OL11799504W 3 2010-12-03T16:03:11.308621 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T16:03:11.308621"}, "title": "Nong ye qi xiang tong ji", "created": {"type": "/type/datetime", "value": "2009-12-11T05:24:17.514068"}, "subjects": ["Agricultural Meteorology", "Meteorology, Agricultural", "Statistical methods"], "latest_revision": 3, "key": "/works/OL11799504W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5030295A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11800231W 2 2010-01-21T11:29:34.220551 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:24:25.858094"}, "title": "Zhong xiao xue sheng Zhongguo gu dian wen xue shou ce", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T11:29:34.220551"}, "latest_revision": 2, "key": "/works/OL11800231W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5030792A"}}], "type": {"key": "/type/work"}, "subjects": ["Chinese literature", "History and criticism"], "revision": 2}
+/type/work /works/OL11800414W 3 2010-04-28T07:24:33.363748 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:24:25.858094"}, "title": "Zhuge Wuhou de su yang yu zhan lue", "covers": [5518168], "subject_places": ["China"], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:24:33.363748"}, "latest_revision": 3, "key": "/works/OL11800414W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5030905A"}}], "subject_people": ["Liang Zhuge (181-234)"], "type": {"key": "/type/work"}, "subjects": ["Biography", "Statesmen"], "revision": 3}
+/type/work /works/OL11800430W 3 2020-11-05T06:48:47.899554 {"last_modified": {"type": "/type/datetime", "value": "2020-11-05T06:48:47.899554"}, "title": "10 fen zhong ying yang zao can", "created": {"type": "/type/datetime", "value": "2009-12-11T05:24:25.858094"}, "subjects": ["Breakfasts", "Cookery", "Cooking"], "latest_revision": 3, "key": "/works/OL11800430W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5030916A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11801070W 2 2010-01-21T11:34:14.566907 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:24:33.116364"}, "title": "Bunka no kento\u0304", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T11:34:14.566907"}, "latest_revision": 2, "key": "/works/OL11801070W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5031353A"}}], "type": {"key": "/type/work"}, "subjects": ["Civilization", "Philosophy"], "revision": 2}
+/type/work /works/OL11801366W 3 2010-12-03T16:05:12.536831 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:24:33.116364"}, "subject_places": ["Japan"], "subjects": ["Directories", "Diretories", "Japan", "Japan. Teikoku Gikai. Sh\u016bgiin", "Political parties"], "latest_revision": 3, "key": "/works/OL11801366W", "title": "Shu\u0304giin giin to\u0304sekiroku", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5031551A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T16:05:12.536831"}, "revision": 3}
+/type/work /works/OL11801827W 2 2010-01-21T11:39:40.324328 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:24:41.790229"}, "title": "Kiso jiko\u0304 ko\u0304zo\u0304 kino\u0304", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T11:39:40.324328"}, "latest_revision": 2, "key": "/works/OL11801827W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5031885A"}}], "type": {"key": "/type/work"}, "subjects": ["Automobiles", "Maintenance and repair", "Design and construction"], "revision": 2}
+/type/work /works/OL11801950W 3 2020-11-13T15:17:35.718993 {"last_modified": {"type": "/type/datetime", "value": "2020-11-13T15:17:35.718993"}, "title": "Zhu zuo quan fa lun wen ji", "created": {"type": "/type/datetime", "value": "2009-12-11T05:24:41.790229"}, "subjects": ["Copyright"], "latest_revision": 3, "key": "/works/OL11801950W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5031979A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11802048W 4 2020-02-10T23:11:29.124557 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:24:41.790229"}, "subject_places": ["Japan"], "subjects": ["Agriculture", "Agriculture and state", "Economic aspects", "Economic aspects of Agriculture", "Farm management"], "latest_revision": 4, "key": "/works/OL11802048W", "title": "Sato\u0304 Nobuhiro-o\u0304 kagaku taiyo\u0304", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL6898187A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-02-10T23:11:29.124557"}, "revision": 4}
+/type/work /works/OL11802123W 1 2009-12-11T05:24:41.790229 {"title": "Suzuki Mosabur\u014d sensh\u016b", "created": {"type": "/type/datetime", "value": "2009-12-11T05:24:41.790229"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:24:41.790229"}, "latest_revision": 1, "key": "/works/OL11802123W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5032116A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11802545W 1 2009-12-11T05:24:41.790229 {"title": "Wp\u0142yw niekto\u0301rych czynniko\u0301w chemicznych, fizykochemicznych i krysta\u0142ochemicznych na wielkos\u0301c\u0301 wspo\u0301\u0142czynniko\u0301w wspo\u0301\u0142krystalizacji D2/1 s\u0301ladowych ilos\u0301ci jono\u0301w metali podczas krystalizacji wybranych soli z roztworo\u0301w wodnych", "created": {"type": "/type/datetime", "value": "2009-12-11T05:24:41.790229"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:24:41.790229"}, "latest_revision": 1, "key": "/works/OL11802545W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5032455A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11802617W 4 2020-12-13T18:24:11.730984 {"subject_places": ["Netherlands"], "subjects": ["Encyclopedias", "Gay men", "Homosexuality, Male", "Male Homosexuality", "Male homosexuality"], "key": "/works/OL11802617W", "title": "Homo-encyclopedie van Nederland", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5032512A"}}], "type": {"key": "/type/work"}, "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T05:24:41.790229"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-13T18:24:11.730984"}}
+/type/work /works/OL11802863W 2 2010-01-21T11:44:54.714880 {"title": "Der Mensch, die Philosophie, die Geschichte", "created": {"type": "/type/datetime", "value": "2009-12-11T05:24:50.581272"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T11:44:54.714880"}, "latest_revision": 2, "key": "/works/OL11802863W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5032709A"}}], "subject_people": ["Jean-Paul Sartre (1905-1980)"], "type": {"key": "/type/work"}, "subjects": ["Existentialism", "Philosophical anthropology", "Metaphysics"], "revision": 2}
+/type/work /works/OL11803421W 3 2010-12-03T17:14:58.232118 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T17:14:58.232118"}, "latest_revision": 3, "key": "/works/OL11803421W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5033144A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T05:24:50.581272"}, "title": "L' Espagne", "subject_places": ["Spain"], "subjects": ["Democratization", "European Economic Community", "History", "Politics and government"], "subject_times": ["1939-1975", "1975-1982", "1982-", "20th century"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11803517W 2 2020-12-19T11:49:06.586546 {"title": "Laws relating to financial services", "key": "/works/OL11803517W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5033221A"}}], "type": {"key": "/type/work"}, "subjects": ["Financial services industry", "Law and legislation"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T05:24:50.581272"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-19T11:49:06.586546"}}
+/type/work /works/OL1180360W 2 2010-01-21T11:44:54.714880 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:39:49.924137"}, "title": "Foundations of psychology", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T11:44:54.714880"}, "latest_revision": 2, "key": "/works/OL1180360W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL119312A"}}], "subject_times": ["1965-"], "type": {"key": "/type/work"}, "subjects": ["Psychology"], "revision": 2}
+/type/work /works/OL11803626W 4 2020-12-23T15:55:31.285357 {"title": "Direito privado romano", "key": "/works/OL11803626W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5033309A"}}], "type": {"key": "/type/work"}, "subjects": ["Roman law", "Domestic relations (Roman law)"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T05:24:50.581272"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-23T15:55:31.285357"}}
+/type/work /works/OL11803800W 3 2010-12-03T16:05:12.536831 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:24:59.526914"}, "subject_places": ["Belgium"], "subjects": ["Hidden children (Holocaust)", "Holocaust, Jewish (1939-1945)", "Jewish children", "Jewish children in the Holocaust", "Jews", "Psychological aspects", "Psychological aspects of Holocaust, Jewish (1939-1945)", "Rescue", "World War, 1939-1945"], "latest_revision": 3, "key": "/works/OL11803800W", "title": "Schimmen met een ster", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5033455A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T16:05:12.536831"}, "revision": 3}
+/type/work /works/OL1180404W 2 2010-01-21T11:51:28.030590 {"title": "Oito d\u00e9cadas", "created": {"type": "/type/datetime", "value": "2009-12-09T20:39:49.924137"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T11:51:28.030590"}, "latest_revision": 2, "key": "/works/OL1180404W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL119328A"}}], "subject_people": ["Carolina Nabuco"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11804250W 4 2012-05-18T19:07:59.588134 {"last_modified": {"type": "/type/datetime", "value": "2012-05-18T19:07:59.588134"}, "title": "Bedrooms from around the world", "created": {"type": "/type/datetime", "value": "2009-12-11T05:24:59.526914"}, "subjects": ["Interior decoration", "Bedrooms"], "latest_revision": 4, "key": "/works/OL11804250W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5033787A"}}], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL1180458W 3 2010-03-14T08:22:25.134902 {"subtitle": "Cantate [f\u00fcr] M\u00e4nnerchor und Orchester [von] Igor Strawinsky. Russischer Text: K. Balmont. Franz\u00f6sischer Text: M.D. Calvocoressi.", "created": {"type": "/type/datetime", "value": "2009-12-09T20:39:49.924137"}, "title": "Le roi des \u00e9toiles", "last_modified": {"type": "/type/datetime", "value": "2010-03-14T08:22:25.134902"}, "latest_revision": 3, "key": "/works/OL1180458W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL119330A"}}], "type": {"key": "/type/work"}, "subjects": ["Cantatas, Sacred (Men's voices)", "Scores"], "revision": 3}
+/type/work /works/OL11804749W 2 2010-01-21T11:51:28.030590 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:25:07.538393"}, "title": "Kajo\u0306n munhangnon", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T11:51:28.030590"}, "latest_revision": 2, "key": "/works/OL11804749W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5034157A"}}], "subject_times": ["To 1900"], "type": {"key": "/type/work"}, "subjects": ["History and criticism", "Korean fiction", "Chinese fiction", "Personification in literature"], "revision": 2}
+/type/work /works/OL11804886W 2 2010-01-21T11:51:28.030590 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:25:07.538393"}, "title": "Patterns of social interaction in a racially and economically integrated residential setting", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T11:51:28.030590"}, "latest_revision": 2, "key": "/works/OL11804886W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5034254A"}}], "type": {"key": "/type/work"}, "subjects": ["Discrimination in housing", "Housing", "African Americans", "Social interaction"], "revision": 2}
+/type/work /works/OL11805280W 2 2010-01-21T11:56:16.250826 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:25:07.538393"}, "title": "Leben ohne Arbeit?", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T11:56:16.250826"}, "latest_revision": 2, "key": "/works/OL11805280W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5034551A"}}], "type": {"key": "/type/work"}, "subjects": ["Unemployed", "Church work with the unemployed", "Psychology", "Pastoral theology"], "revision": 2}
+/type/work /works/OL11805429W 2 2010-01-21T11:56:16.250826 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:25:07.538393"}, "title": "al- Jumh\u016br\u012byah al-\u02bbArab\u012byah al-Mutta\u1e25idah", "subject_places": ["Egypt"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T11:56:16.250826"}, "latest_revision": 2, "key": "/works/OL11805429W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5034659A"}}], "type": {"key": "/type/work"}, "subjects": ["Description and travel", "Views"], "revision": 2}
+/type/work /works/OL11805732W 1 2009-12-11T05:25:15.158421 {"title": "Saint-Yves d'Alveydre", "created": {"type": "/type/datetime", "value": "2009-12-11T05:25:15.158421"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:25:15.158421"}, "latest_revision": 1, "key": "/works/OL11805732W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5034850A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11805999W 3 2010-12-03T16:06:50.950027 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:25:15.158421"}, "subject_places": ["Brazil"], "subjects": ["Congresses", "Economic conditions", "Ethnic relations", "Government relations", "Human rights", "Indian reservations", "Indians of South America", "Indians, Treatment of", "Social conditions", "Treatment of Indians"], "latest_revision": 3, "key": "/works/OL11805999W", "title": "VIII Caravana Nacional de Direitos Humanos", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5035034A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T16:06:50.950027"}, "revision": 3}
+/type/work /works/OL11806516W 3 2020-12-17T00:10:20.008920 {"title": "Pra\u0304. Ke. Vi. Belasare (Pu\u0304. Ba\u0304ba\u0304) ya\u0304n\u0303ce sa\u0304dhaka\u0304mbarobara jha\u0304lele adhya\u0304tma sa\u0303va\u0304da", "key": "/works/OL11806516W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5035396A"}}], "type": {"key": "/type/work"}, "subjects": ["Hinduism", "Spiritual life"], "description": {"type": "/type/text", "value": "Conversation of a Hindu religious leader, on spiritualism, with his disciples."}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T05:25:15.158421"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-17T00:10:20.008920"}}
+/type/work /works/OL1180691W 2 2010-01-21T12:00:46.269744 {"title": "Einsamkeit, das leben der Annette von Droste-H\u00fclshoff", "created": {"type": "/type/datetime", "value": "2009-12-09T20:39:49.924137"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T12:00:46.269744"}, "latest_revision": 2, "key": "/works/OL1180691W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL119344A"}}], "subject_people": ["Annette von Droste-H\u00fclshoff (1797-1848,)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11806958W 2 2020-12-17T16:01:47.021339 {"title": "New challenges for the CBMS", "key": "/works/OL11806958W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5035714A"}}], "type": {"key": "/type/work"}, "subjects": ["Poverty", "Congresses", "Prevention", "Government policy"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T05:25:27.760292"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-17T16:01:47.021339"}}
+/type/work /works/OL11807009W 2 2020-12-17T16:30:00.258704 {"title": "Zhonghua min zu jing she lun gang", "key": "/works/OL11807009W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5035759A"}}], "type": {"key": "/type/work"}, "subjects": ["Chinese National characteristics", "Nationalism"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T05:25:27.760292"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-17T16:30:00.258704"}}
+/type/work /works/OL1180714W 2 2010-01-21T12:00:46.269744 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:39:49.924137"}, "title": "Lectures faciles pour les commen\u00e7ants", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T12:00:46.269744"}, "latest_revision": 2, "key": "/works/OL1180714W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL119345A"}}], "type": {"key": "/type/work"}, "subjects": ["French language", "Chrestomathies and readers", "Readers"], "revision": 2}
+/type/work /works/OL11807766W 3 2010-12-04T07:49:52.688001 {"last_modified": {"type": "/type/datetime", "value": "2010-12-04T07:49:52.688001"}, "title": "Pot\u0119pie\u0144cy \u015bredniowiecznej Europy", "created": {"type": "/type/datetime", "value": "2009-12-11T05:25:35.786953"}, "subjects": ["Civilization, Medieval", "Medieval Civilization", "Middle Ages"], "latest_revision": 3, "key": "/works/OL11807766W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5036296A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11808161W 3 2010-12-03T16:06:50.950027 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T16:06:50.950027"}, "title": "Bambini psico-programmati", "created": {"type": "/type/datetime", "value": "2009-12-11T05:25:35.786953"}, "subjects": ["Child psychology", "Mass media and children", "Psychological aspects", "Psychological aspects of Video games", "Television and children", "Video games"], "latest_revision": 3, "key": "/works/OL11808161W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5036575A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11808378W 2 2020-12-19T13:09:44.698997 {"title": "Katarsis perjuangan", "key": "/works/OL11808378W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5036717A"}}], "type": {"key": "/type/work"}, "description": {"type": "/type/text", "value": "Prize winning novel in the novel writing contest of Sempena Perayaan Jubli Delima Kemerdekaan Negeri Sarawak 2003."}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T05:25:35.786953"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-19T13:09:44.698997"}}
+/type/work /works/OL11808697W 1 2009-12-11T05:25:43.772508 {"title": "STONE'S JUSTICES' MANUAL, 1989", "created": {"type": "/type/datetime", "value": "2009-12-11T05:25:43.772508"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:25:43.772508"}, "latest_revision": 1, "key": "/works/OL11808697W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5036957A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11808830W 2 2010-01-21T12:09:38.866489 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:25:43.772508"}, "title": "Entwicklungshilfe zwischen V\u00f6lkerrechtsordnung und Weltwirtschaftssystem", "subject_places": ["Developing countries"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T12:09:38.866489"}, "latest_revision": 2, "key": "/works/OL11808830W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5037055A"}}], "type": {"key": "/type/work"}, "subjects": ["Economic assistance", "Economic development", "International law"], "revision": 2}
+/type/work /works/OL11808887W 2 2010-01-21T12:09:38.866489 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:25:43.772508"}, "title": "1409, fuga sulla Giara", "subject_places": ["Giara Plateau (Italy)", "Sardinia (Italy)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T12:09:38.866489"}, "latest_revision": 2, "key": "/works/OL11808887W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5037096A"}}], "subject_times": ["Aragonese and Spanish rule, 1297-1708"], "type": {"key": "/type/work"}, "subjects": ["Fiction", "History"], "revision": 2}
+/type/work /works/OL11808960W 3 2010-12-03T16:07:25.111340 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T16:07:25.111340"}, "latest_revision": 3, "key": "/works/OL11808960W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5037147A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T05:25:43.772508"}, "title": "Leopardi", "subjects": ["Authors, Italian", "Biography", "Italian Authors"], "subject_people": ["Giacomo Leopardi (1798-1837)"], "subject_times": ["19th century"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11808961W 2 2010-01-21T12:09:38.866489 {"title": "Ghysels", "created": {"type": "/type/datetime", "value": "2009-12-11T05:25:43.772508"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T12:09:38.866489"}, "latest_revision": 2, "key": "/works/OL11808961W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5037148A"}}], "subject_people": ["Jean-Pierre Ghysels"], "type": {"key": "/type/work"}, "subjects": ["Catalogs"], "revision": 2}
+/type/work /works/OL11809606W 2 2010-01-21T12:09:38.866489 {"title": "Roots in Ulster soil", "created": {"type": "/type/datetime", "value": "2009-12-11T05:25:43.772508"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T12:09:38.866489"}, "latest_revision": 2, "key": "/works/OL11809606W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5037628A"}}], "subject_people": ["Mullan family"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11809779W 2 2010-01-21T12:09:38.866489 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:25:51.231276"}, "title": "Programmplanung", "subject_places": ["Germany"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T12:09:38.866489"}, "latest_revision": 2, "key": "/works/OL11809779W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5037752A"}}], "type": {"key": "/type/work"}, "subjects": ["Planning", "Television programs"], "revision": 2}
+/type/work /works/OL11810080W 3 2010-12-03T20:48:24.275660 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T20:48:24.275660"}, "latest_revision": 3, "key": "/works/OL11810080W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5037981A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T05:25:51.231276"}, "title": "La vie de M. Henri-Marie Boudon, grand archidiacre d'Evreux", "subject_places": ["France"], "subjects": ["Biography", "Catholic Church", "Clergy"], "subject_people": ["Henri-Marie Boudon (1624-1702)"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1181039W 3 2010-07-20T15:28:08.824971 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:39:59.362642"}, "title": "Yale University Art Gallery bulletin", "last_modified": {"type": "/type/datetime", "value": "2010-07-20T15:28:08.824971"}, "latest_revision": 3, "key": "/works/OL1181039W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL119369A"}}], "type": {"key": "/type/work"}, "subjects": ["Catalogs", "Yale University. Art Gallery", "Yale University"], "revision": 3}
+/type/work /works/OL11810514W 3 2010-12-03T16:08:04.456682 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T16:08:04.456682"}, "title": "Review of uveitis", "created": {"type": "/type/datetime", "value": "2009-12-11T05:25:51.231276"}, "subjects": ["Problems and Exercises", "Problems, exercises", "Problems, exercises, etc", "Uveitis"], "latest_revision": 3, "key": "/works/OL11810514W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5038217A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11810688W 2 2010-01-21T12:14:21.453165 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:25:59.595002"}, "title": "Den Norske skoles historie", "subject_places": ["Norway"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T12:14:21.453165"}, "latest_revision": 2, "key": "/works/OL11810688W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5038344A"}}], "type": {"key": "/type/work"}, "subjects": ["Education"], "revision": 2}
+/type/work /works/OL11810869W 2 2010-01-21T12:14:21.453165 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:25:59.595002"}, "title": "Sam\u012bksh\u0101 ka vy\u0101vah\u0101rika sandarbha", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T12:14:21.453165"}, "latest_revision": 2, "key": "/works/OL11810869W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5038465A"}}], "subject_times": ["20th century"], "type": {"key": "/type/work"}, "subjects": ["Hindi literature", "History and criticism"], "revision": 2}
+/type/work /works/OL11810986W 2 2010-01-21T12:14:21.453165 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:25:59.595002"}, "title": "D\u0113motika tragoudia", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T12:14:21.453165"}, "latest_revision": 2, "key": "/works/OL11810986W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5038549A"}}], "type": {"key": "/type/work"}, "subjects": ["Folk songs, Greek (Modern)", "Texts", "History and criticism"], "revision": 2}
+/type/work /works/OL11811389W 3 2020-12-20T07:40:48.474600 {"title": "Advanced immigration solutions for small business and entrepreneurs", "subject_places": ["United States"], "key": "/works/OL11811389W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5038839A"}}], "type": {"key": "/type/work"}, "subjects": ["Popular works", "Alien labor", "United States", "Alien labor certification", "Emigration and immigration law", "Legal status, laws", "Foreign workers", "Foreign worker certification"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T05:25:59.595002"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-20T07:40:48.474600"}}
+/type/work /works/OL11811406W 1 2009-12-11T05:25:59.595002 {"title": "Eurodicautom", "created": {"type": "/type/datetime", "value": "2009-12-11T05:25:59.595002"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:25:59.595002"}, "latest_revision": 1, "key": "/works/OL11811406W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5038852A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11811617W 1 2009-12-11T05:25:59.595002 {"title": "Transport infrastructure and regional economic development in Europe", "created": {"type": "/type/datetime", "value": "2009-12-11T05:25:59.595002"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:25:59.595002"}, "latest_revision": 1, "key": "/works/OL11811617W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5039022A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11811846W 2 2010-01-21T12:18:29.558420 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:26:12.136281"}, "title": "Plainclothesmen", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T12:18:29.558420"}, "latest_revision": 2, "key": "/works/OL11811846W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5039190A"}}], "type": {"key": "/type/work"}, "subjects": ["Gambling", "Police", "Vice"], "revision": 2}
+/type/work /works/OL11811893W 1 2009-12-11T05:26:12.136281 {"title": "St Columba", "created": {"type": "/type/datetime", "value": "2009-12-11T05:26:12.136281"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:26:12.136281"}, "latest_revision": 1, "key": "/works/OL11811893W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5039225A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11811915W 2 2010-01-21T12:18:29.558420 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:26:12.136281"}, "title": "Improving soil fertility in Africa", "subject_places": ["Africa"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T12:18:29.558420"}, "latest_revision": 2, "key": "/works/OL11811915W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5039241A"}}], "type": {"key": "/type/work"}, "subjects": ["Congresses", "Soils", "Soil fertility"], "revision": 2}
+/type/work /works/OL11811933W 1 2009-12-11T05:26:12.136281 {"title": "Abhi\u015bpata", "created": {"type": "/type/datetime", "value": "2009-12-11T05:26:12.136281"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:26:12.136281"}, "latest_revision": 1, "key": "/works/OL11811933W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5039252A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11812247W 2 2010-01-21T12:18:29.558420 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:26:12.136281"}, "title": "Organizational challenges for an effective aid architecture", "subject_places": ["Developing countries"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T12:18:29.558420"}, "latest_revision": 2, "key": "/works/OL11812247W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5039423A"}}], "type": {"key": "/type/work"}, "subjects": ["Economic assistance", "Economic development"], "revision": 2}
+/type/work /works/OL11812584W 1 2009-12-11T05:26:12.136281 {"title": "Big 3 or big 2 1/2?", "created": {"type": "/type/datetime", "value": "2009-12-11T05:26:12.136281"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:26:12.136281"}, "latest_revision": 1, "key": "/works/OL11812584W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5039670A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11813012W 2 2010-01-21T12:22:57.427595 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:26:19.139459"}, "title": "Degree of foot abduction as a factor in performance of the vertical jump in children, ages 6-13", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T12:22:57.427595"}, "latest_revision": 2, "key": "/works/OL11813012W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5039943A"}}], "type": {"key": "/type/work"}, "subjects": ["Jumping"], "revision": 2}
+/type/work /works/OL11813282W 1 2009-12-11T05:26:19.139459 {"title": "O orgismenos valkanios", "created": {"type": "/type/datetime", "value": "2009-12-11T05:26:19.139459"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:26:19.139459"}, "latest_revision": 1, "key": "/works/OL11813282W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5040133A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11813287W 5 2023-01-10T17:31:30.264488 {"subjects": ["Child psychology", "Pediatric neurology", "Psychological tests for children", "Neuropsychology", "Diagnosis", "Observation (Psychology)", "Pediatric neuropsychology", "Minimal brain dysfunction in children", "Attention Deficit Disorder with Hyperactivity", "Child", "Child Behavior", "Nervous System Diseases"], "key": "/works/OL11813287W", "title": "A neurobehavioural study in pre-school children", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5040139A"}}], "type": {"key": "/type/work"}, "covers": [5341844], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2009-12-11T05:26:19.139459"}, "last_modified": {"type": "/type/datetime", "value": "2023-01-10T17:31:30.264488"}}
+/type/work /works/OL11813669W 1 2009-12-11T05:26:19.139459 {"title": "Pirna-Sonnenstein", "created": {"type": "/type/datetime", "value": "2009-12-11T05:26:19.139459"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:26:19.139459"}, "latest_revision": 1, "key": "/works/OL11813669W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5040384A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11813906W 2 2010-01-21T12:22:57.427595 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:26:27.082594"}, "title": "Informations- und Entscheidungsmanagement in der Kreislaufwirtschaft", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T12:22:57.427595"}, "latest_revision": 2, "key": "/works/OL11813906W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5040557A"}}], "type": {"key": "/type/work"}, "subjects": ["Entscheidungsunterstutzung", "Informationsmanagement", "Kreislaufwirtschaft"], "revision": 2}
+/type/work /works/OL11813932W 2 2010-01-21T12:22:57.427595 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:26:27.082594"}, "title": "Voennai\ufe20a\ufe21 topografii\ufe20a\ufe21dli\ufe20a\ufe21 kursantov uchebnykh podrazdelenii\u0306", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T12:22:57.427595"}, "latest_revision": 2, "key": "/works/OL11813932W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5040576A"}}], "type": {"key": "/type/work"}, "subjects": ["Military topography"], "revision": 2}
+/type/work /works/OL11813968W 3 2023-01-06T10:52:17.465680 {"title": "Present concepts of rehabilitation in tuberculosis", "key": "/works/OL11813968W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5040604A"}}], "type": {"key": "/type/work"}, "subjects": ["Rehabilitation", "Tuberculosis", "People with disabilities"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T05:26:27.082594"}, "last_modified": {"type": "/type/datetime", "value": "2023-01-06T10:52:17.465680"}}
+/type/work /works/OL11814138W 2 2010-01-21T12:27:29.854046 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:26:27.082594"}, "title": "List do Grzegorza Przemyka", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T12:27:29.854046"}, "latest_revision": 2, "key": "/works/OL11814138W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5040726A"}}], "subject_times": ["1970-"], "type": {"key": "/type/work"}, "subjects": ["Polish poetry,"], "revision": 2}
+/type/work /works/OL11814259W 2 2010-01-21T12:27:29.854046 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:26:27.082594"}, "title": "Trouble-free windows, doors and skylights", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T12:27:29.854046"}, "latest_revision": 2, "key": "/works/OL11814259W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5040801A"}}], "type": {"key": "/type/work"}, "subjects": ["Handbooks, manuals", "Windows", "Doors", "Skylights"], "revision": 2}
+/type/work /works/OL11814313W 3 2020-12-13T18:01:59.166057 {"title": "Strakhovanie", "subject_places": ["Russia (Federation)"], "key": "/works/OL11814313W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5040845A"}}], "type": {"key": "/type/work"}, "subjects": ["Insurance law", "Insurance"], "description": {"type": "/type/text", "value": "Legal manual on the insurance industry, with emphasis on insurance contracts."}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T05:26:27.082594"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-13T18:01:59.166057"}}
+/type/work /works/OL11814783W 2 2010-01-21T12:27:29.854046 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:26:35.011256"}, "title": "Lay predictions of others' behavior", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T12:27:29.854046"}, "latest_revision": 2, "key": "/works/OL11814783W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5041148A"}}], "type": {"key": "/type/work"}, "subjects": ["Human behavior", "Behaviorism (Psychology)"], "revision": 2}
+/type/work /works/OL11815596W 1 2009-12-11T05:26:35.011256 {"title": "Immunocytochemical and T cell receptor gene rearrangement studies in the characterisation of large atypical CD 30 positive cells in lymphomatoid papulosis", "created": {"type": "/type/datetime", "value": "2009-12-11T05:26:35.011256"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:26:35.011256"}, "latest_revision": 1, "key": "/works/OL11815596W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5041726A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11815907W 2 2010-01-21T12:32:01.237222 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:26:42.718010"}, "title": "Caza mayor y acua\u0301tica", "subject_places": ["Spain"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T12:32:01.237222"}, "latest_revision": 2, "key": "/works/OL11815907W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5041965A"}}], "type": {"key": "/type/work"}, "subjects": ["Big game hunting", "Waterfowl", "Hunting"], "revision": 2}
+/type/work /works/OL11816082W 2 2010-01-21T12:32:01.237222 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:26:42.718010"}, "title": "Old Indian trails", "subject_places": ["Alberta", "British Columbia", "Canadian Rockies (B.C. and Alta.)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T12:32:01.237222"}, "latest_revision": 2, "key": "/works/OL11816082W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5042081A"}}], "subject_times": ["1906-1950", "1901-1950"], "type": {"key": "/type/work"}, "subjects": ["Description and travel"], "revision": 2}
+/type/work /works/OL1181640W 3 2020-09-19T04:52:22.500433 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:39:59.362642"}, "subjects": ["Physics", "Philosophy"], "latest_revision": 3, "key": "/works/OL1181640W", "title": "Physique et microphysique", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL119422A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-09-19T04:52:22.500433"}, "covers": [9725840], "revision": 3}
+/type/work /works/OL11816443W 2 2010-01-21T12:32:01.237222 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:26:42.718010"}, "title": "Pr\u00e4cina bharata ka itihasa", "subject_places": ["India"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T12:32:01.237222"}, "latest_revision": 2, "key": "/works/OL11816443W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5042323A"}}], "subject_times": ["To 324 B.C.", "324 B.C.-1000 A.D."], "type": {"key": "/type/work"}, "subjects": ["History"], "revision": 2}
+/type/work /works/OL1181645W 3 2022-07-11T07:59:11.779803 {"title": "E crivains intelligents du XXe sie cle", "key": "/works/OL1181645W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL119423A"}}], "subject_people": ["Marcel Proust (1871-1922)", "Paul Val\u00e9ry (1871-1945)", "Andr\u00e9 Gide (1869-1951)"], "type": {"key": "/type/work"}, "subjects": ["Criticism and interpretation"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-09T20:39:59.362642"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-11T07:59:11.779803"}}
+/type/work /works/OL11816502W 2 2010-01-21T12:32:01.237222 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:26:42.718010"}, "title": "Chos\u014fnjo siga \u016di iny\u014fm kwa mi \u016disik", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T12:32:01.237222"}, "latest_revision": 2, "key": "/works/OL11816502W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5042360A"}}], "subject_times": ["To 1900"], "type": {"key": "/type/work"}, "subjects": ["History and criticism", "Korean poetry", "Sijo"], "revision": 2}
+/type/work /works/OL11816645W 2 2010-01-21T12:32:01.237222 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:26:42.718010"}, "title": "German-English, English-German astronautics dictionary", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T12:32:01.237222"}, "latest_revision": 2, "key": "/works/OL11816645W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5042438A"}}], "type": {"key": "/type/work"}, "subjects": ["Dictionaries", "Astronautics", "German", "English", "German language", "English language"], "revision": 2}
+/type/work /works/OL11816845W 5 2022-12-04T02:19:57.894874 {"title": "Liverpool Daisy", "subjects": ["Fiction in English", "Fiction, historical, general", "Fiction, family life", "England, fiction"], "key": "/works/OL11816845W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL757944A"}}], "type": {"key": "/type/work"}, "covers": [13019754], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2009-12-11T05:26:50.925293"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-04T02:19:57.894874"}}
+/type/work /works/OL11817192W 1 2009-12-11T05:26:50.925293 {"title": "Pookie", "created": {"type": "/type/datetime", "value": "2009-12-11T05:26:50.925293"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:26:50.925293"}, "latest_revision": 1, "key": "/works/OL11817192W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5042847A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11817289W 3 2023-01-10T20:04:14.333335 {"title": "Cardiovascular surgery", "key": "/works/OL11817289W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5042912A"}}], "type": {"key": "/type/work"}, "subjects": ["Surgery", "Cardiovascular system", "Cardiovascular Surgical Procedures", "Malpractice", "Physicians"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T05:26:50.925293"}, "last_modified": {"type": "/type/datetime", "value": "2023-01-10T20:04:14.333335"}}
+/type/work /works/OL11817320W 3 2010-12-03T16:10:09.759122 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T16:10:09.759122"}, "title": "The development of a Minnesota multiphasic personality inventory subscale which would identify the criminal personality", "created": {"type": "/type/datetime", "value": "2009-12-11T05:26:50.925293"}, "subjects": ["Criminal behavior, Prediction of", "Minnesota Multiphasic Personality Inventory", "Prediction of Criminal behavior"], "latest_revision": 3, "key": "/works/OL11817320W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5042938A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11817468W 1 2009-12-11T05:26:50.925293 {"title": "Po severno\u012d trope", "created": {"type": "/type/datetime", "value": "2009-12-11T05:26:50.925293"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:26:50.925293"}, "latest_revision": 1, "key": "/works/OL11817468W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5043044A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11817948W 4 2020-02-28T13:18:45.592121 {"last_modified": {"type": "/type/datetime", "value": "2020-02-28T13:18:45.592121"}, "title": "Caring for Your Pet Rabbits and Guinea Pigs", "created": {"type": "/type/datetime", "value": "2009-12-11T05:26:57.611716"}, "subjects": ["Rabbits", "Guinea pigs as pets"], "latest_revision": 4, "key": "/works/OL11817948W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5043337A"}}], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL11818281W 2 2010-01-21T12:40:51.739329 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:26:57.611716"}, "title": "Osteuropasymposium Friedensbewegung und Solidarno\u015b\u0107 - Alternativen zur Blockherrschaft?", "subject_places": ["Eastern Europe"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T12:40:51.739329"}, "latest_revision": 2, "key": "/works/OL11818281W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5043508A"}}], "subject_times": ["1945-"], "type": {"key": "/type/work"}, "subjects": ["Congresses", "Politics and government", "Peace"], "revision": 2}
+/type/work /works/OL11818322W 6 2021-10-04T14:41:58.254184 {"subject_places": ["United States"], "subjects": ["Rock musicians", "Biography", "Replacements (Musical group)", "Rock groups", "Rock musicians, biography"], "key": "/works/OL11818322W", "title": "The Replacements", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5043531A"}}], "type": {"key": "/type/work"}, "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2009-12-11T05:26:57.611716"}, "last_modified": {"type": "/type/datetime", "value": "2021-10-04T14:41:58.254184"}}
+/type/work /works/OL11818526W 4 2022-11-17T11:14:38.927690 {"subjects": ["Literary forgeries and mystifications", "Modernism (literature)", "Australia, intellectual life"], "subject_people": ["James McAuley (1917-)", "Ern Malley", "Harold Stewart (1916-)"], "key": "/works/OL11818526W", "title": "The Ern Malley affair", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5043680A"}}], "type": {"key": "/type/work"}, "covers": [9972542], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T05:26:57.611716"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-17T11:14:38.927690"}}
+/type/work /works/OL11819289W 1 2009-12-11T05:27:06.162355 {"title": "I joined the army", "created": {"type": "/type/datetime", "value": "2009-12-11T05:27:06.162355"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:27:06.162355"}, "latest_revision": 1, "key": "/works/OL11819289W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5044242A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11819317W 3 2010-12-03T16:11:39.549871 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T16:11:39.549871"}, "title": "Vorlesungen \u00fcber die pathologische Anatomie des R\u00fcckenmarks", "created": {"type": "/type/datetime", "value": "2009-12-11T05:27:06.162355"}, "subjects": ["Anatomy, Pathological", "Diseases", "Pathological Anatomy", "Spinal cord"], "latest_revision": 3, "key": "/works/OL11819317W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5044256A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1181934W 2 2010-01-21T12:40:51.739329 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:39:59.362642"}, "title": "Rank and potlatch among the Haida", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T12:40:51.739329"}, "latest_revision": 2, "key": "/works/OL1181934W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL119439A"}}], "type": {"key": "/type/work"}, "subjects": ["Social life and customs", "Haida Indians"], "revision": 2}
+/type/work /works/OL11819535W 1 2009-12-11T05:27:06.162355 {"title": "Combinatorics and geometry of higher level Weyl modules", "created": {"type": "/type/datetime", "value": "2009-12-11T05:27:06.162355"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:27:06.162355"}, "latest_revision": 1, "key": "/works/OL11819535W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5044410A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1181983W 1 2009-12-09T20:40:09.647556 {"title": "Histoire des doctrines e conomiques", "created": {"type": "/type/datetime", "value": "2009-12-09T20:40:09.647556"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T20:40:09.647556"}, "latest_revision": 1, "key": "/works/OL1181983W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL119448A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11819978W 2 2010-01-21T12:46:27.748513 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:27:14.360817"}, "title": "Strategic plan 1994-1996", "subject_places": ["Dublin", "Ireland"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T12:46:27.748513"}, "latest_revision": 2, "key": "/works/OL11819978W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5044724A"}}], "type": {"key": "/type/work"}, "subjects": ["Regional planning"], "revision": 2}
+/type/work /works/OL11819990W 3 2010-12-03T16:11:39.549871 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T16:11:39.549871"}, "title": "Dialogue in medicine and theology", "created": {"type": "/type/datetime", "value": "2009-12-11T05:27:14.360817"}, "subjects": ["Christianity", "Medicine", "Religious aspects", "Religious aspects of Medicine"], "latest_revision": 3, "key": "/works/OL11819990W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5044732A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11820353W 2 2010-01-21T12:46:27.748513 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:27:14.360817"}, "title": "The history of literature", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T12:46:27.748513"}, "latest_revision": 2, "key": "/works/OL11820353W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5045000A"}}], "type": {"key": "/type/work"}, "subjects": ["Literature", "Language and languages", "History and criticism"], "revision": 2}
+/type/work /works/OL11820376W 1 2009-12-11T05:27:14.360817 {"title": "La mondialisation de l'e\u0301conomie", "created": {"type": "/type/datetime", "value": "2009-12-11T05:27:14.360817"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:27:14.360817"}, "latest_revision": 1, "key": "/works/OL11820376W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5045019A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1182063W 2 2010-01-21T12:46:27.748513 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:40:09.647556"}, "title": "Pre-Roman Britain", "subject_places": ["Great Britain", "England"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T12:46:27.748513"}, "latest_revision": 2, "key": "/works/OL1182063W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL119450A"}}], "subject_times": ["To 55 B.C."], "type": {"key": "/type/work"}, "subjects": ["Civilization", "Antiquities"], "revision": 2}
+/type/work /works/OL11821227W 3 2010-12-03T16:10:38.417409 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T16:10:38.417409"}, "latest_revision": 3, "key": "/works/OL11821227W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5045639A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T05:27:21.875721"}, "title": "Minguo ci qi jian ding", "subject_places": ["China"], "subjects": ["China painting", "Chinese Porcelain", "Expertising", "History", "Porcelain, Chinese"], "subject_times": ["20th century"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11821233W 2 2010-01-21T12:51:38.215482 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:27:21.875721"}, "title": "Bundelakha\u1e47\u1e0da k\u0101 s\u0101mskr\u0325tika itih\u0101sa", "subject_places": ["Bundelkhand (India)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T12:51:38.215482"}, "latest_revision": 2, "key": "/works/OL11821233W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5045644A"}}], "type": {"key": "/type/work"}, "subjects": ["Civilization"], "revision": 2}
+/type/work /works/OL11821655W 3 2010-03-10T21:09:26.421281 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:27:21.875721"}, "title": "Nefesh beri\u02bcah", "last_modified": {"type": "/type/datetime", "value": "2010-03-10T21:09:26.421281"}, "latest_revision": 3, "key": "/works/OL11821655W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5045923A"}}], "type": {"key": "/type/work"}, "subjects": ["Judaism", "Hasidism", "Psychology", "Faith (Judaism)", "Soul", "Cabala"], "revision": 3}
+/type/work /works/OL11821724W 2 2010-12-03T16:11:39.549871 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T16:11:39.549871"}, "title": "The Red Eagles", "created": {"type": "/type/datetime", "value": "2009-12-11T05:27:29.847330"}, "subjects": ["Great Britain", "Great Britain. Royal Air Force. Squadron, No.23"], "latest_revision": 2, "key": "/works/OL11821724W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5045957A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11822086W 2 2010-01-21T12:51:38.215482 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:27:29.847330"}, "title": "The teacher's role in library service", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T12:51:38.215482"}, "latest_revision": 2, "key": "/works/OL11822086W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5046217A"}}], "type": {"key": "/type/work"}, "subjects": ["School libraries", "Teachers"], "revision": 2}
+/type/work /works/OL11822274W 3 2010-12-03T16:10:38.417409 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T16:10:38.417409"}, "latest_revision": 3, "key": "/works/OL11822274W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5046362A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T05:27:29.847330"}, "title": "Krzyz\u0307 nowohucki", "subject_places": ["Krak\u00f3w", "Krak\u00f3w (Poland)", "Nowa Huta (Krak\u00f3w, Poland)", "Poland", "Poland) Nowa Huta (Krak\u00f3w"], "subjects": ["Catholic Church", "Church and state", "Church history", "Communism and Christianity", "Freedom of religion", "History"], "subject_times": ["20th century"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11822624W 2 2010-01-21T12:57:15.799461 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:27:29.847330"}, "title": "25 years of malcontent", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T12:57:15.799461"}, "latest_revision": 2, "key": "/works/OL11822624W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5046585A"}}], "subject_times": ["20th century"], "type": {"key": "/type/work"}, "subjects": ["American poetry", "Women authors", "Poetry", "Lesbians", "Lesbian poetry"], "revision": 2}
+/type/work /works/OL11822680W 5 2021-08-14T13:45:58.752785 {"key": "/works/OL11822680W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5046628A"}}], "title": "Emperors of the ice", "subject_places": ["Antarctica"], "subjects": ["British Antarctic (\"Terra Nova\") Expedition (1910-1913)", "Discovery and exploration", "Emperor penguin", "Explorers", "Fiction", "Juvenile fiction", "Penguins"], "subject_people": ["Apsley Cherry-Garrard (1886-1959)", "Edward Adrian Wilson (1872-1912)", "Edward Adrian Wilson (1874-1912)", "Robert Falcon Scott (1868-1912)"], "type": {"key": "/type/work"}, "description": {"type": "/type/text", "value": "Apsley \"Cherry\" Cherry-Garrard shares his adventures as the youngest member of Robert Scott's expedition to Antarctica in the early twentieth century, during which he and Edward Wilson try to learn the evolutionary history of emperor penguins. Includes historical notes."}, "covers": [11626203], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2009-12-11T05:27:29.847330"}, "last_modified": {"type": "/type/datetime", "value": "2021-08-14T13:45:58.752785"}}
+/type/work /works/OL11823209W 2 2020-12-17T18:49:14.840128 {"title": "The glass house", "key": "/works/OL11823209W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5046997A"}}], "type": {"key": "/type/work"}, "subjects": ["Exhibitions"], "description": {"type": "/type/text", "value": "Catalog of an exhibition of paintings of Hema Upadhyay, Indian artist, held at Grosvenor Vadehra, Art Gallery, London on May 18 - June 02, 2007; includes an article on his paintings."}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T05:27:37.292828"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-17T18:49:14.840128"}}
+/type/work /works/OL11823577W 3 2020-12-17T22:11:32.999367 {"title": "Ananta prastha\u0304nam\u0323", "subject_places": ["India", "Anantapur (District)"], "key": "/works/OL11823577W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5047214A"}}], "type": {"key": "/type/work"}, "subjects": ["Droughts", "Water resources development"], "description": {"type": "/type/text", "value": "On drought situation in Anantapur District, India; includes issues, and challenges in watershed development of the region."}, "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T05:27:37.292828"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-17T22:11:32.999367"}}
+/type/work /works/OL1182376W 2 2010-01-21T13:02:18.507588 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:40:09.647556"}, "title": "Marine algae", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T13:02:18.507588"}, "latest_revision": 2, "key": "/works/OL1182376W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL119475A"}}], "type": {"key": "/type/work"}, "subjects": ["Marine algae"], "revision": 2}
+/type/work /works/OL11823988W 2 2010-01-21T13:02:18.507588 {"title": "Descartes, premier th\u00e9oricien de la physique math\u00e9matique", "created": {"type": "/type/datetime", "value": "2009-12-11T05:27:45.609716"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T13:02:18.507588"}, "latest_revision": 2, "key": "/works/OL11823988W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5047499A"}}], "subject_people": ["Ren\u00e9 Descartes (1596-1650)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11824477W 3 2010-12-03T16:46:46.426424 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T16:46:46.426424"}, "title": "Rahasyav\u0101d\u012b parampar\u0101 aura Nira\u1e45k\u0101r\u012b santa-k\u0101vya", "created": {"type": "/type/datetime", "value": "2009-12-11T05:27:45.609716"}, "subjects": ["Hindi Religious poetry", "History and criticism", "Mysticism in literature", "Nirankaris", "Religious poetry, Hindi"], "latest_revision": 3, "key": "/works/OL11824477W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5047847A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11824846W 3 2010-04-28T07:24:33.363748 {"title": "Cosmic velocity fields", "created": {"type": "/type/datetime", "value": "2009-12-11T05:27:54.118127"}, "covers": [5342813], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:24:33.363748"}, "latest_revision": 3, "key": "/works/OL11824846W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5048134A"}}], "subjects": ["Congresses", "Cosmological distances", "Motion in line of sight", "Galaxies"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1182508W 1 2009-12-09T20:40:09.647556 {"title": "Archipie\u0301lago de mujeres", "created": {"type": "/type/datetime", "value": "2009-12-09T20:40:09.647556"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T20:40:09.647556"}, "latest_revision": 1, "key": "/works/OL1182508W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL119488A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11825124W 3 2020-08-27T03:14:31.759122 {"last_modified": {"type": "/type/datetime", "value": "2020-08-27T03:14:31.759122"}, "title": "Alana's advice--", "created": {"type": "/type/datetime", "value": "2009-12-11T05:27:54.118127"}, "subjects": ["Juvenile literature", "Cliques (Sociology)", "Interpersonal relations in adolescence", "Self-esteem in adolescence", "Friendship in adolescence", "Friendship", "Interpersonal relations", "Self-esteem", "Youth", "Friendship, juvenile literature", "Interpersonal relations, juvenile literature"], "latest_revision": 3, "key": "/works/OL11825124W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5048353A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11825370W 4 2022-02-25T23:00:29.286907 {"title": "Bloom's how to write about Oscar Wilde", "key": "/works/OL11825370W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5048535A"}}], "subject_people": ["Oscar Wilde (1854-1900)"], "type": {"key": "/type/work"}, "subjects": ["Criticism", "Authorship", "Criticism and interpretation", "Wilde, oscar, 1854-1900", "Irish literature, history and criticism"], "covers": [9690312], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T05:27:54.118127"}, "last_modified": {"type": "/type/datetime", "value": "2022-02-25T23:00:29.286907"}}
+/type/work /works/OL11825577W 2 2010-01-21T13:07:20.038797 {"title": "All in the bones", "created": {"type": "/type/datetime", "value": "2009-12-11T05:27:54.118127"}, "subject_places": ["Great Britain"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T13:07:20.038797"}, "latest_revision": 2, "key": "/works/OL11825577W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5048679A"}}], "subject_people": ["B. Waterhouse Hawkins (1807-1889)"], "type": {"key": "/type/work"}, "subjects": ["Biography", "Sculptors", "Zoological artists", "Modelmakers"], "revision": 2}
+/type/work /works/OL11825777W 3 2020-08-14T21:19:08.289940 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:28:02.034606"}, "subjects": ["Exhibitions", "Art, modern, 21st century, exhibitions"], "subject_people": ["Peggy Preheim (1963-)"], "key": "/works/OL11825777W", "title": "Peggy Preheim", "latest_revision": 3, "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5048814A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-08-14T21:19:08.289940"}, "revision": 3}
+/type/work /works/OL11825827W 4 2010-04-28T07:24:33.363748 {"subtitle": "basic principles and clinical protocols", "title": "Handbook of radiation oncology", "created": {"type": "/type/datetime", "value": "2009-12-11T05:28:02.034606"}, "covers": [5342801], "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5048851A"}}], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:24:33.363748"}, "latest_revision": 4, "key": "/works/OL11825827W", "subjects": ["Radiotherapy", "Handbooks", "Neoplasms", "Methods", "Cancer", "Radiation Oncology", "Handbooks, manuals"], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL11825905W 4 2020-11-10T04:00:18.661689 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:28:02.034606"}, "subject_places": ["Soviet Union"], "subjects": ["Armed Forces", "Communist Propaganda", "Education, Non-military", "Political activity", "Political socialization", "Propaganda, Communist", "Soldiers", "Party work", "Kommunisticheskai\ufe20a\ufe21 partii\ufe20a\ufe21 Sovetskogo Soi\ufe20u\ufe21za"], "latest_revision": 4, "key": "/works/OL11825905W", "title": "Put' peremen, vremyadei\u0306stvii\u0306", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5048911A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-11-10T04:00:18.661689"}, "revision": 4}
+/type/work /works/OL11826097W 3 2020-08-14T17:31:50.281051 {"last_modified": {"type": "/type/datetime", "value": "2020-08-14T17:31:50.281051"}, "latest_revision": 3, "key": "/works/OL11826097W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5049048A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T05:28:02.034606"}, "title": "Modernizing tradition", "subject_places": ["Germany", "France"], "subjects": ["History", "Sex differences", "Consumption (Economics)", "Women", "Consumption (economics)", "Women, france", "Women, germany", "Women, history", "France, history, 20th century", "Germany, history, 20th century"], "subject_times": ["20th century"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1182643W 3 2010-04-28T07:24:33.363748 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:40:09.647556"}, "title": "Henry the Lion", "covers": [4604244], "subject_places": ["Germany"], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:24:33.363748"}, "latest_revision": 3, "key": "/works/OL1182643W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL119502A"}}], "subject_people": ["Henry Duke of Saxony (1129-1195)"], "subject_times": ["Frederick I, 1152-1190"], "type": {"key": "/type/work"}, "subjects": ["Princes", "Biography", "History"], "revision": 3}
+/type/work /works/OL1182645W 3 2010-07-20T15:31:40.764820 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:40:09.647556"}, "title": "Wrzesien\u0301 w Polsce", "last_modified": {"type": "/type/datetime", "value": "2010-07-20T15:31:40.764820"}, "latest_revision": 3, "key": "/works/OL1182645W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL119503A"}}], "type": {"key": "/type/work"}, "subjects": ["Personal narratives, Polish", "World War, 1939-1945", "Polish Personal narratives"], "revision": 3}
+/type/work /works/OL11826736W 7 2022-12-17T15:30:07.591611 {"title": "Thep ortable Malcolm Cowley", "covers": [4094868], "key": "/works/OL11826736W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL266057A"}}], "type": {"key": "/type/work"}, "subjects": ["Cowley, malcolm, 1898-1989"], "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2009-12-11T05:28:09.832689"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-17T15:30:07.591611"}}
+/type/work /works/OL11827392W 1 2009-12-11T05:28:09.832689 {"title": "A study to assess the construct validity of the modified engulfment scale", "created": {"type": "/type/datetime", "value": "2009-12-11T05:28:09.832689"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:28:09.832689"}, "latest_revision": 1, "key": "/works/OL11827392W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5049944A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11827525W 4 2010-12-03T22:28:46.489918 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T22:28:46.489918"}, "latest_revision": 4, "key": "/works/OL11827525W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5050046A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T05:28:09.832689"}, "title": "Pravoslavno mona\u0161tvo i manastiri u srednjevekovnoj Srbiji", "subject_places": ["Serbia", "Serbia and Montenegro", "Yugoslavia"], "subjects": ["Church history", "History", "Monasteries, Orthodox Eastern", "Monastic and religious life", "Monasticism and religious orders", "Monasticism and religious orders, Orthodox Eastern", "Orthodox Eastern Monasteries", "Orthodox Eastern Monasticism and religious orders", "Srpska pravoslavna crkva"], "subject_times": ["Middle Ages, 600-1500"], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL1182757W 1 2009-12-09T20:40:09.647556 {"title": "Mathematical surveys and monographs", "created": {"type": "/type/datetime", "value": "2009-12-09T20:40:09.647556"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T20:40:09.647556"}, "latest_revision": 1, "key": "/works/OL1182757W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL119516A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1182761W 2 2010-01-21T13:18:07.540392 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:40:09.647556"}, "title": "On the ideal structure of operator algebras", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T13:18:07.540392"}, "latest_revision": 2, "key": "/works/OL1182761W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL119516A"}}], "type": {"key": "/type/work"}, "subjects": ["Algebra"], "revision": 2}
+/type/work /works/OL11827620W 2 2020-12-16T11:22:31.865503 {"title": "Hua qiao Hua ren yan jiu wen xian suo yin, 1996-2000", "key": "/works/OL11827620W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5050125A"}}], "type": {"key": "/type/work"}, "subjects": ["Chinese", "Indexes", "Periodicals"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T05:28:09.832689"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-16T11:22:31.865503"}}
+/type/work /works/OL11827690W 1 2009-12-11T05:28:17.417247 {"title": "Shi wu: Zhongguo san nong da bian ju", "created": {"type": "/type/datetime", "value": "2009-12-11T05:28:17.417247"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:28:17.417247"}, "latest_revision": 1, "key": "/works/OL11827690W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5050171A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11827769W 3 2010-12-03T16:12:41.462427 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T16:12:41.462427"}, "title": "Riemann's method of integration", "created": {"type": "/type/datetime", "value": "2009-12-11T05:28:17.417247"}, "subjects": ["Differential equations, Partial", "Hyperelliptic Integrals", "Integrals, Hyperelliptic", "Partial Differential equations", "Riemann surfaces"], "latest_revision": 3, "key": "/works/OL11827769W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5050241A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11828116W 3 2020-10-11T04:17:51.209618 {"last_modified": {"type": "/type/datetime", "value": "2020-10-11T04:17:51.209618"}, "title": "Dir\u0101s\u0101t f\u012b naqd al-adab al-\u02bbArab\u012b min al-jahil\u012byah il\u00e1 nih\u0101yat al-qarn al-th\u0101lith", "created": {"type": "/type/datetime", "value": "2009-12-11T05:28:17.417247"}, "subjects": ["History and criticism", "Arabic literature"], "latest_revision": 3, "key": "/works/OL11828116W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5050497A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11828298W 4 2010-12-04T06:12:35.348423 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:28:17.417247"}, "subjects": ["Juvenile literature", "Quadrilaterals"], "latest_revision": 4, "key": "/works/OL11828298W", "title": "Quadrilaterals", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5050590A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-04T06:12:35.348423"}, "covers": [5306497], "revision": 4}
+/type/work /works/OL11828596W 2 2010-12-03T16:12:41.462427 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T16:12:41.462427"}, "title": "Sut wasanaeth?", "created": {"type": "/type/datetime", "value": "2009-12-11T05:28:17.417247"}, "subjects": ["North Wales Police"], "latest_revision": 2, "key": "/works/OL11828596W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5050764A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11828612W 4 2020-12-05T10:37:21.529289 {"subjects": ["Biography", "Clergy", "Methodist Church (Great Britain)", "Methodists", "Theologians"], "subject_people": ["John Fletcher (1729-1785)"], "key": "/works/OL11828612W", "title": "Reluctant saint?", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5050779A"}}], "type": {"key": "/type/work"}, "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T05:28:17.417247"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-05T10:37:21.529289"}}
+/type/work /works/OL11829227W 2 2010-01-21T13:23:35.297989 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:28:24.784199"}, "title": "The retail sales tax in South Dakota", "subject_places": ["South Dakota"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T13:23:35.297989"}, "latest_revision": 2, "key": "/works/OL11829227W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5051197A"}}], "type": {"key": "/type/work"}, "subjects": ["Sales tax"], "revision": 2}
+/type/work /works/OL11829565W 2 2010-01-21T13:23:35.297989 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:28:24.784199"}, "title": "Liquidit\u00e4t und Liquidit\u00e4tskontrolle aus der Sicht der Industrieunternehmung", "subject_places": ["Germany (West)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T13:23:35.297989"}, "latest_revision": 2, "key": "/works/OL11829565W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5051388A"}}], "type": {"key": "/type/work"}, "subjects": ["Corporations", "Finance", "Liquidity (Economics)"], "revision": 2}
+/type/work /works/OL11829609W 1 2009-12-11T05:28:24.784199 {"title": "Los derechos del escritor y del artista segu\u0301n los teo\u0301logos-juristas espan\u0303oles dela primera mitad del siglo XVII", "created": {"type": "/type/datetime", "value": "2009-12-11T05:28:24.784199"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:28:24.784199"}, "latest_revision": 1, "key": "/works/OL11829609W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5051420A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11829838W 2 2022-12-20T23:05:48.009525 {"title": "El rey negro", "key": "/works/OL11829838W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4910646A"}}], "type": {"key": "/type/work"}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T05:28:31.650405"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-20T23:05:48.009525"}}
+/type/work /works/OL11829844W 2 2022-12-20T23:05:48.009525 {"title": "Marcelino fue por vino", "key": "/works/OL11829844W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL4910646A"}}], "type": {"key": "/type/work"}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T05:28:31.650405"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-20T23:05:48.009525"}}
+/type/work /works/OL11829950W 2 2010-01-21T13:23:35.297989 {"title": "Ho Karaiskake\u0304s", "created": {"type": "/type/datetime", "value": "2009-12-11T05:28:31.650405"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T13:23:35.297989"}, "latest_revision": 2, "key": "/works/OL11829950W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5051639A"}}], "subject_people": ["Ge\u014drgios Karaiskak\u0113s"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11831071W 1 2009-12-11T05:28:38.387967 {"title": "Essays on the macroeconomic implications of inventory behaviour", "created": {"type": "/type/datetime", "value": "2009-12-11T05:28:38.387967"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:28:38.387967"}, "latest_revision": 1, "key": "/works/OL11831071W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5052311A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11831346W 2 2022-12-26T20:40:54.173544 {"title": "Physiologie de la pens\u00e9e", "key": "/works/OL11831346W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL3956355A"}}], "type": {"key": "/type/work"}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T05:28:38.387967"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-26T20:40:54.173544"}}
+/type/work /works/OL1183135W 3 2022-12-10T23:10:27.252000 {"subtitle": "viagem em torno de Gilberto Freyre", "title": "Tempos perdidos, nossos tempos", "key": "/works/OL1183135W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL119550A"}}], "type": {"key": "/type/work"}, "subjects": ["In literature"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-09T20:40:16.133957"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-10T23:10:27.252000"}}
+/type/work /works/OL11831430W 1 2009-12-11T05:28:38.387967 {"title": "Capital mobility and the output-inflation trade-off", "created": {"type": "/type/datetime", "value": "2009-12-11T05:28:38.387967"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:28:38.387967"}, "latest_revision": 1, "key": "/works/OL11831430W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5052570A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11831574W 2 2010-01-21T13:29:08.083565 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:28:38.387967"}, "title": "Light bearers of darkness", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T13:29:08.083565"}, "latest_revision": 2, "key": "/works/OL11831574W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5052645A"}}], "type": {"key": "/type/work"}, "subjects": ["Occultism", "Secret societies"], "revision": 2}
+/type/work /works/OL11831861W 1 2009-12-11T05:28:45.475520 {"title": "Logika otsenki statisticheskikh gipotez", "created": {"type": "/type/datetime", "value": "2009-12-11T05:28:45.475520"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:28:45.475520"}, "latest_revision": 1, "key": "/works/OL11831861W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5052819A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11832558W 1 2009-12-11T05:28:45.475520 {"title": "An t Sra\u0301id agus sce\u0301alta eile", "created": {"type": "/type/datetime", "value": "2009-12-11T05:28:45.475520"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:28:45.475520"}, "latest_revision": 1, "key": "/works/OL11832558W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5053307A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11833371W 2 2010-01-21T13:34:42.893307 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:28:52.435117"}, "title": "Dawr al-shab\u0101b f\u012b al-tanmiyah al-ijtim\u0101\u02bbi\\U+0233\\ah wa-al-iqti\u1e63\u0101d\u012byah", "subject_places": ["Egypt"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T13:34:42.893307"}, "latest_revision": 2, "key": "/works/OL11833371W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5053778A"}}], "type": {"key": "/type/work"}, "subjects": ["Youth", "Social policy"], "revision": 2}
+/type/work /works/OL11833636W 2 2010-01-21T13:40:22.524540 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:28:52.435117"}, "title": "Elementary mechanics", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T13:40:22.524540"}, "latest_revision": 2, "key": "/works/OL11833636W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5053971A"}}], "type": {"key": "/type/work"}, "subjects": ["Mechanics"], "revision": 2}
+/type/work /works/OL11833844W 2 2010-01-21T13:40:22.524540 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:28:59.660776"}, "title": "Voyage au pays du cin\u00e9ma", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T13:40:22.524540"}, "latest_revision": 2, "key": "/works/OL11833844W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5054083A"}}], "type": {"key": "/type/work"}, "subjects": ["Motion pictures", "Cinematography", "Philosophy", "History"], "revision": 2}
+/type/work /works/OL11834027W 1 2009-12-11T05:28:59.660776 {"title": "CAMBRIDGE AUTHORS' AND PRINTERS' GUIDES", "created": {"type": "/type/datetime", "value": "2009-12-11T05:28:59.660776"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:28:59.660776"}, "latest_revision": 1, "key": "/works/OL11834027W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5054182A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11834792W 2 2010-01-21T13:40:22.524540 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:29:09.775755"}, "title": "Exploring children's aceptance and appreciation of the elderly", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T13:40:22.524540"}, "latest_revision": 2, "key": "/works/OL11834792W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5054684A"}}], "type": {"key": "/type/work"}, "subjects": ["Children and older people"], "revision": 2}
+/type/work /works/OL11834826W 1 2009-12-11T05:29:09.775755 {"title": "Charter standards for community services", "created": {"type": "/type/datetime", "value": "2009-12-11T05:29:09.775755"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:29:09.775755"}, "latest_revision": 1, "key": "/works/OL11834826W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5054711A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11835650W 1 2009-12-11T05:29:09.775755 {"title": "Le massacre", "created": {"type": "/type/datetime", "value": "2009-12-11T05:29:09.775755"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:29:09.775755"}, "latest_revision": 1, "key": "/works/OL11835650W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5055234A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1183579W 1 2009-12-09T20:40:16.133957 {"title": "Subenhua zhe li mei wen ji (Dashi zheli meiwen xiliecongshu)", "created": {"type": "/type/datetime", "value": "2009-12-09T20:40:16.133957"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T20:40:16.133957"}, "latest_revision": 1, "key": "/works/OL1183579W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL119580A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11835982W 3 2018-11-17T05:47:13.182081 {"last_modified": {"type": "/type/datetime", "value": "2018-11-17T05:47:13.182081"}, "title": "Coastal and marine applications of remote sensing", "created": {"type": "/type/datetime", "value": "2009-12-11T05:29:21.076906"}, "subjects": ["Hydrography", "Remote sensing", "Oceanography", "Methodology", "Congresses"], "latest_revision": 3, "key": "/works/OL11835982W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5055465A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11836512W 2 2010-01-21T13:46:09.508430 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:29:21.076906"}, "title": "Elementary education in Shantung, China", "subject_places": ["China"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T13:46:09.508430"}, "latest_revision": 2, "key": "/works/OL11836512W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5055829A"}}], "type": {"key": "/type/work"}, "subjects": ["Education"], "revision": 2}
+/type/work /works/OL11836567W 1 2009-12-11T05:29:21.076906 {"title": "For Muriel's sake", "created": {"type": "/type/datetime", "value": "2009-12-11T05:29:21.076906"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:29:21.076906"}, "latest_revision": 1, "key": "/works/OL11836567W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5055874A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11836655W 1 2009-12-11T05:29:21.076906 {"title": "Body language and social order", "created": {"type": "/type/datetime", "value": "2009-12-11T05:29:21.076906"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:29:21.076906"}, "latest_revision": 1, "key": "/works/OL11836655W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5055938A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11836925W 2 2010-01-21T13:51:38.455483 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:29:27.520155"}, "title": "Multiple-beam interference microscopy of metals", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T13:51:38.455483"}, "latest_revision": 2, "key": "/works/OL11836925W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5056106A"}}], "type": {"key": "/type/work"}, "subjects": ["Metallography", "Interference microscopes"], "revision": 2}
+/type/work /works/OL11837220W 2 2010-01-21T13:51:38.455483 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:29:27.520155"}, "title": "Maynooth development plan", "subject_places": ["Maynooth (Ireland)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T13:51:38.455483"}, "latest_revision": 2, "key": "/works/OL11837220W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5056232A"}}], "type": {"key": "/type/work"}, "subjects": ["Planning"], "revision": 2}
+/type/work /works/OL11837655W 1 2009-12-11T05:29:27.520155 {"title": "West Middlesbrough New Deal for Communities", "created": {"type": "/type/datetime", "value": "2009-12-11T05:29:27.520155"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:29:27.520155"}, "latest_revision": 1, "key": "/works/OL11837655W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5056496A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11837686W 2 2010-01-21T13:51:38.455483 {"title": "Pushkin i ego epokha", "created": {"type": "/type/datetime", "value": "2009-12-11T05:29:27.520155"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T13:51:38.455483"}, "latest_revision": 2, "key": "/works/OL11837686W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5056516A"}}], "subject_people": ["A. S. Pushkin (1799-1837)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11838062W 2 2010-01-21T13:51:38.455483 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:29:34.919452"}, "title": "A short history of the U.S.S.R", "subject_places": ["Soviet Union"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T13:51:38.455483"}, "latest_revision": 2, "key": "/works/OL11838062W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5056771A"}}], "type": {"key": "/type/work"}, "subjects": ["History"], "revision": 2}
+/type/work /works/OL11838133W 2 2010-01-21T13:51:38.455483 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:29:34.919452"}, "title": "Le nu au th\u00e9\u00e2tre depuis l'antiquit\u00e9", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T13:51:38.455483"}, "latest_revision": 2, "key": "/works/OL11838133W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5056826A"}}], "type": {"key": "/type/work"}, "subjects": ["Nudity in the performing arts", "History"], "revision": 2}
+/type/work /works/OL11839354W 1 2009-12-11T05:29:42.308313 {"title": "Oil Painting", "created": {"type": "/type/datetime", "value": "2009-12-11T05:29:42.308313"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:29:42.308313"}, "latest_revision": 1, "key": "/works/OL11839354W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5057602A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11839930W 2 2010-01-21T14:01:09.602234 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:29:50.043809"}, "title": "Music and the physically handicapped", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T14:01:09.602234"}, "latest_revision": 2, "key": "/works/OL11839930W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5057971A"}}], "type": {"key": "/type/work"}, "subjects": ["Physical therapy", "Music therapy", "People with disabilities"], "revision": 2}
+/type/work /works/OL11840059W 3 2022-10-18T12:04:23.622755 {"title": "The Flavobacterium-Cytophaga group", "key": "/works/OL11840059W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5058077A"}}], "type": {"key": "/type/work"}, "subjects": ["Gram-negative bacteria", "Congresses", "Flavins"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T05:29:50.043809"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T12:04:23.622755"}}
+/type/work /works/OL11840614W 3 2010-12-03T16:18:16.344127 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:29:50.043809"}, "subject_places": ["United States"], "subjects": ["Affirmative action programs", "American Institute of Architects", "Women architects"], "latest_revision": 3, "key": "/works/OL11840614W", "title": "Affirmative action plan for the integration of women in the architectural profession and the American Institute of Architects", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5058474A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T16:18:16.344127"}, "revision": 3}
+/type/work /works/OL11840859W 2 2010-01-21T14:01:09.602234 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:29:57.504218"}, "title": "Usos i costums de la vila de Guimer\u00e0 en el segle XVIII (segons el capbreu de l'any 1789)", "subject_places": ["Guimer\u00e1 (Spain)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T14:01:09.602234"}, "latest_revision": 2, "key": "/works/OL11840859W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5058645A"}}], "type": {"key": "/type/work"}, "subjects": ["Social life and customs", "History"], "revision": 2}
+/type/work /works/OL11841240W 2 2010-01-21T14:01:09.602234 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:29:57.504218"}, "title": "Vetre de istorie rom\u00e2neasc\u0103", "subject_places": ["Romania"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T14:01:09.602234"}, "latest_revision": 2, "key": "/works/OL11841240W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5058879A"}}], "type": {"key": "/type/work"}, "subjects": ["History"], "revision": 2}
+/type/work /works/OL11841473W 1 2009-12-11T05:29:57.504218 {"title": "Shi\u02bbr Ism\u0101\u02bb\u012bl ibn Yass\u0101r", "created": {"type": "/type/datetime", "value": "2009-12-11T05:29:57.504218"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:29:57.504218"}, "latest_revision": 1, "key": "/works/OL11841473W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5059046A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11841620W 1 2009-12-11T05:29:57.504218 {"title": "A study of user behavior and needs at Chalmers University of Technology Library", "created": {"type": "/type/datetime", "value": "2009-12-11T05:29:57.504218"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:29:57.504218"}, "latest_revision": 1, "key": "/works/OL11841620W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5059137A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11841711W 5 2022-10-18T21:34:48.164822 {"subjects": ["Noise", "Acoustical engineering", "Vibration", "Acoustique appliqu\u00e9e", "Bruit", "Electro-acoustics"], "key": "/works/OL11841711W", "title": "Acoustics and vibration progress", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5059195A"}}], "type": {"key": "/type/work"}, "covers": [4467316], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2009-12-11T05:30:05.862076"}, "last_modified": {"type": "/type/datetime", "value": "2022-10-18T21:34:48.164822"}}
+/type/work /works/OL11841762W 4 2022-06-17T04:43:16.239001 {"key": "/works/OL11841762W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5059237A"}}], "title": "My life, a loaded gun", "subject_places": ["United States"], "subjects": ["Criticism and interpretation", "Women authors", "Feminism and literature", "Women and literature", "History and criticism", "American poetry", "Creation (Literary, artistic, etc.)", "Psychology", "American Feminist poetry", "Poetry", "Psychological aspects", "Women poets", "Rich, adrienne, 1929-2012", "Dickinson, emily, 1830-1886", "Plath, sylvia, 1932-1963", "Authors, psychology"], "subject_people": ["Emily Dickinson", "Adrienne Rich (1929-)", "Sylvia Plath (1932-1963)"], "type": {"key": "/type/work"}, "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T05:30:05.862076"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-17T04:43:16.239001"}}
+/type/work /works/OL11842151W 2 2010-01-21T14:06:02.210658 {"title": "Jan Dismas Zelenka", "created": {"type": "/type/datetime", "value": "2009-12-11T05:30:05.862076"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T14:06:02.210658"}, "latest_revision": 2, "key": "/works/OL11842151W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5059520A"}}], "subject_people": ["Jan Dismas Zelenka"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11842481W 1 2009-12-11T05:30:05.862076 {"title": "Address ... International Bar Meeting", "created": {"type": "/type/datetime", "value": "2009-12-11T05:30:05.862076"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:30:05.862076"}, "latest_revision": 1, "key": "/works/OL11842481W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5059764A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11842519W 2 2010-01-21T14:06:02.210658 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:30:05.862076"}, "title": "Non-technical chats on iron and steel", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T14:06:02.210658"}, "latest_revision": 2, "key": "/works/OL11842519W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5059796A"}}], "type": {"key": "/type/work"}, "subjects": ["Steel", "Iron"], "revision": 2}
+/type/work /works/OL11842679W 1 2009-12-11T05:30:05.862076 {"title": "[Preprints of the] Fourth Conference on Probability and Statistics in Atmospheric Sciences, November 18-21, 1975, Tallahassee, Florida", "created": {"type": "/type/datetime", "value": "2009-12-11T05:30:05.862076"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:30:05.862076"}, "latest_revision": 1, "key": "/works/OL11842679W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5059910A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1184323W 2 2010-01-21T14:10:18.885491 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:40:27.431036"}, "title": "The Park Ridge-Barrington area", "subject_places": ["Park Ridge (Ill.)", "Chicago (Ill.)", "Barrington (Ill.)", "Chicago", "Illinois"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T14:10:18.885491"}, "latest_revision": 2, "key": "/works/OL1184323W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL119658A"}}], "type": {"key": "/type/work"}, "subjects": ["Real property", "Real estate business", "Cities and towns", "Growth", "Economic conditions"], "revision": 2}
+/type/work /works/OL11843301W 2 2010-01-21T14:10:18.885491 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:30:12.877112"}, "title": "Effects of plasmids and cell envelope mutations on cell permeability and virulence of Yersinia Pestis in iron compromised mice", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T14:10:18.885491"}, "latest_revision": 2, "key": "/works/OL11843301W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5060335A"}}], "type": {"key": "/type/work"}, "subjects": ["Cells", "Permeability", "Plasmids"], "revision": 2}
+/type/work /works/OL11843313W 1 2009-12-11T05:30:12.877112 {"title": "Perinatal profile 1989", "created": {"type": "/type/datetime", "value": "2009-12-11T05:30:12.877112"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:30:12.877112"}, "latest_revision": 1, "key": "/works/OL11843313W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5060342A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11843527W 1 2009-12-11T05:30:12.877112 {"title": "A provisional list of City of London poor law records", "created": {"type": "/type/datetime", "value": "2009-12-11T05:30:12.877112"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:30:12.877112"}, "latest_revision": 1, "key": "/works/OL11843527W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5060443A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1184492W 2 2010-01-21T14:14:39.641764 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:40:27.431036"}, "title": "Which is the justice?", "subject_places": ["Great Britain"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T14:14:39.641764"}, "latest_revision": 2, "key": "/works/OL1184492W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL119688A"}}], "type": {"key": "/type/work"}, "subjects": ["Judges", "Juvenile delinquency", "Biography"], "revision": 2}
+/type/work /works/OL11845055W 2 2010-01-21T14:14:39.641764 {"title": "Ives' Concord sonata", "created": {"type": "/type/datetime", "value": "2009-12-11T05:30:28.367511"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T14:14:39.641764"}, "latest_revision": 2, "key": "/works/OL11845055W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5061440A"}}], "subject_people": ["Charles Ives (1874-1954)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11845201W 6 2022-12-11T03:43:41.904384 {"title": "Frankreichs Unternehmer in der Periode der Volksfront, 1936-1937", "covers": [5343557], "subject_places": ["France"], "subjects": ["Communism", "Economic conditions", "Front populaire", "Politics and government", "Capitalists and financiers"], "key": "/works/OL11845201W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL803951A"}}], "subject_times": ["1914-1940", "1918-1945"], "type": {"key": "/type/work"}, "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2009-12-11T05:30:28.367511"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-11T03:43:41.904384"}}
+/type/work /works/OL11845390W 2 2010-01-21T14:14:39.641764 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:30:28.367511"}, "title": "Genetic studies of the B-glucan content of barley (Hordeum vulgare L.)", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T14:14:39.641764"}, "latest_revision": 2, "key": "/works/OL11845390W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5061688A"}}], "type": {"key": "/type/work"}, "subjects": ["Barley", "Genetics"], "revision": 2}
+/type/work /works/OL11845432W 4 2019-10-03T13:10:39.772925 {"title": "A letter to the rt. hon. Charles James Fox upon the dangerous and inflammatory tendency of his late conduct in Parliament", "created": {"type": "/type/datetime", "value": "2009-12-11T05:30:28.367511"}, "last_modified": {"type": "/type/datetime", "value": "2019-10-03T13:10:39.772925"}, "latest_revision": 4, "key": "/works/OL11845432W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL518198A"}}], "subject_people": ["Charles James Fox (1749-1806)"], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL11845584W 2 2010-01-21T14:14:39.641764 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:30:28.367511"}, "title": "Caloric and oculomotor tests in neuroaudiological diagnosis", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T14:14:39.641764"}, "latest_revision": 2, "key": "/works/OL11845584W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5061837A"}}], "type": {"key": "/type/work"}, "subjects": ["Audiology", "Audiometry"], "revision": 2}
+/type/work /works/OL1184575W 2 2010-01-21T14:14:39.641764 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:40:27.431036"}, "title": "On the muscular and endoskeletal systems of Limulus and Scorpio", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T14:14:39.641764"}, "latest_revision": 2, "key": "/works/OL1184575W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL119701A"}}], "type": {"key": "/type/work"}, "subjects": ["Anatomy", "Limulus", "Scorpions"], "revision": 2}
+/type/work /works/OL11845760W 2 2010-01-21T14:14:39.641764 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:30:36.385460"}, "title": "Measurement of the three-photon absorption cross section in KI at 532 nm utilizing exciton recombination luminescence", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T14:14:39.641764"}, "latest_revision": 2, "key": "/works/OL11845760W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5061970A"}}], "type": {"key": "/type/work"}, "subjects": ["Optical properties", "Multiphoton processes", "Dielectrics"], "revision": 2}
+/type/work /works/OL11845956W 2 2010-01-21T14:19:05.611447 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:30:36.385460"}, "title": "UNDP/FAO project ZAM/77/002", "subject_places": ["Zambia"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T14:19:05.611447"}, "latest_revision": 2, "key": "/works/OL11845956W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5062100A"}}], "type": {"key": "/type/work"}, "subjects": ["Vaccination", "Zambia", "Vaccination of animals", "Veterinary public health", "Cattle"], "revision": 2}
+/type/work /works/OL11846209W 3 2010-12-03T16:19:58.469691 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T16:19:58.469691"}, "latest_revision": 3, "key": "/works/OL11846209W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5062249A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T05:30:36.385460"}, "title": "Ministerial responsibility", "subject_places": ["Ireland"], "subjects": ["Clergy", "History", "Presbyterian Church in Ireland"], "subject_people": ["Thomas Young Killen (1826-1886)"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1184623W 2 2010-01-21T14:19:05.611447 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:40:27.431036"}, "title": "Les bases de la meteorologie dynamique", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T14:19:05.611447"}, "latest_revision": 2, "key": "/works/OL1184623W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL119714A"}}], "type": {"key": "/type/work"}, "subjects": ["Meteorology"], "revision": 2}
+/type/work /works/OL11846515W 1 2009-12-11T05:30:36.385460 {"title": "Water treeing in solid and liquid dielectrics", "created": {"type": "/type/datetime", "value": "2009-12-11T05:30:36.385460"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:30:36.385460"}, "latest_revision": 1, "key": "/works/OL11846515W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5062501A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11846539W 1 2009-12-11T05:30:36.385460 {"title": "The synthesis of chiral tin hydrides", "created": {"type": "/type/datetime", "value": "2009-12-11T05:30:36.385460"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:30:36.385460"}, "latest_revision": 1, "key": "/works/OL11846539W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5062521A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11846757W 2 2010-01-21T14:19:05.611447 {"title": "Ruggero Bacone e la scolastica", "created": {"type": "/type/datetime", "value": "2009-12-11T05:30:46.042584"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T14:19:05.611447"}, "latest_revision": 2, "key": "/works/OL11846757W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5062689A"}}], "subject_people": ["Roger Bacon (1214?-1294?)"], "type": {"key": "/type/work"}, "subjects": ["Scholasticism"], "revision": 2}
+/type/work /works/OL11846909W 1 2009-12-11T05:30:46.042584 {"title": "The provenance of Greek black glaze pottery", "created": {"type": "/type/datetime", "value": "2009-12-11T05:30:46.042584"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:30:46.042584"}, "latest_revision": 1, "key": "/works/OL11846909W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5062814A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11847379W 1 2009-12-11T05:30:46.042584 {"title": "Biochemical characterisation of insulin-like growth factor binding protein-1", "created": {"type": "/type/datetime", "value": "2009-12-11T05:30:46.042584"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:30:46.042584"}, "latest_revision": 1, "key": "/works/OL11847379W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5063253A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11847594W 1 2009-12-11T05:30:46.042584 {"title": "The cloning and expression analysis of Sox genes in the developing chick embryo", "created": {"type": "/type/datetime", "value": "2009-12-11T05:30:46.042584"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:30:46.042584"}, "latest_revision": 1, "key": "/works/OL11847594W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5063465A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11847888W 1 2009-12-11T05:30:53.934515 {"title": "All hands on", "created": {"type": "/type/datetime", "value": "2009-12-11T05:30:53.934515"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:30:53.934515"}, "latest_revision": 1, "key": "/works/OL11847888W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5063685A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11848419W 2 2010-01-21T14:23:43.617924 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:30:53.934515"}, "title": "Tractatus de ecclesia Christi", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T14:23:43.617924"}, "latest_revision": 2, "key": "/works/OL11848419W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5064024A"}}], "type": {"key": "/type/work"}, "subjects": ["Church"], "revision": 2}
+/type/work /works/OL11848426W 1 2009-12-11T05:30:53.934515 {"title": "Housing", "created": {"type": "/type/datetime", "value": "2009-12-11T05:30:53.934515"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:30:53.934515"}, "latest_revision": 1, "key": "/works/OL11848426W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5064031A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11848439W 2 2010-01-21T14:23:43.617924 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:30:53.934515"}, "title": "[Proposed changes to the supplemental budget for the remainder of the 1983-85 Biennium]", "subject_places": ["Washington (State)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T14:23:43.617924"}, "latest_revision": 2, "key": "/works/OL11848439W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5064041A"}}], "type": {"key": "/type/work"}, "subjects": ["Appropriations and expenditures", "Budget"], "revision": 2}
+/type/work /works/OL11848506W 2 2010-01-21T14:23:43.617924 {"title": "The seccond [i.e.second] message of Islam", "created": {"type": "/type/datetime", "value": "2009-12-11T05:30:53.934515"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T14:23:43.617924"}, "latest_revision": 2, "key": "/works/OL11848506W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5064091A"}}], "subject_people": ["\u1e6caha, cMa\u1e25m\u016bd Mu\u1e25ammad (1909-85)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11848757W 1 2009-12-11T05:31:02.228267 {"title": "Community mental health nursing in Leicestershire", "created": {"type": "/type/datetime", "value": "2009-12-11T05:31:02.228267"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:31:02.228267"}, "latest_revision": 1, "key": "/works/OL11848757W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5064297A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11848841W 1 2009-12-11T05:31:02.228267 {"title": "The impact of hill land clearance and urbanisation on hydrology and geomorphology of rivers in Pulau Pinang, Malaysia", "created": {"type": "/type/datetime", "value": "2009-12-11T05:31:02.228267"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:31:02.228267"}, "latest_revision": 1, "key": "/works/OL11848841W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5064354A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11849045W 1 2009-12-11T05:31:02.228267 {"title": "NMR and molecular modelling studies of molecules in solution", "created": {"type": "/type/datetime", "value": "2009-12-11T05:31:02.228267"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:31:02.228267"}, "latest_revision": 1, "key": "/works/OL11849045W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5064547A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11849242W 2 2010-01-21T14:23:43.617924 {"title": "William Pickering, 177, Piccadilly, opposite Burlington House, in announcing his removal from Chancery Lane to Piccadilly begs to offer his best thanks to his friends and the public for the support with which he has been honoured during the last twenty years ..", "created": {"type": "/type/datetime", "value": "2009-12-11T05:31:02.228267"}, "subject_places": ["Great Britain"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T14:23:43.617924"}, "latest_revision": 2, "key": "/works/OL11849242W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5064667A"}}], "subject_people": ["William Pickering (1796-1854)"], "subject_times": ["19th century"], "type": {"key": "/type/work"}, "subjects": ["Publishers and publishing", "Booksellers and bookselling"], "revision": 2}
+/type/work /works/OL11849316W 1 2009-12-11T05:31:02.228267 {"title": "Corporate diversification", "created": {"type": "/type/datetime", "value": "2009-12-11T05:31:02.228267"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:31:02.228267"}, "latest_revision": 1, "key": "/works/OL11849316W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5064729A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11849321W 1 2009-12-11T05:31:02.228267 {"title": "Is there a relationship between plantar lesion patterns and foot type?", "created": {"type": "/type/datetime", "value": "2009-12-11T05:31:02.228267"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:31:02.228267"}, "latest_revision": 1, "key": "/works/OL11849321W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5064734A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11849518W 2 2010-01-21T14:23:43.617924 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:31:02.228267"}, "title": "Reproduction and teratology", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T14:23:43.617924"}, "latest_revision": 2, "key": "/works/OL11849518W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5064862A"}}], "type": {"key": "/type/work"}, "subjects": ["Animals", "Congresses", "Abnormalities"], "revision": 2}
+/type/work /works/OL11850217W 2 2010-01-21T14:28:28.586628 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:31:10.728062"}, "title": "Allusions to pagan burial practices in Anglo-Saxon poetry", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T14:28:28.586628"}, "latest_revision": 2, "key": "/works/OL11850217W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5065390A"}}], "type": {"key": "/type/work"}, "subjects": ["Death in literature"], "revision": 2}
+/type/work /works/OL11850381W 2 2010-01-21T14:28:28.586628 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:31:10.728062"}, "title": "The yellow turbans", "subject_places": ["China"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T14:28:28.586628"}, "latest_revision": 2, "key": "/works/OL11850381W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5065504A"}}], "subject_times": ["Han dynasty, 202 B.C.-220 A.D."], "type": {"key": "/type/work"}, "subjects": ["History"], "revision": 2}
+/type/work /works/OL11850478W 2 2010-01-21T14:28:28.586628 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:31:10.728062"}, "title": "Lentil yield as influenced by duration of wild oats interference and DPX-Y6202 for wild oats control in lentils", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T14:28:28.586628"}, "latest_revision": 2, "key": "/works/OL11850478W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5065585A"}}], "type": {"key": "/type/work"}, "subjects": ["Lentils", "Control", "Herbicides", "Wild oat", "Diseases and pests"], "revision": 2}
+/type/work /works/OL11850642W 2 2010-01-21T14:28:28.586628 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:31:10.728062"}, "title": "The sentry problem and its variations", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T14:28:28.586628"}, "latest_revision": 2, "key": "/works/OL11850642W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5065674A"}}], "type": {"key": "/type/work"}, "subjects": ["Computer graphics", "Image processing", "Digital techniques"], "revision": 2}
+/type/work /works/OL11850800W 1 2009-12-11T05:31:19.128522 {"title": "Morphological and ultra-structural studies on species of cylindrocarpon", "created": {"type": "/type/datetime", "value": "2009-12-11T05:31:19.128522"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:31:19.128522"}, "latest_revision": 1, "key": "/works/OL11850800W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5065799A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11850965W 2 2010-01-21T14:28:28.586628 {"title": "V.G. Belinskii", "created": {"type": "/type/datetime", "value": "2009-12-11T05:31:19.128522"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T14:28:28.586628"}, "latest_revision": 2, "key": "/works/OL11850965W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5065927A"}}], "subject_people": ["V. G. Belinskii"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11851031W 2 2010-01-21T14:28:28.586628 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:31:19.128522"}, "title": "Racial differences in self-concept of ability", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T14:28:28.586628"}, "latest_revision": 2, "key": "/works/OL11851031W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5065969A"}}], "type": {"key": "/type/work"}, "subjects": ["African Americans", "Psychology", "Self-esteem"], "revision": 2}
+/type/work /works/OL11851417W 1 2009-12-11T05:31:19.128522 {"title": "The role of outer membrane proteins and lipooligosaccharide in the immunogenicity and pathogenicity of Neisseria meningitidis", "created": {"type": "/type/datetime", "value": "2009-12-11T05:31:19.128522"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:31:19.128522"}, "latest_revision": 1, "key": "/works/OL11851417W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5066241A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11851763W 2 2010-01-21T14:28:28.586628 {"title": "La razionalit\u00e0 come vocazione", "created": {"type": "/type/datetime", "value": "2009-12-11T05:31:27.367435"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T14:28:28.586628"}, "latest_revision": 2, "key": "/works/OL11851763W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5066503A"}}], "subject_people": ["Max Weber (1864-1920)"], "type": {"key": "/type/work"}, "subjects": ["Capitalism", "Views on capitalism", "Protestant work ethic"], "revision": 2}
+/type/work /works/OL11851886W 2 2010-01-21T14:33:14.006622 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:31:27.367435"}, "title": "Computer generated fault surface determinations from earthquake foci", "subject_places": ["Washington (State)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T14:33:14.006622"}, "latest_revision": 2, "key": "/works/OL11851886W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5066594A"}}], "type": {"key": "/type/work"}, "subjects": ["Faults (Geology)", "Earthquakes"], "revision": 2}
+/type/work /works/OL11852195W 2 2010-01-21T14:33:14.006622 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:31:27.367435"}, "title": "Mushroom science III", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T14:33:14.006622"}, "latest_revision": 2, "key": "/works/OL11852195W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5066829A"}}], "type": {"key": "/type/work"}, "subjects": ["Mushroom culture", "Congresses"], "revision": 2}
+/type/work /works/OL11852313W 4 2021-05-11T02:49:22.254761 {"title": "Versuch einer Naturgeschichte der Eingeweidew\u00fcrmer thierischer K\u00f6rper", "key": "/works/OL11852313W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5066923A"}}], "type": {"key": "/type/work"}, "subjects": ["Helminths", "Parasites", "Tapeworms", "Intestines", "Microbiology"], "covers": [10988875], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T05:31:27.367435"}, "last_modified": {"type": "/type/datetime", "value": "2021-05-11T02:49:22.254761"}}
+/type/work /works/OL11852340W 2 2010-01-21T14:33:14.006622 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:31:27.367435"}, "title": "Macromineral bioavailability from forages for ruminants", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T14:33:14.006622"}, "latest_revision": 2, "key": "/works/OL11852340W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5066941A"}}], "type": {"key": "/type/work"}, "subjects": ["Feeding and feeds", "Nutrition", "Minerals in animal nutrition", "Ruminants", "Forage plants"], "revision": 2}
+/type/work /works/OL11852385W 2 2010-01-21T14:33:14.006622 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:31:27.367435"}, "title": "Lingv\u00e6 Hebraic\u00e6 institvtiones absolvtissim\u00e6", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T14:33:14.006622"}, "latest_revision": 2, "key": "/works/OL11852385W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5066976A"}}], "type": {"key": "/type/work"}, "subjects": ["Hebrew language", "Grammar"], "revision": 2}
+/type/work /works/OL11853197W 2 2010-01-21T14:38:00.772066 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:31:35.750558"}, "title": "Order and chaos", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T14:38:00.772066"}, "latest_revision": 2, "key": "/works/OL11853197W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5067601A"}}], "type": {"key": "/type/work"}, "subjects": ["Painting"], "revision": 2}
+/type/work /works/OL11853737W 2 2010-01-21T14:38:00.772066 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:31:44.198656"}, "title": "Flora von Deutschland in abbildungen nach der natur ..", "subject_places": ["Germany"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T14:38:00.772066"}, "latest_revision": 2, "key": "/works/OL11853737W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5068040A"}}], "type": {"key": "/type/work"}, "subjects": ["Botany"], "revision": 2}
+/type/work /works/OL11853789W 2 2010-01-21T14:38:00.772066 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:31:44.198656"}, "title": "The earth and its universe", "subject_places": ["Earth"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T14:38:00.772066"}, "latest_revision": 2, "key": "/works/OL11853789W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5068069A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11853830W 2 2010-01-21T14:38:00.772066 {"title": "McCormick and allied families", "created": {"type": "/type/datetime", "value": "2009-12-11T05:31:44.198656"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T14:38:00.772066"}, "latest_revision": 2, "key": "/works/OL11853830W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5068104A"}}], "subject_people": ["McCormick family"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11853944W 3 2010-12-03T16:21:34.537460 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T16:21:34.537460"}, "latest_revision": 3, "key": "/works/OL11853944W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5068203A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T05:31:44.198656"}, "title": "Lone-star vanguard", "subject_places": ["Texas"], "subjects": ["Catholic Church", "Vincentians"], "subject_people": ["John Timon Bishop (1797-1867)", "John Timon bp. (1797-1867)"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11854038W 2 2010-01-21T14:42:28.152277 {"title": "David Smith", "created": {"type": "/type/datetime", "value": "2009-12-11T05:31:44.198656"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T14:42:28.152277"}, "latest_revision": 2, "key": "/works/OL11854038W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5068273A"}}], "subject_people": ["David Smith (1906-1965)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11854092W 2 2010-01-21T14:42:28.152277 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:31:44.198656"}, "title": "Perturbation series for Eigenvalues of regular non-symmetric operators", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T14:42:28.152277"}, "latest_revision": 2, "key": "/works/OL11854092W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5068308A"}}], "type": {"key": "/type/work"}, "subjects": ["Functional analysis"], "revision": 2}
+/type/work /works/OL11854299W 2 2010-01-21T14:42:28.152277 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:31:44.198656"}, "title": "Profitability study crude oil and natural gas exploration, development, and production activities in the USA, 1959-1988", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T14:42:28.152277"}, "latest_revision": 2, "key": "/works/OL11854299W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5068448A"}}], "type": {"key": "/type/work"}, "subjects": ["Statistics", "Petroleum industry and trade", "Natural gas"], "revision": 2}
+/type/work /works/OL1185437W 2 2010-01-21T14:42:28.152277 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:40:35.082066"}, "title": "Courses of study for continuation schools", "subject_places": ["Pennsylvania"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T14:42:28.152277"}, "latest_revision": 2, "key": "/works/OL1185437W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL119752A"}}], "type": {"key": "/type/work"}, "subjects": ["Curricula", "Evening and continuation schools", "Education"], "revision": 2}
+/type/work /works/OL11854469W 2 2010-01-21T14:42:28.152277 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:31:44.198656"}, "title": "The state of Evrope, XIIII bookes", "subject_places": ["Europe"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T14:42:28.152277"}, "latest_revision": 2, "key": "/works/OL11854469W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5068558A"}}], "type": {"key": "/type/work"}, "subjects": ["History"], "revision": 2}
+/type/work /works/OL11854508W 2 2010-01-21T14:42:28.152277 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:31:44.198656"}, "title": "Evangelio y misi\u00f3n", "subject_places": ["Latin America"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T14:42:28.152277"}, "latest_revision": 2, "key": "/works/OL11854508W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5068590A"}}], "type": {"key": "/type/work"}, "subjects": ["Church work with the poor", "Catholic Church"], "revision": 2}
+/type/work /works/OL11854528W 3 2010-12-03T16:28:30.342657 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:31:44.198656"}, "subject_places": ["Massachusetts"], "subjects": ["Court rules", "Rules and practice", "United States", "United States. Court of Appeals (1st Circuit)"], "latest_revision": 3, "key": "/works/OL11854528W", "title": "Rules of disciplinary enforcement for the Court of Appeals for the First Circuit", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5068602A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T16:28:30.342657"}, "revision": 3}
+/type/work /works/OL11854764W 3 2010-12-04T04:11:27.509647 {"last_modified": {"type": "/type/datetime", "value": "2010-12-04T04:11:27.509647"}, "latest_revision": 3, "key": "/works/OL11854764W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5068765A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T05:31:52.865717"}, "title": "Gu\u00eda de protocolos, Archivo General de Notar\u00edas de la Ciudad de M\u00e9xico, a\u00f1o de 1855", "subject_places": ["Mexico", "Mexico City", "Mexico City (Mexico)"], "subjects": ["Archivo General de Notar\u00edas (Mexico)", "Bibliography", "Catalogs", "Genealogy", "History", "Notaries", "Protocol-books", "Sources"], "subject_times": ["19th century"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11854872W 2 2010-01-21T14:42:28.152277 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:31:52.865717"}, "title": "The Hardcore", "subject_places": ["Kenya"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T14:42:28.152277"}, "latest_revision": 2, "key": "/works/OL11854872W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5068845A"}}], "type": {"key": "/type/work"}, "subjects": ["History"], "revision": 2}
+/type/work /works/OL11854962W 2 2010-01-21T14:46:57.124449 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:31:52.865717"}, "title": "Zur kenntnis der selbsterilita\u0308t von cardamine pratensis", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T14:46:57.124449"}, "latest_revision": 2, "key": "/works/OL11854962W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5068921A"}}], "type": {"key": "/type/work"}, "subjects": ["Cardamine"], "revision": 2}
+/type/work /works/OL11855495W 3 2010-12-03T16:23:17.108437 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:31:52.865717"}, "subject_places": ["Maine"], "subjects": ["Child welfare", "Maine", "Maine. Dept. of Human Services"], "latest_revision": 3, "key": "/works/OL11855495W", "title": "A report of the Child Protective Services Oversight Committee", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5069337A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T16:23:17.108437"}, "revision": 3}
+/type/work /works/OL11855542W 2 2020-12-03T13:10:14.707837 {"title": "Writings", "key": "/works/OL11855542W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5069358A"}}], "type": {"key": "/type/work"}, "subjects": ["Philosophy", "Communication"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T05:31:52.865717"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-03T13:10:14.707837"}}
+/type/work /works/OL1185584W 2 2010-01-21T14:46:57.124449 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:40:35.082066"}, "title": "The Virginia Employment Commission", "subject_places": ["Virginia"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T14:46:57.124449"}, "latest_revision": 2, "key": "/works/OL1185584W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL119754A"}}], "type": {"key": "/type/work"}, "subjects": ["Employment agencies"], "revision": 2}
+/type/work /works/OL11856289W 2 2010-01-21T14:51:45.866128 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:32:06.172212"}, "title": "The true story of Greyfriar's Bobby", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T14:51:45.866128"}, "latest_revision": 2, "key": "/works/OL11856289W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5069914A"}}], "type": {"key": "/type/work"}, "subjects": ["Dogs", "Biography"], "revision": 2}
+/type/work /works/OL11856580W 3 2019-12-16T10:45:53.376068 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:32:06.172212"}, "subject_places": ["India"], "subjects": ["Description and travel"], "latest_revision": 3, "key": "/works/OL11856580W", "title": "A journey from Madras through the countries of Mysore, Canara, and Malabar, performed under the orders of the most noble the Marquis Wellesley, governor general of India, for the express purpose of investigating the state of agriculture, arts, and commerce; the religion manners and customs; the history natural and civil, and antiquities, in the dominions of the rajah of Mysore, and the countries acquired by the Honourable East India Company", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL732A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2019-12-16T10:45:53.376068"}, "revision": 3}
+/type/work /works/OL1185659W 3 2011-03-29T04:37:39.298095 {"subtitle": "our finest hour", "last_modified": {"type": "/type/datetime", "value": "2011-03-29T04:37:39.298095"}, "latest_revision": 3, "key": "/works/OL1185659W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL119763A"}}], "created": {"type": "/type/datetime", "value": "2009-12-09T20:40:35.082066"}, "title": "Nineteen-forty", "subject_places": ["Great Britain"], "subjects": ["World War, 1939-1945"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11856787W 3 2023-01-10T11:58:59.008464 {"title": "Abstracts of papers", "key": "/works/OL11856787W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5070298A"}}], "type": {"key": "/type/work"}, "subjects": ["Congresses", "Ultrasonics in medicine"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T05:32:15.531830"}, "last_modified": {"type": "/type/datetime", "value": "2023-01-10T11:58:59.008464"}}
+/type/work /works/OL11857207W 1 2009-12-11T05:32:15.531830 {"title": "La locura de Madrid", "created": {"type": "/type/datetime", "value": "2009-12-11T05:32:15.531830"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:32:15.531830"}, "latest_revision": 1, "key": "/works/OL11857207W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5070607A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11857355W 3 2010-12-03T16:25:04.111679 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:32:15.531830"}, "subjects": ["Artificial Languages", "History", "Language, Universal", "Languages, Artificial", "Universal Language"], "latest_revision": 3, "key": "/works/OL11857355W", "title": "Le lingue perfette nel secolo dell'utopia", "subject_times": ["18th century"], "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5070720A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T16:25:04.111679"}, "revision": 3}
+/type/work /works/OL11857410W 2 2010-01-21T14:56:26.088561 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:32:15.531830"}, "title": "Diminishing returns", "subject_places": ["Arizona"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T14:56:26.088561"}, "latest_revision": 2, "key": "/works/OL11857410W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5070756A"}}], "type": {"key": "/type/work"}, "subjects": ["Excavations (Archaeology)", "Antiquities"], "revision": 2}
+/type/work /works/OL11857411W 2 2010-01-21T14:56:26.088561 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:32:15.531830"}, "title": "Early man in the San Pedro Valley, Arizona", "subject_places": ["Arizona", "San Pedro Valley (Arizona)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T14:56:26.088561"}, "latest_revision": 2, "key": "/works/OL11857411W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5070757A"}}], "type": {"key": "/type/work"}, "subjects": ["Antiquities", "Excavations (Archaeology)"], "revision": 2}
+/type/work /works/OL11857470W 3 2010-12-03T19:32:36.597279 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T19:32:36.597279"}, "title": "Protestantism and the Church", "created": {"type": "/type/datetime", "value": "2009-12-11T05:32:15.531830"}, "subjects": ["Church of England", "Controversial literature", "Doctrines", "Protestantism"], "latest_revision": 3, "key": "/works/OL11857470W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5070807A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11858829W 2 2010-01-21T15:01:08.540372 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:32:33.037067"}, "title": "Animal anaesthesia", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T15:01:08.540372"}, "latest_revision": 2, "key": "/works/OL11858829W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5071934A"}}], "type": {"key": "/type/work"}, "subjects": ["Anesthesia", "Veterinary surgery"], "revision": 2}
+/type/work /works/OL11858856W 2 2010-01-21T15:01:08.540372 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:32:33.037067"}, "title": "The clinical diagnosis of cattle diseases", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T15:01:08.540372"}, "latest_revision": 2, "key": "/works/OL11858856W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5071952A"}}], "type": {"key": "/type/work"}, "subjects": ["Diseases", "Cattle"], "revision": 2}
+/type/work /works/OL11859125W 2 2010-01-21T15:05:39.785777 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:32:33.037067"}, "title": "Proceedings of the Inter-American Educational and Cultural Conference", "subject_places": ["United States", "Latin America"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T15:05:39.785777"}, "latest_revision": 2, "key": "/works/OL11859125W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5072151A"}}], "type": {"key": "/type/work"}, "subjects": ["Relations", "Congresses", "Intellectual cooperation"], "revision": 2}
+/type/work /works/OL11859152W 2 2010-01-21T15:05:39.785777 {"title": "Leona Vicario, heroina insurgente", "created": {"type": "/type/datetime", "value": "2009-12-11T05:32:33.037067"}, "subject_places": ["Mexico"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T15:05:39.785777"}, "latest_revision": 2, "key": "/works/OL11859152W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5072164A"}}], "subject_people": ["Leona Vicario (1789-1842)"], "subject_times": ["Wars of Independence, 1810-1821", "1821-1861"], "type": {"key": "/type/work"}, "subjects": ["History"], "revision": 2}
+/type/work /works/OL11859834W 2 2010-01-21T15:05:39.785777 {"title": "James Connolly and Irish freedom", "created": {"type": "/type/datetime", "value": "2009-12-11T05:32:41.237933"}, "subject_places": ["Ireland"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T15:05:39.785777"}, "latest_revision": 2, "key": "/works/OL11859834W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5072702A"}}], "subject_people": ["James Connolly"], "type": {"key": "/type/work"}, "subjects": ["Communists", "Biography"], "revision": 2}
+/type/work /works/OL11860121W 1 2009-12-11T05:32:41.237933 {"title": "Constitutional progress under Edward I of England", "created": {"type": "/type/datetime", "value": "2009-12-11T05:32:41.237933"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:32:41.237933"}, "latest_revision": 1, "key": "/works/OL11860121W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5072950A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11860247W 3 2010-12-03T16:27:19.301171 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T16:27:19.301171"}, "title": "Ta r\u0113mata t\u0113s Neoell\u0113nik\u0113s gl\u014dssas gia to d\u0113motiko scholeio", "created": {"type": "/type/datetime", "value": "2009-12-11T05:32:41.237933"}, "subjects": ["Greek language, Modern", "Modern Greek language", "Morphology", "Verb"], "latest_revision": 3, "key": "/works/OL11860247W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5073047A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11860446W 2 2010-01-21T15:05:39.785777 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:32:41.237933"}, "title": "Columbian metallurgy", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T15:05:39.785777"}, "latest_revision": 2, "key": "/works/OL11860446W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5073168A"}}], "type": {"key": "/type/work"}, "subjects": ["Niobium", "Metallurgy", "Congresses"], "revision": 2}
+/type/work /works/OL11860933W 1 2009-12-11T05:32:56.671107 {"title": "The beginnings of geometry and its development by the Greeks", "created": {"type": "/type/datetime", "value": "2009-12-11T05:32:56.671107"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:32:56.671107"}, "latest_revision": 1, "key": "/works/OL11860933W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5073526A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1186188W 3 2010-12-03T19:32:14.649179 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T19:32:14.649179"}, "title": "The world of the Old Testament", "created": {"type": "/type/datetime", "value": "2009-12-09T20:40:45.436896"}, "subjects": ["Bible", "History of Biblical events", "History of contemporary events"], "latest_revision": 3, "key": "/works/OL1186188W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL119799A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11861913W 1 2009-12-11T05:33:06.462144 {"title": "Character portrayal in Livy", "created": {"type": "/type/datetime", "value": "2009-12-11T05:33:06.462144"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:33:06.462144"}, "latest_revision": 1, "key": "/works/OL11861913W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5074478A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11861971W 1 2009-12-11T05:33:06.462144 {"title": "The Christocentricity of Gerard Manley Hopkins", "created": {"type": "/type/datetime", "value": "2009-12-11T05:33:06.462144"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:33:06.462144"}, "latest_revision": 1, "key": "/works/OL11861971W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5074534A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11862062W 1 2009-12-11T05:33:06.462144 {"title": "Fees and admitting policies of the out-patient departments belonging to the Boston hospital council", "created": {"type": "/type/datetime", "value": "2009-12-11T05:33:06.462144"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:33:06.462144"}, "latest_revision": 1, "key": "/works/OL11862062W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5074613A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11862204W 4 2017-10-08T04:53:16.686384 {"title": "Concluding part of the Hunterian Club issues, containing general notices of the club; complete list of the works issued to members; complete list of the works arranged in the proper order for binding; reprinted page of contents for Vol. I of Rowlands' works", "created": {"type": "/type/datetime", "value": "2009-12-11T05:33:06.462144"}, "covers": [6021521, 6852638], "last_modified": {"type": "/type/datetime", "value": "2017-10-08T04:53:16.686384"}, "latest_revision": 4, "key": "/works/OL11862204W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5074749A"}}], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL11862231W 3 2010-12-03T16:26:44.255590 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:33:06.462144"}, "subject_places": ["Bavaria", "Bavaria (Germany)", "Germany"], "subjects": ["Birth customs", "Childbirth", "Social aspects", "Social aspects of Childbirth", "Social life and customs"], "latest_revision": 3, "key": "/works/OL11862231W", "title": "Kinder kriagn und Kinder wiagn", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5074771A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T16:26:44.255590"}, "revision": 3}
+/type/work /works/OL11862273W 1 2009-12-11T05:33:06.462144 {"title": "Study of social factors affecting the cardiac patient's response to the requirements of his medical condition", "created": {"type": "/type/datetime", "value": "2009-12-11T05:33:06.462144"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:33:06.462144"}, "latest_revision": 1, "key": "/works/OL11862273W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5074805A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11862345W 1 2009-12-11T05:33:06.462144 {"title": "Jean Vauquelin de la Fresnaye", "created": {"type": "/type/datetime", "value": "2009-12-11T05:33:06.462144"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:33:06.462144"}, "latest_revision": 1, "key": "/works/OL11862345W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5074854A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11862510W 3 2022-07-11T22:31:00.168955 {"title": "Stochastic programming", "key": "/works/OL11862510W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5075004A"}}], "type": {"key": "/type/work"}, "subjects": ["Bibliography", "Stochastic processes", "City planning", "Regional planning", "Statistical communication theory"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T05:33:06.462144"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-11T22:31:00.168955"}}
+/type/work /works/OL11862587W 1 2009-12-11T05:33:06.462144 {"title": "An analysis of the plays of Lord Dunsany and their reflection of the Irish national theatre ideals", "created": {"type": "/type/datetime", "value": "2009-12-11T05:33:06.462144"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:33:06.462144"}, "latest_revision": 1, "key": "/works/OL11862587W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5075060A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11862623W 2 2010-01-21T15:10:05.278291 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:33:06.462144"}, "title": "Anglo-Israel: or, The Saxon race proved to be the lost tribes of Israel", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T15:10:05.278291"}, "latest_revision": 2, "key": "/works/OL11862623W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5075094A"}}], "type": {"key": "/type/work"}, "subjects": ["Anglo-Israelism", "Lost tribes of Israel"], "revision": 2}
+/type/work /works/OL11862685W 2 2010-01-21T15:10:05.278291 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:33:06.462144"}, "title": "The expression of disease resistance response genes in Pisum sativum L. during race-specific resistance and heat shock", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T15:10:05.278291"}, "latest_revision": 2, "key": "/works/OL11862685W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5075150A"}}], "type": {"key": "/type/work"}, "subjects": ["Plants", "Disease and pest resistance", "Genetic aspects"], "revision": 2}
+/type/work /works/OL11862774W 2 2010-01-21T15:10:05.278291 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:33:16.222771"}, "title": "Arbeiterfestspiele der Deutschen Demokratischen Republik", "subject_places": ["Germany (East)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T15:10:05.278291"}, "latest_revision": 2, "key": "/works/OL11862774W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5075237A"}}], "type": {"key": "/type/work"}, "subjects": ["Festivals"], "revision": 2}
+/type/work /works/OL11863331W 2 2010-01-21T15:14:25.710037 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:33:16.222771"}, "title": "Ta\u0301ctica y estrategia del fu\u0301tbol", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T15:14:25.710037"}, "latest_revision": 2, "key": "/works/OL11863331W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5075721A"}}], "type": {"key": "/type/work"}, "subjects": ["Soccer"], "revision": 2}
+/type/work /works/OL11863417W 2 2010-01-21T15:14:25.710037 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:33:16.222771"}, "title": "Descripcion de los juegos de la infancia, los mas propios a\u0301 desenvolver sus facultades fisicas y morales, y para servir de abecedario gimna\u0301stico", "subject_places": ["Spain"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T15:14:25.710037"}, "latest_revision": 2, "key": "/works/OL11863417W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5075800A"}}], "type": {"key": "/type/work"}, "subjects": ["Education", "Games"], "revision": 2}
+/type/work /works/OL11863W 7 2019-07-22T09:23:14.963345 {"created": {"type": "/type/datetime", "value": "2009-10-05T21:09:40.848300"}, "subjects": ["Science", "Philosophy", "Filosofia Da Ciencia", "Sciences", "Philosophie"], "latest_revision": 7, "key": "/works/OL11863W", "title": "Foresight and understanding", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL22657A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2019-07-22T09:23:14.963345"}, "covers": [6660771], "revision": 7}
+/type/work /works/OL11864453W 3 2010-04-28T07:24:33.363748 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:33:25.201876"}, "title": "Pierre-Jakez H\u00e9lias et la Bretagne perdue", "covers": [5344882], "subject_places": ["Brittany (France)"], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:24:33.363748"}, "latest_revision": 3, "key": "/works/OL11864453W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5076680A"}}], "subject_people": ["Pierre Jakez H\u00e9lias"], "type": {"key": "/type/work"}, "subjects": ["Social life and customs", "Civilization"], "revision": 3}
+/type/work /works/OL11864525W 2 2010-01-21T15:19:27.017969 {"title": "La trage\u0301die de feu Gaspard de Colligny", "created": {"type": "/type/datetime", "value": "2009-12-11T05:33:25.201876"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T15:19:27.017969"}, "latest_revision": 2, "key": "/works/OL11864525W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5076713A"}}], "subject_people": ["Gaspard de Coligny seigneur de Ch\u00e2tillon (1519-1572)"], "type": {"key": "/type/work"}, "subjects": ["Drama"], "revision": 2}
+/type/work /works/OL11865257W 2 2010-01-21T15:19:27.017969 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:33:38.676397"}, "title": "Molecular characterization of genes associated with the disease resistance response of Pisum sativum to fungal pathogens and chitosan", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T15:19:27.017969"}, "latest_revision": 2, "key": "/works/OL11865257W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5077259A"}}], "type": {"key": "/type/work"}, "subjects": ["Plants", "Disease and pest resistance", "Chitosan", "Genetic aspects"], "revision": 2}
+/type/work /works/OL11865871W 2 2010-01-21T15:24:11.704257 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:33:46.824723"}, "title": "Les plees del coron", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T15:24:11.704257"}, "latest_revision": 2, "key": "/works/OL11865871W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5077735A"}}], "type": {"key": "/type/work"}, "subjects": ["Pleas of the crown"], "revision": 2}
+/type/work /works/OL11866030W 2 2010-01-21T15:24:11.704257 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:33:46.824723"}, "title": "Portfolios beyond the classroom", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T15:24:11.704257"}, "latest_revision": 2, "key": "/works/OL11866030W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5077847A"}}], "type": {"key": "/type/work"}, "subjects": ["Portfolios in education", "Educational evaluation"], "revision": 2}
+/type/work /works/OL11866102W 3 2019-03-11T12:06:08.114489 {"covers": [8428042], "last_modified": {"type": "/type/datetime", "value": "2019-03-11T12:06:08.114489"}, "latest_revision": 3, "key": "/works/OL11866102W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5077898A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T05:33:46.824723"}, "title": "Die Deutschen Banknoten ab 1871", "subject_places": ["Germany"], "subjects": ["Catalogs", "Paper money", "Bank notes"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11866159W 2 2010-01-21T15:24:11.704257 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:33:46.824723"}, "title": "Palaestina und Syrien von Anfang der Geschichte bis zum Siege des Islam", "subject_places": ["Palestine", "Syria"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T15:24:11.704257"}, "latest_revision": 2, "key": "/works/OL11866159W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5077947A"}}], "type": {"key": "/type/work"}, "subjects": ["Description and travel"], "revision": 2}
+/type/work /works/OL11866272W 2 2010-01-21T15:24:11.704257 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:33:46.824723"}, "title": "Symposium on Natural Food Toxicants", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T15:24:11.704257"}, "latest_revision": 2, "key": "/works/OL11866272W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5078023A"}}], "type": {"key": "/type/work"}, "subjects": ["Congresses", "Food poisoning", "Food contamination", "Toxins"], "revision": 2}
+/type/work /works/OL11866809W 1 2009-12-11T05:33:56.341612 {"title": "A manual for students who are preparing for examination at Apothecaries' Hall", "created": {"type": "/type/datetime", "value": "2009-12-11T05:33:56.341612"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:33:56.341612"}, "latest_revision": 1, "key": "/works/OL11866809W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5078415A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11867106W 2 2010-01-21T15:28:49.193307 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:33:56.341612"}, "title": "Aufs\u00e4tze", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T15:28:49.193307"}, "latest_revision": 2, "key": "/works/OL11867106W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5078654A"}}], "type": {"key": "/type/work"}, "subjects": ["Linguistics"], "revision": 2}
+/type/work /works/OL1186718W 2 2010-01-21T15:28:49.193307 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:40:45.436896"}, "title": "Histo\u0301ria e estrutura da li\u0301ngua portuguesa", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T15:28:49.193307"}, "latest_revision": 2, "key": "/works/OL1186718W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL119850A"}}], "type": {"key": "/type/work"}, "subjects": ["Portuguese language", "History"], "revision": 2}
+/type/work /works/OL11867333W 3 2010-12-03T17:49:31.872511 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:33:56.341612"}, "subject_places": ["Ontario"], "subjects": ["Curricula", "Education, Secondary", "High school enrollment", "Secondary Education", "Statistics"], "latest_revision": 3, "key": "/works/OL11867333W", "title": "Ontario school profiles", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5078839A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T17:49:31.872511"}, "revision": 3}
+/type/work /works/OL11867340W 2 2010-01-21T15:28:49.193307 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:33:56.341612"}, "title": "Rapport annuel du Centre de recherches en \u00e9ducation du Nouvel-Ontario", "subject_places": ["Sudbury Region", "Ontario"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T15:28:49.193307"}, "latest_revision": 2, "key": "/works/OL11867340W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5078846A"}}], "type": {"key": "/type/work"}, "subjects": ["Education", "French-Canadians"], "revision": 2}
+/type/work /works/OL11867619W 1 2009-12-11T05:33:56.341612 {"title": "Gentilia per epitomen antehac ..", "created": {"type": "/type/datetime", "value": "2009-12-11T05:33:56.341612"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:33:56.341612"}, "latest_revision": 1, "key": "/works/OL11867619W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5079051A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11867767W 3 2010-12-03T16:31:16.766774 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:34:07.050143"}, "subject_places": ["Brazil"], "subjects": ["Congresses", "Evaluation", "Universidade Federal do Par\u00e1", "Universities and colleges"], "latest_revision": 3, "key": "/works/OL11867767W", "title": "Avaliac\u0327a\u0303o institucional", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5079174A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T16:31:16.766774"}, "revision": 3}
+/type/work /works/OL1186847W 2 2010-01-21T15:33:39.551630 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:40:45.436896"}, "title": "This blessed plot", "subject_places": ["Great Britain", "England"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T15:33:39.551630"}, "latest_revision": 2, "key": "/works/OL1186847W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL119860A"}}], "type": {"key": "/type/work"}, "subjects": ["Description and travel"], "revision": 2}
+/type/work /works/OL11869219W 2 2010-01-21T15:38:17.877297 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:34:18.632737"}, "title": "Diffusion in semiconductors", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T15:38:17.877297"}, "latest_revision": 2, "key": "/works/OL11869219W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5080267A"}}], "type": {"key": "/type/work"}, "subjects": ["Diffusion", "Semiconductors"], "revision": 2}
+/type/work /works/OL11869376W 4 2020-08-01T18:14:20.899205 {"last_modified": {"type": "/type/datetime", "value": "2020-08-01T18:14:20.899205"}, "title": "The Meskwaki and anthropologists", "created": {"type": "/type/datetime", "value": "2009-12-11T05:34:18.632737"}, "covers": [10028035], "subject_places": ["Iowa"], "subjects": ["Action Anthropology (Program)", "Ethnology", "Field work", "Fieldwork", "Fox Indians", "History", "Influence", "Social conditions", "Indians of north america, northwest, old", "Indians of north america, social conditions", "Ethnology, united states"], "latest_revision": 4, "key": "/works/OL11869376W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5080388A"}}], "subject_times": ["20th century"], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL11869967W 8 2020-08-01T22:45:53.388572 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:34:27.494213"}, "subjects": ["Architecture, Zen", "Zen Architecture", "Zen architecture", "Architecture"], "latest_revision": 8, "key": "/works/OL11869967W", "title": "Zen architecture", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5080829A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-08-01T22:45:53.388572"}, "covers": [5345558], "revision": 8}
+/type/work /works/OL11870024W 2 2010-01-21T15:43:42.554594 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:34:27.494213"}, "title": "M\u00e9moire de l'Association canadienne-fran\u00e7aise de l'Ontario sur le multilinguisme en mati\u00e8re de radioffusion", "subject_places": ["Ontario"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T15:43:42.554594"}, "latest_revision": 2, "key": "/works/OL11870024W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5080865A"}}], "type": {"key": "/type/work"}, "subjects": ["Radiodiffusion", "Multiculturalisme", "Canadiens fran\u00e7ais"], "revision": 2}
+/type/work /works/OL11870438W 3 2010-12-03T16:31:16.766774 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:34:27.494213"}, "subjects": ["Civilization, Modern", "Modern Civilization", "Social change"], "latest_revision": 3, "key": "/works/OL11870438W", "title": "Some potential societal developments--1970-2000", "subject_times": ["1950-"], "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5081184A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T16:31:16.766774"}, "revision": 3}
+/type/work /works/OL11870475W 2 2010-01-21T15:43:42.554594 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:34:27.494213"}, "title": "Nel bel mezzo del dominio", "subject_places": ["Celle Ligure (Italy)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T15:43:42.554594"}, "latest_revision": 2, "key": "/works/OL11870475W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5081216A"}}], "subject_times": ["17th century", "18th century"], "type": {"key": "/type/work"}, "subjects": ["Politics and government", "Social conditions", "Economic conditions"], "revision": 2}
+/type/work /works/OL11870816W 2 2010-01-21T15:43:42.554594 {"title": "Navidad en la tradici\u00f3n de los pobres", "created": {"type": "/type/datetime", "value": "2009-12-11T05:34:35.933580"}, "subject_places": ["Latin America"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T15:43:42.554594"}, "latest_revision": 2, "key": "/works/OL11870816W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5081484A"}}], "subject_people": ["Jesus Christ"], "type": {"key": "/type/work"}, "subjects": ["Christianity and culture", "Nativity", "Poor", "Religious life and customs", "Religious life", "Christian art and symbolism", "Church work with the poor"], "revision": 2}
+/type/work /works/OL1187087W 1 2009-12-09T20:40:57.413696 {"title": "Sonetos mi\u0301os", "created": {"type": "/type/datetime", "value": "2009-12-09T20:40:57.413696"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T20:40:57.413696"}, "latest_revision": 1, "key": "/works/OL1187087W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL119884A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11871363W 1 2009-12-11T05:34:35.933580 {"title": "On some spectograms of nova Persei 1901", "created": {"type": "/type/datetime", "value": "2009-12-11T05:34:35.933580"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:34:35.933580"}, "latest_revision": 1, "key": "/works/OL11871363W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5081901A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11871561W 3 2010-12-03T16:33:29.427995 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T16:33:29.427995"}, "title": "Panegiriche orazioni e prose toscane", "created": {"type": "/type/datetime", "value": "2009-12-11T05:34:35.933580"}, "subjects": ["Italian Sermons", "Sermons, Italian", "Speeches, addresses, etc., Italian"], "latest_revision": 3, "key": "/works/OL11871561W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5082046A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11871630W 2 2010-01-21T15:48:37.097438 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:34:35.933580"}, "title": "Zinkenbacher Variationen f\u00fcr Klavier, Op. 24", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T15:48:37.097438"}, "latest_revision": 2, "key": "/works/OL11871630W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5082091A"}}], "type": {"key": "/type/work"}, "subjects": ["Piano music"], "revision": 2}
+/type/work /works/OL11872327W 2 2010-01-21T15:53:24.378962 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:34:43.677244"}, "title": "The human environment", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T15:53:24.378962"}, "latest_revision": 2, "key": "/works/OL11872327W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5082597A"}}], "type": {"key": "/type/work"}, "subjects": ["Human behavior", "Psychology"], "revision": 2}
+/type/work /works/OL11872354W 2 2010-01-21T15:53:24.378962 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:34:43.677244"}, "title": "The teaching of handwriting", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T15:53:24.378962"}, "latest_revision": 2, "key": "/works/OL11872354W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5082619A"}}], "type": {"key": "/type/work"}, "subjects": ["Study and teaching", "Penmanship"], "revision": 2}
+/type/work /works/OL11872370W 2 2010-01-21T15:53:24.378962 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:34:43.677244"}, "title": "The Sioux, 1798-1922", "subject_places": ["North America"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T15:53:24.378962"}, "latest_revision": 2, "key": "/works/OL11872370W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5082635A"}}], "type": {"key": "/type/work"}, "subjects": ["Dakota Indians", "Indian calendar", "Picture-writing, Indian"], "revision": 2}
+/type/work /works/OL11872533W 3 2018-11-18T12:31:29.875108 {"last_modified": {"type": "/type/datetime", "value": "2018-11-18T12:31:29.875108"}, "latest_revision": 3, "key": "/works/OL11872533W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5082754A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T05:34:43.677244"}, "title": "La France en l'an 2000", "subject_places": ["France"], "subjects": ["Social conditions", "Social prediction", "Economic conditions", "Economic forecasting"], "subject_times": ["1945-"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11872876W 2 2010-01-21T15:53:24.378962 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:34:53.659141"}, "title": "Has the basement store a future?", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T15:53:24.378962"}, "latest_revision": 2, "key": "/works/OL11872876W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5083026A"}}], "type": {"key": "/type/work"}, "subjects": ["Department stores"], "revision": 2}
+/type/work /works/OL11872927W 1 2009-12-11T05:34:53.659141 {"title": "Bewertung von Vermo\u0308gensverwaltungsinstituten", "created": {"type": "/type/datetime", "value": "2009-12-11T05:34:53.659141"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:34:53.659141"}, "latest_revision": 1, "key": "/works/OL11872927W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5083063A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11872999W 2 2010-01-21T15:53:24.378962 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:34:53.659141"}, "title": "Kashmir", "subject_places": ["Kashmir"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T15:53:24.378962"}, "latest_revision": 2, "key": "/works/OL11872999W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5083125A"}}], "type": {"key": "/type/work"}, "subjects": ["History"], "revision": 2}
+/type/work /works/OL11873161W 2 2010-01-21T15:53:24.378962 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:34:53.659141"}, "title": "Die Richtlinie u\u0308ber das Folgerecht des Urhebers des Originals eines Kunstwerks", "subject_places": ["Germany"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T15:53:24.378962"}, "latest_revision": 2, "key": "/works/OL11873161W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5083256A"}}], "type": {"key": "/type/work"}, "subjects": ["Copyright", "Droit de suite", "Art"], "revision": 2}
+/type/work /works/OL11873186W 1 2009-12-11T05:34:53.659141 {"title": "Informationstechnische Integration des industriellen Service in das Unternehmen", "created": {"type": "/type/datetime", "value": "2009-12-11T05:34:53.659141"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:34:53.659141"}, "latest_revision": 1, "key": "/works/OL11873186W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5083276A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11873418W 4 2010-12-03T16:32:57.256769 {"covers": [5345838], "last_modified": {"type": "/type/datetime", "value": "2010-12-03T16:32:57.256769"}, "latest_revision": 4, "key": "/works/OL11873418W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5083459A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T05:34:53.659141"}, "title": "Les de\u0301penses des gouvernements provinciaux canadiens", "subject_places": ["Canada"], "subjects": ["Finance, Public", "Local finance", "Provinces", "Public Finance"], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL11874207W 2 2010-01-21T15:58:33.984346 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:35:02.541440"}, "title": "Potential for trade in dairy cattle between the United States and China", "subject_places": ["China", "United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T15:58:33.984346"}, "latest_revision": 2, "key": "/works/OL11874207W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5084086A"}}], "type": {"key": "/type/work"}, "subjects": ["Milk consumption", "Dairy cattle", "Dairying"], "revision": 2}
+/type/work /works/OL11874371W 2 2010-01-21T15:58:33.984346 {"title": "Not to be touched", "created": {"type": "/type/datetime", "value": "2009-12-11T05:35:02.541440"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T15:58:33.984346"}, "latest_revision": 2, "key": "/works/OL11874371W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5084226A"}}], "subject_people": ["Marta Deskur (1962-)"], "type": {"key": "/type/work"}, "subjects": ["Portraits", "Hijab (Islamic clothing)", "Interviews", "Swimmers", "Pregnant women", "Pictorial works", "Photography of families"], "revision": 2}
+/type/work /works/OL118743W 2 2021-12-24T20:56:21.103826 {"title": "Socratic testimonies", "key": "/works/OL118743W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL20631A"}}], "type": {"key": "/type/work"}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-10-18T05:58:14.983856"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-24T20:56:21.103826"}}
+/type/work /works/OL11874962W 2 2010-01-21T16:03:40.792226 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:35:11.258045"}, "title": "Report on the outcome of consultations with teenagers on the issues to be considered by the Minister for Children when examining the age of consent for sexual activity", "subject_places": ["Ireland"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T16:03:40.792226"}, "latest_revision": 2, "key": "/works/OL11874962W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5084695A"}}], "type": {"key": "/type/work"}, "subjects": ["Sexual behavior", "Teenagers"], "revision": 2}
+/type/work /works/OL11875223W 2 2010-01-21T16:03:40.792226 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:35:11.258045"}, "title": "New essays in the teaching of literature : proceedings of the Literature Commission Third International Conference on the Teaching of English, Sydney, Australia, 1980", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T16:03:40.792226"}, "latest_revision": 2, "key": "/works/OL11875223W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5084895A"}}], "type": {"key": "/type/work"}, "subjects": ["English literature", "Study and teaching"], "revision": 2}
+/type/work /works/OL11875415W 2 2010-01-21T16:03:40.792226 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:35:11.258045"}, "title": "The equilibrium size of the financial sector", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T16:03:40.792226"}, "latest_revision": 2, "key": "/works/OL11875415W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5085041A"}}], "type": {"key": "/type/work"}, "subjects": ["Corporations", "Equilibrium (Economics)", "Finance", "Mathematical models"], "revision": 2}
+/type/work /works/OL11875460W 2 2020-12-19T13:08:59.462012 {"title": "Puteri Gunung Ledang", "key": "/works/OL11875460W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5085075A"}}], "type": {"key": "/type/work"}, "subjects": ["Puteri Gunung Ledang (Motion picture)"], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T05:35:11.258045"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-19T13:08:59.462012"}}
+/type/work /works/OL11875585W 4 2010-12-03T22:27:43.291987 {"covers": [5488039], "last_modified": {"type": "/type/datetime", "value": "2010-12-03T22:27:43.291987"}, "latest_revision": 4, "key": "/works/OL11875585W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5085166A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T05:35:11.258045"}, "title": "Critique de la raison journalistique", "subject_places": ["France"], "subjects": ["Commercial Journalism", "Economic aspects", "Economic aspects of Press", "Journalism, Commercial", "Press"], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL11875606W 3 2010-12-04T02:06:20.776133 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:35:11.258045"}, "subject_places": ["Brazil", "Rio Grande do Norte", "Rio Grande do Norte (Brazil)"], "subjects": ["Elections", "History", "Partido Comunista do Brasil"], "latest_revision": 3, "key": "/works/OL11875606W", "title": "O partido Comunista do Brasil e as elei\u00e7\u00f5es no Rio Grande do Norte (1945 e 1947)", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5085185A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-04T02:06:20.776133"}, "revision": 3}
+/type/work /works/OL11875796W 2 2010-01-21T16:08:30.809089 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:35:19.421066"}, "title": "Poems in early foreign language instruction", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T16:08:30.809089"}, "latest_revision": 2, "key": "/works/OL11875796W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5085322A"}}], "type": {"key": "/type/work"}, "subjects": ["Study and teaching", "Language arts (Elementary)", "Language and languages"], "revision": 2}
+/type/work /works/OL11875803W 3 2010-12-03T16:35:34.902831 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T16:35:34.902831"}, "title": "Summer foreign language programs for school students", "created": {"type": "/type/datetime", "value": "2009-12-11T05:35:19.421066"}, "subjects": ["Languages, Modern", "Modern Languages", "Study and teaching"], "latest_revision": 3, "key": "/works/OL11875803W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5085329A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11875948W 1 2009-12-11T05:35:19.421066 {"title": "Mar revuelta", "created": {"type": "/type/datetime", "value": "2009-12-11T05:35:19.421066"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:35:19.421066"}, "latest_revision": 1, "key": "/works/OL11875948W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5085449A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11876091W 1 2009-12-11T05:35:19.421066 {"title": "Hong Kong's inflation", "created": {"type": "/type/datetime", "value": "2009-12-11T05:35:19.421066"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:35:19.421066"}, "latest_revision": 1, "key": "/works/OL11876091W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5085538A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11876510W 1 2009-12-11T05:35:19.421066 {"title": "(Letters and tracts on the Irish estates of the Corporation of London, and the City companies)", "created": {"type": "/type/datetime", "value": "2009-12-11T05:35:19.421066"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:35:19.421066"}, "latest_revision": 1, "key": "/works/OL11876510W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5085837A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11876621W 1 2009-12-11T05:35:19.421066 {"title": "Modelling the Great North of Scotland Railway", "created": {"type": "/type/datetime", "value": "2009-12-11T05:35:19.421066"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:35:19.421066"}, "latest_revision": 1, "key": "/works/OL11876621W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5085925A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1187699W 2 2010-01-21T16:13:32.099881 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:40:57.413696"}, "title": "Littledene, patterns of change", "subject_places": ["New Zealand", "Littledene"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T16:13:32.099881"}, "latest_revision": 2, "key": "/works/OL1187699W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL119951A"}}], "type": {"key": "/type/work"}, "subjects": ["Social conditions", "Education", "Economic conditions", "Social surveys"], "revision": 2}
+/type/work /works/OL11877026W 5 2022-12-12T01:30:27.716610 {"covers": [9479531], "key": "/works/OL11877026W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5086237A"}}], "title": "How the religious right shaped lesbian and gay activism", "subject_places": ["United States"], "subjects": ["Gay liberation movement", "Religious right", "Gay rights", "Homophobia", "Homosexuality", "Christianity and homosexuality", "Christianity", "Homosexuels", "Droits", "Droite religieuse", "SOCIAL SCIENCE", "Gay Studies"], "type": {"key": "/type/work"}, "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2009-12-11T05:35:27.573833"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-12T01:30:27.716610"}}
+/type/work /works/OL11877083W 1 2009-12-11T05:35:27.573833 {"title": "Quantitative approaches in weedand herbicide research and their practical application [Proceedings of the 8th Symposium of the European Weed Research Society, Braunschweig, Germany, 14-16 June 1993]", "created": {"type": "/type/datetime", "value": "2009-12-11T05:35:27.573833"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:35:27.573833"}, "latest_revision": 1, "key": "/works/OL11877083W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5086283A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11877670W 1 2009-12-11T05:35:27.573833 {"title": "What every working woman wants", "created": {"type": "/type/datetime", "value": "2009-12-11T05:35:27.573833"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:35:27.573833"}, "latest_revision": 1, "key": "/works/OL11877670W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5086685A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11877809W 2 2010-01-21T16:13:32.099881 {"title": "Le Blond\u00e9lisme", "created": {"type": "/type/datetime", "value": "2009-12-11T05:35:35.846368"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T16:13:32.099881"}, "latest_revision": 2, "key": "/works/OL11877809W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5086775A"}}], "subject_people": ["Maurice Blondel (1861-1949)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11878724W 1 2009-12-11T05:35:43.977793 {"title": "The ecology of the Wash", "created": {"type": "/type/datetime", "value": "2009-12-11T05:35:43.977793"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:35:43.977793"}, "latest_revision": 1, "key": "/works/OL11878724W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5087441A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11879035W 2 2010-01-21T16:18:39.470096 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:35:43.977793"}, "title": "Plazas de Extremadura", "subject_places": ["Extremadura", "Spain", "Extremadura (Spain)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T16:18:39.470096"}, "latest_revision": 2, "key": "/works/OL11879035W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5087662A"}}], "type": {"key": "/type/work"}, "subjects": ["Pictorial works", "Plazas"], "revision": 2}
+/type/work /works/OL11879416W 2 2010-01-21T16:18:39.470096 {"title": "Historical anecdotes of the families of the Boleynes, Careys, Mordaunts, Hamiltons and Jocelyns", "created": {"type": "/type/datetime", "value": "2009-12-11T05:35:43.977793"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T16:18:39.470096"}, "latest_revision": 2, "key": "/works/OL11879416W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5087921A"}}], "subject_people": ["Jocelyn family", "Boleynes family", "Hamilton family", "Carey family", "Mordaunts family"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11879494W 1 2009-12-11T05:35:43.977793 {"title": "Et in arcadia ego", "created": {"type": "/type/datetime", "value": "2009-12-11T05:35:43.977793"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:35:43.977793"}, "latest_revision": 1, "key": "/works/OL11879494W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5087973A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11879577W 3 2010-12-03T16:35:34.902831 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T16:35:34.902831"}, "latest_revision": 3, "key": "/works/OL11879577W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5088029A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T05:35:43.977793"}, "title": "Nakshalan\u0101m\u0101", "subject_places": ["India"], "subjects": ["Naxalite Movement", "Politics and government"], "subject_times": ["1947-"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11879875W 1 2009-12-11T05:35:51.917905 {"title": "Reconstructing the teacher and learner", "created": {"type": "/type/datetime", "value": "2009-12-11T05:35:51.917905"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:35:51.917905"}, "latest_revision": 1, "key": "/works/OL11879875W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5088247A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11880200W 2 2010-01-21T16:24:12.315494 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:35:51.917905"}, "title": "Remarriage, challenge and opportunity", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T16:24:12.315494"}, "latest_revision": 2, "key": "/works/OL11880200W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5088475A"}}], "type": {"key": "/type/work"}, "subjects": ["Pastoral counseling", "Marriage counseling", "Remarriage"], "revision": 2}
+/type/work /works/OL11880329W 3 2019-11-28T15:38:50.787673 {"last_modified": {"type": "/type/datetime", "value": "2019-11-28T15:38:50.787673"}, "title": "Active total return management of fixed income portfolios", "created": {"type": "/type/datetime", "value": "2009-12-11T05:35:51.917905"}, "subjects": ["Portfolio management", "Investments", "Placement de capitaux"], "latest_revision": 3, "key": "/works/OL11880329W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5088554A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11880586W 3 2021-08-21T07:23:46.459029 {"title": "Vitamins and minerals", "key": "/works/OL11880586W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5088715A"}}], "type": {"key": "/type/work"}, "subjects": ["Popular works", "Vitamins in human nutrition", "Minerals in human nutrition", "Vitamins", "Minerals"], "covers": [11739851], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T05:35:51.917905"}, "last_modified": {"type": "/type/datetime", "value": "2021-08-21T07:23:46.459029"}}
+/type/work /works/OL1188102W 3 2010-12-05T14:45:25.876815 {"last_modified": {"type": "/type/datetime", "value": "2010-12-05T14:45:25.876815"}, "title": "La Vierge Marie et l'E\u0301glise", "created": {"type": "/type/datetime", "value": "2009-12-09T20:41:09.842479"}, "subjects": ["Catholic Church", "Theology"], "latest_revision": 3, "key": "/works/OL1188102W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL120000A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11881522W 3 2021-03-07T04:34:13.252973 {"title": "Before many witnesses", "key": "/works/OL11881522W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5089383A"}}], "subject_people": ["Howard J. Chidley (1878-1966)"], "type": {"key": "/type/work"}, "covers": [10678482], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T05:36:00.955879"}, "last_modified": {"type": "/type/datetime", "value": "2021-03-07T04:34:13.252973"}}
+/type/work /works/OL11881792W 2 2010-01-21T16:29:34.869463 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:36:09.376473"}, "title": "Hlobal\u02b9ni priorytety rozvytku v rehional\u02b9nykh i nat\ufe20s\ufe21ionhal\u02b9nykh interpretat\ufe20s\ufe21ii\ufe20a\ufe21kh krai\u0308n Azii\u0308 i Afryky: perspektyvy ta umovy konsensusu", "subject_places": ["Africa", "Asia"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T16:29:34.869463"}, "latest_revision": 2, "key": "/works/OL11881792W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5089586A"}}], "type": {"key": "/type/work"}, "subjects": ["Economic policy", "Congresses"], "revision": 2}
+/type/work /works/OL1188201W 2 2010-01-21T16:29:34.869463 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:41:09.842479"}, "title": "Forest fire-fighters handbook", "subject_places": ["New York (State)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T16:29:34.869463"}, "latest_revision": 2, "key": "/works/OL1188201W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL120005A"}}], "type": {"key": "/type/work"}, "subjects": ["Forest fires"], "revision": 2}
+/type/work /works/OL11882070W 2 2010-01-21T16:29:34.869463 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:36:09.376473"}, "title": "Lukas als Historiker: zur Datierung des lukanischen Doppelwerkes", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T16:29:34.869463"}, "latest_revision": 2, "key": "/works/OL11882070W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5089803A"}}], "type": {"key": "/type/work"}, "subjects": ["OUR Brockhaus selection", "Bible"], "revision": 2}
+/type/work /works/OL11882386W 3 2010-12-03T16:38:24.839993 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T16:38:24.839993"}, "title": "Le Message de l'Apocalypse; ou, Les Destin\u00e9es de l'humanit\u00e9", "created": {"type": "/type/datetime", "value": "2009-12-11T05:36:09.376473"}, "subjects": ["Bible", "Criticism, interpretation"], "latest_revision": 3, "key": "/works/OL11882386W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5090021A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11882702W 1 2009-12-11T05:36:17.442774 {"title": "Family pictures, a novel", "created": {"type": "/type/datetime", "value": "2009-12-11T05:36:17.442774"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:36:17.442774"}, "latest_revision": 1, "key": "/works/OL11882702W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5090274A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11882763W 2 2010-01-21T16:34:39.849503 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:36:17.442774"}, "title": "Wat onderscheidt het Onderwijs aan de Christelijke Gymnasia van dat aan de andere?", "subject_places": ["Netherlands"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T16:34:39.849503"}, "latest_revision": 2, "key": "/works/OL11882763W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5090328A"}}], "type": {"key": "/type/work"}, "subjects": ["Reformed Church", "Church and education", "Education"], "revision": 2}
+/type/work /works/OL11882901W 1 2009-12-11T05:36:17.442774 {"title": "A catalogue of incunabula and manuscripts in the Army Medical Library", "created": {"type": "/type/datetime", "value": "2009-12-11T05:36:17.442774"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:36:17.442774"}, "latest_revision": 1, "key": "/works/OL11882901W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5090442A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11883443W 1 2009-12-11T05:36:17.442774 {"title": "Bol'sheviki Kazakhstana v revolyutsii 1905-1907 godov", "created": {"type": "/type/datetime", "value": "2009-12-11T05:36:17.442774"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:36:17.442774"}, "latest_revision": 1, "key": "/works/OL11883443W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5090848A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11883757W 2 2010-01-21T16:34:39.849503 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:36:25.746494"}, "title": "Avtomobil\u02b9nai\ufe20a\ufe21 promyshlennost\u02b9 I\ufe20A\ufe21ponii", "subject_places": ["Japan"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T16:34:39.849503"}, "latest_revision": 2, "key": "/works/OL11883757W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5091058A"}}], "type": {"key": "/type/work"}, "subjects": ["Automobile industry and trade"], "revision": 2}
+/type/work /works/OL11884594W 2 2010-01-21T16:40:05.196801 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:36:25.746494"}, "title": "Drei Ho\u0308rspiele", "subject_places": ["Germany"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T16:40:05.196801"}, "latest_revision": 2, "key": "/works/OL11884594W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5091624A"}}], "type": {"key": "/type/work"}, "subjects": ["Radio plays"], "revision": 2}
+/type/work /works/OL11884732W 3 2010-12-03T16:38:24.839993 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:36:33.090544"}, "subject_places": ["Canada"], "subjects": ["Biography", "Conscientious objectors", "Religious aspects", "Religious aspects of War", "War", "World War, 1914-1918", "World War, 1939-1945"], "latest_revision": 3, "key": "/works/OL11884732W", "title": "Nonresistance under test", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5091737A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T16:38:24.839993"}, "revision": 3}
+/type/work /works/OL11884834W 2 2010-01-21T16:40:05.196801 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:36:33.090544"}, "title": "Oklahoma exonumia", "subject_places": ["Oklahoma"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T16:40:05.196801"}, "latest_revision": 2, "key": "/works/OL11884834W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5091802A"}}], "type": {"key": "/type/work"}, "subjects": ["Collectors and collecting", "Tokens", "Catalogs", "Medals"], "revision": 2}
+/type/work /works/OL1188537W 7 2020-09-30T12:08:18.493217 {"covers": [10005475], "last_modified": {"type": "/type/datetime", "value": "2020-09-30T12:08:18.493217"}, "latest_revision": 7, "key": "/works/OL1188537W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL120071A"}}], "created": {"type": "/type/datetime", "value": "2009-12-09T20:41:09.842479"}, "title": "Theodore Winthrop", "subjects": ["Criticism and interpretation", "Studies"], "subject_people": ["Theodore Winthrop (1828-1861)"], "type": {"key": "/type/work"}, "revision": 7}
+/type/work /works/OL11885395W 2 2010-01-21T16:40:05.196801 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:36:33.090544"}, "title": "The mission of the Christian college in the modern world", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T16:40:05.196801"}, "latest_revision": 2, "key": "/works/OL11885395W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5092109A"}}], "type": {"key": "/type/work"}, "subjects": ["Church and education", "Church and state", "Church and college"], "revision": 2}
+/type/work /works/OL11885450W 5 2022-12-15T00:16:12.198091 {"subject_places": ["Japan"], "subjects": ["Broadband communication systems", "Communication and traffic", "Telecommunication policy, japan", "Technological innovations, japan", "Transports et communications", "Syst\u00e8mes de t\u00e9l\u00e9communications \u00e0 large bande", "BUSINESS & ECONOMICS", "Industries", "Media & Communications", "TECHNOLOGY & ENGINEERING", "Telecommunications"], "key": "/works/OL11885450W", "title": "Broadband economics", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5092150A"}}], "type": {"key": "/type/work"}, "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2009-12-11T05:36:33.090544"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-15T00:16:12.198091"}}
+/type/work /works/OL11885775W 3 2010-12-03T16:38:24.839993 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:36:40.708223"}, "subject_places": ["Soviet Union"], "subjects": ["Rossi\u012dskaya sotsial-demokraticheskaya rabochaya partiya", "Technology"], "latest_revision": 3, "key": "/works/OL11885775W", "title": "Partiya bol'shevikov i tekhnicheskii\u0306 progress", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5092387A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T16:38:24.839993"}, "revision": 3}
+/type/work /works/OL11886122W 1 2009-12-11T05:36:40.708223 {"title": "La mano en el sol", "created": {"type": "/type/datetime", "value": "2009-12-11T05:36:40.708223"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:36:40.708223"}, "latest_revision": 1, "key": "/works/OL11886122W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5092603A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11886472W 2 2020-12-20T10:09:25.077124 {"title": "Khwa\u0304mrunr\u00e6\u0304ng, santipha\u0304p, l\u00e6 khwa\u0304mla\u0304kla\u0304i nai lo\u0304k \u02bbItsala\u0304m", "key": "/works/OL11886472W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5092835A"}}], "type": {"key": "/type/work"}, "subjects": ["Islam", "Doctrines", "Violence"], "description": {"type": "/type/text", "value": "Study on Islamic beliefs, tradition, and identity and how it is related to violence."}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T05:36:40.708223"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-20T10:09:25.077124"}}
+/type/work /works/OL11886516W 1 2009-12-11T05:36:40.708223 {"title": "Breakthrough", "created": {"type": "/type/datetime", "value": "2009-12-11T05:36:40.708223"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:36:40.708223"}, "latest_revision": 1, "key": "/works/OL11886516W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5092869A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1188668W 2 2010-01-21T16:44:46.550864 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:41:09.842479"}, "title": "The effect of temperature, time, and various amounts of water used in slaking on the settling rate of the lime particle", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T16:44:46.550864"}, "latest_revision": 2, "key": "/works/OL1188668W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL120085A"}}], "type": {"key": "/type/work"}, "subjects": ["Lime"], "revision": 2}
+/type/work /works/OL11886856W 2 2010-12-03T16:39:28.061671 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T16:39:28.061671"}, "title": "The Scottish carter", "created": {"type": "/type/datetime", "value": "2009-12-11T05:36:49.084393"}, "subjects": ["Scottish Horse and Motormen's Association"], "latest_revision": 2, "key": "/works/OL11886856W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5093080A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11886959W 1 2009-12-11T05:36:49.084393 {"title": "Facts, figures and opinions regarding the salaries of public school principals in Toronto", "created": {"type": "/type/datetime", "value": "2009-12-11T05:36:49.084393"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:36:49.084393"}, "latest_revision": 1, "key": "/works/OL11886959W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5093156A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11887766W 1 2009-12-11T05:36:56.919059 {"title": "Ashita ga aru kara", "created": {"type": "/type/datetime", "value": "2009-12-11T05:36:56.919059"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:36:56.919059"}, "latest_revision": 1, "key": "/works/OL11887766W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5093730A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11887920W 3 2017-05-18T19:56:33.254664 {"title": "Wedekind; Leben und Werk", "created": {"type": "/type/datetime", "value": "2009-12-11T05:36:56.919059"}, "last_modified": {"type": "/type/datetime", "value": "2017-05-18T19:56:33.254664"}, "latest_revision": 3, "key": "/works/OL11887920W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1775218A"}}], "subject_people": ["Frank Wedekind (1864-1918)"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11887967W 2 2010-01-21T16:50:00.687858 {"title": "\u02bbAbd All\u0101h al-\u02bbAraw\u012b wa-\u1e25ad\u0101that al-riw\u0101yah", "created": {"type": "/type/datetime", "value": "2009-12-11T05:36:56.919059"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T16:50:00.687858"}, "latest_revision": 2, "key": "/works/OL11887967W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5093868A"}}], "subject_people": ["\u02bbArawi, \u02bbAbd All\u0101h"], "type": {"key": "/type/work"}, "subjects": ["Fictional works"], "revision": 2}
+/type/work /works/OL11888038W 2 2010-01-21T16:50:00.687858 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:36:56.919059"}, "title": "Progress in mitochondrial, mendelian, and chromosomal disorders", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T16:50:00.687858"}, "latest_revision": 2, "key": "/works/OL11888038W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5093927A"}}], "type": {"key": "/type/work"}, "subjects": ["Congresses", "Chromosome abnormalities", "Mitochondria", "Genetics"], "revision": 2}
+/type/work /works/OL11888135W 2 2010-01-21T16:50:00.687858 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:36:56.919059"}, "title": "Institutiones philosophicae quae Romae in Pontificia Universitate gregoriana", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T16:50:00.687858"}, "latest_revision": 2, "key": "/works/OL11888135W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5093999A"}}], "type": {"key": "/type/work"}, "subjects": ["Philosophy"], "revision": 2}
+/type/work /works/OL11888437W 2 2010-01-21T16:50:00.687858 {"title": "Pierre qui roule", "created": {"type": "/type/datetime", "value": "2009-12-11T05:36:56.919059"}, "subject_places": ["Canada", "Qu\u00e9bec (Province)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T16:50:00.687858"}, "latest_revision": 2, "key": "/works/OL11888437W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5094193A"}}], "subject_people": ["R\u00e9mi Tremblay (1847-1926)"], "type": {"key": "/type/work"}, "subjects": ["Biographies", "Journalistes"], "revision": 2}
+/type/work /works/OL11888624W 2 2010-01-21T16:55:19.279680 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:36:56.919059"}, "title": "Une nouvelle e\u0301poque de l'action culturelle", "subject_places": ["France"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T16:55:19.279680"}, "latest_revision": 2, "key": "/works/OL11888624W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5094335A"}}], "subject_times": ["21st century"], "type": {"key": "/type/work"}, "subjects": ["History", "Culture diffusion", "Cultural policy", "Cultural property"], "revision": 2}
+/type/work /works/OL11888706W 3 2010-12-03T16:38:54.710336 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:37:05.446111"}, "subject_places": ["Great Britain"], "subjects": ["Handbooks, manuals", "Languages, Modern", "Modern Languages", "Study and teaching"], "latest_revision": 3, "key": "/works/OL11888706W", "title": "Modern languages", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5094375A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T16:38:54.710336"}, "revision": 3}
+/type/work /works/OL11888853W 1 2009-12-11T05:37:05.446111 {"title": "Parva\u0304z\u02b9ha\u0304-yi munh\u0323ani\u0304", "created": {"type": "/type/datetime", "value": "2009-12-11T05:37:05.446111"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:37:05.446111"}, "latest_revision": 1, "key": "/works/OL11888853W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5094492A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11888866W 4 2020-09-26T15:33:23.682452 {"last_modified": {"type": "/type/datetime", "value": "2020-09-26T15:33:23.682452"}, "title": "Miguel Hidalgo, entre la libertad y la tradicio\u0301n", "created": {"type": "/type/datetime", "value": "2009-12-11T05:37:05.446111"}, "covers": [5348274], "subject_places": ["Mexico"], "subjects": ["Civilization", "History", "Revolutionaries", "Catholic Church", "Clergy"], "subject_people": ["Miguel Hidalgo y Costilla (1753-1811)"], "key": "/works/OL11888866W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5094506A"}}], "latest_revision": 4, "subject_times": ["Wars of Independence, 1810-1821", "19th century"], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL11889097W 3 2022-06-17T05:57:47.067691 {"title": "Lieber katholisch als neuprotestantisch", "key": "/works/OL11889097W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5094678A"}}], "subject_people": ["Karl Barth (1886-1968)"], "type": {"key": "/type/work"}, "subjects": ["Protestant churches", "Relations", "Catholic Church", "Christian sects"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T05:37:05.446111"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-17T05:57:47.067691"}}
+/type/work /works/OL11889458W 2 2010-01-21T16:55:19.279680 {"title": "Juan-Miguel Villar Mir", "created": {"type": "/type/datetime", "value": "2009-12-11T05:37:05.446111"}, "subject_places": ["Spain"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T16:55:19.279680"}, "latest_revision": 2, "key": "/works/OL11889458W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5094978A"}}], "subject_people": ["Juan-Miguel Villar Mir"], "type": {"key": "/type/work"}, "subjects": ["Businessmen", "Biography"], "revision": 2}
+/type/work /works/OL11889587W 3 2010-04-28T07:24:33.363748 {"title": "Wushe shi jian", "created": {"type": "/type/datetime", "value": "2009-12-11T05:37:05.446111"}, "covers": [5348456], "subject_places": ["Taiwan"], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:24:33.363748"}, "latest_revision": 3, "key": "/works/OL11889587W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5095066A"}}], "subject_times": ["1895-1945"], "subjects": ["Musha Rebellion, 1930", "Taiwan aborigines", "History"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11890469W 1 2009-12-11T05:37:13.468605 {"title": "Wu zi tian shu", "created": {"type": "/type/datetime", "value": "2009-12-11T05:37:13.468605"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:37:13.468605"}, "latest_revision": 1, "key": "/works/OL11890469W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5095702A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11890605W 2 2010-01-21T17:00:11.288917 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:37:13.468605"}, "title": "The effect of water deficit and panicle anatomy on wild oat (Avena fatua L.) seed dormancy and abscisic acid content", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T17:00:11.288917"}, "latest_revision": 2, "key": "/works/OL11890605W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5095809A"}}], "type": {"key": "/type/work"}, "subjects": ["Wild oat"], "revision": 2}
+/type/work /works/OL11890609W 2 2010-01-21T17:00:11.288917 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:37:13.468605"}, "title": "Da Y\u00fc zhi shui", "subject_places": ["China"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T17:00:11.288917"}, "latest_revision": 2, "key": "/works/OL11890609W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5095811A"}}], "type": {"key": "/type/work"}, "subjects": ["Children's stories, Chinese", "Folklore"], "revision": 2}
+/type/work /works/OL118910W 1 2009-10-18T05:58:14.983856 {"created": {"type": "/type/datetime", "value": "2009-10-18T05:58:14.983856"}, "title": "Vera", "last_modified": {"type": "/type/datetime", "value": "2009-10-18T05:58:14.983856"}, "latest_revision": 1, "key": "/works/OL118910W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL20646A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11891189W 2 2010-01-21T17:00:11.288917 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:37:21.687239"}, "title": "Hoso bunka shoshi, nempyo", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T17:00:11.288917"}, "latest_revision": 2, "key": "/works/OL11891189W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5096221A"}}], "type": {"key": "/type/work"}, "subjects": ["Japan", "History", "Television broadcasting", "Radio broadcasting"], "revision": 2}
+/type/work /works/OL11891225W 1 2009-12-11T05:37:21.687239 {"title": "Water watch", "created": {"type": "/type/datetime", "value": "2009-12-11T05:37:21.687239"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:37:21.687239"}, "latest_revision": 1, "key": "/works/OL11891225W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5096234A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11891328W 3 2010-12-03T16:39:28.061671 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:37:21.687239"}, "subject_places": ["Russia (Federation)", "Saransk"], "subjects": ["History and criticism", "Interviews", "Jazz", "Jazz musicians", "Music festivals", "Ve\u012ds\u0117-dzhaz"], "latest_revision": 3, "key": "/works/OL11891328W", "title": "Lisenok na klavishakh", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5096323A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T16:39:28.061671"}, "revision": 3}
+/type/work /works/OL11891562W 3 2010-12-03T16:40:58.301680 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:37:21.687239"}, "subject_places": ["Burma", "Kyaikto"], "subjects": ["History", "Kyuik\u02bbth\u012b\u02barui\u02ba Bhur\u0101\u02ba (Kyaikto (Burma)", "Pagodas"], "latest_revision": 3, "key": "/works/OL11891562W", "title": "Kyuik\u02bb thi\u0304\u02ba rui\u02ba Ceti\u0304 to\u02bb \u02bcAtthuppatti mu\u0304 hon\u02bb\u02ba nhan\u02bb\u02b9, Bahu suta mhat\u02bb sa\u0304\u02ba bvai kyam\u02bb\u02ba", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5096502A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T16:40:58.301680"}, "revision": 3}
+/type/work /works/OL11891566W 4 2011-09-08T06:56:06.623488 {"description": {"type": "/type/text", "value": "It is a catalog of my exhibition. \r\nmirjam Bruck-Cohen"}, "last_modified": {"type": "/type/datetime", "value": "2011-09-08T06:56:06.623488"}, "title": "Hitrashmuyot mapah", "created": {"type": "/type/datetime", "value": "2009-12-11T05:37:21.687239"}, "covers": [6917578], "subject_places": ["Israel", "Haifa", "Um El-Fahem' Ashqelon", "Tirah", "Kfar Kara", "Zalafe", "Bosmat Tivon", "Zarzir", "Ir Veradim", "Shfaram."], "subjects": ["Exhibitions", "Textile fabrics", "Fiberwork", "Themes and motives"], "subject_people": ["Mirjam Bruck-Cohen (1943-)"], "key": "/works/OL11891566W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5096508A"}}], "latest_revision": 4, "subject_times": ["the years i worked on the project and related dates. In my Fiberart i told visual stories about the places. The Architect whose maps i looked upon and used for my art", "the Late Dov Chernobroda was murdered in a Terror attack in Haifa."], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL11891772W 2 2010-01-21T17:05:38.552481 {"title": "M\u00f6nchsideale des Islams nach Ghazlis Abhandlung \u00fcber Armut und Weltentsagung", "created": {"type": "/type/datetime", "value": "2009-12-11T05:37:30.156063"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T17:05:38.552481"}, "latest_revision": 2, "key": "/works/OL11891772W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5096684A"}}], "subject_people": ["Ghazz\u0101l\u012b (1058-1111)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11891853W 1 2009-12-11T05:37:30.156063 {"title": "Niny\u0101nabe k\u0101 phera", "created": {"type": "/type/datetime", "value": "2009-12-11T05:37:30.156063"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:37:30.156063"}, "latest_revision": 1, "key": "/works/OL11891853W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5096740A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11891929W 3 2020-08-02T07:40:55.817930 {"description": {"type": "/type/text", "value": "\"Women authors have explored fantasy fiction in ways that connect with feminist narrative theories, as examined here by Katherine J. Weese in seven modern novels. The fantastic devices highlight various feminist narrative concerns. Weese also frames the fantastic elements in the scope of traditional fictional structure\"--Provided by publisher."}, "last_modified": {"type": "/type/datetime", "value": "2020-08-02T07:40:55.817930"}, "title": "Feminist narrative and the supernatural", "created": {"type": "/type/datetime", "value": "2009-12-11T05:37:30.156063"}, "subject_places": ["English-speaking countries"], "subjects": ["History and criticism", "Theory", "Women authors", "History", "Feminism and literature", "English literature", "Fantasy in literature", "American literature", "Feminist fiction", "Supernatural in literature", "Women and literature", "Gender identity in literature", "American literature, women authors", "American literature, history and criticism", "English literature, women authors", "English literature, history and criticism"], "latest_revision": 3, "key": "/works/OL11891929W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5096799A"}}], "subject_times": ["20th century"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11892038W 1 2009-12-11T05:37:30.156063 {"title": "Search in the sun", "created": {"type": "/type/datetime", "value": "2009-12-11T05:37:30.156063"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:37:30.156063"}, "latest_revision": 1, "key": "/works/OL11892038W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5096881A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11892414W 4 2020-08-02T07:28:28.654957 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:37:30.156063"}, "subjects": ["Employees", "Training of", "BUSINESS & ECONOMICS", "Training", "Mentoring & Coaching", "Employees, training of", "Success in business", "Personnel management, study and teaching"], "latest_revision": 4, "key": "/works/OL11892414W", "title": "Courageous training", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5097161A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-08-02T07:28:28.654957"}, "covers": [8274536], "revision": 4}
+/type/work /works/OL11893437W 1 2009-12-11T05:37:37.506234 {"title": "Ku\u0304nj kurla\u0304t\u0323", "created": {"type": "/type/datetime", "value": "2009-12-11T05:37:37.506234"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:37:37.506234"}, "latest_revision": 1, "key": "/works/OL11893437W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5097824A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11893556W 2 2010-01-21T17:10:44.355013 {"title": "On the death of my much honoured friend, Colonel Richard Lovelace", "created": {"type": "/type/datetime", "value": "2009-12-11T05:37:37.506234"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T17:10:44.355013"}, "latest_revision": 2, "key": "/works/OL11893556W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5097914A"}}], "subject_people": ["Richard Lovelace (1618-1658)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11893821W 2 2010-01-21T17:10:44.355013 {"title": "La fin de Maupassant", "created": {"type": "/type/datetime", "value": "2009-12-11T05:37:44.511974"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T17:10:44.355013"}, "latest_revision": 2, "key": "/works/OL11893821W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5098093A"}}], "subject_people": ["Guy de Maupassant (1850-1893)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11894648W 2 2010-01-21T17:16:09.562677 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:37:44.511974"}, "title": "Miscellanies of divinitie", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T17:16:09.562677"}, "latest_revision": 2, "key": "/works/OL11894648W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5098618A"}}], "type": {"key": "/type/work"}, "subjects": ["Early works to 1800", "Theological anthropology", "Eschatology"], "revision": 2}
+/type/work /works/OL11894797W 2 2010-01-21T17:16:09.562677 {"title": "Arpa de Satavento", "created": {"type": "/type/datetime", "value": "2009-12-11T05:37:52.571237"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T17:16:09.562677"}, "latest_revision": 2, "key": "/works/OL11894797W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5098720A"}}], "subject_people": ["Leonardo Pasquel"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL1189514W 1 2009-12-09T20:41:17.573438 {"title": "Obras completas ... ", "created": {"type": "/type/datetime", "value": "2009-12-09T20:41:17.573438"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T20:41:17.573438"}, "latest_revision": 1, "key": "/works/OL1189514W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL120174A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11895204W 2 2010-01-21T17:16:09.562677 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:37:52.571237"}, "title": "Official circular", "subject_places": ["Canada"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T17:16:09.562677"}, "latest_revision": 2, "key": "/works/OL11895204W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5099006A"}}], "subject_times": ["1914-"], "type": {"key": "/type/work"}, "subjects": ["Politics and government"], "revision": 2}
+/type/work /works/OL11895327W 2 2010-01-21T17:16:09.562677 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:37:52.571237"}, "title": "Xue bu ji", "subject_places": ["China"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T17:16:09.562677"}, "latest_revision": 2, "key": "/works/OL11895327W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5099091A"}}], "type": {"key": "/type/work"}, "subjects": ["Sociology"], "revision": 2}
+/type/work /works/OL11896166W 1 2009-12-11T05:38:01.085496 {"title": "The delay of turbulent separation on a flap by the use of air jets", "created": {"type": "/type/datetime", "value": "2009-12-11T05:38:01.085496"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:38:01.085496"}, "latest_revision": 1, "key": "/works/OL11896166W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5099717A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11896298W 2 2010-01-21T17:20:59.347601 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:38:01.085496"}, "title": "The D-glucose transporters of Rhodotorula glutinis", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T17:20:59.347601"}, "latest_revision": 2, "key": "/works/OL11896298W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5099819A"}}], "type": {"key": "/type/work"}, "subjects": ["Glucose", "Rhodotorula glutinis", "Chemistry", "Biological transport", "Membranes (Biology)"], "revision": 2}
+/type/work /works/OL11896593W 2 2010-01-21T17:20:59.347601 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:38:01.085496"}, "title": "al- H\u0323urri\u0304yah al-siya\u0304si\u0304yah fi\u0304 al-Yaman, 1962-1998 M", "subject_places": ["Yemen (Republic)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T17:20:59.347601"}, "latest_revision": 2, "key": "/works/OL11896593W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5100030A"}}], "type": {"key": "/type/work"}, "subjects": ["Politics and government", "Human rights", "Freedom of speech"], "revision": 2}
+/type/work /works/OL11896766W 2 2010-01-21T17:20:59.347601 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:38:05.787039"}, "title": "Report ... prepared at Detroit, Michigan, December 18-22, 1896", "subject_places": ["United States", "Great Lakes (North America)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T17:20:59.347601"}, "latest_revision": 2, "key": "/works/OL11896766W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5100151A"}}], "type": {"key": "/type/work"}, "subjects": ["Inland navigation", "Canals, rivers"], "revision": 2}
+/type/work /works/OL11896894W 1 2009-12-11T05:38:05.787039 {"title": "Leaflet", "created": {"type": "/type/datetime", "value": "2009-12-11T05:38:05.787039"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:38:05.787039"}, "latest_revision": 1, "key": "/works/OL11896894W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5100233A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11896927W 2 2010-01-21T17:25:58.470044 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:38:05.787039"}, "title": "Zhongguo gu dai xiao shuo yan jiu", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T17:25:58.470044"}, "latest_revision": 2, "key": "/works/OL11896927W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5100259A"}}], "type": {"key": "/type/work"}, "subjects": ["Chinese fiction", "History and criticism"], "revision": 2}
+/type/work /works/OL11897125W 2 2010-01-21T17:25:58.470044 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:38:05.787039"}, "title": "Porosity reduction in microcrystalline limestones", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T17:25:58.470044"}, "latest_revision": 2, "key": "/works/OL11897125W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5100393A"}}], "type": {"key": "/type/work"}, "subjects": ["Geology"], "revision": 2}
+/type/work /works/OL1189746W 3 2020-08-27T01:06:04.747531 {"last_modified": {"type": "/type/datetime", "value": "2020-08-27T01:06:04.747531"}, "latest_revision": 3, "key": "/works/OL1189746W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL120186A"}}], "created": {"type": "/type/datetime", "value": "2009-12-09T20:41:17.573438"}, "title": "London Transport at war, 1939-1945", "subject_places": ["London", "England", "London (England)"], "subjects": ["World War, 1939-1945", "War work", "Transportation", "History", "World war, 1939-1945, transportation", "World war, 1939-1945, war work", "World war, 1939-1945, great britain", "London (england), history"], "subject_times": ["Bombardment, 1940-1941"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11897503W 1 2009-12-11T05:38:05.787039 {"title": "Employment of children", "created": {"type": "/type/datetime", "value": "2009-12-11T05:38:05.787039"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:38:05.787039"}, "latest_revision": 1, "key": "/works/OL11897503W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5100467A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11897572W 1 2009-12-11T05:38:05.787039 {"title": "Presentation of freedom to Sir Robert Bond", "created": {"type": "/type/datetime", "value": "2009-12-11T05:38:05.787039"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:38:05.787039"}, "latest_revision": 1, "key": "/works/OL11897572W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5100467A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11897641W 1 2009-12-11T05:38:05.787039 {"title": "Walson mayor ... 6th day of June 1797", "created": {"type": "/type/datetime", "value": "2009-12-11T05:38:05.787039"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:38:05.787039"}, "latest_revision": 1, "key": "/works/OL11897641W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5100467A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11897738W 2 2010-01-21T17:25:58.470044 {"title": "Lacan de\u0301barbouille\u0301", "created": {"type": "/type/datetime", "value": "2009-12-11T05:38:14.950787"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T17:25:58.470044"}, "latest_revision": 2, "key": "/works/OL11897738W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5100514A"}}], "subject_people": ["Jacques Lacan (1901-1981)"], "type": {"key": "/type/work"}, "subjects": ["Critique textuelle"], "revision": 2}
+/type/work /works/OL11897747W 2 2010-01-21T17:25:58.470044 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:38:14.950787"}, "title": "Domentijan", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T17:25:58.470044"}, "latest_revision": 2, "key": "/works/OL11897747W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5100520A"}}], "type": {"key": "/type/work"}, "subjects": ["Church Slavic language", "Texts"], "revision": 2}
+/type/work /works/OL11897759W 2 2010-01-21T17:25:58.470044 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:38:14.950787"}, "title": "An economic study of standard broadcasting", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T17:25:58.470044"}, "latest_revision": 2, "key": "/works/OL11897759W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5100530A"}}], "type": {"key": "/type/work"}, "subjects": ["Radio broadcasting"], "revision": 2}
+/type/work /works/OL11897958W 3 2010-12-03T21:52:47.009626 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:38:14.950787"}, "subject_places": ["China"], "subjects": ["Genealogy", "Names, Personal", "Personal Names"], "latest_revision": 3, "key": "/works/OL11897958W", "title": "Zhong gu men di lun ji", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5100688A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T21:52:47.009626"}, "revision": 3}
+/type/work /works/OL11898007W 1 2009-12-11T05:38:14.950787 {"title": "Geologic atlas of the United States. State of Oklahoma", "created": {"type": "/type/datetime", "value": "2009-12-11T05:38:14.950787"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:38:14.950787"}, "latest_revision": 1, "key": "/works/OL11898007W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5100724A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11898771W 2 2010-12-03T16:43:41.492443 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T16:43:41.492443"}, "title": "The reconciler of the Bible inlarged", "created": {"type": "/type/datetime", "value": "2009-12-11T05:38:34.551239"}, "subjects": ["Bible", "Commentaries"], "latest_revision": 2, "key": "/works/OL11898771W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5101342A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL118987W 3 2011-11-04T19:29:21.499742 {"last_modified": {"type": "/type/datetime", "value": "2011-11-04T19:29:21.499742"}, "title": "The ABC of the B.B.C.", "created": {"type": "/type/datetime", "value": "2009-10-18T06:38:54.675245"}, "subjects": ["British Broadcasting Corporation"], "latest_revision": 3, "key": "/works/OL118987W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL32773A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11898850W 1 2009-12-11T05:38:34.551239 {"title": "Parasito", "created": {"type": "/type/datetime", "value": "2009-12-11T05:38:34.551239"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:38:34.551239"}, "latest_revision": 1, "key": "/works/OL11898850W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5101395A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11898865W 2 2010-01-21T17:30:31.241799 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:38:34.551239"}, "title": "Canada and international cartels", "subject_places": ["Canada"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T17:30:31.241799"}, "latest_revision": 2, "key": "/works/OL11898865W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5101410A"}}], "type": {"key": "/type/work"}, "subjects": ["Cartels"], "revision": 2}
+/type/work /works/OL11899483W 2 2010-01-21T17:30:31.241799 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:38:34.551239"}, "title": "Oxidative and phosphorylative capacities of isolated barley seed mitochondria during growth resumption", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T17:30:31.241799"}, "latest_revision": 2, "key": "/works/OL11899483W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5101904A"}}], "type": {"key": "/type/work"}, "subjects": ["Germination", "Mitochondria", "Barley"], "revision": 2}
+/type/work /works/OL11899554W 1 2009-12-11T05:38:34.551239 {"title": "Visio\u0301n de Espan\u0303a", "created": {"type": "/type/datetime", "value": "2009-12-11T05:38:34.551239"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:38:34.551239"}, "latest_revision": 1, "key": "/works/OL11899554W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5101950A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11899736W 2 2010-01-21T17:30:31.241799 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:38:44.233775"}, "title": "Some effects of nutrition on the occurrence of urinary calculi in sheep and cattle", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T17:30:31.241799"}, "latest_revision": 2, "key": "/works/OL11899736W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5102079A"}}], "type": {"key": "/type/work"}, "subjects": ["Nutrition", "Calculi", "Urinary organs"], "revision": 2}
+/type/work /works/OL11900600W 1 2009-12-11T05:38:44.233775 {"title": "Dia\u0301logos literarios", "created": {"type": "/type/datetime", "value": "2009-12-11T05:38:44.233775"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:38:44.233775"}, "latest_revision": 1, "key": "/works/OL11900600W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5102779A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11900978W 1 2009-12-11T05:38:53.435271 {"title": "Best rule strategy", "created": {"type": "/type/datetime", "value": "2009-12-11T05:38:53.435271"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:38:53.435271"}, "latest_revision": 1, "key": "/works/OL11900978W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5103079A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1190160W 3 2010-04-28T07:25:45.460388 {"title": "The Prisoner and The Fugitive (In Search of Lost Time, Volume 5)", "created": {"type": "/type/datetime", "value": "2009-12-09T20:41:24.705476"}, "covers": [107653], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:25:45.460388"}, "latest_revision": 3, "key": "/works/OL1190160W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL120205A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11901651W 1 2009-12-11T05:38:53.435271 {"title": "Finsha Pappersf\u00f6reningen, 1892-1918", "created": {"type": "/type/datetime", "value": "2009-12-11T05:38:53.435271"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:38:53.435271"}, "latest_revision": 1, "key": "/works/OL11901651W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5103610A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11901692W 2 2010-01-21T17:40:07.255802 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:38:53.435271"}, "title": "Plant communities of the Similkameen Valley, British Columbia, and their relationships to soils", "subject_places": ["British Columbia"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T17:40:07.255802"}, "latest_revision": 2, "key": "/works/OL11901692W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5103645A"}}], "type": {"key": "/type/work"}, "subjects": ["Soil surveys", "Plant communities"], "revision": 2}
+/type/work /works/OL11902171W 2 2010-11-13T16:47:01.398350 {"title": "Evolution of premium price policy for copper, lead and zinc, January 1940 to November 1943 ..", "created": {"type": "/type/datetime", "value": "2009-12-11T05:39:01.960490"}, "last_modified": {"type": "/type/datetime", "value": "2010-11-13T16:47:01.398350"}, "latest_revision": 2, "key": "/works/OL11902171W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5103902A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11902780W 1 2009-12-11T05:39:15.129203 {"title": "Life's inescapabilities", "created": {"type": "/type/datetime", "value": "2009-12-11T05:39:15.129203"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:39:15.129203"}, "latest_revision": 1, "key": "/works/OL11902780W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5104492A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11902808W 1 2009-12-11T05:39:15.129203 {"title": "Les nouilles", "created": {"type": "/type/datetime", "value": "2009-12-11T05:39:15.129203"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:39:15.129203"}, "latest_revision": 1, "key": "/works/OL11902808W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5104506A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11903183W 2 2010-01-21T17:45:07.132186 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:39:15.129203"}, "title": "Banking statistics", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T17:45:07.132186"}, "latest_revision": 2, "key": "/works/OL11903183W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5104756A"}}], "type": {"key": "/type/work"}, "subjects": ["Statistics", "Banks and banking", "Study and teaching"], "revision": 2}
+/type/work /works/OL11903708W 2 2010-12-04T02:03:01.334745 {"last_modified": {"type": "/type/datetime", "value": "2010-12-04T02:03:01.334745"}, "title": "Fasciculus rerum expetendarum ac fugiendarum", "created": {"type": "/type/datetime", "value": "2009-12-11T05:39:29.329363"}, "subjects": ["Council of Basel (1431-1449)"], "latest_revision": 2, "key": "/works/OL11903708W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5105171A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11903913W 6 2022-03-01T02:50:56.163180 {"covers": [6801550], "key": "/works/OL11903913W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5105308A"}}], "title": "Live through this", "subject_places": ["West (U.S.)"], "subjects": ["Runaway teenagers", "Mothers and daughters", "Teenage girls", "Adolescent girls", "Women, west (u.s.)", "Runaway children", "West (u.s.), social life and customs"], "type": {"key": "/type/work"}, "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2009-12-11T05:39:29.329363"}, "last_modified": {"type": "/type/datetime", "value": "2022-03-01T02:50:56.163180"}}
+/type/work /works/OL11903W 14 2022-11-19T18:53:47.053362 {"description": {"type": "/type/text", "value": "Pinky and Rex share a weekend with their fathers camping indoors due to rain."}, "covers": [9289661], "key": "/works/OL11903W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL22663A"}}], "title": "Pinky and Rex and the double-dad weekend", "subjects": ["Father and child", "Fiction", "Camping", "Children's fiction", "Camping, fiction", "Parent and child, fiction"], "type": {"key": "/type/work"}, "latest_revision": 14, "revision": 14, "created": {"type": "/type/datetime", "value": "2009-10-05T21:28:22.674152"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-19T18:53:47.053362"}}
+/type/work /works/OL11904015W 2 2010-01-21T17:49:48.259329 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:39:29.329363"}, "title": "An assessment of the educational needs of minority students as perceived by parents, students and staff", "subject_places": ["United States"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T17:49:48.259329"}, "latest_revision": 2, "key": "/works/OL11904015W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5105379A"}}], "type": {"key": "/type/work"}, "subjects": ["Education", "Minorities"], "revision": 2}
+/type/work /works/OL11904244W 2 2010-01-21T17:49:48.259329 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:39:29.329363"}, "title": "Feasibility of learning hazardous machine operation skills by means of a self-instructional system", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T17:49:48.259329"}, "latest_revision": 2, "key": "/works/OL11904244W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5105540A"}}], "type": {"key": "/type/work"}, "subjects": ["Programmed instruction"], "revision": 2}
+/type/work /works/OL11904836W 1 2009-12-11T05:39:38.780786 {"title": "Beg\u0332h\u0332ama ate g\u0332h\u0332ula\u0304ma", "created": {"type": "/type/datetime", "value": "2009-12-11T05:39:38.780786"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:39:38.780786"}, "latest_revision": 1, "key": "/works/OL11904836W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5105987A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11905216W 1 2009-12-11T05:39:38.780786 {"title": "Bezopasnost' dvizheniya", "created": {"type": "/type/datetime", "value": "2009-12-11T05:39:38.780786"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:39:38.780786"}, "latest_revision": 1, "key": "/works/OL11905216W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5106254A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11905498W 1 2009-12-11T05:39:38.780786 {"title": "Laundering in the Welsh Home", "created": {"type": "/type/datetime", "value": "2009-12-11T05:39:38.780786"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:39:38.780786"}, "latest_revision": 1, "key": "/works/OL11905498W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5106479A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11905735W 1 2009-12-11T05:39:47.541883 {"title": "Bristol Central Library [information leaflets]", "created": {"type": "/type/datetime", "value": "2009-12-11T05:39:47.541883"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:39:47.541883"}, "latest_revision": 1, "key": "/works/OL11905735W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5106694A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11905807W 3 2010-12-03T16:45:14.458583 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T16:45:14.458583"}, "title": "A paraphrase upon the Canticles, and some select hymns of the New and Old Testament", "created": {"type": "/type/datetime", "value": "2009-12-11T05:39:47.541883"}, "subjects": ["Bible", "English Paraphrases", "Paraphrases, English"], "latest_revision": 3, "key": "/works/OL11905807W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5106742A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11905927W 3 2010-12-03T16:46:12.320773 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:39:47.541883"}, "subject_places": ["Washington (State)"], "subjects": ["Columbia Basin Project (U.S.)", "Inland water transportation", "Transportation"], "latest_revision": 3, "key": "/works/OL11905927W", "title": "The transportation requirements of the Columbia Basin Project area", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5106840A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T16:46:12.320773"}, "revision": 3}
+/type/work /works/OL11906062W 3 2011-04-25T04:42:06.381947 {"subtitle": "Gombrowicza s\u0301wiat interakcji", "last_modified": {"type": "/type/datetime", "value": "2011-04-25T04:42:06.381947"}, "latest_revision": 3, "key": "/works/OL11906062W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5106950A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T05:39:47.541883"}, "title": "Ja, Ferdydurke", "subjects": ["Criticism and interpretation"], "subject_people": ["Witold Gombrowicz"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11906440W 1 2009-12-11T05:39:47.541883 {"title": "Fo\u0302lhas do outono", "created": {"type": "/type/datetime", "value": "2009-12-11T05:39:47.541883"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:39:47.541883"}, "latest_revision": 1, "key": "/works/OL11906440W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5107236A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11906467W 3 2010-12-03T16:45:14.458583 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:39:47.541883"}, "subject_places": ["Iran"], "subjects": ["Human rights", "United Nations"], "latest_revision": 3, "key": "/works/OL11906467W", "title": "T\u0323arh\u0323-i taqvi\u0304yat-i z\u0323arfi\u0304yat'ha\u0304-yi a\u0304mu\u0304zish va pizhu\u0304hish-i h\u0323uqu\u0304q-i bashar", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5107255A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T16:45:14.458583"}, "revision": 3}
+/type/work /works/OL11906983W 1 2009-12-11T05:39:56.595953 {"title": "TC25SC series", "created": {"type": "/type/datetime", "value": "2009-12-11T05:39:56.595953"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:39:56.595953"}, "latest_revision": 1, "key": "/works/OL11906983W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5107608A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11907012W 2 2010-01-21T17:59:53.205181 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:39:56.595953"}, "title": "Informed citizens' opinions regarding the Citizens' Lay Committee in Central Valley School District", "subject_places": ["Washington (State)", "Spokane County"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T17:59:53.205181"}, "latest_revision": 2, "key": "/works/OL11907012W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5107630A"}}], "type": {"key": "/type/work"}, "subjects": ["Citizens' advisory committees in education", "Community and school", "Education"], "revision": 2}
+/type/work /works/OL11907324W 2 2010-01-21T17:59:53.205181 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:39:56.595953"}, "title": "Sefer \u1e7eikua\u1e25 na\u02bbim", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T17:59:53.205181"}, "latest_revision": 2, "key": "/works/OL11907324W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5107871A"}}], "type": {"key": "/type/work"}, "subjects": ["Commentaries", "Aggada", "Cabala", "Jewish ethics"], "revision": 2}
+/type/work /works/OL11907384W 3 2022-12-22T11:58:08.919256 {"title": "Ah\u0323otan ha-k\u0323et\u0323anah shel ha-h\u0323okhmot", "subject_places": ["Italy", "Venice"], "key": "/works/OL11907384W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5107911A"}}], "type": {"key": "/type/work"}, "subjects": ["Jews", "Historiography", "Intellectual life", "Political science", "History"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T05:39:56.595953"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-22T11:58:08.919256"}}
+/type/work /works/OL11907486W 2 2010-01-21T17:59:53.205181 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:39:56.595953"}, "title": "Origin and early history of the fashion plate", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T17:59:53.205181"}, "latest_revision": 2, "key": "/works/OL11907486W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5107981A"}}], "type": {"key": "/type/work"}, "subjects": ["Fashion", "History"], "revision": 2}
+/type/work /works/OL11907488W 1 2009-12-11T05:39:56.595953 {"title": "Atmospheric electricity", "created": {"type": "/type/datetime", "value": "2009-12-11T05:39:56.595953"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:39:56.595953"}, "latest_revision": 1, "key": "/works/OL11907488W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5107982A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11907531W 3 2010-12-03T16:45:43.660244 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:39:56.595953"}, "subject_places": ["Venezuela"], "subjects": ["Education, Higher", "Higher Education"], "latest_revision": 3, "key": "/works/OL11907531W", "title": "Estatuto organico de las universidades nacionales", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5108021A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T16:45:43.660244"}, "revision": 3}
+/type/work /works/OL11907845W 1 2009-12-11T05:40:04.812933 {"title": "St Peter's Kirk, Thurso, Caithness", "created": {"type": "/type/datetime", "value": "2009-12-11T05:40:04.812933"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:40:04.812933"}, "latest_revision": 1, "key": "/works/OL11907845W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5108265A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11907933W 2 2010-01-21T17:59:53.205181 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:40:04.812933"}, "title": "Geological features of the Mackenzie Delta region, N.W.T", "subject_places": ["Mackenzie Region", "Northwest Territories"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T17:59:53.205181"}, "latest_revision": 2, "key": "/works/OL11907933W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5108324A"}}], "type": {"key": "/type/work"}, "subjects": ["Geology"], "revision": 2}
+/type/work /works/OL11908124W 2 2010-01-21T17:59:53.205181 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:40:04.812933"}, "title": "Importnye operat\ufe20s\ufe21ii", "subject_places": ["Russia (Federation)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T17:59:53.205181"}, "latest_revision": 2, "key": "/works/OL11908124W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5108455A"}}], "type": {"key": "/type/work"}, "subjects": ["Imports", "Foreign economic relations"], "revision": 2}
+/type/work /works/OL11908161W 2 2010-01-21T17:59:53.205181 {"title": "W. Somerset Maugham's theory of fiction", "created": {"type": "/type/datetime", "value": "2009-12-11T05:40:04.812933"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T17:59:53.205181"}, "latest_revision": 2, "key": "/works/OL11908161W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5108488A"}}], "subject_people": ["W. Somerset Maugham (1874-1965)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11908279W 1 2009-12-11T05:40:04.812933 {"title": "Xi xue rou qing", "created": {"type": "/type/datetime", "value": "2009-12-11T05:40:04.812933"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:40:04.812933"}, "latest_revision": 1, "key": "/works/OL11908279W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5108546A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1190867W 3 2010-12-03T23:08:33.562897 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T23:08:33.562897"}, "title": "Mediaeval love-song", "created": {"type": "/type/datetime", "value": "2009-12-09T20:41:24.705476"}, "subjects": ["Courtly love", "Courtly love in literature", "History and criticism", "Love poetry", "Lyric poetry", "Medieval Poetry", "Poetry, Medieval"], "latest_revision": 3, "key": "/works/OL1190867W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL120259A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11909007W 4 2021-01-23T02:24:40.131797 {"title": "British army cloth insignia 1940 to the present", "subjects": ["Great Britain", "Great Britain. Army", "History", "Insignia", "Armed Forces"], "key": "/works/OL11909007W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5109133A"}}], "type": {"key": "/type/work"}, "covers": [10559721], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T05:40:14.060545"}, "last_modified": {"type": "/type/datetime", "value": "2021-01-23T02:24:40.131797"}}
+/type/work /works/OL11910369W 1 2009-12-11T05:40:23.365723 {"title": "A variable order multistep method for the numerical solution of stiff systems of ordinary differential equations", "created": {"type": "/type/datetime", "value": "2009-12-11T05:40:23.365723"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:40:23.365723"}, "latest_revision": 1, "key": "/works/OL11910369W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5110257A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11910618W 2 2010-01-21T18:09:18.930820 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:40:23.365723"}, "title": "Alt\u0131n orda hanl\u0131\u011f\u0131n\u0131n kurulu\u015f ve y\u00fckselli\u015f devirleri", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T18:09:18.930820"}, "latest_revision": 2, "key": "/works/OL11910618W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5110464A"}}], "type": {"key": "/type/work"}, "subjects": ["Golden Horde", "Turks", "History"], "revision": 2}
+/type/work /works/OL11910729W 3 2010-12-03T21:48:50.892275 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:40:31.849793"}, "subjects": ["Cabala", "Correspondence", "Hebrew Jewish sermons", "Jewish sermons, Hebrew", "Nigunim", "Teachings"], "subject_people": ["Barukh Shalom Ashlag ha-Le\u1e7fi (1907-1991)", "Yehudah Ashlag"], "key": "/works/OL11910729W", "title": "Shama\u02bbti", "latest_revision": 3, "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5110563A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T21:48:50.892275"}, "revision": 3}
+/type/work /works/OL11911314W 1 2009-12-11T05:40:31.849793 {"title": "Le chateau de la bell-au-bois-dormant", "created": {"type": "/type/datetime", "value": "2009-12-11T05:40:31.849793"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:40:31.849793"}, "latest_revision": 1, "key": "/works/OL11911314W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5110996A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11911515W 2 2010-01-21T18:13:56.299853 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:40:31.849793"}, "title": "Public care, a history of public welfare legislation in Tennessee", "subject_places": ["Tennessee"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T18:13:56.299853"}, "latest_revision": 2, "key": "/works/OL11911515W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5111141A"}}], "type": {"key": "/type/work"}, "subjects": ["Public welfare"], "revision": 2}
+/type/work /works/OL11911960W 2 2010-01-21T18:18:32.622644 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:40:40.607712"}, "title": "A transform method applied to coupled harmonic oscillator type problems", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T18:18:32.622644"}, "latest_revision": 2, "key": "/works/OL11911960W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5111475A"}}], "type": {"key": "/type/work"}, "subjects": ["Oscillations", "Transformations (Mathematics)", "Differential-difference equations"], "revision": 2}
+/type/work /works/OL11912185W 1 2009-12-11T05:40:40.607712 {"title": "Housing for the urban poor", "created": {"type": "/type/datetime", "value": "2009-12-11T05:40:40.607712"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:40:40.607712"}, "latest_revision": 1, "key": "/works/OL11912185W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5111661A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11912245W 3 2010-12-03T16:48:31.050401 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T16:48:31.050401"}, "title": "The contribution of the university library to civilization", "created": {"type": "/type/datetime", "value": "2009-12-11T05:40:40.607712"}, "subjects": ["Academic libraries", "Libraries", "University of Denver", "University of Denver. Library"], "latest_revision": 3, "key": "/works/OL11912245W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5111702A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11912595W 2 2010-01-21T18:18:32.622644 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:40:40.607712"}, "title": "Authoritarianism and attitudes toward current social issues", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T18:18:32.622644"}, "latest_revision": 2, "key": "/works/OL11912595W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5111993A"}}], "type": {"key": "/type/work"}, "subjects": ["Authoritarianism", "Attitude (Psychology)", "Social problems"], "revision": 2}
+/type/work /works/OL11912809W 2 2010-01-21T18:18:32.622644 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:40:49.227880"}, "title": "Three dimensional kinematic analysis of the hand and hip in the butterfly swimming stroke", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T18:18:32.622644"}, "latest_revision": 2, "key": "/works/OL11912809W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5112182A"}}], "type": {"key": "/type/work"}, "subjects": ["Study and teaching", "Kinematics", "Swimming"], "revision": 2}
+/type/work /works/OL11912932W 2 2010-01-21T18:18:32.622644 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:40:49.227880"}, "title": "A mechanical analysis of selected differentials between maximal and submaximal ability pole vaulters", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T18:18:32.622644"}, "latest_revision": 2, "key": "/works/OL11912932W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5112289A"}}], "type": {"key": "/type/work"}, "subjects": ["Athletic ability", "Vaulting"], "revision": 2}
+/type/work /works/OL11912949W 1 2009-12-11T05:40:49.227880 {"title": "Continuum damage mechanics modelling of metal matrix composites and components", "created": {"type": "/type/datetime", "value": "2009-12-11T05:40:49.227880"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:40:49.227880"}, "latest_revision": 1, "key": "/works/OL11912949W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5112300A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11912993W 3 2022-12-27T15:03:03.482735 {"title": "Freshwater fisheries", "key": "/works/OL11912993W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5112338A"}}], "type": {"key": "/type/work"}, "subjects": ["Fisheries", "Planning"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T05:40:49.227880"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-27T15:03:03.482735"}}
+/type/work /works/OL11913068W 2 2010-01-21T18:18:32.622644 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:40:49.227880"}, "title": "Carbid und Acetylen als Ausgangsmaterial f\u00fcr Produkte der chemischen Industrie", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T18:18:32.622644"}, "latest_revision": 2, "key": "/works/OL11913068W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5112385A"}}], "type": {"key": "/type/work"}, "subjects": ["Acetylene", "Carbides"], "revision": 2}
+/type/work /works/OL11913221W 2 2010-01-21T18:18:32.622644 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:40:49.227880"}, "title": "Normalizaci\u00f3n de las escalas convencionales y especiales del MMPI para Honduras", "subject_places": ["Honduras"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T18:18:32.622644"}, "latest_revision": 2, "key": "/works/OL11913221W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5112516A"}}], "type": {"key": "/type/work"}, "subjects": ["Minnesota Multiphasic Personality Inventory", "Personality tests"], "revision": 2}
+/type/work /works/OL11913372W 1 2009-12-11T05:40:49.227880 {"title": "Sind in Preuszen kirchendiener Staatsbeamte?", "created": {"type": "/type/datetime", "value": "2009-12-11T05:40:49.227880"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:40:49.227880"}, "latest_revision": 1, "key": "/works/OL11913372W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5112622A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL1191365W 2 2010-01-21T18:23:46.054872 {"title": "Alani\u0301s de Paz, un gobernador desconocido del Ri\u0301o de la Plata en el siglo XVI", "created": {"type": "/type/datetime", "value": "2009-12-09T20:41:34.400536"}, "subject_places": ["R\u00edo de la Plata (Viceroyalty)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T18:23:46.054872"}, "latest_revision": 2, "key": "/works/OL1191365W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL120306A"}}], "subject_people": ["Francisco Alan\u00eds de Paz (16th century)", "Domingo Mart\u00ednez de Irala (d. 1556)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11913737W 2 2010-01-21T18:23:46.054872 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:40:58.855371"}, "title": "Factors affecting newsprint digestibility by ruminants", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T18:23:46.054872"}, "latest_revision": 2, "key": "/works/OL11913737W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5112900A"}}], "type": {"key": "/type/work"}, "subjects": ["Newsprint as feed"], "revision": 2}
+/type/work /works/OL11913848W 2 2010-01-21T18:23:46.054872 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:40:58.855371"}, "title": "Bow & river gigs", "subject_places": ["Lake of the Ozarks", "Missouri"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T18:23:46.054872"}, "latest_revision": 2, "key": "/works/OL11913848W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5113003A"}}], "type": {"key": "/type/work"}, "subjects": ["Spear fishing", "Bowfishing"], "revision": 2}
+/type/work /works/OL11913927W 6 2022-06-18T07:23:14.088114 {"subjects": ["Plants", "Plant propagation", "Juvenile literature", "Gardening", "Plants, juvenile literature", "Gardening, juvenile literature"], "key": "/works/OL11913927W", "title": "Growing new plants", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5113070A"}}], "type": {"key": "/type/work"}, "covers": [10217084], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2009-12-11T05:40:58.855371"}, "last_modified": {"type": "/type/datetime", "value": "2022-06-18T07:23:14.088114"}}
+/type/work /works/OL1191404W 2 2010-01-21T18:23:46.054872 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:41:34.400536"}, "title": "...L os u\u0301ltimos cruzados", "subject_places": ["Argentina", "America"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T18:23:46.054872"}, "latest_revision": 2, "key": "/works/OL1191404W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL120306A"}}], "subject_times": ["To 1810"], "type": {"key": "/type/work"}, "subjects": ["Discoveries in geography", "Spanish", "Discovery and exploration", "History"], "revision": 2}
+/type/work /works/OL11914174W 2 2010-01-21T18:23:46.054872 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:40:58.855371"}, "title": "The Bayernpartei: a minor German party in transition", "subject_places": ["Germany (West)", "Bavaria (Germany)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T18:23:46.054872"}, "latest_revision": 2, "key": "/works/OL11914174W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5113253A"}}], "subject_times": ["1945-"], "type": {"key": "/type/work"}, "subjects": ["Politics and government", "Political parties"], "revision": 2}
+/type/work /works/OL11914601W 1 2009-12-11T05:40:58.855371 {"title": "A Cornishman At Oxford", "created": {"type": "/type/datetime", "value": "2009-12-11T05:40:58.855371"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:40:58.855371"}, "latest_revision": 1, "key": "/works/OL11914601W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5113615A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11915480W 2 2010-01-21T18:28:46.026344 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:41:07.608761"}, "title": "Effect of bacterial endotoxin in swine and rabbits", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T18:28:46.026344"}, "latest_revision": 2, "key": "/works/OL11915480W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5114344A"}}], "type": {"key": "/type/work"}, "subjects": ["Endotoxins"], "revision": 2}
+/type/work /works/OL11915834W 2 2010-01-21T18:33:28.050142 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:41:15.592961"}, "title": "Social integration, goal commitment, and fatalistic suicide", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T18:33:28.050142"}, "latest_revision": 2, "key": "/works/OL11915834W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5114634A"}}], "type": {"key": "/type/work"}, "subjects": ["Suicide"], "revision": 2}
+/type/work /works/OL11916296W 2 2010-01-21T18:33:28.050142 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:41:15.592961"}, "title": "Herrschaftsanspruch und soziale Wirklichkeit", "subject_places": ["Germany (East)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T18:33:28.050142"}, "latest_revision": 2, "key": "/works/OL11916296W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5114979A"}}], "type": {"key": "/type/work"}, "subjects": ["Labor", "Chemical industry", "Organizational behavior"], "revision": 2}
+/type/work /works/OL11916313W 4 2020-12-20T16:45:50.317153 {"subject_places": ["Great Britain", "Italy", "Nettuno", "United States"], "subjects": ["American Personal narratives", "Amphibious operations", "Anzio Beachhead, 1944", "Biography", "British Personal narratives", "Campaigns", "Personal narratives, American", "Personal narratives, British", "Veterans", "World War, 1939-1945", "Anzio, Battle of, Anzio, Italy, 1944"], "key": "/works/OL11916313W", "title": "Gli uomini dello sbarco =", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5114991A"}}], "type": {"key": "/type/work"}, "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T05:41:15.592961"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-20T16:45:50.317153"}}
+/type/work /works/OL1191722W 2 2010-01-21T18:38:04.957842 {"created": {"type": "/type/datetime", "value": "2009-12-09T20:41:34.400536"}, "title": "Motorships", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T18:38:04.957842"}, "latest_revision": 2, "key": "/works/OL1191722W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL120335A"}}], "type": {"key": "/type/work"}, "subjects": ["Internal combustion engines", "Motor-ships"], "revision": 2}
+/type/work /works/OL11917254W 2 2010-01-21T18:38:04.957842 {"title": "Margaret Thatcher", "created": {"type": "/type/datetime", "value": "2009-12-11T05:41:23.099555"}, "subject_places": ["Great Britain"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T18:38:04.957842"}, "latest_revision": 2, "key": "/works/OL11917254W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5115700A"}}], "subject_people": ["Margaret Thatcher"], "type": {"key": "/type/work"}, "subjects": ["Prime ministers", "Biography"], "revision": 2}
+/type/work /works/OL1191728W 1 2009-12-09T20:41:34.400536 {"title": "Lisos", "created": {"type": "/type/datetime", "value": "2009-12-09T20:41:34.400536"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-09T20:41:34.400536"}, "latest_revision": 1, "key": "/works/OL1191728W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL120336A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11917356W 2 2010-01-21T18:38:04.957842 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:41:23.099555"}, "title": "Frant\u0361suzsko-russkii\u0306 slovar\u02b9", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T18:38:04.957842"}, "latest_revision": 2, "key": "/works/OL11917356W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5115767A"}}], "type": {"key": "/type/work"}, "subjects": ["Russian", "French language", "Dictionaries"], "revision": 2}
+/type/work /works/OL11917389W 3 2010-12-03T16:49:36.170697 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T16:49:36.170697"}, "title": "To the knights, citizens, and burgesses of the Commons House in Parliament now assembled", "created": {"type": "/type/datetime", "value": "2009-12-11T05:41:23.099555"}, "subject_places": ["Great Britain"], "subjects": ["Great Britain Civil War, 1642-1649", "History"], "subject_people": ["John Cosin (1594-1672)"], "key": "/works/OL11917389W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5115796A"}}], "latest_revision": 3, "subject_times": ["Civil War, 1642-1649"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11917431W 2 2010-01-21T18:38:04.957842 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:41:23.099555"}, "title": "The development of positive mental attitudes in college student volunteers", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T18:38:04.957842"}, "latest_revision": 2, "key": "/works/OL11917431W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5115835A"}}], "type": {"key": "/type/work"}, "subjects": ["Self-actualization (Psychology)", "Volunteer workers in mental health"], "revision": 2}
+/type/work /works/OL11917485W 2 2010-01-21T18:38:04.957842 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:41:23.099555"}, "title": "Contrasts in spirit life, and recent experiences of Samuel Bowles, late editor of the Springfield (Mass.) Republican, in the first five spheres", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T18:38:04.957842"}, "latest_revision": 2, "key": "/works/OL11917485W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5115885A"}}], "type": {"key": "/type/work"}, "subjects": ["Spirit writings"], "revision": 2}
+/type/work /works/OL11917775W 2 2010-01-21T18:38:04.957842 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:41:31.916803"}, "title": "Comparison of Negro and White attitudes in a Washington community", "subject_places": ["Pasco (Wash.)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T18:38:04.957842"}, "latest_revision": 2, "key": "/works/OL11917775W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5116003A"}}], "type": {"key": "/type/work"}, "subjects": ["Race relations"], "revision": 2}
+/type/work /works/OL11917926W 2 2010-01-21T18:38:04.957842 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:41:31.916803"}, "title": "Gestione e formazione nei musei del Veneto", "subject_places": ["Veneto", "Italy"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T18:38:04.957842"}, "latest_revision": 2, "key": "/works/OL11917926W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5116129A"}}], "type": {"key": "/type/work"}, "subjects": ["Museums", "Congresses", "Management"], "revision": 2}
+/type/work /works/OL1191800W 2 2010-01-21T18:38:04.957842 {"title": "Julian, the Apostate", "created": {"type": "/type/datetime", "value": "2009-12-09T20:41:34.400536"}, "subject_places": ["Rome"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T18:38:04.957842"}, "latest_revision": 2, "key": "/works/OL1191800W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL120341A"}}], "subject_people": ["Julian Emperor of Rome (331-363)"], "subject_times": ["Julian, 361-363"], "type": {"key": "/type/work"}, "subjects": ["History", "Biography", "Emperors"], "revision": 2}
+/type/work /works/OL11918525W 2 2010-01-21T18:42:45.846736 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:41:31.916803"}, "title": "To Sions virgins, or, A short forme of catechisme of the doctrine of baptisme", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T18:42:45.846736"}, "latest_revision": 2, "key": "/works/OL11918525W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5116587A"}}], "type": {"key": "/type/work"}, "subjects": ["Baptism"], "revision": 2}
+/type/work /works/OL11918712W 1 2009-12-11T05:41:40.092753 {"title": "A soldier of truth", "created": {"type": "/type/datetime", "value": "2009-12-11T05:41:40.092753"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:41:40.092753"}, "latest_revision": 1, "key": "/works/OL11918712W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5116728A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11918777W 2 2023-01-07T16:54:45.522770 {"title": "Hum\u016bm \u1e63agh\u012brah", "key": "/works/OL11918777W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5116776A"}}], "type": {"key": "/type/work"}, "description": {"type": "/type/text", "value": "Stories."}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T05:41:40.092753"}, "last_modified": {"type": "/type/datetime", "value": "2023-01-07T16:54:45.522770"}}
+/type/work /works/OL11918785W 2 2010-01-21T18:42:45.846736 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:41:40.092753"}, "title": "The elements of water-drawing, or, [A] compendious abstract of a[ll sorts of kinds] of water-machins or gins used or pr[actis]ed in the world", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T18:42:45.846736"}, "latest_revision": 2, "key": "/works/OL11918785W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5116779A"}}], "type": {"key": "/type/work"}, "subjects": ["Early works to 1800", "Pumping machinery"], "revision": 2}
+/type/work /works/OL11918799W 2 2010-01-21T18:42:45.846736 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:41:40.092753"}, "title": "Tovarnyi\u0306 kharakter sotsialisticheskogo proizvodstva", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T18:42:45.846736"}, "latest_revision": 2, "key": "/works/OL11918799W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5116785A"}}], "type": {"key": "/type/work"}, "subjects": ["Marxian economics"], "revision": 2}
+/type/work /works/OL11918919W 1 2009-12-11T05:41:40.092753 {"title": "Hand-printed fabrics", "created": {"type": "/type/datetime", "value": "2009-12-11T05:41:40.092753"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:41:40.092753"}, "latest_revision": 1, "key": "/works/OL11918919W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5116859A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11918962W 2 2010-01-21T18:42:45.846736 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:41:40.092753"}, "title": "The isles are my delight", "subject_places": ["Western Isles (Scotland)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T18:42:45.846736"}, "latest_revision": 2, "key": "/works/OL11918962W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5116882A"}}], "type": {"key": "/type/work"}, "subjects": ["Social life and customs"], "revision": 2}
+/type/work /works/OL11918967W 2 2010-01-21T18:42:45.846736 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:41:40.092753"}, "title": "Sovremennye tekhnologii obespechenii\ufe20a\ufe21 kachestva obrazovanii\ufe20a\ufe21", "subject_places": ["Russia (Federation)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T18:42:45.846736"}, "latest_revision": 2, "key": "/works/OL11918967W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5116885A"}}], "type": {"key": "/type/work"}, "subjects": ["Congresses", "School management and organization"], "revision": 2}
+/type/work /works/OL11919098W 2 2010-01-21T18:42:45.846736 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:41:40.092753"}, "title": "The pathogenesis of Aleutian diseases in mink", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T18:42:45.846736"}, "latest_revision": 2, "key": "/works/OL11919098W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5116977A"}}], "type": {"key": "/type/work"}, "subjects": ["Minks"], "revision": 2}
+/type/work /works/OL11919125W 2 2010-01-21T18:42:45.846736 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:41:40.092753"}, "title": "Comparison of the physical and biological properties of mouse H-2 histocompatibility antigens extracted with ionic agents", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T18:42:45.846736"}, "latest_revision": 2, "key": "/works/OL11919125W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5117000A"}}], "type": {"key": "/type/work"}, "subjects": ["H-2 locus"], "revision": 2}
+/type/work /works/OL1191943W 3 2020-11-15T07:35:21.190937 {"last_modified": {"type": "/type/datetime", "value": "2020-11-15T07:35:21.190937"}, "title": "Exiles and Fugitives", "created": {"type": "/type/datetime", "value": "2009-12-09T20:41:34.400536"}, "subjects": ["American letters", "Correspondence", "American Authors", "Intellectual life"], "latest_revision": 3, "key": "/works/OL1191943W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL120361A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11919773W 3 2010-04-28T07:25:45.460388 {"title": "Die Erkenntnis von Gut und B ose macht den Menschen zum Bild und Gleichnis Gottes", "created": {"type": "/type/datetime", "value": "2009-12-11T05:41:48.691008"}, "covers": [5352009], "last_modified": {"type": "/type/datetime", "value": "2010-04-28T07:25:45.460388"}, "latest_revision": 3, "key": "/works/OL11919773W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5117496A"}}], "subjects": ["OUR Brockhaus selection", "Bible"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11919952W 2 2010-01-21T18:47:25.892357 {"title": "Albertus Magnus", "created": {"type": "/type/datetime", "value": "2009-12-11T05:41:48.691008"}, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T18:47:25.892357"}, "latest_revision": 2, "key": "/works/OL11919952W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5117644A"}}], "subject_people": ["Albertus Magnus, Saint (1193?-1280)"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11920146W 3 2022-12-29T09:04:11.800677 {"title": "Zhongguo gong wen fa zhan jian shi", "subject_places": ["China"], "key": "/works/OL11920146W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5117790A"}}], "type": {"key": "/type/work"}, "subjects": ["Government correspondence", "Letter-writing, Chinese", "Chinese Letter writing"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T05:41:48.691008"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-29T09:04:11.800677"}}
+/type/work /works/OL1192039W 2 2012-05-31T20:27:14.108544 {"title": "True Humanism", "created": {"type": "/type/datetime", "value": "2009-12-09T20:41:34.400536"}, "last_modified": {"type": "/type/datetime", "value": "2012-05-31T20:27:14.108544"}, "latest_revision": 2, "key": "/works/OL1192039W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL120361A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11920688W 3 2010-12-03T16:52:16.122793 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T16:52:16.122793"}, "latest_revision": 3, "key": "/works/OL11920688W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5118182A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T05:41:48.691008"}, "title": "Feuer auf die Erde", "subjects": ["Doctrines", "Early works to 1800", "Heilige Geest", "History of doctrines", "Holy Spirit", "Orthodox Eastern Church"], "subject_people": ["Symeon the New Theologian, Saint (949-1022)"], "subject_times": ["Middle Ages, 600-1500"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11920734W 4 2020-12-19T17:21:08.961744 {"title": "Ulrike Meinhof", "covers": [5352057], "subject_places": ["Germany (West)"], "key": "/works/OL11920734W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5118216A"}}], "subject_people": ["Ulrike Marie Meinhof"], "type": {"key": "/type/work"}, "subjects": ["Biography", "Dissenters", "Baader-Meinhof gang", "Terrorists", "Rote Armee Fraktion"], "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T05:41:57.366799"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-19T17:21:08.961744"}}
+/type/work /works/OL11921441W 1 2009-12-11T05:41:57.366799 {"title": "Days in old Spain", "created": {"type": "/type/datetime", "value": "2009-12-11T05:41:57.366799"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:41:57.366799"}, "latest_revision": 1, "key": "/works/OL11921441W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5118766A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11921447W 1 2009-12-11T05:41:57.366799 {"title": "Le se\u0301ducteur", "created": {"type": "/type/datetime", "value": "2009-12-11T05:41:57.366799"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:41:57.366799"}, "latest_revision": 1, "key": "/works/OL11921447W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5118771A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11921483W 2 2010-01-21T18:51:57.190139 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:41:57.366799"}, "title": "A guide for the teaching of Spanish in the elementary schools", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T18:51:57.190139"}, "latest_revision": 2, "key": "/works/OL11921483W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5118802A"}}], "type": {"key": "/type/work"}, "subjects": ["Study and teaching", "Spanish language"], "revision": 2}
+/type/work /works/OL11921573W 1 2009-12-11T05:41:57.366799 {"title": "Ye olde Childewall", "created": {"type": "/type/datetime", "value": "2009-12-11T05:41:57.366799"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:41:57.366799"}, "latest_revision": 1, "key": "/works/OL11921573W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5118863A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11921718W 2 2010-01-21T18:51:57.190139 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:42:05.461639"}, "title": "Mexico? Si, Se\u00f1or", "subject_places": ["Mexico"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T18:51:57.190139"}, "latest_revision": 2, "key": "/works/OL11921718W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5118971A"}}], "type": {"key": "/type/work"}, "subjects": ["Description and travel"], "revision": 2}
+/type/work /works/OL11921832W 2 2010-01-21T18:51:57.190139 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:42:05.461639"}, "title": "Etudes d'histoire de la pensee scientifique", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T18:51:57.190139"}, "latest_revision": 2, "key": "/works/OL11921832W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5119064A"}}], "type": {"key": "/type/work"}, "subjects": ["Science", "Methodology", "History"], "revision": 2}
+/type/work /works/OL11921885W 3 2022-12-22T04:48:23.783364 {"title": "Contractures organique et hysterique", "key": "/works/OL11921885W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5119100A"}}], "type": {"key": "/type/work"}, "subjects": ["Contracture (Pathology)"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T05:42:05.461639"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-22T04:48:23.783364"}}
+/type/work /works/OL11922248W 6 2022-07-19T00:33:00.526054 {"subjects": ["Endocrine glands", "Juvenile literature", "Glands", "Human body, juvenile literature"], "key": "/works/OL11922248W", "title": "The endocrine system", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5119344A"}}], "type": {"key": "/type/work"}, "covers": [8280924], "latest_revision": 6, "revision": 6, "created": {"type": "/type/datetime", "value": "2009-12-11T05:42:05.461639"}, "last_modified": {"type": "/type/datetime", "value": "2022-07-19T00:33:00.526054"}}
+/type/work /works/OL11922680W 2 2010-01-21T18:56:49.903832 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:42:05.461639"}, "title": "Svensk-Engelsk ordbok", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T18:56:49.903832"}, "latest_revision": 2, "key": "/works/OL11922680W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5119610A"}}], "type": {"key": "/type/work"}, "subjects": ["Swedish language", "Dictionaries", "English"], "revision": 2}
+/type/work /works/OL11922709W 3 2010-12-03T16:51:41.481989 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T16:51:41.481989"}, "title": "A chronology of the rise and growth of popery", "created": {"type": "/type/datetime", "value": "2009-12-11T05:42:05.461639"}, "subjects": ["Catholic Church", "Controversial literature"], "latest_revision": 3, "key": "/works/OL11922709W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5119633A"}}], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11923017W 2 2010-01-21T18:56:49.903832 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:42:13.961036"}, "title": "Biliary cirrhosis [by] Roy Cameron and P.C. Hou (Hou Pao-chang)", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T18:56:49.903832"}, "latest_revision": 2, "key": "/works/OL11923017W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5119848A"}}], "type": {"key": "/type/work"}, "subjects": ["Liver", "Cirrhosis"], "revision": 2}
+/type/work /works/OL11923353W 1 2009-12-11T05:42:13.961036 {"title": "Using data mining techniques to identify cross-selling opportunities", "created": {"type": "/type/datetime", "value": "2009-12-11T05:42:13.961036"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:42:13.961036"}, "latest_revision": 1, "key": "/works/OL11923353W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5120129A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11923520W 1 2009-12-11T05:42:13.961036 {"title": "'In one line two crafts directly meet'", "created": {"type": "/type/datetime", "value": "2009-12-11T05:42:13.961036"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:42:13.961036"}, "latest_revision": 1, "key": "/works/OL11923520W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5120279A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11923848W 2 2010-01-21T18:56:49.903832 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:42:22.357292"}, "title": "Breve noticia histo\u0301rica sobre los primitivos habitantes de la provincia de Co\u0301rdoba", "subject_places": ["Argentina", "C\u00f3rdoba (Argentina : Province)", "C\u00f3rdoba (Province)"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T18:56:49.903832"}, "latest_revision": 2, "key": "/works/OL11923848W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5120539A"}}], "type": {"key": "/type/work"}, "subjects": ["Indians of South America", "Antiquities"], "revision": 2}
+/type/work /works/OL11923961W 2 2010-01-21T18:56:49.903832 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:42:22.357292"}, "title": "Gakumon to dokusho", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T18:56:49.903832"}, "latest_revision": 2, "key": "/works/OL11923961W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5120616A"}}], "type": {"key": "/type/work"}, "subjects": ["Science", "Literature", "Learning and scholarship", "History and criticism"], "revision": 2}
+/type/work /works/OL11924063W 9 2020-02-13T15:54:15.675995 {"covers": [6701808], "last_modified": {"type": "/type/datetime", "value": "2020-02-13T15:54:15.675995"}, "latest_revision": 9, "key": "/works/OL11924063W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL32650A"}}], "created": {"type": "/type/datetime", "value": "2009-12-11T05:42:22.357292"}, "title": "If you could see me now", "subject_places": ["Wisconsin"], "subjects": ["Cousins", "Fiction", "Paranoia", "Spirits"], "type": {"key": "/type/work"}, "revision": 9}
+/type/work /works/OL11924125W 1 2009-12-11T05:42:22.357292 {"title": "Espan\u0303a", "created": {"type": "/type/datetime", "value": "2009-12-11T05:42:22.357292"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:42:22.357292"}, "latest_revision": 1, "key": "/works/OL11924125W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5120700A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11924489W 2 2022-12-06T20:36:34.749124 {"title": "Satellites into orbit", "key": "/works/OL11924489W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1663304A"}}], "type": {"key": "/type/work"}, "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2009-12-11T05:42:22.357292"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-06T20:36:34.749124"}}
+/type/work /works/OL11924699W 4 2020-12-22T16:47:59.701579 {"subject_places": ["China", "Shanghai"], "subjects": ["Biography", "History", "Jewish Refugees", "Jews", "Refugees, Jewish", "Jewish refugees"], "key": "/works/OL11924699W", "title": "Xun fang Youtai ren", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5121097A"}}], "type": {"key": "/type/work"}, "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T05:42:22.357292"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-22T16:47:59.701579"}}
+/type/work /works/OL11924792W 2 2010-01-21T19:01:33.885751 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:42:30.481194"}, "title": "Tuskegee institute yesterday and today", "last_modified": {"type": "/type/datetime", "value": "2010-01-21T19:01:33.885751"}, "latest_revision": 2, "key": "/works/OL11924792W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5121163A"}}], "type": {"key": "/type/work"}, "subjects": ["African American universities and colleges"], "revision": 2}
+/type/work /works/OL11924835W 3 2010-12-03T16:54:13.070093 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:42:30.481194"}, "subject_places": ["British Columbia", "Fraser River Watershed", "Pacific Coast", "Pacific Coast (U.S.)"], "subjects": ["Bibliography", "Catalogs", "International Pacific Salmon Fisheries Commission", "Pacific Salmon Commission", "Pacific Salmon Commission. Library", "Salmon fisheries"], "latest_revision": 3, "key": "/works/OL11924835W", "title": "Archival collection of the International Pacific Salmon Fisheries Commission in the Pacific Salmon Commission Library", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5121203A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T16:54:13.070093"}, "revision": 3}
+/type/work /works/OL1192539W 3 2022-12-30T11:41:29.944407 {"title": "Programme de recherches sociales pour le Que\u0301bec", "subject_places": ["Qu\u00e9bec (Province)"], "key": "/works/OL1192539W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL120406A"}}], "type": {"key": "/type/work"}, "subjects": ["Social conditions", "Social sciences", "Research", "Sciences sociales", "Recherche", "Conditions sociales"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-09T20:41:43.628496"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-30T11:41:29.944407"}}
+/type/work /works/OL11925636W 4 2020-08-13T11:19:33.930242 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:42:30.481194"}, "subject_places": ["Prahran (Vic.)"], "subjects": ["History"], "latest_revision": 4, "key": "/works/OL11925636W", "title": "The history of Prahran", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5121731A"}}], "type": {"key": "/type/work"}, "last_modified": {"type": "/type/datetime", "value": "2020-08-13T11:19:33.930242"}, "revision": 4}
+/type/work /works/OL11925776W 4 2022-08-10T06:58:44.114578 {"title": "Dionysos archetypal image of the indestructable life", "subjects": ["Dionysus"], "key": "/works/OL11925776W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL69005A"}}], "type": {"key": "/type/work"}, "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2009-12-11T05:42:37.687667"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-10T06:58:44.114578"}}
+/type/work /works/OL1192580W 4 2019-11-19T20:35:28.318236 {"title": "Nutritional Considerations in a Changing World (World Review of Nutrition and Dietetics)", "created": {"type": "/type/datetime", "value": "2009-12-09T20:41:43.628496"}, "covers": [5226971], "last_modified": {"type": "/type/datetime", "value": "2019-11-19T20:35:28.318236"}, "latest_revision": 4, "key": "/works/OL1192580W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5245249A"}}], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL11925982W 1 2009-12-11T05:42:37.687667 {"title": "Facing facts", "created": {"type": "/type/datetime", "value": "2009-12-11T05:42:37.687667"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:42:37.687667"}, "latest_revision": 1, "key": "/works/OL11925982W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5121978A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11926104W 1 2009-12-11T05:42:37.687667 {"title": "Contes de l'Abbe\u0301 de Voisenon et poe\u0301sies fugitives du me\u0302me auteur", "created": {"type": "/type/datetime", "value": "2009-12-11T05:42:37.687667"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:42:37.687667"}, "latest_revision": 1, "key": "/works/OL11926104W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5122054A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11926151W 2 2010-01-21T19:06:48.081998 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:42:37.687667"}, "title": "The congregational churches in Canada", "subject_places": ["Canada"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T19:06:48.081998"}, "latest_revision": 2, "key": "/works/OL11926151W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5122088A"}}], "type": {"key": "/type/work"}, "subjects": ["Congregational churches", "History"], "revision": 2}
+/type/work /works/OL11926715W 3 2010-01-21T19:37:05.590930 {"first_publish_date": "1979", "key": "/works/OL11926715W", "title": "\u1e32onfli\u1e33\u1e6d odot misud \u02bberkhe ha-Yahadut bi-medinat Yi\u015brael", "created": {"type": "/type/datetime", "value": "2009-12-11T05:42:45.378483"}, "subject_places": ["Israel"], "lc_classifications": ["BM390 S25"], "latest_revision": 3, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T19:37:05.590930"}, "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5122434A"}}], "subjects": ["Orthodox Judaism", "Religion and state"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11926806W 4 2020-08-13T02:45:13.183716 {"last_modified": {"type": "/type/datetime", "value": "2020-08-13T02:45:13.183716"}, "title": "Yosef Lesh\u1e6dshins\u1e33i (Y. Khmorner)", "created": {"type": "/type/datetime", "value": "2009-12-11T05:42:45.378483"}, "first_publish_date": "1937", "latest_revision": 4, "key": "/works/OL11926806W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5122486A"}}], "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL11927241W 3 2010-01-21T19:37:05.590930 {"first_publish_date": "1996", "key": "/works/OL11927241W", "title": "Jamid\u0101ra darpa\u1e47e, \u1e6c\u0101ki", "created": {"type": "/type/datetime", "value": "2009-12-11T05:42:45.378483"}, "subject_places": ["Taki (India)", "India", "\u1e6a\u0101ki"], "lc_classifications": ["HD879.T34 R39 1996"], "latest_revision": 3, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T19:37:05.590930"}, "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5122796A"}}], "subjects": ["Landlords", "Genealogy", "History"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL11927327W 3 2010-01-21T19:37:05.590930 {"last_modified": {"type": "/type/datetime", "value": "2010-01-21T19:37:05.590930"}, "title": "Die lateinische Sprache", "created": {"type": "/type/datetime", "value": "2009-12-11T05:42:45.378483"}, "first_publish_date": "1959", "latest_revision": 3, "key": "/works/OL11927327W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5122844A"}}], "subject_times": ["1950-"], "subjects": ["Latin language", "Grammar", "Readers"], "type": {"key": "/type/work"}, "revision": 3}
+/type/work /works/OL1192768W 4 2011-01-05T19:52:27.656823 {"first_publish_date": "1942", "latest_revision": 4, "key": "/works/OL1192768W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5986473A"}}], "subjects": ["Comparative linguistics", "History"], "title": "Q \u0302ue\u0301 es la lingu\u0308i\u0301stica?", "created": {"type": "/type/datetime", "value": "2009-12-09T20:41:43.628496"}, "lc_classifications": ["P73 .T35"], "last_modified": {"type": "/type/datetime", "value": "2011-01-05T19:52:27.656823"}, "type": {"key": "/type/work"}, "revision": 4}
+/type/work /works/OL11928163W 5 2020-12-23T16:44:32.014624 {"title": "Get wired, you're hired", "covers": [10414207], "subject_places": ["Canada"], "first_publish_date": "1997", "key": "/works/OL11928163W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5123501A"}}], "type": {"key": "/type/work"}, "subjects": ["Computer network resources", "Job hunting", "Vocational guidance", "Data processing"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2009-12-11T05:42:53.654333"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-23T16:44:32.014624"}}
+/type/work /works/OL11928459W 2 2010-01-21T19:42:05.869820 {"lc_classifications": ["QK898 P57 P54 1963"], "key": "/works/OL11928459W", "created": {"type": "/type/datetime", "value": "2009-12-11T05:42:53.654333"}, "title": "Methods in polyphenol chemistry", "first_publish_date": "1964", "latest_revision": 2, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T19:42:05.869820"}, "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5123735A"}}], "type": {"key": "/type/work"}, "subjects": ["Phenols"], "revision": 2}
+/type/work /works/OL11928475W 2 2010-01-21T19:42:05.869820 {"key": "/works/OL11928475W", "created": {"type": "/type/datetime", "value": "2009-12-11T05:42:53.654333"}, "title": "Order of divine service for the Royal Canadian navy", "first_publish_date": "1900", "latest_revision": 2, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T19:42:05.869820"}, "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5123746A"}}], "type": {"key": "/type/work"}, "subjects": ["Worship programs"], "revision": 2}
+/type/work /works/OL11929155W 4 2010-12-03T16:54:13.070093 {"last_modified": {"type": "/type/datetime", "value": "2010-12-03T16:54:13.070093"}, "title": "Die Vergessenen von Stukenbrock", "created": {"type": "/type/datetime", "value": "2009-12-11T05:43:01.577354"}, "covers": [5352854], "subject_places": ["Germany", "Stukenbrock", "Stukenbrock (Germany)", "Stukenbrock-Senne (Germany : Concentration camp)"], "first_publish_date": "1988", "latest_revision": 4, "key": "/works/OL11929155W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5124200A"}}], "type": {"key": "/type/work"}, "subjects": ["Concentration camps", "German Prisoners and prisons", "History", "Prisoners and prisons, German", "Prisoners of war", "World War, 1939-1945"], "revision": 4}
+/type/work /works/OL11929180W 3 2023-01-06T04:31:36.247100 {"lc_classifications": ["BT111.3 .V53 2008"], "key": "/works/OL11929180W", "title": "Invocation and assent", "first_publish_date": "2008", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5124220A"}}], "dewey_number": ["231/.04409"], "type": {"key": "/type/work"}, "subjects": ["History of doctrines", "Trinity"], "covers": [13130880], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T05:43:01.577354"}, "last_modified": {"type": "/type/datetime", "value": "2023-01-06T04:31:36.247100"}}
+/type/work /works/OL11929299W 2 2010-01-21T19:59:20.110678 {"key": "/works/OL11929299W", "created": {"type": "/type/datetime", "value": "2009-12-11T05:43:01.577354"}, "title": "Advice to a mother on the management of her offspring", "first_publish_date": "1852", "latest_revision": 2, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T19:59:20.110678"}, "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5124299A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11929320W 1 2009-12-11T05:43:01.577354 {"title": "Huan Zhu ge ge san zhi yi", "created": {"type": "/type/datetime", "value": "2009-12-11T05:43:01.577354"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:43:01.577354"}, "latest_revision": 1, "key": "/works/OL11929320W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5124307A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11929693W 3 2020-12-20T02:46:56.668799 {"lc_classifications": ["QP624 .B74 2008"], "key": "/works/OL11929693W", "title": "Reading the story in DNA", "first_publish_date": "2008", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5124544A"}}], "dewey_number": ["572.8/6"], "type": {"key": "/type/work"}, "subjects": ["DNA", "Evolutionary genetics", "Molecular evolution", "Evolution, Molecular", "Molecular Evolution"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T05:43:01.577354"}, "last_modified": {"type": "/type/datetime", "value": "2020-12-20T02:46:56.668799"}}
+/type/work /works/OL11929743W 2 2010-01-21T20:03:36.918587 {"lc_classifications": ["PK1730.29.U46818 B47 1993"], "key": "/works/OL11929743W", "created": {"type": "/type/datetime", "value": "2009-12-11T05:43:11.002337"}, "title": "Bh\u0101ban\u0101ra ras\u0101\u1e8fana", "first_publish_date": "1993", "latest_revision": 2, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T20:03:36.918587"}, "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5124589A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11929828W 2 2010-01-21T20:03:36.918587 {"key": "/works/OL11929828W", "created": {"type": "/type/datetime", "value": "2009-12-11T05:43:11.002337"}, "title": "The nature and mischief of envy", "first_publish_date": "1693", "latest_revision": 2, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T20:03:36.918587"}, "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5124653A"}}], "type": {"key": "/type/work"}, "subjects": ["Envy", "Sermons"], "revision": 2}
+/type/work /works/OL1192984W 3 2020-11-04T22:33:09.971008 {"last_modified": {"type": "/type/datetime", "value": "2020-11-04T22:33:09.971008"}, "title": "Questions and answers on the Virginia retirement act", "created": {"type": "/type/datetime", "value": "2009-12-09T20:41:43.628496"}, "subject_places": ["Virginia"], "first_publish_date": "1942", "latest_revision": 3, "key": "/works/OL1192984W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL120468A"}}], "dewey_number": ["351.5"], "type": {"key": "/type/work"}, "subjects": ["Officials and employees", "Pensions", "Teachers", "Salaries, pensions", "Salaries"], "revision": 3}
+/type/work /works/OL11929946W 2 2010-01-21T20:03:36.918587 {"key": "/works/OL11929946W", "created": {"type": "/type/datetime", "value": "2009-12-11T05:43:11.002337"}, "title": "In hoc volumine continentur ... Joan. Serapionis Arabis De simplicibus medicinis opus praeclarum & ingens", "first_publish_date": "1531", "latest_revision": 2, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T20:03:36.918587"}, "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5124736A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11930160W 2 2010-01-21T20:03:36.918587 {"key": "/works/OL11930160W", "created": {"type": "/type/datetime", "value": "2009-12-11T05:43:11.002337"}, "title": "The English malady removed", "first_publish_date": "1769", "latest_revision": 2, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T20:03:36.918587"}, "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5124909A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11930283W 2 2010-01-21T20:03:36.918587 {"key": "/works/OL11930283W", "created": {"type": "/type/datetime", "value": "2009-12-11T05:43:11.002337"}, "title": "Cnewyllyn mewn gwisg: sef Cnewyllyn gwirionedd mewn gwisg o gynghanedd. Neu gasgliad o garolau, a cherddi; a rhai cywyddau, ac englynion, ar amryw destynau: pa rai ni buant argraphedig o'r blaen. Gan Robert Davies, ..", "first_publish_date": "1798", "latest_revision": 2, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T20:03:36.918587"}, "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5124986A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11930300W 2 2010-01-21T20:03:36.918587 {"key": "/works/OL11930300W", "created": {"type": "/type/datetime", "value": "2009-12-11T05:43:11.002337"}, "title": "The measurement of acetylator phenotype in man", "first_publish_date": "1987", "latest_revision": 2, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T20:03:36.918587"}, "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5125000A"}}], "dewey_number": ["612.01585"], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11930303W 3 2010-12-03T16:55:11.511488 {"first_publish_date": "1980", "last_modified": {"type": "/type/datetime", "value": "2010-12-03T16:55:11.511488"}, "title": "Review into the standards and recruitment practices of the Metropolitan Toronto Police", "created": {"type": "/type/datetime", "value": "2009-12-11T05:43:11.002337"}, "subject_places": ["Toronto metropolitan area (Ont.)"], "lc_classifications": ["HV8160T6 C54 1980"], "latest_revision": 3, "key": "/works/OL11930303W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5125002A"}}], "dewey_number": ["363.20971"], "type": {"key": "/type/work"}, "subjects": ["Metropolitan Toronto (Ont.).", "Metropolitan Toronto (Ont.). Police Force", "Police", "Recruiting"], "revision": 3}
+/type/work /works/OL11930425W 2 2010-01-21T20:08:19.785297 {"key": "/works/OL11930425W", "created": {"type": "/type/datetime", "value": "2009-12-11T05:43:11.002337"}, "title": "The interactions between hydrogen chloride and various proton acceptor molecules in lowtemperature inert matrices", "first_publish_date": "1984", "latest_revision": 2, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T20:08:19.785297"}, "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5125100A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11930498W 2 2010-01-21T20:08:19.785297 {"lc_classifications": ["PG3483E87 I85 1986"], "key": "/works/OL11930498W", "created": {"type": "/type/datetime", "value": "2009-12-11T05:43:11.002337"}, "title": "Ivovy\u012d kust", "first_publish_date": "1986", "latest_revision": 2, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T20:08:19.785297"}, "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5125151A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11930737W 2 2010-01-21T20:08:19.785297 {"key": "/works/OL11930737W", "created": {"type": "/type/datetime", "value": "2009-12-11T05:43:19.166956"}, "title": "Articles of the High Court of Chancery, for settling and governing Sir Joseph Williamson's Mathematical School at Rochester", "first_publish_date": "1781", "latest_revision": 2, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T20:08:19.785297"}, "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5125349A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11931003W 2 2010-01-21T20:08:19.785297 {"key": "/works/OL11931003W", "created": {"type": "/type/datetime", "value": "2009-12-11T05:43:19.166956"}, "title": "A preliminary evaluation of the BIODOSE computer program", "first_publish_date": "1979", "latest_revision": 2, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T20:08:19.785297"}, "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5125556A"}}], "type": {"key": "/type/work"}, "subjects": ["Radioisotopes", "Operating systems (Computers)"], "revision": 2}
+/type/work /works/OL11931142W 3 2021-12-26T15:28:24.363592 {"lc_classifications": ["PR9199.4.B8766 J33 2007"], "key": "/works/OL11931142W", "title": "Jackfish, the vanishing village", "first_publish_date": "1968", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5125650A"}}], "dewey_number": ["C813/.6"], "type": {"key": "/type/work"}, "subjects": ["Fiction", "Women", "Life change events", "Identity (Psychology)", "Fiction, coming of age", "Fiction, psychological"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T05:43:19.166956"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-26T15:28:24.363592"}}
+/type/work /works/OL11931728W 2 2010-01-21T20:12:53.492761 {"lc_classifications": ["KD2206 .C57 2007"], "key": "/works/OL11931728W", "created": {"type": "/type/datetime", "value": "2009-12-11T05:43:27.688770"}, "title": "Sales promotion and direct marketing law", "subject_places": ["Great Britain"], "first_publish_date": "2007", "latest_revision": 2, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T20:12:53.492761"}, "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5126010A"}}], "type": {"key": "/type/work"}, "subjects": ["Law and legislation", "Miscellanea", "Direct marketing", "Sales promotion"], "revision": 2}
+/type/work /works/OL11931797W 2 2010-01-21T20:12:53.492761 {"key": "/works/OL11931797W", "created": {"type": "/type/datetime", "value": "2009-12-11T05:43:27.688770"}, "title": "An analysis of the general shop program in the junior high school", "subject_places": ["Washington (State)"], "first_publish_date": "1949", "latest_revision": 2, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T20:12:53.492761"}, "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5126059A"}}], "type": {"key": "/type/work"}, "subjects": ["School shops", "Manual training"], "revision": 2}
+/type/work /works/OL11931953W 2 2010-01-21T20:12:53.492761 {"lc_classifications": ["Z8576.27 .S95 2007", "PG7158.M553 .S95 2007"], "last_modified": {"type": "/type/datetime", "value": "2010-01-21T20:12:53.492761"}, "title": "Czes\u0142aw Mi\u0142osz w wydawnictwach Instytutu Literackiego w Paryz\u0307u", "created": {"type": "/type/datetime", "value": "2009-12-11T05:43:27.688770"}, "first_publish_date": "2007", "latest_revision": 2, "key": "/works/OL11931953W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5126183A"}}], "subject_people": ["Czes\u0142aw Mi\u0142osz"], "type": {"key": "/type/work"}, "subjects": ["Bibliography"], "revision": 2}
+/type/work /works/OL11932099W 3 2010-12-03T20:13:43.521723 {"created": {"type": "/type/datetime", "value": "2009-12-11T05:43:27.688770"}, "first_publish_date": "2000", "latest_revision": 3, "last_modified": {"type": "/type/datetime", "value": "2010-12-03T20:13:43.521723"}, "key": "/works/OL11932099W", "title": "Index to 1851 Census", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5126297A"}}], "type": {"key": "/type/work"}, "subjects": ["Ross and Cromarty (Scotland)"], "revision": 3}
+/type/work /works/OL11932151W 2 2010-01-21T20:12:53.492761 {"key": "/works/OL11932151W", "created": {"type": "/type/datetime", "value": "2009-12-11T05:43:27.688770"}, "title": "Christmas day", "first_publish_date": "1745", "latest_revision": 2, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T20:12:53.492761"}, "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5126342A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11932410W 3 2022-08-17T03:01:30.489023 {"key": "/works/OL11932410W", "title": "Fabric painting", "first_publish_date": "1994", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5126513A"}}], "dewey_number": ["746.6"], "type": {"key": "/type/work"}, "subjects": ["Fabric pictures", "Textile painting"], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2009-12-11T05:43:27.688770"}, "last_modified": {"type": "/type/datetime", "value": "2022-08-17T03:01:30.489023"}}
+/type/work /works/OL11932724W 2 2010-01-21T20:17:35.170217 {"lc_classifications": ["PH665M3 J84", "PH665M3 J84"], "key": "/works/OL11932724W", "created": {"type": "/type/datetime", "value": "2009-12-11T05:43:35.623618"}, "title": "Jumalaga, meri!", "first_publish_date": "1967", "latest_revision": 2, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T20:17:35.170217"}, "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5126737A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11933115W 2 2010-01-21T20:17:35.170217 {"key": "/works/OL11933115W", "created": {"type": "/type/datetime", "value": "2009-12-11T05:43:35.623618"}, "title": "\u1e62ifat bil\u0101d al-Yaman wa-Makkah wa-ba\u02bb\u1e0d al-\u1e24ij\u0101z, al-musamm\u0101h Ta\u02ber\u012bkh al-mustab\u1e63ir", "subject_places": ["Mecca (Saudi Arabia)", "Yemen (Republic)", "Arabian Peninsula", "Hejaz (Saudi Arabia)"], "first_publish_date": "1951", "latest_revision": 2, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T20:17:35.170217"}, "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5126998A"}}], "type": {"key": "/type/work"}, "subjects": ["Description and travel", "Early works to 1800"], "revision": 2}
+/type/work /works/OL11933476W 2 2010-01-21T20:22:32.967032 {"key": "/works/OL11933476W", "created": {"type": "/type/datetime", "value": "2009-12-11T05:43:35.623618"}, "title": "This is Illinois", "first_publish_date": "1949", "latest_revision": 2, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T20:22:32.967032"}, "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5127254A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL11933510W 2 2010-01-21T20:22:32.967032 {"key": "/works/OL11933510W", "created": {"type": "/type/datetime", "value": "2009-12-11T05:43:35.623618"}, "title": "Effect of dietary fiber and tannins on protein nutritive value in the common bean (Phaseolus vulgaris)", "first_publish_date": "1989", "latest_revision": 2, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T20:22:32.967032"}, "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5127278A"}}], "type": {"key": "/type/work"}, "subjects": ["Fiber in human nutrition", "Tannins"], "revision": 2}
+/type/work /works/OL11934114W 1 2009-12-11T05:43:42.996440 {"title": "MARINE POLLUTION IMPLICATIONS OF OCEAN ENERGY DEVELOPMENT", "created": {"type": "/type/datetime", "value": "2009-12-11T05:43:42.996440"}, "last_modified": {"type": "/type/datetime", "value": "2009-12-11T05:43:42.996440"}, "latest_revision": 1, "key": "/works/OL11934114W", "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5127682A"}}], "type": {"key": "/type/work"}, "revision": 1}
+/type/work /works/OL11934315W 2 2010-01-21T20:26:51.105610 {"key": "/works/OL11934315W", "created": {"type": "/type/datetime", "value": "2009-12-11T05:43:42.996440"}, "title": "Environment and Development", "first_publish_date": "1987", "latest_revision": 2, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T20:26:51.105610"}, "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5127766A"}}], "type": {"key": "/type/work"}, "revision": 2}
+/type/work /works/OL1193452W 4 2020-03-12T04:43:43.099245 {"first_publish_date": "1964", "last_modified": {"type": "/type/datetime", "value": "2020-03-12T04:43:43.099245"}, "title": "On culture and social change", "created": {"type": "/type/datetime", "value": "2009-12-09T20:41:54.753238"}, "covers": [9295865], "lc_classifications": ["HM101 .O38"], "latest_revision": 4, "key": "/works/OL1193452W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL120515A"}}], "dewey_number": ["301.2"], "type": {"key": "/type/work"}, "subjects": ["Civilization", "Technology and civilization", "Social change", "Sociale verandering", "Sociologie \u00e9conomique", "Changement social"], "revision": 4}
+/type/work /works/OL11934996W 3 2010-12-03T19:16:53.189721 {"first_publish_date": "1981", "last_modified": {"type": "/type/datetime", "value": "2010-12-03T19:16:53.189721"}, "title": "Equality and equalization", "created": {"type": "/type/datetime", "value": "2009-12-11T05:43:50.129300"}, "subject_places": ["Canada"], "lc_classifications": ["HJ197 C36"], "latest_revision": 3, "key": "/works/OL11934996W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL5128224A"}}], "type": {"key": "/type/work"}, "subjects": ["Canada", "Canada Assistance Plan Directorate", "Services for", "Women", "Women's rights"], "revision": 3}
+/type/work /works/OL11935201W 2 2010-01-21T20:26:51.105610 {"key": "/works/OL11935201W", "created": {"type": "/type/datetime", "value": "2009-12-11T05:43:50.129300"}, "title": "Daddy's Bobby; or, the star of Bethlehem", "first_publish_date": "1884", "latest_revision": 2, "last_modified": {"type": "/type/datetime", "value": "2010-01-21T20:26:51.105610"}, "authors": [{"type": "/type/author_role", "author": {"key": "/authors/OL5128359A"}}], "dewey_number": ["823.8"], "type": {"key": "/type/work"}, "revision": 2}
diff --git a/db_scripts/db_openlibrary.sql b/db_scripts/db_openlibrary.sql
new file mode 100644
index 0000000..0fd0b16
--- /dev/null
+++ b/db_scripts/db_openlibrary.sql
@@ -0,0 +1,2 @@
+drop database openlibrary;
+create database openlibrary;
\ No newline at end of file
diff --git a/db_scripts/load.sql b/db_scripts/load.sql
new file mode 100644
index 0000000..7e7a985
--- /dev/null
+++ b/db_scripts/load.sql
@@ -0,0 +1,88 @@
+SELECT NOW();
+-- import authors csv
+alter table authors set unlogged;
+\i 'db_scripts/openlibrary-data-loader.sql'
+alter table authors set logged;
+
+SELECT NOW();
+\i 'db_scripts/tbl_authors_indexes.sql';
+
+SELECT NOW();
+-- import works csv
+alter table works set unlogged;
+\i 'db_scripts/openlibrary-data-loader.sql'
+alter table works set logged;
+
+SELECT NOW();
+\i 'db_scripts/tbl_works_indexes.sql';
+
+SELECT NOW();
+-- set author and work_key for author_works from the data embedded in works
+alter table author_works set unlogged;
+insert into author_works (author_key, work_key)
+select distinct author_key, work_key
+from (
+ select
+ jsonb_array_elements(data->'authors')->'author'->>'key' as author_key,
+ key as work_key
+ from works
+ where key is not null
+ and data->'authors'->0->'author' is not null) authorship
+where author_key is not null
+and work_key is not null;
+alter table author_works set logged;
+
+SELECT NOW();
+\i 'db_scripts/tbl_author_works_indexes.sql';
+
+SELECT NOW();
+-- import editions csv
+alter table editions set unlogged;
+SELECT NOW();
+\i 'db_scripts/openlibrary-data-loader.sql'
+alter table editions
+add column work_key text;
+
+SELECT NOW();
+update editions
+set work_key = data->'works'->0->>'key';
+alter table editions set logged;
+
+SELECT NOW();
+\i 'db_scripts/tbl_editions_indexes.sql';
+SELECT NOW();
+-- set isbn for edition_isbns from the embedded json
+
+SELECT NOW();
+alter table edition_isbns set unlogged;
+insert into edition_isbns (edition_key, isbn)
+select
+ distinct edition_key,
+ isbn
+from (select
+ key as edition_key,
+ jsonb_array_elements_text(data->'isbn_13') as isbn
+ from editions
+ where jsonb_array_length(data->'isbn_13') > 0
+ and key is not null
+ union all
+ select
+ key as edition_key,
+ jsonb_array_elements_text(data->'isbn_10') as isbn
+ from editions
+ where jsonb_array_length(data->'isbn_10') > 0
+ and key is not null
+ union all
+ select
+ key as edition_key,
+ jsonb_array_elements_text(data->'isbn') as isbn
+ from editions
+ where jsonb_array_length(data->'isbn') > 0
+ and key is not null) isbns;
+alter table edition_isbns set logged;
+
+
+SELECT NOW();
+-- create isbn indexes
+\i 'db_scripts/tbl_edition_isbns_indexes.sql';
+SELECT NOW();
diff --git a/db_scripts/openlibrary-data-loader.sql b/db_scripts/openlibrary-data-loader.sql
new file mode 100644
index 0000000..b196e0e
--- /dev/null
+++ b/db_scripts/openlibrary-data-loader.sql
@@ -0,0 +1,17 @@
+\a
+\t
+
+-- spool the output into copy_commands.sql to generate all the copy commands
+\o copy_commands.sql
+select format('\copy %s from ''./data/processed/%s'' delimiter E''\t'' quote ''|'' csv;', name_of_table, filename)
+from (select id, name_of_table, filename from fileinfo, unnest(filenames) AS filename where hasBeenLoaded = false order by id limit 1) t;
+
+-- turn spooling off
+\o
+\a
+\t
+
+-- run the copy commands file
+\i copy_commands.sql
+
+update fileinfo set hasBeenLoaded = 't' where id = (select id from fileinfo where hasBeenLoaded = false order by id limit 1);
diff --git a/db_scripts/tbl_author_works.sql b/db_scripts/tbl_author_works.sql
new file mode 100644
index 0000000..4d49fb1
--- /dev/null
+++ b/db_scripts/tbl_author_works.sql
@@ -0,0 +1,5 @@
+create table author_works (
+ author_key text not null,
+ work_key text not null,
+ constraint pk_authorworks_authorkey_workkey primary key (author_key, work_key)
+);
diff --git a/db_scripts/tbl_author_works_indexes.sql b/db_scripts/tbl_author_works_indexes.sql
new file mode 100644
index 0000000..0ef4b86
--- /dev/null
+++ b/db_scripts/tbl_author_works_indexes.sql
@@ -0,0 +1,5 @@
+create unique index cuix_authorworks_authorkey_workkey on author_works (author_key, work_key);
+alter table author_works cluster on cuix_authorworks_authorkey_workkey;
+
+create index ix_authorworks_workkey on author_works (work_key);
+create index ix_authorworks_authorkey on author_works (author_key);
diff --git a/db_scripts/tbl_authors.sql b/db_scripts/tbl_authors.sql
new file mode 100644
index 0000000..8fed3df
--- /dev/null
+++ b/db_scripts/tbl_authors.sql
@@ -0,0 +1,8 @@
+create table authors (
+ type text,
+ key text not null,
+ revision integer,
+ last_modified date,
+ data jsonb,
+ constraint pk_author_key primary key (key)
+);
diff --git a/db_scripts/tbl_authors_indexes.sql b/db_scripts/tbl_authors_indexes.sql
new file mode 100644
index 0000000..b698f83
--- /dev/null
+++ b/db_scripts/tbl_authors_indexes.sql
@@ -0,0 +1,4 @@
+create unique index cuix_authors_key on authors (key);
+alter table authors cluster on cuix_authors_key;
+
+create index ix_authors_data on authors using gin (data jsonb_path_ops);
diff --git a/db_scripts/tbl_edition_isbns.sql b/db_scripts/tbl_edition_isbns.sql
new file mode 100644
index 0000000..3f90698
--- /dev/null
+++ b/db_scripts/tbl_edition_isbns.sql
@@ -0,0 +1,5 @@
+create table edition_isbns (
+ edition_key text not null,
+ isbn text not null,
+ constraint pk_editionisbns_editionkey_isbn primary key (edition_key, isbn)
+);
diff --git a/db_scripts/tbl_edition_isbns_indexes.sql b/db_scripts/tbl_edition_isbns_indexes.sql
new file mode 100644
index 0000000..53d8216
--- /dev/null
+++ b/db_scripts/tbl_edition_isbns_indexes.sql
@@ -0,0 +1,5 @@
+create unique index cuix_editionisbns_editionkey_isbn on edition_isbns (edition_key, isbn);
+alter table edition_isbns cluster on cuix_editionisbns_editionkey_isbn;
+
+create index ix_editionisbns_isbn on edition_isbns (isbn);
+create index ix_editionisbns_editionkey on edition_isbns (edition_key);
diff --git a/db_scripts/tbl_editions.sql b/db_scripts/tbl_editions.sql
new file mode 100644
index 0000000..b1fb427
--- /dev/null
+++ b/db_scripts/tbl_editions.sql
@@ -0,0 +1,8 @@
+create table editions (
+ type text,
+ key text not null,
+ revision integer,
+ last_modified date,
+ data jsonb,
+ constraint pk_editions_key primary key (key)
+);
diff --git a/db_scripts/tbl_editions_indexes.sql b/db_scripts/tbl_editions_indexes.sql
new file mode 100644
index 0000000..d2ee076
--- /dev/null
+++ b/db_scripts/tbl_editions_indexes.sql
@@ -0,0 +1,5 @@
+create unique index cuix_editions_key on editions (key);
+alter table editions cluster on cuix_editions_key;
+
+create index ix_editions_workkey on editions (work_key);
+create index ix_editions_data on editions using gin (data jsonb_path_ops);
diff --git a/db_scripts/tbl_fileinfo.sql b/db_scripts/tbl_fileinfo.sql
new file mode 100644
index 0000000..cceb504
--- /dev/null
+++ b/db_scripts/tbl_fileinfo.sql
@@ -0,0 +1,10 @@
+create table fileinfo (
+ name_of_table text,
+ id int,
+ hasBeenLoaded boolean,
+ filenames text ARRAY,
+ constraint key primary key (id)
+);
+
+-- load all the file names into the database
+\copy fileinfo from './data/processed/filenames.txt' delimiter E'\t' quote '|' csv;
diff --git a/db_scripts/tbl_works.sql b/db_scripts/tbl_works.sql
new file mode 100644
index 0000000..c32f11c
--- /dev/null
+++ b/db_scripts/tbl_works.sql
@@ -0,0 +1,8 @@
+create table works (
+ type text,
+ key text NOT NULL,
+ revision integer,
+ last_modified date,
+ data jsonb,
+ constraint pk_works_key primary key(key)
+);
diff --git a/db_scripts/tbl_works_indexes.sql b/db_scripts/tbl_works_indexes.sql
new file mode 100644
index 0000000..ff644d6
--- /dev/null
+++ b/db_scripts/tbl_works_indexes.sql
@@ -0,0 +1,4 @@
+create unique index cuix_works_key on works (key);
+alter table works cluster on cuix_works_key;
+
+create index ix_works_data on works using gin (data jsonb_path_ops);
diff --git a/isbn-clean.py b/isbn-clean.py
deleted file mode 100644
index 3becf85..0000000
--- a/isbn-clean.py
+++ /dev/null
@@ -1,23 +0,0 @@
-import csv
-import re
-
-data_file = 'data\\children_isbns.csv'
-output_file = 'data\\children_isbns_clean.csv'
-
-isbns = []
-# Read through the ISBNs in our CSV
-with open(data_file, 'r') as isbnfile:
- isbnreader = csv.reader(isbnfile, delimiter=',', quotechar='"')
- for row in isbnreader:
- if len(row) > 0 and row[0] != '':
- matches = re.findall(r'(\d+)', row[0])
- ## For now just include numbers of 10 or 13 digits
- if len(matches) > 0 and (len(matches[0]) == 10 or len(matches[0]) == 13):
- isbn = matches[0]
- isbns.append(isbn)
-
-with open(output_file, 'w', newline='') as outputfile:
- writer = csv.writer(outputfile, delimiter=',',quotechar='"', quoting=csv.QUOTE_MINIMAL)
-
- for isbn in isbns:
- writer.writerow([isbn])
diff --git a/openlibrary-data-chunk-process.py b/openlibrary-data-chunk-process.py
new file mode 100644
index 0000000..22a4660
--- /dev/null
+++ b/openlibrary-data-chunk-process.py
@@ -0,0 +1,85 @@
+# With this file you can convert your txt files into smaller csv files which are easier to load into the db
+#Decide how large you would like to make each chunk. - in the edition table I made them 3 million lines which was about 3.24 gigs and ended up taking about an hour to load.
+import csv
+import sys
+import ctypes as ct
+import os
+from os.path import join
+# use mv command to position the data
+
+
+
+# mv ~/downloads/ol_dump_authors_*txt.gz ./data/unprocessed/ol_dump_authors_.txt.gz
+# mv ~/downloads/ol_dump_works_*txt.gz ./data/unprocessed/ol_dump_works_.txt.gz
+# mv ~/downloads/ol_dump_editions_*txt.gz ./data/unprocessed/ol_dump_editions_.txt.gz
+# 6:06 8:08 sstarted load around 8:10 restarted at 9 authors loaded at 9:06
+
+# gzip -d -c data/unprocessed/ol_dump_authors*.txt.gz > data/unprocessed/ol_dump_authors.txt
+# gzip -d -c data/unprocessed/ol_dump_works_*.txt.gz > data/unprocessed/ol_dump_works.txt
+
+# gzip -d -c data/unprocessed/ol_dump_editions_*.txt.gz > data/unprocessed/ol_dump_editions.txt
+
+# optional command if you want to make a smaller copy from the unzipped version for testing
+# sed -i '' '100000,$ d' ./data/unprocessed/ol_dump_editions.txt
+
+
+
+
+
+# you can either run this file once with all 3 downloaded and unzipped files or you can run it as they come in. Just make sure the end product in filenames.txt looks like this
+# authors 0 False {authors_2000.csv,authors_4000.csv,authors_6000.csv}
+# works 1 False {works_2000.csv,works_4000.csv,works_6000.csv,works_8000.csv}
+# editions 2 False {editions_2000.csv,editions_4000.csv,editions_6000.csv}
+
+# See https://stackoverflow.com/a/54517228 for more info on this
+csv.field_size_limit(int(ct.c_ulong(-1).value // 2))
+
+input_path = "./data/unprocessed/"
+output_path = "./data/processed/"
+
+
+file_identifers = ['authors','works','editions']
+file_id = 0
+filenames_array = []
+# I used 2k for the test run and 2mil for the actual data
+lines_per_file = 2000
+
+for file_identifer in file_identifers:
+ print('Currently processing:... ', file_identifer)
+ filenames = []
+ csvoutputfile = None
+
+ with open(os.path.join(input_path, ('ol_dump_' + file_identifer + '.txt')))as cvsinputfile:
+ csvreader = csv.reader(cvsinputfile, delimiter='\t') # CREATE READER
+ for lineno, row in enumerate(csvreader):
+
+ if lineno % lines_per_file == 0:
+ if csvoutputfile:
+ csvoutputfile.close()
+
+ small_filename = file_identifer + '_{}.csv'.format(lineno + lines_per_file)
+ filenames.append(small_filename)
+ csvoutputfile = open(os.path.join(output_path, small_filename), "w", newline='')
+ csvwriter = csv.writer(csvoutputfile, delimiter='\t', quotechar='|', quoting=csv.QUOTE_MINIMAL)
+
+ if len(row) > 4:
+ csvwriter.writerow([row[0], row[1], row[2], row[3], row[4]])
+
+ if csvoutputfile:
+ csvoutputfile.close()
+
+
+ filenames_array.append([file_identifer, str(file_id), False, filenames])
+
+ print('\n', file_identifer, 'text file has now been processed.\n')
+ print(file_identifer, str(file_id), filenames)
+ file_id += 1
+# list of filenames that can be loaded into database for automatic file reading.
+filenamesoutput = open(os.path.join(output_path, 'filenames.txt'), "a", newline='')
+filenameswriter = csv.writer(filenamesoutput, delimiter='\t', quotechar='|', quoting=csv.QUOTE_MINIMAL)
+for row in filenames_array:
+
+ filenameswriter.writerow([row[0],row[1], row[2],'{' + ','.join(row[3]).strip("'") + '}'])
+
+filenamesoutput.close()
+print('Process complete.')
diff --git a/openlibrary-data-process.py b/openlibrary-data-process.py
index 1e11403..9513b2e 100644
--- a/openlibrary-data-process.py
+++ b/openlibrary-data-process.py
@@ -1,14 +1,31 @@
import csv
import sys
-input = 'data\\ol_dump_editions_2016-07-31.txt'
-output = 'data\\ol_dump_editions_2016-07-31_processed.csv'
-csv.field_size_limit(sys.maxsize)
-with open(output, 'w', newline='') as csvoutputfile:
- csvwriter = csv.writer(csvoutputfile, delimiter='\t', quotechar='|', quoting=csv.QUOTE_MINIMAL)
- with open(input, 'r') as csvinputfile:
- csvreader = csv.reader(csvinputfile, delimiter='\t')
- for row in csvreader:
- if len(row) > 4:
- csvwriter.writerow([row[0], row[1], row[2], row[3], row[4]])
- print('Finished reading')
-print('Finished writing')
\ No newline at end of file
+import ctypes as ct
+import os
+
+from os import listdir
+from os.path import isfile, join
+
+input_path = "./data/unprocessed/"
+output_path = "./data/processed/"
+
+filesforprocessing = [
+ "ol_dump_authors.txt",
+ "ol_dump_editions.txt",
+ "ol_dump_works.txt",
+]
+
+# See https://stackoverflow.com/a/54517228 for more info on this
+csv.field_size_limit(int(ct.c_ulong(-1).value // 2))
+
+for file in filesforprocessing:
+ with open(os.path.join(output_path, file), "w", newline="") as csv_out:
+ csvwriter = csv.writer(
+ csv_out, delimiter="\t", quotechar="|", quoting=csv.QUOTE_MINIMAL
+ )
+
+ with open(os.path.join(input_path, file), "r") as csv_in:
+ csvreader = csv.reader(csv_in, delimiter="\t")
+ for row in csvreader:
+ if len(row) > 4:
+ csvwriter.writerow([row[0], row[1], row[2], row[3], row[4]])
diff --git a/openlibrary-db.sql b/openlibrary-db.sql
index 12a4934..9a05b8a 100644
--- a/openlibrary-db.sql
+++ b/openlibrary-db.sql
@@ -1,306 +1,29 @@
--- Database: openlibrary
+-- create the database
+\i 'db_scripts/db_openlibrary.sql';
--- DROP DATABASE openlibrary;
+-- -- switch to using the database
+\c openlibrary;
-CREATE DATABASE openlibrary
-/c openlibrary
- WITH OWNER = postgres
- ENCODING = 'UTF8'
- TABLESPACE = pg_default
- LC_COLLATE = 'English_United Kingdom.1252'
- LC_CTYPE = 'English_United Kingdom.1252'
- CONNECTION LIMIT = -1;
+-- -- set client encoding
+set client_encoding = 'UTF8';
--- Table: public.authors
+-- -- create tables
+\i 'db_scripts/tbl_authors.sql';
+\i 'db_scripts/tbl_works.sql';
+\i 'db_scripts/tbl_author_works.sql';
+\i 'db_scripts/tbl_editions.sql';
+\i 'db_scripts/tbl_edition_isbns.sql';
--- DROP TABLE public.authors;
+-- create filenames that can be accessed in lieu of parameters
+\i 'db_scripts/tbl_fileinfo.sql';
-CREATE TABLE public.authors
-(
- type text,
- key text NOT NULL,
- revision integer,
- last_modified date,
- data jsonb,
- CONSTRAINT pk_author PRIMARY KEY (key)
-)
-WITH (
- OIDS=FALSE
-);
-ALTER TABLE public.authors
- OWNER TO postgres;
+-- load in data
+\i 'db_scripts/load.sql';
--- Index: public.cuix_author
-
--- DROP INDEX public.cuix_author;
-
-CREATE UNIQUE INDEX cuix_author
- ON public.authors
- USING btree
- (key COLLATE pg_catalog."default");
-ALTER TABLE public.authors CLUSTER ON cuix_author;
-
--- Index: public.idx_authors_ginp
-
--- DROP INDEX public.idx_authors_ginp;
-
-CREATE INDEX idx_authors_ginp
- ON public.authors
- USING gin
- (data jsonb_path_ops);
-
--- Table: public.authorship
-
--- DROP TABLE public.authorship;
-
-CREATE TABLE public.authorship
-(
- author_key text NOT NULL,
- work_key text NOT NULL,
- CONSTRAINT pk_authorship PRIMARY KEY (author_key, work_key)
-)
-WITH (
- OIDS=FALSE
-);
-ALTER TABLE public.authorship
- OWNER TO postgres;
-
--- Index: public.cuix_author_work
-
--- DROP INDEX public.cuix_author_work;
-
-CREATE UNIQUE INDEX cuix_author_work
- ON public.authorship
- USING btree
- (author_key COLLATE pg_catalog."default", work_key COLLATE pg_catalog."default");
-ALTER TABLE public.authorship CLUSTER ON cuix_author_work;
-
--- Index: public.ix_work
-
--- DROP INDEX public.ix_work;
-
-CREATE INDEX ix_work
- ON public.authorship
- USING btree
- (work_key COLLATE pg_catalog."default");
-
-
--- Table: public.editionisbn10s
-
--- DROP TABLE public.editionisbn10s;
-
-CREATE TABLE public.editionisbn10s
-(
- edition_key text NOT NULL,
- isbn10 text NOT NULL,
- CONSTRAINT pk_edition_isbn10 PRIMARY KEY (edition_key, isbn10)
-)
-WITH (
- OIDS=FALSE
-);
-ALTER TABLE public.editionisbn10s
- OWNER TO postgres;
-
--- Index: public.cix_edition_isbn10
-
--- DROP INDEX public.cix_edition_isbn10;
-
-CREATE INDEX cix_edition_isbn10
- ON public.editionisbn10s
- USING btree
- (edition_key COLLATE pg_catalog."default", isbn10 COLLATE pg_catalog."default");
-ALTER TABLE public.editionisbn10s CLUSTER ON cix_edition_isbn10;
-
--- Index: public.ix_isbn10
-
--- DROP INDEX public.ix_isbn10;
-
-CREATE INDEX ix_isbn10
- ON public.editionisbn10s
- USING btree
- (isbn10 COLLATE pg_catalog."default");
-
--- Table: public.editionisbn13s
-
--- DROP TABLE public.editionisbn13s;
-
-CREATE TABLE public.editionisbn13s
-(
- edition_key text,
- isbn13 text
-)
-WITH (
- OIDS=FALSE
-);
-ALTER TABLE public.editionisbn13s
- OWNER TO postgres;
-
--- Index: public.cuix_edition_isbn13
-
--- DROP INDEX public.cuix_edition_isbn13;
-
-CREATE UNIQUE INDEX cuix_edition_isbn13
- ON public.editionisbn13s
- USING btree
- (edition_key COLLATE pg_catalog."default", isbn13 COLLATE pg_catalog."default");
-ALTER TABLE public.editionisbn13s CLUSTER ON cuix_edition_isbn13;
-
--- Index: public.ix_isbn13
-
--- DROP INDEX public.ix_isbn13;
-
-CREATE INDEX ix_isbn13
- ON public.editionisbn13s
- USING btree
- (isbn13 COLLATE pg_catalog."default");
-
-
-
--- Table: public.editions
-
--- DROP TABLE public.editions;
-
-CREATE TABLE public.editions
-(
- type text,
- key text NOT NULL,
- revision integer,
- last_modified date,
- data jsonb,
- work_key text,
- CONSTRAINT pk_edition PRIMARY KEY (key)
-)
-WITH (
- OIDS=FALSE
-);
-ALTER TABLE public.editions
- OWNER TO postgres;
-
-
-
--- Table: public.isbn10s
-
--- DROP TABLE public.isbn10s;
-
-CREATE TABLE public.isbn10s
-(
- isbn10 text
-)
-WITH (
- OIDS=FALSE
-);
-ALTER TABLE public.isbn10s
- OWNER TO postgres;
-
--- Index: public.cix_isbn10
-
--- DROP INDEX public.cix_isbn10;
-
-CREATE INDEX cix_isbn10
- ON public.isbn10s
- USING btree
- (isbn10 COLLATE pg_catalog."default");
-ALTER TABLE public.isbn10s CLUSTER ON cix_isbn10;
-
-
-
--- Table: public.isbn13s
-
--- DROP TABLE public.isbn13s;
-
-CREATE TABLE public.isbn13s
-(
- isbn13 text
-)
-WITH (
- OIDS=FALSE
-);
-ALTER TABLE public.isbn13s
- OWNER TO postgres;
-
--- Index: public.cix_isbn13
-
--- DROP INDEX public.cix_isbn13;
-
-CREATE INDEX cix_isbn13
- ON public.isbn13s
- USING btree
- (isbn13 COLLATE pg_catalog."default");
-ALTER TABLE public.isbn13s CLUSTER ON cix_isbn13;
-
-
--- Table: public.keywords
-
--- DROP TABLE public.keywords;
-
-CREATE TABLE public.keywords
-(
- keyword text NOT NULL,
- CONSTRAINT keywords_pkey PRIMARY KEY (keyword)
-)
-WITH (
- OIDS=FALSE
-);
-ALTER TABLE public.keywords
- OWNER TO postgres;
-
-
--- Table: public.matches
-
--- DROP TABLE public.matches;
-
-CREATE TABLE public.matches
-(
- title text,
- subtitle text,
- isbn10 text NOT NULL,
- isbn13 text NOT NULL,
- subjects text,
- description text,
- CONSTRAINT matches_pkey PRIMARY KEY (isbn10, isbn13)
-)
-WITH (
- OIDS=FALSE
-);
-ALTER TABLE public.matches
- OWNER TO postgres;
-
-
--- Table: public.works
-
--- DROP TABLE public.works;
-
-CREATE TABLE public.works
-(
- type text,
- key text NOT NULL,
- revision integer,
- last_modified date,
- data jsonb,
- CONSTRAINT pk_work PRIMARY KEY (key)
-)
-WITH (
- OIDS=FALSE
-);
-ALTER TABLE public.works
- OWNER TO postgres;
-
--- Index: public.cuix_work
-
--- DROP INDEX public.cuix_work;
-
-CREATE UNIQUE INDEX cuix_work
- ON public.works
- USING btree
- (key COLLATE pg_catalog."default");
-ALTER TABLE public.works CLUSTER ON cuix_work;
-
--- Index: public.idx_works_ginp
-
--- DROP INDEX public.idx_works_ginp;
-
-CREATE INDEX idx_works_ginp
- ON public.works
- USING gin
- (data jsonb_path_ops);
+-- finally remove temp table
+drop table fileinfo;
+-- vaccuum analyze will remove dead tuples and try to regain some space
+-- if you have enough room, you can use vacuum full analyze which will gain the most space back, but it requires enough space on your computer to make a complete second copy of the db
+-- if you add verbose it will explain what it is trying to do. (vacuum verbose analyze)
+vacuum analyze;
diff --git a/openlibrary-search.py b/openlibrary-search.py
deleted file mode 100644
index 4681b58..0000000
--- a/openlibrary-search.py
+++ /dev/null
@@ -1,79 +0,0 @@
-import csv
-import re
-import urllib.request
-import json
-import time
-
-openLibraryUrl = 'https://openlibrary.org'
-books_api = '%s/api/books?jscmd=data&format=json&bibkeys=ISBN:' % openLibraryUrl
-data_file = 'data\\children_isbns.csv'
-keywords_file = 'data\\keywords.csv'
-
-isbns = []
-# Read through the ISBNs in our CSV
-with open(data_file, 'r') as isbnfile:
- isbnreader = csv.reader(isbnfile, delimiter=',', quotechar='"')
- for row in isbnreader:
- if len(row) > 0 and row[0] != '':
- matches = re.findall(r'(\d+)', row[0])
- ## For now just include numbers of 10 or 13 digits
- if len(matches) > 0 and (len(matches[0]) == 10 or len(matches[0]) == 13):
- isbn = matches[0]
- isbns.append(isbn)
-
-keywords = []
-# Read through the keywords
-with open(keywords_file, 'r') as keywordsfile:
- keywordreader = csv.reader(keywordsfile, delimiter=',', quotechar='"')
- for row in keywordreader:
- keywords.append(row[0])
-
-# The open library API doesn't really specify how many ISBNs you can throw at it.
-# Try 10 at a time and then wait for 5 seconds.
-def batcher(seq, size):
- return (seq[pos:pos + size] for pos in range(0, len(seq), size))
-
-with open('data\\childrens.csv', 'w') as outputfile:
- writer = csv.writer(outputfile, delimiter=',',quotechar='"', quoting=csv.QUOTE_MINIMAL)
-
- olIsbns = ''
- for batch in batcher(isbns, 10):
- olIsbns = ',ISBN:'.join(batch)
- openlibrary_url = books_api + olIsbns
- print(openlibrary_url)
- try:
- content = urllib.request.urlopen(openlibrary_url)
- str_response = content.read().decode('utf-8')
- booksjson = json.loads(str_response)
-
- # Loop through all the books returned from Open Library
- for book in booksjson:
- # Fields to look at from open library: title, subjects, description, notes
- match = False
- for word in keywords:
- if booksjson[book].get('title') != None:
- title = booksjson[book].get('title')
- if word in str.lower(title):
- match = True
- if booksjson[book].get('subtitle') != None:
- subtitle = booksjson[book].get('subtitle')
- if word in str.lower(subtitle):
- match = True
- if booksjson[book].get('description') != None:
- description = booksjson[book].get('description')
- if word in str.lower(description):
- match = True
- if booksjson[book].get('notes') != None:
- notes = booksjson[book].get('notes')
- if word in str.lower(notes):
- match = True
- if booksjson[book].get('subjects') != None:
- for subject in booksjson[book].get('subjects'):
- if word in subject:
- match = True
- if match == True:
- writer.writerow([book,title])
- except:
- print('Failed')
-
- time.sleep(10)
\ No newline at end of file